Files
2019-10-17 12:36:15 +09:00

3 lines
3.8 MiB
Executable File
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env node
require('./sourcemap-register.js');module.exports=function(e,t){"use strict";var n={};function __webpack_require__(t){if(n[t]){return n[t].exports}var r=n[t]={i:t,l:false,exports:{}};e[t].call(r.exports,r,r.exports,__webpack_require__);r.l=true;return r.exports}__webpack_require__.c=n;function startup(){return __webpack_require__(4165)}t(__webpack_require__);return startup()}({16:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(4859));function arrayMove(e,t,n,r,i){for(let o=0;o<i;++o){n[o+r]=e[o+t];e[o+t]=void 0}}function pow2AtLeast(e){e=e>>>0;e=e-1;e=e|e>>1;e=e|e>>2;e=e|e>>4;e=e|e>>8;e=e|e>>16;return e+1}function getCapacity(e){return pow2AtLeast(Math.min(Math.max(16,e),1073741824))}class Deque{constructor(e){this._capacity=getCapacity(e);this._length=0;this._front=0;this.arr=[]}push(e){const t=this._length;this.checkCapacity(t+1);const n=this._front+t&this._capacity-1;this.arr[n]=e;this._length=t+1;return t+1}pop(){const e=this._length;if(e===0){return void 0}const t=this._front+e-1&this._capacity-1;const n=this.arr[t];this.arr[t]=void 0;this._length=e-1;return n}shift(){const e=this._length;if(e===0){return void 0}const t=this._front;const n=this.arr[t];this.arr[t]=void 0;this._front=t+1&this._capacity-1;this._length=e-1;return n}get length(){return this._length}checkCapacity(e){if(this._capacity<e){this.resizeTo(getCapacity(this._capacity*1.5+16))}}resizeTo(e){const t=this._capacity;this._capacity=e;const n=this._front;const r=this._length;if(n+r>t){const e=n+r&t-1;arrayMove(this.arr,0,this.arr,t,e)}}}class ReleaseEmitter extends i.default{}function isFn(e){return typeof e==="function"}function defaultInit(){return"1"}class Sema{constructor(e,{initFn:t=defaultInit,pauseFn:n,resumeFn:r,capacity:i=10}={}){if(isFn(n)!==isFn(r)){throw new Error("pauseFn and resumeFn must be both set for pausing")}this.nrTokens=e;this.free=new Deque(e);this.waiting=new Deque(i);this.releaseEmitter=new ReleaseEmitter;this.noTokens=t===defaultInit;this.pauseFn=n;this.resumeFn=r;this.paused=false;this.releaseEmitter.on("release",e=>{const t=this.waiting.shift();if(t){t.resolve(e)}else{if(this.resumeFn&&this.paused){this.paused=false;this.resumeFn()}this.free.push(e)}});for(let n=0;n<e;n++){this.free.push(t())}}async acquire(){let e=this.free.pop();if(e!==void 0){return e}return new Promise((e,t)=>{if(this.pauseFn&&!this.paused){this.paused=true;this.pauseFn()}this.waiting.push({resolve:e,reject:t})})}release(e){this.releaseEmitter.emit("release",this.noTokens?"1":e)}drain(){const e=new Array(this.nrTokens);for(let t=0;t<this.nrTokens;t++){e[t]=this.acquire()}return Promise.all(e)}nrWaiting(){return this.waiting.length}}t.Sema=Sema;function RateLimit(e,{timeUnit:t=1e3,uniformDistribution:n=false}={}){const r=new Sema(n?1:e);const i=n?t/e:t;return async function rl(){await r.acquire();setTimeout(()=>r.release(),i)}}t.RateLimit=RateLimit},18:function(e,t,n){"use strict";const r=n(4859).EventEmitter;const i=n(7231);const o=n(4557);const a=n(2708);const s=n(7189);const c=n(6243);const u=n(7089);const l=n(4348);const f=n(3515);const p=n(3309);const d=n(8413);const h=n(9900).reflector;const m="factoryCreateError";const v="factoryDestroyError";class Pool extends r{constructor(e,t,n,r,a){super();i(r);this._config=new o(a);this._Promise=this._config.Promise;this._factory=r;this._draining=false;this._started=false;this._waitingClientsQueue=new n(this._config.priorityRange);this._factoryCreateOperations=new Set;this._factoryDestroyOperations=new Set;this._availableObjects=new t;this._testOnBorrowResources=new Set;this._testOnReturnResources=new Set;this._validationOperations=new Set;this._allObjects=new Set;this._resourceLoans=new Map;this._evictionIterator=this._availableObjects.iterator();this._evictor=new e;this._scheduledEviction=null;if(this._config.autostart===true){this.start()}}_destroy(e){e.invalidate();this._allObjects.delete(e);const t=this._factory.destroy(e.obj);const n=this._Promise.resolve(t);this._trackOperation(n,this._factoryDestroyOperations).catch(e=>{this.emit(v,e)});this._ensureMinimum()}_testOnBorrow(){if(this._availableObjects.length<1){return false}const e=this._availableObjects.shift();e.test();this._testOnBorrowResources.add(e);const t=this._factory.validate(e.obj);const n=this._Promise.resolve(t);this._trackOperation(n,this._validationOperations).then(t=>{this._testOnBorrowResources.delete(e);if(t===false){e.invalidate();this._destroy(e);this._dispense();return}this._dispatchPooledResourceToNextWaitingClient(e)});return true}_dispatchResource(){if(this._availableObjects.length<1){return false}const e=this._availableObjects.shift();this._dispatchPooledResourceToNextWaitingClient(e);return false}_dispense(){const e=this._waitingClientsQueue.length;if(e<1){return}const t=e-this._potentiallyAllocableResourceCount;const n=Math.min(this.spareResourceCapacity,t);for(let e=0;n>e;e++){this._createResource()}if(this._config.testOnBorrow===true){const t=e-this._testOnBorrowResources.size;const n=Math.min(this._availableObjects.length,t);for(let e=0;n>e;e++){this._testOnBorrow()}}if(this._config.testOnBorrow===false){const t=Math.min(this._availableObjects.length,e);for(let e=0;t>e;e++){this._dispatchResource()}}}_dispatchPooledResourceToNextWaitingClient(e){const t=this._waitingClientsQueue.dequeue();if(t===undefined||t.state!==f.PENDING){this._addPooledResourceToAvailableObjects(e);return false}const n=new s(e,this._Promise);this._resourceLoans.set(e.obj,n);e.allocate();t.resolve(e.obj);return true}_trackOperation(e,t){t.add(e);return e.then(n=>{t.delete(e);return this._Promise.resolve(n)},n=>{t.delete(e);return this._Promise.reject(n)})}_createResource(){const e=this._factory.create();const t=this._Promise.resolve(e);this._trackOperation(t,this._factoryCreateOperations).then(e=>{this._handleNewResource(e);return null}).catch(e=>{this.emit(m,e);this._dispense()})}_handleNewResource(e){const t=new c(e);this._allObjects.add(t);this._dispatchPooledResourceToNextWaitingClient(t)}_ensureMinimum(){if(this._draining===true){return}const e=this._config.min-this._count;for(let t=0;t<e;t++){this._createResource()}}_evict(){const e=Math.min(this._config.numTestsPerEvictionRun,this._availableObjects.length);const t={softIdleTimeoutMillis:this._config.softIdleTimeoutMillis,idleTimeoutMillis:this._config.idleTimeoutMillis,min:this._config.min};for(let n=0;n<e;){const e=this._evictionIterator.next();if(e.done===true&&this._availableObjects.length<1){this._evictionIterator.reset();return}if(e.done===true&&this._availableObjects.length>0){this._evictionIterator.reset();break}const r=e.value;const i=this._evictor.evict(t,r,this._availableObjects.length);n++;if(i===true){this._evictionIterator.remove();this._destroy(r)}}}_scheduleEvictorRun(){if(this._config.evictionRunIntervalMillis>0){this._scheduledEviction=setTimeout(()=>{this._evict();this._scheduleEvictorRun()},this._config.evictionRunIntervalMillis)}}_descheduleEvictorRun(){if(this._scheduledEviction){clearTimeout(this._scheduledEviction)}this._scheduledEviction=null}start(){if(this._draining===true){return}if(this._started===true){return}this._started=true;this._scheduleEvictorRun();this._ensureMinimum()}acquire(e){if(this._started===false&&this._config.autostart===false){this.start()}if(this._draining){return this._Promise.reject(new Error("pool is draining and cannot accept work"))}if(this._config.maxWaitingClients!==undefined&&this._waitingClientsQueue.length>=this._config.maxWaitingClients){return this._Promise.reject(new Error("max waitingClients count exceeded"))}const t=new a(this._config.acquireTimeoutMillis,this._Promise);this._waitingClientsQueue.enqueue(t,e);this._dispense();return t.promise}use(e){return this.acquire().then(t=>{return e(t).then(e=>{this.release(t);return e},e=>{this.release(t);throw e})})}isBorrowedResource(e){return this._resourceLoans.get(e)!==undefined}release(e){const t=this._resourceLoans.get(e);if(t===undefined){return this._Promise.reject(new Error("Resource not currently part of this pool"))}this._resourceLoans.delete(e);t.resolve();const n=t.pooledResource;n.deallocate();this._addPooledResourceToAvailableObjects(n);this._dispense();return this._Promise.resolve()}destroy(e){const t=this._resourceLoans.get(e);if(t===undefined){return this._Promise.reject(new Error("Resource not currently part of this pool"))}this._resourceLoans.delete(e);t.resolve();const n=t.pooledResource;n.deallocate();this._destroy(n);this._dispense();return this._Promise.resolve()}_addPooledResourceToAvailableObjects(e){e.idle();if(this._config.fifo===true){this._availableObjects.push(e)}else{this._availableObjects.unshift(e)}}drain(){this._draining=true;return this.__allResourceRequestsSettled().then(()=>{return this.__allResourcesReturned()}).then(()=>{this._descheduleEvictorRun()})}__allResourceRequestsSettled(){if(this._waitingClientsQueue.length>0){return h(this._waitingClientsQueue.tail.promise)}return this._Promise.resolve()}__allResourcesReturned(){const e=Array.from(this._resourceLoans.values()).map(e=>e.promise).map(h);return this._Promise.all(e)}clear(){const e=Array.from(this._factoryCreateOperations).map(h);return this._Promise.all(e).then(()=>{for(const e of this._availableObjects){this._destroy(e)}const e=Array.from(this._factoryDestroyOperations).map(h);return this._Promise.all(e)})}get _potentiallyAllocableResourceCount(){return this._availableObjects.length+this._testOnBorrowResources.size+this._testOnReturnResources.size+this._factoryCreateOperations.size}get _count(){return this._allObjects.size+this._factoryCreateOperations.size}get spareResourceCapacity(){return this._config.max-(this._allObjects.size+this._factoryCreateOperations.size)}get size(){return this._count}get available(){return this._availableObjects.length}get borrowed(){return this._resourceLoans.size}get pending(){return this._waitingClientsQueue.length}get max(){return this._config.max}get min(){return this._config.min}}e.exports=Pool},20:function(e,t,n){"use strict";const r=n(4666);const i=n(2040);const o=e.exports=((e,t,n)=>{const o=r(e);if(!o.file)throw new TypeError("file is required");if(o.gzip)throw new TypeError("cannot append to compressed archives");if(!t||!Array.isArray(t)||!t.length)throw new TypeError("no files or directories specified");t=Array.from(t);a(o);return i(o,t,n)});const a=e=>{const t=e.filter;if(!e.mtimeCache)e.mtimeCache=new Map;e.filter=t?(n,r)=>t(n,r)&&!(e.mtimeCache.get(n)>r.mtime):(t,n)=>!(e.mtimeCache.get(t)>n.mtime)}},34:function(e,t,n){var r=n(774).parse;var i=n(1153);var o=n(3132);e.exports=Request;function Request(e,t){var n,a;if(!(e instanceof Request)){n=e;a=r(n);e={}}else{n=e.url;a=r(n)}t=t||{};this.method=t.method||e.method||"GET";this.redirect=t.redirect||e.redirect||"follow";this.headers=new i(t.headers||e.headers||{});this.url=n;this.follow=t.follow!==undefined?t.follow:e.follow!==undefined?e.follow:20;this.compress=t.compress!==undefined?t.compress:e.compress!==undefined?e.compress:true;this.counter=t.counter||e.counter||0;this.agent=t.agent||e.agent;o.call(this,t.body||this._clone(e),{timeout:t.timeout||e.timeout||0,size:t.size||e.size||0});this.protocol=a.protocol;this.hostname=a.hostname;this.port=a.port;this.path=a.path;this.auth=a.auth}Request.prototype=Object.create(o.prototype);Request.prototype.clone=function(){return new Request(this)}},40:function(e,t){Object.defineProperty(t,"__esModule",{value:true});t.SDK_NAME="sentry.javascript.node";t.SDK_VERSION="5.5.0"},41:function(e){"use strict";e.exports=(()=>{const e=["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[a-zA-Z\\d]*)*)?\\u0007)","(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PRZcf-ntqry=><~]))"].join("|");return new RegExp(e,"g")})},42:function(e,t,n){var r=n(2528),i=n(4532),o=n(9479);e.exports=serialOrdered;e.exports.ascending=ascending;e.exports.descending=descending;function serialOrdered(e,t,n,a){var s=i(e,n);r(e,t,s,function iteratorHandler(n,i){if(n){a(n,i);return}s.index++;if(s.index<(s["keyedList"]||e).length){r(e,t,s,iteratorHandler);return}a(null,s.results)});return o.bind(s,a)}function ascending(e,t){return e<t?-1:e>t?1:0}function descending(e,t){return-1*ascending(e,t)}},51:function(e){e.exports=require("domain")},56:function(e,t,n){var r=n(774);function resolveUrl(){return Array.prototype.reduce.call(arguments,function(e,t){return r.resolve(e,t)})}e.exports=resolveUrl},76:function(e,t,n){"use strict";Stripe.DEFAULT_HOST="api.stripe.com";Stripe.DEFAULT_PORT="443";Stripe.DEFAULT_BASE_PATH="/v1/";Stripe.DEFAULT_API_VERSION=null;Stripe.DEFAULT_TIMEOUT=n(4219).createServer().timeout;Stripe.PACKAGE_VERSION=n(9273).version;Stripe.USER_AGENT={bindings_version:Stripe.PACKAGE_VERSION,lang:"node",lang_version:process.version,platform:process.platform,publisher:"stripe",uname:null};Stripe.USER_AGENT_SERIALIZED=null;var r=["name","version","url"];var i=n(4859).EventEmitter;var o=n(2041).exec;var a={Account:n(2166),Accounts:n(2166),ApplePayDomains:n(6133),Balance:n(1689),Charges:n(1536),CountrySpecs:n(5026),Coupons:n(217),Customers:n(2090),Disputes:n(6600),EphemeralKeys:n(4390),Events:n(3705),Invoices:n(1141),InvoiceItems:n(9863),LoginLinks:n(9987),Payouts:n(854),Plans:n(6448),RecipientCards:n(5327),Recipients:n(4312),Refunds:n(5165),Tokens:n(479),Transfers:n(4399),ApplicationFees:n(6119),FileUploads:n(1056),BitcoinReceivers:n(9771),Products:n(1272),Skus:n(6213),Orders:n(221),OrderReturns:n(1006),Subscriptions:n(1079),SubscriptionItems:n(9177),ThreeDSecure:n(8492),Sources:n(8711),CustomerCards:n(1688),CustomerSubscriptions:n(7234),ChargeRefunds:n(2835),ApplicationFeeRefunds:n(3068),TransferReversals:n(3139)};Stripe.StripeResource=n(7409);Stripe.resources=a;function Stripe(e,t){if(!(this instanceof Stripe)){return new Stripe(e,t)}Object.defineProperty(this,"_emitter",{value:new i,enumerable:false,configurable:false,writeable:false});this.on=this._emitter.on.bind(this._emitter);this.off=this._emitter.removeListener.bind(this._emitter);this._api={auth:null,host:Stripe.DEFAULT_HOST,port:Stripe.DEFAULT_PORT,basePath:Stripe.DEFAULT_BASE_PATH,version:Stripe.DEFAULT_API_VERSION,timeout:Stripe.DEFAULT_TIMEOUT,agent:null,dev:false};this._prepResources();this.setApiKey(e);this.setApiVersion(t);this.webhooks=n(5361)}Stripe.prototype={setHost:function(e,t,n){this._setApiField("host",e);if(t){this.setPort(t)}if(n){this.setProtocol(n)}},setProtocol:function(e){this._setApiField("protocol",e.toLowerCase())},setPort:function(e){this._setApiField("port",e)},setApiVersion:function(e){if(e){this._setApiField("version",e)}},setApiKey:function(e){if(e){this._setApiField("auth","Bearer "+e)}},setTimeout:function(e){this._setApiField("timeout",e==null?Stripe.DEFAULT_TIMEOUT:e)},setAppInfo:function(e){if(e&&typeof e!=="object"){throw new Error("AppInfo must be an object.")}if(e&&!e.name){throw new Error("AppInfo.name is required")}e=e||{};var t=r.reduce(function(t,n){if(typeof e[n]=="string"){t=t||{};t[n]=e[n]}return t},undefined);Stripe.USER_AGENT_SERIALIZED=undefined;this._appInfo=t},setHttpAgent:function(e){this._setApiField("agent",e)},_setApiField:function(e,t){this._api[e]=t},getApiField:function(e){return this._api[e]},getConstant:function(e){return Stripe[e]},getClientUserAgent:function(e){if(Stripe.USER_AGENT_SERIALIZED){return e(Stripe.USER_AGENT_SERIALIZED)}this.getClientUserAgentSeeded(Stripe.USER_AGENT,function(t){Stripe.USER_AGENT_SERIALIZED=t;e(Stripe.USER_AGENT_SERIALIZED)})},getClientUserAgentSeeded:function(e,t){var n=this;o("uname -a",function(r,i){var o={};for(var a in e){o[a]=encodeURIComponent(e[a])}o.uname=encodeURIComponent(i)||"UNKNOWN";if(n._appInfo){o.application=n._appInfo}t(JSON.stringify(o))})},getAppInfoAsString:function(){if(!this._appInfo){return""}var e=this._appInfo.name;if(this._appInfo.version){e+="/"+this._appInfo.version}if(this._appInfo.url){e+=" ("+this._appInfo.url+")"}return e},_prepResources:function(){for(var e in a){this[e[0].toLowerCase()+e.substring(1)]=new a[e](this)}}};e.exports=Stripe;e.exports.Stripe=Stripe},83:function(e){"use strict";e.exports=function(e,t){var n=e.reduce;var r=e.all;function promiseAllThis(){return r(this)}function PromiseMapSeries(e,r){return n(e,r,t,t)}e.prototype.each=function(e){return n(this,e,t,0)._then(promiseAllThis,undefined,undefined,this,undefined)};e.prototype.mapSeries=function(e){return n(this,e,t,t)};e.each=function(e,r){return n(e,r,t,0)._then(promiseAllThis,undefined,undefined,e,undefined)};e.mapSeries=PromiseMapSeries}},89:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(2229));const o=r(n(9544));function elapsed(e,t=false){return o.default.gray(`[${e<1e3?`${e}ms`:i.default(e)}${t?" ago":""}]`)}t.default=elapsed},92:function(e,t,n){"use strict";var r=n(8053);var i={};i.rules=n(1875).map(function(e){return{rule:e,suffix:e.replace(/^(\*\.|\!)/,""),punySuffix:-1,wildcard:e.charAt(0)==="*",exception:e.charAt(0)==="!"}});i.endsWith=function(e,t){return e.indexOf(t,e.length-t.length)!==-1};i.findRule=function(e){var t=r.toASCII(e);return i.rules.reduce(function(e,n){if(n.punySuffix===-1){n.punySuffix=r.toASCII(n.suffix)}if(!i.endsWith(t,"."+n.punySuffix)&&t!==n.punySuffix){return e}return n},null)};t.errorCodes={DOMAIN_TOO_SHORT:"Domain name too short.",DOMAIN_TOO_LONG:"Domain name too long. It should be no more than 255 chars.",LABEL_STARTS_WITH_DASH:"Domain name label can not start with a dash.",LABEL_ENDS_WITH_DASH:"Domain name label can not end with a dash.",LABEL_TOO_LONG:"Domain name label should be at most 63 chars long.",LABEL_TOO_SHORT:"Domain name label should be at least 1 character long.",LABEL_INVALID_CHARS:"Domain name label can only contain alphanumeric characters or dashes."};i.validate=function(e){var t=r.toASCII(e);if(t.length<1){return"DOMAIN_TOO_SHORT"}if(t.length>255){return"DOMAIN_TOO_LONG"}var n=t.split(".");var i;for(var o=0;o<n.length;++o){i=n[o];if(!i.length){return"LABEL_TOO_SHORT"}if(i.length>63){return"LABEL_TOO_LONG"}if(i.charAt(0)==="-"){return"LABEL_STARTS_WITH_DASH"}if(i.charAt(i.length-1)==="-"){return"LABEL_ENDS_WITH_DASH"}if(!/^[a-z0-9\-]+$/.test(i)){return"LABEL_INVALID_CHARS"}}};t.parse=function(e){if(typeof e!=="string"){throw new TypeError("Domain name must be a string.")}var n=e.slice(0).toLowerCase();if(n.charAt(n.length-1)==="."){n=n.slice(0,n.length-1)}var o=i.validate(n);if(o){return{input:e,error:{message:t.errorCodes[o],code:o}}}var a={input:e,tld:null,sld:null,domain:null,subdomain:null,listed:false};var s=n.split(".");if(s[s.length-1]==="local"){return a}var c=function(){if(!/xn--/.test(n)){return a}if(a.domain){a.domain=r.toASCII(a.domain)}if(a.subdomain){a.subdomain=r.toASCII(a.subdomain)}return a};var u=i.findRule(n);if(!u){if(s.length<2){return a}a.tld=s.pop();a.sld=s.pop();a.domain=[a.sld,a.tld].join(".");if(s.length){a.subdomain=s.pop()}return c()}a.listed=true;var l=u.suffix.split(".");var f=s.slice(0,s.length-l.length);if(u.exception){f.push(l.shift())}a.tld=l.join(".");if(!f.length){return c()}if(u.wildcard){l.unshift(f.pop());a.tld=l.join(".")}if(!f.length){return c()}a.sld=f.pop();a.domain=[a.sld,a.tld].join(".");if(f.length){a.subdomain=f.join(".")}return c()};t.get=function(e){if(!e){return null}return t.parse(e).domain||null};t.isValid=function(e){var n=t.parse(e);return Boolean(n.domain&&n.listed)}},101:function(e,t,n){var r=n(4108);e.exports=r(once);once.proto=once(function(){Object.defineProperty(Function.prototype,"once",{value:function(){return once(this)},configurable:true})});function once(e){var t=function(){if(t.called)return t.value;t.called=true;return t.value=e.apply(this,arguments)};t.called=false;return t}},103:function(e,t,n){"use strict";e.exports=contentDisposition;e.exports.parse=parse;var r=n(5897).basename;var i=n(1682).Buffer;var o=/[\x00-\x20"'()*,\/:;<=>?@[\\\]{}\x7f]/g;var a=/%[0-9A-Fa-f]{2}/;var s=/%([0-9A-Fa-f]{2})/g;var c=/[^\x20-\x7e\xa0-\xff]/g;var u=/\\([\u0000-\u007f])/g;var l=/([\\"])/g;var f=/;[\x09\x20]*([!#$%&'*+.0-9A-Z^_`a-z|~-]+)[\x09\x20]*=[\x09\x20]*("(?:[\x20!\x23-\x5b\x5d-\x7e\x80-\xff]|\\[\x20-\x7e])*"|[!#$%&'*+.0-9A-Z^_`a-z|~-]+)[\x09\x20]*/g;var p=/^[\x20-\x7e\x80-\xff]+$/;var d=/^[!#$%&'*+.0-9A-Z^_`a-z|~-]+$/;var h=/^([A-Za-z0-9!#$%&+\-^_`{}~]+)'(?:[A-Za-z]{2,3}(?:-[A-Za-z]{3}){0,3}|[A-Za-z]{4,8}|)'((?:%[0-9A-Fa-f]{2}|[A-Za-z0-9!#$&+.^_`|~-])+)$/;var m=/^([!#$%&'*+.0-9A-Z^_`a-z|~-]+)[\x09\x20]*(?:$|;)/;function contentDisposition(e,t){var n=t||{};var r=n.type||"attachment";var i=createparams(e,n.fallback);return format(new ContentDisposition(r,i))}function createparams(e,t){if(e===undefined){return}var n={};if(typeof e!=="string"){throw new TypeError("filename must be a string")}if(t===undefined){t=true}if(typeof t!=="string"&&typeof t!=="boolean"){throw new TypeError("fallback must be a string or boolean")}if(typeof t==="string"&&c.test(t)){throw new TypeError("fallback must be ISO-8859-1 string")}var i=r(e);var o=p.test(i);var s=typeof t!=="string"?t&&getlatin1(i):r(t);var u=typeof s==="string"&&s!==i;if(u||!o||a.test(i)){n["filename*"]=i}if(o||u){n.filename=u?s:i}return n}function format(e){var t=e.parameters;var n=e.type;if(!n||typeof n!=="string"||!d.test(n)){throw new TypeError("invalid type")}var r=String(n).toLowerCase();if(t&&typeof t==="object"){var i;var o=Object.keys(t).sort();for(var a=0;a<o.length;a++){i=o[a];var s=i.substr(-1)==="*"?ustring(t[i]):qstring(t[i]);r+="; "+i+"="+s}}return r}function decodefield(e){var t=h.exec(e);if(!t){throw new TypeError("invalid extended field value")}var n=t[1].toLowerCase();var r=t[2];var o;var a=r.replace(s,pdecode);switch(n){case"iso-8859-1":o=getlatin1(a);break;case"utf-8":o=i.from(a,"binary").toString("utf8");break;default:throw new TypeError("unsupported charset in extended field")}return o}function getlatin1(e){return String(e).replace(c,"?")}function parse(e){if(!e||typeof e!=="string"){throw new TypeError("argument string is required")}var t=m.exec(e);if(!t){throw new TypeError("invalid type format")}var n=t[0].length;var r=t[1].toLowerCase();var i;var o=[];var a={};var s;n=f.lastIndex=t[0].substr(-1)===";"?n-1:n;while(t=f.exec(e)){if(t.index!==n){throw new TypeError("invalid parameter format")}n+=t[0].length;i=t[1].toLowerCase();s=t[2];if(o.indexOf(i)!==-1){throw new TypeError("invalid duplicate parameter")}o.push(i);if(i.indexOf("*")+1===i.length){i=i.slice(0,-1);s=decodefield(s);a[i]=s;continue}if(typeof a[i]==="string"){continue}if(s[0]==='"'){s=s.substr(1,s.length-2).replace(u,"$1")}a[i]=s}if(n!==-1&&n!==e.length){throw new TypeError("invalid parameter format")}return new ContentDisposition(r,a)}function pdecode(e,t){return String.fromCharCode(parseInt(t,16))}function pencode(e){return"%"+String(e).charCodeAt(0).toString(16).toUpperCase()}function qstring(e){var t=String(e);return'"'+t.replace(l,"\\$1")+'"'}function ustring(e){var t=String(e);var n=encodeURIComponent(t).replace(o,pencode);return"UTF-8''"+n}function ContentDisposition(e,t){this.type=e;this.parameters=t}},111:function(e,t,n){var r=n(2984);var i=n(7176).BigInteger;var o=n(7884).ECPointFp;var a=n(3062).Buffer;t.ECCurves=n(6559);function unstupid(e,t){return e.length>=t?e:unstupid("0"+e,t)}t.ECKey=function(e,t,n){var o;var s=e();var c=s.getN();var u=Math.floor(c.bitLength()/8);if(t){if(n){var e=s.getCurve();this.P=e.decodePointHex(t.toString("hex"))}else{if(t.length!=u)return false;o=new i(t.toString("hex"),16)}}else{var l=c.subtract(i.ONE);var f=new i(r.randomBytes(c.bitLength()));o=f.mod(l).add(i.ONE);this.P=s.getG().multiply(o)}if(this.P){this.PublicKey=a.from(s.getCurve().encodeCompressedPointHex(this.P),"hex")}if(o){this.PrivateKey=a.from(unstupid(o.toString(16),u*2),"hex");this.deriveSharedSecret=function(e){if(!e||!e.P)return false;var t=e.P.multiply(o);return a.from(unstupid(t.getX().toBigInteger().toString(16),u*2),"hex")}}}},120:function(e,t,n){e.exports=Key;var r=n(9261);var i=n(6977);var o=n(2984);var a=n(3941);var s=n(5511);var c=n(3252).DiffieHellman;var u=n(7825);var l=n(5271);var f=n(1946);var p;try{p=n(1405)}catch(e){}var d=u.InvalidAlgorithmError;var h=u.KeyParseError;var m={};m["auto"]=n(8610);m["pem"]=n(5302);m["pkcs1"]=n(2292);m["pkcs8"]=n(6109);m["rfc4253"]=n(2046);m["ssh"]=n(2806);m["ssh-private"]=n(9755);m["openssh"]=m["ssh-private"];m["dnssec"]=n(8051);m["putty"]=n(8792);m["ppk"]=m["putty"];function Key(e){r.object(e,"options");r.arrayOfObject(e.parts,"options.parts");r.string(e.type,"options.type");r.optionalString(e.comment,"options.comment");var t=i.info[e.type];if(typeof t!=="object")throw new d(e.type);var n={};for(var o=0;o<e.parts.length;++o){var a=e.parts[o];n[a.name]=a}this.type=e.type;this.parts=e.parts;this.part=n;this.comment=undefined;this.source=e.source;this._rfc4253Cache=e._rfc4253Cache;this._hashCache={};var s;this.curve=undefined;if(this.type==="ecdsa"){var c=this.part.curve.data.toString();this.curve=c;s=i.curves[c].size}else if(this.type==="ed25519"||this.type==="curve25519"){s=256;this.curve="curve25519"}else{var u=this.part[t.sizePart];s=u.data.length;s=s*8-l.countZeros(u.data)}this.size=s}Key.formats=m;Key.prototype.toBuffer=function(e,t){if(e===undefined)e="ssh";r.string(e,"format");r.object(m[e],"formats[format]");r.optionalObject(t,"options");if(e==="rfc4253"){if(this._rfc4253Cache===undefined)this._rfc4253Cache=m["rfc4253"].write(this);return this._rfc4253Cache}return m[e].write(this,t)};Key.prototype.toString=function(e,t){return this.toBuffer(e,t).toString()};Key.prototype.hash=function(e,t){r.string(e,"algorithm");r.optionalString(t,"type");if(t===undefined)t="ssh";e=e.toLowerCase();if(i.hashAlgs[e]===undefined)throw new d(e);var n=e+"||"+t;if(this._hashCache[n])return this._hashCache[n];var a;if(t==="ssh"){a=this.toBuffer("rfc4253")}else if(t==="spki"){a=m.pkcs8.pkcs8ToBuffer(this)}else{throw new Error("Hash type "+t+" not supported")}var s=o.createHash(e).update(a).digest();this._hashCache[n]=s;return s};Key.prototype.fingerprint=function(e,t){if(e===undefined)e="sha256";if(t===undefined)t="ssh";r.string(e,"algorithm");r.string(t,"type");var n={type:"key",hash:this.hash(e,t),algorithm:e,hashType:t};return new a(n)};Key.prototype.defaultHashAlgorithm=function(){var e="sha1";if(this.type==="rsa")e="sha256";if(this.type==="dsa"&&this.size>1024)e="sha256";if(this.type==="ed25519")e="sha512";if(this.type==="ecdsa"){if(this.size<=256)e="sha256";else if(this.size<=384)e="sha384";else e="sha512"}return e};Key.prototype.createVerify=function(e){if(e===undefined)e=this.defaultHashAlgorithm();r.string(e,"hash algorithm");if(this.type==="ed25519"&&p!==undefined)return new p.Verifier(this,e);if(this.type==="curve25519")throw new Error("Curve25519 keys are not suitable for "+"signing or verification");var t,n,i;try{n=e.toUpperCase();t=o.createVerify(n)}catch(e){i=e}if(t===undefined||i instanceof Error&&i.message.match(/Unknown message digest/)){n="RSA-";n+=e.toUpperCase();t=o.createVerify(n)}r.ok(t,"failed to create verifier");var a=t.verify.bind(t);var c=this.toBuffer("pkcs8");var u=this.curve;var l=this;t.verify=function(t,n){if(s.isSignature(t,[2,0])){if(t.type!==l.type)return false;if(t.hashAlgorithm&&t.hashAlgorithm!==e)return false;if(t.curve&&l.type==="ecdsa"&&t.curve!==u)return false;return a(c,t.toBuffer("asn1"))}else if(typeof t==="string"||Buffer.isBuffer(t)){return a(c,t,n)}else if(s.isSignature(t,[1,0])){throw new Error("signature was created by too old "+"a version of sshpk and cannot be verified")}else{throw new TypeError("signature must be a string, "+"Buffer, or Signature object")}};return t};Key.prototype.createDiffieHellman=function(){if(this.type==="rsa")throw new Error("RSA keys do not support Diffie-Hellman");return new c(this)};Key.prototype.createDH=Key.prototype.createDiffieHellman;Key.parse=function(e,t,n){if(typeof e!=="string")r.buffer(e,"data");if(t===undefined)t="auto";r.string(t,"format");if(typeof n==="string")n={filename:n};r.optionalObject(n,"options");if(n===undefined)n={};r.optionalString(n.filename,"options.filename");if(n.filename===undefined)n.filename="(unnamed)";r.object(m[t],"formats[format]");try{var i=m[t].read(e,n);if(i instanceof f)i=i.toPublic();if(!i.comment)i.comment=n.filename;return i}catch(e){if(e.name==="KeyEncryptedError")throw e;throw new h(n.filename,t,e)}};Key.isKey=function(e,t){return l.isCompatible(e,Key,t)};Key.prototype._sshpkApiVersion=[1,7];Key._oldVersionDetect=function(e){r.func(e.toBuffer);r.func(e.fingerprint);if(e.createDH)return[1,4];if(e.defaultHashAlgorithm)return[1,3];if(e.formats["auto"])return[1,2];if(e.formats["pkcs1"])return[1,1];return[1,0]}},127:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(3079);var i=r.getGlobalObject();var o="Sentry Logger ";var a=function(){function Logger(){this._enabled=false}Logger.prototype.disable=function(){this._enabled=false};Logger.prototype.enable=function(){this._enabled=true};Logger.prototype.log=function(){var e=[];for(var t=0;t<arguments.length;t++){e[t]=arguments[t]}if(!this._enabled){return}r.consoleSandbox(function(){i.console.log(o+"[Log]: "+e.join(" "))})};Logger.prototype.warn=function(){var e=[];for(var t=0;t<arguments.length;t++){e[t]=arguments[t]}if(!this._enabled){return}r.consoleSandbox(function(){i.console.warn(o+"[Warn]: "+e.join(" "))})};Logger.prototype.error=function(){var e=[];for(var t=0;t<arguments.length;t++){e[t]=arguments[t]}if(!this._enabled){return}r.consoleSandbox(function(){i.console.error(o+"[Error]: "+e.join(" "))})};return Logger}();i.__SENTRY__=i.__SENTRY__||{};var s=i.__SENTRY__.logger||(i.__SENTRY__.logger=new a);t.logger=s},136:function(e,t,n){"use strict";const r=n(4859);const i=n(5094);const o=Symbol("EOF");const a=Symbol("maybeEmitEnd");const s=Symbol("emittedEnd");const c=Symbol("closed");const u=Symbol("read");const l=Symbol("flush");const f=process.env._MP_NO_ITERATOR_SYMBOLS_!=="1";const p=f&&Symbol.asyncIterator||Symbol("asyncIterator not implemented");const d=f&&Symbol.iterator||Symbol("iterator not implemented");const h=Symbol("flushChunk");const m=n(552).StringDecoder;const v=Symbol("encoding");const g=Symbol("decoder");const y=Symbol("flowing");const b=Symbol("resume");const w=Symbol("bufferLength");const x=Symbol("bufferPush");const k=Symbol("bufferShift");const j=Symbol("objectMode");let S=Buffer;if(!S.alloc){S=n(9335).Buffer}e.exports=class MiniPass extends r{constructor(e){super();this[y]=false;this.pipes=new i;this.buffer=new i;this[j]=e&&e.objectMode||false;if(this[j])this[v]=null;else this[v]=e&&e.encoding||null;if(this[v]==="buffer")this[v]=null;this[g]=this[v]?new m(this[v]):null;this[o]=false;this[s]=false;this[c]=false;this.writable=true;this.readable=true;this[w]=0}get bufferLength(){return this[w]}get encoding(){return this[v]}set encoding(e){if(this[j])throw new Error("cannot set encoding in objectMode");if(this[v]&&e!==this[v]&&(this[g]&&this[g].lastNeed||this[w]))throw new Error("cannot change encoding");if(this[v]!==e){this[g]=e?new m(e):null;if(this.buffer.length)this.buffer=this.buffer.map(e=>this[g].write(e))}this[v]=e}setEncoding(e){this.encoding=e}write(e,t,n){if(this[o])throw new Error("write after end");if(typeof t==="function")n=t,t="utf8";if(!t)t="utf8";if(typeof e==="string"&&!this[j]&&!(t===this[v]&&!this[g].lastNeed)){e=S.from(e,t)}if(S.isBuffer(e)&&this[v])e=this[g].write(e);try{return this.flowing?(this.emit("data",e),this.flowing):(this[x](e),false)}finally{this.emit("readable");if(n)n()}}read(e){try{if(this[w]===0||e===0||e>this[w])return null;if(this[j])e=null;if(this.buffer.length>1&&!this[j]){if(this.encoding)this.buffer=new i([Array.from(this.buffer).join("")]);else this.buffer=new i([S.concat(Array.from(this.buffer),this[w])])}return this[u](e||null,this.buffer.head.value)}finally{this[a]()}}[u](e,t){if(e===t.length||e===null)this[k]();else{this.buffer.head.value=t.slice(e);t=t.slice(0,e);this[w]-=e}this.emit("data",t);if(!this.buffer.length&&!this[o])this.emit("drain");return t}end(e,t,n){if(typeof e==="function")n=e,e=null;if(typeof t==="function")n=t,t="utf8";if(e)this.write(e,t);if(n)this.once("end",n);this[o]=true;this.writable=false;if(this.flowing)this[a]()}[b](){this[y]=true;this.emit("resume");if(this.buffer.length)this[l]();else if(this[o])this[a]();else this.emit("drain")}resume(){return this[b]()}pause(){this[y]=false}get flowing(){return this[y]}[x](e){if(this[j])this[w]+=1;else this[w]+=e.length;return this.buffer.push(e)}[k](){if(this.buffer.length){if(this[j])this[w]-=1;else this[w]-=this.buffer.head.value.length}return this.buffer.shift()}[l](){do{}while(this[h](this[k]()));if(!this.buffer.length&&!this[o])this.emit("drain")}[h](e){return e?(this.emit("data",e),this.flowing):false}pipe(e,t){if(e===process.stdout||e===process.stderr)(t=t||{}).end=false;const n={dest:e,opts:t,ondrain:e=>this[b]()};this.pipes.push(n);e.on("drain",n.ondrain);this[b]();return e}addListener(e,t){return this.on(e,t)}on(e,t){try{return super.on(e,t)}finally{if(e==="data"&&!this.pipes.length&&!this.flowing)this[b]();else if(e==="end"&&this[s]){super.emit("end");this.removeAllListeners("end")}}}get emittedEnd(){return this[s]}[a](){if(!this[s]&&this.buffer.length===0&&this[o]){this.emit("end");this.emit("prefinish");this.emit("finish");if(this[c])this.emit("close")}}emit(e,t){if(e==="data"){if(!t)return;if(this.pipes.length)this.pipes.forEach(e=>e.dest.write(t)||this.pause())}else if(e==="end"){if(this[s]===true)return;this[s]=true;this.readable=false;if(this[g]){t=this[g].end();if(t){this.pipes.forEach(e=>e.dest.write(t));super.emit("data",t)}}this.pipes.forEach(e=>{e.dest.removeListener("drain",e.ondrain);if(!e.opts||e.opts.end!==false)e.dest.end()})}else if(e==="close"){this[c]=true;if(!this[s])return}const n=new Array(arguments.length);n[0]=e;n[1]=t;if(arguments.length>2){for(let e=2;e<arguments.length;e++){n[e]=arguments[e]}}try{return super.emit.apply(this,n)}finally{if(e!=="end")this[a]();else this.removeAllListeners("end")}}collect(){return new Promise((e,t)=>{const n=[];this.on("data",e=>n.push(e));this.on("end",()=>e(n));this.on("error",t)})}[p](){const e=()=>{const e=this.read();if(e!==null)return Promise.resolve({done:false,value:e});if(this[o])return Promise.resolve({done:true});let t=null;let n=null;const r=e=>{this.removeListener("data",i);this.removeListener("end",a);n(e)};const i=e=>{this.removeListener("error",r);this.removeListener("end",a);this.pause();t({value:e,done:!!this[o]})};const a=()=>{this.removeListener("error",r);this.removeListener("data",i);t({done:true})};return new Promise((e,o)=>{n=o;t=e;this.once("error",r);this.once("end",a);this.once("data",i)})};return{next:e}}[d](){const e=()=>{const e=this.read();const t=e===null;return{value:e,done:t}};return{next:e}}}},153:function(){throw new Error("Module parse failed: The keyword 'interface' is reserved (1:0)\nYou may need an appropriate loader to handle this file type.\n> interface Inputs {\n| statusCode: number;\n| location: string;")},160:function(e,t,n){"use strict";const r=n(5897);const i=n(2617);const o=n(6278);const a=n(6031);const s=n(4171);const c=n(4199);const u=n(8288);const l=n(1274);const f=n(4848);const p=l(i);const d=(e,t)=>{if(t.plugins.length===0){return Promise.resolve([])}return Promise.all(t.plugins.map(n=>n(e,t))).then(e=>e.reduce((e,t)=>e.concat(t)))};const h=(e,t,n)=>d(e,n).then(e=>{if(n.strip>0){e=e.map(e=>{e.path=f(e.path,n.strip);return e}).filter(e=>e.path!==".")}if(typeof n.filter==="function"){e=e.filter(n.filter)}if(typeof n.map==="function"){e=e.map(n.map)}if(!t){return e}return Promise.all(e.map(e=>{const n=r.join(t,e.path);const i=e.mode&~process.umask();const o=new Date;if(e.type==="directory"){return u(n).then(()=>p.utimes(n,o,e.mtime)).then(()=>e)}return u(r.dirname(n)).then(()=>{if(e.type==="link"){return p.link(e.linkname,n)}if(e.type==="symlink"&&process.platform==="win32"){return p.link(e.linkname,n)}if(e.type==="symlink"){return p.symlink(e.linkname,n)}return p.writeFile(n,e.data,{mode:i})}).then(()=>e.type==="file"&&p.utimes(n,o,e.mtime)).then(()=>e)}))});e.exports=((e,t,n)=>{if(typeof e!=="string"&&!Buffer.isBuffer(e)){return Promise.reject(new TypeError("Input file required"))}if(typeof t==="object"){n=t;t=null}n=Object.assign({plugins:[o(),a(),s(),c()]},n);const r=typeof e==="string"?p.readFile(e):Promise.resolve(e);return r.then(e=>h(e,t,n))})},165:function(e,t,n){"use strict";e.exports=n(3426)(global,loadImplementation);function loadImplementation(e){var t=null;if(shouldPreferGlobalPromise(e)){t={Promise:global.Promise,implementation:"global.Promise"}}else if(e){var n=require(e);t={Promise:n.Promise||n,implementation:e}}else{t=tryAutoDetect()}if(t===null){throw new Error("Cannot find any-promise implementation nor"+" global.Promise. You must install polyfill or call"+' require("any-promise/register") with your preferred'+' implementation, e.g. require("any-promise/register/bluebird")'+' on application load prior to any require("any-promise").')}return t}function shouldPreferGlobalPromise(e){if(e){return e==="global.Promise"}else if(typeof global.Promise!=="undefined"){var t=/v(\d+)\.(\d+)\.(\d+)/.exec(process.version);return!(t&&+t[1]==0&&+t[2]<12)}return false}function tryAutoDetect(){var e=["es6-promise","promise","native-promise-only","bluebird","rsvp","when","q","pinkie","lie","vow"];var t=0,n=e.length;for(;t<n;t++){try{return loadImplementation(e[t])}catch(e){}}return null}},171:function(e,t,n){var r=n(649);var i=n(2474);e.exports=function(){var e=Array.prototype.slice.call(arguments,0);var t=e.shift();if(t=="typo"){return makeTypoWarning.apply(null,e)}else{var n=i[t]?i[t]:t+": '%s'";e.unshift(n);return r.format.apply(null,e)}};function makeTypoWarning(e,t,n){if(n){e=n+"['"+e+"']";t=n+"['"+t+"']"}return r.format(i.typo,e,t)}},178:function(e,t,n){e.exports=isexe;isexe.sync=sync;var r=n(662);function checkPathExt(e,t){var n=t.pathExt!==undefined?t.pathExt:process.env.PATHEXT;if(!n){return true}n=n.split(";");if(n.indexOf("")!==-1){return true}for(var r=0;r<n.length;r++){var i=n[r].toLowerCase();if(i&&e.substr(-i.length).toLowerCase()===i){return true}}return false}function checkStat(e,t,n){if(!e.isSymbolicLink()&&!e.isFile()){return false}return checkPathExt(t,n)}function isexe(e,t,n){r.stat(e,function(r,i){n(r,r?false:checkStat(i,e,t))})}function sync(e,t){return checkStat(r.statSync(e),e,t)}},186:function(e,t,n){e.exports=minimatch;minimatch.Minimatch=Minimatch;var r={sep:"/"};try{r=n(5897)}catch(e){}var i=minimatch.GLOBSTAR=Minimatch.GLOBSTAR={};var o=n(6456);var a={"!":{open:"(?:(?!(?:",close:"))[^/]*?)"},"?":{open:"(?:",close:")?"},"+":{open:"(?:",close:")+"},"*":{open:"(?:",close:")*"},"@":{open:"(?:",close:")"}};var s="[^/]";var c=s+"*?";var u="(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?";var l="(?:(?!(?:\\/|^)\\.).)*?";var f=charSet("().*{}+?[]^$\\!");function charSet(e){return e.split("").reduce(function(e,t){e[t]=true;return e},{})}var p=/\/+/;minimatch.filter=filter;function filter(e,t){t=t||{};return function(n,r,i){return minimatch(n,e,t)}}function ext(e,t){e=e||{};t=t||{};var n={};Object.keys(t).forEach(function(e){n[e]=t[e]});Object.keys(e).forEach(function(t){n[t]=e[t]});return n}minimatch.defaults=function(e){if(!e||!Object.keys(e).length)return minimatch;var t=minimatch;var n=function minimatch(n,r,i){return t.minimatch(n,r,ext(e,i))};n.Minimatch=function Minimatch(n,r){return new t.Minimatch(n,ext(e,r))};return n};Minimatch.defaults=function(e){if(!e||!Object.keys(e).length)return Minimatch;return minimatch.defaults(e).Minimatch};function minimatch(e,t,n){if(typeof t!=="string"){throw new TypeError("glob pattern string required")}if(!n)n={};if(!n.nocomment&&t.charAt(0)==="#"){return false}if(t.trim()==="")return e==="";return new Minimatch(t,n).match(e)}function Minimatch(e,t){if(!(this instanceof Minimatch)){return new Minimatch(e,t)}if(typeof e!=="string"){throw new TypeError("glob pattern string required")}if(!t)t={};e=e.trim();if(r.sep!=="/"){e=e.split(r.sep).join("/")}this.options=t;this.set=[];this.pattern=e;this.regexp=null;this.negate=false;this.comment=false;this.empty=false;this.make()}Minimatch.prototype.debug=function(){};Minimatch.prototype.make=make;function make(){if(this._made)return;var e=this.pattern;var t=this.options;if(!t.nocomment&&e.charAt(0)==="#"){this.comment=true;return}if(!e){this.empty=true;return}this.parseNegate();var n=this.globSet=this.braceExpand();if(t.debug)this.debug=console.error;this.debug(this.pattern,n);n=this.globParts=n.map(function(e){return e.split(p)});this.debug(this.pattern,n);n=n.map(function(e,t,n){return e.map(this.parse,this)},this);this.debug(this.pattern,n);n=n.filter(function(e){return e.indexOf(false)===-1});this.debug(this.pattern,n);this.set=n}Minimatch.prototype.parseNegate=parseNegate;function parseNegate(){var e=this.pattern;var t=false;var n=this.options;var r=0;if(n.nonegate)return;for(var i=0,o=e.length;i<o&&e.charAt(i)==="!";i++){t=!t;r++}if(r)this.pattern=e.substr(r);this.negate=t}minimatch.braceExpand=function(e,t){return braceExpand(e,t)};Minimatch.prototype.braceExpand=braceExpand;function braceExpand(e,t){if(!t){if(this instanceof Minimatch){t=this.options}else{t={}}}e=typeof e==="undefined"?this.pattern:e;if(typeof e==="undefined"){throw new TypeError("undefined pattern")}if(t.nobrace||!e.match(/\{.*\}/)){return[e]}return o(e)}Minimatch.prototype.parse=parse;var d={};function parse(e,t){if(e.length>1024*64){throw new TypeError("pattern is too long")}var n=this.options;if(!n.noglobstar&&e==="**")return i;if(e==="")return"";var r="";var o=!!n.nocase;var u=false;var l=[];var p=[];var h;var m=false;var v=-1;var g=-1;var y=e.charAt(0)==="."?"":n.dot?"(?!(?:^|\\/)\\.{1,2}(?:$|\\/))":"(?!\\.)";var b=this;function clearStateChar(){if(h){switch(h){case"*":r+=c;o=true;break;case"?":r+=s;o=true;break;default:r+="\\"+h;break}b.debug("clearStateChar %j %j",h,r);h=false}}for(var w=0,x=e.length,k;w<x&&(k=e.charAt(w));w++){this.debug("%s\t%s %s %j",e,w,r,k);if(u&&f[k]){r+="\\"+k;u=false;continue}switch(k){case"/":return false;case"\\":clearStateChar();u=true;continue;case"?":case"*":case"+":case"@":case"!":this.debug("%s\t%s %s %j <-- stateChar",e,w,r,k);if(m){this.debug(" in class");if(k==="!"&&w===g+1)k="^";r+=k;continue}b.debug("call clearStateChar %j",h);clearStateChar();h=k;if(n.noext)clearStateChar();continue;case"(":if(m){r+="(";continue}if(!h){r+="\\(";continue}l.push({type:h,start:w-1,reStart:r.length,open:a[h].open,close:a[h].close});r+=h==="!"?"(?:(?!(?:":"(?:";this.debug("plType %j %j",h,r);h=false;continue;case")":if(m||!l.length){r+="\\)";continue}clearStateChar();o=true;var j=l.pop();r+=j.close;if(j.type==="!"){p.push(j)}j.reEnd=r.length;continue;case"|":if(m||!l.length||u){r+="\\|";u=false;continue}clearStateChar();r+="|";continue;case"[":clearStateChar();if(m){r+="\\"+k;continue}m=true;g=w;v=r.length;r+=k;continue;case"]":if(w===g+1||!m){r+="\\"+k;u=false;continue}if(m){var S=e.substring(g+1,w);try{RegExp("["+S+"]")}catch(e){var E=this.parse(S,d);r=r.substr(0,v)+"\\["+E[0]+"\\]";o=o||E[1];m=false;continue}}o=true;m=false;r+=k;continue;default:clearStateChar();if(u){u=false}else if(f[k]&&!(k==="^"&&m)){r+="\\"}r+=k}}if(m){S=e.substr(g+1);E=this.parse(S,d);r=r.substr(0,v)+"\\["+E[0];o=o||E[1]}for(j=l.pop();j;j=l.pop()){var _=r.slice(j.reStart+j.open.length);this.debug("setting tail",r,j);_=_.replace(/((?:\\{2}){0,64})(\\?)\|/g,function(e,t,n){if(!n){n="\\"}return t+t+n+"|"});this.debug("tail=%j\n %s",_,_,j,r);var C=j.type==="*"?c:j.type==="?"?s:"\\"+j.type;o=true;r=r.slice(0,j.reStart)+C+"\\("+_}clearStateChar();if(u){r+="\\\\"}var A=false;switch(r.charAt(0)){case".":case"[":case"(":A=true}for(var O=p.length-1;O>-1;O--){var F=p[O];var D=r.slice(0,F.reStart);var T=r.slice(F.reStart,F.reEnd-8);var I=r.slice(F.reEnd-8,F.reEnd);var R=r.slice(F.reEnd);I+=R;var P=D.split("(").length-1;var B=R;for(w=0;w<P;w++){B=B.replace(/\)[+*?]?/,"")}R=B;var N="";if(R===""&&t!==d){N="$"}var z=D+T+R+N+I;r=z}if(r!==""&&o){r="(?=.)"+r}if(A){r=y+r}if(t===d){return[r,o]}if(!o){return globUnescape(e)}var L=n.nocase?"i":"";try{var M=new RegExp("^"+r+"$",L)}catch(e){return new RegExp("$.")}M._glob=e;M._src=r;return M}minimatch.makeRe=function(e,t){return new Minimatch(e,t||{}).makeRe()};Minimatch.prototype.makeRe=makeRe;function makeRe(){if(this.regexp||this.regexp===false)return this.regexp;var e=this.set;if(!e.length){this.regexp=false;return this.regexp}var t=this.options;var n=t.noglobstar?c:t.dot?u:l;var r=t.nocase?"i":"";var o=e.map(function(e){return e.map(function(e){return e===i?n:typeof e==="string"?regExpEscape(e):e._src}).join("\\/")}).join("|");o="^(?:"+o+")$";if(this.negate)o="^(?!"+o+").*$";try{this.regexp=new RegExp(o,r)}catch(e){this.regexp=false}return this.regexp}minimatch.match=function(e,t,n){n=n||{};var r=new Minimatch(t,n);e=e.filter(function(e){return r.match(e)});if(r.options.nonull&&!e.length){e.push(t)}return e};Minimatch.prototype.match=match;function match(e,t){this.debug("match",e,this.pattern);if(this.comment)return false;if(this.empty)return e==="";if(e==="/"&&t)return true;var n=this.options;if(r.sep!=="/"){e=e.split(r.sep).join("/")}e=e.split(p);this.debug(this.pattern,"split",e);var i=this.set;this.debug(this.pattern,"set",i);var o;var a;for(a=e.length-1;a>=0;a--){o=e[a];if(o)break}for(a=0;a<i.length;a++){var s=i[a];var c=e;if(n.matchBase&&s.length===1){c=[o]}var u=this.matchOne(c,s,t);if(u){if(n.flipNegate)return true;return!this.negate}}if(n.flipNegate)return false;return this.negate}Minimatch.prototype.matchOne=function(e,t,n){var r=this.options;this.debug("matchOne",{this:this,file:e,pattern:t});this.debug("matchOne",e.length,t.length);for(var o=0,a=0,s=e.length,c=t.length;o<s&&a<c;o++,a++){this.debug("matchOne loop");var u=t[a];var l=e[o];this.debug(t,u,l);if(u===false)return false;if(u===i){this.debug("GLOBSTAR",[t,u,l]);var f=o;var p=a+1;if(p===c){this.debug("** at the end");for(;o<s;o++){if(e[o]==="."||e[o]===".."||!r.dot&&e[o].charAt(0)===".")return false}return true}while(f<s){var d=e[f];this.debug("\nglobstar while",e,f,t,p,d);if(this.matchOne(e.slice(f),t.slice(p),n)){this.debug("globstar found match!",f,s,d);return true}else{if(d==="."||d===".."||!r.dot&&d.charAt(0)==="."){this.debug("dot detected!",e,f,t,p);break}this.debug("globstar swallow a segment, and continue");f++}}if(n){this.debug("\n>>> no match, partial?",e,f,t,p);if(f===s)return true}return false}var h;if(typeof u==="string"){if(r.nocase){h=l.toLowerCase()===u.toLowerCase()}else{h=l===u}this.debug("string match",u,l,h)}else{h=l.match(u);this.debug("pattern match",u,l,h)}if(!h)return false}if(o===s&&a===c){return true}else if(o===s){return n}else if(a===c){var m=o===s-1&&e[o]==="";return m}throw new Error("wtf?")};function globUnescape(e){return e.replace(/\\(.)/g,"$1")}function regExpEscape(e){return e.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")}},192:function(e,t,n){"use strict";let r=Buffer;if(!r.alloc){r=n(9335).Buffer}e.exports=r},202:function(e,t,n){e.exports=n(165)().Promise},209:function(e){"use strict";e.exports=function generate_format(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");if(e.opts.format===false){if(u){r+=" if (true) { "}return r}var f=e.opts.$data&&a&&a.$data,p;if(f){r+=" var schema"+i+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ";p="schema"+i}else{p=a}var d=e.opts.unknownFormats,h=Array.isArray(d);if(f){var m="format"+i,v="isObject"+i,g="formatType"+i;r+=" var "+m+" = formats["+p+"]; var "+v+" = typeof "+m+" == 'object' && !("+m+" instanceof RegExp) && "+m+".validate; var "+g+" = "+v+" && "+m+".type || 'string'; if ("+v+") { ";if(e.async){r+=" var async"+i+" = "+m+".async; "}r+=" "+m+" = "+m+".validate; } if ( ";if(f){r+=" ("+p+" !== undefined && typeof "+p+" != 'string') || "}r+=" (";if(d!="ignore"){r+=" ("+p+" && !"+m+" ";if(h){r+=" && self._opts.unknownFormats.indexOf("+p+") == -1 "}r+=") || "}r+=" ("+m+" && "+g+" == '"+n+"' && !(typeof "+m+" == 'function' ? ";if(e.async){r+=" (async"+i+" ? await "+m+"("+l+") : "+m+"("+l+")) "}else{r+=" "+m+"("+l+") "}r+=" : "+m+".test("+l+"))))) {"}else{var m=e.formats[a];if(!m){if(d=="ignore"){e.logger.warn('unknown format "'+a+'" ignored in schema at path "'+e.errSchemaPath+'"');if(u){r+=" if (true) { "}return r}else if(h&&d.indexOf(a)>=0){if(u){r+=" if (true) { "}return r}else{throw new Error('unknown format "'+a+'" is used in schema at path "'+e.errSchemaPath+'"')}}var v=typeof m=="object"&&!(m instanceof RegExp)&&m.validate;var g=v&&m.type||"string";if(v){var y=m.async===true;m=m.validate}if(g!=n){if(u){r+=" if (true) { "}return r}if(y){if(!e.async)throw new Error("async format in sync schema");var b="formats"+e.util.getProperty(a)+".validate";r+=" if (!(await "+b+"("+l+"))) { "}else{r+=" if (! ";var b="formats"+e.util.getProperty(a);if(v)b+=".validate";if(typeof m=="function"){r+=" "+b+"("+l+") "}else{r+=" "+b+".test("+l+") "}r+=") { "}}var w=w||[];w.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"format"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { format: ";if(f){r+=""+p}else{r+=""+e.util.toQuotedString(a)}r+=" } ";if(e.opts.messages!==false){r+=" , message: 'should match format \"";if(f){r+="' + "+p+" + '"}else{r+=""+e.util.escapeQuotes(a)}r+="\"' "}if(e.opts.verbose){r+=" , schema: ";if(f){r+="validate.schema"+s}else{r+=""+e.util.toQuotedString(a)}r+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var x=r;r=w.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+x+"]); "}else{r+=" validate.errors = ["+x+"]; return false; "}}else{r+=" var err = "+x+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+=" } ";if(u){r+=" else { "}return r}},211:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(635);var o=n(4580);var a=n(1390);var s=n(706);var c=n(9248);var u=function(e){r.__extends(NodeBackend,e);function NodeBackend(){return e!==null&&e.apply(this,arguments)||this}NodeBackend.prototype._setupTransport=function(){if(!this._options.dsn){return e.prototype._setupTransport.call(this)}var t=new i.Dsn(this._options.dsn);var n=r.__assign({},this._options.transportOptions,this._options.httpProxy&&{httpProxy:this._options.httpProxy},this._options.httpsProxy&&{httpsProxy:this._options.httpsProxy},this._options.caCerts&&{caCerts:this._options.caCerts},{dsn:this._options.dsn});if(this._options.transport){return new this._options.transport(n)}if(t.protocol==="http"){return new c.HTTPTransport(n)}return new c.HTTPSTransport(n)};NodeBackend.prototype.eventFromException=function(e,t){var n=this;var o=e;var c={handled:true,type:"generic"};if(!a.isError(e)){if(a.isPlainObject(e)){var u=Object.keys(e).sort();var l="Non-Error exception captured with keys: "+a.keysToEventMessage(u);i.getCurrentHub().configureScope(function(t){t.setExtra("__serialized__",a.normalizeToSize(e))});o=t&&t.syntheticException||new Error(l);o.message=l}else{o=t&&t.syntheticException||new Error(e)}c.synthetic=true}return new a.SyncPromise(function(e,i){return s.parseError(o,n._options).then(function(n){a.addExceptionTypeValue(n,undefined,undefined,c);e(r.__assign({},n,{event_id:t&&t.event_id}))}).catch(i)})};NodeBackend.prototype.eventFromMessage=function(e,t,n){var r=this;if(t===void 0){t=o.Severity.Info}var i={event_id:n&&n.event_id,level:t,message:e};return new a.SyncPromise(function(e){if(r._options.attachStacktrace&&n&&n.syntheticException){var t=n.syntheticException?s.extractStackFromError(n.syntheticException):[];s.parseStack(t,r._options).then(function(t){i.stacktrace={frames:s.prepareFramesForEvent(t)};e(i)})}else{e(i)}})};return NodeBackend}(i.BaseBackend);t.NodeBackend=u},214:function(e){e.exports=false},216:function(e,t,n){var r=n(4810);var i=Object.prototype.toString;e.exports=function kindOf(e){if(typeof e==="undefined"){return"undefined"}if(e===null){return"null"}if(e===true||e===false||e instanceof Boolean){return"boolean"}if(typeof e==="string"||e instanceof String){return"string"}if(typeof e==="number"||e instanceof Number){return"number"}if(typeof e==="function"||e instanceof Function){return"function"}if(typeof Array.isArray!=="undefined"&&Array.isArray(e)){return"array"}if(e instanceof RegExp){return"regexp"}if(e instanceof Date){return"date"}var t=i.call(e);if(t==="[object RegExp]"){return"regexp"}if(t==="[object Date]"){return"date"}if(t==="[object Arguments]"){return"arguments"}if(t==="[object Error]"){return"error"}if(r(e)){return"buffer"}if(t==="[object Set]"){return"set"}if(t==="[object WeakSet]"){return"weakset"}if(t==="[object Map]"){return"map"}if(t==="[object WeakMap]"){return"weakmap"}if(t==="[object Symbol]"){return"symbol"}if(t==="[object Int8Array]"){return"int8array"}if(t==="[object Uint8Array]"){return"uint8array"}if(t==="[object Uint8ClampedArray]"){return"uint8clampedarray"}if(t==="[object Int16Array]"){return"int16array"}if(t==="[object Uint16Array]"){return"uint16array"}if(t==="[object Int32Array]"){return"int32array"}if(t==="[object Uint32Array]"){return"uint32array"}if(t==="[object Float32Array]"){return"float32array"}if(t==="[object Float64Array]"){return"float64array"}return"object"}},217:function(e,t,n){"use strict";e.exports=n(7409).extend({path:"coupons",includeBasic:["create","list","update","retrieve","del"]})},221:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({path:"orders",includeBasic:["list","retrieve","update"],create:i({method:"POST",required:["currency"]}),pay:i({method:"POST",path:"/{orderId}/pay",urlParams:["orderId"]}),returnOrder:i({method:"POST",path:"/{orderId}/returns",urlParams:["orderId"]})})},226:function(){throw new Error('Module parse failed: Unexpected token (1:0)\nYou may need an appropriate loader to handle this file type.\n> <header>\n| <div class="header-item first{{? it.app_error }} active{{?}}">\n| <svg class="header-item-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">')},247:function(e){"use strict";const t=e.exports;const n="[";const r=process.env.TERM_PROGRAM==="Apple_Terminal";t.cursorTo=function(e,t){if(arguments.length===0){return n+"H"}if(arguments.length===1){return n+(e+1)+"G"}return n+(t+1)+";"+(e+1)+"H"};t.cursorMove=((e,t)=>{let r="";if(e<0){r+=n+-e+"D"}else if(e>0){r+=n+e+"C"}if(t<0){r+=n+-t+"A"}else if(t>0){r+=n+t+"B"}return r});t.cursorUp=(e=>n+(typeof e==="number"?e:1)+"A");t.cursorDown=(e=>n+(typeof e==="number"?e:1)+"B");t.cursorForward=(e=>n+(typeof e==="number"?e:1)+"C");t.cursorBackward=(e=>n+(typeof e==="number"?e:1)+"D");t.cursorLeft=n+"G";t.cursorSavePosition=n+(r?"7":"s");t.cursorRestorePosition=n+(r?"8":"u");t.cursorGetPosition=n+"6n";t.cursorNextLine=n+"E";t.cursorPrevLine=n+"F";t.cursorHide=n+"?25l";t.cursorShow=n+"?25h";t.eraseLines=(e=>{let n="";for(let r=0;r<e;r++){n+=t.eraseLine+(r<e-1?t.cursorUp():"")}if(e){n+=t.cursorLeft}return n});t.eraseEndLine=n+"K";t.eraseStartLine=n+"1K";t.eraseLine=n+"2K";t.eraseDown=n+"J";t.eraseUp=n+"1J";t.eraseScreen=n+"2J";t.scrollUp=n+"S";t.scrollDown=n+"T";t.clearScreen="c";t.beep="";t.image=((e,t)=>{t=t||{};let n="]1337;File=inline=1";if(t.width){n+=`;width=${t.width}`}if(t.height){n+=`;height=${t.height}`}if(t.preserveAspectRatio===false){n+=";preserveAspectRatio=0"}return n+":"+e.toString("base64")+""});t.iTerm={};t.iTerm.setCwd=(e=>"]50;CurrentDir="+(e||process.cwd())+"")},284:function(e,t,n){var r=n(6886);e.exports=MuteStream;function MuteStream(e){r.apply(this);e=e||{};this.writable=this.readable=true;this.muted=false;this.on("pipe",this._onpipe);this.replace=e.replace;this._prompt=e.prompt||null;this._hadControl=false}MuteStream.prototype=Object.create(r.prototype);Object.defineProperty(MuteStream.prototype,"constructor",{value:MuteStream,enumerable:false});MuteStream.prototype.mute=function(){this.muted=true};MuteStream.prototype.unmute=function(){this.muted=false};Object.defineProperty(MuteStream.prototype,"_onpipe",{value:onPipe,enumerable:false,writable:true,configurable:true});function onPipe(e){this._src=e}Object.defineProperty(MuteStream.prototype,"isTTY",{get:getIsTTY,set:setIsTTY,enumerable:true,configurable:true});function getIsTTY(){return this._dest?this._dest.isTTY:this._src?this._src.isTTY:false}function setIsTTY(e){Object.defineProperty(this,"isTTY",{value:e,enumerable:true,writable:true,configurable:true})}Object.defineProperty(MuteStream.prototype,"rows",{get:function(){return this._dest?this._dest.rows:this._src?this._src.rows:undefined},enumerable:true,configurable:true});Object.defineProperty(MuteStream.prototype,"columns",{get:function(){return this._dest?this._dest.columns:this._src?this._src.columns:undefined},enumerable:true,configurable:true});MuteStream.prototype.pipe=function(e,t){this._dest=e;return r.prototype.pipe.call(this,e,t)};MuteStream.prototype.pause=function(){if(this._src)return this._src.pause()};MuteStream.prototype.resume=function(){if(this._src)return this._src.resume()};MuteStream.prototype.write=function(e){if(this.muted){if(!this.replace)return true;if(e.match(/^\u001b/)){if(e.indexOf(this._prompt)===0){e=e.substr(this._prompt.length);e=e.replace(/./g,this.replace);e=this._prompt+e}this._hadControl=true;return this.emit("data",e)}else{if(this._prompt&&this._hadControl&&e.indexOf(this._prompt)===0){this._hadControl=false;this.emit("data",this._prompt);e=e.substr(this._prompt.length)}e=e.toString().replace(/./g,this.replace)}}this.emit("data",e)};MuteStream.prototype.end=function(e){if(this.muted){if(e&&this.replace){e=e.toString().replace(/./g,this.replace)}else{e=null}}if(e)this.emit("data",e);this.emit("end")};function proxy(e){return function(){var t=this._dest;var n=this._src;if(t&&t[e])t[e].apply(t,arguments);if(n&&n[e])n[e].apply(n,arguments)}}MuteStream.prototype.destroy=proxy("destroy");MuteStream.prototype.destroySoon=proxy("destroySoon");MuteStream.prototype.close=proxy("close")},286:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(662);const o=n(5897);const a=n(5627);const s=n(8120);const c=r(function emptyDir(e,t){t=t||function(){};i.readdir(e,(n,r)=>{if(n)return a.mkdirs(e,t);r=r.map(t=>o.join(e,t));deleteItem();function deleteItem(){const e=r.pop();if(!e)return t();s.remove(e,e=>{if(e)return t(e);deleteItem()})}})});function emptyDirSync(e){let t;try{t=i.readdirSync(e)}catch(t){return a.mkdirsSync(e)}t.forEach(t=>{t=o.join(e,t);s.removeSync(t)})}e.exports={emptyDirSync:emptyDirSync,emptydirSync:emptyDirSync,emptyDir:c,emptydir:c}},288:function(e,t,n){"use strict";var r=n(3062).Buffer;t._dbcs=DBCSCodec;var i=-1,o=-2,a=-10,s=-1e3,c=new Array(256),u=-1;for(var l=0;l<256;l++)c[l]=i;function DBCSCodec(e,t){this.encodingName=e.encodingName;if(!e)throw new Error("DBCS codec is called without the data.");if(!e.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var n=e.table();this.decodeTables=[];this.decodeTables[0]=c.slice(0);this.decodeTableSeq=[];for(var r=0;r<n.length;r++)this._addDecodeChunk(n[r]);this.defaultCharUnicode=t.defaultCharUnicode;this.encodeTable=[];this.encodeTableSeq=[];var a={};if(e.encodeSkipVals)for(var r=0;r<e.encodeSkipVals.length;r++){var u=e.encodeSkipVals[r];if(typeof u==="number")a[u]=true;else for(var l=u.from;l<=u.to;l++)a[l]=true}this._fillEncodeTable(0,0,a);if(e.encodeAdd){for(var f in e.encodeAdd)if(Object.prototype.hasOwnProperty.call(e.encodeAdd,f))this._setEncodeChar(f.charCodeAt(0),e.encodeAdd[f])}this.defCharSB=this.encodeTable[0][t.defaultCharSingleByte.charCodeAt(0)];if(this.defCharSB===i)this.defCharSB=this.encodeTable[0]["?"];if(this.defCharSB===i)this.defCharSB="?".charCodeAt(0);if(typeof e.gb18030==="function"){this.gb18030=e.gb18030();var p=this.decodeTables.length;var d=this.decodeTables[p]=c.slice(0);var h=this.decodeTables.length;var m=this.decodeTables[h]=c.slice(0);for(var r=129;r<=254;r++){var v=s-this.decodeTables[0][r];var g=this.decodeTables[v];for(var l=48;l<=57;l++)g[l]=s-p}for(var r=129;r<=254;r++)d[r]=s-h;for(var r=48;r<=57;r++)m[r]=o}}DBCSCodec.prototype.encoder=DBCSEncoder;DBCSCodec.prototype.decoder=DBCSDecoder;DBCSCodec.prototype._getDecodeTrieNode=function(e){var t=[];for(;e>0;e>>=8)t.push(e&255);if(t.length==0)t.push(0);var n=this.decodeTables[0];for(var r=t.length-1;r>0;r--){var o=n[t[r]];if(o==i){n[t[r]]=s-this.decodeTables.length;this.decodeTables.push(n=c.slice(0))}else if(o<=s){n=this.decodeTables[s-o]}else throw new Error("Overwrite byte in "+this.encodingName+", addr: "+e.toString(16))}return n};DBCSCodec.prototype._addDecodeChunk=function(e){var t=parseInt(e[0],16);var n=this._getDecodeTrieNode(t);t=t&255;for(var r=1;r<e.length;r++){var i=e[r];if(typeof i==="string"){for(var o=0;o<i.length;){var s=i.charCodeAt(o++);if(55296<=s&&s<56320){var c=i.charCodeAt(o++);if(56320<=c&&c<57344)n[t++]=65536+(s-55296)*1024+(c-56320);else throw new Error("Incorrect surrogate pair in "+this.encodingName+" at chunk "+e[0])}else if(4080<s&&s<=4095){var u=4095-s+2;var l=[];for(var f=0;f<u;f++)l.push(i.charCodeAt(o++));n[t++]=a-this.decodeTableSeq.length;this.decodeTableSeq.push(l)}else n[t++]=s}}else if(typeof i==="number"){var p=n[t-1]+1;for(var o=0;o<i;o++)n[t++]=p++}else throw new Error("Incorrect type '"+typeof i+"' given in "+this.encodingName+" at chunk "+e[0])}if(t>255)throw new Error("Incorrect chunk in "+this.encodingName+" at addr "+e[0]+": too long"+t)};DBCSCodec.prototype._getEncodeBucket=function(e){var t=e>>8;if(this.encodeTable[t]===undefined)this.encodeTable[t]=c.slice(0);return this.encodeTable[t]};DBCSCodec.prototype._setEncodeChar=function(e,t){var n=this._getEncodeBucket(e);var r=e&255;if(n[r]<=a)this.encodeTableSeq[a-n[r]][u]=t;else if(n[r]==i)n[r]=t};DBCSCodec.prototype._setEncodeSequence=function(e,t){var n=e[0];var r=this._getEncodeBucket(n);var o=n&255;var s;if(r[o]<=a){s=this.encodeTableSeq[a-r[o]]}else{s={};if(r[o]!==i)s[u]=r[o];r[o]=a-this.encodeTableSeq.length;this.encodeTableSeq.push(s)}for(var c=1;c<e.length-1;c++){var l=s[n];if(typeof l==="object")s=l;else{s=s[n]={};if(l!==undefined)s[u]=l}}n=e[e.length-1];s[n]=t};DBCSCodec.prototype._fillEncodeTable=function(e,t,n){var r=this.decodeTables[e];for(var i=0;i<256;i++){var o=r[i];var c=t+i;if(n[c])continue;if(o>=0)this._setEncodeChar(o,c);else if(o<=s)this._fillEncodeTable(s-o,c<<8,n);else if(o<=a)this._setEncodeSequence(this.decodeTableSeq[a-o],c)}};function DBCSEncoder(e,t){this.leadSurrogate=-1;this.seqObj=undefined;this.encodeTable=t.encodeTable;this.encodeTableSeq=t.encodeTableSeq;this.defaultCharSingleByte=t.defCharSB;this.gb18030=t.gb18030}DBCSEncoder.prototype.write=function(e){var t=r.alloc(e.length*(this.gb18030?4:3)),n=this.leadSurrogate,o=this.seqObj,s=-1,c=0,l=0;while(true){if(s===-1){if(c==e.length)break;var f=e.charCodeAt(c++)}else{var f=s;s=-1}if(55296<=f&&f<57344){if(f<56320){if(n===-1){n=f;continue}else{n=f;f=i}}else{if(n!==-1){f=65536+(n-55296)*1024+(f-56320);n=-1}else{f=i}}}else if(n!==-1){s=f;f=i;n=-1}var p=i;if(o!==undefined&&f!=i){var d=o[f];if(typeof d==="object"){o=d;continue}else if(typeof d=="number"){p=d}else if(d==undefined){d=o[u];if(d!==undefined){p=d;s=f}else{}}o=undefined}else if(f>=0){var h=this.encodeTable[f>>8];if(h!==undefined)p=h[f&255];if(p<=a){o=this.encodeTableSeq[a-p];continue}if(p==i&&this.gb18030){var m=findIdx(this.gb18030.uChars,f);if(m!=-1){var p=this.gb18030.gbChars[m]+(f-this.gb18030.uChars[m]);t[l++]=129+Math.floor(p/12600);p=p%12600;t[l++]=48+Math.floor(p/1260);p=p%1260;t[l++]=129+Math.floor(p/10);p=p%10;t[l++]=48+p;continue}}}if(p===i)p=this.defaultCharSingleByte;if(p<256){t[l++]=p}else if(p<65536){t[l++]=p>>8;t[l++]=p&255}else{t[l++]=p>>16;t[l++]=p>>8&255;t[l++]=p&255}}this.seqObj=o;this.leadSurrogate=n;return t.slice(0,l)};DBCSEncoder.prototype.end=function(){if(this.leadSurrogate===-1&&this.seqObj===undefined)return;var e=r.alloc(10),t=0;if(this.seqObj){var n=this.seqObj[u];if(n!==undefined){if(n<256){e[t++]=n}else{e[t++]=n>>8;e[t++]=n&255}}else{}this.seqObj=undefined}if(this.leadSurrogate!==-1){e[t++]=this.defaultCharSingleByte;this.leadSurrogate=-1}return e.slice(0,t)};DBCSEncoder.prototype.findIdx=findIdx;function DBCSDecoder(e,t){this.nodeIdx=0;this.prevBuf=r.alloc(0);this.decodeTables=t.decodeTables;this.decodeTableSeq=t.decodeTableSeq;this.defaultCharUnicode=t.defaultCharUnicode;this.gb18030=t.gb18030}DBCSDecoder.prototype.write=function(e){var t=r.alloc(e.length*2),n=this.nodeIdx,c=this.prevBuf,u=this.prevBuf.length,l=-this.prevBuf.length,f;if(u>0)c=r.concat([c,e.slice(0,10)]);for(var p=0,d=0;p<e.length;p++){var h=p>=0?e[p]:c[p+u];var f=this.decodeTables[n][h];if(f>=0){}else if(f===i){p=l;f=this.defaultCharUnicode.charCodeAt(0)}else if(f===o){var m=l>=0?e.slice(l,p+1):c.slice(l+u,p+1+u);var v=(m[0]-129)*12600+(m[1]-48)*1260+(m[2]-129)*10+(m[3]-48);var g=findIdx(this.gb18030.gbChars,v);f=this.gb18030.uChars[g]+v-this.gb18030.gbChars[g]}else if(f<=s){n=s-f;continue}else if(f<=a){var y=this.decodeTableSeq[a-f];for(var b=0;b<y.length-1;b++){f=y[b];t[d++]=f&255;t[d++]=f>>8}f=y[y.length-1]}else throw new Error("iconv-lite internal error: invalid decoding table value "+f+" at "+n+"/"+h);if(f>65535){f-=65536;var w=55296+Math.floor(f/1024);t[d++]=w&255;t[d++]=w>>8;f=56320+f%1024}t[d++]=f&255;t[d++]=f>>8;n=0;l=p+1}this.nodeIdx=n;this.prevBuf=l>=0?e.slice(l):c.slice(l+u);return t.slice(0,d).toString("ucs2")};DBCSDecoder.prototype.end=function(){var e="";while(this.prevBuf.length>0){e+=this.defaultCharUnicode;var t=this.prevBuf.slice(1);this.prevBuf=r.alloc(0);this.nodeIdx=0;if(t.length>0)e+=this.write(t)}this.nodeIdx=0;return e};function findIdx(e,t){if(e[0]>t)return-1;var n=0,r=e.length;while(n<r-1){var i=n+Math.floor((r-n+1)/2);if(e[i]<=t)n=i;else r=i}return n}},291:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});const n="auto";function toNumberOrAuto(e){return e!==n?Number(e):n}t.default=toNumberOrAuto},295:function(e,t,n){"use strict";var r=n(6375);var i=n(825);function mixinDeep(e,t){var n=arguments.length,r=0;while(++r<n){var o=arguments[r];if(isObject(o)){i(o,copy,e)}}return e}function copy(e,t){if(!isValidKey(t)){return}var n=this[t];if(isObject(e)&&isObject(n)){mixinDeep(n,e)}else{this[t]=e}}function isObject(e){return r(e)&&!Array.isArray(e)}function isValidKey(e){return e!=="__proto__"&&e!=="constructor"&&e!=="prototype"}e.exports=mixinDeep},297:function(e,t,n){"use strict";var r=n(9575);e.exports=function isExtendable(e){return r(e)||typeof e==="function"||Array.isArray(e)}},298:function(e,t,n){"use strict";n.r(t);var r=n(541);var i=n.n(r);var o=n(3241);t["default"]=((e,t=1)=>{console.log(i()(e));Object(o["default"])(t)})},313:function(e,t,n){"use strict";var r=n(6414);var i=n(6207);e.exports=Object.assign||function(e){if(e===null||typeof e==="undefined"){throw new TypeError("Cannot convert undefined or null to object")}if(!isObject(e)){e={}}for(var t=1;t<arguments.length;t++){var n=arguments[t];if(isString(n)){n=toObject(n)}if(isObject(n)){assign(e,n);i(e,n)}}return e};function assign(e,t){for(var n in t){if(hasOwn(t,n)){e[n]=t[n]}}}function isString(e){return e&&typeof e==="string"}function toObject(e){var t={};for(var n in e){t[n]=e[n]}return t}function isObject(e){return e&&typeof e==="object"||r(e)}function hasOwn(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function isEnum(e,t){return Object.prototype.propertyIsEnumerable.call(e,t)}},315:function(e){"use strict";e.exports=function generate_uniqueItems(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f="valid"+i;var p=e.opts.$data&&a&&a.$data,d;if(p){r+=" var schema"+i+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ";d="schema"+i}else{d=a}if((a||p)&&e.opts.uniqueItems!==false){if(p){r+=" var "+f+"; if ("+d+" === false || "+d+" === undefined) "+f+" = true; else if (typeof "+d+" != 'boolean') "+f+" = false; else { "}r+=" var i = "+l+".length , "+f+" = true , j; if (i > 1) { ";var h=e.schema.items&&e.schema.items.type,m=Array.isArray(h);if(!h||h=="object"||h=="array"||m&&(h.indexOf("object")>=0||h.indexOf("array")>=0)){r+=" outer: for (;i--;) { for (j = i; j--;) { if (equal("+l+"[i], "+l+"[j])) { "+f+" = false; break outer; } } } "}else{r+=" var itemIndices = {}, item; for (;i--;) { var item = "+l+"[i]; ";var v="checkDataType"+(m?"s":"");r+=" if ("+e.util[v](h,"item",true)+") continue; ";if(m){r+=" if (typeof item == 'string') item = '\"' + item; "}r+=" if (typeof itemIndices[item] == 'number') { "+f+" = false; j = itemIndices[item]; break; } itemIndices[item] = i; } "}r+=" } ";if(p){r+=" } "}r+=" if (!"+f+") { ";var g=g||[];g.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"uniqueItems"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { i: i, j: j } ";if(e.opts.messages!==false){r+=" , message: 'should NOT have duplicate items (items ## ' + j + ' and ' + i + ' are identical)' "}if(e.opts.verbose){r+=" , schema: ";if(p){r+="validate.schema"+s}else{r+=""+a}r+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var y=r;r=g.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+y+"]); "}else{r+=" validate.errors = ["+y+"]; return false; "}}else{r+=" var err = "+y+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+=" } ";if(u){r+=" else { "}}else{if(u){r+=" if (true) { "}}return r}},323:function(e,t,n){"use strict";e.exports=function(e){var t=n(4730);var r=e._async;var i=t.tryCatch;var o=t.errorObj;function spreadAdapter(e,n){var a=this;if(!t.isArray(e))return successAdapter.call(a,e,n);var s=i(n).apply(a._boundValue(),[null].concat(e));if(s===o){r.throwLater(s.e)}}function successAdapter(e,t){var n=this;var a=n._boundValue();var s=e===undefined?i(t).call(a,null):i(t).call(a,null,e);if(s===o){r.throwLater(s.e)}}function errorAdapter(e,t){var n=this;if(!e){var a=new Error(e+"");a.cause=e;e=a}var s=i(t).call(n._boundValue(),e);if(s===o){r.throwLater(s.e)}}e.prototype.asCallback=e.prototype.nodeify=function(e,t){if(typeof e=="function"){var n=successAdapter;if(t!==undefined&&Object(t).spread){n=spreadAdapter}this._then(n,errorAdapter,undefined,this,e)}return this}}},324:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(8378));t.default=didYouMean;function didYouMean(e,t,n=.5){const r=t.map(t=>[dashAwareDistance(e,t),t]);const i=r.filter(e=>e[0]>n);if(i.length){const e=i.reduce((e,t)=>{return e[0]>t[0]?e:t});return e[1]}}function dashAwareDistance(e,t){const n=i.default(e,t);const r=t.split("-").map(t=>i.default(t,e));const o=r.reduce((e,t)=>e+t)/r.length;return n>o?n:o}},333:function(e){var t=Object.prototype.toString;e.exports=function kindOf(e){if(e===void 0)return"undefined";if(e===null)return"null";var n=typeof e;if(n==="boolean")return"boolean";if(n==="string")return"string";if(n==="number")return"number";if(n==="symbol")return"symbol";if(n==="function"){return isGeneratorFn(e)?"generatorfunction":"function"}if(isArray(e))return"array";if(isBuffer(e))return"buffer";if(isArguments(e))return"arguments";if(isDate(e))return"date";if(isError(e))return"error";if(isRegexp(e))return"regexp";switch(ctorName(e)){case"Symbol":return"symbol";case"Promise":return"promise";case"WeakMap":return"weakmap";case"WeakSet":return"weakset";case"Map":return"map";case"Set":return"set";case"Int8Array":return"int8array";case"Uint8Array":return"uint8array";case"Uint8ClampedArray":return"uint8clampedarray";case"Int16Array":return"int16array";case"Uint16Array":return"uint16array";case"Int32Array":return"int32array";case"Uint32Array":return"uint32array";case"Float32Array":return"float32array";case"Float64Array":return"float64array"}if(isGeneratorObj(e)){return"generator"}n=t.call(e);switch(n){case"[object Object]":return"object";case"[object Map Iterator]":return"mapiterator";case"[object Set Iterator]":return"setiterator";case"[object String Iterator]":return"stringiterator";case"[object Array Iterator]":return"arrayiterator"}return n.slice(8,-1).toLowerCase().replace(/\s/g,"")};function ctorName(e){return e.constructor?e.constructor.name:null}function isArray(e){if(Array.isArray)return Array.isArray(e);return e instanceof Array}function isError(e){return e instanceof Error||typeof e.message==="string"&&e.constructor&&typeof e.constructor.stackTraceLimit==="number"}function isDate(e){if(e instanceof Date)return true;return typeof e.toDateString==="function"&&typeof e.getDate==="function"&&typeof e.setDate==="function"}function isRegexp(e){if(e instanceof RegExp)return true;return typeof e.flags==="string"&&typeof e.ignoreCase==="boolean"&&typeof e.multiline==="boolean"&&typeof e.global==="boolean"}function isGeneratorFn(e,t){return ctorName(e)==="GeneratorFunction"}function isGeneratorObj(e){return typeof e.throw==="function"&&typeof e.return==="function"&&typeof e.next==="function"}function isArguments(e){try{if(typeof e.length==="number"&&typeof e.callee==="function"){return true}}catch(e){if(e.message.indexOf("callee")!==-1){return true}}return false}function isBuffer(e){if(e.constructor&&typeof e.constructor.isBuffer==="function"){return e.constructor.isBuffer(e)}return false}},336:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function getCnsFromArgs(e){return e.reduce((e,t)=>[...e,...t.split(",")],[]).filter(e=>e)}t.default=getCnsFromArgs},338:function(e){e.exports=function(e){try{return!!e()}catch(e){return true}}},339:function(e,t,n){"use strict";var r=function(){function defineProperties(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||false;r.configurable=true;if("value"in r)r.writable=true;Object.defineProperty(e,r.key,r)}}return function(e,t,n){if(t)defineProperties(e.prototype,t);if(n)defineProperties(e,n);return e}}();function _classCallCheck(e,t){if(!(e instanceof t)){throw new TypeError("Cannot call a class as a function")}}var i=n(5897);e.exports=function(){return new c};function make_array(e){return Array.isArray(e)?e:[e]}var o=/\/$/;var a="/";var s=typeof Symbol!=="undefined"?Symbol.for("dockerignore"):"dockerignore";function cleanPath(e){return i.normalize(e).replace(o,"")}var c=function(){function IgnoreBase(){_classCallCheck(this,IgnoreBase);this._rules=[];this[s]=true;this._initCache()}r(IgnoreBase,[{key:"_initCache",value:function _initCache(){this._cache={}}},{key:"add",value:function add(e){this._added=false;if(typeof e==="string"){e=e.split(/\r?\n/g)}make_array(e).forEach(this._addPattern,this);if(this._added){this._initCache()}return this}},{key:"addPattern",value:function addPattern(e){return this.add(e)}},{key:"_addPattern",value:function _addPattern(e){if(e&&e[s]){this._rules=this._rules.concat(e._rules);this._added=true;return}if(this._checkPattern(e)){var t=this._createRule(e.trim());if(t!==null){this._added=true;this._rules.push(t)}}}},{key:"_checkPattern",value:function _checkPattern(e){return e&&typeof e==="string"&&e.indexOf("#")!==0&&e.trim()!==""}},{key:"filter",value:function filter(e){var t=this;return make_array(e).filter(function(e){return t._filter(e)})}},{key:"createFilter",value:function createFilter(){var e=this;return function(t){return e._filter(t)}}},{key:"ignores",value:function ignores(e){return!this._filter(e)}},{key:"_createRule",value:function _createRule(e){var t=e;var n=false;if(e.indexOf("!")===0){n=true;e=e.substr(1).trim()}if(e.length>0){e=cleanPath(e);e=e.split(i.sep).join(a);if(e.length>1&&e[0]===a){e=e.slice(1)}}e=e.trim();if(e===""){return null}return{origin:t,pattern:e,dirs:e.split(i.sep),negative:n}}},{key:"_filter",value:function _filter(e){if(!e){return false}if(e in this._cache){return this._cache[e]}return this._cache[e]=this._test(e)}},{key:"_test",value:function _test(e){var t=this;e=e.split(a).join(i.sep);var n=cleanPath(i.dirname(e));var r=n.split(i.sep);var o=false;this._rules.forEach(function(a){var s=t._match(e,a);if(!s&&n!=="."){if(a.dirs.includes("**")){for(var c=a.dirs.filter(function(e){return e!=="**"}).length;c<=r.length;c++){s=s||t._match(r.slice(0,c).join(i.sep),a)}}else if(a.dirs.length<=r.length){s=t._match(r.slice(0,a.dirs.length).join(i.sep),a)}}if(s){o=!a.negative}});return!o}},{key:"_match",value:function _match(e,t){return this._compile(t).regexp.test(e)}},{key:"_compile",value:function _compile(e){if(e.regexp){return e}var t="^";var n=i.sep==="\\"?"\\\\":i.sep;for(var r=0;r<e.pattern.length;r++){var o=e.pattern[r];if(o==="*"){if(e.pattern[r+1]==="*"){r++;if(e.pattern[r+1]===n){r++}if(e.pattern[r+1]===undefined){t+=".*"}else{t+="(.*"+n+")?"}}else{t+="[^"+n+"]*"}}else if(o==="?"){t+="[^"+n+"]"}else if(o==="."||o==="$"){t+="\\"+o}else if(o==="\\"){if(i.sep==="\\"){t+=n;continue}if(e.pattern[r+1]!==undefined){t+="\\"+e.pattern[r+1];r++}else{t+="\\"}}else{t+=o}}t+="$";e.regexp=new RegExp(t,"i");return e}}]);return IgnoreBase}();var u={};if(typeof process!=="undefined"&&(process.env&&process.env.IGNORE_TEST_WIN32||process.platform==="win32")){var l=c.prototype._filter;var f=function make_posix(e){return/^\\\\\?\\/.test(e)||/[^\x00-\x80]+/.test(e)?e:e.replace(/\\/g,"/")};c.prototype._filter=function(e){e=f(e);return l.call(this,e)}}},342:function(e,t,n){"use strict";const r=n(192);class PackJob{constructor(e,t){this.path=e||"./";this.absolute=t;this.entry=null;this.stat=null;this.readdir=null;this.pending=false;this.ignore=false;this.piped=false}}const i=n(136);const o=n(2101);const a=n(6695);const s=n(885);const c=s.Sync;const u=s.Tar;const l=n(5094);const f=r.alloc(1024);const p=Symbol("onStat");const d=Symbol("ended");const h=Symbol("queue");const m=Symbol("current");const v=Symbol("process");const g=Symbol("processing");const y=Symbol("processJob");const b=Symbol("jobs");const w=Symbol("jobDone");const x=Symbol("addFSEntry");const k=Symbol("addTarEntry");const j=Symbol("stat");const S=Symbol("readdir");const E=Symbol("onreaddir");const _=Symbol("pipe");const C=Symbol("entry");const A=Symbol("entryOpt");const O=Symbol("writeEntryClass");const F=Symbol("write");const D=Symbol("ondrain");const T=n(662);const I=n(5897);const R=n(2247);const P=R(class Pack extends i{constructor(e){super(e);e=e||Object.create(null);this.opt=e;this.cwd=e.cwd||process.cwd();this.maxReadSize=e.maxReadSize;this.preservePaths=!!e.preservePaths;this.strict=!!e.strict;this.noPax=!!e.noPax;this.prefix=(e.prefix||"").replace(/(\\|\/)+$/,"");this.linkCache=e.linkCache||new Map;this.statCache=e.statCache||new Map;this.readdirCache=e.readdirCache||new Map;this[O]=s;if(typeof e.onwarn==="function")this.on("warn",e.onwarn);this.zip=null;if(e.gzip){if(typeof e.gzip!=="object")e.gzip={};this.zip=new o.Gzip(e.gzip);this.zip.on("data",e=>super.write(e));this.zip.on("end",e=>super.end());this.zip.on("drain",e=>this[D]());this.on("resume",e=>this.zip.resume())}else this.on("drain",this[D]);this.portable=!!e.portable;this.noDirRecurse=!!e.noDirRecurse;this.follow=!!e.follow;this.noMtime=!!e.noMtime;this.mtime=e.mtime||null;this.filter=typeof e.filter==="function"?e.filter:e=>true;this[h]=new l;this[b]=0;this.jobs=+e.jobs||4;this[g]=false;this[d]=false}[F](e){return super.write(e)}add(e){this.write(e);return this}end(e){if(e)this.write(e);this[d]=true;this[v]();return this}write(e){if(this[d])throw new Error("write after end");if(e instanceof a)this[k](e);else this[x](e);return this.flowing}[k](e){const t=I.resolve(this.cwd,e.path);if(this.prefix)e.path=this.prefix+"/"+e.path.replace(/^\.(\/+|$)/,"");if(!this.filter(e.path,e))e.resume();else{const n=new PackJob(e.path,t,false);n.entry=new u(e,this[A](n));n.entry.on("end",e=>this[w](n));this[b]+=1;this[h].push(n)}this[v]()}[x](e){const t=I.resolve(this.cwd,e);if(this.prefix)e=this.prefix+"/"+e.replace(/^\.(\/+|$)/,"");this[h].push(new PackJob(e,t));this[v]()}[j](e){e.pending=true;this[b]+=1;const t=this.follow?"stat":"lstat";T[t](e.absolute,(t,n)=>{e.pending=false;this[b]-=1;if(t)this.emit("error",t);else this[p](e,n)})}[p](e,t){this.statCache.set(e.absolute,t);e.stat=t;if(!this.filter(e.path,t))e.ignore=true;this[v]()}[S](e){e.pending=true;this[b]+=1;T.readdir(e.absolute,(t,n)=>{e.pending=false;this[b]-=1;if(t)return this.emit("error",t);this[E](e,n)})}[E](e,t){this.readdirCache.set(e.absolute,t);e.readdir=t;this[v]()}[v](){if(this[g])return;this[g]=true;for(let e=this[h].head;e!==null&&this[b]<this.jobs;e=e.next){this[y](e.value);if(e.value.ignore){const t=e.next;this[h].removeNode(e);e.next=t}}this[g]=false;if(this[d]&&!this[h].length&&this[b]===0){if(this.zip)this.zip.end(f);else{super.write(f);super.end()}}}get[m](){return this[h]&&this[h].head&&this[h].head.value}[w](e){this[h].shift();this[b]-=1;this[v]()}[y](e){if(e.pending)return;if(e.entry){if(e===this[m]&&!e.piped)this[_](e);return}if(!e.stat){if(this.statCache.has(e.absolute))this[p](e,this.statCache.get(e.absolute));else this[j](e)}if(!e.stat)return;if(e.ignore)return;if(!this.noDirRecurse&&e.stat.isDirectory()&&!e.readdir){if(this.readdirCache.has(e.absolute))this[E](e,this.readdirCache.get(e.absolute));else this[S](e);if(!e.readdir)return}e.entry=this[C](e);if(!e.entry){e.ignore=true;return}if(e===this[m]&&!e.piped)this[_](e)}[A](e){return{onwarn:(e,t)=>{this.warn(e,t)},noPax:this.noPax,cwd:this.cwd,absolute:e.absolute,preservePaths:this.preservePaths,maxReadSize:this.maxReadSize,strict:this.strict,portable:this.portable,linkCache:this.linkCache,statCache:this.statCache,noMtime:this.noMtime,mtime:this.mtime}}[C](e){this[b]+=1;try{return new this[O](e.path,this[A](e)).on("end",()=>this[w](e)).on("error",e=>this.emit("error",e))}catch(e){this.emit("error",e)}}[D](){if(this[m]&&this[m].entry)this[m].entry.resume()}[_](e){e.piped=true;if(e.readdir)e.readdir.forEach(t=>{const n=this.prefix?e.path.slice(this.prefix.length+1)||"./":e.path;const r=n==="./"?"":n.replace(/\/*$/,"/");this[x](r+t)});const t=e.entry;const n=this.zip;if(n)t.on("data",e=>{if(!n.write(e))t.pause()});else t.on("data",e=>{if(!super.write(e))t.pause()})}pause(){if(this.zip)this.zip.pause();return super.pause()}});class PackSync extends P{constructor(e){super(e);this[O]=c}pause(){}resume(){}[j](e){const t=this.follow?"statSync":"lstatSync";this[p](e,T[t](e.absolute))}[S](e,t){this[E](e,T.readdirSync(e.absolute))}[_](e){const t=e.entry;const n=this.zip;if(e.readdir)e.readdir.forEach(t=>{const n=this.prefix?e.path.slice(this.prefix.length+1)||"./":e.path;const r=n==="./"?"":n.replace(/\/*$/,"/");this[x](r+t)});if(n)t.on("data",e=>{n.write(e)});else t.on("data",e=>{super[F](e)})}}P.Sync=PackSync;e.exports=P},348:function(e,t,n){"use strict";n.r(t);t["default"]={oss:"OSS",free:"Free",premium:"Premium",pro:"Pro",advanced:"Advanced","on-demand":"On Demand",unlimited:"Unlimited"}},357:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function parseAddArgs(e){if(!e||e.length<1){return null}const[t,...n]=e;if(t&&n.length===0){return{domain:t,data:null}}const r=e[1]==="@"?"":e[1].toString();const i=e[2];const o=e[3];if(!(t&&typeof r==="string"&&i)){return null}if(i==="MX"&&e.length===5){return{domain:t,data:{name:r,type:i,value:o,mxPriority:Number(e[4])}}}if(i==="SRV"&&e.length===7){return{domain:t,data:{name:r,type:i,srv:{priority:Number(o),weight:Number(e[4]),port:Number(e[5]),target:e[6]}}}}if(e.length===4){return{domain:t,data:{name:r,type:i,value:o}}}return null}t.default=parseAddArgs},375:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(5627);const a=n(5529);function outputJsonSync(e,t,n){const s=i.dirname(e);if(!r.existsSync(s)){o.mkdirsSync(s)}a.writeJsonSync(e,t,n)}e.exports=outputJsonSync},378:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=n(662);const s=n(5897);const c=n(8715);const u=i(n(8950));function importZonefile(e,t,n,i){return r(this,void 0,void 0,function*(){const r=u.default(`Importing Zone file for domain ${n} under ${o.default.bold(t)}`);const l=a.readFileSync(s.resolve(i),"utf8");try{const t=yield e.fetch(`/v3/domains/${n}/records`,{headers:{"Content-Type":"text/dns"},body:l,method:"PUT",json:false});const{recordIds:i}=yield t.json();r();return i}catch(e){r();if(e.code==="not_found"){return new c.DomainNotFound(n)}if(e.code==="invalid_domain"){return new c.InvalidDomain(n)}throw e}})}t.default=importZonefile},412:function(e,t,n){var r=n(662);var i=n(5897);var o=n(186);function patternMatcher(e){return function(t,n){var r=new o.Minimatch(e,{matchBase:true});return(!r.negate||n.isFile())&&r.match(t)}}function toMatcherFunction(e){if(typeof e=="function"){return e}else{return patternMatcher(e)}}function readdir(e,t,n){if(typeof t=="function"){n=t;t=[]}if(!n){return new Promise(function(n,r){readdir(e,t||[],function(e,t){if(e){r(e)}else{n(t)}})})}t=t.map(toMatcherFunction);var o=[];r.readdir(e,function(a,s){if(a){return n(a)}var c=s.length;if(!c){return n(null,o)}s.forEach(function(a){var s=i.join(e,a);r.stat(s,function(e,r){if(e){return n(e)}if(t.some(function(e){return e(s,r)})){c-=1;if(!c){return n(null,o)}return null}if(r.isDirectory()){readdir(s,t,function(e,t){if(e){return n(e)}o=o.concat(t);c-=1;if(!c){return n(null,o)}})}else{o.push(s);c-=1;if(!c){return n(null,o)}}})})})}e.exports=readdir},416:function(e,t,n){var r=n(2138);var i=n(6634);function v4(e,t,n){var o=t&&n||0;if(typeof e=="string"){t=e==="binary"?new Array(16):null;e=null}e=e||{};var a=e.random||(e.rng||r)();a[6]=a[6]&15|64;a[8]=a[8]&63|128;if(t){for(var s=0;s<16;++s){t[o+s]=a[s]}}return t||i(a)}e.exports=v4},424:function(e){"use strict";e.exports=function generate_not(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f="errs__"+i;var p=e.util.copy(e);p.level++;var d="valid"+p.level;if(e.opts.strictKeywords?typeof a=="object"&&Object.keys(a).length>0:e.util.schemaHasRules(a,e.RULES.all)){p.schema=a;p.schemaPath=s;p.errSchemaPath=c;r+=" var "+f+" = errors; ";var h=e.compositeRule;e.compositeRule=p.compositeRule=true;p.createErrors=false;var m;if(p.opts.allErrors){m=p.opts.allErrors;p.opts.allErrors=false}r+=" "+e.validate(p)+" ";p.createErrors=true;if(m)p.opts.allErrors=m;e.compositeRule=p.compositeRule=h;r+=" if ("+d+") { ";var v=v||[];v.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"not"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: {} ";if(e.opts.messages!==false){r+=" , message: 'should NOT be valid' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var g=r;r=v.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+g+"]); "}else{r+=" validate.errors = ["+g+"]; return false; "}}else{r+=" var err = "+g+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+=" } else { errors = "+f+"; if (vErrors !== null) { if ("+f+") vErrors.length = "+f+"; else vErrors = null; } ";if(e.opts.allErrors){r+=" } "}}else{r+=" var err = ";if(e.createErrors!==false){r+=" { keyword: '"+"not"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: {} ";if(e.opts.messages!==false){r+=" , message: 'should NOT be valid' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}r+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ";if(u){r+=" if (false) { "}}return r}},428:function(e){"use strict";e.exports=function(e){function PromiseInspection(e){if(e!==undefined){e=e._target();this._bitField=e._bitField;this._settledValueField=e._isFateSealed()?e._settledValue():undefined}else{this._bitField=0;this._settledValueField=undefined}}PromiseInspection.prototype._settledValue=function(){return this._settledValueField};var t=PromiseInspection.prototype.value=function(){if(!this.isFulfilled()){throw new TypeError("cannot get fulfillment value of a non-fulfilled promise\n\n See http://goo.gl/MqrFmX\n")}return this._settledValue()};var n=PromiseInspection.prototype.error=PromiseInspection.prototype.reason=function(){if(!this.isRejected()){throw new TypeError("cannot get rejection reason of a non-rejected promise\n\n See http://goo.gl/MqrFmX\n")}return this._settledValue()};var r=PromiseInspection.prototype.isFulfilled=function(){return(this._bitField&33554432)!==0};var i=PromiseInspection.prototype.isRejected=function(){return(this._bitField&16777216)!==0};var o=PromiseInspection.prototype.isPending=function(){return(this._bitField&50397184)===0};var a=PromiseInspection.prototype.isResolved=function(){return(this._bitField&50331648)!==0};PromiseInspection.prototype.isCancelled=function(){return(this._bitField&8454144)!==0};e.prototype.__isCancelled=function(){return(this._bitField&65536)===65536};e.prototype._isCancelled=function(){return this._target().__isCancelled()};e.prototype.isCancelled=function(){return(this._target()._bitField&8454144)!==0};e.prototype.isPending=function(){return o.call(this._target())};e.prototype.isRejected=function(){return i.call(this._target())};e.prototype.isFulfilled=function(){return r.call(this._target())};e.prototype.isResolved=function(){return a.call(this._target())};e.prototype.value=function(){return t.call(this._target())};e.prototype.reason=function(){var e=this._target();e._unsetRejectionIsUnhandled();return n.call(e)};e.prototype._value=function(){return this._settledValue()};e.prototype._reason=function(){this._unsetRejectionIsUnhandled();return this._settledValue()};e.PromiseInspection=PromiseInspection}},430:function(e){"use strict";e.exports=function unique(e){if(!Array.isArray(e)){throw new TypeError("array-unique expects an array.")}var t=e.length;var n=-1;while(n++<t){var r=n+1;for(;r<e.length;++r){if(e[n]===e[r]){e.splice(r--,1)}}}return e};e.exports.immutable=function uniqueImmutable(t){if(!Array.isArray(t)){throw new TypeError("array-unique expects an array.")}var n=t.length;var r=new Array(n);for(var i=0;i<n;i++){r[i]=t[i]}return e.exports(r)}},432:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});t.generateQueryString=(e=>{if(e.force&&e.teamId){return`?teamId=${e.teamId}&forceNew=1`}else if(e.teamId){return`?teamId=${e.teamId}`}else if(e.force){return`?forceNew=1`}return""})},433:function(e,t,n){var r=n(6355);var i=n(7619);var o=n(2721);var a=n(7374);var s=n(2900);var c=n(774);var u=n(7265)("universal-analytics");e.exports=init;function init(e,t,n){return new l(e,t,n)}var l=e.exports.Visitor=function(e,t,n,r,i){if(typeof e==="object"){n=e;e=t=null}else if(typeof t==="object"){n=t;t=null}this._queue=[];this.options=n||{};if(this.options.hostname){s.hostname=this.options.hostname}if(this.options.path){s.path=this.options.path}if(this.options.http){var o=c.parse(s.hostname);s.hostname="http://"+o.host}if(this.options.enableBatching!==undefined){s.batching=n.enableBatching}if(this.options.batchSize){s.batchSize=this.options.batchSize}this._context=r||{};this._persistentParams=i||{};this.tid=e||this.options.tid;this.cid=this._determineCid(t,this.options.cid,this.options.strictCidFormat!==false);if(this.options.uid){this.uid=this.options.uid}};e.exports.middleware=function(t,n){this.tid=t;this.options=n;var r=(this.options||{}).cookieName||"_ga";return function(i,o,a){i.visitor=e.exports.createFromSession(i.session);if(i.visitor)return a();var s;if(i.cookies&&i.cookies[r]){var c=i.cookies[r].split(".");s=c[2]+"."+c[3]}i.visitor=init(t,s,n);if(i.session){i.session.cid=i.visitor.cid}a()}};e.exports.createFromSession=function(e){if(e&&e.cid){return init(this.tid,e.cid,this.options)}};l.prototype={debug:function(e){u.enabled=arguments.length===0?true:e;u("visitor.debug() is deprecated: set DEBUG=universal-analytics to enable logging");return this},reset:function(){this._context=null;return this},set:function(e,t){this._persistentParams=this._persistentParams||{};this._persistentParams[e]=t},pageview:function(e,t,n,r,i){if(typeof e==="object"&&e!=null){r=e;if(typeof t==="function"){i=t}e=t=n=null}else if(typeof t==="function"){i=t;t=n=null}else if(typeof n==="function"){i=n;n=null}else if(typeof r==="function"){i=r;r=null}r=this._translateParams(r);r=Object.assign({},this._persistentParams||{},r);r.dp=e||r.dp||this._context.dp;r.dh=t||r.dh||this._context.dh;r.dt=n||r.dt||this._context.dt;this._tidyParameters(r);if(!r.dp&&!r.dl){return this._handleError("Please provide either a page path (dp) or a document location (dl)",i)}return this._withContext(r)._enqueue("pageview",r,i)},screenview:function(e,t,n,r,i,o,a){if(typeof e==="object"&&e!=null){o=e;if(typeof t==="function"){a=t}e=t=n=r=i=null}else if(typeof t==="function"){a=t;t=n=r=i=null}else if(typeof n==="function"){a=n;n=r=i=null}else if(typeof r==="function"){a=r;r=i=null}else if(typeof i==="function"){a=i;i=null}else if(typeof o==="function"){a=o;o=null}o=this._translateParams(o);o=Object.assign({},this._persistentParams||{},o);o.cd=e||o.cd||this._context.cd;o.an=t||o.an||this._context.an;o.av=n||o.av||this._context.av;o.aid=r||o.aid||this._context.aid;o.aiid=i||o.aiid||this._context.aiid;this._tidyParameters(o);if(!o.cd||!o.an){return this._handleError("Please provide at least a screen name (cd) and an app name (an)",a)}return this._withContext(o)._enqueue("screenview",o,a)},event:function(e,t,n,r,i,o){if(typeof e==="object"&&e!=null){i=e;if(typeof t==="function"){o=t}e=t=n=r=null}else if(typeof n==="function"){o=n;n=r=null}else if(typeof r==="function"){o=r;r=null}else if(typeof i==="function"){o=i;i=null}i=this._translateParams(i);i=Object.assign({},this._persistentParams||{},i);i.ec=e||i.ec||this._context.ec;i.ea=t||i.ea||this._context.ea;i.el=n||i.el||this._context.el;i.ev=r||i.ev||this._context.ev;i.p=i.p||i.dp||this._context.p||this._context.dp;delete i.dp;this._tidyParameters(i);if(!i.ec||!i.ea){return this._handleError("Please provide at least an event category (ec) and an event action (ea)",o)}return this._withContext(i)._enqueue("event",i,o)},transaction:function(e,t,n,r,i,o,a){if(typeof e==="object"){o=e;if(typeof t==="function"){a=t}e=t=n=r=i=null}else if(typeof t==="function"){a=t;t=n=r=i=null}else if(typeof n==="function"){a=n;n=r=i=null}else if(typeof r==="function"){a=r;r=i=null}else if(typeof i==="function"){a=i;i=null}else if(typeof o==="function"){a=o;o=null}o=this._translateParams(o);o=Object.assign({},this._persistentParams||{},o);o.ti=e||o.ti||this._context.ti;o.tr=t||o.tr||this._context.tr;o.ts=n||o.ts||this._context.ts;o.tt=r||o.tt||this._context.tt;o.ta=i||o.ta||this._context.ta;o.p=o.p||this._context.p||this._context.dp;this._tidyParameters(o);if(!o.ti){return this._handleError("Please provide at least a transaction ID (ti)",a)}return this._withContext(o)._enqueue("transaction",o,a)},item:function(e,t,n,r,i,o,a){if(typeof e==="object"){o=e;if(typeof t==="function"){a=t}e=t=n=r=i=null}else if(typeof t==="function"){a=t;t=n=r=i=null}else if(typeof n==="function"){a=n;n=r=i=null}else if(typeof r==="function"){a=r;r=i=null}else if(typeof i==="function"){a=i;i=null}else if(typeof o==="function"){a=o;o=null}o=this._translateParams(o);o=Object.assign({},this._persistentParams||{},o);o.ip=e||o.ip||this._context.ip;o.iq=t||o.iq||this._context.iq;o.ic=n||o.ic||this._context.ic;o.in=r||o.in||this._context.in;o.iv=i||o.iv||this._context.iv;o.p=o.p||this._context.p||this._context.dp;o.ti=o.ti||this._context.ti;this._tidyParameters(o);if(!o.ti){return this._handleError("Please provide at least an item transaction ID (ti)",a)}return this._withContext(o)._enqueue("item",o,a)},exception:function(e,t,n,r){if(typeof e==="object"){n=e;if(typeof t==="function"){r=t}e=t=null}else if(typeof t==="function"){r=t;t=0}else if(typeof n==="function"){r=n;n=null}n=this._translateParams(n);n=Object.assign({},this._persistentParams||{},n);n.exd=e||n.exd||this._context.exd;n.exf=+!!(t||n.exf||this._context.exf);if(n.exf===0){delete n.exf}this._tidyParameters(n);return this._withContext(n)._enqueue("exception",n,r)},timing:function(e,t,n,r,i,o){if(typeof e==="object"){i=e;if(typeof t==="function"){o=t}e=t=n=r=null}else if(typeof t==="function"){o=t;t=n=r=null}else if(typeof n==="function"){o=n;n=r=null}else if(typeof r==="function"){o=r;r=null}else if(typeof i==="function"){o=i;i=null}i=this._translateParams(i);i=Object.assign({},this._persistentParams||{},i);i.utc=e||i.utc||this._context.utc;i.utv=t||i.utv||this._context.utv;i.utt=n||i.utt||this._context.utt;i.utl=r||i.utl||this._context.utl;this._tidyParameters(i);return this._withContext(i)._enqueue("timing",i,o)},send:function(e){var t=this;var n=1;var e=e||function(){};u("Sending %d tracking call(s)",t._queue.length);var i=function(e){return e.map(function(e){return o.stringify(e)}).join("\n")};var a=function(r){u("Finished sending tracking calls");e.call(t,r||null,n-1)};var c=function(){if(!t._queue.length){return a(null)}var e=[];if(s.batching){e=t._queue.splice(0,Math.min(t._queue.length,s.batchSize))}else{e.push(t._queue.shift())}var o=e.length>1;var c=s.hostname+(o?s.batchPath:s.path);u("%d: %o",n++,e);var l=Object.assign({},t.options.requestOptions,{body:i(e),headers:t.options.headers||{}});r.post(c,l,nextIteration)};function nextIteration(e){if(e)return a(e);c()}c()},_enqueue:function(e,t,n){if(typeof t==="function"){n=t;t={}}t=this._translateParams(t)||{};Object.assign(t,{v:s.protocolVersion,tid:this.tid,cid:this.cid,t:e});if(this.uid){t.uid=this.uid}this._queue.push(t);if(u.enabled){this._checkParameters(t)}u("Enqueued %s (%o)",e,t);if(n){this.send(n)}return this},_handleError:function(e,t){u("Error: %s",e);t&&t.call(this,new Error(e));return this},_determineCid:function(){var e=Array.prototype.splice.call(arguments,0);var t;var n=e.length-1;var r=e[n];if(r){for(var o=0;o<n;o++){t=a.ensureValidCid(e[o]);if(t!==false)return t;if(t!=null)u("Warning! Invalid UUID format '%s'",e[o])}}else{for(var o=0;o<n;o++){if(e[o])return e[o]}}return i.v4()},_checkParameters:function(e){for(var t in e){if(s.acceptedParameters.indexOf(t)!==-1||s.acceptedParametersRegex.filter(function(e){return e.test(t)}).length){continue}u("Warning! Unsupported tracking parameter %s (%s)",t,e[t])}},_translateParams:function(e){var t={};for(var n in e){if(s.parametersMap.hasOwnProperty(n)){t[s.parametersMap[n]]=e[n]}else{t[n]=e[n]}}return t},_tidyParameters:function(e){for(var t in e){if(e[t]===null||e[t]===undefined){delete e[t]}}return e},_withContext:function(e){var t=new l(this.tid,this.cid,this.options,e,this._persistentParams);t._queue=this._queue;return t}};l.prototype.pv=l.prototype.pageview;l.prototype.e=l.prototype.event;l.prototype.t=l.prototype.transaction;l.prototype.i=l.prototype.item},441:function(e,t,n){var r=n(1485);function startOfYear(e){var t=r(e);var n=new Date(0);n.setFullYear(t.getFullYear(),0,1);n.setHours(0,0,0,0);return n}e.exports=startOfYear},445:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(2740);const o=n(5869);function init({cacheDir:e}){return r(this,void 0,void 0,function*(){yield Promise.all([o.initializeRuntime(o.runtimes.nodejs),i.installNode(e,"6.10.0")])})}t.init=init},457:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(6386));function shouldCopyScalingAttributes(e,t){if(e.version===2||t.version===2){return false}return e.type!=="STATIC"&&i.default("bru1",e).min!==i.default("bru1",t).min||i.default("bru1",e).max!==i.default("bru1",t).max||i.default("gru1",e).min!==i.default("gru1",t).min||i.default("gru1",e).max!==i.default("gru1",t).max||i.default("sfo1",e).min!==i.default("sfo1",t).min||i.default("sfo1",e).max!==i.default("sfo1",t).max||i.default("iad1",e).min!==i.default("iad1",t).min||i.default("iad1",e).max!==i.default("iad1",t).max}t.default=shouldCopyScalingAttributes},459:function(e,t,n){"use strict";n.r(t);var r=n(2721);var i=n.n(r);var o=n(1973);var a=n.n(o);var s=n(797);var c=n.n(s);var u=n(4818);var l=n.n(u);var f=n(2229);var p=n.n(f);var d=n(1814);var h=n.n(d);var m=n(9544);var v=n.n(m);var g=n(9028);var y=n.n(g);var b=n(5580);var w=n.n(b);var x=n(541);var k=n.n(x);var j=n(6509);var S=n(8950);var E=n.n(S);var _=n(5593);var C=n.n(_);var A=n(6145);var O=n.n(A);var F=n(5152);var D=n(8685);var T=n.n(D);var I=n(2788);var R=n.n(I);var P=n(4680);var B=n.n(P);var N=n(4510);var z=n.n(N);var L=n(2385);var M=n(2547);var U=n.n(M);var q=n(6397);var H=n.n(q);var G=n(7905);var W=n.n(G);var V=n(4999);var J=n.n(V);var Y=n(3241);var Z=n(5242);var X=n.n(Z);var Q=n(7369);var K=n.n(Q);const $=c()("now:sh:login");const ee=()=>{console.log(`\n ${v.a.bold(`${J.a} now login`)} <email>\n\n ${v.a.dim("Options:")}\n\n -h, --help Output usage information\n -A ${v.a.bold.underline("FILE")}, --local-config=${v.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${v.a.bold.underline("DIR")}, --global-config=${v.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n\n ${v.a.dim("Examples:")}\n\n ${v.a.gray("")} Log into the Now platform\n\n ${v.a.cyan("$ now login")}\n\n ${v.a.gray("")} Log in using a specific email address\n\n ${v.a.cyan("$ now login john@doe.com")}\n`)};const te=async({apiUrl:e,email:t,verificationToken:n})=>{const i={email:t,token:n};$("GET /now/registration/verify");let o;try{o=await a()(`${e}/now/registration/verify?${Object(r["stringify"])(i)}`,{headers:{"User-Agent":y.a}})}catch(e){$(`error fetching /now/registration/verify: $O`,e.stack);throw new Error(k()(`An unexpected error occurred while trying to verify your login: ${e.message}`))}$("parsing response from GET /now/registration/verify");let s;try{s=await o.json()}catch(e){$(`error parsing the response from /now/registration/verify: $O`,e.stack);throw new Error(k()(`An unexpected error occurred while trying to verify your login: ${e.message}`))}return s.token};const ne=async()=>{let e;try{e=await l()({start:O()("Enter your email: ")})}catch(e){console.log();if(e.message==="User abort"){throw new Error(Object(j["default"])("No changes made."))}if(e.message==="stdin lacks setRawMode support"){throw new Error(k()(`Interactive mode not supported please run ${T()("now login you@domain.com")}`))}}console.log();return e};const re=async e=>{let t;try{t=w()(e.argv.slice(2))}catch(e){Object(L["handleError"])(e);return 1}if(t.help){ee();await Object(Y["default"])(0)}const n=t["--debug"];const r=X()({debug:n});t._=t._.slice(1);const i=e.apiUrl;let o;let a=false;let s;const c=t._[0];if(c){if(!Object(d["validate"])(c)){console.log(k()(`Invalid email: ${R()(c)}.`));return 1}o=c}else{do{try{o=await ne()}catch(e){let t="";if(e.message.includes("Aborted")){t=B()(2)}console.log(t+e.message);return 1}a=Object(d["validate"])(o);if(!a){process.stdout.write(B()(2))}}while(!a)}let u;let l;s=E()("Sending you an email");try{const e=await K()(i,o);u=e.token;l=e.securityCode}catch(e){s();console.log(k()(e.message));return 1}s();process.stdout.write(B()(c?1:2));console.log(O()(`We sent an email to ${C()(o)}. Please follow the steps provided`,` inside it and make sure the security code matches ${C()(l)}.`));s=E()("Waiting for your confirmation");let f;while(!f){try{await z()(p()("1s"));f=await te({apiUrl:i,email:o,verificationToken:u})}catch(e){if(/invalid json response body/.test(e.message)){}else{s();console.log(e.message);return 1}}}s();console.log(Object(F["default"])("Email confirmed"));e.authConfig.token=f;delete e.config.currentTeam;Object(M["writeToAuthConfigFile"])(e.authConfig);Object(M["writeToConfigFile"])(e.config);r.debug(`Saved credentials in "${W()(H()())}"`);console.log(`${v.a.cyan("> Congratulations!")} `+`You are now logged in. In order to deploy something, run ${T()("now")}.`);return e};t["default"]=re},462:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9544));function code(e){return`${i.default.gray("`")}${i.default.bold(e)}${i.default.gray("`")}`}t.default=code},467:function(){throw new Error("Module parse failed: The keyword 'interface' is reserved (1:0)\nYou may need an appropriate loader to handle this file type.\n> interface Inputs {\n| app_error: boolean;\n| title: string;")},479:function(e,t,n){"use strict";e.exports=n(7409).extend({path:"tokens",includeBasic:["create","retrieve"]})},487:function(e){e.exports={assert:true,async_hooks:">= 8",buffer_ieee754:"< 0.9.7",buffer:true,child_process:true,cluster:true,console:true,constants:true,crypto:true,_debug_agent:">= 1 && < 8",_debugger:"< 8",dgram:true,dns:true,domain:true,events:true,freelist:"< 6",fs:true,"fs/promises":">= 10 && < 10.1",_http_agent:">= 0.11.1",_http_client:">= 0.11.1",_http_common:">= 0.11.1",_http_incoming:">= 0.11.1",_http_outgoing:">= 0.11.1",_http_server:">= 0.11.1",http:true,http2:">= 8.8",https:true,inspector:">= 8.0.0",_linklist:"< 8",module:true,net:true,"node-inspect/lib/_inspect":">= 7.6.0 && < 12","node-inspect/lib/internal/inspect_client":">= 7.6.0 && < 12","node-inspect/lib/internal/inspect_repl":">= 7.6.0 && < 12",os:true,path:true,perf_hooks:">= 8.5",process:">= 1",punycode:true,querystring:true,readline:true,repl:true,smalloc:">= 0.11.5 && < 3",_stream_duplex:">= 0.9.4",_stream_transform:">= 0.9.4",_stream_wrap:">= 1.4.1",_stream_passthrough:">= 0.9.4",_stream_readable:">= 0.9.4",_stream_writable:">= 0.9.4",stream:true,string_decoder:true,sys:true,timers:true,_tls_common:">= 0.11.13",_tls_legacy:">= 0.11.3 && < 10",_tls_wrap:">= 0.11.3",tls:true,trace_events:">= 10",tty:true,url:true,util:true,"v8/tools/arguments":">= 10 && < 12","v8/tools/codemap":[">= 4.4.0 && < 5",">= 5.2.0 && < 12"],"v8/tools/consarray":[">= 4.4.0 && < 5",">= 5.2.0 && < 12"],"v8/tools/csvparser":[">= 4.4.0 && < 5",">= 5.2.0 && < 12"],"v8/tools/logreader":[">= 4.4.0 && < 5",">= 5.2.0 && < 12"],"v8/tools/profile_view":[">= 4.4.0 && < 5",">= 5.2.0 && < 12"],"v8/tools/splaytree":[">= 4.4.0 && < 5",">= 5.2.0 && < 12"],v8:">= 1",vm:true,worker_threads:">= 11.7",zlib:true}},496:function(e){e.exports=Mode;var t=61440;var n=4096;var r=8192;var i=16384;var o=24576;var a=32768;var s=40960;var c=49152;var u=57344;var l=2048;var f=1024;var p=512;var d=256;var h=128;var m=64;var v=32;var g=16;var y=8;var b=4;var w=2;var x=1;function Mode(e){if(!(this instanceof Mode))return new Mode(e);if(!e)throw new TypeError('must pass in a "stat" object');if("number"!=typeof e.mode)e.mode=0;this.stat=e;this.owner=new Owner(e);this.group=new Group(e);this.others=new Others(e)}Mode.prototype.valueOf=function(){return this.stat.mode};Mode.prototype.toString=function(){var e=[];if(this.isDirectory()){e.push("d")}else if(this.isFile()){e.push("-")}else if(this.isBlockDevice()){e.push("b")}else if(this.isCharacterDevice()){e.push("c")}else if(this.isSymbolicLink()){e.push("l")}else if(this.isFIFO()){e.push("p")}else if(this.isSocket()){e.push("s")}else{const e=this.valueOf();const t=new TypeError('Unexpected "file type": mode='+e);t.stat=this.stat;t.mode=e}e.push(this.owner.read?"r":"-");e.push(this.owner.write?"w":"-");if(this.setuid){e.push(this.owner.execute?"s":"S")}else{e.push(this.owner.execute?"x":"-")}e.push(this.group.read?"r":"-");e.push(this.group.write?"w":"-");if(this.setgid){e.push(this.group.execute?"s":"S")}else{e.push(this.group.execute?"x":"-")}e.push(this.others.read?"r":"-");e.push(this.others.write?"w":"-");if(this.sticky){e.push(this.others.execute?"t":"T")}else{e.push(this.others.execute?"x":"-")}return e.join("")};Mode.prototype.toOctal=function(){var e=this.stat.mode&4095;return("0000"+e.toString(8)).slice(-4)};Mode.prototype._checkModeProperty=function(e,n){var r=this.stat.mode;if(n){this.stat.mode=(r|t)&e|r&~t}return(r&t)===e};Mode.prototype.isDirectory=function(e){return this._checkModeProperty(i,e)};Mode.prototype.isFile=function(e){return this._checkModeProperty(a,e)};Mode.prototype.isBlockDevice=function(e){return this._checkModeProperty(o,e)};Mode.prototype.isCharacterDevice=function(e){return this._checkModeProperty(r,e)};Mode.prototype.isSymbolicLink=function(e){return this._checkModeProperty(s,e)};Mode.prototype.isFIFO=function(e){return this._checkModeProperty(n,e)};Mode.prototype.isSocket=function(e){return this._checkModeProperty(c,e)};_define(Mode.prototype,"setuid",function(){return Boolean(this.stat.mode&l)},function(e){if(e){this.stat.mode|=l}else{this.stat.mode&=~l}});_define(Mode.prototype,"setgid",function(){return Boolean(this.stat.mode&f)},function(e){if(e){this.stat.mode|=f}else{this.stat.mode&=~f}});_define(Mode.prototype,"sticky",function(){return Boolean(this.stat.mode&p)},function(e){if(e){this.stat.mode|=p}else{this.stat.mode&=~p}});function Owner(e){_define(this,"read",function(){return Boolean(e.mode&d)},function(t){if(t){e.mode|=d}else{e.mode&=~d}});_define(this,"write",function(){return Boolean(e.mode&h)},function(t){if(t){e.mode|=h}else{e.mode&=~h}});_define(this,"execute",function(){return Boolean(e.mode&m)},function(t){if(t){e.mode|=m}else{e.mode&=~m}})}function Group(e){_define(this,"read",function(){return Boolean(e.mode&v)},function(t){if(t){e.mode|=v}else{e.mode&=~v}});_define(this,"write",function(){return Boolean(e.mode&g)},function(t){if(t){e.mode|=g}else{e.mode&=~g}});_define(this,"execute",function(){return Boolean(e.mode&y)},function(t){if(t){e.mode|=y}else{e.mode&=~y}})}function Others(e){_define(this,"read",function(){return Boolean(e.mode&b)},function(t){if(t){e.mode|=b}else{e.mode&=~b}});_define(this,"write",function(){return Boolean(e.mode&w)},function(t){if(t){e.mode|=w}else{e.mode&=~w}});_define(this,"execute",function(){return Boolean(e.mode&x)},function(t){if(t){e.mode|=x}else{e.mode&=~x}})}function _define(e,t,n,r){Object.defineProperty(e,t,{enumerable:true,configurable:true,get:n,set:r})}},499:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(8715));function purchaseDomain(e,t,n){return r(this,void 0,void 0,function*(){try{return yield e.fetch(`/v3/domains/buy`,{body:{name:t,expectedPrice:n},method:"POST"})}catch(e){if(e.code==="invalid_domain"){return new o.InvalidDomain(t)}if(e.code==="not_available"){return new o.DomainNotAvailable(t)}if(e.code==="service_unavailabe"){return new o.DomainServiceNotAvailable(t)}if(e.code==="unexpected_error"){return new o.UnexpectedDomainPurchaseError(t)}if(e.code==="source_not_found"){return new o.SourceNotFound}if(e.code==="payment_error"){return new o.DomainPaymentError}if(e.code==="unsupported_tld"){return new o.UnsupportedTLD(t)}throw e}})}t.default=purchaseDomain},501:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=r(n(5772));const o=n(3683);e.exports={mkdirs:i,mkdirsSync:o,mkdirp:i,mkdirpSync:o,ensureDir:i,ensureDirSync:o}},517:function(e,t,n){"use strict";var r=n(8703);e.exports=Writable;function WriteReq(e,t,n){this.chunk=e;this.encoding=t;this.callback=n;this.next=null}function CorkedRequest(e){var t=this;this.next=null;this.entry=null;this.finish=function(){onCorkedFinish(t,e)}}var i=!process.browser&&["v0.10","v0.9."].indexOf(process.version.slice(0,5))>-1?setImmediate:r.nextTick;var o;Writable.WritableState=WritableState;var a=n(8107);a.inherits=n(8368);var s={deprecate:n(3109)};var c=n(3416);var u=n(2342).Buffer;var l=global.Uint8Array||function(){};function _uint8ArrayToBuffer(e){return u.from(e)}function _isUint8Array(e){return u.isBuffer(e)||e instanceof l}var f=n(7461);a.inherits(Writable,c);function nop(){}function WritableState(e,t){o=o||n(1178);e=e||{};var r=t instanceof o;this.objectMode=!!e.objectMode;if(r)this.objectMode=this.objectMode||!!e.writableObjectMode;var i=e.highWaterMark;var a=e.writableHighWaterMark;var s=this.objectMode?16:16*1024;if(i||i===0)this.highWaterMark=i;else if(r&&(a||a===0))this.highWaterMark=a;else this.highWaterMark=s;this.highWaterMark=Math.floor(this.highWaterMark);this.finalCalled=false;this.needDrain=false;this.ending=false;this.ended=false;this.finished=false;this.destroyed=false;var c=e.decodeStrings===false;this.decodeStrings=!c;this.defaultEncoding=e.defaultEncoding||"utf8";this.length=0;this.writing=false;this.corked=0;this.sync=true;this.bufferProcessing=false;this.onwrite=function(e){onwrite(t,e)};this.writecb=null;this.writelen=0;this.bufferedRequest=null;this.lastBufferedRequest=null;this.pendingcb=0;this.prefinished=false;this.errorEmitted=false;this.bufferedRequestCount=0;this.corkedRequestsFree=new CorkedRequest(this)}WritableState.prototype.getBuffer=function getBuffer(){var e=this.bufferedRequest;var t=[];while(e){t.push(e);e=e.next}return t};(function(){try{Object.defineProperty(WritableState.prototype,"buffer",{get:s.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer "+"instead.","DEP0003")})}catch(e){}})();var p;if(typeof Symbol==="function"&&Symbol.hasInstance&&typeof Function.prototype[Symbol.hasInstance]==="function"){p=Function.prototype[Symbol.hasInstance];Object.defineProperty(Writable,Symbol.hasInstance,{value:function(e){if(p.call(this,e))return true;if(this!==Writable)return false;return e&&e._writableState instanceof WritableState}})}else{p=function(e){return e instanceof this}}function Writable(e){o=o||n(1178);if(!p.call(Writable,this)&&!(this instanceof o)){return new Writable(e)}this._writableState=new WritableState(e,this);this.writable=true;if(e){if(typeof e.write==="function")this._write=e.write;if(typeof e.writev==="function")this._writev=e.writev;if(typeof e.destroy==="function")this._destroy=e.destroy;if(typeof e.final==="function")this._final=e.final}c.call(this)}Writable.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))};function writeAfterEnd(e,t){var n=new Error("write after end");e.emit("error",n);r.nextTick(t,n)}function validChunk(e,t,n,i){var o=true;var a=false;if(n===null){a=new TypeError("May not write null values to stream")}else if(typeof n!=="string"&&n!==undefined&&!t.objectMode){a=new TypeError("Invalid non-string/buffer chunk")}if(a){e.emit("error",a);r.nextTick(i,a);o=false}return o}Writable.prototype.write=function(e,t,n){var r=this._writableState;var i=false;var o=!r.objectMode&&_isUint8Array(e);if(o&&!u.isBuffer(e)){e=_uint8ArrayToBuffer(e)}if(typeof t==="function"){n=t;t=null}if(o)t="buffer";else if(!t)t=r.defaultEncoding;if(typeof n!=="function")n=nop;if(r.ended)writeAfterEnd(this,n);else if(o||validChunk(this,r,e,n)){r.pendingcb++;i=writeOrBuffer(this,r,o,e,t,n)}return i};Writable.prototype.cork=function(){var e=this._writableState;e.corked++};Writable.prototype.uncork=function(){var e=this._writableState;if(e.corked){e.corked--;if(!e.writing&&!e.corked&&!e.finished&&!e.bufferProcessing&&e.bufferedRequest)clearBuffer(this,e)}};Writable.prototype.setDefaultEncoding=function setDefaultEncoding(e){if(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 decodeChunk(e,t,n){if(!e.objectMode&&e.decodeStrings!==false&&typeof t==="string"){t=u.from(t,n)}return t}Object.defineProperty(Writable.prototype,"writableHighWaterMark",{enumerable:false,get:function(){return this._writableState.highWaterMark}});function writeOrBuffer(e,t,n,r,i,o){if(!n){var a=decodeChunk(t,r,i);if(r!==a){n=true;i="buffer";r=a}}var s=t.objectMode?1:r.length;t.length+=s;var c=t.length<t.highWaterMark;if(!c)t.needDrain=true;if(t.writing||t.corked){var u=t.lastBufferedRequest;t.lastBufferedRequest={chunk:r,encoding:i,isBuf:n,callback:o,next:null};if(u){u.next=t.lastBufferedRequest}else{t.bufferedRequest=t.lastBufferedRequest}t.bufferedRequestCount+=1}else{doWrite(e,t,false,s,r,i,o)}return c}function doWrite(e,t,n,r,i,o,a){t.writelen=r;t.writecb=a;t.writing=true;t.sync=true;if(n)e._writev(i,t.onwrite);else e._write(i,o,t.onwrite);t.sync=false}function onwriteError(e,t,n,i,o){--t.pendingcb;if(n){r.nextTick(o,i);r.nextTick(finishMaybe,e,t);e._writableState.errorEmitted=true;e.emit("error",i)}else{o(i);e._writableState.errorEmitted=true;e.emit("error",i);finishMaybe(e,t)}}function onwriteStateUpdate(e){e.writing=false;e.writecb=null;e.length-=e.writelen;e.writelen=0}function onwrite(e,t){var n=e._writableState;var r=n.sync;var o=n.writecb;onwriteStateUpdate(n);if(t)onwriteError(e,n,r,t,o);else{var a=needFinish(n);if(!a&&!n.corked&&!n.bufferProcessing&&n.bufferedRequest){clearBuffer(e,n)}if(r){i(afterWrite,e,n,a,o)}else{afterWrite(e,n,a,o)}}}function afterWrite(e,t,n,r){if(!n)onwriteDrain(e,t);t.pendingcb--;r();finishMaybe(e,t)}function onwriteDrain(e,t){if(t.length===0&&t.needDrain){t.needDrain=false;e.emit("drain")}}function clearBuffer(e,t){t.bufferProcessing=true;var n=t.bufferedRequest;if(e._writev&&n&&n.next){var r=t.bufferedRequestCount;var i=new Array(r);var o=t.corkedRequestsFree;o.entry=n;var a=0;var s=true;while(n){i[a]=n;if(!n.isBuf)s=false;n=n.next;a+=1}i.allBuffers=s;doWrite(e,t,true,t.length,i,"",o.finish);t.pendingcb++;t.lastBufferedRequest=null;if(o.next){t.corkedRequestsFree=o.next;o.next=null}else{t.corkedRequestsFree=new CorkedRequest(t)}t.bufferedRequestCount=0}else{while(n){var c=n.chunk;var u=n.encoding;var l=n.callback;var f=t.objectMode?1:c.length;doWrite(e,t,false,f,c,u,l);n=n.next;t.bufferedRequestCount--;if(t.writing){break}}if(n===null)t.lastBufferedRequest=null}t.bufferedRequest=n;t.bufferProcessing=false}Writable.prototype._write=function(e,t,n){n(new Error("_write() is not implemented"))};Writable.prototype._writev=null;Writable.prototype.end=function(e,t,n){var r=this._writableState;if(typeof e==="function"){n=e;e=null;t=null}else if(typeof t==="function"){n=t;t=null}if(e!==null&&e!==undefined)this.write(e,t);if(r.corked){r.corked=1;this.uncork()}if(!r.ending&&!r.finished)endWritable(this,r,n)};function needFinish(e){return e.ending&&e.length===0&&e.bufferedRequest===null&&!e.finished&&!e.writing}function callFinal(e,t){e._final(function(n){t.pendingcb--;if(n){e.emit("error",n)}t.prefinished=true;e.emit("prefinish");finishMaybe(e,t)})}function prefinish(e,t){if(!t.prefinished&&!t.finalCalled){if(typeof e._final==="function"){t.pendingcb++;t.finalCalled=true;r.nextTick(callFinal,e,t)}else{t.prefinished=true;e.emit("prefinish")}}}function finishMaybe(e,t){var n=needFinish(t);if(n){prefinish(e,t);if(t.pendingcb===0){t.finished=true;e.emit("finish")}}return n}function endWritable(e,t,n){t.ending=true;finishMaybe(e,t);if(n){if(t.finished)r.nextTick(n);else e.once("finish",n)}t.ended=true;e.writable=false}function onCorkedFinish(e,t,n){var r=e.entry;e.entry=null;while(r){var i=r.callback;t.pendingcb--;i(n);r=r.next}if(t.corkedRequestsFree){t.corkedRequestsFree.next=e}else{t.corkedRequestsFree=e}}Object.defineProperty(Writable.prototype,"destroyed",{get:function(){if(this._writableState===undefined){return false}return this._writableState.destroyed},set:function(e){if(!this._writableState){return}this._writableState.destroyed=e}});Writable.prototype.destroy=f.destroy;Writable.prototype._undestroy=f.undestroy;Writable.prototype._destroy=function(e,t){this.end();t(e)}},541:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9544));const o=n(2779);const a=o.metrics();function error(...e){let t=e;if(typeof e[0]==="object"){const{slug:n,message:r}=e[0];t=[r];if(n){t.push(`> More details: https://err.sh/now/${n}`)}}if(o.shouldCollectMetrics){a.exception(t.join("\n")).send()}return`${i.default.red("> Error!")} ${t.join("\n")}`}t.default=error},542:function(e){var t=Object.prototype.toString;e.exports=function kindOf(e){if(e===void 0)return"undefined";if(e===null)return"null";var n=typeof e;if(n==="boolean")return"boolean";if(n==="string")return"string";if(n==="number")return"number";if(n==="symbol")return"symbol";if(n==="function"){return isGeneratorFn(e)?"generatorfunction":"function"}if(isArray(e))return"array";if(isBuffer(e))return"buffer";if(isArguments(e))return"arguments";if(isDate(e))return"date";if(isError(e))return"error";if(isRegexp(e))return"regexp";switch(ctorName(e)){case"Symbol":return"symbol";case"Promise":return"promise";case"WeakMap":return"weakmap";case"WeakSet":return"weakset";case"Map":return"map";case"Set":return"set";case"Int8Array":return"int8array";case"Uint8Array":return"uint8array";case"Uint8ClampedArray":return"uint8clampedarray";case"Int16Array":return"int16array";case"Uint16Array":return"uint16array";case"Int32Array":return"int32array";case"Uint32Array":return"uint32array";case"Float32Array":return"float32array";case"Float64Array":return"float64array"}if(isGeneratorObj(e)){return"generator"}n=t.call(e);switch(n){case"[object Object]":return"object";case"[object Map Iterator]":return"mapiterator";case"[object Set Iterator]":return"setiterator";case"[object String Iterator]":return"stringiterator";case"[object Array Iterator]":return"arrayiterator"}return n.slice(8,-1).toLowerCase().replace(/\s/g,"")};function ctorName(e){return e.constructor?e.constructor.name:null}function isArray(e){if(Array.isArray)return Array.isArray(e);return e instanceof Array}function isError(e){return e instanceof Error||typeof e.message==="string"&&e.constructor&&typeof e.constructor.stackTraceLimit==="number"}function isDate(e){if(e instanceof Date)return true;return typeof e.toDateString==="function"&&typeof e.getDate==="function"&&typeof e.setDate==="function"}function isRegexp(e){if(e instanceof RegExp)return true;return typeof e.flags==="string"&&typeof e.ignoreCase==="boolean"&&typeof e.multiline==="boolean"&&typeof e.global==="boolean"}function isGeneratorFn(e,t){return ctorName(e)==="GeneratorFunction"}function isGeneratorObj(e){return typeof e.throw==="function"&&typeof e.return==="function"&&typeof e.next==="function"}function isArguments(e){try{if(typeof e.length==="number"&&typeof e.callee==="function"){return true}}catch(e){if(e.message.indexOf("callee")!==-1){return true}}return false}function isBuffer(e){if(e.constructor&&typeof e.constructor.isBuffer==="function"){return e.constructor.isBuffer(e)}return false}},543:function(e,t,n){e.exports=n(9884)},547:function(e,t,n){"use strict";e.exports=n(2656)&&typeof Symbol.toStringTag==="symbol"},550:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(3760).invalidWin32Path;const a=parseInt("0777",8);function mkdirs(e,t,n,s){if(typeof t==="function"){n=t;t={}}else if(!t||typeof t!=="object"){t={mode:t}}if(process.platform==="win32"&&o(e)){const t=new Error(e+" contains invalid WIN32 path characters.");t.code="EINVAL";return n(t)}let c=t.mode;const u=t.fs||r;if(c===undefined){c=a&~process.umask()}if(!s)s=null;n=n||function(){};e=i.resolve(e);u.mkdir(e,c,r=>{if(!r){s=s||e;return n(null,s)}switch(r.code){case"ENOENT":if(i.dirname(e)===e)return n(r);mkdirs(i.dirname(e),t,(r,i)=>{if(r)n(r,i);else mkdirs(e,t,n,i)});break;default:u.stat(e,(e,t)=>{if(e||!t.isDirectory())n(r,s);else n(null,s)});break}})}e.exports=mkdirs},552:function(e){e.exports=require("string_decoder")},554:function(e){var t=e.exports;e.exports.isWhiteSpace=function isWhiteSpace(e){return e===" "||e===" "||e==="\ufeff"||e>="\t"&&e<="\r"||e===""||e===""||e>=" "&&e<=""||e==="\u2028"||e==="\u2029"||e===""||e===""||e===" "};e.exports.isWhiteSpaceJSON=function isWhiteSpaceJSON(e){return e===" "||e==="\t"||e==="\n"||e==="\r"};e.exports.isLineTerminator=function isLineTerminator(e){return e==="\n"||e==="\r"||e==="\u2028"||e==="\u2029"};e.exports.isLineTerminatorJSON=function isLineTerminatorJSON(e){return e==="\n"||e==="\r"};e.exports.isIdentifierStart=function isIdentifierStart(e){return e==="$"||e==="_"||e>="A"&&e<="Z"||e>="a"&&e<="z"||e>="€"&&t.NonAsciiIdentifierStart.test(e)};e.exports.isIdentifierPart=function isIdentifierPart(e){return e==="$"||e==="_"||e>="A"&&e<="Z"||e>="a"&&e<="z"||e>="0"&&e<="9"||e>="€"&&t.NonAsciiIdentifierPart.test(e)};e.exports.NonAsciiIdentifierStart=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F0\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/;e.exports.NonAsciiIdentifierPart=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u08A0\u08A2-\u08AC\u08E4-\u08FE\u0900-\u0963\u0966-\u096F\u0971-\u0977\u0979-\u097F\u0981-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C01-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58\u0C59\u0C60-\u0C63\u0C66-\u0C6F\u0C82\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D02\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D57\u0D60-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F0\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191C\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1CD0-\u1CD2\u1CD4-\u1CF6\u1D00-\u1DE6\u1DFC-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200C\u200D\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA697\uA69F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA827\uA840-\uA873\uA880-\uA8C4\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A\uAA7B\uAA80-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE26\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/},555:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5897);const o=n(2617);const a=n(7184);const s=a.mkdirs;const c=a.mkdirsSync;const u=n(5231);const l=u.symlinkPaths;const f=u.symlinkPathsSync;const p=n(6144);const d=p.symlinkType;const h=p.symlinkTypeSync;const m=n(5527).pathExists;function createSymlink(e,t,n,r){r=typeof n==="function"?n:r;n=typeof n==="function"?false:n;m(t,(a,c)=>{if(a)return r(a);if(c)return r(null);l(e,t,(a,c)=>{if(a)return r(a);e=c.toDst;d(c.toCwd,n,(n,a)=>{if(n)return r(n);const c=i.dirname(t);m(c,(n,i)=>{if(n)return r(n);if(i)return o.symlink(e,t,a,r);s(c,n=>{if(n)return r(n);o.symlink(e,t,a,r)})})})})})}function createSymlinkSync(e,t,n){const r=o.existsSync(t);if(r)return undefined;const a=f(e,t);e=a.toDst;n=h(a.toCwd,n);const s=i.dirname(t);const u=o.existsSync(s);if(u)return o.symlinkSync(e,t,n);c(s);return o.symlinkSync(e,t,n)}e.exports={createSymlink:r(createSymlink),createSymlinkSync:createSymlinkSync}},586:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(89));t.default=((e=Date.now())=>{return()=>i.default(Date.now()-e)})},595:function(e,t,n){var r=n(2258);var i=n(4769);e.exports=function(e){e=e||{};return function(t){var n=[];var i=r(t,n,e);return function(e,t){var r=i.exec(e);if(!r)return false;t=t||{};var o,a;for(var s=0;s<n.length;s++){o=n[s];a=r[s+1];if(!a)continue;t[o.name]=decodeParam(a);if(o.repeat)t[o.name]=t[o.name].split(o.delimiter)}return t}}};function decodeParam(e){try{return decodeURIComponent(e)}catch(t){throw i(400,'failed to decode param "'+e+'"')}}},597:function(e){"use strict";e.exports=function(e,t){if(!t)t={};if(typeof t==="function")t={cmp:t};var n=typeof t.cycles==="boolean"?t.cycles:false;var r=t.cmp&&function(e){return function(t){return function(n,r){var i={key:n,value:t[n]};var o={key:r,value:t[r]};return e(i,o)}}}(t.cmp);var i=[];return function stringify(e){if(e&&e.toJSON&&typeof e.toJSON==="function"){e=e.toJSON()}if(e===undefined)return;if(typeof e=="number")return isFinite(e)?""+e:"null";if(typeof e!=="object")return JSON.stringify(e);var t,o;if(Array.isArray(e)){o="[";for(t=0;t<e.length;t++){if(t)o+=",";o+=stringify(e[t])||"null"}return o+"]"}if(e===null)return"null";if(i.indexOf(e)!==-1){if(n)return JSON.stringify("__cycle__");throw new TypeError("Converting circular structure to JSON")}var a=i.push(e)-1;var s=Object.keys(e).sort(r&&r(e));o="";for(t=0;t<s.length;t++){var c=s[t];var u=stringify(e[c]);if(!u)continue;if(o)o+=",";o+=JSON.stringify(c)+":"+u}i.splice(a,1);return"{"+o+"}"}(e)}},621:function(e){e.exports=[["0","\0",127,"€"],["8140","丂丄丅丆丏丒丗丟丠両丣並丩丮丯丱丳丵丷丼乀乁乂乄乆乊乑乕乗乚乛乢乣乤乥乧乨乪",5,"乲乴",9,"乿",6,"亇亊"],["8180","亐亖亗亙亜亝亞亣亪亯亰亱亴亶亷亸亹亼亽亾仈仌仏仐仒仚仛仜仠仢仦仧仩仭仮仯仱仴仸仹仺仼仾伀伂",6,"伋伌伒",4,"伜伝伡伣伨伩伬伭伮伱伳伵伷伹伻伾",4,"佄佅佇",5,"佒佔佖佡佢佦佨佪佫佭佮佱佲併佷佸佹佺佽侀侁侂侅來侇侊侌侎侐侒侓侕侖侘侙侚侜侞侟価侢"],["8240","侤侫侭侰",4,"侶",8,"俀俁係俆俇俈俉俋俌俍俒",4,"俙俛俠俢俤俥俧俫俬俰俲俴俵俶俷俹俻俼俽俿",11],["8280","個倎倐們倓倕倖倗倛倝倞倠倢倣値倧倫倯",10,"倻倽倿偀偁偂偄偅偆偉偊偋偍偐",4,"偖偗偘偙偛偝",7,"偦",5,"偭",8,"偸偹偺偼偽傁傂傃傄傆傇傉傊傋傌傎",20,"傤傦傪傫傭",4,"傳",6,"傼"],["8340","傽",17,"僐",5,"僗僘僙僛",10,"僨僩僪僫僯僰僱僲僴僶",4,"僼",9,"儈"],["8380","儉儊儌",5,"儓",13,"儢",28,"兂兇兊兌兎兏児兒兓兗兘兙兛兝",4,"兣兤兦內兩兪兯兲兺兾兿冃冄円冇冊冋冎冏冐冑冓冔冘冚冝冞冟冡冣冦",4,"冭冮冴冸冹冺冾冿凁凂凃凅凈凊凍凎凐凒",5],["8440","凘凙凚凜凞凟凢凣凥",5,"凬凮凱凲凴凷凾刄刅刉刋刌刏刐刓刔刕刜刞刟刡刢刣別刦刧刪刬刯刱刲刴刵刼刾剄",5,"剋剎剏剒剓剕剗剘"],["8480","剙剚剛剝剟剠剢剣剤剦剨剫剬剭剮剰剱剳",9,"剾劀劃",4,"劉",6,"劑劒劔",6,"劜劤劥劦劧劮劯劰労",9,"勀勁勂勄勅勆勈勊勌勍勎勏勑勓勔動勗務",5,"勠勡勢勣勥",10,"勱",7,"勻勼勽匁匂匃匄匇匉匊匋匌匎"],["8540","匑匒匓匔匘匛匜匞匟匢匤匥匧匨匩匫匬匭匯",9,"匼匽區卂卄卆卋卌卍卐協単卙卛卝卥卨卪卬卭卲卶卹卻卼卽卾厀厁厃厇厈厊厎厏"],["8580","厐",4,"厖厗厙厛厜厞厠厡厤厧厪厫厬厭厯",6,"厷厸厹厺厼厽厾叀參",4,"収叏叐叒叓叕叚叜叝叞叡叢叧叴叺叾叿吀吂吅吇吋吔吘吙吚吜吢吤吥吪吰吳吶吷吺吽吿呁呂呄呅呇呉呌呍呎呏呑呚呝",4,"呣呥呧呩",7,"呴呹呺呾呿咁咃咅咇咈咉咊咍咑咓咗咘咜咞咟咠咡"],["8640","咢咥咮咰咲咵咶咷咹咺咼咾哃哅哊哋哖哘哛哠",4,"哫哬哯哰哱哴",5,"哻哾唀唂唃唄唅唈唊",4,"唒唓唕",5,"唜唝唞唟唡唥唦"],["8680","唨唩唫唭唲唴唵唶唸唹唺唻唽啀啂啅啇啈啋",4,"啑啒啓啔啗",4,"啝啞啟啠啢啣啨啩啫啯",5,"啹啺啽啿喅喆喌喍喎喐喒喓喕喖喗喚喛喞喠",6,"喨",8,"喲喴営喸喺喼喿",4,"嗆嗇嗈嗊嗋嗎嗏嗐嗕嗗",4,"嗞嗠嗢嗧嗩嗭嗮嗰嗱嗴嗶嗸",4,"嗿嘂嘃嘄嘅"],["8740","嘆嘇嘊嘋嘍嘐",7,"嘙嘚嘜嘝嘠嘡嘢嘥嘦嘨嘩嘪嘫嘮嘯嘰嘳嘵嘷嘸嘺嘼嘽嘾噀",11,"噏",4,"噕噖噚噛噝",4],["8780","噣噥噦噧噭噮噯噰噲噳噴噵噷噸噹噺噽",7,"嚇",6,"嚐嚑嚒嚔",14,"嚤",10,"嚰",6,"嚸嚹嚺嚻嚽",12,"囋",8,"囕囖囘囙囜団囥",5,"囬囮囯囲図囶囷囸囻囼圀圁圂圅圇國",6],["8840","園",9,"圝圞圠圡圢圤圥圦圧圫圱圲圴",4,"圼圽圿坁坃坄坅坆坈坉坋坒",4,"坘坙坢坣坥坧坬坮坰坱坲坴坵坸坹坺坽坾坿垀"],["8880","垁垇垈垉垊垍",4,"垔",6,"垜垝垞垟垥垨垪垬垯垰垱垳垵垶垷垹",8,"埄",6,"埌埍埐埑埓埖埗埛埜埞埡埢埣埥",7,"埮埰埱埲埳埵埶執埻埼埾埿堁堃堄堅堈堉堊堌堎堏堐堒堓堔堖堗堘堚堛堜堝堟堢堣堥",4,"堫",4,"報堲堳場堶",7],["8940","堾",5,"塅",6,"塎塏塐塒塓塕塖塗塙",4,"塟",5,"塦",4,"塭",16,"塿墂墄墆墇墈墊墋墌"],["8980","墍",4,"墔",4,"墛墜墝墠",7,"墪",17,"墽墾墿壀壂壃壄壆",10,"壒壓壔壖",13,"壥",5,"壭壯壱売壴壵壷壸壺",7,"夃夅夆夈",4,"夎夐夑夒夓夗夘夛夝夞夠夡夢夣夦夨夬夰夲夳夵夶夻"],["8a40","夽夾夿奀奃奅奆奊奌奍奐奒奓奙奛",4,"奡奣奤奦",12,"奵奷奺奻奼奾奿妀妅妉妋妌妎妏妐妑妔妕妘妚妛妜妝妟妠妡妢妦"],["8a80","妧妬妭妰妱妳",5,"妺妼妽妿",6,"姇姈姉姌姍姎姏姕姖姙姛姞",4,"姤姦姧姩姪姫姭",11,"姺姼姽姾娀娂娊娋娍娎娏娐娒娔娕娖娗娙娚娛娝娞娡娢娤娦娧娨娪",6,"娳娵娷",4,"娽娾娿婁",4,"婇婈婋",9,"婖婗婘婙婛",5],["8b40","婡婣婤婥婦婨婩婫",8,"婸婹婻婼婽婾媀",17,"媓",6,"媜",13,"媫媬"],["8b80","媭",4,"媴媶媷媹",4,"媿嫀嫃",5,"嫊嫋嫍",4,"嫓嫕嫗嫙嫚嫛嫝嫞嫟嫢嫤嫥嫧嫨嫪嫬",4,"嫲",22,"嬊",11,"嬘",25,"嬳嬵嬶嬸",7,"孁",6],["8c40","孈",7,"孒孖孞孠孡孧孨孫孭孮孯孲孴孶孷學孹孻孼孾孿宂宆宊宍宎宐宑宒宔宖実宧宨宩宬宭宮宯宱宲宷宺宻宼寀寁寃寈寉寊寋寍寎寏"],["8c80","寑寔",8,"寠寢寣實寧審",4,"寯寱",6,"寽対尀専尃尅將專尋尌對導尐尒尓尗尙尛尞尟尠尡尣尦尨尩尪尫尭尮尯尰尲尳尵尶尷屃屄屆屇屌屍屒屓屔屖屗屘屚屛屜屝屟屢層屧",6,"屰屲",6,"屻屼屽屾岀岃",4,"岉岊岋岎岏岒岓岕岝",4,"岤",4],["8d40","岪岮岯岰岲岴岶岹岺岻岼岾峀峂峃峅",5,"峌",5,"峓",5,"峚",6,"峢峣峧峩峫峬峮峯峱",9,"峼",4],["8d80","崁崄崅崈",5,"崏",4,"崕崗崘崙崚崜崝崟",4,"崥崨崪崫崬崯",4,"崵",7,"崿",7,"嵈嵉嵍",10,"嵙嵚嵜嵞",10,"嵪嵭嵮嵰嵱嵲嵳嵵",12,"嶃",21,"嶚嶛嶜嶞嶟嶠"],["8e40","嶡",21,"嶸",12,"巆",6,"巎",12,"巜巟巠巣巤巪巬巭"],["8e80","巰巵巶巸",4,"巿帀帄帇帉帊帋帍帎帒帓帗帞",7,"帨",4,"帯帰帲",4,"帹帺帾帿幀幁幃幆",5,"幍",6,"幖",4,"幜幝幟幠幣",14,"幵幷幹幾庁庂広庅庈庉庌庍庎庒庘庛庝庡庢庣庤庨",4,"庮",4,"庴庺庻庼庽庿",6],["8f40","廆廇廈廋",5,"廔廕廗廘廙廚廜",11,"廩廫",8,"廵廸廹廻廼廽弅弆弇弉弌弍弎弐弒弔弖弙弚弜弝弞弡弢弣弤"],["8f80","弨弫弬弮弰弲",6,"弻弽弾弿彁",14,"彑彔彙彚彛彜彞彟彠彣彥彧彨彫彮彯彲彴彵彶彸彺彽彾彿徃徆徍徎徏徑従徔徖徚徛徝從徟徠徢",5,"復徫徬徯",5,"徶徸徹徺徻徾",4,"忇忈忊忋忎忓忔忕忚忛応忞忟忢忣忥忦忨忩忬忯忰忲忳忴忶忷忹忺忼怇"],["9040","怈怉怋怌怐怑怓怗怘怚怞怟怢怣怤怬怭怮怰",4,"怶",4,"怽怾恀恄",6,"恌恎恏恑恓恔恖恗恘恛恜恞恟恠恡恥恦恮恱恲恴恵恷恾悀"],["9080","悁悂悅悆悇悈悊悋悎悏悐悑悓悕悗悘悙悜悞悡悢悤悥悧悩悪悮悰悳悵悶悷悹悺悽",7,"惇惈惉惌",4,"惒惓惔惖惗惙惛惞惡",4,"惪惱惲惵惷惸惻",4,"愂愃愄愅愇愊愋愌愐",4,"愖愗愘愙愛愜愝愞愡愢愥愨愩愪愬",18,"慀",6],["9140","慇慉態慍慏慐慒慓慔慖",6,"慞慟慠慡慣慤慥慦慩",6,"慱慲慳慴慶慸",18,"憌憍憏",4,"憕"],["9180","憖",6,"憞",8,"憪憫憭",9,"憸",5,"憿懀懁懃",4,"應懌",4,"懓懕",16,"懧",13,"懶",8,"戀",5,"戇戉戓戔戙戜戝戞戠戣戦戧戨戩戫戭戯戰戱戲戵戶戸",4,"扂扄扅扆扊"],["9240","扏扐払扖扗扙扚扜",6,"扤扥扨扱扲扴扵扷扸扺扻扽抁抂抃抅抆抇抈抋",5,"抔抙抜抝択抣抦抧抩抪抭抮抯抰抲抳抴抶抷抸抺抾拀拁"],["9280","拃拋拏拑拕拝拞拠拡拤拪拫拰拲拵拸拹拺拻挀挃挄挅挆挊挋挌挍挏挐挒挓挔挕挗挘挙挜挦挧挩挬挭挮挰挱挳",5,"挻挼挾挿捀捁捄捇捈捊捑捒捓捔捖",7,"捠捤捥捦捨捪捫捬捯捰捲捳捴捵捸捹捼捽捾捿掁掃掄掅掆掋掍掑掓掔掕掗掙",6,"採掤掦掫掯掱掲掵掶掹掻掽掿揀"],["9340","揁揂揃揅揇揈揊揋揌揑揓揔揕揗",6,"揟揢揤",4,"揫揬揮揯揰揱揳揵揷揹揺揻揼揾搃搄搆",4,"損搎搑搒搕",5,"搝搟搢搣搤"],["9380","搥搧搨搩搫搮",5,"搵",4,"搻搼搾摀摂摃摉摋",6,"摓摕摖摗摙",4,"摟",7,"摨摪摫摬摮",9,"摻",6,"撃撆撈",8,"撓撔撗撘撚撛撜撝撟",4,"撥撦撧撨撪撫撯撱撲撳撴撶撹撻撽撾撿擁擃擄擆",6,"擏擑擓擔擕擖擙據"],["9440","擛擜擝擟擠擡擣擥擧",24,"攁",7,"攊",7,"攓",4,"攙",8],["9480","攢攣攤攦",4,"攬攭攰攱攲攳攷攺攼攽敀",4,"敆敇敊敋敍敎敐敒敓敔敗敘敚敜敟敠敡敤敥敧敨敩敪敭敮敯敱敳敵敶數",14,"斈斉斊斍斎斏斒斔斕斖斘斚斝斞斠斢斣斦斨斪斬斮斱",7,"斺斻斾斿旀旂旇旈旉旊旍旐旑旓旔旕旘",7,"旡旣旤旪旫"],["9540","旲旳旴旵旸旹旻",4,"昁昄昅昇昈昉昋昍昐昑昒昖昗昘昚昛昜昞昡昢昣昤昦昩昪昫昬昮昰昲昳昷",4,"昽昿晀時晄",6,"晍晎晐晑晘"],["9580","晙晛晜晝晞晠晢晣晥晧晩",4,"晱晲晳晵晸晹晻晼晽晿暀暁暃暅暆暈暉暊暋暍暎暏暐暒暓暔暕暘",4,"暞",8,"暩",4,"暯",4,"暵暶暷暸暺暻暼暽暿",25,"曚曞",7,"曧曨曪",5,"曱曵曶書曺曻曽朁朂會"],["9640","朄朅朆朇朌朎朏朑朒朓朖朘朙朚朜朞朠",5,"朧朩朮朰朲朳朶朷朸朹朻朼朾朿杁杄杅杇杊杋杍杒杔杕杗",4,"杝杢杣杤杦杧杫杬杮東杴杶"],["9680","杸杹杺杻杽枀枂枃枅枆枈枊枌枍枎枏枑枒枓枔枖枙枛枟枠枡枤枦枩枬枮枱枲枴枹",7,"柂柅",9,"柕柖柗柛柟柡柣柤柦柧柨柪柫柭柮柲柵",7,"柾栁栂栃栄栆栍栐栒栔栕栘",4,"栞栟栠栢",6,"栫",6,"栴栵栶栺栻栿桇桋桍桏桒桖",5],["9740","桜桝桞桟桪桬",7,"桵桸",8,"梂梄梇",7,"梐梑梒梔梕梖梘",9,"梣梤梥梩梪梫梬梮梱梲梴梶梷梸"],["9780","梹",6,"棁棃",5,"棊棌棎棏棐棑棓棔棖棗棙棛",4,"棡棢棤",9,"棯棲棳棴棶棷棸棻棽棾棿椀椂椃椄椆",4,"椌椏椑椓",11,"椡椢椣椥",7,"椮椯椱椲椳椵椶椷椸椺椻椼椾楀楁楃",16,"楕楖楘楙楛楜楟"],["9840","楡楢楤楥楧楨楩楪楬業楯楰楲",4,"楺楻楽楾楿榁榃榅榊榋榌榎",5,"榖榗榙榚榝",9,"榩榪榬榮榯榰榲榳榵榶榸榹榺榼榽"],["9880","榾榿槀槂",7,"構槍槏槑槒槓槕",5,"槜槝槞槡",11,"槮槯槰槱槳",9,"槾樀",9,"樋",11,"標",5,"樠樢",5,"権樫樬樭樮樰樲樳樴樶",6,"樿",4,"橅橆橈",7,"橑",6,"橚"],["9940","橜",4,"橢橣橤橦",10,"橲",6,"橺橻橽橾橿檁檂檃檅",8,"檏檒",4,"檘",7,"檡",5],["9980","檧檨檪檭",114,"欥欦欨",6],["9a40","欯欰欱欳欴欵欶欸欻欼欽欿歀歁歂歄歅歈歊歋歍",11,"歚",7,"歨歩歫",13,"歺歽歾歿殀殅殈"],["9a80","殌殎殏殐殑殔殕殗殘殙殜",4,"殢",7,"殫",7,"殶殸",6,"毀毃毄毆",4,"毌毎毐毑毘毚毜",4,"毢",7,"毬毭毮毰毱毲毴毶毷毸毺毻毼毾",6,"氈",4,"氎氒気氜氝氞氠氣氥氫氬氭氱氳氶氷氹氺氻氼氾氿汃汄汅汈汋",4,"汑汒汓汖汘"],["9b40","汙汚汢汣汥汦汧汫",4,"汱汳汵汷汸決汻汼汿沀沄沇沊沋沍沎沑沒沕沖沗沘沚沜沝沞沠沢沨沬沯沰沴沵沶沷沺泀況泂泃泆泇泈泋泍泎泏泑泒泘"],["9b80","泙泚泜泝泟泤泦泧泩泬泭泲泴泹泿洀洂洃洅洆洈洉洊洍洏洐洑洓洔洕洖洘洜洝洟",5,"洦洨洩洬洭洯洰洴洶洷洸洺洿浀浂浄浉浌浐浕浖浗浘浛浝浟浡浢浤浥浧浨浫浬浭浰浱浲浳浵浶浹浺浻浽",4,"涃涄涆涇涊涋涍涏涐涒涖",4,"涜涢涥涬涭涰涱涳涴涶涷涹",5,"淁淂淃淈淉淊"],["9c40","淍淎淏淐淒淓淔淕淗淚淛淜淟淢淣淥淧淨淩淪淭淯淰淲淴淵淶淸淺淽",7,"渆渇済渉渋渏渒渓渕渘渙減渜渞渟渢渦渧渨渪測渮渰渱渳渵"],["9c80","渶渷渹渻",7,"湅",7,"湏湐湑湒湕湗湙湚湜湝湞湠",10,"湬湭湯",14,"満溁溂溄溇溈溊",4,"溑",6,"溙溚溛溝溞溠溡溣溤溦溨溩溫溬溭溮溰溳溵溸溹溼溾溿滀滃滄滅滆滈滉滊滌滍滎滐滒滖滘滙滛滜滝滣滧滪",5],["9d40","滰滱滲滳滵滶滷滸滺",7,"漃漄漅漇漈漊",4,"漐漑漒漖",9,"漡漢漣漥漦漧漨漬漮漰漲漴漵漷",6,"漿潀潁潂"],["9d80","潃潄潅潈潉潊潌潎",9,"潙潚潛潝潟潠潡潣潤潥潧",5,"潯潰潱潳潵潶潷潹潻潽",6,"澅澆澇澊澋澏",12,"澝澞澟澠澢",4,"澨",10,"澴澵澷澸澺",5,"濁濃",5,"濊",6,"濓",10,"濟濢濣濤濥"],["9e40","濦",7,"濰",32,"瀒",7,"瀜",6,"瀤",6],["9e80","瀫",9,"瀶瀷瀸瀺",17,"灍灎灐",13,"灟",11,"灮灱灲灳灴灷灹灺灻災炁炂炃炄炆炇炈炋炌炍炏炐炑炓炗炘炚炛炞",12,"炰炲炴炵炶為炾炿烄烅烆烇烉烋",12,"烚"],["9f40","烜烝烞烠烡烢烣烥烪烮烰",6,"烸烺烻烼烾",10,"焋",4,"焑焒焔焗焛",10,"焧",7,"焲焳焴"],["9f80","焵焷",13,"煆煇煈煉煋煍煏",12,"煝煟",4,"煥煩",4,"煯煰煱煴煵煶煷煹煻煼煾",5,"熅",4,"熋熌熍熎熐熑熒熓熕熖熗熚",4,"熡",6,"熩熪熫熭",5,"熴熶熷熸熺",8,"燄",9,"燏",4],["a040","燖",9,"燡燢燣燤燦燨",5,"燯",9,"燺",11,"爇",19],["a080","爛爜爞",9,"爩爫爭爮爯爲爳爴爺爼爾牀",6,"牉牊牋牎牏牐牑牓牔牕牗牘牚牜牞牠牣牤牥牨牪牫牬牭牰牱牳牴牶牷牸牻牼牽犂犃犅",4,"犌犎犐犑犓",11,"犠",11,"犮犱犲犳犵犺",6,"狅狆狇狉狊狋狌狏狑狓狔狕狖狘狚狛"],["a1a1"," 、。·ˉˇ¨〃々—~‖…‘’“”〔〕〈",7,"〖〗【】±×÷∶∧∨∑∏∪∩∈∷√⊥∥∠⌒⊙∫∮≡≌≈∽∝≠≮≯≤≥∞∵∴♂♀°′″℃$¤¢£‰§№☆★○●◎◇◆□■△▲※→←↑↓〓"],["a2a1","",9],["a2b1","⒈",19,"⑴",19,"①",9],["a2e5","㈠",9],["a2f1","",11],["a3a1","!"#¥%",88," ̄"],["a4a1","ぁ",82],["a5a1","ァ",85],["a6a1","Α",16,"Σ",6],["a6c1","α",16,"σ",6],["a6e0","︵︶︹︺︿﹀︽︾﹁﹂﹃﹄"],["a6ee","︻︼︷︸︱"],["a6f4","︳︴"],["a7a1","А",5,"ЁЖ",25],["a7d1","а",5,"ёж",25],["a840","ˊˋ˙–―‥‵℅℉↖↗↘↙∕∟∣≒≦≧⊿═",35,"▁",6],["a880","█",7,"▓▔▕▼▽◢◣◤◥☉⊕〒〝〞"],["a8a1","āáǎàēéěèīíǐìōóǒòūúǔùǖǘǚǜüêɑ"],["a8bd","ńň"],["a8c0","ɡ"],["a8c5","ㄅ",36],["a940","〡",8,"㊣㎎㎏㎜㎝㎞㎡㏄㏎㏑㏒㏕︰¬¦"],["a959","℡㈱"],["a95c",""],["a960","ー゛゜ヽヾ〆ゝゞ﹉",9,"﹔﹕﹖﹗﹙",8],["a980","﹢",4,"﹨﹩﹪﹫"],["a996",""],["a9a4","─",75],["aa40","狜狝狟狢",5,"狪狫狵狶狹狽狾狿猀猂猄",5,"猋猌猍猏猐猑猒猔猘猙猚猟猠猣猤猦猧猨猭猯猰猲猳猵猶猺猻猼猽獀",8],["aa80","獉獊獋獌獎獏獑獓獔獕獖獘",7,"獡",10,"獮獰獱"],["ab40","獲",11,"獿",4,"玅玆玈玊玌玍玏玐玒玓玔玕玗玘玙玚玜玝玞玠玡玣",5,"玪玬玭玱玴玵玶玸玹玼玽玾玿珁珃",4],["ab80","珋珌珎珒",6,"珚珛珜珝珟珡珢珣珤珦珨珪珫珬珮珯珰珱珳",4],["ac40","珸",10,"琄琇琈琋琌琍琎琑",8,"琜",5,"琣琤琧琩琫琭琯琱琲琷",4,"琽琾琿瑀瑂",11],["ac80","瑎",6,"瑖瑘瑝瑠",12,"瑮瑯瑱",4,"瑸瑹瑺"],["ad40","瑻瑼瑽瑿璂璄璅璆璈璉璊璌璍璏璑",10,"璝璟",7,"璪",15,"璻",12],["ad80","瓈",9,"瓓",8,"瓝瓟瓡瓥瓧",6,"瓰瓱瓲"],["ae40","瓳瓵瓸",6,"甀甁甂甃甅",7,"甎甐甒甔甕甖甗甛甝甞甠",4,"甦甧甪甮甴甶甹甼甽甿畁畂畃畄畆畇畉畊畍畐畑畒畓畕畖畗畘"],["ae80","畝",7,"畧畨畩畫",6,"畳畵當畷畺",4,"疀疁疂疄疅疇"],["af40","疈疉疊疌疍疎疐疓疕疘疛疜疞疢疦",4,"疭疶疷疺疻疿痀痁痆痋痌痎痏痐痑痓痗痙痚痜痝痟痠痡痥痩痬痭痮痯痲痳痵痶痷痸痺痻痽痾瘂瘄瘆瘇"],["af80","瘈瘉瘋瘍瘎瘏瘑瘒瘓瘔瘖瘚瘜瘝瘞瘡瘣瘧瘨瘬瘮瘯瘱瘲瘶瘷瘹瘺瘻瘽癁療癄"],["b040","癅",6,"癎",5,"癕癗",4,"癝癟癠癡癢癤",6,"癬癭癮癰",7,"癹発發癿皀皁皃皅皉皊皌皍皏皐皒皔皕皗皘皚皛"],["b080","皜",7,"皥",8,"皯皰皳皵",9,"盀盁盃啊阿埃挨哎唉哀皑癌蔼矮艾碍爱隘鞍氨安俺按暗岸胺案肮昂盎凹敖熬翱袄傲奥懊澳芭捌扒叭吧笆八疤巴拔跋靶把耙坝霸罢爸白柏百摆佰败拜稗斑班搬扳般颁板版扮拌伴瓣半办绊邦帮梆榜膀绑棒磅蚌镑傍谤苞胞包褒剥"],["b140","盄盇盉盋盌盓盕盙盚盜盝盞盠",4,"盦",7,"盰盳盵盶盷盺盻盽盿眀眂眃眅眆眊県眎",10,"眛眜眝眞眡眣眤眥眧眪眫"],["b180","眬眮眰",4,"眹眻眽眾眿睂睄睅睆睈",7,"睒",7,"睜薄雹保堡饱宝抱报暴豹鲍爆杯碑悲卑北辈背贝钡倍狈备惫焙被奔苯本笨崩绷甭泵蹦迸逼鼻比鄙笔彼碧蓖蔽毕毙毖币庇痹闭敝弊必辟壁臂避陛鞭边编贬扁便变卞辨辩辫遍标彪膘表鳖憋别瘪彬斌濒滨宾摈兵冰柄丙秉饼炳"],["b240","睝睞睟睠睤睧睩睪睭",11,"睺睻睼瞁瞂瞃瞆",5,"瞏瞐瞓",11,"瞡瞣瞤瞦瞨瞫瞭瞮瞯瞱瞲瞴瞶",4],["b280","瞼瞾矀",12,"矎",8,"矘矙矚矝",4,"矤病并玻菠播拨钵波博勃搏铂箔伯帛舶脖膊渤泊驳捕卜哺补埠不布步簿部怖擦猜裁材才财睬踩采彩菜蔡餐参蚕残惭惨灿苍舱仓沧藏操糙槽曹草厕策侧册测层蹭插叉茬茶查碴搽察岔差诧拆柴豺搀掺蝉馋谗缠铲产阐颤昌猖"],["b340","矦矨矪矯矰矱矲矴矵矷矹矺矻矼砃",5,"砊砋砎砏砐砓砕砙砛砞砠砡砢砤砨砪砫砮砯砱砲砳砵砶砽砿硁硂硃硄硆硈硉硊硋硍硏硑硓硔硘硙硚"],["b380","硛硜硞",11,"硯",7,"硸硹硺硻硽",6,"场尝常长偿肠厂敞畅唱倡超抄钞朝嘲潮巢吵炒车扯撤掣彻澈郴臣辰尘晨忱沉陈趁衬撑称城橙成呈乘程惩澄诚承逞骋秤吃痴持匙池迟弛驰耻齿侈尺赤翅斥炽充冲虫崇宠抽酬畴踌稠愁筹仇绸瞅丑臭初出橱厨躇锄雏滁除楚"],["b440","碄碅碆碈碊碋碏碐碒碔碕碖碙碝碞碠碢碤碦碨",7,"碵碶碷碸確碻碼碽碿磀磂磃磄磆磇磈磌磍磎磏磑磒磓磖磗磘磚",9],["b480","磤磥磦磧磩磪磫磭",4,"磳磵磶磸磹磻",5,"礂礃礄礆",6,"础储矗搐触处揣川穿椽传船喘串疮窗幢床闯创吹炊捶锤垂春椿醇唇淳纯蠢戳绰疵茨磁雌辞慈瓷词此刺赐次聪葱囱匆从丛凑粗醋簇促蹿篡窜摧崔催脆瘁粹淬翠村存寸磋撮搓措挫错搭达答瘩打大呆歹傣戴带殆代贷袋待逮"],["b540","礍",5,"礔",9,"礟",4,"礥",14,"礵",4,"礽礿祂祃祄祅祇祊",8,"祔祕祘祙祡祣"],["b580","祤祦祩祪祫祬祮祰",6,"祹祻",4,"禂禃禆禇禈禉禋禌禍禎禐禑禒怠耽担丹单郸掸胆旦氮但惮淡诞弹蛋当挡党荡档刀捣蹈倒岛祷导到稻悼道盗德得的蹬灯登等瞪凳邓堤低滴迪敌笛狄涤翟嫡抵底地蒂第帝弟递缔颠掂滇碘点典靛垫电佃甸店惦奠淀殿碉叼雕凋刁掉吊钓调跌爹碟蝶迭谍叠"],["b640","禓",6,"禛",11,"禨",10,"禴",4,"禼禿秂秄秅秇秈秊秌秎秏秐秓秔秖秗秙",5,"秠秡秢秥秨秪"],["b680","秬秮秱",6,"秹秺秼秾秿稁稄稅稇稈稉稊稌稏",4,"稕稖稘稙稛稜丁盯叮钉顶鼎锭定订丢东冬董懂动栋侗恫冻洞兜抖斗陡豆逗痘都督毒犊独读堵睹赌杜镀肚度渡妒端短锻段断缎堆兑队对墩吨蹲敦顿囤钝盾遁掇哆多夺垛躲朵跺舵剁惰堕蛾峨鹅俄额讹娥恶厄扼遏鄂饿恩而儿耳尔饵洱二"],["b740","稝稟稡稢稤",14,"稴稵稶稸稺稾穀",5,"穇",9,"穒",4,"穘",16],["b780","穩",6,"穱穲穳穵穻穼穽穾窂窅窇窉窊窋窌窎窏窐窓窔窙窚窛窞窡窢贰发罚筏伐乏阀法珐藩帆番翻樊矾钒繁凡烦反返范贩犯饭泛坊芳方肪房防妨仿访纺放菲非啡飞肥匪诽吠肺废沸费芬酚吩氛分纷坟焚汾粉奋份忿愤粪丰封枫蜂峰锋风疯烽逢冯缝讽奉凤佛否夫敷肤孵扶拂辐幅氟符伏俘服"],["b840","窣窤窧窩窪窫窮",4,"窴",10,"竀",10,"竌",9,"竗竘竚竛竜竝竡竢竤竧",5,"竮竰竱竲竳"],["b880","竴",4,"竻竼竾笀笁笂笅笇笉笌笍笎笐笒笓笖笗笘笚笜笝笟笡笢笣笧笩笭浮涪福袱弗甫抚辅俯釜斧脯腑府腐赴副覆赋复傅付阜父腹负富讣附妇缚咐噶嘎该改概钙盖溉干甘杆柑竿肝赶感秆敢赣冈刚钢缸肛纲岗港杠篙皋高膏羔糕搞镐稿告哥歌搁戈鸽胳疙割革葛格蛤阁隔铬个各给根跟耕更庚羹"],["b940","笯笰笲笴笵笶笷笹笻笽笿",5,"筆筈筊筍筎筓筕筗筙筜筞筟筡筣",10,"筯筰筳筴筶筸筺筼筽筿箁箂箃箄箆",6,"箎箏"],["b980","箑箒箓箖箘箙箚箛箞箟箠箣箤箥箮箯箰箲箳箵箶箷箹",7,"篂篃範埂耿梗工攻功恭龚供躬公宫弓巩汞拱贡共钩勾沟苟狗垢构购够辜菇咕箍估沽孤姑鼓古蛊骨谷股故顾固雇刮瓜剐寡挂褂乖拐怪棺关官冠观管馆罐惯灌贯光广逛瑰规圭硅归龟闺轨鬼诡癸桂柜跪贵刽辊滚棍锅郭国果裹过哈"],["ba40","篅篈築篊篋篍篎篏篐篒篔",4,"篛篜篞篟篠篢篣篤篧篨篩篫篬篭篯篰篲",4,"篸篹篺篻篽篿",7,"簈簉簊簍簎簐",5,"簗簘簙"],["ba80","簚",4,"簠",5,"簨簩簫",12,"簹",5,"籂骸孩海氦亥害骇酣憨邯韩含涵寒函喊罕翰撼捍旱憾悍焊汗汉夯杭航壕嚎豪毫郝好耗号浩呵喝荷菏核禾和何合盒貉阂河涸赫褐鹤贺嘿黑痕很狠恨哼亨横衡恒轰哄烘虹鸿洪宏弘红喉侯猴吼厚候后呼乎忽瑚壶葫胡蝴狐糊湖"],["bb40","籃",9,"籎",36,"籵",5,"籾",9],["bb80","粈粊",6,"粓粔粖粙粚粛粠粡粣粦粧粨粩粫粬粭粯粰粴",4,"粺粻弧虎唬护互沪户花哗华猾滑画划化话槐徊怀淮坏欢环桓还缓换患唤痪豢焕涣宦幻荒慌黄磺蝗簧皇凰惶煌晃幌恍谎灰挥辉徽恢蛔回毁悔慧卉惠晦贿秽会烩汇讳诲绘荤昏婚魂浑混豁活伙火获或惑霍货祸击圾基机畸稽积箕"],["bc40","粿糀糂糃糄糆糉糋糎",6,"糘糚糛糝糞糡",6,"糩",5,"糰",7,"糹糺糼",13,"紋",5],["bc80","紑",14,"紡紣紤紥紦紨紩紪紬紭紮細",6,"肌饥迹激讥鸡姬绩缉吉极棘辑籍集及急疾汲即嫉级挤几脊己蓟技冀季伎祭剂悸济寄寂计记既忌际妓继纪嘉枷夹佳家加荚颊贾甲钾假稼价架驾嫁歼监坚尖笺间煎兼肩艰奸缄茧检柬碱硷拣捡简俭剪减荐槛鉴践贱见键箭件"],["bd40","紷",54,"絯",7],["bd80","絸",32,"健舰剑饯渐溅涧建僵姜将浆江疆蒋桨奖讲匠酱降蕉椒礁焦胶交郊浇骄娇嚼搅铰矫侥脚狡角饺缴绞剿教酵轿较叫窖揭接皆秸街阶截劫节桔杰捷睫竭洁结解姐戒藉芥界借介疥诫届巾筋斤金今津襟紧锦仅谨进靳晋禁近烬浸"],["be40","継",12,"綧",6,"綯",42],["be80","線",32,"尽劲荆兢茎睛晶鲸京惊精粳经井警景颈静境敬镜径痉靖竟竞净炯窘揪究纠玖韭久灸九酒厩救旧臼舅咎就疚鞠拘狙疽居驹菊局咀矩举沮聚拒据巨具距踞锯俱句惧炬剧捐鹃娟倦眷卷绢撅攫抉掘倔爵觉决诀绝均菌钧军君峻"],["bf40","緻",62],["bf80","縺縼",4,"繂",4,"繈",21,"俊竣浚郡骏喀咖卡咯开揩楷凯慨刊堪勘坎砍看康慷糠扛抗亢炕考拷烤靠坷苛柯棵磕颗科壳咳可渴克刻客课肯啃垦恳坑吭空恐孔控抠口扣寇枯哭窟苦酷库裤夸垮挎跨胯块筷侩快宽款匡筐狂框矿眶旷况亏盔岿窥葵奎魁傀"],["c040","繞",35,"纃",23,"纜纝纞"],["c080","纮纴纻纼绖绤绬绹缊缐缞缷缹缻",6,"罃罆",9,"罒罓馈愧溃坤昆捆困括扩廓阔垃拉喇蜡腊辣啦莱来赖蓝婪栏拦篮阑兰澜谰揽览懒缆烂滥琅榔狼廊郎朗浪捞劳牢老佬姥酪烙涝勒乐雷镭蕾磊累儡垒擂肋类泪棱楞冷厘梨犁黎篱狸离漓理李里鲤礼莉荔吏栗丽厉励砾历利傈例俐"],["c140","罖罙罛罜罝罞罠罣",4,"罫罬罭罯罰罳罵罶罷罸罺罻罼罽罿羀羂",7,"羋羍羏",4,"羕",4,"羛羜羠羢羣羥羦羨",6,"羱"],["c180","羳",4,"羺羻羾翀翂翃翄翆翇翈翉翋翍翏",4,"翖翗翙",5,"翢翣痢立粒沥隶力璃哩俩联莲连镰廉怜涟帘敛脸链恋炼练粮凉梁粱良两辆量晾亮谅撩聊僚疗燎寥辽潦了撂镣廖料列裂烈劣猎琳林磷霖临邻鳞淋凛赁吝拎玲菱零龄铃伶羚凌灵陵岭领另令溜琉榴硫馏留刘瘤流柳六龙聋咙笼窿"],["c240","翤翧翨翪翫翬翭翯翲翴",6,"翽翾翿耂耇耈耉耊耎耏耑耓耚耛耝耞耟耡耣耤耫",5,"耲耴耹耺耼耾聀聁聄聅聇聈聉聎聏聐聑聓聕聖聗"],["c280","聙聛",13,"聫",5,"聲",11,"隆垄拢陇楼娄搂篓漏陋芦卢颅庐炉掳卤虏鲁麓碌露路赂鹿潞禄录陆戮驴吕铝侣旅履屡缕虑氯律率滤绿峦挛孪滦卵乱掠略抡轮伦仑沦纶论萝螺罗逻锣箩骡裸落洛骆络妈麻玛码蚂马骂嘛吗埋买麦卖迈脉瞒馒蛮满蔓曼慢漫"],["c340","聾肁肂肅肈肊肍",5,"肔肕肗肙肞肣肦肧肨肬肰肳肵肶肸肹肻胅胇",4,"胏",6,"胘胟胠胢胣胦胮胵胷胹胻胾胿脀脁脃脄脅脇脈脋"],["c380","脌脕脗脙脛脜脝脟",12,"脭脮脰脳脴脵脷脹",4,"脿谩芒茫盲氓忙莽猫茅锚毛矛铆卯茂冒帽貌贸么玫枚梅酶霉煤没眉媒镁每美昧寐妹媚门闷们萌蒙檬盟锰猛梦孟眯醚靡糜迷谜弥米秘觅泌蜜密幂棉眠绵冕免勉娩缅面苗描瞄藐秒渺庙妙蔑灭民抿皿敏悯闽明螟鸣铭名命谬摸"],["c440","腀",5,"腇腉腍腎腏腒腖腗腘腛",4,"腡腢腣腤腦腨腪腫腬腯腲腳腵腶腷腸膁膃",4,"膉膋膌膍膎膐膒",5,"膙膚膞",4,"膤膥"],["c480","膧膩膫",7,"膴",5,"膼膽膾膿臄臅臇臈臉臋臍",6,"摹蘑模膜磨摩魔抹末莫墨默沫漠寞陌谋牟某拇牡亩姆母墓暮幕募慕木目睦牧穆拿哪呐钠那娜纳氖乃奶耐奈南男难囊挠脑恼闹淖呢馁内嫩能妮霓倪泥尼拟你匿腻逆溺蔫拈年碾撵捻念娘酿鸟尿捏聂孽啮镊镍涅您柠狞凝宁"],["c540","臔",14,"臤臥臦臨臩臫臮",4,"臵",5,"臽臿舃與",4,"舎舏舑舓舕",5,"舝舠舤舥舦舧舩舮舲舺舼舽舿"],["c580","艀艁艂艃艅艆艈艊艌艍艎艐",7,"艙艛艜艝艞艠",7,"艩拧泞牛扭钮纽脓浓农弄奴努怒女暖虐疟挪懦糯诺哦欧鸥殴藕呕偶沤啪趴爬帕怕琶拍排牌徘湃派攀潘盘磐盼畔判叛乓庞旁耪胖抛咆刨炮袍跑泡呸胚培裴赔陪配佩沛喷盆砰抨烹澎彭蓬棚硼篷膨朋鹏捧碰坯砒霹批披劈琵毗"],["c640","艪艫艬艭艱艵艶艷艸艻艼芀芁芃芅芆芇芉芌芐芓芔芕芖芚芛芞芠芢芣芧芲芵芶芺芻芼芿苀苂苃苅苆苉苐苖苙苚苝苢苧苨苩苪苬苭苮苰苲苳苵苶苸"],["c680","苺苼",4,"茊茋茍茐茒茓茖茘茙茝",9,"茩茪茮茰茲茷茻茽啤脾疲皮匹痞僻屁譬篇偏片骗飘漂瓢票撇瞥拼频贫品聘乒坪苹萍平凭瓶评屏坡泼颇婆破魄迫粕剖扑铺仆莆葡菩蒲埔朴圃普浦谱曝瀑期欺栖戚妻七凄漆柒沏其棋奇歧畦崎脐齐旗祈祁骑起岂乞企启契砌器气迄弃汽泣讫掐"],["c740","茾茿荁荂荄荅荈荊",4,"荓荕",4,"荝荢荰",6,"荹荺荾",6,"莇莈莊莋莌莍莏莐莑莔莕莖莗莙莚莝莟莡",6,"莬莭莮"],["c780","莯莵莻莾莿菂菃菄菆菈菉菋菍菎菐菑菒菓菕菗菙菚菛菞菢菣菤菦菧菨菫菬菭恰洽牵扦钎铅千迁签仟谦乾黔钱钳前潜遣浅谴堑嵌欠歉枪呛腔羌墙蔷强抢橇锹敲悄桥瞧乔侨巧鞘撬翘峭俏窍切茄且怯窃钦侵亲秦琴勤芹擒禽寝沁青轻氢倾卿清擎晴氰情顷请庆琼穷秋丘邱球求囚酋泅趋区蛆曲躯屈驱渠"],["c840","菮華菳",4,"菺菻菼菾菿萀萂萅萇萈萉萊萐萒",5,"萙萚萛萞",5,"萩",7,"萲",5,"萹萺萻萾",7,"葇葈葉"],["c880","葊",6,"葒",4,"葘葝葞葟葠葢葤",4,"葪葮葯葰葲葴葷葹葻葼取娶龋趣去圈颧权醛泉全痊拳犬券劝缺炔瘸却鹊榷确雀裙群然燃冉染瓤壤攘嚷让饶扰绕惹热壬仁人忍韧任认刃妊纫扔仍日戎茸蓉荣融熔溶容绒冗揉柔肉茹蠕儒孺如辱乳汝入褥软阮蕊瑞锐闰润若弱撒洒萨腮鳃塞赛三叁"],["c940","葽",4,"蒃蒄蒅蒆蒊蒍蒏",7,"蒘蒚蒛蒝蒞蒟蒠蒢",12,"蒰蒱蒳蒵蒶蒷蒻蒼蒾蓀蓂蓃蓅蓆蓇蓈蓋蓌蓎蓏蓒蓔蓕蓗"],["c980","蓘",4,"蓞蓡蓢蓤蓧",4,"蓭蓮蓯蓱",10,"蓽蓾蔀蔁蔂伞散桑嗓丧搔骚扫嫂瑟色涩森僧莎砂杀刹沙纱傻啥煞筛晒珊苫杉山删煽衫闪陕擅赡膳善汕扇缮墒伤商赏晌上尚裳梢捎稍烧芍勺韶少哨邵绍奢赊蛇舌舍赦摄射慑涉社设砷申呻伸身深娠绅神沈审婶甚肾慎渗声生甥牲升绳"],["ca40","蔃",8,"蔍蔎蔏蔐蔒蔔蔕蔖蔘蔙蔛蔜蔝蔞蔠蔢",8,"蔭",9,"蔾",4,"蕄蕅蕆蕇蕋",10],["ca80","蕗蕘蕚蕛蕜蕝蕟",4,"蕥蕦蕧蕩",8,"蕳蕵蕶蕷蕸蕼蕽蕿薀薁省盛剩胜圣师失狮施湿诗尸虱十石拾时什食蚀实识史矢使屎驶始式示士世柿事拭誓逝势是嗜噬适仕侍释饰氏市恃室视试收手首守寿授售受瘦兽蔬枢梳殊抒输叔舒淑疏书赎孰熟薯暑曙署蜀黍鼠属术述树束戍竖墅庶数漱"],["cb40","薂薃薆薈",6,"薐",10,"薝",6,"薥薦薧薩薫薬薭薱",5,"薸薺",6,"藂",6,"藊",4,"藑藒"],["cb80","藔藖",5,"藝",6,"藥藦藧藨藪",14,"恕刷耍摔衰甩帅栓拴霜双爽谁水睡税吮瞬顺舜说硕朔烁斯撕嘶思私司丝死肆寺嗣四伺似饲巳松耸怂颂送宋讼诵搜艘擞嗽苏酥俗素速粟僳塑溯宿诉肃酸蒜算虽隋随绥髓碎岁穗遂隧祟孙损笋蓑梭唆缩琐索锁所塌他它她塔"],["cc40","藹藺藼藽藾蘀",4,"蘆",10,"蘒蘓蘔蘕蘗",15,"蘨蘪",13,"蘹蘺蘻蘽蘾蘿虀"],["cc80","虁",11,"虒虓處",4,"虛虜虝號虠虡虣",7,"獭挞蹋踏胎苔抬台泰酞太态汰坍摊贪瘫滩坛檀痰潭谭谈坦毯袒碳探叹炭汤塘搪堂棠膛唐糖倘躺淌趟烫掏涛滔绦萄桃逃淘陶讨套特藤腾疼誊梯剔踢锑提题蹄啼体替嚏惕涕剃屉天添填田甜恬舔腆挑条迢眺跳贴铁帖厅听烃"],["cd40","虭虯虰虲",6,"蚃",6,"蚎",4,"蚔蚖",5,"蚞",4,"蚥蚦蚫蚭蚮蚲蚳蚷蚸蚹蚻",4,"蛁蛂蛃蛅蛈蛌蛍蛒蛓蛕蛖蛗蛚蛜"],["cd80","蛝蛠蛡蛢蛣蛥蛦蛧蛨蛪蛫蛬蛯蛵蛶蛷蛺蛻蛼蛽蛿蜁蜄蜅蜆蜋蜌蜎蜏蜐蜑蜔蜖汀廷停亭庭挺艇通桐酮瞳同铜彤童桶捅筒统痛偷投头透凸秃突图徒途涂屠土吐兔湍团推颓腿蜕褪退吞屯臀拖托脱鸵陀驮驼椭妥拓唾挖哇蛙洼娃瓦袜歪外豌弯湾玩顽丸烷完碗挽晚皖惋宛婉万腕汪王亡枉网往旺望忘妄威"],["ce40","蜙蜛蜝蜟蜠蜤蜦蜧蜨蜪蜫蜬蜭蜯蜰蜲蜳蜵蜶蜸蜹蜺蜼蜽蝀",6,"蝊蝋蝍蝏蝐蝑蝒蝔蝕蝖蝘蝚",5,"蝡蝢蝦",7,"蝯蝱蝲蝳蝵"],["ce80","蝷蝸蝹蝺蝿螀螁螄螆螇螉螊螌螎",4,"螔螕螖螘",6,"螠",4,"巍微危韦违桅围唯惟为潍维苇萎委伟伪尾纬未蔚味畏胃喂魏位渭谓尉慰卫瘟温蚊文闻纹吻稳紊问嗡翁瓮挝蜗涡窝我斡卧握沃巫呜钨乌污诬屋无芜梧吾吴毋武五捂午舞伍侮坞戊雾晤物勿务悟误昔熙析西硒矽晰嘻吸锡牺"],["cf40","螥螦螧螩螪螮螰螱螲螴螶螷螸螹螻螼螾螿蟁",4,"蟇蟈蟉蟌",4,"蟔",6,"蟜蟝蟞蟟蟡蟢蟣蟤蟦蟧蟨蟩蟫蟬蟭蟯",9],["cf80","蟺蟻蟼蟽蟿蠀蠁蠂蠄",5,"蠋",7,"蠔蠗蠘蠙蠚蠜",4,"蠣稀息希悉膝夕惜熄烯溪汐犀檄袭席习媳喜铣洗系隙戏细瞎虾匣霞辖暇峡侠狭下厦夏吓掀锨先仙鲜纤咸贤衔舷闲涎弦嫌显险现献县腺馅羡宪陷限线相厢镶香箱襄湘乡翔祥详想响享项巷橡像向象萧硝霄削哮嚣销消宵淆晓"],["d040","蠤",13,"蠳",5,"蠺蠻蠽蠾蠿衁衂衃衆",5,"衎",5,"衕衖衘衚",6,"衦衧衪衭衯衱衳衴衵衶衸衹衺"],["d080","衻衼袀袃袆袇袉袊袌袎袏袐袑袓袔袕袗",4,"袝",4,"袣袥",5,"小孝校肖啸笑效楔些歇蝎鞋协挟携邪斜胁谐写械卸蟹懈泄泻谢屑薪芯锌欣辛新忻心信衅星腥猩惺兴刑型形邢行醒幸杏性姓兄凶胸匈汹雄熊休修羞朽嗅锈秀袖绣墟戌需虚嘘须徐许蓄酗叙旭序畜恤絮婿绪续轩喧宣悬旋玄"],["d140","袬袮袯袰袲",4,"袸袹袺袻袽袾袿裀裃裄裇裈裊裋裌裍裏裐裑裓裖裗裚",4,"裠裡裦裧裩",6,"裲裵裶裷裺裻製裿褀褁褃",5],["d180","褉褋",4,"褑褔",4,"褜",4,"褢褣褤褦褧褨褩褬褭褮褯褱褲褳褵褷选癣眩绚靴薛学穴雪血勋熏循旬询寻驯巡殉汛训讯逊迅压押鸦鸭呀丫芽牙蚜崖衙涯雅哑亚讶焉咽阉烟淹盐严研蜒岩延言颜阎炎沿奄掩眼衍演艳堰燕厌砚雁唁彦焰宴谚验殃央鸯秧杨扬佯疡羊洋阳氧仰痒养样漾邀腰妖瑶"],["d240","褸",8,"襂襃襅",24,"襠",5,"襧",19,"襼"],["d280","襽襾覀覂覄覅覇",26,"摇尧遥窑谣姚咬舀药要耀椰噎耶爷野冶也页掖业叶曳腋夜液一壹医揖铱依伊衣颐夷遗移仪胰疑沂宜姨彝椅蚁倚已乙矣以艺抑易邑屹亿役臆逸肄疫亦裔意毅忆义益溢诣议谊译异翼翌绎茵荫因殷音阴姻吟银淫寅饮尹引隐"],["d340","覢",30,"觃觍觓觔觕觗觘觙觛觝觟觠觡觢觤觧觨觩觪觬觭觮觰觱觲觴",6],["d380","觻",4,"訁",5,"計",21,"印英樱婴鹰应缨莹萤营荧蝇迎赢盈影颖硬映哟拥佣臃痈庸雍踊蛹咏泳涌永恿勇用幽优悠忧尤由邮铀犹油游酉有友右佑釉诱又幼迂淤于盂榆虞愚舆余俞逾鱼愉渝渔隅予娱雨与屿禹宇语羽玉域芋郁吁遇喻峪御愈欲狱育誉"],["d440","訞",31,"訿",8,"詉",21],["d480","詟",25,"詺",6,"浴寓裕预豫驭鸳渊冤元垣袁原援辕园员圆猿源缘远苑愿怨院曰约越跃钥岳粤月悦阅耘云郧匀陨允运蕴酝晕韵孕匝砸杂栽哉灾宰载再在咱攒暂赞赃脏葬遭糟凿藻枣早澡蚤躁噪造皂灶燥责择则泽贼怎增憎曾赠扎喳渣札轧"],["d540","誁",7,"誋",7,"誔",46],["d580","諃",32,"铡闸眨栅榨咋乍炸诈摘斋宅窄债寨瞻毡詹粘沾盏斩辗崭展蘸栈占战站湛绽樟章彰漳张掌涨杖丈帐账仗胀瘴障招昭找沼赵照罩兆肇召遮折哲蛰辙者锗蔗这浙珍斟真甄砧臻贞针侦枕疹诊震振镇阵蒸挣睁征狰争怔整拯正政"],["d640","諤",34,"謈",27],["d680","謤謥謧",30,"帧症郑证芝枝支吱蜘知肢脂汁之织职直植殖执值侄址指止趾只旨纸志挚掷至致置帜峙制智秩稚质炙痔滞治窒中盅忠钟衷终种肿重仲众舟周州洲诌粥轴肘帚咒皱宙昼骤珠株蛛朱猪诸诛逐竹烛煮拄瞩嘱主著柱助蛀贮铸筑"],["d740","譆",31,"譧",4,"譭",25],["d780","讇",24,"讬讱讻诇诐诪谉谞住注祝驻抓爪拽专砖转撰赚篆桩庄装妆撞壮状椎锥追赘坠缀谆准捉拙卓桌琢茁酌啄着灼浊兹咨资姿滋淄孜紫仔籽滓子自渍字鬃棕踪宗综总纵邹走奏揍租足卒族祖诅阻组钻纂嘴醉最罪尊遵昨左佐柞做作坐座"],["d840","谸",8,"豂豃豄豅豈豊豋豍",7,"豖豗豘豙豛",5,"豣",6,"豬",6,"豴豵豶豷豻",6,"貃貄貆貇"],["d880","貈貋貍",6,"貕貖貗貙",20,"亍丌兀丐廿卅丕亘丞鬲孬噩丨禺丿匕乇夭爻卮氐囟胤馗毓睾鼗丶亟鼐乜乩亓芈孛啬嘏仄厍厝厣厥厮靥赝匚叵匦匮匾赜卦卣刂刈刎刭刳刿剀剌剞剡剜蒯剽劂劁劐劓冂罔亻仃仉仂仨仡仫仞伛仳伢佤仵伥伧伉伫佞佧攸佚佝"],["d940","貮",62],["d980","賭",32,"佟佗伲伽佶佴侑侉侃侏佾佻侪佼侬侔俦俨俪俅俚俣俜俑俟俸倩偌俳倬倏倮倭俾倜倌倥倨偾偃偕偈偎偬偻傥傧傩傺僖儆僭僬僦僮儇儋仝氽佘佥俎龠汆籴兮巽黉馘冁夔勹匍訇匐凫夙兕亠兖亳衮袤亵脔裒禀嬴蠃羸冫冱冽冼"],["da40","贎",14,"贠赑赒赗赟赥赨赩赪赬赮赯赱赲赸",8,"趂趃趆趇趈趉趌",4,"趒趓趕",9,"趠趡"],["da80","趢趤",12,"趲趶趷趹趻趽跀跁跂跅跇跈跉跊跍跐跒跓跔凇冖冢冥讠讦讧讪讴讵讷诂诃诋诏诎诒诓诔诖诘诙诜诟诠诤诨诩诮诰诳诶诹诼诿谀谂谄谇谌谏谑谒谔谕谖谙谛谘谝谟谠谡谥谧谪谫谮谯谲谳谵谶卩卺阝阢阡阱阪阽阼陂陉陔陟陧陬陲陴隈隍隗隰邗邛邝邙邬邡邴邳邶邺"],["db40","跕跘跙跜跠跡跢跥跦跧跩跭跮跰跱跲跴跶跼跾",6,"踆踇踈踋踍踎踐踑踒踓踕",7,"踠踡踤",4,"踫踭踰踲踳踴踶踷踸踻踼踾"],["db80","踿蹃蹅蹆蹌",4,"蹓",5,"蹚",11,"蹧蹨蹪蹫蹮蹱邸邰郏郅邾郐郄郇郓郦郢郜郗郛郫郯郾鄄鄢鄞鄣鄱鄯鄹酃酆刍奂劢劬劭劾哿勐勖勰叟燮矍廴凵凼鬯厶弁畚巯坌垩垡塾墼壅壑圩圬圪圳圹圮圯坜圻坂坩垅坫垆坼坻坨坭坶坳垭垤垌垲埏垧垴垓垠埕埘埚埙埒垸埴埯埸埤埝"],["dc40","蹳蹵蹷",4,"蹽蹾躀躂躃躄躆躈",6,"躑躒躓躕",6,"躝躟",11,"躭躮躰躱躳",6,"躻",7],["dc80","軃",10,"軏",21,"堋堍埽埭堀堞堙塄堠塥塬墁墉墚墀馨鼙懿艹艽艿芏芊芨芄芎芑芗芙芫芸芾芰苈苊苣芘芷芮苋苌苁芩芴芡芪芟苄苎芤苡茉苷苤茏茇苜苴苒苘茌苻苓茑茚茆茔茕苠苕茜荑荛荜茈莒茼茴茱莛荞茯荏荇荃荟荀茗荠茭茺茳荦荥"],["dd40","軥",62],["dd80","輤",32,"荨茛荩荬荪荭荮莰荸莳莴莠莪莓莜莅荼莶莩荽莸荻莘莞莨莺莼菁萁菥菘堇萘萋菝菽菖萜萸萑萆菔菟萏萃菸菹菪菅菀萦菰菡葜葑葚葙葳蒇蒈葺蒉葸萼葆葩葶蒌蒎萱葭蓁蓍蓐蓦蒽蓓蓊蒿蒺蓠蒡蒹蒴蒗蓥蓣蔌甍蔸蓰蔹蔟蔺"],["de40","轅",32,"轪辀辌辒辝辠辡辢辤辥辦辧辪辬辭辮辯農辳辴辵辷辸辺辻込辿迀迃迆"],["de80","迉",4,"迏迒迖迗迚迠迡迣迧迬迯迱迲迴迵迶迺迻迼迾迿逇逈逌逎逓逕逘蕖蔻蓿蓼蕙蕈蕨蕤蕞蕺瞢蕃蕲蕻薤薨薇薏蕹薮薜薅薹薷薰藓藁藜藿蘧蘅蘩蘖蘼廾弈夼奁耷奕奚奘匏尢尥尬尴扌扪抟抻拊拚拗拮挢拶挹捋捃掭揶捱捺掎掴捭掬掊捩掮掼揲揸揠揿揄揞揎摒揆掾摅摁搋搛搠搌搦搡摞撄摭撖"],["df40","這逜連逤逥逧",5,"逰",4,"逷逹逺逽逿遀遃遅遆遈",4,"過達違遖遙遚遜",5,"遤遦遧適遪遫遬遯",4,"遶",6,"遾邁"],["df80","還邅邆邇邉邊邌",4,"邒邔邖邘邚邜邞邟邠邤邥邧邨邩邫邭邲邷邼邽邿郀摺撷撸撙撺擀擐擗擤擢攉攥攮弋忒甙弑卟叱叽叩叨叻吒吖吆呋呒呓呔呖呃吡呗呙吣吲咂咔呷呱呤咚咛咄呶呦咝哐咭哂咴哒咧咦哓哔呲咣哕咻咿哌哙哚哜咩咪咤哝哏哞唛哧唠哽唔哳唢唣唏唑唧唪啧喏喵啉啭啁啕唿啐唼"],["e040","郂郃郆郈郉郋郌郍郒郔郕郖郘郙郚郞郟郠郣郤郥郩郪郬郮郰郱郲郳郵郶郷郹郺郻郼郿鄀鄁鄃鄅",19,"鄚鄛鄜"],["e080","鄝鄟鄠鄡鄤",10,"鄰鄲",6,"鄺",8,"酄唷啖啵啶啷唳唰啜喋嗒喃喱喹喈喁喟啾嗖喑啻嗟喽喾喔喙嗪嗷嗉嘟嗑嗫嗬嗔嗦嗝嗄嗯嗥嗲嗳嗌嗍嗨嗵嗤辔嘞嘈嘌嘁嘤嘣嗾嘀嘧嘭噘嘹噗嘬噍噢噙噜噌噔嚆噤噱噫噻噼嚅嚓嚯囔囗囝囡囵囫囹囿圄圊圉圜帏帙帔帑帱帻帼"],["e140","酅酇酈酑酓酔酕酖酘酙酛酜酟酠酦酧酨酫酭酳酺酻酼醀",4,"醆醈醊醎醏醓",6,"醜",5,"醤",5,"醫醬醰醱醲醳醶醷醸醹醻"],["e180","醼",10,"釈釋釐釒",9,"針",8,"帷幄幔幛幞幡岌屺岍岐岖岈岘岙岑岚岜岵岢岽岬岫岱岣峁岷峄峒峤峋峥崂崃崧崦崮崤崞崆崛嵘崾崴崽嵬嵛嵯嵝嵫嵋嵊嵩嵴嶂嶙嶝豳嶷巅彳彷徂徇徉後徕徙徜徨徭徵徼衢彡犭犰犴犷犸狃狁狎狍狒狨狯狩狲狴狷猁狳猃狺"],["e240","釦",62],["e280","鈥",32,"狻猗猓猡猊猞猝猕猢猹猥猬猸猱獐獍獗獠獬獯獾舛夥飧夤夂饣饧",5,"饴饷饽馀馄馇馊馍馐馑馓馔馕庀庑庋庖庥庠庹庵庾庳赓廒廑廛廨廪膺忄忉忖忏怃忮怄忡忤忾怅怆忪忭忸怙怵怦怛怏怍怩怫怊怿怡恸恹恻恺恂"],["e340","鉆",45,"鉵",16],["e380","銆",7,"銏",24,"恪恽悖悚悭悝悃悒悌悛惬悻悱惝惘惆惚悴愠愦愕愣惴愀愎愫慊慵憬憔憧憷懔懵忝隳闩闫闱闳闵闶闼闾阃阄阆阈阊阋阌阍阏阒阕阖阗阙阚丬爿戕氵汔汜汊沣沅沐沔沌汨汩汴汶沆沩泐泔沭泷泸泱泗沲泠泖泺泫泮沱泓泯泾"],["e440","銨",5,"銯",24,"鋉",31],["e480","鋩",32,"洹洧洌浃浈洇洄洙洎洫浍洮洵洚浏浒浔洳涑浯涞涠浞涓涔浜浠浼浣渚淇淅淞渎涿淠渑淦淝淙渖涫渌涮渫湮湎湫溲湟溆湓湔渲渥湄滟溱溘滠漭滢溥溧溽溻溷滗溴滏溏滂溟潢潆潇漤漕滹漯漶潋潴漪漉漩澉澍澌潸潲潼潺濑"],["e540","錊",51,"錿",10],["e580","鍊",31,"鍫濉澧澹澶濂濡濮濞濠濯瀚瀣瀛瀹瀵灏灞宀宄宕宓宥宸甯骞搴寤寮褰寰蹇謇辶迓迕迥迮迤迩迦迳迨逅逄逋逦逑逍逖逡逵逶逭逯遄遑遒遐遨遘遢遛暹遴遽邂邈邃邋彐彗彖彘尻咫屐屙孱屣屦羼弪弩弭艴弼鬻屮妁妃妍妩妪妣"],["e640","鍬",34,"鎐",27],["e680","鎬",29,"鏋鏌鏍妗姊妫妞妤姒妲妯姗妾娅娆姝娈姣姘姹娌娉娲娴娑娣娓婀婧婊婕娼婢婵胬媪媛婷婺媾嫫媲嫒嫔媸嫠嫣嫱嫖嫦嫘嫜嬉嬗嬖嬲嬷孀尕尜孚孥孳孑孓孢驵驷驸驺驿驽骀骁骅骈骊骐骒骓骖骘骛骜骝骟骠骢骣骥骧纟纡纣纥纨纩"],["e740","鏎",7,"鏗",54],["e780","鐎",32,"纭纰纾绀绁绂绉绋绌绐绔绗绛绠绡绨绫绮绯绱绲缍绶绺绻绾缁缂缃缇缈缋缌缏缑缒缗缙缜缛缟缡",6,"缪缫缬缭缯",4,"缵幺畿巛甾邕玎玑玮玢玟珏珂珑玷玳珀珉珈珥珙顼琊珩珧珞玺珲琏琪瑛琦琥琨琰琮琬"],["e840","鐯",14,"鐿",43,"鑬鑭鑮鑯"],["e880","鑰",20,"钑钖钘铇铏铓铔铚铦铻锜锠琛琚瑁瑜瑗瑕瑙瑷瑭瑾璜璎璀璁璇璋璞璨璩璐璧瓒璺韪韫韬杌杓杞杈杩枥枇杪杳枘枧杵枨枞枭枋杷杼柰栉柘栊柩枰栌柙枵柚枳柝栀柃枸柢栎柁柽栲栳桠桡桎桢桄桤梃栝桕桦桁桧桀栾桊桉栩梵梏桴桷梓桫棂楮棼椟椠棹"],["e940","锧锳锽镃镈镋镕镚镠镮镴镵長",7,"門",42],["e980","閫",32,"椤棰椋椁楗棣椐楱椹楠楂楝榄楫榀榘楸椴槌榇榈槎榉楦楣楹榛榧榻榫榭槔榱槁槊槟榕槠榍槿樯槭樗樘橥槲橄樾檠橐橛樵檎橹樽樨橘橼檑檐檩檗檫猷獒殁殂殇殄殒殓殍殚殛殡殪轫轭轱轲轳轵轶轸轷轹轺轼轾辁辂辄辇辋"],["ea40","闌",27,"闬闿阇阓阘阛阞阠阣",6,"阫阬阭阯阰阷阸阹阺阾陁陃陊陎陏陑陒陓陖陗"],["ea80","陘陙陚陜陝陞陠陣陥陦陫陭",4,"陳陸",12,"隇隉隊辍辎辏辘辚軎戋戗戛戟戢戡戥戤戬臧瓯瓴瓿甏甑甓攴旮旯旰昊昙杲昃昕昀炅曷昝昴昱昶昵耆晟晔晁晏晖晡晗晷暄暌暧暝暾曛曜曦曩贲贳贶贻贽赀赅赆赈赉赇赍赕赙觇觊觋觌觎觏觐觑牮犟牝牦牯牾牿犄犋犍犏犒挈挲掰"],["eb40","隌階隑隒隓隕隖隚際隝",9,"隨",7,"隱隲隴隵隷隸隺隻隿雂雃雈雊雋雐雑雓雔雖",9,"雡",6,"雫"],["eb80","雬雭雮雰雱雲雴雵雸雺電雼雽雿霂霃霅霊霋霌霐霑霒霔霕霗",4,"霝霟霠搿擘耄毪毳毽毵毹氅氇氆氍氕氘氙氚氡氩氤氪氲攵敕敫牍牒牖爰虢刖肟肜肓肼朊肽肱肫肭肴肷胧胨胩胪胛胂胄胙胍胗朐胝胫胱胴胭脍脎胲胼朕脒豚脶脞脬脘脲腈腌腓腴腙腚腱腠腩腼腽腭腧塍媵膈膂膑滕膣膪臌朦臊膻"],["ec40","霡",8,"霫霬霮霯霱霳",4,"霺霻霼霽霿",18,"靔靕靗靘靚靜靝靟靣靤靦靧靨靪",7],["ec80","靲靵靷",4,"靽",7,"鞆",4,"鞌鞎鞏鞐鞓鞕鞖鞗鞙",4,"臁膦欤欷欹歃歆歙飑飒飓飕飙飚殳彀毂觳斐齑斓於旆旄旃旌旎旒旖炀炜炖炝炻烀炷炫炱烨烊焐焓焖焯焱煳煜煨煅煲煊煸煺熘熳熵熨熠燠燔燧燹爝爨灬焘煦熹戾戽扃扈扉礻祀祆祉祛祜祓祚祢祗祠祯祧祺禅禊禚禧禳忑忐"],["ed40","鞞鞟鞡鞢鞤",6,"鞬鞮鞰鞱鞳鞵",46],["ed80","韤韥韨韮",4,"韴韷",23,"怼恝恚恧恁恙恣悫愆愍慝憩憝懋懑戆肀聿沓泶淼矶矸砀砉砗砘砑斫砭砜砝砹砺砻砟砼砥砬砣砩硎硭硖硗砦硐硇硌硪碛碓碚碇碜碡碣碲碹碥磔磙磉磬磲礅磴礓礤礞礴龛黹黻黼盱眄眍盹眇眈眚眢眙眭眦眵眸睐睑睇睃睚睨"],["ee40","頏",62],["ee80","顎",32,"睢睥睿瞍睽瞀瞌瞑瞟瞠瞰瞵瞽町畀畎畋畈畛畲畹疃罘罡罟詈罨罴罱罹羁罾盍盥蠲钅钆钇钋钊钌钍钏钐钔钗钕钚钛钜钣钤钫钪钭钬钯钰钲钴钶",4,"钼钽钿铄铈",6,"铐铑铒铕铖铗铙铘铛铞铟铠铢铤铥铧铨铪"],["ef40","顯",5,"颋颎颒颕颙颣風",37,"飏飐飔飖飗飛飜飝飠",4],["ef80","飥飦飩",30,"铩铫铮铯铳铴铵铷铹铼铽铿锃锂锆锇锉锊锍锎锏锒",4,"锘锛锝锞锟锢锪锫锩锬锱锲锴锶锷锸锼锾锿镂锵镄镅镆镉镌镎镏镒镓镔镖镗镘镙镛镞镟镝镡镢镤",8,"镯镱镲镳锺矧矬雉秕秭秣秫稆嵇稃稂稞稔"],["f040","餈",4,"餎餏餑",28,"餯",26],["f080","饊",9,"饖",12,"饤饦饳饸饹饻饾馂馃馉稹稷穑黏馥穰皈皎皓皙皤瓞瓠甬鸠鸢鸨",4,"鸲鸱鸶鸸鸷鸹鸺鸾鹁鹂鹄鹆鹇鹈鹉鹋鹌鹎鹑鹕鹗鹚鹛鹜鹞鹣鹦",6,"鹱鹭鹳疒疔疖疠疝疬疣疳疴疸痄疱疰痃痂痖痍痣痨痦痤痫痧瘃痱痼痿瘐瘀瘅瘌瘗瘊瘥瘘瘕瘙"],["f140","馌馎馚",10,"馦馧馩",47],["f180","駙",32,"瘛瘼瘢瘠癀瘭瘰瘿瘵癃瘾瘳癍癞癔癜癖癫癯翊竦穸穹窀窆窈窕窦窠窬窨窭窳衤衩衲衽衿袂袢裆袷袼裉裢裎裣裥裱褚裼裨裾裰褡褙褓褛褊褴褫褶襁襦襻疋胥皲皴矜耒耔耖耜耠耢耥耦耧耩耨耱耋耵聃聆聍聒聩聱覃顸颀颃"],["f240","駺",62],["f280","騹",32,"颉颌颍颏颔颚颛颞颟颡颢颥颦虍虔虬虮虿虺虼虻蚨蚍蚋蚬蚝蚧蚣蚪蚓蚩蚶蛄蚵蛎蚰蚺蚱蚯蛉蛏蚴蛩蛱蛲蛭蛳蛐蜓蛞蛴蛟蛘蛑蜃蜇蛸蜈蜊蜍蜉蜣蜻蜞蜥蜮蜚蜾蝈蜴蜱蜩蜷蜿螂蜢蝽蝾蝻蝠蝰蝌蝮螋蝓蝣蝼蝤蝙蝥螓螯螨蟒"],["f340","驚",17,"驲骃骉骍骎骔骕骙骦骩",6,"骲骳骴骵骹骻骽骾骿髃髄髆",4,"髍髎髏髐髒體髕髖髗髙髚髛髜"],["f380","髝髞髠髢髣髤髥髧髨髩髪髬髮髰",8,"髺髼",6,"鬄鬅鬆蟆螈螅螭螗螃螫蟥螬螵螳蟋蟓螽蟑蟀蟊蟛蟪蟠蟮蠖蠓蟾蠊蠛蠡蠹蠼缶罂罄罅舐竺竽笈笃笄笕笊笫笏筇笸笪笙笮笱笠笥笤笳笾笞筘筚筅筵筌筝筠筮筻筢筲筱箐箦箧箸箬箝箨箅箪箜箢箫箴篑篁篌篝篚篥篦篪簌篾篼簏簖簋"],["f440","鬇鬉",5,"鬐鬑鬒鬔",10,"鬠鬡鬢鬤",10,"鬰鬱鬳",7,"鬽鬾鬿魀魆魊魋魌魎魐魒魓魕",5],["f480","魛",32,"簟簪簦簸籁籀臾舁舂舄臬衄舡舢舣舭舯舨舫舸舻舳舴舾艄艉艋艏艚艟艨衾袅袈裘裟襞羝羟羧羯羰羲籼敉粑粝粜粞粢粲粼粽糁糇糌糍糈糅糗糨艮暨羿翎翕翥翡翦翩翮翳糸絷綦綮繇纛麸麴赳趄趔趑趱赧赭豇豉酊酐酎酏酤"],["f540","魼",62],["f580","鮻",32,"酢酡酰酩酯酽酾酲酴酹醌醅醐醍醑醢醣醪醭醮醯醵醴醺豕鹾趸跫踅蹙蹩趵趿趼趺跄跖跗跚跞跎跏跛跆跬跷跸跣跹跻跤踉跽踔踝踟踬踮踣踯踺蹀踹踵踽踱蹉蹁蹂蹑蹒蹊蹰蹶蹼蹯蹴躅躏躔躐躜躞豸貂貊貅貘貔斛觖觞觚觜"],["f640","鯜",62],["f680","鰛",32,"觥觫觯訾謦靓雩雳雯霆霁霈霏霎霪霭霰霾龀龃龅",5,"龌黾鼋鼍隹隼隽雎雒瞿雠銎銮鋈錾鍪鏊鎏鐾鑫鱿鲂鲅鲆鲇鲈稣鲋鲎鲐鲑鲒鲔鲕鲚鲛鲞",5,"鲥",4,"鲫鲭鲮鲰",7,"鲺鲻鲼鲽鳄鳅鳆鳇鳊鳋"],["f740","鰼",62],["f780","鱻鱽鱾鲀鲃鲄鲉鲊鲌鲏鲓鲖鲗鲘鲙鲝鲪鲬鲯鲹鲾",4,"鳈鳉鳑鳒鳚鳛鳠鳡鳌",4,"鳓鳔鳕鳗鳘鳙鳜鳝鳟鳢靼鞅鞑鞒鞔鞯鞫鞣鞲鞴骱骰骷鹘骶骺骼髁髀髅髂髋髌髑魅魃魇魉魈魍魑飨餍餮饕饔髟髡髦髯髫髻髭髹鬈鬏鬓鬟鬣麽麾縻麂麇麈麋麒鏖麝麟黛黜黝黠黟黢黩黧黥黪黯鼢鼬鼯鼹鼷鼽鼾齄"],["f840","鳣",62],["f880","鴢",32],["f940","鵃",62],["f980","鶂",32],["fa40","鶣",62],["fa80","鷢",32],["fb40","鸃",27,"鸤鸧鸮鸰鸴鸻鸼鹀鹍鹐鹒鹓鹔鹖鹙鹝鹟鹠鹡鹢鹥鹮鹯鹲鹴",9,"麀"],["fb80","麁麃麄麅麆麉麊麌",5,"麔",8,"麞麠",5,"麧麨麩麪"],["fc40","麫",8,"麵麶麷麹麺麼麿",4,"黅黆黇黈黊黋黌黐黒黓黕黖黗黙黚點黡黣黤黦黨黫黬黭黮黰",8,"黺黽黿",6],["fc80","鼆",4,"鼌鼏鼑鼒鼔鼕鼖鼘鼚",5,"鼡鼣",8,"鼭鼮鼰鼱"],["fd40","鼲",4,"鼸鼺鼼鼿",4,"齅",10,"齒",38],["fd80","齹",5,"龁龂龍",11,"龜龝龞龡",4,"郎凉秊裏隣"],["fe40","兀嗀﨎﨏﨑﨓﨔礼﨟蘒﨡﨣﨤﨧﨨﨩"]]},635:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(1426);t.addBreadcrumb=r.addBreadcrumb;t.captureException=r.captureException;t.captureEvent=r.captureEvent;t.captureMessage=r.captureMessage;t.configureScope=r.configureScope;t.setContext=r.setContext;t.setExtra=r.setExtra;t.setExtras=r.setExtras;t.setTag=r.setTag;t.setTags=r.setTags;t.setUser=r.setUser;t.withScope=r.withScope;var i=n(9726);t.addGlobalEventProcessor=i.addGlobalEventProcessor;t.getCurrentHub=i.getCurrentHub;t.getHubFromCarrier=i.getHubFromCarrier;t.Hub=i.Hub;t.Scope=i.Scope;t.Span=i.Span;var o=n(9305);t.API=o.API;var a=n(3576);t.BaseClient=a.BaseClient;var s=n(7750);t.BaseBackend=s.BaseBackend;var c=n(2427);t.Dsn=c.Dsn;var u=n(4541);t.initAndBind=u.initAndBind;var l=n(3572);t.NoopTransport=l.NoopTransport;var f=n(1551);t.Integrations=f},642:function(e,t,n){"use strict";const r=n(7887);e.exports=((e,t,n)=>{let i;const o=new Promise((r,o)=>{if(typeof n==="function"){n={filter:n}}n=Object.assign({rejectionEvents:["error"],multiArgs:false},n);let a=e.on||e.addListener||e.addEventListener;let s=e.off||e.removeListener||e.removeEventListener;if(!a||!s){throw new TypeError("Emitter is not compatible")}a=a.bind(e);s=s.bind(e);const c=function(e){if(n.multiArgs){e=[].slice.apply(arguments)}if(n.filter&&!n.filter(e)){return}i();r(e)};const u=function(e){i();if(n.multiArgs){o([].slice.apply(arguments))}else{o(e)}};i=(()=>{s(t,c);for(const e of n.rejectionEvents){s(e,u)}});a(t,c);for(const e of n.rejectionEvents){a(e,u)}});o.cancel=i;if(typeof n.timeout==="number"){return r(o,n.timeout)}return o})},647:function(e,t,n){var r=n(1459);var i=5;var o=1<<i;var a=o-1;var s=o;function toVLQSigned(e){return e<0?(-e<<1)+1:(e<<1)+0}function fromVLQSigned(e){var t=(e&1)===1;var n=e>>1;return t?-n:n}t.encode=function base64VLQ_encode(e){var t="";var n;var o=toVLQSigned(e);do{n=o&a;o>>>=i;if(o>0){n|=s}t+=r.encode(n)}while(o>0);return t};t.decode=function base64VLQ_decode(e,t,n){var o=e.length;var c=0;var u=0;var l,f;do{if(t>=o){throw new Error("Expected more digits in base 64 VLQ value.")}f=r.decode(e.charCodeAt(t++));if(f===-1){throw new Error("Invalid base64 digit: "+e.charAt(t-1))}l=!!(f&s);f&=a;c=c+(f<<u);u+=i}while(l);n.value=fromVLQSigned(c);n.rest=t}},648:function(e,t,n){"use strict";var r=n(8901);var i=n(5091);var o=n(649);var a=n(7007);var s=n(5083);var c=n(8315);var u=e.exports=function(e,t){c.call(this,t);this.prompts=e};o.inherits(u,c);u.prototype.run=function(e){this.answers={};if(r.isPlainObject(e)){e=[e]}var t=r.isArray(e)?i.Observable.from(e):e;this.process=t.concatMap(this.processQuestion.bind(this)).publish();this.process.connect();return this.process.reduce(function(e,t){r.set(this.answers,t.name,t.answer);return this.answers}.bind(this),{}).toPromise(Promise).then(this.onCompletion.bind(this))};u.prototype.onCompletion=function(e){this.close();return e};u.prototype.processQuestion=function(e){e=r.clone(e);return i.Observable.defer(function(){var t=i.Observable.of(e);return t.concatMap(this.setDefaultType.bind(this)).concatMap(this.filterIfRunnable.bind(this)).concatMap(s.fetchAsyncQuestionProperty.bind(null,e,"message",this.answers)).concatMap(s.fetchAsyncQuestionProperty.bind(null,e,"default",this.answers)).concatMap(s.fetchAsyncQuestionProperty.bind(null,e,"choices",this.answers)).concatMap(this.fetchAnswer.bind(this))}.bind(this))};u.prototype.fetchAnswer=function(e){var t=this.prompts[e.type];this.activePrompt=new t(e,this.rl,this.answers);return i.Observable.defer(function(){return i.Observable.fromPromise(this.activePrompt.run().then(function(t){return{name:e.name,answer:t}}))}.bind(this))};u.prototype.setDefaultType=function(e){if(!this.prompts[e.type]){e.type="input"}return i.Observable.defer(function(){return i.Observable.return(e)})};u.prototype.filterIfRunnable=function(e){if(e.when===false){return i.Observable.empty()}if(!r.isFunction(e.when)){return i.Observable.return(e)}var t=this.answers;return i.Observable.defer(function(){return i.Observable.fromPromise(a(e.when)(t).then(function(t){if(t){return e}})).filter(function(e){return e!=null})})}},649:function(e){e.exports=require("util")},653:function(e){function make_array(e){return Array.isArray(e)?e:[e]}const t=/^\s+$/;const n=/^\\!/;const r=/^\\#/;const i="/";const o=typeof Symbol!=="undefined"?Symbol.for("node-ignore"):"node-ignore";const a=(e,t,n)=>Object.defineProperty(e,t,{value:n});const s=/([0-z])-([0-z])/g;const c=e=>e.replace(s,(e,t,n)=>t.charCodeAt(0)<=n.charCodeAt(0)?e:"");const u=[[/\\?\s+$/,e=>e.indexOf("\\")===0?" ":""],[/\\\s/g,()=>" "],[/[\\^$.|*+(){]/g,e=>`\\${e}`],[/\[([^\]\/]*)($|\])/g,(e,t,n)=>n==="]"?`[${c(t)}]`:`\\${e}`],[/(?!\\)\?/g,()=>"[^/]"],[/^\//,()=>"^"],[/\//g,()=>"\\/"],[/^\^*\\\*\\\*\\\//,()=>"^(?:.*\\/)?"]];const l=[[/^(?=[^^])/,function startingReplacer(){return!/\/(?!$)/.test(this)?"(?:^|\\/)":"^"}],[/\\\/\\\*\\\*(?=\\\/|$)/g,(e,t,n)=>t+6<n.length?"(?:\\/[^\\/]+)*":"\\/.+"],[/(^|[^\\]+)\\\*(?=.+)/g,(e,t)=>`${t}[^\\/]*`],[/(\^|\\\/)?\\\*$/,(e,t)=>{const n=t?`${t}[^/]+`:"[^/]*";return`${n}(?=$|\\/$)`}],[/\\\\\\/g,()=>"\\"]];const f=[...u,[/(?:[^*\/])$/,e=>`${e}(?=$|\\/)`],...l];const p=[...u,[/(?:[^*])$/,e=>`${e}(?=$|\\/$)`],...l];const d=Object.create(null);const h=(e,t,n)=>{const r=d[e];if(r){return r}const i=t?p:f;const o=i.reduce((t,n)=>t.replace(n[0],n[1].bind(e)),e);return d[e]=n?new RegExp(o,"i"):new RegExp(o)};const m=e=>e&&typeof e==="string"&&!t.test(e)&&e.indexOf("#")!==0;const v=(e,t)=>{const i=e;let o=false;if(e.indexOf("!")===0){o=true;e=e.substr(1)}e=e.replace(n,"!").replace(r,"#");const a=h(e,o,t);return{origin:i,pattern:e,negative:o,regex:a}};class IgnoreBase{constructor({ignorecase:e=true}={}){this._rules=[];this._ignorecase=e;a(this,o,true);this._initCache()}_initCache(){this._cache=Object.create(null)}add(e){this._added=false;if(typeof e==="string"){e=e.split(/\r?\n/g)}make_array(e).forEach(this._addPattern,this);if(this._added){this._initCache()}return this}addPattern(e){return this.add(e)}_addPattern(e){if(e&&e[o]){this._rules=this._rules.concat(e._rules);this._added=true;return}if(m(e)){const t=v(e,this._ignorecase);this._added=true;this._rules.push(t)}}filter(e){return make_array(e).filter(e=>this._filter(e))}createFilter(){return e=>this._filter(e)}ignores(e){return!this._filter(e)}_filter(e,t){if(!e){return false}if(e in this._cache){return this._cache[e]}if(!t){t=e.split(i)}t.pop();return this._cache[e]=t.length?this._filter(t.join(i)+i,t)&&this._test(e):this._test(e)}_test(e){let t=0;this._rules.forEach(n=>{if(!(t^n.negative)){t=n.negative^n.regex.test(e)}});return!t}}if(typeof process!=="undefined"&&(process.env&&process.env.IGNORE_TEST_WIN32||process.platform==="win32")){const e=IgnoreBase.prototype._filter;const t=e=>/^\\\\\?\\/.test(e)||/[^\x00-\x80]+/.test(e)?e:e.replace(/\\/g,"/");IgnoreBase.prototype._filter=function filterWin32(n,r){n=t(n);return e.call(this,n,r)}}e.exports=(e=>new IgnoreBase(e))},657:function(e,t,n){var r=n(9175);function generatedPositionAfter(e,t){var n=e.generatedLine;var i=t.generatedLine;var o=e.generatedColumn;var a=t.generatedColumn;return i>n||i==n&&a>=o||r.compareByGeneratedPositionsInflated(e,t)<=0}function MappingList(){this._array=[];this._sorted=true;this._last={generatedLine:-1,generatedColumn:0}}MappingList.prototype.unsortedForEach=function MappingList_forEach(e,t){this._array.forEach(e,t)};MappingList.prototype.add=function MappingList_add(e){if(generatedPositionAfter(this._last,e)){this._last=e;this._array.push(e)}else{this._sorted=false;this._array.push(e)}};MappingList.prototype.toArray=function MappingList_toArray(){if(!this._sorted){this._array.sort(r.compareByGeneratedPositionsInflated);this._sorted=true}return this._array};t.MappingList=MappingList},662:function(e){e.exports=require("fs")},695:function(e,t,n){e.exports=n(1840)},706:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(1390);var i=n(662);var o=n(1725);var a=n(3951);var s=7;var c=new o.LRUMap(100);function resetFileContentCache(){c.clear()}t.resetFileContentCache=resetFileContentCache;function getFunction(e){try{return e.functionName||e.typeName+"."+(e.methodName||"<anonymous>")}catch(e){return"<anonymous>"}}var u=(require.main&&require.main.filename&&r.dirname(require.main.filename)||global.process.cwd())+"/";function getModule(e,t){if(!t){t=u}var n=r.basename(e,".js");e=r.dirname(e);var i=e.lastIndexOf("/node_modules/");if(i>-1){return e.substr(i+14).replace(/\//g,".")+":"+n}i=(e+"/").lastIndexOf(t,0);if(i===0){var o=e.substr(t.length).replace(/\//g,".");if(o){o+=":"}o+=n;return o}return n}function readSourceFiles(e){if(e.length===0){return r.SyncPromise.resolve({})}return new r.SyncPromise(function(t){var n={};var r=0;var o=function(o){var a=e[o];var s=c.get(a);if(s!==undefined){if(s!==null){n[a]=s}r++;if(r===e.length){t(n)}return"continue"}i.readFile(a,function(i,o){var s=i?null:o.toString();n[a]=s;c.set(a,s);r++;if(r===e.length){t(n)}})};for(var a=0;a<e.length;a++){o(a)}})}function extractStackFromError(e){var t=a.parse(e);if(!t){return[]}return t}t.extractStackFromError=extractStackFromError;function parseStack(e,t){var n=[];var i=t&&t.frameContextLines!==undefined?t.frameContextLines:s;var o=e.map(function(e){var t={colno:e.columnNumber,filename:e.fileName||"",function:getFunction(e),lineno:e.lineNumber};var r=e.native||t.filename&&!t.filename.startsWith("/")&&!t.filename.startsWith(".")&&t.filename.indexOf(":\\")!==1;t.in_app=!r&&t.filename!==undefined&&!t.filename.includes("node_modules/");if(t.filename){t.module=getModule(t.filename);if(!r&&i>0){n.push(t.filename)}}return t});if(i<=0){return r.SyncPromise.resolve(o)}try{return addPrePostContext(n,o,i)}catch(e){return r.SyncPromise.resolve(o)}}t.parseStack=parseStack;function addPrePostContext(e,t,n){return new r.SyncPromise(function(i){return readSourceFiles(e).then(function(e){var o=t.map(function(t){if(t.filename&&e[t.filename]){try{var i=e[t.filename].split("\n");t.pre_context=i.slice(Math.max(0,(t.lineno||0)-(n+1)),(t.lineno||0)-1).map(function(e){return r.snipLine(e,0)});t.context_line=r.snipLine(i[(t.lineno||0)-1],t.colno||0);t.post_context=i.slice(t.lineno||0,(t.lineno||0)+n).map(function(e){return r.snipLine(e,0)})}catch(e){}}return t});i(o)})})}function getExceptionFromError(e,t){var n=e.name||e.constructor.name;var i=extractStackFromError(e);return new r.SyncPromise(function(r){return parseStack(i,t).then(function(t){var i={stacktrace:{frames:prepareFramesForEvent(t)},type:n,value:e.message};r(i)})})}t.getExceptionFromError=getExceptionFromError;function parseError(e,t){return new r.SyncPromise(function(n){return getExceptionFromError(e,t).then(function(e){n({exception:{values:[e]}})})})}t.parseError=parseError;function prepareFramesForEvent(e){if(!e||!e.length){return[]}var t=e;var n=t[0].function||"";if(n.includes("captureMessage")||n.includes("captureException")){t=t.slice(1)}return t.reverse()}t.prepareFramesForEvent=prepareFramesForEvent},710:function(e,t,n){"use strict";const r=n(4859);const i=n(4219);const o=n(2307);const a=n(6886).PassThrough;const s=n(774);const c=n(2721);const u=n(6585);const l=n(4480);const f=n(7459);const p=n(6711);const d=n(8221);const h=n(2570);const m=n(7809);const v=n(6260);const g=n(4280);const y=n(9335).Buffer;const b=n(1439);const w=n(8888);const x=n(8382);const k=n(7887);const j=n(9482);const S=new Set([300,301,302,303,304,305,307,308]);const E=new Set([300,303,307,308]);function requestAsEventEmitter(e){e=e||{};const t=new r;const a=e.href||s.resolve(s.format(e),e.path);const c=[];let u=0;let l;const f=e=>{if(e.protocol!=="http:"&&e.protocol!=="https:"){t.emit("error",new got.UnsupportedProtocolError(e));return}let r=e.protocol==="https:"?o:i;if(e.useElectronNet&&process.versions.electron){const e=n(9570);r=e.net||e.remote.net}const d=r.request(e,n=>{const r=n.statusCode;n.url=l||a;n.requestUrl=a;const i=e.followRedirect&&"location"in n.headers;const o=i&&S.has(r);const u=i&&E.has(r);if(u||o&&(e.method==="GET"||e.method==="HEAD")){n.resume();if(r===303){e.method="GET"}if(c.length>=10){t.emit("error",new got.MaxRedirectsError(r,c,e),null,n);return}const i=y.from(n.headers.location,"binary").toString();l=s.resolve(s.format(e),i);c.push(l);const o=Object.assign({},e,s.parse(l));t.emit("redirect",n,o);f(o);return}setImmediate(()=>{const r=e.decompress===true&&typeof v==="function"&&d.method!=="HEAD"?v(n):n;if(!e.decompress&&["gzip","deflate"].indexOf(n.headers["content-encoding"])!==-1){e.encoding=null}r.redirectUrls=c;t.emit("response",r)})});d.once("error",n=>{const r=e.retries(++u,n);if(r){setTimeout(f,r,e);return}t.emit("error",new got.RequestError(n,e))});if(e.gotTimeout){p(d,e.gotTimeout)}setImmediate(()=>{t.emit("request",d)})};setImmediate(()=>{f(e)});return t}function asPromise(e){const t=t=>e.gotTimeout&&e.gotTimeout.request?k(t,e.gotTimeout.request,new got.RequestError({message:"Request timed out",code:"ETIMEDOUT"},e)):t;return t(new x((t,n,r)=>{const i=requestAsEventEmitter(e);let o=false;t(()=>{o=true});i.on("request",n=>{if(o){n.abort()}t(()=>{n.abort()});if(l(e.body)){e.body.pipe(n);e.body=undefined;return}n.end(e.body)});i.on("response",t=>{const i=e.encoding===null?f.buffer(t):f(t,e);i.catch(t=>r(new got.ReadError(t,e))).then(r=>{const i=t.statusCode;const o=e.followRedirect?299:399;t.body=r;if(e.json&&t.body){try{t.body=JSON.parse(t.body)}catch(t){if(i>=200&&i<300){throw new got.ParseError(t,i,e,r)}}}if(i!==304&&(i<200||i>o)){throw new got.HTTPError(i,t.headers,e)}n(t)}).catch(e=>{Object.defineProperty(e,"response",{value:t});r(e)})});i.on("error",r)}))}function asStream(e){const t=new a;const n=new a;const r=u(t,n);let i;if(e.gotTimeout&&e.gotTimeout.request){i=setTimeout(()=>{r.emit("error",new got.RequestError({message:"Request timed out",code:"ETIMEDOUT"},e))},e.gotTimeout.request)}if(e.json){throw new Error("got can not be used as stream when options.json is used")}if(e.body){r.write=(()=>{throw new Error("got's stream is not writable when options.body is used")})}const o=requestAsEventEmitter(e);o.on("request",n=>{r.emit("request",n);if(l(e.body)){e.body.pipe(n);return}if(e.body){n.end(e.body);return}if(e.method==="POST"||e.method==="PUT"||e.method==="PATCH"){t.pipe(n);return}n.end()});o.on("response",t=>{clearTimeout(i);const o=t.statusCode;t.pipe(n);if(o!==304&&(o<200||o>299)){r.emit("error",new got.HTTPError(o,t.headers,e),null,t);return}r.emit("response",t)});o.on("redirect",r.emit.bind(r,"redirect"));o.on("error",r.emit.bind(r,"error"));return r}function normalizeArguments(e,t){if(typeof e!=="string"&&typeof e!=="object"){throw new TypeError(`Parameter \`url\` must be a string or object, not ${typeof e}`)}else if(typeof e==="string"){e=e.replace(/^unix:/,"http://$&");e=d(e)}else if(b.lenient(e)){e=h(e)}if(e.auth){throw new Error("Basic authentication must be done with auth option")}t=Object.assign({path:"",retries:2,decompress:true,useElectronNet:true},e,{protocol:e.protocol||"http:"},t);t.headers=Object.assign({"user-agent":`${j.name}/${j.version} (https://github.com/sindresorhus/got)`,"accept-encoding":"gzip,deflate"},m(t.headers));const n=t.query;if(n){if(typeof n!=="string"){t.query=c.stringify(n)}t.path=`${t.path.split("?")[0]}?${t.query}`;delete t.query}if(t.json&&t.headers.accept===undefined){t.headers.accept="application/json"}const r=t.body;if(r!==null&&r!==undefined){const e=t.headers;if(!l(r)&&typeof r!=="string"&&!y.isBuffer(r)&&!(t.form||t.json)){throw new TypeError("options.body must be a ReadableStream, string, Buffer or plain Object")}const n=w(r)||Array.isArray(r);if((t.form||t.json)&&!n){throw new TypeError("options.body must be a plain Object or Array when options.form or options.json is used")}if(l(r)&&typeof r.getBoundary==="function"){e["content-type"]=e["content-type"]||`multipart/form-data; boundary=${r.getBoundary()}`}else if(t.form&&n){e["content-type"]=e["content-type"]||"application/x-www-form-urlencoded";t.body=c.stringify(r)}else if(t.json&&n){e["content-type"]=e["content-type"]||"application/json";t.body=JSON.stringify(r)}if(e["content-length"]===undefined&&e["transfer-encoding"]===undefined&&!l(r)){const n=typeof t.body==="string"?y.byteLength(t.body):t.body.length;e["content-length"]=n}t.method=(t.method||"POST").toUpperCase()}else{t.method=(t.method||"GET").toUpperCase()}if(t.hostname==="unix"){const e=/(.+?):(.+)/.exec(t.path);if(e){t.socketPath=e[1];t.path=e[2];t.host=null}}if(typeof t.retries!=="function"){const e=t.retries;t.retries=((t,n)=>{if(t>e||!g(n)){return 0}const r=Math.random()*100;return(1<<t)*1e3+r})}if(t.followRedirect===undefined){t.followRedirect=true}if(t.timeout){if(typeof t.timeout==="number"){t.gotTimeout={request:t.timeout}}else{t.gotTimeout=t.timeout}delete t.timeout}return t}function got(e,t){try{return asPromise(normalizeArguments(e,t))}catch(e){return Promise.reject(e)}}got.stream=((e,t)=>asStream(normalizeArguments(e,t)));const _=["get","post","put","patch","head","delete"];for(const e of _){got[e]=((t,n)=>got(t,Object.assign({},n,{method:e})));got.stream[e]=((t,n)=>got.stream(t,Object.assign({},n,{method:e})))}class StdError extends Error{constructor(e,t,n){super(e);this.name="StdError";if(t.code!==undefined){this.code=t.code}Object.assign(this,{host:n.host,hostname:n.hostname,method:n.method,path:n.path,protocol:n.protocol,url:n.href})}}got.RequestError=class extends StdError{constructor(e,t){super(e.message,e,t);this.name="RequestError"}};got.ReadError=class extends StdError{constructor(e,t){super(e.message,e,t);this.name="ReadError"}};got.ParseError=class extends StdError{constructor(e,t,n,r){super(`${e.message} in "${s.format(n)}": \n${r.slice(0,77)}...`,e,n);this.name="ParseError";this.statusCode=t;this.statusMessage=i.STATUS_CODES[this.statusCode]}};got.HTTPError=class extends StdError{constructor(e,t,n){const r=i.STATUS_CODES[e];super(`Response code ${e} (${r})`,{},n);this.name="HTTPError";this.statusCode=e;this.statusMessage=r;this.headers=t}};got.MaxRedirectsError=class extends StdError{constructor(e,t,n){super("Redirected 10 times. Aborting.",{},n);this.name="MaxRedirectsError";this.statusCode=e;this.statusMessage=i.STATUS_CODES[this.statusCode];this.redirectUrls=t}};got.UnsupportedProtocolError=class extends StdError{constructor(e){super(`Unsupported protocol "${e.protocol}"`,{},e);this.name="UnsupportedProtocolError"}};e.exports=got},712:function(e,t,n){const{Stream:r}=n(6886);const i=n(1152);const o=n(2538);function isStream(e){return e!==null&&typeof e==="object"&&typeof e.pipe==="function"}function readable(e){return isStream(e)&&e.readable!==false&&typeof e._read==="function"&&typeof e._readableState==="object"}const{NODE_ENV:a}=process.env;const s=a==="development";const c=e=>(n,r)=>t.run(n,r,e);e.exports=c;t=c;t.default=c;const u=(e,t,n)=>{const r=new Error(t);r.statusCode=e;r.originalError=n;return r};const l=(e,t,n=null)=>{e.statusCode=t;if(n===null){e.end();return}if(Buffer.isBuffer(n)){if(!e.getHeader("Content-Type")){e.setHeader("Content-Type","application/octet-stream")}e.setHeader("Content-Length",n.length);e.end(n);return}if(n instanceof r||readable(n)){if(!e.getHeader("Content-Type")){e.setHeader("Content-Type","application/octet-stream")}n.pipe(e);return}let i=n;if(typeof n==="object"||typeof n==="number"){if(s){i=JSON.stringify(n,null,2)}else{i=JSON.stringify(n)}if(!e.getHeader("Content-Type")){e.setHeader("Content-Type","application/json; charset=utf-8")}}e.setHeader("Content-Length",Buffer.byteLength(i));e.end(i)};const f=(e,t,n)=>{const r=n.statusCode||n.status;const i=r?n.message:"Internal Server Error";l(t,r||500,s?n.stack:i);if(n instanceof Error){console.error(n.stack)}else{console.warn("thrown error must be an instance Error")}};t.send=l;t.sendError=f;t.createError=u;t.run=((e,t,n)=>new Promise(r=>r(n(e,t))).then(e=>{if(e===null){l(t,204,null);return}if(e!==undefined){l(t,t.statusCode||200,e)}}).catch(n=>f(e,t,n)));const p=new WeakMap;const d=e=>{try{return JSON.parse(e)}catch(e){throw u(400,"Invalid JSON",e)}};t.buffer=((e,{limit:t="1mb",encoding:n}={})=>Promise.resolve().then(()=>{const r=e.headers["content-type"]||"text/plain";const a=e.headers["content-length"];if(n===undefined){n=i.parse(r).parameters.charset}const s=p.get(e);if(s){return s}return o(e,{limit:t,length:a,encoding:n}).then(t=>{p.set(e,t);return t}).catch(e=>{if(e.type==="entity.too.large"){throw u(413,`Body exceeded ${t} limit`,e)}else{throw u(400,"Invalid body",e)}})}));t.text=((e,{limit:n,encoding:r}={})=>t.buffer(e,{limit:n,encoding:r}).then(e=>e.toString(r)));t.json=((e,n)=>t.text(e,n).then(e=>d(e)))},720:function(e){e.exports={uChars:[128,165,169,178,184,216,226,235,238,244,248,251,253,258,276,284,300,325,329,334,364,463,465,467,469,471,473,475,477,506,594,610,712,716,730,930,938,962,970,1026,1104,1106,8209,8215,8218,8222,8231,8241,8244,8246,8252,8365,8452,8454,8458,8471,8482,8556,8570,8596,8602,8713,8720,8722,8726,8731,8737,8740,8742,8748,8751,8760,8766,8777,8781,8787,8802,8808,8816,8854,8858,8870,8896,8979,9322,9372,9548,9588,9616,9622,9634,9652,9662,9672,9676,9680,9702,9735,9738,9793,9795,11906,11909,11913,11917,11928,11944,11947,11951,11956,11960,11964,11979,12284,12292,12312,12319,12330,12351,12436,12447,12535,12543,12586,12842,12850,12964,13200,13215,13218,13253,13263,13267,13270,13384,13428,13727,13839,13851,14617,14703,14801,14816,14964,15183,15471,15585,16471,16736,17208,17325,17330,17374,17623,17997,18018,18212,18218,18301,18318,18760,18811,18814,18820,18823,18844,18848,18872,19576,19620,19738,19887,40870,59244,59336,59367,59413,59417,59423,59431,59437,59443,59452,59460,59478,59493,63789,63866,63894,63976,63986,64016,64018,64021,64025,64034,64037,64042,65074,65093,65107,65112,65127,65132,65375,65510,65536],gbChars:[0,36,38,45,50,81,89,95,96,100,103,104,105,109,126,133,148,172,175,179,208,306,307,308,309,310,311,312,313,341,428,443,544,545,558,741,742,749,750,805,819,820,7922,7924,7925,7927,7934,7943,7944,7945,7950,8062,8148,8149,8152,8164,8174,8236,8240,8262,8264,8374,8380,8381,8384,8388,8390,8392,8393,8394,8396,8401,8406,8416,8419,8424,8437,8439,8445,8482,8485,8496,8521,8603,8936,8946,9046,9050,9063,9066,9076,9092,9100,9108,9111,9113,9131,9162,9164,9218,9219,11329,11331,11334,11336,11346,11361,11363,11366,11370,11372,11375,11389,11682,11686,11687,11692,11694,11714,11716,11723,11725,11730,11736,11982,11989,12102,12336,12348,12350,12384,12393,12395,12397,12510,12553,12851,12962,12973,13738,13823,13919,13933,14080,14298,14585,14698,15583,15847,16318,16434,16438,16481,16729,17102,17122,17315,17320,17402,17418,17859,17909,17911,17915,17916,17936,17939,17961,18664,18703,18814,18962,19043,33469,33470,33471,33484,33485,33490,33497,33501,33505,33513,33520,33536,33550,37845,37921,37948,38029,38038,38064,38065,38066,38069,38075,38076,38078,39108,39109,39113,39114,39115,39116,39265,39394,189e3]}},724:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5529);i.outputJson=r(n(1366));i.outputJsonSync=n(375);i.outputJSON=i.outputJson;i.outputJSONSync=i.outputJsonSync;i.writeJSON=i.writeJson;i.writeJSONSync=i.writeJsonSync;i.readJSON=i.readJson;i.readJSONSync=i.readJsonSync;e.exports=i},730:function(e,t,n){var r=n(774),i=n(6881);var o=/^201|30(1|2|7|8)$/;e.exports={removeChunked:function removeChunked(e,t,n){if(e.httpVersion==="1.0"){delete n.headers["transfer-encoding"]}},setConnection:function setConnection(e,t,n){if(e.httpVersion==="1.0"){n.headers.connection=e.headers.connection||"close"}else if(e.httpVersion!=="2.0"&&!n.headers.connection){n.headers.connection=e.headers.connection||"keep-alive"}},setRedirectHostRewrite:function setRedirectHostRewrite(e,t,n,i){if((i.hostRewrite||i.autoRewrite||i.protocolRewrite)&&n.headers["location"]&&o.test(n.statusCode)){var a=r.parse(i.target);var s=r.parse(n.headers["location"]);if(a.host!=s.host){return}if(i.hostRewrite){s.host=i.hostRewrite}else if(i.autoRewrite){s.host=e.headers["host"]}if(i.protocolRewrite){s.protocol=i.protocolRewrite}n.headers["location"]=s.format()}},writeHeaders:function writeHeaders(e,t,n,r){var o=r.cookieDomainRewrite,a=r.cookiePathRewrite,s=r.preserveHeaderKeyCase,c,u=function(e,n){if(n==undefined)return;if(o&&e.toLowerCase()==="set-cookie"){n=i.rewriteCookieProperty(n,o,"domain")}if(a&&e.toLowerCase()==="set-cookie"){n=i.rewriteCookieProperty(n,a,"path")}t.setHeader(String(e).trim(),n)};if(typeof o==="string"){o={"*":o}}if(typeof a==="string"){a={"*":a}}if(s&&n.rawHeaders!=undefined){c={};for(var l=0;l<n.rawHeaders.length;l+=2){var f=n.rawHeaders[l];c[f.toLowerCase()]=f}}Object.keys(n.headers).forEach(function(e){var t=n.headers[e];if(s&&c){e=c[e]||e}u(e,t)})},writeStatusCode:function writeStatusCode(e,t,n){if(n.statusMessage){t.statusCode=n.statusCode;t.statusMessage=n.statusMessage}else{t.statusCode=n.statusCode}}}},740:function(e,t,n){"use strict";const r=n(9052);const i={...process.env,LC_CTYPE:"UTF-8"};e.exports={copy:async e=>r("pbcopy",{...e,env:i}),paste:async e=>r.stdout("pbpaste",{...e,env:i}),copySync:e=>r.sync("pbcopy",{...e,env:i}),pasteSync:e=>r.sync("pbpaste",{...e,env:i})}},745:function(e,t,n){"use strict";e.exports={afterRequest:n(7171),beforeRequest:n(8941),browser:n(3853),cache:n(2176),content:n(7826),cookie:n(1026),creator:n(7132),entry:n(5487),har:n(3761),header:n(9051),log:n(6286),page:n(9538),pageTimings:n(5495),postData:n(1836),query:n(6750),request:n(5008),response:n(1115),timings:n(8514)}},750:function(e,t,n){var r=n(5313);var i=n(1537);e.exports.fileSync=r.fileSync;var o=i.promisify(r.file,{multiArgs:true});e.exports.file=function file$promise(){return o.apply(r,arguments).spread(function(e,t,n){return{path:e,fd:t,cleanup:n}})};e.exports.withFile=function withFile(t){var n;var i=Array.prototype.slice.call(arguments,1);return e.exports.file.apply(r,i).then(function context(e){n=e.cleanup;delete e.cleanup;return t(e)}).finally(function(){if(n){n()}})};e.exports.dirSync=r.dirSync;var a=i.promisify(r.dir,{multiArgs:true});e.exports.dir=function dir$promise(){return a.apply(r,arguments).spread(function(e,t){return{path:e,cleanup:t}})};e.exports.withDir=function withDir(t){var n;var i=Array.prototype.slice.call(arguments,1);return e.exports.dir.apply(r,i).then(function context(e){n=e.cleanup;delete e.cleanup;return t(e)}).finally(function(){if(n){n()}})};e.exports.tmpNameSync=r.tmpNameSync;e.exports.tmpName=i.promisify(r.tmpName);e.exports.tmpdir=r.tmpdir;e.exports.setGracefulCleanup=r.setGracefulCleanup},772:function(e,t,n){"use strict";e.exports=Object.assign({},n(8270),n(9146),n(3819),n(286),n(8027),n(724),n(5627),n(5517),n(4801),n(4151),n(7346),n(8120));const r=n(662);if(Object.getOwnPropertyDescriptor(r,"promises")){Object.defineProperty(e.exports,"promises",{get(){return r.promises}})}},774:function(e){e.exports=require("url")},776:function(e){e.exports=["assert","buffer","child_process","cluster","console","constants","crypto","dgram","dns","domain","events","fs","http","https","module","net","os","path","process","punycode","querystring","readline","repl","stream","string_decoder","timers","tls","tty","url","util","v8","vm","zlib"]},780:function(e){"use strict";var t=setTimeout;function createSleepPromise(e,n){var r=n.useCachedSetTimeout,i=r?t:setTimeout;return new Promise(function(t){i(t,e)})}function sleep(e){function b(e){return r.then(function(){return e})}var t=1<arguments.length&&void 0!==arguments[1]?arguments[1]:{},n=t.useCachedSetTimeout,r=createSleepPromise(e,{useCachedSetTimeout:n});return b.then=function(){return r.then.apply(r,arguments)},b.catch=Promise.resolve().catch,b}e.exports=sleep},784:function(e,t,n){var r=n(5893);e.exports={parse:r.parse}},785:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(5897));const a=i(n(8185));const s=i(n(2623));const c=i(n(862));function dev(e,t,n,i){return r(this,void 0,void 0,function*(){i.dim(`Now CLI ${a.default.version} dev (beta) — https://zeit.co/feedback/dev`);const[e="."]=n;const r=o.default.resolve(e);const u=c.default(t["--listen"]||"3000");const l=t["--debug"]||false;const f=new s.default(r,{output:i,debug:l});process.once("SIGINT",()=>f.stop());yield f.start(...u)})}t.default=dev},796:function(e){var t=Object.prototype.toString;e.exports=function kindOf(e){if(e===void 0)return"undefined";if(e===null)return"null";var n=typeof e;if(n==="boolean")return"boolean";if(n==="string")return"string";if(n==="number")return"number";if(n==="symbol")return"symbol";if(n==="function"){return isGeneratorFn(e)?"generatorfunction":"function"}if(isArray(e))return"array";if(isBuffer(e))return"buffer";if(isArguments(e))return"arguments";if(isDate(e))return"date";if(isError(e))return"error";if(isRegexp(e))return"regexp";switch(ctorName(e)){case"Symbol":return"symbol";case"Promise":return"promise";case"WeakMap":return"weakmap";case"WeakSet":return"weakset";case"Map":return"map";case"Set":return"set";case"Int8Array":return"int8array";case"Uint8Array":return"uint8array";case"Uint8ClampedArray":return"uint8clampedarray";case"Int16Array":return"int16array";case"Uint16Array":return"uint16array";case"Int32Array":return"int32array";case"Uint32Array":return"uint32array";case"Float32Array":return"float32array";case"Float64Array":return"float64array"}if(isGeneratorObj(e)){return"generator"}n=t.call(e);switch(n){case"[object Object]":return"object";case"[object Map Iterator]":return"mapiterator";case"[object Set Iterator]":return"setiterator";case"[object String Iterator]":return"stringiterator";case"[object Array Iterator]":return"arrayiterator"}return n.slice(8,-1).toLowerCase().replace(/\s/g,"")};function ctorName(e){return e.constructor?e.constructor.name:null}function isArray(e){if(Array.isArray)return Array.isArray(e);return e instanceof Array}function isError(e){return e instanceof Error||typeof e.message==="string"&&e.constructor&&typeof e.constructor.stackTraceLimit==="number"}function isDate(e){if(e instanceof Date)return true;return typeof e.toDateString==="function"&&typeof e.getDate==="function"&&typeof e.setDate==="function"}function isRegexp(e){if(e instanceof RegExp)return true;return typeof e.flags==="string"&&typeof e.ignoreCase==="boolean"&&typeof e.multiline==="boolean"&&typeof e.global==="boolean"}function isGeneratorFn(e,t){return ctorName(e)==="GeneratorFunction"}function isGeneratorObj(e){return typeof e.throw==="function"&&typeof e.return==="function"&&typeof e.next==="function"}function isArguments(e){try{if(typeof e.length==="number"&&typeof e.callee==="function"){return true}}catch(e){if(e.message.indexOf("callee")!==-1){return true}}return false}function isBuffer(e){if(e.constructor&&typeof e.constructor.isBuffer==="function"){return e.constructor.isBuffer(e)}return false}},797:function(e,t,n){if(typeof process==="undefined"||process.type==="renderer"){e.exports=n(6208)}else{e.exports=n(8283)}},808:function(e,t,n){"use strict";var r=n(5325);function isObjectObject(e){return r(e)===true&&Object.prototype.toString.call(e)==="[object Object]"}e.exports=function isPlainObject(e){var t,n;if(isObjectObject(e)===false)return false;t=e.constructor;if(typeof t!=="function")return false;n=t.prototype;if(isObjectObject(n)===false)return false;if(n.hasOwnProperty("isPrototypeOf")===false){return false}return true}},816:function(e){"use strict";const t=/\s|=/;const n=/^-{1,2}/;const r=/^--no-/i;function isBool(e){return typeof e==="boolean"}function toArr(e){return Array.isArray(e)?e:e==null?[]:[e]}function toString(e){return e==null||e===true?"":String(e)}function toBool(e){return e==="false"?false:Boolean(e)}function toNum(e){return!isBool(e)&&Number(e)||e}function getAlibi(e,t){if(t.length===0)return t;let n,r=0,i=t.length,o=[];for(;r<i;r++){n=t[r];o.push(n);if(e[n]!==void 0){o=o.concat(e[n])}}return o}function typecast(e,t,n,r){if(n.indexOf(e)!==-1)return toString(t);if(r.indexOf(e)!==-1)return toBool(t);return toNum(t)}e.exports=function(e,i){e=e||[];i=i||{};i.string=toArr(i.string);i.boolean=toArr(i.boolean);const o={};let a,s,c,u,l,f,p;if(i.alias!==void 0){for(a in i.alias){o[a]=toArr(i.alias[a]);f=o[a].length;for(s=0;s<f;s++){u=o[a][s];o[u]=[a];for(c=0;c<f;c++){if(u!==o[a][c]){o[u].push(o[a][c])}}}}}if(i.default!==void 0){for(a in i.default){p=typeof i.default[a];i[p]=(i[p]||[]).concat(a)}}i.string=getAlibi(o,i.string);i.boolean=getAlibi(o,i.boolean);let d=0;const h={_:[]};while(e[d]!==void 0){let c=1;const u=e[d];if(u==="--"){h._=h._.concat(e.slice(d+1));break}else if(!n.test(u)){h._.push(u)}else if(r.test(u)){h[u.replace(r,"")]=false}else{let r;const l=u.split(t);const p=l[0].charCodeAt(1)!==45;const m=l[0].substr(p?1:2);f=m.length;const v=p?m[f-1]:m;if(i.unknown!==void 0&&o[v]===void 0){return i.unknown(l[0])}if(l.length>1){r=l[1]}else{r=e[d+1]||true;n.test(r)?r=true:c=2}if(p&&f>1){for(s=f-1;s--;){a=m[s];h[a]=typecast(a,true,i.string,i.boolean)}}const g=typecast(v,r,i.string,i.boolean);h[v]=h[v]!==void 0?toArr(h[v]).concat(g):g;if(isBool(g)&&!isBool(r)&&r!=="true"&&r!=="false"){h._.push(r)}}d+=c}if(i.default!==void 0){for(a in i.default){if(h[a]===void 0){h[a]=i.default[a]}}}for(a in h){if(o[a]===void 0)continue;l=h[a];f=o[a].length;for(s=0;s<f;s++){h[o[a][s]]=l}}return h}},825:function(e){"use strict";e.exports=function forIn(e,t,n){for(var r in e){if(t.call(n,e[r],r,e)===false){break}}}},834:function(e,t,n){"use strict";const r=n(7801);const i={};r(i,n(1400));r(i,n(1954));r(i,n(8991));r(i,n(501));r(i,n(6078));r(i,n(8694));r(i,n(1524));r(i,n(2508));r(i,n(4606));r(i,n(8660));r(i,n(3442));r(i,n(5899));e.exports=i},851:function(e,t,n){"use strict";var r=n(1449).lowlevel.crypto_hash;var i=0;var o=function(){this.S=[new Uint32Array([3509652390,2564797868,805139163,3491422135,3101798381,1780907670,3128725573,4046225305,614570311,3012652279,134345442,2240740374,1667834072,1901547113,2757295779,4103290238,227898511,1921955416,1904987480,2182433518,2069144605,3260701109,2620446009,720527379,3318853667,677414384,3393288472,3101374703,2390351024,1614419982,1822297739,2954791486,3608508353,3174124327,2024746970,1432378464,3864339955,2857741204,1464375394,1676153920,1439316330,715854006,3033291828,289532110,2706671279,2087905683,3018724369,1668267050,732546397,1947742710,3462151702,2609353502,2950085171,1814351708,2050118529,680887927,999245976,1800124847,3300911131,1713906067,1641548236,4213287313,1216130144,1575780402,4018429277,3917837745,3693486850,3949271944,596196993,3549867205,258830323,2213823033,772490370,2760122372,1774776394,2652871518,566650946,4142492826,1728879713,2882767088,1783734482,3629395816,2517608232,2874225571,1861159788,326777828,3124490320,2130389656,2716951837,967770486,1724537150,2185432712,2364442137,1164943284,2105845187,998989502,3765401048,2244026483,1075463327,1455516326,1322494562,910128902,469688178,1117454909,936433444,3490320968,3675253459,1240580251,122909385,2157517691,634681816,4142456567,3825094682,3061402683,2540495037,79693498,3249098678,1084186820,1583128258,426386531,1761308591,1047286709,322548459,995290223,1845252383,2603652396,3431023940,2942221577,3202600964,3727903485,1712269319,422464435,3234572375,1170764815,3523960633,3117677531,1434042557,442511882,3600875718,1076654713,1738483198,4213154764,2393238008,3677496056,1014306527,4251020053,793779912,2902807211,842905082,4246964064,1395751752,1040244610,2656851899,3396308128,445077038,3742853595,3577915638,679411651,2892444358,2354009459,1767581616,3150600392,3791627101,3102740896,284835224,4246832056,1258075500,768725851,2589189241,3069724005,3532540348,1274779536,3789419226,2764799539,1660621633,3471099624,4011903706,913787905,3497959166,737222580,2514213453,2928710040,3937242737,1804850592,3499020752,2949064160,2386320175,2390070455,2415321851,4061277028,2290661394,2416832540,1336762016,1754252060,3520065937,3014181293,791618072,3188594551,3933548030,2332172193,3852520463,3043980520,413987798,3465142937,3030929376,4245938359,2093235073,3534596313,375366246,2157278981,2479649556,555357303,3870105701,2008414854,3344188149,4221384143,3956125452,2067696032,3594591187,2921233993,2428461,544322398,577241275,1471733935,610547355,4027169054,1432588573,1507829418,2025931657,3646575487,545086370,48609733,2200306550,1653985193,298326376,1316178497,3007786442,2064951626,458293330,2589141269,3591329599,3164325604,727753846,2179363840,146436021,1461446943,4069977195,705550613,3059967265,3887724982,4281599278,3313849956,1404054877,2845806497,146425753,1854211946]),new Uint32Array([1266315497,3048417604,3681880366,3289982499,290971e4,1235738493,2632868024,2414719590,3970600049,1771706367,1449415276,3266420449,422970021,1963543593,2690192192,3826793022,1062508698,1531092325,1804592342,2583117782,2714934279,4024971509,1294809318,4028980673,1289560198,2221992742,1669523910,35572830,157838143,1052438473,1016535060,1802137761,1753167236,1386275462,3080475397,2857371447,1040679964,2145300060,2390574316,1461121720,2956646967,4031777805,4028374788,33600511,2920084762,1018524850,629373528,3691585981,3515945977,2091462646,2486323059,586499841,988145025,935516892,3367335476,2599673255,2839830854,265290510,3972581182,2759138881,3795373465,1005194799,847297441,406762289,1314163512,1332590856,1866599683,4127851711,750260880,613907577,1450815602,3165620655,3734664991,3650291728,3012275730,3704569646,1427272223,778793252,1343938022,2676280711,2052605720,1946737175,3164576444,3914038668,3967478842,3682934266,1661551462,3294938066,4011595847,840292616,3712170807,616741398,312560963,711312465,1351876610,322626781,1910503582,271666773,2175563734,1594956187,70604529,3617834859,1007753275,1495573769,4069517037,2549218298,2663038764,504708206,2263041392,3941167025,2249088522,1514023603,1998579484,1312622330,694541497,2582060303,2151582166,1382467621,776784248,2618340202,3323268794,2497899128,2784771155,503983604,4076293799,907881277,423175695,432175456,1378068232,4145222326,3954048622,3938656102,3820766613,2793130115,2977904593,26017576,3274890735,3194772133,1700274565,1756076034,4006520079,3677328699,720338349,1533947780,354530856,688349552,3973924725,1637815568,332179504,3949051286,53804574,2852348879,3044236432,1282449977,3583942155,3416972820,4006381244,1617046695,2628476075,3002303598,1686838959,431878346,2686675385,1700445008,1080580658,1009431731,832498133,3223435511,2605976345,2271191193,2516031870,1648197032,4164389018,2548247927,300782431,375919233,238389289,3353747414,2531188641,2019080857,1475708069,455242339,2609103871,448939670,3451063019,1395535956,2413381860,1841049896,1491858159,885456874,4264095073,4001119347,1565136089,3898914787,1108368660,540939232,1173283510,2745871338,3681308437,4207628240,3343053890,4016749493,1699691293,1103962373,3625875870,2256883143,3830138730,1031889488,3479347698,1535977030,4236805024,3251091107,2132092099,1774941330,1199868427,1452454533,157007616,2904115357,342012276,595725824,1480756522,206960106,497939518,591360097,863170706,2375253569,3596610801,1814182875,2094937945,3421402208,1082520231,3463918190,2785509508,435703966,3908032597,1641649973,2842273706,3305899714,1510255612,2148256476,2655287854,3276092548,4258621189,236887753,3681803219,274041037,1734335097,3815195456,3317970021,1899903192,1026095262,4050517792,356393447,2410691914,3873677099,3682840055]),new Uint32Array([3913112168,2491498743,4132185628,2489919796,1091903735,1979897079,3170134830,3567386728,3557303409,857797738,1136121015,1342202287,507115054,2535736646,337727348,3213592640,1301675037,2528481711,1895095763,1721773893,3216771564,62756741,2142006736,835421444,2531993523,1442658625,3659876326,2882144922,676362277,1392781812,170690266,3921047035,1759253602,3611846912,1745797284,664899054,1329594018,3901205900,3045908486,2062866102,2865634940,3543621612,3464012697,1080764994,553557557,3656615353,3996768171,991055499,499776247,1265440854,648242737,3940784050,980351604,3713745714,1749149687,3396870395,4211799374,3640570775,1161844396,3125318951,1431517754,545492359,4268468663,3499529547,1437099964,2702547544,3433638243,2581715763,2787789398,1060185593,1593081372,2418618748,4260947970,69676912,2159744348,86519011,2512459080,3838209314,1220612927,3339683548,133810670,1090789135,1078426020,1569222167,845107691,3583754449,4072456591,1091646820,628848692,1613405280,3757631651,526609435,236106946,48312990,2942717905,3402727701,1797494240,859738849,992217954,4005476642,2243076622,3870952857,3732016268,765654824,3490871365,2511836413,1685915746,3888969200,1414112111,2273134842,3281911079,4080962846,172450625,2569994100,980381355,4109958455,2819808352,2716589560,2568741196,3681446669,3329971472,1835478071,660984891,3704678404,4045999559,3422617507,3040415634,1762651403,1719377915,3470491036,2693910283,3642056355,3138596744,1364962596,2073328063,1983633131,926494387,3423689081,2150032023,4096667949,1749200295,3328846651,309677260,2016342300,1779581495,3079819751,111262694,1274766160,443224088,298511866,1025883608,3806446537,1145181785,168956806,3641502830,3584813610,1689216846,3666258015,3200248200,1692713982,2646376535,4042768518,1618508792,1610833997,3523052358,4130873264,2001055236,3610705100,2202168115,4028541809,2961195399,1006657119,2006996926,3186142756,1430667929,3210227297,1314452623,4074634658,4101304120,2273951170,1399257539,3367210612,3027628629,1190975929,2062231137,2333990788,2221543033,2438960610,1181637006,548689776,2362791313,3372408396,3104550113,3145860560,296247880,1970579870,3078560182,3769228297,1714227617,3291629107,3898220290,166772364,1251581989,493813264,448347421,195405023,2709975567,677966185,3703036547,1463355134,2715995803,1338867538,1343315457,2802222074,2684532164,233230375,2599980071,2000651841,3277868038,1638401717,4028070440,3237316320,6314154,819756386,300326615,590932579,1405279636,3267499572,3150704214,2428286686,3959192993,3461946742,1862657033,1266418056,963775037,2089974820,2263052895,1917689273,448879540,3550394620,3981727096,150775221,3627908307,1303187396,508620638,2975983352,2726630617,1817252668,1876281319,1457606340,908771278,3720792119,3617206836,2455994898,1729034894,1080033504]),new Uint32Array([976866871,3556439503,2881648439,1522871579,1555064734,1336096578,3548522304,2579274686,3574697629,3205460757,3593280638,3338716283,3079412587,564236357,2993598910,1781952180,1464380207,3163844217,3332601554,1699332808,1393555694,1183702653,3581086237,1288719814,691649499,2847557200,2895455976,3193889540,2717570544,1781354906,1676643554,2592534050,3230253752,1126444790,2770207658,2633158820,2210423226,2615765581,2414155088,3127139286,673620729,2805611233,1269405062,4015350505,3341807571,4149409754,1057255273,2012875353,2162469141,2276492801,2601117357,993977747,3918593370,2654263191,753973209,36408145,2530585658,25011837,3520020182,2088578344,530523599,2918365339,1524020338,1518925132,3760827505,3759777254,1202760957,3985898139,3906192525,674977740,4174734889,2031300136,2019492241,3983892565,4153806404,3822280332,352677332,2297720250,60907813,90501309,3286998549,1016092578,2535922412,2839152426,457141659,509813237,4120667899,652014361,1966332200,2975202805,55981186,2327461051,676427537,3255491064,2882294119,3433927263,1307055953,942726286,933058658,2468411793,3933900994,4215176142,1361170020,2001714738,2830558078,3274259782,1222529897,1679025792,2729314320,3714953764,1770335741,151462246,3013232138,1682292957,1483529935,471910574,1539241949,458788160,3436315007,1807016891,3718408830,978976581,1043663428,3165965781,1927990952,4200891579,2372276910,3208408903,3533431907,1412390302,2931980059,4132332400,1947078029,3881505623,4168226417,2941484381,1077988104,1320477388,886195818,18198404,3786409e3,2509781533,112762804,3463356488,1866414978,891333506,18488651,661792760,1628790961,3885187036,3141171499,876946877,2693282273,1372485963,791857591,2686433993,3759982718,3167212022,3472953795,2716379847,445679433,3561995674,3504004811,3574258232,54117162,3331405415,2381918588,3769707343,4154350007,1140177722,4074052095,668550556,3214352940,367459370,261225585,2610173221,4209349473,3468074219,3265815641,314222801,3066103646,3808782860,282218597,3406013506,3773591054,379116347,1285071038,846784868,2669647154,3771962079,3550491691,2305946142,453669953,1268987020,3317592352,3279303384,3744833421,2610507566,3859509063,266596637,3847019092,517658769,3462560207,3443424879,370717030,4247526661,2224018117,4143653529,4112773975,2788324899,2477274417,1456262402,2901442914,1517677493,1846949527,2295493580,3734397586,2176403920,1280348187,1908823572,3871786941,846861322,1172426758,3287448474,3383383037,1655181056,3139813346,901632758,1897031941,2986607138,3066810236,3447102507,1393639104,373351379,950779232,625454576,3124240540,4148612726,2007998917,544563296,2244738638,2330496472,2058025392,1291430526,424198748,50039436,29584100,3605783033,2429876329,2791104160,1057563949,3255363231,3075367218,3463963227,1469046755,985887462])];this.P=new Uint32Array([608135816,2242054355,320440878,57701188,2752067618,698298832,137296536,3964562569,1160258022,953160567,3193202383,887688300,3232508343,3380367581,1065670069,3041331479,2450970073,2306472731])};function F(e,t,n){return(e[0][t[n+3]]+e[1][t[n+2]]^e[2][t[n+1]])+e[3][t[n]]}o.prototype.encipher=function(e,t){if(t===undefined){t=new Uint8Array(e.buffer);if(e.byteOffset!==0)t=t.subarray(e.byteOffset)}e[0]^=this.P[0];for(var n=1;n<16;n+=2){e[1]^=F(this.S,t,0)^this.P[n];e[0]^=F(this.S,t,4)^this.P[n+1]}var r=e[0];e[0]=e[1]^this.P[17];e[1]=r};o.prototype.decipher=function(e){var t=new Uint8Array(e.buffer);if(e.byteOffset!==0)t=t.subarray(e.byteOffset);e[0]^=this.P[17];for(var n=16;n>0;n-=2){e[1]^=F(this.S,t,0)^this.P[n];e[0]^=F(this.S,t,4)^this.P[n-1]}var r=e[0];e[0]=e[1]^this.P[0];e[1]=r};function stream2word(e,t){var n,r=0;for(n=0;n<4;n++,i++){if(i>=t)i=0;r=r<<8|e[i]}return r}o.prototype.expand0state=function(e,t){var n=new Uint32Array(2),r,o;var a=new Uint8Array(n.buffer);for(r=0,i=0;r<18;r++){this.P[r]^=stream2word(e,t)}i=0;for(r=0;r<18;r+=2){this.encipher(n,a);this.P[r]=n[0];this.P[r+1]=n[1]}for(r=0;r<4;r++){for(o=0;o<256;o+=2){this.encipher(n,a);this.S[r][o]=n[0];this.S[r][o+1]=n[1]}}};o.prototype.expandstate=function(e,t,n,r){var o=new Uint32Array(2),a,s;for(a=0,i=0;a<18;a++){this.P[a]^=stream2word(n,r)}for(a=0,i=0;a<18;a+=2){o[0]^=stream2word(e,t);o[1]^=stream2word(e,t);this.encipher(o);this.P[a]=o[0];this.P[a+1]=o[1]}for(a=0;a<4;a++){for(s=0;s<256;s+=2){o[0]^=stream2word(e,t);o[1]^=stream2word(e,t);this.encipher(o);this.S[a][s]=o[0];this.S[a][s+1]=o[1]}}i=0};o.prototype.enc=function(e,t){for(var n=0;n<t;n++){this.encipher(e.subarray(n*2))}};o.prototype.dec=function(e,t){for(var n=0;n<t;n++){this.decipher(e.subarray(n*2))}};var a=8,s=32;function bcrypt_hash(e,t,n){var r=new o,i=new Uint32Array(a),s,c=new Uint8Array([79,120,121,99,104,114,111,109,97,116,105,99,66,108,111,119,102,105,115,104,83,119,97,116,68,121,110,97,109,105,116,101]);r.expandstate(t,64,e,64);for(s=0;s<64;s++){r.expand0state(t,64);r.expand0state(e,64)}for(s=0;s<a;s++)i[s]=stream2word(c,c.byteLength);for(s=0;s<64;s++)r.enc(i,i.byteLength/8);for(s=0;s<a;s++){n[4*s+3]=i[s]>>>24;n[4*s+2]=i[s]>>>16;n[4*s+1]=i[s]>>>8;n[4*s+0]=i[s]}}function bcrypt_pbkdf(e,t,n,i,o,a,c){var u=new Uint8Array(64),l=new Uint8Array(64),f=new Uint8Array(s),p=new Uint8Array(s),d=new Uint8Array(i+4),h,m,v,g,y,b,w=a;if(c<1)return-1;if(t===0||i===0||a===0||a>f.byteLength*f.byteLength||i>1<<20)return-1;g=Math.floor((a+f.byteLength-1)/f.byteLength);v=Math.floor((a+g-1)/g);for(h=0;h<i;h++)d[h]=n[h];r(u,e,t);for(b=1;a>0;b++){d[i+0]=b>>>24;d[i+1]=b>>>16;d[i+2]=b>>>8;d[i+3]=b;r(l,d,i+4);bcrypt_hash(u,l,p);for(h=f.byteLength;h--;)f[h]=p[h];for(h=1;h<c;h++){r(l,p,p.byteLength);bcrypt_hash(u,l,p);for(m=0;m<f.byteLength;m++)f[m]^=p[m]}v=Math.min(v,a);for(h=0;h<v;h++){y=h*g+(b-1);if(y>=w)break;o[y]=f[h]}a-=h}return 0}e.exports={BLOCKS:a,HASHSIZE:s,hash:bcrypt_hash,pbkdf:bcrypt_pbkdf}},854:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({path:"payouts",includeBasic:["create","list","retrieve","update","setMetadata","getMetadata"],cancel:i({method:"POST",path:"{payoutId}/cancel",urlParams:["payoutId"]}),listTransactions:i({method:"GET",path:"{payoutId}/transactions",urlParams:["payoutId"]})})},862:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});const r=n(774);function parseListen(e,t=3e3){let n=Number(e);if(!isNaN(n)){return[n]}const i=r.parse(e);switch(i.protocol){case"pipe:":{const t=e.replace(/^pipe:/,"");if(t.slice(0,4)!=="\\\\.\\"){throw new Error(`Invalid Windows named pipe endpoint: ${e}`)}return[t]}case"unix:":if(!i.pathname){throw new Error(`Invalid UNIX domain socket endpoint: ${e}`)}return[i.pathname];case"tcp:":i.port=i.port||String(t);return[parseInt(i.port,10),i.hostname];default:if(!i.slashes){if(i.protocol===null){return[t,i.pathname]}n=Number(i.hostname);if(i.protocol&&!isNaN(n)){return[n,i.protocol.substring(0,i.protocol.length-1)]}}throw new Error(`Unknown \`--listen\` scheme (protocol): ${i.protocol}`)}}t.default=parseListen},885:function(e,t,n){"use strict";const r=n(192);const i=n(136);const o=n(4457);const a=n(7044);const s=n(6695);const c=n(662);const u=n(5897);const l=n(5594);const f=16*1024*1024;const p=Symbol("process");const d=Symbol("file");const h=Symbol("directory");const m=Symbol("symlink");const v=Symbol("hardlink");const g=Symbol("header");const y=Symbol("read");const b=Symbol("lstat");const w=Symbol("onlstat");const x=Symbol("onread");const k=Symbol("onreadlink");const j=Symbol("openfile");const S=Symbol("onopenfile");const E=Symbol("close");const _=Symbol("mode");const C=n(2247);const A=n(9734);const O=n(1419);const F=C(class WriteEntry extends i{constructor(e,t){t=t||{};super(t);if(typeof e!=="string")throw new TypeError("path is required");this.path=e;this.portable=!!t.portable;this.myuid=process.getuid&&process.getuid();this.myuser=process.env.USER||"";this.maxReadSize=t.maxReadSize||f;this.linkCache=t.linkCache||new Map;this.statCache=t.statCache||new Map;this.preservePaths=!!t.preservePaths;this.cwd=t.cwd||process.cwd();this.strict=!!t.strict;this.noPax=!!t.noPax;this.noMtime=!!t.noMtime;this.mtime=t.mtime||null;if(typeof t.onwarn==="function")this.on("warn",t.onwarn);if(!this.preservePaths&&u.win32.isAbsolute(e)){const t=u.win32.parse(e);this.warn("stripping "+t.root+" from absolute path",e);this.path=e.substr(t.root.length)}this.win32=!!t.win32||process.platform==="win32";if(this.win32){this.path=A.decode(this.path.replace(/\\/g,"/"));e=e.replace(/\\/g,"/")}this.absolute=t.absolute||u.resolve(this.cwd,e);if(this.path==="")this.path="./";if(this.statCache.has(this.absolute))this[w](this.statCache.get(this.absolute));else this[b]()}[b](){c.lstat(this.absolute,(e,t)=>{if(e)return this.emit("error",e);this[w](t)})}[w](e){this.statCache.set(this.absolute,e);this.stat=e;if(!e.isFile())e.size=0;this.type=T(e);this.emit("stat",e);this[p]()}[p](){switch(this.type){case"File":return this[d]();case"Directory":return this[h]();case"SymbolicLink":return this[m]();default:return this.end()}}[_](e){return O(e,this.type==="Directory")}[g](){if(this.type==="Directory"&&this.portable)this.noMtime=true;this.header=new a({path:this.path,linkpath:this.linkpath,mode:this[_](this.stat.mode),uid:this.portable?null:this.stat.uid,gid:this.portable?null:this.stat.gid,size:this.stat.size,mtime:this.noMtime?null:this.mtime||this.stat.mtime,type:this.type,uname:this.portable?null:this.stat.uid===this.myuid?this.myuser:"",atime:this.portable?null:this.stat.atime,ctime:this.portable?null:this.stat.ctime});if(this.header.encode()&&!this.noPax)this.write(new o({atime:this.portable?null:this.header.atime,ctime:this.portable?null:this.header.ctime,gid:this.portable?null:this.header.gid,mtime:this.noMtime?null:this.mtime||this.header.mtime,path:this.path,linkpath:this.linkpath,size:this.header.size,uid:this.portable?null:this.header.uid,uname:this.portable?null:this.header.uname,dev:this.portable?null:this.stat.dev,ino:this.portable?null:this.stat.ino,nlink:this.portable?null:this.stat.nlink}).encode());this.write(this.header.block)}[h](){if(this.path.substr(-1)!=="/")this.path+="/";this.stat.size=0;this[g]();this.end()}[m](){c.readlink(this.absolute,(e,t)=>{if(e)return this.emit("error",e);this[k](t)})}[k](e){this.linkpath=e;this[g]();this.end()}[v](e){this.type="Link";this.linkpath=u.relative(this.cwd,e);this.stat.size=0;this[g]();this.end()}[d](){if(this.stat.nlink>1){const e=this.stat.dev+":"+this.stat.ino;if(this.linkCache.has(e)){const t=this.linkCache.get(e);if(t.indexOf(this.cwd)===0)return this[v](t)}this.linkCache.set(e,this.absolute)}this[g]();if(this.stat.size===0)return this.end();this[j]()}[j](){c.open(this.absolute,"r",(e,t)=>{if(e)return this.emit("error",e);this[S](t)})}[S](e){const t=512*Math.ceil(this.stat.size/512);const n=Math.min(t,this.maxReadSize);const i=r.allocUnsafe(n);this[y](e,i,0,i.length,0,this.stat.size,t)}[y](e,t,n,r,i,o,a){c.read(e,t,n,r,i,(s,c)=>{if(s)return this[E](e,e=>this.emit("error",s));this[x](e,t,n,r,i,o,a,c)})}[E](e,t){c.close(e,t)}[x](e,t,n,i,o,a,s,c){if(c<=0&&a>0){const t=new Error("encountered unexpected EOF");t.path=this.absolute;t.syscall="read";t.code="EOF";this[E](e);return this.emit("error",t)}if(c>a){const t=new Error("did not encounter expected EOF");t.path=this.absolute;t.syscall="read";t.code="EOF";this[E](e);return this.emit("error",t)}if(c===a){for(let e=c;e<i&&c<s;e++){t[e+n]=0;c++;a++}}const u=n===0&&c===t.length?t:t.slice(n,n+c);a-=c;s-=c;o+=c;n+=c;this.write(u);if(!a){if(s)this.write(r.alloc(s));this.end();this[E](e,e=>e);return}if(n>=i){t=r.allocUnsafe(i);n=0}i=t.length-n;this[y](e,t,n,i,o,a,s)}});class WriteEntrySync extends F{constructor(e,t){super(e,t)}[b](){this[w](c.lstatSync(this.absolute))}[m](){this[k](c.readlinkSync(this.absolute))}[j](){this[S](c.openSync(this.absolute,"r"))}[y](e,t,n,r,i,o,a){let s=true;try{const u=c.readSync(e,t,n,r,i);this[x](e,t,n,r,i,o,a,u);s=false}finally{if(s)try{this[E](e)}catch(e){}}}[E](e){c.closeSync(e)}}const D=C(class WriteEntryTar extends i{constructor(e,t){t=t||{};super(t);this.preservePaths=!!t.preservePaths;this.portable=!!t.portable;this.strict=!!t.strict;this.noPax=!!t.noPax;this.noMtime=!!t.noMtime;this.readEntry=e;this.type=e.type;if(this.type==="Directory"&&this.portable)this.noMtime=true;this.path=e.path;this.mode=this[_](e.mode);this.uid=this.portable?null:e.uid;this.gid=this.portable?null:e.gid;this.uname=this.portable?null:e.uname;this.gname=this.portable?null:e.gname;this.size=e.size;this.mtime=this.noMtime?null:t.mtime||e.mtime;this.atime=this.portable?null:e.atime;this.ctime=this.portable?null:e.ctime;this.linkpath=e.linkpath;if(typeof t.onwarn==="function")this.on("warn",t.onwarn);if(u.isAbsolute(this.path)&&!this.preservePaths){const e=u.parse(this.path);this.warn("stripping "+e.root+" from absolute path",this.path);this.path=this.path.substr(e.root.length)}this.remain=e.size;this.blockRemain=e.startBlockSize;this.header=new a({path:this.path,linkpath:this.linkpath,mode:this.mode,uid:this.portable?null:this.uid,gid:this.portable?null:this.gid,size:this.size,mtime:this.noMtime?null:this.mtime,type:this.type,uname:this.portable?null:this.uname,atime:this.portable?null:this.atime,ctime:this.portable?null:this.ctime});if(this.header.encode()&&!this.noPax)super.write(new o({atime:this.portable?null:this.atime,ctime:this.portable?null:this.ctime,gid:this.portable?null:this.gid,mtime:this.noMtime?null:this.mtime,path:this.path,linkpath:this.linkpath,size:this.size,uid:this.portable?null:this.uid,uname:this.portable?null:this.uname,dev:this.portable?null:this.readEntry.dev,ino:this.portable?null:this.readEntry.ino,nlink:this.portable?null:this.readEntry.nlink}).encode());super.write(this.header.block);e.pipe(this)}[_](e){return O(e,this.type==="Directory")}write(e){const t=e.length;if(t>this.blockRemain)throw new Error("writing more to entry than is appropriate");this.blockRemain-=t;return super.write(e)}end(){if(this.blockRemain)this.write(r.alloc(this.blockRemain));return super.end()}});F.Sync=WriteEntrySync;F.Tar=D;const T=e=>e.isFile()?"File":e.isDirectory()?"Directory":e.isSymbolicLink()?"SymbolicLink":"Unsupported";e.exports=F},899:function(e,t,n){"use strict";const r=n(2617);function symlinkType(e,t,n){n=typeof t==="function"?t:n;t=typeof t==="function"?false:t;if(t)return n(null,t);r.lstat(e,(e,r)=>{if(e)return n(null,"file");t=r&&r.isDirectory()?"dir":"file";n(null,t)})}function symlinkTypeSync(e,t){let n;if(t)return t;try{n=r.lstatSync(e)}catch(e){return"file"}return n&&n.isDirectory()?"dir":"file"}e.exports={symlinkType:symlinkType,symlinkTypeSync:symlinkTypeSync}},900:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(8715);function getProjectByNameOrId(e,t){return r(this,void 0,void 0,function*(){try{const n=yield e.fetch(`/projects/${encodeURIComponent(t)}`);return n}catch(e){if(e.status===404){return new i.ProjectNotFound(t)}throw e}})}t.default=getProjectByNameOrId},903:function(e,t,n){var r=n(4841);var i=n(9220);var o=n(2910);var a=n(7534);var s=20;var c=258;var u=0;var l=1;var f=2;var p=6;var d=50;var h="314159265359";var m="177245385090";var v=function(e,t){var n=e[t],r;for(r=t;r>0;r--){e[r]=e[r-1]}e[0]=n;return n};var g={OK:0,LAST_BLOCK:-1,NOT_BZIP_DATA:-2,UNEXPECTED_INPUT_EOF:-3,UNEXPECTED_OUTPUT_EOF:-4,DATA_ERROR:-5,OUT_OF_MEMORY:-6,OBSOLETE_INPUT:-7,END_OF_BLOCK:-8};var y={};y[g.LAST_BLOCK]="Bad file checksum";y[g.NOT_BZIP_DATA]="Not bzip data";y[g.UNEXPECTED_INPUT_EOF]="Unexpected input EOF";y[g.UNEXPECTED_OUTPUT_EOF]="Unexpected output EOF";y[g.DATA_ERROR]="Data error";y[g.OUT_OF_MEMORY]="Out of memory";y[g.OBSOLETE_INPUT]="Obsolete (pre 0.9.5) bzip format not supported.";var b=function(e,t){var n=y[e]||"unknown error";if(t){n+=": "+t}var r=new TypeError(n);r.errorCode=e;throw r};var w=function(e,t){this.writePos=this.writeCurrent=this.writeCount=0;this._start_bunzip(e,t)};w.prototype._init_block=function(){var e=this._get_next_block();if(!e){this.writeCount=-1;return false}this.blockCRC=new o;return true};w.prototype._start_bunzip=function(e,t){var n=new Buffer(4);if(e.read(n,0,4)!==4||String.fromCharCode(n[0],n[1],n[2])!=="BZh")b(g.NOT_BZIP_DATA,"bad magic");var i=n[3]-48;if(i<1||i>9)b(g.NOT_BZIP_DATA,"level out of range");this.reader=new r(e);this.dbufSize=1e5*i;this.nextoutput=0;this.outputStream=t;this.streamCRC=0};w.prototype._get_next_block=function(){var e,t,n;var r=this.reader;var i=r.pi();if(i===m){return false}if(i!==h)b(g.NOT_BZIP_DATA);this.targetBlockCRC=r.read(32)>>>0;this.streamCRC=(this.targetBlockCRC^(this.streamCRC<<1|this.streamCRC>>>31))>>>0;if(r.read(1))b(g.OBSOLETE_INPUT);var o=r.read(24);if(o>this.dbufSize)b(g.DATA_ERROR,"initial position out of bounds");var a=r.read(16);var y=new Buffer(256),w=0;for(e=0;e<16;e++){if(a&1<<15-e){var x=e*16;n=r.read(16);for(t=0;t<16;t++)if(n&1<<15-t)y[w++]=x+t}}var k=r.read(3);if(k<f||k>p)b(g.DATA_ERROR);var j=r.read(15);if(j===0)b(g.DATA_ERROR);var S=new Buffer(256);for(e=0;e<k;e++)S[e]=e;var E=new Buffer(j);for(e=0;e<j;e++){for(t=0;r.read(1);t++)if(t>=k)b(g.DATA_ERROR);E[e]=v(S,t)}var _=w+2;var C=[],A;for(t=0;t<k;t++){var O=new Buffer(_),F=new Uint16Array(s+1);a=r.read(5);for(e=0;e<_;e++){for(;;){if(a<1||a>s)b(g.DATA_ERROR);if(!r.read(1))break;if(!r.read(1))a++;else a--}O[e]=a}var D,T;D=T=O[0];for(e=1;e<_;e++){if(O[e]>T)T=O[e];else if(O[e]<D)D=O[e]}A={};C.push(A);A.permute=new Uint16Array(c);A.limit=new Uint32Array(s+2);A.base=new Uint32Array(s+1);A.minLen=D;A.maxLen=T;var I=0;for(e=D;e<=T;e++){F[e]=A.limit[e]=0;for(a=0;a<_;a++)if(O[a]===e)A.permute[I++]=a}for(e=0;e<_;e++)F[O[e]]++;I=a=0;for(e=D;e<T;e++){I+=F[e];A.limit[e]=I-1;I<<=1;a+=F[e];A.base[e+1]=I-a}A.limit[T+1]=Number.MAX_VALUE;A.limit[T]=I+F[T]-1;A.base[D]=0}var R=new Uint32Array(256);for(e=0;e<256;e++)S[e]=e;var P=0,B=0,N=0,z;var L=this.dbuf=new Uint32Array(this.dbufSize);_=0;for(;;){if(!_--){_=d-1;if(N>=j){b(g.DATA_ERROR)}A=C[E[N++]]}e=A.minLen;t=r.read(e);for(;;e++){if(e>A.maxLen){b(g.DATA_ERROR)}if(t<=A.limit[e])break;t=t<<1|r.read(1)}t-=A.base[e];if(t<0||t>=c){b(g.DATA_ERROR)}var M=A.permute[t];if(M===u||M===l){if(!P){P=1;a=0}if(M===u)a+=P;else a+=2*P;P<<=1;continue}if(P){P=0;if(B+a>this.dbufSize){b(g.DATA_ERROR)}z=y[S[0]];R[z]+=a;while(a--)L[B++]=z}if(M>w)break;if(B>=this.dbufSize){b(g.DATA_ERROR)}e=M-1;z=v(S,e);z=y[z];R[z]++;L[B++]=z}if(o<0||o>=B){b(g.DATA_ERROR)}t=0;for(e=0;e<256;e++){n=t+R[e];R[e]=t;t=n}for(e=0;e<B;e++){z=L[e]&255;L[R[z]]|=e<<8;R[z]++}var U=0,q=0,H=0;if(B){U=L[o];q=U&255;U>>=8;H=-1}this.writePos=U;this.writeCurrent=q;this.writeCount=B;this.writeRun=H;return true};w.prototype._read_bunzip=function(e,t){var n,r,i;if(this.writeCount<0){return 0}var o=0;var a=this.dbuf,s=this.writePos,c=this.writeCurrent;var u=this.writeCount,l=this.outputsize;var f=this.writeRun;while(u){u--;r=c;s=a[s];c=s&255;s>>=8;if(f++===3){n=c;i=r;c=-1}else{n=1;i=c}this.blockCRC.updateCRCRun(i,n);while(n--){this.outputStream.writeByte(i);this.nextoutput++}if(c!=r)f=0}this.writeCount=u;if(this.blockCRC.getCRC()!==this.targetBlockCRC){b(g.DATA_ERROR,"Bad block CRC "+"(got "+this.blockCRC.getCRC().toString(16)+" expected "+this.targetBlockCRC.toString(16)+")")}return this.nextoutput};var x=function(e){if("readByte"in e){return e}var t=new i;t.pos=0;t.readByte=function(){return e[this.pos++]};t.seek=function(e){this.pos=e};t.eof=function(){return this.pos>=e.length};return t};var k=function(e){var t=new i;var n=true;if(e){if(typeof e==="number"){t.buffer=new Buffer(e);n=false}else if("writeByte"in e){return e}else{t.buffer=e;n=false}}else{t.buffer=new Buffer(16384)}t.pos=0;t.writeByte=function(e){if(n&&this.pos>=this.buffer.length){var t=new Buffer(this.buffer.length*2);this.buffer.copy(t);this.buffer=t}this.buffer[this.pos++]=e};t.getBuffer=function(){if(this.pos!==this.buffer.length){if(!n)throw new TypeError("outputsize does not match decoded input");var e=new Buffer(this.pos);this.buffer.copy(e,0,0,this.pos);this.buffer=e}return this.buffer};t._coerced=true;return t};w.Err=g;w.decode=function(e,t,n){var r=x(e);var i=k(t);var o=new w(r,i);while(true){if("eof"in r&&r.eof())break;if(o._init_block()){o._read_bunzip()}else{var a=o.reader.read(32)>>>0;if(a!==o.streamCRC){b(g.DATA_ERROR,"Bad stream CRC "+"(got "+o.streamCRC.toString(16)+" expected "+a.toString(16)+")")}if(n&&"eof"in r&&!r.eof()){o._start_bunzip(r,i)}else break}}if("getBuffer"in i)return i.getBuffer()};w.decodeBlock=function(e,t,n){var r=x(e);var i=k(n);var a=new w(r,i);a.reader.seek(t);var s=a._get_next_block();if(s){a.blockCRC=new o;a.writeCopies=0;a._read_bunzip()}if("getBuffer"in i)return i.getBuffer()};w.table=function(e,t,n){var r=new i;r.delegate=x(e);r.pos=0;r.readByte=function(){this.pos++;return this.delegate.readByte()};if(r.delegate.eof){r.eof=r.delegate.eof.bind(r.delegate)}var o=new i;o.pos=0;o.writeByte=function(){this.pos++};var a=new w(r,o);var s=a.dbufSize;while(true){if("eof"in r&&r.eof())break;var c=r.pos*8+a.reader.bitOffset;if(a.reader.hasByte){c-=8}if(a._init_block()){var u=o.pos;a._read_bunzip();t(c,o.pos-u)}else{var l=a.reader.read(32);if(n&&"eof"in r&&!r.eof()){a._start_bunzip(r,o);console.assert(a.dbufSize===s,"shouldn't change block size within multistream file")}else break}}};w.Stream=i;w.version=a.version;w.license=a.license;e.exports=w},914:function(e,t){"use strict";var n=this&&this.__await||function(e){return this instanceof n?(this.v=e,this):new n(e)};var r=this&&this.__asyncGenerator||function(e,t,r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var i=r.apply(e,t||[]),o,a=[];return o={},verb("next"),verb("throw"),verb("return"),o[Symbol.asyncIterator]=function(){return this},o;function verb(e){if(i[e])o[e]=function(t){return new Promise(function(n,r){a.push([e,t,n,r])>1||resume(e,t)})}}function resume(e,t){try{step(i[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof n?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume("next",e)}function reject(e){resume("throw",e)}function settle(e,t){if(e(t),a.shift(),a.length)resume(a[0][0],a[0][1])}};Object.defineProperty(t,"__esModule",{value:true});function raceAsyncGenerators(...e){return r(this,arguments,function*raceAsyncGenerators_1(){let t=e.map(e=>e.next());while(t.length===e.length){yield yield n(new Promise(n=>{let r=false;t.forEach((i,o)=>{i.then(({value:i,done:a})=>{if(!r){r=true;n(i);if(!a){t[o]=e[o].next()}else{t=[...t.slice(0,o),...t.slice(o+1)]}}})})}))}})}t.default=raceAsyncGenerators},937:function(e,t,n){"use strict";var r=this&&this.__await||function(e){return this instanceof r?(this.v=e,this):new r(e)};var i=this&&this.__asyncGenerator||function(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var i=n.apply(e,t||[]),o,a=[];return o={},verb("next"),verb("throw"),verb("return"),o[Symbol.asyncIterator]=function(){return this},o;function verb(e){if(i[e])o[e]=function(t){return new Promise(function(n,r){a.push([e,t,n,r])>1||resume(e,t)})}}function resume(e,t){try{step(i[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof r?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume("next",e)}function reject(e){resume("throw",e)}function settle(e,t){if(e(t),a.shift(),a.length)resume(a[0][0],a[0][1])}};var o=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof __values==="function"?__values(e):e[Symbol.iterator](),n={},verb("next"),verb("throw"),verb("return"),n[Symbol.asyncIterator]=function(){return this},n);function verb(t){n[t]=e[t]&&function(n){return new Promise(function(r,i){n=e[t](n),settle(r,i,n.done,n.value)})}}function settle(e,t,n,r){Promise.resolve(r).then(function(t){e({value:t,done:n})},t)}};var a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const s=n(8841);const c=a(n(7891));const u=n(432);function createDeployment(e,t,n,o){return i(this,arguments,function*createDeployment_1(){const i=s.prepareFiles(t,n);let a=e.version===2?s.API_DEPLOYMENTS:s.API_DEPLOYMENTS_LEGACY;o("Sending deployment creation API request");try{const t=yield r(s.fetch(`${a}${u.generateQueryString(n)}`,n.token,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${n.token}`},body:JSON.stringify(Object.assign({},e,{files:i}))}));const c=yield r(t.json());o("Deployment response:",JSON.stringify(c));if(!t.ok||c.error){o("Error: Deployment request status is",t.status);return yield r(yield yield r({type:"error",payload:c.error?Object.assign({},c.error,{status:t.status}):Object.assign({},c,{status:t.status})}))}for(const[e,n]of t.headers.entries()){if(e.startsWith("x-now-warning-")){o("Deployment created with a warning:",n);yield yield r({type:"warning",payload:n})}if(e.startsWith("x-now-notice-")){o("Deployment created with a notice:",n);yield yield r({type:"notice",payload:n})}}yield yield r({type:"created",payload:c})}catch(e){return yield r(yield yield r({type:"error",payload:e}))}})}const l=(e,t,n,r)=>{if(t&&typeof e==="string"){r("Provided path is a directory. Using last segment as default name");const t=e.split("/");return t[t.length-1]}else{r("Provided path is not a directory. Using last segment of the first file as default name");const e=Array.from(n.values())[0].names[0];const t=e.split("/");return t[t.length-1]}};function deploy(e,t){return i(this,arguments,function*deploy_1(){var n,i,a,u;const f=s.createDebug(t.debug);const p=t.nowConfig||{};delete p.github;delete p.scope;const d=t.metadata||{};const h=Object.assign({},p,d);if(!h.version&&!h.name){h.version=2;h.name=t.totalFiles===1?"file":l(t.path,t.isDirectory,e,f);if(h.name==="file"){f('Setting deployment name to "file" for single-file deployment')}}if(t.totalFiles===1&&!h.builds&&!h.routes){f(`Assigning '/' route for single file deployment`);const t=Array.from(e.values())[0].names[0];const n=t.split("/");h.routes=[{src:"/",dest:`/${n[n.length-1]}`}]}if(!h.name){h.name=t.defaultName||l(t.path,t.isDirectory,e,f);f("No name provided. Defaulting to",h.name)}if(h.version===1&&!h.deploymentType){f(`Setting 'type' for 1.0 deployment to '${p.type}'`);h.deploymentType=p.type}if(h.version===1){f(`Writing 'config' values for 1.0 deployment`);const e=Object.assign({},p);delete e.version;h.config=Object.assign({},e,h.config)}let m;try{f("Creating deployment");try{for(var v=o(createDeployment(h,e,t,f)),g;g=yield r(v.next()),!g.done;){const e=g.value;if(e.type==="created"){f("Deployment created");m=e.payload}yield yield r(e)}}catch(e){n={error:e}}finally{try{if(g&&!g.done&&(i=v.return))yield r(i.call(v))}finally{if(n)throw n.error}}}catch(e){f("An unexpected error occurred when creating the deployment");return yield r(yield yield r({type:"error",payload:e}))}if(m){if(m.readyState==="READY"){f("Deployment is READY. Not performing additional polling");return yield r(yield yield r({type:"ready",payload:m}))}try{f("Waiting for deployment to be ready...");try{for(var y=o(c.default(m,t.token,h.version,t.teamId,f)),b;b=yield r(y.next()),!b.done;){const e=b.value;yield yield r(e)}}catch(e){a={error:e}}finally{try{if(b&&!b.done&&(u=y.return))yield r(u.call(y))}finally{if(a)throw a.error}}}catch(e){f("An unexpected error occurred while waiting for deployment to be ready");return yield r(yield yield r({type:"error",payload:e}))}}})}t.default=deploy},938:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(1694));function error_502(e){let t='<header> <div class="header-item first';if(e.app_error){t+=" active"}t+='"> <svg class="header-item-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> ';if(e.app_error){t+=' <circle cx="8" cy="8" r="8" fill="#FF0080" /> '}else{t+=' <circle cx="8" cy="8" r="7.5" stroke="#CCCCCC" /> '}t+=' </svg> <div class="header-item-content"> <h1>Application Error</h1> <p>The error occurred in the hosted application</p> </div> </div> <div class="header-item';if(!e.app_error){t+=" active"}t+='"> <svg class="header-item-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> ';if(!e.app_error){t+=' <circle cx="8" cy="8" r="8" fill="#FF0080" /> '}else{t+=' <circle cx="8" cy="8" r="7.5" stroke="#CCCCCC" /> '}t+=' </svg> <div class="header-item-content"> <h1>Platform Error</h1> <p>The error occurred in the infrastructure layer</p> </div> </div></header><main> <p> <h1 class="error-title">'+i.default(e.title)+"</h1> ";if(e.subtitle){t+=" <p>"+i.default(e.subtitle)+"</p> "}t+=' </p> <p class="devinfo-container"> <span class="error-code"><strong>'+e.http_status_code+"</strong>: "+i.default(e.http_status_description)+"</span> ";if(e.error_code){t+=' <span class="devinfo-line">Code: <code>'+i.default(e.error_code)+"</code></span> "}t+=' <span class="devinfo-line">ID: <code>'+i.default(e.now_id)+"</code> </p> ";if(e.app_error){t+=' <p> <ul> <li> If you are a visitor; contact the website owner or try again later. </li> <li> If you are the owner; <a href="/_logs" target="_blank">check the logs</a> for the application error. </li> </ul> <a target="_blank" href="https://zeit.co/docs/router-status/'+e.http_status_code+'" class="docs-link" rel="noopener noreferrer">Developer Documentation →</a> </p> '}else{t+=" <p> <ul> <li> If you are a visitor, please try again later. </li> <li> If you are the owner, no action is needed. Our engineers have been notified. </li> </ul> </p> "}t+="</main>";return t}t.default=error_502},946:function(e){e.exports=["AGPL-1.0","AGPL-3.0","GFDL-1.1","GFDL-1.2","GFDL-1.3","GPL-1.0","GPL-2.0","GPL-2.0-with-GCC-exception","GPL-2.0-with-autoconf-exception","GPL-2.0-with-bison-exception","GPL-2.0-with-classpath-exception","GPL-2.0-with-font-exception","GPL-3.0","GPL-3.0-with-GCC-exception","GPL-3.0-with-autoconf-exception","LGPL-2.0","LGPL-2.1","LGPL-3.0","Nunit","StandardML-NJ","eCos-2.0","wxWindows"]},959:function(e){(function(t){"use strict";var n=function(e,t,n){if(!Array.isArray(e))throw new TypeError("each() expects array as first argument");if(typeof t!=="function")throw new TypeError("each() expects function as second argument");if(typeof n!=="function")n=Function.prototype;if(e.length===0)return n(undefined,e);var r=new Array(e.length);var i=0;var o=false;e.forEach(function(a,s){t(a,function(t,a){if(o)return;if(t){o=true;return n(t)}r[s]=a;i+=1;if(i===e.length)return n(undefined,r)})})};if(typeof define!=="undefined"&&define.amd){define([],function(){return n})}else if(true&&e.exports){e.exports=n}else{t.asyncEach=n}})(this)},962:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(2984);const a=n(772);const s=i(n(5125));const c=n(5897);const u=i(n(1973));const l=n(2473);const f="1.17.3";const p="77f28b2793ca7d0ab5bd5da072afc423f7fdf733";const d=`https://github.com/yarnpkg/yarn/releases/download/v${f}/yarn-${f}.js`;function plusxSync(e){const t=a.statSync(e);const n=t.mode|64|8|1;if(t.mode===n){return}const r=n.toString(8).slice(-3);a.chmodSync(e,r)}function getSha1(e){return new Promise((t,n)=>{const r=o.createHash("sha1");const i=a.createReadStream(e);i.on("error",e=>{if(e.code==="ENOENT"){t(null)}else{n(e)}});i.on("data",e=>r.update(e));i.on("end",()=>t(r.digest("hex")))})}function installYarn(e){return r(this,void 0,void 0,function*(){const t=yield l.builderDirPromise;const n=c.join(t,"yarn");const r=yield getSha1(n);if(r===p){e.debug("The yarn executable is already cached, not re-downloading");return t}e.debug(`Creating directory ${t}`);yield a.mkdirp(t);e.debug(`Finished creating ${t}`);e.debug(`Downloading ${d}`);const i=yield u.default(d,{compress:false,redirect:"follow"});if(i.status!==200){throw new Error(`Received invalid response: ${yield i.text()}`)}const o=a.createWriteStream(n);yield s.default(i.body,o);e.debug(`Finished downloading yarn ${n}`);e.debug(`Making the yarn binary executable`);plusxSync(n);e.debug(`Finished making the yarn binary executable`);if(process.platform==="win32"){yield a.writeFile(`${n}.cmd`,["@echo off","@SETLOCAL","@SET PATHEXT=%PATHEXT:;.JS;=;%",'node "%~dp0\\yarn" %*'].join("\r\n"))}return t})}function getYarnPath(e){return r(this,void 0,void 0,function*(){return installYarn(e)})}t.getYarnPath=getYarnPath},966:function(e){e.exports=require("worker_threads")},971:function(e,t,n){var r=n(8901);var i=n(649);var o=n(9544);var a=n(1471);var s=n(6268);var c=n(7063);var u=n(6828);e.exports=Prompt;function Prompt(){a.apply(this,arguments);if(!this.opt.choices){this.throwParamError("choices")}this.opt.validChoices=this.opt.choices.filter(s.exclude);this.selected=0;this.rawDefault=0;r.extend(this.opt,{validate:function(e){return e!=null}});var e=this.opt.default;if(r.isNumber(e)&&e>=0&&e<this.opt.choices.realLength){this.selected=this.rawDefault=e}this.opt.default=null;this.paginator=new u}i.inherits(Prompt,a);Prompt.prototype._run=function(e){this.done=e;var t=c(this.rl);var n=t.line.map(this.getCurrentValue.bind(this));var r=this.handleSubmitEvents(n);r.success.forEach(this.onEnd.bind(this));r.error.forEach(this.onError.bind(this));t.keypress.takeUntil(r.success).forEach(this.onKeypress.bind(this));this.render();return this};Prompt.prototype.render=function(e){var t=this.getQuestion();var n="";if(this.status==="answered"){t+=o.cyan(this.answer)}else{var r=renderChoices(this.opt.choices,this.selected);t+=this.paginator.paginate(r,this.selected,this.opt.pageSize);t+="\n Answer: "}t+=this.rl.line;if(e){n="\n"+o.red(">> ")+e}this.screen.render(t,n)};Prompt.prototype.getCurrentValue=function(e){if(e==null||e===""){e=this.rawDefault}else{e-=1}var t=this.opt.choices.getChoice(e);return t?t.value:null};Prompt.prototype.onEnd=function(e){this.status="answered";this.answer=e.value;this.render();this.screen.done();this.done(e.value)};Prompt.prototype.onError=function(){this.render("Please enter a valid index")};Prompt.prototype.onKeypress=function(){var e=this.rl.line.length?Number(this.rl.line)-1:0;if(this.opt.choices.getChoice(e)){this.selected=e}else{this.selected=undefined}this.render()};function renderChoices(e,t){var n="";var r=0;e.forEach(function(e,i){n+="\n ";if(e.type==="separator"){r++;n+=" "+e;return}var a=i-r;var s=a+1+") "+e.name;if(a===t){s=o.cyan(s)}n+=s});return n}},984:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5897);const o=n(2617);const a=n(5627);const s=n(7346).pathExists;function createLink(e,t,n){function makeLink(e,t){o.link(e,t,e=>{if(e)return n(e);n(null)})}s(t,(r,c)=>{if(r)return n(r);if(c)return n(null);o.lstat(e,r=>{if(r){r.message=r.message.replace("lstat","ensureLink");return n(r)}const o=i.dirname(t);s(o,(r,i)=>{if(r)return n(r);if(i)return makeLink(e,t);a.mkdirs(o,r=>{if(r)return n(r);makeLink(e,t)})})})})}function createLinkSync(e,t){const n=o.existsSync(t);if(n)return undefined;try{o.lstatSync(e)}catch(e){e.message=e.message.replace("lstat","ensureLink");throw e}const r=i.dirname(t);const s=o.existsSync(r);if(s)return o.linkSync(e,t);a.mkdirsSync(r);return o.linkSync(e,t)}e.exports={createLink:r(createLink),createLinkSync:createLinkSync}},990:function(e,t){"use strict";t.parse=parse;t.serialize=serialize;var n=decodeURIComponent;var r=encodeURIComponent;var i=/; */;var o=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function parse(e,t){if(typeof e!=="string"){throw new TypeError("argument str must be a string")}var r={};var o=t||{};var a=e.split(i);var s=o.decode||n;for(var c=0;c<a.length;c++){var u=a[c];var l=u.indexOf("=");if(l<0){continue}var f=u.substr(0,l).trim();var p=u.substr(++l,u.length).trim();if('"'==p[0]){p=p.slice(1,-1)}if(undefined==r[f]){r[f]=tryDecode(p,s)}}return r}function serialize(e,t,n){var i=n||{};var a=i.encode||r;if(typeof a!=="function"){throw new TypeError("option encode is invalid")}if(!o.test(e)){throw new TypeError("argument name is invalid")}var s=a(t);if(s&&!o.test(s)){throw new TypeError("argument val is invalid")}var c=e+"="+s;if(null!=i.maxAge){var u=i.maxAge-0;if(isNaN(u))throw new Error("maxAge should be a Number");c+="; Max-Age="+Math.floor(u)}if(i.domain){if(!o.test(i.domain)){throw new TypeError("option domain is invalid")}c+="; Domain="+i.domain}if(i.path){if(!o.test(i.path)){throw new TypeError("option path is invalid")}c+="; Path="+i.path}if(i.expires){if(typeof i.expires.toUTCString!=="function"){throw new TypeError("option expires is invalid")}c+="; Expires="+i.expires.toUTCString()}if(i.httpOnly){c+="; HttpOnly"}if(i.secure){c+="; Secure"}if(i.sameSite){var l=typeof i.sameSite==="string"?i.sameSite.toLowerCase():i.sameSite;switch(l){case true:c+="; SameSite=Strict";break;case"lax":c+="; SameSite=Lax";break;case"strict":c+="; SameSite=Strict";break;default:throw new TypeError("option sameSite is invalid")}}return c}function tryDecode(e,t){try{return t(e)}catch(t){return e}}},991:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(4495));const s=i(n(4573));const c=i(n(8303));const u=i(n(586));const l=i(n(8950));const f=i(n(4278));const p=i(n(5523));const d=n(8715);const h=i(n(9199));function add(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:m}=e;const{currentTeam:v}=m;const{apiUrl:g}=e;const y=u.default();let b;const{"--overwrite":w,"--debug":x,"--crt":k,"--key":j,"--ca":S}=t;let E=null;const _=new s.default({apiUrl:g,token:r,currentTeam:v,debug:x});try{({contextName:E}=yield c.default(_))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){i.error(e.message);return 1}throw e}const C=new a.default({apiUrl:g,token:r,debug:x,currentTeam:v});if(w){i.error("Overwrite option is deprecated");C.close();return 1}if(k||j||S){if(n.length!==0||(!k||!j||!S)){i.error(`Invalid number of arguments to create a custom certificate entry. Usage:`);i.print(` ${o.default.cyan(`now certs add --crt <domain.crt> --key <domain.key> --ca <ca.crt>`)}\n`);C.close();return 1}b=yield f.default(C,j,k,S,E);if(b instanceof d.InvalidCert){i.error(`The provided certificate is not valid and can't be added.`);return 1}if(b instanceof d.DomainPermissionDenied){i.error(`You don't have permissions over domain ${o.default.underline(b.meta.domain)} under ${o.default.bold(b.meta.context)}.`);return 1}}else{i.warn(`${o.default.cyan("now certs add")} will be soon deprecated. Please use ${o.default.cyan("now certs issue <cn> <cns>")} instead`);if(n.length<1){i.error(`Invalid number of arguments to create a custom certificate entry. Usage:`);i.print(` ${o.default.cyan(`now certs add <cn>[, <cn>]`)}\n`);C.close();return 1}const e=n.reduce((e,t)=>e.concat(t.split(",")),[]);const t=l.default(`Generating a certificate for ${o.default.bold(e.join(", "))}`);b=yield p.default(C,e,E);t()}const A=h.default(i,b);if(A===1){return A}if(b instanceof d.DomainPermissionDenied){i.error(`You don't have permissions over domain ${o.default.underline(b.meta.domain)} under ${o.default.bold(b.meta.context)}.`);return 1}if(b instanceof Error){throw b}else{i.success(`Certificate entry for ${o.default.bold(b.cns.join(", "))} created ${y()}`)}return 0})}t.default=add},994:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(2617);const o=["access","appendFile","chmod","chown","close","copyFile","fchmod","fchown","fdatasync","fstat","fsync","ftruncate","futimes","lchown","lchmod","link","lstat","mkdir","mkdtemp","open","readFile","readdir","readlink","realpath","rename","rmdir","stat","symlink","truncate","unlink","utimes","writeFile"].filter(e=>{return typeof i[e]==="function"});Object.keys(i).forEach(e=>{if(e==="promises"){return}t[e]=i[e]});o.forEach(e=>{t[e]=r(i[e])});t.exists=function(e,t){if(typeof t==="function"){return i.exists(e,t)}return new Promise(t=>{return i.exists(e,t)})};t.read=function(e,t,n,r,o,a){if(typeof a==="function"){return i.read(e,t,n,r,o,a)}return new Promise((a,s)=>{i.read(e,t,n,r,o,(e,t,n)=>{if(e)return s(e);a({bytesRead:t,buffer:n})})})};t.write=function(e,t,...n){if(typeof n[n.length-1]==="function"){return i.write(e,t,...n)}return new Promise((r,o)=>{i.write(e,t,...n,(e,t,n)=>{if(e)return o(e);r({bytesWritten:t,buffer:n})})})}},998:function(e,t,n){"use strict";n.r(t);var r=n(3041);var i=n.n(r);var o=n(9544);var a=n.n(o);const s=function(){var e=`${a.a.bold(`> ${this.opt.message}`)} `;if(this.opt.default!=null&&this.status!=="answered"){e+=a.a.dim(`(${this.opt.default}) `)}return e};i.a.prompt.prompts.input.prototype.getQuestion=s;i.a.prompt.prompts.list.prototype.getQuestion=s},1006:function(e,t,n){"use strict";var r=n(7409);e.exports=r.extend({path:"order_returns",includeBasic:["list","retrieve"]})},1015:function(e,t,n){"use strict";var r=n(5897);var i=n(649).inspect;function assertPath(e){if(typeof e!=="string"){throw new TypeError("Path must be a string. Received "+i(e))}}function posix(e){assertPath(e);if(e.length===0)return".";var t=e.charCodeAt(0);var n=t===47;var r=-1;var i=true;for(var o=e.length-1;o>=1;--o){t=e.charCodeAt(o);if(t===47){if(!i){r=o;break}}else{i=false}}if(r===-1)return n?"/":".";if(n&&r===1)return"//";return e.slice(0,r)}function win32(e){assertPath(e);var t=e.length;if(t===0)return".";var n=-1;var r=-1;var i=true;var o=0;var a=e.charCodeAt(0);if(t>1){if(a===47||a===92){n=o=1;a=e.charCodeAt(1);if(a===47||a===92){var s=2;var c=s;for(;s<t;++s){a=e.charCodeAt(s);if(a===47||a===92)break}if(s<t&&s!==c){c=s;for(;s<t;++s){a=e.charCodeAt(s);if(a!==47&&a!==92)break}if(s<t&&s!==c){c=s;for(;s<t;++s){a=e.charCodeAt(s);if(a===47||a===92)break}if(s===t){return e}if(s!==c){n=o=s+1}}}}}else if(a>=65&&a<=90||a>=97&&a<=122){a=e.charCodeAt(1);if(e.charCodeAt(1)===58){n=o=2;if(t>2){a=e.charCodeAt(2);if(a===47||a===92)n=o=3}}}}else if(a===47||a===92){return e[0]}for(var u=t-1;u>=o;--u){a=e.charCodeAt(u);if(a===47||a===92){if(!i){r=u;break}}else{i=false}}if(r===-1){if(n===-1)return".";else r=n}return e.slice(0,r)}e.exports=process.platform==="win32"?win32:posix;e.exports.posix=posix;e.exports.win32=win32},1022:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);var o=n(816);var a=n.n(o);var s=n(2229);var c=n.n(s);var u=n(3759);var l=n.n(u);var f=n(2385);var p=n(8417);var d=n(9769);var h=n(1661);var m=n(5359);var v=n.n(m);var g=n(3266);var y=n.n(g);var b=n(6145);var w=n.n(b);var x=n(4999);var k=n.n(x);var j=n(8379);var S=n(3241);var E=n(4573);var _=n.n(E);var C=n(8303);var A=n.n(C);var O=n(5242);var F=n.n(O);const D=()=>{console.log(`\n ${i.a.bold(`${k.a} now billing`)} [options] <command>\n\n ${i.a.dim("Options:")}\n\n ls Show all of your credit cards\n add Add a new credit card\n rm [id] Remove a credit card\n set-default [id] Make a credit card your default one\n\n ${i.a.dim("Options:")}\n\n -h, --help Output usage information\n -A ${i.a.bold.underline("FILE")}, --local-config=${i.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${i.a.bold.underline("DIR")}, --global-config=${i.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -d, --debug Debug mode [off]\n -t ${i.a.bold.underline("TOKEN")}, --token=${i.a.bold.underline("TOKEN")} Login token\n -S, --scope Set a custom scope\n\n ${i.a.dim("Examples:")}\n\n ${i.a.gray("")} Add a new credit card (interactively)\n\n ${i.a.cyan(`$ now billing add`)}\n `)};let T;let I;let R;let P;t["default"]=(async e=>{T=a()(e.argv.slice(2),{boolean:["help","debug"],alias:{help:"h",debug:"d"}});T._=T._.slice(1);I=T.debug;R=e.apiUrl;P=T._[0];if(T.help||!P){D();return 2}const{authConfig:{token:t},config:n}=e;return run({token:t,config:n})});function buildInquirerChoices(e){return e.sources.map(t=>{const n=t.id===e.defaultSource?` ${i.a.bold("(default)")}`:"";const r=`${i.a.cyan(`ID: ${t.id}`)}${n}`;const o=`${i.a.gray("#### ").repeat(3)}${t.last4||t.card.last4}`;const a=[r,Object(d["default"])(t.name||t.owner.name,2),Object(d["default"])(`${t.brand||t.card.brand} ${o}`,2)].join("\n");return{name:a,value:t.id,short:t.id}})}async function run({token:e,config:{currentTeam:t}}){const n=new Date;const r=new p["default"]({apiUrl:R,token:e,debug:I,currentTeam:t});const o=F()({debug:I});const a=new _.a({apiUrl:R,token:e,currentTeam:t,debug:I});let s=null;try{({contextName:s}=await A()(a))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){o.error(e.message);return 1}throw e}const u=T._.slice(1);switch(P){case"ls":case"list":{let e;try{e=await r.ls()}catch(e){console.error(Object(f["error"])(e.message));return 1}const t=e.sources.map(t=>{const n=t.id===e.defaultSource?` ${i.a.bold("(default)")}`:"";const r=`${i.a.gray("-")} ${i.a.cyan(`ID: ${t.id}`)}${n}`;const o=`${i.a.gray("#### ").repeat(3)}${t.last4||t.card.last4}`;return[r,Object(d["default"])(t.name||t.owner.name,2),Object(d["default"])(`${t.brand||t.card.brand} ${o}`,2)].join("\n")}).join("\n\n");const o=c()(new Date-n);console.log(`> ${l()("card",e.sources.length,true)} found under ${i.a.bold(s)} ${i.a.gray(`[${o}]`)}`);if(t){console.log(`\n${t}\n`)}break}case"set-default":{if(u.length>1){console.error(Object(f["error"])("Invalid number of arguments"));return 1}const e=new Date;let t;try{t=await r.ls()}catch(e){console.error(Object(f["error"])(e.message));return 1}if(t.sources.length===0){console.error(Object(f["error"])("You have no credit cards to choose from"));return 0}let n=u[0];if(n===undefined){const r=c()(new Date-e);const o=`Selecting a new default payment card for ${i.a.bold(s)} ${i.a.gray(`[${r}]`)}`;const a=buildInquirerChoices(t);n=await Object(h["default"])({message:o,choices:a,separator:true,abort:"end"})}if(n){const e=`Are you sure that you to set this card as the default?`;const o=await y()(e,{trailing:"\n"});if(!o){console.log(w()("Aborted"));break}const a=new Date;await r.setDefault(n);const s=t.sources.find(e=>e.id===n);const u=c()(new Date-a);console.log(v()(`${s.brand||s.card.brand} ending in ${s.last4||s.card.last4} is now the default ${i.a.gray(`[${u}]`)}`))}else{console.log("No changes made")}break}case"rm":case"remove":{if(u.length>1){console.error(Object(f["error"])("Invalid number of arguments"));return 1}const e=new Date;let t;try{t=await r.ls()}catch(e){console.error(Object(f["error"])(e.message));return 1}if(t.sources.length===0){console.error(Object(f["error"])(`You have no credit cards to choose from to delete under ${i.a.bold(s)}`));return 0}let n=u[0];if(n===undefined){const r=c()(new Date-e);const o=`Selecting a card to ${i.a.underline("remove")} under ${i.a.bold(s)} ${i.a.gray(`[${r}]`)}`;const a=buildInquirerChoices(t);n=await Object(h["default"])({message:o,choices:a,separator:true,abort:"start"})}if(n){const e=`Are you sure that you want to remove this card?`;const o=await y()(e);if(!o){console.log("Aborted");break}const a=new Date;await r.rm(n);const u=t.sources.find(e=>e.id===n);const l=t.sources.filter(e=>e.id!==n);let f=`${u.brand||u.card.brand} ending in ${u.last4||u.card.last4} was deleted`;if(n===t.defaultSource){if(l.length===0){f+=`\n${i.a.yellow("Warning!")} You have no default card`}else{const e=await r.ls();const t=e.sources.find(t=>t.id===e.defaultCardId);f+=`\n${t.brand||t.card.brand} ending in ${t.last4||t.card.last4} in now default for ${i.a.bold(s)}`}}const p=c()(new Date-a);f+=` ${i.a.gray(`[${p}]`)}`;console.log(v()(f))}else{console.log("No changes made")}break}case"add":{await Object(j["default"])({creditCards:r,contextName:s});break}default:console.error(Object(f["error"])("Please specify a valid subcommand: ls | add | rm | set-default"));D();return 1}return Object(S["default"])(0)}},1026:function(e){e.exports={$id:"cookie.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",required:["name","value"],properties:{name:{type:"string"},value:{type:"string"},path:{type:"string"},domain:{type:"string"},expires:{type:["string","null"],format:"date-time"},httpOnly:{type:"boolean"},secure:{type:"boolean"},comment:{type:"string"}}}},1033:function(){throw new Error('Module parse failed: Unexpected token (1:0)\nYou may need an appropriate loader to handle this file type.\n> <!DOCTYPE html>\n| <html lang="en">\n| <head>')},1043:function(e,t,n){"use strict";const r=n(9405);function getStream(e,t){if(!e){return Promise.reject(new Error("Expected a stream"))}t=Object.assign({maxBuffer:Infinity},t);const n=t.maxBuffer;let i;let o;const a=new Promise((a,s)=>{const c=e=>{if(e){e.bufferedData=i.getBufferedValue()}s(e)};i=r(t);e.once("error",c);e.pipe(i);i.on("data",()=>{if(i.getBufferedLength()>n){s(new Error("maxBuffer exceeded"))}});i.once("error",c);i.on("end",a);o=(()=>{if(e.unpipe){e.unpipe(i)}})});a.then(o,o);return a.then(()=>i.getBufferedValue())}e.exports=getStream;e.exports.buffer=((e,t)=>getStream(e,Object.assign({},t,{encoding:"buffer"})));e.exports.array=((e,t)=>getStream(e,Object.assign({},t,{array:true})))},1048:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(1694));function error_404(e){let t='<header> <div class="header-item first';if(e.app_error){t+=" active"}t+='"> <svg class="header-item-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> ';if(e.app_error){t+=' <circle cx="8" cy="8" r="8" fill="#FF0080" /> '}else{t+=' <circle cx="8" cy="8" r="7.5" stroke="#CCCCCC" /> '}t+=' </svg> <div class="header-item-content"> <h1>Application Error</h1> <p>The page was not found in the hosted application</p> </div> </div> <div class="header-item';if(!e.app_error){t+=" active"}t+='"> <svg class="header-item-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> ';if(!e.app_error){t+=' <circle cx="8" cy="8" r="8" fill="#FF0080" /> '}else{t+=' <circle cx="8" cy="8" r="7.5" stroke="#CCCCCC" /> '}t+=' </svg> <div class="header-item-content"> <h1>Platform Error</h1> <p>The deployment was not found in the infrastructure layer</p> </div> </div></header><main> <p> <h1 class="error-title">'+i.default(e.title)+"</h1> ";if(e.subtitle){t+=" <p>"+i.default(e.subtitle)+"</p> "}t+=' </p> <p class="devinfo-container"> <span class="error-code"><strong>'+e.http_status_code+"</strong>: "+i.default(e.http_status_description)+"</span> ";if(e.error_code){t+=' <span class="devinfo-line">Code: <code>'+i.default(e.error_code)+"</code></span> "}t+=' <span class="devinfo-line">ID: <code>'+i.default(e.now_id)+"</code> </p></main>";return t}t.default=error_404},1051:function(e){"use strict";e.exports=function generate_if(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f="valid"+i;var p="errs__"+i;var d=e.util.copy(e);d.level++;var h="valid"+d.level;var m=e.schema["then"],v=e.schema["else"],g=m!==undefined&&(e.opts.strictKeywords?typeof m=="object"&&Object.keys(m).length>0:e.util.schemaHasRules(m,e.RULES.all)),y=v!==undefined&&(e.opts.strictKeywords?typeof v=="object"&&Object.keys(v).length>0:e.util.schemaHasRules(v,e.RULES.all)),b=d.baseId;if(g||y){var w;d.createErrors=false;d.schema=a;d.schemaPath=s;d.errSchemaPath=c;r+=" var "+p+" = errors; var "+f+" = true; ";var x=e.compositeRule;e.compositeRule=d.compositeRule=true;r+=" "+e.validate(d)+" ";d.baseId=b;d.createErrors=true;r+=" errors = "+p+"; if (vErrors !== null) { if ("+p+") vErrors.length = "+p+"; else vErrors = null; } ";e.compositeRule=d.compositeRule=x;if(g){r+=" if ("+h+") { ";d.schema=e.schema["then"];d.schemaPath=e.schemaPath+".then";d.errSchemaPath=e.errSchemaPath+"/then";r+=" "+e.validate(d)+" ";d.baseId=b;r+=" "+f+" = "+h+"; ";if(g&&y){w="ifClause"+i;r+=" var "+w+" = 'then'; "}else{w="'then'"}r+=" } ";if(y){r+=" else { "}}else{r+=" if (!"+h+") { "}if(y){d.schema=e.schema["else"];d.schemaPath=e.schemaPath+".else";d.errSchemaPath=e.errSchemaPath+"/else";r+=" "+e.validate(d)+" ";d.baseId=b;r+=" "+f+" = "+h+"; ";if(g&&y){w="ifClause"+i;r+=" var "+w+" = 'else'; "}else{w="'else'"}r+=" } "}r+=" if (!"+f+") { var err = ";if(e.createErrors!==false){r+=" { keyword: '"+"if"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { failingKeyword: "+w+" } ";if(e.opts.messages!==false){r+=" , message: 'should match \"' + "+w+" + '\" schema' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}r+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ";if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(vErrors); "}else{r+=" validate.errors = vErrors; return false; "}}r+=" } ";if(u){r+=" else { "}r=e.util.cleanUpCode(r)}else{if(u){r+=" if (true) { "}}return r}},1056:function(e,t,n){"use strict";var r=n(1249);var i=n(7409);var o=i.method;var a=n(9995);e.exports=i.extend({overrideHost:"uploads.stripe.com",requestDataProcessor:function(e,t,n){t=t||{};if(e==="POST"){return a(e,t,n)}else{return r.stringifyRequestData(t)}},path:"files",includeBasic:["retrieve","list"],create:o({method:"POST",headers:{"Content-Type":"multipart/form-data"}})})},1060:function(e,t,n){var r=n(2316);e.exports=function isGlob(e){if(typeof e!=="string"||e===""){return false}if(r(e))return true;var t=/(\\).|([*?]|\[.*\]|\{.*\}|\(.*\|.*\)|^!)/;var n;while(n=t.exec(e)){if(n[2])return true;e=e.slice(n.index+n[0].length)}return false}},1065:function(e,t,n){"use strict";var r=n(1964);e.exports=function(e,t){if(typeof e!=="string"||typeof t!=="string"){throw new TypeError}t=r(t);return e.replace(new RegExp("^"+t+"|"+t+"$","g"),"")}},1075:function(e,t,n){var r=e.exports,i=n(649)._extend,o=n(774).parse,a=n(1508),s=n(4219),c=n(2307),u=n(2348),l=n(1377);r.Server=ProxyServer;function createRightProxy(e){return function(t){return function(n,r){var a=e==="ws"?this.wsPasses:this.webPasses,s=[].slice.call(arguments),c=s.length-1,u,l;if(typeof s[c]==="function"){l=s[c];c--}var f=t;if(!(s[c]instanceof Buffer)&&s[c]!==r){f=i({},t);i(f,s[c]);c--}if(s[c]instanceof Buffer){u=s[c]}["target","forward"].forEach(function(e){if(typeof f[e]==="string")f[e]=o(f[e])});if(!f.target&&!f.forward){return this.emit("error",new Error("Must provide a proper URL as target"))}for(var p=0;p<a.length;p++){if(a[p](n,r,f,u,this,l)){break}}}}}r.createRightProxy=createRightProxy;function ProxyServer(e){a.call(this);e=e||{};e.prependPath=e.prependPath===false?false:true;this.web=this.proxyRequest=createRightProxy("web")(e);this.ws=this.proxyWebsocketRequest=createRightProxy("ws")(e);this.options=e;this.webPasses=Object.keys(u).map(function(e){return u[e]});this.wsPasses=Object.keys(l).map(function(e){return l[e]});this.on("error",this.onError,this)}n(649).inherits(ProxyServer,a);ProxyServer.prototype.onError=function(e){if(this.listeners("error").length===1){throw e}};ProxyServer.prototype.listen=function(e,t){var n=this,r=function(e,t){n.web(e,t)};this._server=this.options.ssl?c.createServer(this.options.ssl,r):s.createServer(r);if(this.options.ws){this._server.on("upgrade",function(e,t,r){n.ws(e,t,r)})}this._server.listen(e,t);return this};ProxyServer.prototype.close=function(e){var t=this;if(this._server){this._server.close(done)}function done(){t._server=null;if(e){e.apply(null,arguments)}}};ProxyServer.prototype.before=function(e,t,n){if(e!=="ws"&&e!=="web"){throw new Error("type must be `web` or `ws`")}var r=e==="ws"?this.wsPasses:this.webPasses,i=false;r.forEach(function(e,n){if(e.name===t)i=n});if(i===false)throw new Error("No such pass");r.splice(i,0,n)};ProxyServer.prototype.after=function(e,t,n){if(e!=="ws"&&e!=="web"){throw new Error("type must be `web` or `ws`")}var r=e==="ws"?this.wsPasses:this.webPasses,i=false;r.forEach(function(e,n){if(e.name===t)i=n});if(i===false)throw new Error("No such pass");r.splice(i++,0,n)}},1077:function(e,t,n){"use strict";var r=n(7871);var i=n(6980);var o=n(6340);var a=n(8920);e.exports=function unionValue(e,t,n){if(!r(e)){throw new TypeError("union-value expects the first argument to be an object.")}if(typeof t!=="string"){throw new TypeError("union-value expects `prop` to be a string.")}var s=arrayify(o(e,t));a(e,t,i(s,arrayify(n)));return e};function arrayify(e){if(e===null||typeof e==="undefined"){return[]}if(Array.isArray(e)){return e}return[e]}},1079:function(e,t,n){"use strict";var r=n(7409);var i=n(1249);var o=r.method;function encode(e){if(e.items!==undefined){e.items=i.arrayToObject(e.items)}return e}e.exports=r.extend({path:"subscriptions",includeBasic:["list","retrieve","del"],create:o({method:"POST",encode:encode}),update:o({method:"POST",path:"{id}",urlParams:["id"],encode:encode}),deleteDiscount:o({method:"DELETE",path:"/{subscriptionId}/discount",urlParams:["subscriptionId"]})})},1083:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(1694));function error(e){let t='<main> <p class="devinfo-container"> <span class="error-code"><strong>'+e.http_status_code+"</strong>: "+i.default(e.http_status_description)+"</span> ";if(e.error_code){t+=' <span class="devinfo-line">Code: <code>'+i.default(e.error_code)+"</code></span> "}t+=' <span class="devinfo-line">ID: <code>'+i.default(e.now_id)+"</code> </p></main>";return t}t.default=error},1085:function(e,t,n){"use strict";const r=n(662);const i=n(5897);const o=n(1393).ConfigChain;const a=n(7925);class Conf extends o{constructor(e){super(e);this.root=e}add(e,t){try{for(const t of Object.keys(e)){e[t]=a.parseField(e[t],t)}}catch(e){throw e}return super.add(e,t)}addFile(e,t){t=t||e;const n={__source__:t};this.sources[t]={path:e,type:"ini"};this.push(n);this._await();try{const t=r.readFileSync(e,"utf8");this.addString(t,e,"ini",n)}catch(e){this.add({},n)}return this}addEnv(e){e=e||process.env;const t={};Object.keys(e).filter(e=>/^npm_config_/i.test(e)).forEach(n=>{if(!e[n]){return}const r=n.toLowerCase().replace(/^npm_config_/,"").replace(/(?!^)_/g,"-");t[r]=e[n]});return super.addEnv("",t,"env")}loadPrefix(){const e=this.list[0];Object.defineProperty(this,"prefix",{enumerable:true,set:e=>{const t=this.get("global");this[t?"globalPrefix":"localPrefix"]=e},get:()=>{const e=this.get("global");return e?this.globalPrefix:this.localPrefix}});Object.defineProperty(this,"globalPrefix",{enumerable:true,set:e=>{this.set("prefix",e)},get:()=>{return i.resolve(this.get("prefix"))}});let t;Object.defineProperty(this,"localPrefix",{enumerable:true,set:e=>{t=e},get:()=>{return t}});if(Object.prototype.hasOwnProperty.call(e,"prefix")){t=i.resolve(e.prefix)}else{try{const e=a.findPrefix(process.cwd());t=e}catch(e){throw e}}return t}loadCAFile(e){if(!e){return}try{const t=r.readFileSync(e,"utf8");const n="-----END CERTIFICATE-----";const i=t.split(n).filter(e=>Boolean(e.trim())).map(e=>e.trimLeft()+n);this.set("ca",i)}catch(e){if(e.code==="ENOENT"){return}throw e}}loadUser(){const e=this.root;if(this.get("global")){return}if(process.env.SUDO_UID){e.user=Number(process.env.SUDO_UID);return}const t=i.resolve(this.get("prefix"));try{const n=r.statSync(t);e.user=n.uid}catch(e){if(e.code==="ENOENT"){return}throw e}}}e.exports=Conf},1092:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return getInstanceIndex});function getInstanceIndex(){const e={};let t=0;return n=>{if(e[n]===undefined){e[n]=t;t+=1}return e[n]}}},1097:function(e,t,n){"use strict";e=n.nmd(e);function assembleStyles(){var e={modifiers:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},colors:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],gray:[90,39]},bgColors:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49]}};e.colors.grey=e.colors.gray;Object.keys(e).forEach(function(t){var n=e[t];Object.keys(n).forEach(function(t){var r=n[t];e[t]=n[t]={open:"["+r[0]+"m",close:"["+r[1]+"m"}});Object.defineProperty(e,t,{value:n,enumerable:false})});return e}Object.defineProperty(e,"exports",{enumerable:true,get:assembleStyles})},1115:function(e){e.exports={$id:"response.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",required:["status","statusText","httpVersion","cookies","headers","content","redirectURL","headersSize","bodySize"],properties:{status:{type:"integer"},statusText:{type:"string"},httpVersion:{type:"string"},cookies:{type:"array",items:{$ref:"cookie.json#"}},headers:{type:"array",items:{$ref:"header.json#"}},content:{$ref:"content.json#"},redirectURL:{type:"string"},headersSize:{type:"integer"},bodySize:{type:"integer"},comment:{type:"string"}}}},1120:function(e,t,n){"use strict";const r=n(9060),i=n(7420);const o=n(7787),a=n(6074);function use(e,t,n){n=Object.assign({clone:true},n);if(!e)e=o;if(!t)t=r;if(n.clone){t=i.clone(t,{subclassZipFile:true,subclassEntry:true})}else{i.clone(t,{clone:false,eventsIntercept:true})}if(e){a(t,e)}else{t={}}t.use=use;t.usePromise=function(e){return use(e,null)};t.useYauzl=function(e,t){return use(null,e,t)};return t}e.exports=use()},1128:function(e){"use strict";e.exports=/^#!.*/},1133:function(e,t,n){var r=n(9400);var i=n(7488);var o=n(3271);var a=n(8980);var s=n(662);var c=n(5897);var u=n(4316);var l=u.platform()==="win32";var f=function(){};var p=function(e){return e};var d=!l?p:function(e){return e.replace(/\\/g,"/").replace(/[:?<>|]/g,"_")};var h=function(e,t,n,r,i,o){var a=i||["."];return function loop(i){if(!a.length)return i();var s=a.shift();var u=c.join(n,s);t(u,function(t,l){if(t)return i(t);if(!l.isDirectory())return i(null,s,l);e.readdir(u,function(e,t){if(e)return i(e);if(o)t.sort();for(var u=0;u<t.length;u++){if(!r(c.join(n,s,t[u])))a.push(c.join(s,t[u]))}i(null,s,l)})})}};var m=function(e,t){return function(n){n.name=n.name.split("/").slice(t).join("/");var r=n.linkname;if(r&&(n.type==="link"||c.isAbsolute(r))){n.linkname=r.split("/").slice(t).join("/")}return e(n)}};t.pack=function(e,t){if(!e)e=".";if(!t)t={};var n=t.fs||s;var r=t.ignore||t.filter||f;var a=t.map||f;var u=t.mapStream||p;var l=h(n,t.dereference?n.stat:n.lstat,e,r,t.entries,t.sort);var v=t.strict!==false;var g=typeof t.umask==="number"?~t.umask:~y();var b=typeof t.dmode==="number"?t.dmode:0;var w=typeof t.fmode==="number"?t.fmode:0;var x=t.pack||i.pack();var k=t.finish||f;if(t.strip)a=m(a,t.strip);if(t.readable){b|=parseInt(555,8);w|=parseInt(444,8)}if(t.writable){b|=parseInt(333,8);w|=parseInt(222,8)}var j=function(t,r){n.readlink(c.join(e,t),function(e,t){if(e)return x.destroy(e);r.linkname=d(t);x.entry(r,E)})};var S=function(r,i,s){if(r)return x.destroy(r);if(!i){if(t.finalize!==false)x.finalize();return k(x)}if(s.isSocket())return E();var l={name:d(i),mode:(s.mode|(s.isDirectory()?b:w))&g,mtime:s.mtime,size:s.size,type:"file",uid:s.uid,gid:s.gid};if(s.isDirectory()){l.size=0;l.type="directory";l=a(l)||l;return x.entry(l,E)}if(s.isSymbolicLink()){l.size=0;l.type="symlink";l=a(l)||l;return j(i,l)}l=a(l)||l;if(!s.isFile()){if(v)return x.destroy(new Error("unsupported type for "+i));return E()}var f=x.entry(l,E);if(!f)return;var p=u(n.createReadStream(c.join(e,i)),l);p.on("error",function(e){f.destroy(e)});o(p,f)};var E=function(e){if(e)return x.destroy(e);l(S)};E();return x};var v=function(e){return e.length?e[e.length-1]:null};var g=function(){return process.getuid?process.getuid():-1};var y=function(){return process.umask?process.umask():0};t.extract=function(e,t){if(!e)e=".";if(!t)t={};var n=t.fs||s;var r=t.ignore||t.filter||f;var a=t.map||f;var u=t.mapStream||p;var h=t.chown!==false&&!l&&g()===0;var b=t.extract||i.extract();var w=[];var x=new Date;var k=typeof t.umask==="number"?~t.umask:~y();var j=typeof t.dmode==="number"?t.dmode:0;var S=typeof t.fmode==="number"?t.fmode:0;var E=t.strict!==false;if(t.strip)a=m(a,t.strip);if(t.readable){j|=parseInt(555,8);S|=parseInt(444,8)}if(t.writable){j|=parseInt(333,8);S|=parseInt(222,8)}var _=function(e,t){var r;while((r=v(w))&&e.slice(0,r[0].length)!==r[0])w.pop();if(!r)return t();n.utimes(r[0],x,r[1],t)};var C=function(e,r,i){if(t.utimes===false)return i();if(r.type==="directory")return n.utimes(e,x,r.mtime,i);if(r.type==="symlink")return _(e,i);n.utimes(e,x,r.mtime,function(t){if(t)return i(t);_(e,i)})};var A=function(e,t,r){var i=t.type==="symlink";var o=i?n.lchmod:n.chmod;var a=i?n.lchown:n.chown;if(!o)return r();var s=(t.mode|(t.type==="directory"?j:S))&k;o(e,s,function(n){if(n)return r(n);if(!h)return r();if(!a)return r();a(e,t.uid,t.gid,r)})};b.on("entry",function(i,s,f){i=a(i)||i;i.name=d(i.name);var p=c.join(e,c.join("/",i.name));if(r(p,i)){s.resume();return f()}var m=function(e){if(e)return f(e);C(p,i,function(e){if(e)return f(e);if(l)return f();A(p,i,f)})};var v=function(){if(l)return f();n.unlink(p,function(){n.symlink(i.linkname,p,m)})};var g=function(){if(l)return f();n.unlink(p,function(){var r=c.join(e,c.join("/",i.linkname));n.link(r,p,function(e){if(e&&e.code==="EPERM"&&t.hardlinkAsFilesFallback){s=n.createReadStream(r);return y()}m(e)})})};var y=function(){var e=n.createWriteStream(p);var t=u(s,i);e.on("error",function(e){t.destroy(e)});o(t,e,function(t){if(t)return f(t);e.on("close",m)})};if(i.type==="directory"){w.push([p,i.mtime]);return mkdirfix(p,{fs:n,own:h,uid:i.uid,gid:i.gid},m)}var b=c.dirname(p);validate(n,b,c.join(e,"."),function(e,t){if(e)return f(e);if(!t)return f(new Error(b+" is not a valid path"));mkdirfix(b,{fs:n,own:h,uid:i.uid,gid:i.gid},function(e){if(e)return f(e);switch(i.type){case"file":return y();case"link":return g();case"symlink":return v()}if(E)return f(new Error("unsupported type for "+p+" ("+i.type+")"));s.resume();f()})})});if(t.finish)b.on("finish",t.finish);return b};function validate(e,t,n,r){if(t===n)return r(null,true);e.lstat(t,function(i,o){if(i&&i.code!=="ENOENT")return r(i);if(i||o.isDirectory())return validate(e,c.join(t,".."),n,r);r(null,false)})}function mkdirfix(e,t,n){a(e,{fs:t.fs},function(e,i){if(!e&&i&&t.own){r(i,t.uid,t.gid,n)}else{n(e)}})}},1139:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(3930);const a=process.platform==="win32";function defaults(e){const t=["unlink","chmod","stat","lstat","rmdir","readdir"];t.forEach(t=>{e[t]=e[t]||r[t];t=t+"Sync";e[t]=e[t]||r[t]});e.maxBusyTries=e.maxBusyTries||3}function rimraf(e,t,n){let r=0;if(typeof t==="function"){n=t;t={}}o(e,"rimraf: missing path");o.strictEqual(typeof e,"string","rimraf: path should be a string");o.strictEqual(typeof n,"function","rimraf: callback function required");o(t,"rimraf: invalid options argument provided");o.strictEqual(typeof t,"object","rimraf: options should be object");defaults(t);rimraf_(e,t,function CB(i){if(i){if((i.code==="EBUSY"||i.code==="ENOTEMPTY"||i.code==="EPERM")&&r<t.maxBusyTries){r++;const n=r*100;return setTimeout(()=>rimraf_(e,t,CB),n)}if(i.code==="ENOENT")i=null}n(i)})}function rimraf_(e,t,n){o(e);o(t);o(typeof n==="function");t.lstat(e,(r,i)=>{if(r&&r.code==="ENOENT"){return n(null)}if(r&&r.code==="EPERM"&&a){return fixWinEPERM(e,t,r,n)}if(i&&i.isDirectory()){return rmdir(e,t,r,n)}t.unlink(e,r=>{if(r){if(r.code==="ENOENT"){return n(null)}if(r.code==="EPERM"){return a?fixWinEPERM(e,t,r,n):rmdir(e,t,r,n)}if(r.code==="EISDIR"){return rmdir(e,t,r,n)}}return n(r)})})}function fixWinEPERM(e,t,n,r){o(e);o(t);o(typeof r==="function");if(n){o(n instanceof Error)}t.chmod(e,438,i=>{if(i){r(i.code==="ENOENT"?null:n)}else{t.stat(e,(i,o)=>{if(i){r(i.code==="ENOENT"?null:n)}else if(o.isDirectory()){rmdir(e,t,n,r)}else{t.unlink(e,r)}})}})}function fixWinEPERMSync(e,t,n){let r;o(e);o(t);if(n){o(n instanceof Error)}try{t.chmodSync(e,438)}catch(e){if(e.code==="ENOENT"){return}else{throw n}}try{r=t.statSync(e)}catch(e){if(e.code==="ENOENT"){return}else{throw n}}if(r.isDirectory()){rmdirSync(e,t,n)}else{t.unlinkSync(e)}}function rmdir(e,t,n,r){o(e);o(t);if(n){o(n instanceof Error)}o(typeof r==="function");t.rmdir(e,i=>{if(i&&(i.code==="ENOTEMPTY"||i.code==="EEXIST"||i.code==="EPERM")){rmkids(e,t,r)}else if(i&&i.code==="ENOTDIR"){r(n)}else{r(i)}})}function rmkids(e,t,n){o(e);o(t);o(typeof n==="function");t.readdir(e,(r,o)=>{if(r)return n(r);let a=o.length;let s;if(a===0)return t.rmdir(e,n);o.forEach(r=>{rimraf(i.join(e,r),t,r=>{if(s){return}if(r)return n(s=r);if(--a===0){t.rmdir(e,n)}})})})}function rimrafSync(e,t){let n;t=t||{};defaults(t);o(e,"rimraf: missing path");o.strictEqual(typeof e,"string","rimraf: path should be a string");o(t,"rimraf: missing options");o.strictEqual(typeof t,"object","rimraf: options should be object");try{n=t.lstatSync(e)}catch(n){if(n.code==="ENOENT"){return}if(n.code==="EPERM"&&a){fixWinEPERMSync(e,t,n)}}try{if(n&&n.isDirectory()){rmdirSync(e,t,null)}else{t.unlinkSync(e)}}catch(n){if(n.code==="ENOENT"){return}else if(n.code==="EPERM"){return a?fixWinEPERMSync(e,t,n):rmdirSync(e,t,n)}else if(n.code!=="EISDIR"){throw n}rmdirSync(e,t,n)}}function rmdirSync(e,t,n){o(e);o(t);if(n){o(n instanceof Error)}try{t.rmdirSync(e)}catch(r){if(r.code==="ENOTDIR"){throw n}else if(r.code==="ENOTEMPTY"||r.code==="EEXIST"||r.code==="EPERM"){rmkidsSync(e,t)}else if(r.code!=="ENOENT"){throw r}}}function rmkidsSync(e,t){o(e);o(t);t.readdirSync(e).forEach(n=>rimrafSync(i.join(e,n),t));if(a){const n=Date.now();do{try{const n=t.rmdirSync(e,t);return n}catch(e){}}while(Date.now()-n<500)}else{const n=t.rmdirSync(e,t);return n}}e.exports=rimraf;rimraf.sync=rimrafSync},1141:function(e,t,n){"use strict";var r=n(7409);var i=r.method;var o=n(1249);e.exports=r.extend({path:"invoices",includeBasic:["create","list","retrieve","update"],retrieveLines:i({method:"GET",path:"{invoiceId}/lines",urlParams:["invoiceId"]}),pay:i({method:"POST",path:"{invoiceId}/pay",urlParams:["invoiceId"]}),retrieveUpcoming:i({method:"GET",path:function(e){var t="upcoming?customer="+e.customerId;if(e.invoiceOptions&&typeof e.invoiceOptions==="string"){return t+"&subscription="+e.invoiceOptions}else if(e.invoiceOptions&&typeof e.invoiceOptions==="object"){if(e.invoiceOptions.subscription_items!==undefined){e.invoiceOptions.subscription_items=o.arrayToObject(e.invoiceOptions.subscription_items)}return t+"&"+o.stringifyRequestData(e.invoiceOptions)}return t},urlParams:["customerId","optional!invoiceOptions"]})})},1143:function(e,t,n){var r=n(3930);var i=n(649);t.sprintf=jsSprintf;t.printf=jsPrintf;t.fprintf=jsFprintf;function jsSprintf(e){var t=["([^%]*)","%","(['\\-+ #0]*?)","([1-9]\\d*)?","(\\.([1-9]\\d*))?","[lhjztL]*?","([diouxXfFeEgGaAcCsSp%jr])"].join("");var n=new RegExp(t);var o=Array.prototype.slice.call(arguments,1);var a,s,c,u;var l,f,p,d,h;var m="";var v=1;r.equal("string",typeof e);while((h=n.exec(e))!==null){m+=h[1];e=e.substring(h[0].length);a=h[2]||"";s=h[3]||0;c=h[4]||"";u=h[6];l=false;p=false;f=" ";if(u=="%"){m+="%";continue}if(o.length===0)throw new Error("too few args to sprintf");d=o.shift();v++;if(a.match(/[\' #]/))throw new Error("unsupported flags: "+a);if(c.length>0)throw new Error("non-zero precision not supported");if(a.match(/-/))l=true;if(a.match(/0/))f="0";if(a.match(/\+/))p=true;switch(u){case"s":if(d===undefined||d===null)throw new Error("argument "+v+": attempted to print undefined or null "+"as a string");m+=doPad(f,s,l,d.toString());break;case"d":d=Math.floor(d);case"f":p=p&&d>0?"+":"";m+=p+doPad(f,s,l,d.toString());break;case"x":m+=doPad(f,s,l,d.toString(16));break;case"j":if(s===0)s=10;m+=i.inspect(d,false,s);break;case"r":m+=dumpException(d);break;default:throw new Error("unsupported conversion: "+u)}}m+=e;return m}function jsPrintf(){var e=Array.prototype.slice.call(arguments);e.unshift(process.stdout);jsFprintf.apply(null,e)}function jsFprintf(e){var t=Array.prototype.slice.call(arguments,1);return e.write(jsSprintf.apply(this,t))}function doPad(e,t,n,r){var i=r;while(i.length<t){if(n)i+=e;else i=e+i}return i}function dumpException(e){var t;if(!(e instanceof Error))throw new Error(jsSprintf("invalid type for %%r: %j",e));t="EXCEPTION: "+e.constructor.name+": "+e.stack;if(e.cause&&typeof e.cause==="function"){var n=e.cause();if(n){t+="\nCaused by: "+dumpException(n)}}return t}},1146:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(772));const a=n(8715);function readJSONFile(e){return r(this,void 0,void 0,function*(){const t=yield readFileSafe(e);if(t===null){return t}try{const n=JSON.parse(t);return n}catch(t){return new a.CantParseJSONFile(e)}})}t.default=readJSONFile;function readFileSafe(e){return r(this,void 0,void 0,function*(){if(o.default.existsSync(e)){const t=yield o.default.readFile(e);return t.toString()}return null})}},1148:function(e,t,n){var r=n(7117);function isHexDigit(e){return e>="0"&&e<="9"||e>="A"&&e<="F"||e>="a"&&e<="f"}function isOctDigit(e){return e>="0"&&e<="7"}function isDecDigit(e){return e>="0"&&e<="9"}var i={"'":"'",'"':'"',"\\":"\\",b:"\b",f:"\f",n:"\n",r:"\r",t:"\t",v:"\v","/":"/"};function formatError(e,t,n,i,o,a){var s=t+" at "+(i+1)+":"+(o+1),c=n-o-1,u="",l="";var f=a?r.isLineTerminator:r.isLineTerminatorJSON;if(c<n-70){c=n-70}while(1){var p=e[++c];if(f(p)||c===e.length){if(n>=c){l+="^"}break}u+=p;if(n===c){l+="^"}else if(n>c){l+=e[c]==="\t"?"\t":" "}if(u.length>78)break}return s+"\n"+u+"\n"+l}function parse(e,t){var n=!(t.mode==="json"||t.legacy);var o=n?r.isLineTerminator:r.isLineTerminatorJSON;var a=n?r.isWhiteSpace:r.isWhiteSpaceJSON;var s=e.length,c=0,u=0,l=0,f=[];var p=function(){};var d=function(e){return e};if(t._tokenize){(function(){var n=null;p=function(){if(n!==null)throw Error("internal error, token overlap");n=l};d=function(r,i){if(n!=l){var o={raw:e.substr(n,l-n),type:i,stack:f.slice(0)};if(r!==undefined)o.value=r;t._tokenize.call(null,o)}n=null;return r}})()}function fail(t){var r=l-u;if(!t){if(l<s){var i="'"+JSON.stringify(e[l]).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";if(!t)t="Unexpected token "+i}else{if(!t)t="Unexpected end of input"}}var o=SyntaxError(formatError(e,t,l,c,r,n));o.row=c+1;o.column=r+1;throw o}function newline(t){if(t==="\r"&&e[l]==="\n")l++;u=l;c++}function parseGeneric(){var t;while(l<s){p();var r=e[l++];if(r==='"'||r==="'"&&n){return d(parseString(r),"literal")}else if(r==="{"){d(undefined,"separator");return parseObject()}else if(r==="["){d(undefined,"separator");return parseArray()}else if(r==="-"||r==="."||isDecDigit(r)||n&&(r==="+"||r==="I"||r==="N")){return d(parseNumber(),"literal")}else if(r==="n"){parseKeyword("null");return d(null,"literal")}else if(r==="t"){parseKeyword("true");return d(true,"literal")}else if(r==="f"){parseKeyword("false");return d(false,"literal")}else{l--;return d(undefined)}}}function parseKey(){var t;while(l<s){p();var i=e[l++];if(i==='"'||i==="'"&&n){return d(parseString(i),"key")}else if(i==="{"){d(undefined,"separator");return parseObject()}else if(i==="["){d(undefined,"separator");return parseArray()}else if(i==="."||isDecDigit(i)){return d(parseNumber(true),"key")}else if(n&&r.isIdentifierStart(i)||i==="\\"&&e[l]==="u"){var o=l-1;var t=parseIdentifier();if(t===undefined){l=o;return d(undefined)}else{return d(t,"key")}}else{l--;return d(undefined)}}}function skipWhiteSpace(){p();while(l<s){var t=e[l++];if(o(t)){l--;d(undefined,"whitespace");p();l++;newline(t);d(undefined,"newline");p()}else if(a(t)){}else if(t==="/"&&n&&(e[l]==="/"||e[l]==="*")){l--;d(undefined,"whitespace");p();l++;skipComment(e[l++]==="*");d(undefined,"comment");p()}else{l--;break}}return d(undefined,"whitespace")}function skipComment(t){while(l<s){var n=e[l++];if(o(n)){if(!t){l--;return}newline(n)}else if(n==="*"&&t){if(e[l]==="/"){l++;return}}else{}}if(t){fail("Unclosed multiline comment")}}function parseKeyword(t){var n=l;var r=t.length;for(var i=1;i<r;i++){if(l>=s||t[i]!=e[l]){l=n-1;fail()}l++}}function parseObject(){var r=t.null_prototype?Object.create(null):{},i={},o=false;while(l<s){skipWhiteSpace();var a=parseKey();skipWhiteSpace();p();var c=e[l++];d(undefined,"separator");if(c==="}"&&a===undefined){if(!n&&o){l--;fail("Trailing comma in object")}return r}else if(c===":"&&a!==undefined){skipWhiteSpace();f.push(a);var u=parseGeneric();f.pop();if(u===undefined)fail("No value found for key "+a);if(typeof a!=="string"){if(!n||typeof a!=="number"){fail("Wrong key type: "+a)}}if((a in i||i[a]!=null)&&t.reserved_keys!=="replace"){if(t.reserved_keys==="throw"){fail("Reserved key: "+a)}else{}}else{if(typeof t.reviver==="function"){u=t.reviver.call(null,a,u)}if(u!==undefined){o=true;Object.defineProperty(r,a,{value:u,enumerable:true,configurable:true,writable:true})}}skipWhiteSpace();p();var c=e[l++];d(undefined,"separator");if(c===","){continue}else if(c==="}"){return r}else{fail()}}else{l--;fail()}}fail()}function parseArray(){var r=[];while(l<s){skipWhiteSpace();f.push(r.length);var i=parseGeneric();f.pop();skipWhiteSpace();p();var o=e[l++];d(undefined,"separator");if(i!==undefined){if(typeof t.reviver==="function"){i=t.reviver.call(null,String(r.length),i)}if(i===undefined){r.length++;i=true}else{r.push(i)}}if(o===","){if(i===undefined){fail("Elisions are not supported")}}else if(o==="]"){if(!n&&i===undefined&&r.length){l--;fail("Trailing comma in array")}return r}else{l--;fail()}}}function parseNumber(){l--;var t=l,r=e[l++],i;var o=function(r){var i=e.substr(t,l-t);if(r){var o=parseInt(i.replace(/^0o?/,""),8)}else{var o=Number(i)}if(Number.isNaN(o)){l--;fail('Bad numeric literal - "'+e.substr(t,l-t+1)+'"')}else if(!n&&!i.match(/^-?(0|[1-9][0-9]*)(\.[0-9]+)?(e[+-]?[0-9]+)?$/i)){l--;fail('Non-json numeric literal - "'+e.substr(t,l-t+1)+'"')}else{return o}};if(r==="-"||r==="+"&&n)r=e[l++];if(r==="N"&&n){parseKeyword("NaN");return NaN}if(r==="I"&&n){parseKeyword("Infinity");return o()}if(r>="1"&&r<="9"){while(l<s&&isDecDigit(e[l]))l++;r=e[l++]}if(r==="0"){r=e[l++];var a=r==="o"||r==="O"||isOctDigit(r);var c=r==="x"||r==="X";if(n&&(a||c)){while(l<s&&(c?isHexDigit:isOctDigit)(e[l]))l++;var u=1;if(e[t]==="-"){u=-1;t++}else if(e[t]==="+"){t++}return u*o(a)}}if(r==="."){while(l<s&&isDecDigit(e[l]))l++;r=e[l++]}if(r==="e"||r==="E"){r=e[l++];if(r==="-"||r==="+")l++;while(l<s&&isDecDigit(e[l]))l++;r=e[l++]}l--;return o()}function parseIdentifier(){l--;var t="";while(l<s){var n=e[l++];if(n==="\\"&&e[l]==="u"&&isHexDigit(e[l+1])&&isHexDigit(e[l+2])&&isHexDigit(e[l+3])&&isHexDigit(e[l+4])){n=String.fromCharCode(parseInt(e.substr(l+1,4),16));l+=5}if(t.length){if(r.isIdentifierPart(n)){t+=n}else{l--;return t}}else{if(r.isIdentifierStart(n)){t+=n}else{return undefined}}}fail()}function parseString(t){var r="";while(l<s){var a=e[l++];if(a===t){return r}else if(a==="\\"){if(l>=s)fail();a=e[l++];if(i[a]&&(n||a!="v"&&a!="'")){r+=i[a]}else if(n&&o(a)){newline(a)}else if(a==="u"||a==="x"&&n){var c=a==="u"?4:2;for(var u=0;u<c;u++){if(l>=s)fail();if(!isHexDigit(e[l]))fail("Bad escape sequence");l++}r+=String.fromCharCode(parseInt(e.substr(l-c,c),16))}else if(n&&isOctDigit(a)){if(a<"4"&&isOctDigit(e[l])&&isOctDigit(e[l+1])){var f=3}else if(isOctDigit(e[l])){var f=2}else{var f=1}l+=f-1;r+=String.fromCharCode(parseInt(e.substr(l-f,f),8))}else if(n){r+=a}else{l--;fail()}}else if(o(a)){fail()}else{if(!n&&a.charCodeAt(0)<32){l--;fail("Unexpected control character")}r+=a}}fail()}skipWhiteSpace();var h=parseGeneric();if(h!==undefined||l<s){skipWhiteSpace();if(l>=s){if(typeof t.reviver==="function"){h=t.reviver.call(null,"",h)}return h}else{fail()}}else{if(l){fail("No data, only a whitespace")}else{fail("No data, empty input")}}}e.exports.parse=function parseJSON(e,t){if(typeof t==="function"){t={reviver:t}}if(e===undefined){return undefined}if(typeof e!=="string")e=String(e);if(t==null)t={};if(t.reserved_keys==null)t.reserved_keys="ignore";if(t.reserved_keys==="throw"||t.reserved_keys==="ignore"){if(t.null_prototype==null){t.null_prototype=true}}try{return parse(e,t)}catch(e){if(e instanceof SyntaxError&&e.row!=null&&e.column!=null){var n=e;e=SyntaxError(n.message);e.column=n.column;e.row=n.row}throw e}};e.exports.tokenize=function tokenizeJSON(t,n){if(n==null)n={};n._tokenize=function(e){if(n._addstack)e.stack.unshift.apply(e.stack,n._addstack);r.push(e)};var r=[];r.data=e.exports.parse(t,n);return r}},1152:function(e,t){"use strict";var n=/; *([!#$%&'*+.^_`|~0-9A-Za-z-]+) *= *("(?:[\u000b\u0020\u0021\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\u000b\u0020-\u00ff])*"|[!#$%&'*+.^_`|~0-9A-Za-z-]+) */g;var r=/^[\u000b\u0020-\u007e\u0080-\u00ff]+$/;var i=/^[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;var o=/\\([\u000b\u0020-\u00ff])/g;var a=/([\\"])/g;var s=/^[!#$%&'*+.^_`|~0-9A-Za-z-]+\/[!#$%&'*+.^_`|~0-9A-Za-z-]+$/;t.format=format;t.parse=parse;function format(e){if(!e||typeof e!=="object"){throw new TypeError("argument obj is required")}var t=e.parameters;var n=e.type;if(!n||!s.test(n)){throw new TypeError("invalid type")}var r=n;if(t&&typeof t==="object"){var o;var a=Object.keys(t).sort();for(var c=0;c<a.length;c++){o=a[c];if(!i.test(o)){throw new TypeError("invalid parameter name")}r+="; "+o+"="+qstring(t[o])}}return r}function parse(e){if(!e){throw new TypeError("argument string is required")}var t=typeof e==="object"?getcontenttype(e):e;if(typeof t!=="string"){throw new TypeError("argument string is required to be a string")}var r=t.indexOf(";");var i=r!==-1?t.substr(0,r).trim():t.trim();if(!s.test(i)){throw new TypeError("invalid media type")}var a=new ContentType(i.toLowerCase());if(r!==-1){var c;var u;var l;n.lastIndex=r;while(u=n.exec(t)){if(u.index!==r){throw new TypeError("invalid parameter format")}r+=u[0].length;c=u[1].toLowerCase();l=u[2];if(l[0]==='"'){l=l.substr(1,l.length-2).replace(o,"$1")}a.parameters[c]=l}if(r!==t.length){throw new TypeError("invalid parameter format")}}return a}function getcontenttype(e){var t;if(typeof e.getHeader==="function"){t=e.getHeader("content-type")}else if(typeof e.headers==="object"){t=e.headers&&e.headers["content-type"]}if(typeof t!=="string"){throw new TypeError("content-type header is missing from object")}return t}function qstring(e){var t=String(e);if(i.test(t)){return t}if(t.length>0&&!r.test(t)){throw new TypeError("invalid parameter value")}return'"'+t.replace(a,"\\$1")+'"'}function ContentType(e){this.parameters=Object.create(null);this.type=e}},1153:function(e){e.exports=Headers;function Headers(e){var t=this;this._headers={};if(e instanceof Headers){e=e.raw()}for(var n in e){if(!e.hasOwnProperty(n)){continue}if(typeof e[n]==="string"){this.set(n,e[n])}else if(typeof e[n]==="number"&&!isNaN(e[n])){this.set(n,e[n].toString())}else if(Array.isArray(e[n])){e[n].forEach(function(e){t.append(n,e.toString())})}}}Headers.prototype.get=function(e){var t=this._headers[e.toLowerCase()];return t?t[0]:null};Headers.prototype.getAll=function(e){if(!this.has(e)){return[]}return this._headers[e.toLowerCase()]};Headers.prototype.forEach=function(e,t){Object.getOwnPropertyNames(this._headers).forEach(function(n){this._headers[n].forEach(function(r){e.call(t,r,n,this)},this)},this)};Headers.prototype.set=function(e,t){this._headers[e.toLowerCase()]=[t]};Headers.prototype.append=function(e,t){if(!this.has(e)){this.set(e,t);return}this._headers[e.toLowerCase()].push(t)};Headers.prototype.has=function(e){return this._headers.hasOwnProperty(e.toLowerCase())};Headers.prototype["delete"]=function(e){delete this._headers[e.toLowerCase()]};Headers.prototype.raw=function(){return this._headers}},1156:function(e,t,n){"use strict";n.r(t);n.d(t,"latestHelp",function(){return l});n.d(t,"latestArgs",function(){return f});n.d(t,"legacyArgsMri",function(){return p});n.d(t,"legacyArgs",function(){return h});n.d(t,"legacyHelp",function(){return m});var r=n(9544);var i=n.n(r);var o=n(4999);var a=n.n(o);var s=n(462);var c=n.n(s);var u=n(2675);const l=()=>`\n ${i.a.bold(`${a.a} now`)} [options] <command | path>\n\n ${i.a.dim("Commands:")}\n\n ${i.a.dim("Basic")}\n\n deploy [path] Performs a deployment ${i.a.bold("(default)")}\n dev Start a local development server\n init [example] Initialize an example project\n ls | list [app] Lists deployments\n inspect [id] Displays information related to a deployment\n login [email] Logs into your account or creates a new one\n logout Logs out of your account\n switch [scope] Switches between teams and your personal account\n help [cmd] Displays complete help for [cmd]\n\n ${i.a.dim("Advanced")}\n\n rm | remove [id] Removes a deployment\n domains [name] Manages your domain names\n dns [name] Manages your DNS records\n certs [cmd] Manages your SSL certificates\n secrets [name] Manages your secret environment variables\n logs [url] Displays the logs for a deployment\n teams Manages your teams\n whoami Shows the username of the currently logged in user\n\n ${i.a.dim("Options:")}\n\n -h, --help Output usage information\n -v, --version Output the version number\n -V, --platform-version Set the platform version to deploy to\n -n, --name Set the project name of the deployment\n -A ${i.a.bold.underline("FILE")}, --local-config=${i.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${i.a.bold.underline("DIR")}, --global-config=${i.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -d, --debug Debug mode [off]\n -f, --force Force a new deployment even if nothing has changed\n -t ${i.a.underline("TOKEN")}, --token=${i.a.underline("TOKEN")} Login token\n -p, --public Deployment is public (${i.a.dim("`/_src`")} is exposed)\n -e, --env Include an env var during run time (e.g.: ${i.a.dim("`-e KEY=value`")}). Can appear many times.\n -b, --build-env Similar to ${i.a.dim("`--env`")} but for build time only.\n -m, --meta Add metadata for the deployment (e.g.: ${i.a.dim("`-m KEY=value`")}). Can appear many times.\n -C, --no-clipboard Do not attempt to copy URL to clipboard\n -S, --scope Set a custom scope\n --regions Set default regions to enable the deployment on\n --prod Create a production deployment\n\n ${Object(u["default"])(`To view the usage information for Now 1.0, run ${c()("now help deploy-v1")}`)}\n\n ${i.a.dim("Examples:")}\n\n ${i.a.gray("")} Deploy the current directory\n\n ${i.a.cyan("$ now")}\n\n ${i.a.gray("")} Deploy a custom path\n\n ${i.a.cyan("$ now /usr/src/project")}\n\n ${i.a.gray("")} Deploy with environment variables\n\n ${i.a.cyan("$ now -e NODE_ENV=production -e SECRET=@mysql-secret")}\n\n ${i.a.gray("")} Show the usage information for the sub command ${i.a.dim("`list`")}\n\n ${i.a.cyan("$ now help list")}\n\n`;const f={"--name":String,"--force":Boolean,"--public":Boolean,"--no-clipboard":Boolean,"--env":[String],"--build-env":[String],"--meta":[String],"--no-scale":Boolean,"--regions":String,"--target":String,"--prod":Boolean,"-n":"--name","-f":"--force","-p":"--public","-e":"--env","-b":"--build-env","-C":"--no-clipboard","-m":"--meta"};const p={string:["name","build-env","alias","meta","session-affinity","regions","dotenv"],boolean:["help","version","debug","force","links","C","clipboard","forward-npm","docker","npm","static","public","no-scale","no-verify","dotenv"],default:{C:false,clipboard:true},alias:{env:"e",meta:"m","build-env":"b",dotenv:"E",help:"h",debug:"d",version:"v",force:"f",links:"l",public:"p","forward-npm":"N","session-affinity":"S",name:"n",project:"P",alias:"a"}};const d={};for(const e of p.string){d[`--${e}`]=String}for(const e of p.boolean){d[`--${e}`]=Boolean}for(const e of Object.keys(p.alias)){d[`-${p.alias[e]}`]=`--${e}`}const h=d;const m=()=>`\n ${i.a.bold(`${a.a} now`)} [options] <command | path>\n\n ${i.a.dim("Commands:")}\n\n ${i.a.dim("Cloud")}\n\n deploy [path] Performs a deployment ${i.a.bold("(default)")}\n ls | list [app] Lists deployments\n rm | remove [id] Removes a deployment\n ln | alias [id] [url] Configures aliases for deployments\n inspect [id] Displays information related to a deployment\n domains [name] Manages your domain names\n certs [cmd] Manages your SSL certificates\n secrets [name] Manages your secret environment variables\n dns [name] Manages your DNS records\n logs [url] Displays the logs for a deployment\n scale [args] Scales the instance count of a deployment\n init [example] Initialize an example project\n help [cmd] Displays complete help for [cmd]\n\n ${i.a.dim("Administrative")}\n\n billing | cc [cmd] Manages your credit cards and billing methods\n upgrade | downgrade [plan] Upgrades or downgrades your plan\n teams Manages your teams\n switch [scope] Switches between teams and your account\n login [email] Logs into your account or creates a new one\n logout Logs out of your account\n whoami Shows the username of the currently logged in user\n\n ${i.a.dim("Options:")}\n\n -h, --help Output usage information\n -v, --version Output the version number\n -V, --platform-version Set the platform version to deploy to\n -n, --name Set the project name of the deployment\n -A ${i.a.bold.underline("FILE")}, --local-config=${i.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${i.a.bold.underline("DIR")}, --global-config=${i.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -d, --debug Debug mode [off]\n -f, --force Force a new deployment even if nothing has changed\n -t ${i.a.underline("TOKEN")}, --token=${i.a.underline("TOKEN")} Login token\n -l, --links Copy symlinks without resolving their target\n -p, --public Deployment is public (${i.a.dim("`/_src`")} is exposed) [on for oss, off for premium]\n -e, --env Include an env var during run time (e.g.: ${i.a.dim("`-e KEY=value`")}). Can appear many times.\n -b, --build-env Similar to ${i.a.dim("`--env`")} but for build time only.\n -m, --meta Add metadata for the deployment (e.g.: ${i.a.dim("`-m KEY=value`")}). Can appear many times.\n -E ${i.a.underline("FILE")}, --dotenv=${i.a.underline("FILE")} Include env vars from .env file. Defaults to '.env'\n -C, --no-clipboard Do not attempt to copy URL to clipboard\n -N, --forward-npm Forward login information to install private npm modules\n --session-affinity Session affinity, \`ip\` or \`random\` (default) to control session affinity\n -S, --scope Set a custom scope\n --regions Set default regions or DCs to enable the deployment on\n --no-scale Skip scaling rules deploying with the default presets\n --no-verify Skip step of waiting until instance count meets given constraints\n\n ${i.a.dim(`Enforceable Types (by default, it's detected automatically):`)}\n\n --npm Node.js application\n --docker Docker container\n --static Static file hosting\n\n ${i.a.dim("Examples:")}\n\n ${i.a.gray("")} Deploy the current directory\n\n ${i.a.cyan("$ now")}\n\n ${i.a.gray("")} Deploy a custom path\n\n ${i.a.cyan("$ now /usr/src/project")}\n\n ${i.a.gray("")} Deploy a GitHub repository\n\n ${i.a.cyan("$ now user/repo#ref")}\n\n ${i.a.gray("")} Deploy with environment variables\n\n ${i.a.cyan("$ now -e NODE_ENV=production -e SECRET=@mysql-secret")}\n\n ${i.a.gray("")} Show the usage information for the sub command ${i.a.dim("`list`")}\n\n ${i.a.cyan("$ now help list")}\n\n`},1164:function(e,t,n){var r=n(6660);var i=n(3846);e.exports=function alloc(e,t,n){if(typeof e!=="number"){throw new TypeError('"size" argument must be a number')}if(e<0){throw new RangeError('"size" argument must not be negative')}if(Buffer.alloc){return Buffer.alloc(e,t,n)}var o=i(e);if(e===0){return o}if(t===undefined){return r(o,0)}if(typeof n!=="string"){n=undefined}return r(o,t,n)}},1172:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5897);const o=n(2617);const a=n(501);const s=n(5899).pathExists;function createLink(e,t,n){function makeLink(e,t){o.link(e,t,e=>{if(e)return n(e);n(null)})}s(t,(r,c)=>{if(r)return n(r);if(c)return n(null);o.lstat(e,(r,o)=>{if(r){r.message=r.message.replace("lstat","ensureLink");return n(r)}const c=i.dirname(t);s(c,(r,i)=>{if(r)return n(r);if(i)return makeLink(e,t);a.mkdirs(c,r=>{if(r)return n(r);makeLink(e,t)})})})})}function createLinkSync(e,t,n){const r=o.existsSync(t);if(r)return undefined;try{o.lstatSync(e)}catch(e){e.message=e.message.replace("lstat","ensureLink");throw e}const s=i.dirname(t);const c=o.existsSync(s);if(c)return o.linkSync(e,t);a.mkdirsSync(s);return o.linkSync(e,t)}e.exports={createLink:r(createLink),createLinkSync:createLinkSync}},1173:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(2617);const o=["access","appendFile","chmod","chown","close","copyFile","fchmod","fchown","fdatasync","fstat","fsync","ftruncate","futimes","lchown","lchmod","link","lstat","mkdir","mkdtemp","open","readFile","readdir","readlink","realpath","rename","rmdir","stat","symlink","truncate","unlink","utimes","writeFile"].filter(e=>{return typeof i[e]==="function"});Object.keys(i).forEach(e=>{if(e==="promises"){return}t[e]=i[e]});o.forEach(e=>{t[e]=r(i[e])});t.exists=function(e,t){if(typeof t==="function"){return i.exists(e,t)}return new Promise(t=>{return i.exists(e,t)})};t.read=function(e,t,n,r,o,a){if(typeof a==="function"){return i.read(e,t,n,r,o,a)}return new Promise((a,s)=>{i.read(e,t,n,r,o,(e,t,n)=>{if(e)return s(e);a({bytesRead:t,buffer:n})})})};t.write=function(e,t,...n){if(typeof n[n.length-1]==="function"){return i.write(e,t,...n)}return new Promise((r,o)=>{i.write(e,t,...n,(e,t,n)=>{if(e)return o(e);r({bytesWritten:t,buffer:n})})})}},1177:function(e,t,n){var r=n(9423).Buffer;var i=[0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759,2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977,2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755,2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956,3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270,936918e3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117];if(typeof Int32Array!=="undefined"){i=new Int32Array(i)}function ensureBuffer(e){if(r.isBuffer(e)){return e}var t=typeof r.alloc==="function"&&typeof r.from==="function";if(typeof e==="number"){return t?r.alloc(e):new r(e)}else if(typeof e==="string"){return t?r.from(e):new r(e)}else{throw new Error("input must be buffer, number, or string, received "+typeof e)}}function bufferizeInt(e){var t=ensureBuffer(4);t.writeInt32BE(e,0);return t}function _crc32(e,t){e=ensureBuffer(e);if(r.isBuffer(t)){t=t.readUInt32BE(0)}var n=~~t^-1;for(var o=0;o<e.length;o++){n=i[(n^e[o])&255]^n>>>8}return n^-1}function crc32(){return bufferizeInt(_crc32.apply(null,arguments))}crc32.signed=function(){return _crc32.apply(null,arguments)};crc32.unsigned=function(){return _crc32.apply(null,arguments)>>>0};e.exports=crc32},1178:function(e,t,n){"use strict";var r=n(8703);var i=Object.keys||function(e){var t=[];for(var n in e){t.push(n)}return t};e.exports=Duplex;var o=n(8107);o.inherits=n(8368);var a=n(1344);var s=n(517);o.inherits(Duplex,a);{var c=i(s.prototype);for(var u=0;u<c.length;u++){var l=c[u];if(!Duplex.prototype[l])Duplex.prototype[l]=s.prototype[l]}}function Duplex(e){if(!(this instanceof Duplex))return new Duplex(e);a.call(this,e);s.call(this,e);if(e&&e.readable===false)this.readable=false;if(e&&e.writable===false)this.writable=false;this.allowHalfOpen=true;if(e&&e.allowHalfOpen===false)this.allowHalfOpen=false;this.once("end",onend)}Object.defineProperty(Duplex.prototype,"writableHighWaterMark",{enumerable:false,get:function(){return this._writableState.highWaterMark}});function onend(){if(this.allowHalfOpen||this._writableState.ended)return;r.nextTick(onEndNT,this)}function onEndNT(e){e.end()}Object.defineProperty(Duplex.prototype,"destroyed",{get:function(){if(this._readableState===undefined||this._writableState===undefined){return false}return this._readableState.destroyed&&this._writableState.destroyed},set:function(e){if(this._readableState===undefined||this._writableState===undefined){return}this._readableState.destroyed=e;this._writableState.destroyed=e}});Duplex.prototype._destroy=function(e,t){this.push(null);this.end();r.nextTick(t,e)}},1195:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};var o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(8715));const s=o(n(6879));const c=o(n(6479));const u=o(n(8950));const l=/\.now\.sh$/;function upsertPathAlias(e,t,n,i,o){return r(this,void 0,void 0,function*(){let r=false;if(!l.test(i)){const n=yield c.default(e,t,i,o);if(n instanceof Error){return n}r=n.serviceType==="external"}const u=yield performUpsertPathAlias(t,i,n,o);if(u instanceof a.CertMissing){const a=yield s.default(e,t,o,i,!r);if(a instanceof Error){return a}return performUpsertPathAlias(t,i,n,o)}return u})}t.default=upsertPathAlias;function performUpsertPathAlias(e,t,n,i){return r(this,void 0,void 0,function*(){const r=u.default(`Updating path alias rules for ${t}`);try{const o=yield e.fetch(`/now/aliases`,{body:{alias:t,rules:n},method:"POST"});r();return o}catch(e){r();if(e.code==="cert_missing"||e.code==="cert_expired"){return new a.CertMissing(t)}if(e.status===409){return{uid:e.uid,alias:e.alias}}if(e.code==="rule_validation_failed"){return new a.RuleValidationFailed(e.serverMessage)}if(e.code==="invalid_alias"){return new a.InvalidAlias(t)}if(e.status===403){if(e.code==="alias_in_use"){console.log(e);return new a.AliasInUse(t)}if(e.code==="forbidden"){return new a.DomainPermissionDenied(t,i)}}throw e}})}},1200:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(8528);i.outputJson=r(n(9282));i.outputJsonSync=n(6158);i.outputJSON=i.outputJson;i.outputJSONSync=i.outputJsonSync;i.writeJSON=i.writeJson;i.writeJSONSync=i.writeJsonSync;i.readJSON=i.readJson;i.readJSONSync=i.readJsonSync;e.exports=i},1216:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(8715));function moveOutDomain(e,t,n,i){return r(this,void 0,void 0,function*(){try{return yield e.fetch(`/v4/domains/${n}`,{body:{op:"move-out",destination:i},method:"PATCH"})}catch(e){if(e.code==="forbidden"){return new o.DomainPermissionDenied(n,t)}if(e.code==="not_found"){return new o.DomainNotFound(n)}if(e.code==="invalid_move_destination"){return new o.InvalidMoveDestination(i)}if(e.code==="domain_move_conflict"){const{pendingAsyncPurchase:t,resolvable:n,suffix:r,message:i}=e;return new o.DomainMoveConflict({message:i,pendingAsyncPurchase:t,resolvable:n,suffix:r})}throw e}})}t.default=moveOutDomain},1218:function(e,t,n){"use strict";const r=n(5897);const i=n(2617);const o=n(7542);const a=n(9174);const s=n(8288);const c=n(1274);const u=n(1482);const l=(e,t,n,r)=>{if(!t){throw new TypeError("Expected a filepath")}if(n===undefined){throw new TypeError("Expected data to stringify")}r=Object.assign({indent:"\t",sortKeys:false},r);if(r.sortKeys){n=a(n,{deep:true,compare:typeof r.sortKeys==="function"&&r.sortKeys})}return e(t,n,r)};const f=e=>c(i.readFile)(e,"utf8").catch(()=>{});const p=(e,t,n)=>{return(n.detectIndent?f(e):Promise.resolve()).then(r=>{const i=r?u(r).indent:n.indent;const a=JSON.stringify(t,n.replacer,i);return c(o)(e,`${a}\n`,{mode:n.mode})})};const d=(e,t,n)=>{let r=n.indent;if(n.detectIndent){try{const t=i.readFileSync(e,"utf8");r=u(t).indent}catch(e){if(e.code!=="ENOENT"){throw e}}}const a=JSON.stringify(t,n.replacer,r);return o.sync(e,`${a}\n`,{mode:n.mode})};e.exports=((e,t,n)=>{return s(r.dirname(e),{fs:i}).then(()=>l(p,e,t,n))});e.exports.sync=((e,t,n)=>{s.sync(r.dirname(e),{fs:i});l(d,e,t,n)})},1249:function(e,t,n){"use strict";var r=n(9335).Buffer;var i=n(6401);var o=n(2984);var a={}.hasOwnProperty;var s=n(8731);var c=["api_key","idempotency_key","stripe_account","stripe_version"];var u=e.exports={isAuthKey:function(e){return typeof e=="string"&&/^(?:[a-z]{2}_)?[A-z0-9]{32}$/.test(e)},isOptionsHash:function(e){return s(e)&&c.some(function(t){return a.call(e,t)})},stringifyRequestData:function(e){return i.stringify(e,{arrayFormat:"brackets"})},makeURLInterpolator:function(){var e={"\n":"\\n",'"':'\\"',"\u2028":"\\u2028","\u2029":"\\u2029"};return function makeURLInterpolator(t){var n=t.replace(/["\n\r\u2028\u2029]/g,function(t){return e[t]});return function(e){return n.replace(/\{([\s\S]+?)\}/g,function(t,n){return encodeURIComponent(e[n]||"")})}}}(),getDataFromArgs:function(e){if(e.length<1||!s(e[0])){return{}}if(!u.isOptionsHash(e[0])){return e.shift()}var t=Object.keys(e[0]);var n=t.filter(function(e){return c.indexOf(e)>-1});if(n.length>0){console.warn("Stripe: Options found in arguments ("+n.join(", ")+"). Did you mean to pass an options "+"object? See https://github.com/stripe/stripe-node/wiki/Passing-Options.")}return{}},getOptionsFromArgs:function(e){var t={auth:null,headers:{}};if(e.length>0){var n=e[e.length-1];if(u.isAuthKey(n)){t.auth=e.pop()}else if(u.isOptionsHash(n)){var r=e.pop();if(r.api_key){t.auth=r.api_key}if(r.idempotency_key){t.headers["Idempotency-Key"]=r.idempotency_key}if(r.stripe_account){t.headers["Stripe-Account"]=r.stripe_account}if(r.stripe_version){t.headers["Stripe-Version"]=r.stripe_version}}}return t},protoExtend:function(e){var t=this;var n=a.call(e,"constructor")?e.constructor:function(){t.apply(this,arguments)};Object.assign(n,t);n.prototype=Object.create(t.prototype);Object.assign(n.prototype,e);return n},arrayToObject:function(e){if(Array.isArray(e)){var t={};e.map(function(e,n){t[n.toString()]=e});return t}return e},secureCompare:function(e,t){var e=r.from(e);var t=r.from(t);if(e.length!==t.length){return false}if(o.timingSafeEqual){return o.timingSafeEqual(e,t)}var n=e.length;var i=0;for(var a=0;a<n;++a){i|=e[a]^t[a]}return i===0},removeEmpty:function(e){if(typeof e!=="object"){throw new Error("Argument must be an object")}Object.keys(e).forEach(function(t){if(e[t]===null||e[t]===undefined){delete e[t]}});return e}}},1253:function(e,t,n){"use strict";const r=n(41);e.exports=(e=>typeof e==="string"?e.replace(r(),""):e)},1257:function(e,t,n){var r=n(2584);e.exports=function(e,t){e=e||{};Object.keys(t).forEach(function(n){if(typeof e[n]==="undefined"){e[n]=r(t[n])}});return e}},1261:function(e){e.exports={$schema:"http://json-schema.org/draft-07/schema#",$id:"http://json-schema.org/draft-07/schema#",title:"Core schema meta-schema",definitions:{schemaArray:{type:"array",minItems:1,items:{$ref:"#"}},nonNegativeInteger:{type:"integer",minimum:0},nonNegativeIntegerDefault0:{allOf:[{$ref:"#/definitions/nonNegativeInteger"},{default:0}]},simpleTypes:{enum:["array","boolean","integer","null","number","object","string"]},stringArray:{type:"array",items:{type:"string"},uniqueItems:true,default:[]}},type:["object","boolean"],properties:{$id:{type:"string",format:"uri-reference"},$schema:{type:"string",format:"uri"},$ref:{type:"string",format:"uri-reference"},$comment:{type:"string"},title:{type:"string"},description:{type:"string"},default:true,readOnly:{type:"boolean",default:false},examples:{type:"array",items:true},multipleOf:{type:"number",exclusiveMinimum:0},maximum:{type:"number"},exclusiveMaximum:{type:"number"},minimum:{type:"number"},exclusiveMinimum:{type:"number"},maxLength:{$ref:"#/definitions/nonNegativeInteger"},minLength:{$ref:"#/definitions/nonNegativeIntegerDefault0"},pattern:{type:"string",format:"regex"},additionalItems:{$ref:"#"},items:{anyOf:[{$ref:"#"},{$ref:"#/definitions/schemaArray"}],default:true},maxItems:{$ref:"#/definitions/nonNegativeInteger"},minItems:{$ref:"#/definitions/nonNegativeIntegerDefault0"},uniqueItems:{type:"boolean",default:false},contains:{$ref:"#"},maxProperties:{$ref:"#/definitions/nonNegativeInteger"},minProperties:{$ref:"#/definitions/nonNegativeIntegerDefault0"},required:{$ref:"#/definitions/stringArray"},additionalProperties:{$ref:"#"},definitions:{type:"object",additionalProperties:{$ref:"#"},default:{}},properties:{type:"object",additionalProperties:{$ref:"#"},default:{}},patternProperties:{type:"object",additionalProperties:{$ref:"#"},propertyNames:{format:"regex"},default:{}},dependencies:{type:"object",additionalProperties:{anyOf:[{$ref:"#"},{$ref:"#/definitions/stringArray"}]}},propertyNames:{$ref:"#"},const:true,enum:{type:"array",items:true,minItems:1,uniqueItems:true},type:{anyOf:[{$ref:"#/definitions/simpleTypes"},{type:"array",items:{$ref:"#/definitions/simpleTypes"},minItems:1,uniqueItems:true}]},format:{type:"string"},contentMediaType:{type:"string"},contentEncoding:{type:"string"},if:{$ref:"#"},then:{$ref:"#"},else:{$ref:"#"},allOf:{$ref:"#/definitions/schemaArray"},anyOf:{$ref:"#/definitions/schemaArray"},oneOf:{$ref:"#/definitions/schemaArray"},not:{$ref:"#"}},default:true}},1262:function(e,t,n){var r=n(649);var i=function(e,t,n,r){var i=[];var o,a,s=0;while(o=t.exec(e)){a=e.slice(s,t.lastIndex-o[0].length);if(a.length){i.push(a)}if(n){var c=n.apply(r,o.slice(1).concat(i.length));if(typeof c!="undefined"){if(c.specifier==="%"){i.push("%")}else{i.push(c)}}}s=t.lastIndex}a=e.slice(s);if(a.length){i.push(a)}return i};var o=function(e){this._mapped=false;this._format=e;this._tokens=i(e,this._re,this._parseDelim,this)};o.prototype._re=/\%(?:\(([\w_.]+)\)|([1-9]\d*)\$)?([0 +\-\#]*)(\*|\d+)?(\.)?(\*|\d+)?[hlL]?([\%bscdeEfFgGioOuxX])/g;o.prototype._parseDelim=function(e,t,n,r,i,o,a){if(e){this._mapped=true}return{mapping:e,intmapping:t,flags:n,_minWidth:r,period:i,_precision:o,specifier:a}};o.prototype._specifiers={b:{base:2,isInt:true},o:{base:8,isInt:true},x:{base:16,isInt:true},X:{extend:["x"],toUpper:true},d:{base:10,isInt:true},i:{extend:["d"]},u:{extend:["d"],isUnsigned:true},c:{setArg:function(e){if(!isNaN(e.arg)){var t=parseInt(e.arg);if(t<0||t>127){throw new Error("invalid character code passed to %c in printf")}e.arg=isNaN(t)?""+t:String.fromCharCode(t)}}},s:{setMaxWidth:function(e){e.maxWidth=e.period=="."?e.precision:-1}},e:{isDouble:true,doubleNotation:"e"},E:{extend:["e"],toUpper:true},f:{isDouble:true,doubleNotation:"f"},F:{extend:["f"]},g:{isDouble:true,doubleNotation:"g"},G:{extend:["g"],toUpper:true},O:{isObject:true}};o.prototype.format=function(e){if(this._mapped&&typeof e!="object"){throw new Error("format requires a mapping")}var t="";var n=0;for(var r=0,i;r<this._tokens.length;r++){i=this._tokens[r];if(typeof i=="string"){t+=i}else{if(this._mapped){var o=i.mapping.split(".");var a=e;for(var s=0,c=o.length;s<c;s++){a=a[o[s]];if(typeof a==="undefined"){break}}if(typeof a=="undefined"){throw new Error("missing key "+i.mapping)}i.arg=a}else{if(i.intmapping){n=parseInt(i.intmapping)-1}if(n>=arguments.length){throw new Error("got "+arguments.length+" printf arguments, insufficient for '"+this._format+"'")}i.arg=arguments[n++]}if(!i.compiled){i.compiled=true;i.sign="";i.zeroPad=false;i.rightJustify=false;i.alternative=false;var u={};for(var l=i.flags.length;l--;){var f=i.flags.charAt(l);u[f]=true;switch(f){case" ":i.sign=" ";break;case"+":i.sign="+";break;case"0":i.zeroPad=u["-"]?false:true;break;case"-":i.rightJustify=true;i.zeroPad=false;break;case"#":i.alternative=true;break;default:throw Error("bad formatting flag '"+i.flags.charAt(l)+"'")}}i.minWidth=i._minWidth?parseInt(i._minWidth):0;i.maxWidth=-1;i.toUpper=false;i.isUnsigned=false;i.isInt=false;i.isDouble=false;i.isObject=false;i.precision=1;if(i.period=="."){if(i._precision){i.precision=parseInt(i._precision)}else{i.precision=0}}var p=this._specifiers[i.specifier];if(typeof p=="undefined"){throw new Error("unexpected specifier '"+i.specifier+"'")}if(p.extend){var d=this._specifiers[p.extend];for(var h in d){p[h]=d[h]}delete p.extend}for(var m in p){i[m]=p[m]}}if(typeof i.setArg=="function"){i.setArg(i)}if(typeof i.setMaxWidth=="function"){i.setMaxWidth(i)}if(i._minWidth=="*"){if(this._mapped){throw new Error("* width not supported in mapped formats")}i.minWidth=parseInt(arguments[n++]);if(isNaN(i.minWidth)){throw new Error("the argument for * width at position "+n+" is not a number in "+this._format)}if(i.minWidth<0){i.rightJustify=true;i.minWidth=-i.minWidth}}if(i._precision=="*"&&i.period=="."){if(this._mapped){throw new Error("* precision not supported in mapped formats")}i.precision=parseInt(arguments[n++]);if(isNaN(i.precision)){throw Error("the argument for * precision at position "+n+" is not a number in "+this._format)}if(i.precision<0){i.precision=1;i.period=""}}if(i.isInt){if(i.period=="."){i.zeroPad=false}this.formatInt(i)}else if(i.isDouble){if(i.period!="."){i.precision=6}this.formatDouble(i)}else if(i.isObject){this.formatObject(i)}this.fitField(i);t+=""+i.arg}}return t};o.prototype._zeros10="0000000000";o.prototype._spaces10=" ";o.prototype.formatInt=function(e){var t=parseInt(e.arg);if(!isFinite(t)){if(typeof e.arg!="number"){throw new Error("format argument '"+e.arg+"' not an integer; parseInt returned "+t)}t=0}if(t<0&&(e.isUnsigned||e.base!=10)){t=4294967295+t+1}if(t<0){e.arg=(-t).toString(e.base);this.zeroPad(e);e.arg="-"+e.arg}else{e.arg=t.toString(e.base);if(!t&&!e.precision){e.arg=""}else{this.zeroPad(e)}if(e.sign){e.arg=e.sign+e.arg}}if(e.base==16){if(e.alternative){e.arg="0x"+e.arg}e.arg=e.toUpper?e.arg.toUpperCase():e.arg.toLowerCase()}if(e.base==8){if(e.alternative&&e.arg.charAt(0)!="0"){e.arg="0"+e.arg}}};o.prototype.formatDouble=function(e){var t=parseFloat(e.arg);if(!isFinite(t)){if(typeof e.arg!="number"){throw new Error("format argument '"+e.arg+"' not a float; parseFloat returned "+t)}t=0}switch(e.doubleNotation){case"e":{e.arg=t.toExponential(e.precision);break}case"f":{e.arg=t.toFixed(e.precision);break}case"g":{if(Math.abs(t)<1e-4){e.arg=t.toExponential(e.precision>0?e.precision-1:e.precision)}else{e.arg=t.toPrecision(e.precision)}if(!e.alternative){e.arg=e.arg.replace(/(\..*[^0])0*e/,"$1e");e.arg=e.arg.replace(/\.0*e/,"e").replace(/\.0$/,"")}break}default:throw new Error("unexpected double notation '"+e.doubleNotation+"'")}e.arg=e.arg.replace(/e\+(\d)$/,"e+0$1").replace(/e\-(\d)$/,"e-0$1");if(e.alternative){e.arg=e.arg.replace(/^(\d+)$/,"$1.");e.arg=e.arg.replace(/^(\d+)e/,"$1.e")}if(t>=0&&e.sign){e.arg=e.sign+e.arg}e.arg=e.toUpper?e.arg.toUpperCase():e.arg.toLowerCase()};o.prototype.formatObject=function(e){var t=e.period==="."?e.precision:null;e.arg=r.inspect(e.arg,!e.alternative,t)};o.prototype.zeroPad=function(e,t){t=arguments.length==2?t:e.precision;var n=false;if(typeof e.arg!="string"){e.arg=""+e.arg}if(e.arg.substr(0,1)==="-"){n=true;e.arg=e.arg.substr(1)}var r=t-10;while(e.arg.length<r){e.arg=e.rightJustify?e.arg+this._zeros10:this._zeros10+e.arg}var i=t-e.arg.length;e.arg=e.rightJustify?e.arg+this._zeros10.substring(0,i):this._zeros10.substring(0,i)+e.arg;if(n)e.arg="-"+e.arg};o.prototype.fitField=function(e){if(e.maxWidth>=0&&e.arg.length>e.maxWidth){return e.arg.substring(0,e.maxWidth)}if(e.zeroPad){this.zeroPad(e,e.minWidth);return}this.spacePad(e)};o.prototype.spacePad=function(e,t){t=arguments.length==2?t:e.minWidth;if(typeof e.arg!="string"){e.arg=""+e.arg}var n=t-10;while(e.arg.length<n){e.arg=e.rightJustify?e.arg+this._spaces10:this._spaces10+e.arg}var r=t-e.arg.length;e.arg=e.rightJustify?e.arg+this._spaces10.substring(0,r):this._spaces10.substring(0,r)+e.arg};e.exports=function(){var e=Array.prototype.slice.call(arguments),t,r;if(e[0]instanceof n(6886).Stream){t=e.shift()}r=e.shift();var i=new o(r);var a=i.format.apply(i,e);if(t){t.write(a)}else{return a}};e.exports.Formatter=o},1263:function(e){e.exports=function(e,t){if(!t)t={};var n={bools:{},strings:{},unknownFn:null};if(typeof t["unknown"]==="function"){n.unknownFn=t["unknown"]}if(typeof t["boolean"]==="boolean"&&t["boolean"]){n.allBools=true}else{[].concat(t["boolean"]).filter(Boolean).forEach(function(e){n.bools[e]=true})}var r={};Object.keys(t.alias||{}).forEach(function(e){r[e]=[].concat(t.alias[e]);r[e].forEach(function(t){r[t]=[e].concat(r[e].filter(function(e){return t!==e}))})});[].concat(t.string).filter(Boolean).forEach(function(e){n.strings[e]=true;if(r[e]){n.strings[r[e]]=true}});var i=t["default"]||{};var o={_:[]};Object.keys(n.bools).forEach(function(e){setArg(e,i[e]===undefined?false:i[e])});var a=[];if(e.indexOf("--")!==-1){a=e.slice(e.indexOf("--")+1);e=e.slice(0,e.indexOf("--"))}function argDefined(e,t){return n.allBools&&/^--[^=]+$/.test(t)||n.strings[e]||n.bools[e]||r[e]}function setArg(e,t,i){if(i&&n.unknownFn&&!argDefined(e,i)){if(n.unknownFn(i)===false)return}var a=!n.strings[e]&&isNumber(t)?Number(t):t;setKey(o,e.split("."),a);(r[e]||[]).forEach(function(e){setKey(o,e.split("."),a)})}function setKey(e,t,r){var i=e;t.slice(0,-1).forEach(function(e){if(i[e]===undefined)i[e]={};i=i[e]});var o=t[t.length-1];if(i[o]===undefined||n.bools[o]||typeof i[o]==="boolean"){i[o]=r}else if(Array.isArray(i[o])){i[o].push(r)}else{i[o]=[i[o],r]}}function aliasIsBoolean(e){return r[e].some(function(e){return n.bools[e]})}for(var s=0;s<e.length;s++){var c=e[s];if(/^--.+=/.test(c)){var u=c.match(/^--([^=]+)=([\s\S]*)$/);var l=u[1];var f=u[2];if(n.bools[l]){f=f!=="false"}setArg(l,f,c)}else if(/^--no-.+/.test(c)){var l=c.match(/^--no-(.+)/)[1];setArg(l,false,c)}else if(/^--.+/.test(c)){var l=c.match(/^--(.+)/)[1];var p=e[s+1];if(p!==undefined&&!/^-/.test(p)&&!n.bools[l]&&!n.allBools&&(r[l]?!aliasIsBoolean(l):true)){setArg(l,p,c);s++}else if(/^(true|false)$/.test(p)){setArg(l,p==="true",c);s++}else{setArg(l,n.strings[l]?"":true,c)}}else if(/^-[^-]+/.test(c)){var d=c.slice(1,-1).split("");var h=false;for(var m=0;m<d.length;m++){var p=c.slice(m+2);if(p==="-"){setArg(d[m],p,c);continue}if(/[A-Za-z]/.test(d[m])&&/=/.test(p)){setArg(d[m],p.split("=")[1],c);h=true;break}if(/[A-Za-z]/.test(d[m])&&/-?\d+(\.\d*)?(e-?\d+)?$/.test(p)){setArg(d[m],p,c);h=true;break}if(d[m+1]&&d[m+1].match(/\W/)){setArg(d[m],c.slice(m+2),c);h=true;break}else{setArg(d[m],n.strings[d[m]]?"":true,c)}}var l=c.slice(-1)[0];if(!h&&l!=="-"){if(e[s+1]&&!/^(-|--)[^-]/.test(e[s+1])&&!n.bools[l]&&(r[l]?!aliasIsBoolean(l):true)){setArg(l,e[s+1],c);s++}else if(e[s+1]&&/true|false/.test(e[s+1])){setArg(l,e[s+1]==="true",c);s++}else{setArg(l,n.strings[l]?"":true,c)}}}else{if(!n.unknownFn||n.unknownFn(c)!==false){o._.push(n.strings["_"]||!isNumber(c)?c:Number(c))}if(t.stopEarly){o._.push.apply(o._,e.slice(s+1));break}}}Object.keys(i).forEach(function(e){if(!hasKey(o,e.split("."))){setKey(o,e.split("."),i[e]);(r[e]||[]).forEach(function(t){setKey(o,t.split("."),i[e])})}});if(t["--"]){o["--"]=new Array;a.forEach(function(e){o["--"].push(e)})}else{a.forEach(function(e){o._.push(e)})}return o};function hasKey(e,t){var n=e;t.slice(0,-1).forEach(function(e){n=n[e]||{}});var r=t[t.length-1];return r in n}function isNumber(e){if(typeof e==="number")return true;if(/^0x[0-9a-f]+$/i.test(e))return true;return/^[-+]?(?:\d+(?:\.\d*)?|\.\d+)(e[-+]?\d+)?$/.test(e)}},1272:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({path:"products",includeBasic:["list","retrieve","update","del"],create:i({method:"POST",required:["name"]})})},1273:function(e){var t=1e3;var n=t*60;var r=n*60;var i=r*24;var o=i*365.25;e.exports=function(e,t){t=t||{};var n=typeof e;if(n==="string"&&e.length>0){return parse(e)}else if(n==="number"&&isNaN(e)===false){return t.long?fmtLong(e):fmtShort(e)}throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))};function parse(e){e=String(e);if(e.length>100){return}var a=/^((?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec(e);if(!a){return}var s=parseFloat(a[1]);var c=(a[2]||"ms").toLowerCase();switch(c){case"years":case"year":case"yrs":case"yr":case"y":return s*o;case"days":case"day":case"d":return s*i;case"hours":case"hour":case"hrs":case"hr":case"h":return s*r;case"minutes":case"minute":case"mins":case"min":case"m":return s*n;case"seconds":case"second":case"secs":case"sec":case"s":return s*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return s;default:return undefined}}function fmtShort(e){if(e>=i){return Math.round(e/i)+"d"}if(e>=r){return Math.round(e/r)+"h"}if(e>=n){return Math.round(e/n)+"m"}if(e>=t){return Math.round(e/t)+"s"}return e+"ms"}function fmtLong(e){return plural(e,i,"day")||plural(e,r,"hour")||plural(e,n,"minute")||plural(e,t,"second")||e+" ms"}function plural(e,t,n){if(e<t){return}if(e<t*1.5){return Math.floor(e/t)+" "+n}return Math.ceil(e/t)+" "+n+"s"}},1274:function(e){"use strict";var t=function(e,t,n){return function(){var r=this;var i=new Array(arguments.length);for(var o=0;o<arguments.length;o++){i[o]=arguments[o]}return new t(function(t,o){i.push(function(e,r){if(e){o(e)}else if(n.multiArgs){var i=new Array(arguments.length-1);for(var a=1;a<arguments.length;a++){i[a-1]=arguments[a]}t(i)}else{t(r)}});e.apply(r,i)})}};var n=e.exports=function(e,n,r){if(typeof n!=="function"){r=n;n=Promise}r=r||{};r.exclude=r.exclude||[/.+Sync$/];var i=function(e){var t=function(t){return typeof t==="string"?e===t:t.test(e)};return r.include?r.include.some(t):!r.exclude.some(t)};var o=typeof e==="function"?function(){if(r.excludeMain){return e.apply(this,arguments)}return t(e,n,r).apply(this,arguments)}:{};return Object.keys(e).reduce(function(o,a){var s=e[a];o[a]=typeof s==="function"&&i(a)?t(s,n,r):s;return o},o)};n.all=n},1279:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5844);function truncate(e,t){if(t===void 0){t=0}if(typeof e!=="string"||t===0){return e}return e.length<=t?e:e.substr(0,t)+"..."}t.truncate=truncate;function snipLine(e,t){var n=e;var r=n.length;if(r<=150){return n}if(t>r){t=r}var i=Math.max(t-60,0);if(i<5){i=0}var o=Math.min(i+140,r);if(o>r-5){o=r}if(o===r){i=Math.max(o-140,0)}n=n.slice(i,o);if(i>0){n="'{snip} "+n}if(o<r){n+=" {snip}"}return n}t.snipLine=snipLine;function safeJoin(e,t){if(!Array.isArray(e)){return""}var n=[];for(var r=0;r<e.length;r++){var i=e[r];try{n.push(String(i))}catch(e){n.push("[value cannot be serialized]")}}return n.join(t)}t.safeJoin=safeJoin;function keysToEventMessage(e,t){if(t===void 0){t=40}if(!e.length){return"[object has no keys]"}if(e[0].length>=t){return truncate(e[0],t)}for(var n=e.length;n>0;n--){var r=e.slice(0,n).join(", ");if(r.length>t){continue}if(n===e.length){return r}return truncate(r,t)}return""}t.keysToEventMessage=keysToEventMessage;function isMatchingPattern(e,t){if(r.isRegExp(t)){return t.test(e)}if(typeof t==="string"){return e.includes(t)}return false}t.isMatchingPattern=isMatchingPattern},1286:function(e,t,n){"use strict";const r=n(5897);const i=n(2617);const o=n(2058);const a=n(1631);const s=n(1274);const c=(e,t)=>a(o(e),r.relative(".",t));e.exports=(e=>s(i.readFile)(e,"utf8").then(t=>c(t,e)));e.exports.sync=(e=>c(i.readFileSync(e,"utf8"),e))},1293:function(e){"use strict";e.exports=function generate_comment(e,t,n){var r=" ";var i=e.schema[t];var o=e.errSchemaPath+"/"+t;var a=!e.opts.allErrors;var s=e.util.toQuotedString(i);if(e.opts.$comment===true){r+=" console.log("+s+");"}else if(typeof e.opts.$comment=="function"){r+=" self._opts.$comment("+s+", "+e.util.toQuotedString(o)+", validate.root.schema);"}return r}},1295:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);const o=(e,t)=>{const n=e.sort((e,n)=>{const r=e[t]?e[t].length:0;const i=n[t]?n[t].length:0;return i-r})[0];if(!n[t]){return null}return n[t].length};t["default"]=(e=>{let t="";const n=o(e,"src");const r=o(e,"dest");const a=6;const s=" ".repeat(a);const c=" ".repeat(r||10);const u=i.a.grey("->");for(const r of e){if(r.handle){t+=`${i.a.grey("╶")} ${i.a.cyan(r.handle)}`;continue}const{src:o,dest:l,status:f,headers:p}=r;const d=e.indexOf(r)===e.length-1;const h=d?"":`\n`;const m=i.a.cyan(o.padEnd(n+a));const v=l?`${u}${s}${l}`:` ${s}${c}`;const g=f?i.a.grey(`[${f}]`):"";let y=null;if(p){y=`\n`;const e=Object.keys(p);for(const t of e){const n=p[t];const r=e.indexOf(t)===e.length-1;const o=r?"":`\n`;const a=i.a.grey(r?"└──":"├──");y+=`${a} ${t}: ${n}${o}`}}const b=i.a.grey(y?"┌":"╶");const w=`${m}${v}${s}${g}`;t+=`${b} ${w}${y||""}${h}`}return t})},1301:function(e){"use strict";e.exports=clone;function clone(e){if(e===null||typeof e!=="object")return e;if(e instanceof Object)var t={__proto__:e.__proto__};else var t=Object.create(null);Object.getOwnPropertyNames(e).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(e,n))});return t}},1315:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(6369);const o=n(5869);function init({cacheDir:e}){return r(this,void 0,void 0,function*(){yield Promise.all([o.initializeRuntime(o.runtimes.python),i.installPython(e,"3.7.2")])})}t.init=init},1318:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=n(8715);const s=i(n(4892));const c=i(n(4573));const u=i(n(8303));const l=i(n(357));const f=i(n(586));const p=i(n(1960));function add(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:d}=e;const{currentTeam:h}=d;const{apiUrl:m}=e;const v=t["--debug"];const g=new c.default({apiUrl:m,token:r,currentTeam:h,debug:v});let y=null;try{({contextName:y}=yield u.default(g))}catch(e){if(e.code==="NOT_AUTHORIZED"){i.error(e.message);return 1}throw e}const b=l.default(n);if(!b){i.error(`Invalid number of arguments. See: ${o.default.cyan("`now dns --help`")} for usage.`);return 1}const w=f.default();const{domain:x,data:k}=b;const j=yield p.default(i,k);if(!j){i.log(`Aborted`);return 1}const S=yield s.default(g,x,j);if(S instanceof a.DomainNotFound){i.error(`The domain ${x} can't be found under ${o.default.bold(y)} ${o.default.gray(w())}`);return 1}if(S instanceof a.DNSPermissionDenied){i.error(`You don't have permissions to add records to domain ${x} under ${o.default.bold(y)} ${o.default.gray(w())}`);return 1}if(S instanceof a.DNSInvalidPort){i.error(`Invalid <port> parameter. A number was expected ${o.default.gray(w())}`);return 1}if(S instanceof a.DNSInvalidType){i.error(`Invalid <type> parameter "${S.meta.type}". Expected one of A, AAAA, ALIAS, CAA, CNAME, MX, SRV, TXT ${o.default.gray(w())}`);return 1}if(S instanceof Error){i.error(S.message);return 1}console.log(`${o.default.cyan("> Success!")} DNS record for domain ${o.default.bold(x)} ${o.default.gray(`(${S.uid})`)} created under ${o.default.bold(y)} ${o.default.gray(w())}`);return 0})}t.default=add},1326:function(e,t,n){"use strict";var r=n(7188);var i=Object.prototype.hasOwnProperty;var o={allowDots:false,allowPrototypes:false,arrayLimit:20,decoder:r.decode,delimiter:"&",depth:5,parameterLimit:1e3,plainObjects:false,strictNullHandling:false};var a=function parseQueryStringValues(e,t){var n={};var r=t.ignoreQueryPrefix?e.replace(/^\?/,""):e;var a=t.parameterLimit===Infinity?undefined:t.parameterLimit;var s=r.split(t.delimiter,a);for(var c=0;c<s.length;++c){var u=s[c];var l=u.indexOf("]=");var f=l===-1?u.indexOf("="):l+1;var p,d;if(f===-1){p=t.decoder(u,o.decoder);d=t.strictNullHandling?null:""}else{p=t.decoder(u.slice(0,f),o.decoder);d=t.decoder(u.slice(f+1),o.decoder)}if(i.call(n,p)){n[p]=[].concat(n[p]).concat(d)}else{n[p]=d}}return n};var s=function(e,t,n){var r=t;for(var i=e.length-1;i>=0;--i){var o;var a=e[i];if(a==="[]"){o=[];o=o.concat(r)}else{o=n.plainObjects?Object.create(null):{};var s=a.charAt(0)==="["&&a.charAt(a.length-1)==="]"?a.slice(1,-1):a;var c=parseInt(s,10);if(!isNaN(c)&&a!==s&&String(c)===s&&c>=0&&(n.parseArrays&&c<=n.arrayLimit)){o=[];o[c]=r}else{o[s]=r}}r=o}return r};var c=function parseQueryStringKeys(e,t,n){if(!e){return}var r=n.allowDots?e.replace(/\.([^.[]+)/g,"[$1]"):e;var o=/(\[[^[\]]*])/;var a=/(\[[^[\]]*])/g;var c=o.exec(r);var u=c?r.slice(0,c.index):r;var l=[];if(u){if(!n.plainObjects&&i.call(Object.prototype,u)){if(!n.allowPrototypes){return}}l.push(u)}var f=0;while((c=a.exec(r))!==null&&f<n.depth){f+=1;if(!n.plainObjects&&i.call(Object.prototype,c[1].slice(1,-1))){if(!n.allowPrototypes){return}}l.push(c[1])}if(c){l.push("["+r.slice(c.index)+"]")}return s(l,t,n)};e.exports=function(e,t){var n=t?r.assign({},t):{};if(n.decoder!==null&&n.decoder!==undefined&&typeof n.decoder!=="function"){throw new TypeError("Decoder has to be a function.")}n.ignoreQueryPrefix=n.ignoreQueryPrefix===true;n.delimiter=typeof n.delimiter==="string"||r.isRegExp(n.delimiter)?n.delimiter:o.delimiter;n.depth=typeof n.depth==="number"?n.depth:o.depth;n.arrayLimit=typeof n.arrayLimit==="number"?n.arrayLimit:o.arrayLimit;n.parseArrays=n.parseArrays!==false;n.decoder=typeof n.decoder==="function"?n.decoder:o.decoder;n.allowDots=typeof n.allowDots==="boolean"?n.allowDots:o.allowDots;n.plainObjects=typeof n.plainObjects==="boolean"?n.plainObjects:o.plainObjects;n.allowPrototypes=typeof n.allowPrototypes==="boolean"?n.allowPrototypes:o.allowPrototypes;n.parameterLimit=typeof n.parameterLimit==="number"?n.parameterLimit:o.parameterLimit;n.strictNullHandling=typeof n.strictNullHandling==="boolean"?n.strictNullHandling:o.strictNullHandling;if(e===""||e===null||typeof e==="undefined"){return n.plainObjects?Object.create(null):{}}var i=typeof e==="string"?a(e,n):e;var s=n.plainObjects?Object.create(null):{};var u=Object.keys(i);for(var l=0;l<u.length;++l){var f=u[l];var p=c(f,i[f],n);s=r.merge(s,p,n)}return r.compact(s)}},1327:function(e){void function(t,n){if(typeof define==="function"&&define.amd){define(n)}else if(true){e.exports=n()}else{}}(this,function(){var e=/[#@] sourceMappingURL=([^\s'"]*)/;var t=RegExp("(?:"+"/\\*"+"(?:\\s*\r?\n(?://)?)?"+"(?:"+e.source+")"+"\\s*"+"\\*/"+"|"+"//(?:"+e.source+")"+")"+"\\s*");return{regex:t,_innerRegex:e,getFrom:function(e){var n=e.match(t);return n?n[1]||n[2]||"":null},existsIn:function(e){return t.test(e)},removeFrom:function(e){return e.replace(t,"")},insertBefore:function(e,n){var r=e.match(t);if(r){return e.slice(0,r.index)+n+e.slice(r.index)}else{return e+n}}}})},1332:function(e,t,n){"use strict";var r=n(7732),i=n(3459),o=n(9294),a=n(7523),s=n(597),c=n(6768),u=n(7107),l=n(3019),f=n(3384);e.exports=Ajv;Ajv.prototype.validate=validate;Ajv.prototype.compile=compile;Ajv.prototype.addSchema=addSchema;Ajv.prototype.addMetaSchema=addMetaSchema;Ajv.prototype.validateSchema=validateSchema;Ajv.prototype.getSchema=getSchema;Ajv.prototype.removeSchema=removeSchema;Ajv.prototype.addFormat=addFormat;Ajv.prototype.errorsText=errorsText;Ajv.prototype._addSchema=_addSchema;Ajv.prototype._compile=_compile;Ajv.prototype.compileAsync=n(2893);var p=n(7733);Ajv.prototype.addKeyword=p.add;Ajv.prototype.getKeyword=p.get;Ajv.prototype.removeKeyword=p.remove;Ajv.prototype.validateKeyword=p.validate;var d=n(9498);Ajv.ValidationError=d.Validation;Ajv.MissingRefError=d.MissingRef;Ajv.$dataMetaSchema=l;var h="http://json-schema.org/draft-07/schema";var m=["removeAdditional","useDefaults","coerceTypes","strictDefaults"];var v=["/properties"];function Ajv(e){if(!(this instanceof Ajv))return new Ajv(e);e=this._opts=f.copy(e)||{};setLogger(this);this._schemas={};this._refs={};this._fragments={};this._formats=c(e.format);this._cache=e.cache||new o;this._loadingSchemas={};this._compilations=[];this.RULES=u();this._getId=chooseGetId(e);e.loopRequired=e.loopRequired||Infinity;if(e.errorDataPath=="property")e._errorDataPathProperty=true;if(e.serialize===undefined)e.serialize=s;this._metaOpts=getMetaSchemaOptions(this);if(e.formats)addInitialFormats(this);addDefaultMetaSchema(this);if(typeof e.meta=="object")this.addMetaSchema(e.meta);if(e.nullable)this.addKeyword("nullable",{metaSchema:{type:"boolean"}});addInitialSchemas(this)}function validate(e,t){var n;if(typeof e=="string"){n=this.getSchema(e);if(!n)throw new Error('no schema with key or ref "'+e+'"')}else{var r=this._addSchema(e);n=r.validate||this._compile(r)}var i=n(t);if(n.$async!==true)this.errors=n.errors;return i}function compile(e,t){var n=this._addSchema(e,undefined,t);return n.validate||this._compile(n)}function addSchema(e,t,n,r){if(Array.isArray(e)){for(var o=0;o<e.length;o++)this.addSchema(e[o],undefined,n,r);return this}var a=this._getId(e);if(a!==undefined&&typeof a!="string")throw new Error("schema id must be string");t=i.normalizeId(t||a);checkUnique(this,t);this._schemas[t]=this._addSchema(e,n,r,true);return this}function addMetaSchema(e,t,n){this.addSchema(e,t,n,true);return this}function validateSchema(e,t){var n=e.$schema;if(n!==undefined&&typeof n!="string")throw new Error("$schema must be a string");n=n||this._opts.defaultMeta||defaultMeta(this);if(!n){this.logger.warn("meta-schema not available");this.errors=null;return true}var r=this.validate(n,e);if(!r&&t){var i="schema is invalid: "+this.errorsText();if(this._opts.validateSchema=="log")this.logger.error(i);else throw new Error(i)}return r}function defaultMeta(e){var t=e._opts.meta;e._opts.defaultMeta=typeof t=="object"?e._getId(t)||t:e.getSchema(h)?h:undefined;return e._opts.defaultMeta}function getSchema(e){var t=_getSchemaObj(this,e);switch(typeof t){case"object":return t.validate||this._compile(t);case"string":return this.getSchema(t);case"undefined":return _getSchemaFragment(this,e)}}function _getSchemaFragment(e,t){var n=i.schema.call(e,{schema:{}},t);if(n){var o=n.schema,s=n.root,c=n.baseId;var u=r.call(e,o,s,undefined,c);e._fragments[t]=new a({ref:t,fragment:true,schema:o,root:s,baseId:c,validate:u});return u}}function _getSchemaObj(e,t){t=i.normalizeId(t);return e._schemas[t]||e._refs[t]||e._fragments[t]}function removeSchema(e){if(e instanceof RegExp){_removeAllSchemas(this,this._schemas,e);_removeAllSchemas(this,this._refs,e);return this}switch(typeof e){case"undefined":_removeAllSchemas(this,this._schemas);_removeAllSchemas(this,this._refs);this._cache.clear();return this;case"string":var t=_getSchemaObj(this,e);if(t)this._cache.del(t.cacheKey);delete this._schemas[e];delete this._refs[e];return this;case"object":var n=this._opts.serialize;var r=n?n(e):e;this._cache.del(r);var o=this._getId(e);if(o){o=i.normalizeId(o);delete this._schemas[o];delete this._refs[o]}}return this}function _removeAllSchemas(e,t,n){for(var r in t){var i=t[r];if(!i.meta&&(!n||n.test(r))){e._cache.del(i.cacheKey);delete t[r]}}}function _addSchema(e,t,n,r){if(typeof e!="object"&&typeof e!="boolean")throw new Error("schema should be object or boolean");var o=this._opts.serialize;var s=o?o(e):e;var c=this._cache.get(s);if(c)return c;r=r||this._opts.addUsedSchema!==false;var u=i.normalizeId(this._getId(e));if(u&&r)checkUnique(this,u);var l=this._opts.validateSchema!==false&&!t;var f;if(l&&!(f=u&&u==i.normalizeId(e.$schema)))this.validateSchema(e,true);var p=i.ids.call(this,e);var d=new a({id:u,schema:e,localRefs:p,cacheKey:s,meta:n});if(u[0]!="#"&&r)this._refs[u]=d;this._cache.put(s,d);if(l&&f)this.validateSchema(e,true);return d}function _compile(e,t){if(e.compiling){e.validate=callValidate;callValidate.schema=e.schema;callValidate.errors=null;callValidate.root=t?t:callValidate;if(e.schema.$async===true)callValidate.$async=true;return callValidate}e.compiling=true;var n;if(e.meta){n=this._opts;this._opts=this._metaOpts}var i;try{i=r.call(this,e.schema,t,e.localRefs)}catch(t){delete e.validate;throw t}finally{e.compiling=false;if(e.meta)this._opts=n}e.validate=i;e.refs=i.refs;e.refVal=i.refVal;e.root=i.root;return i;function callValidate(){var t=e.validate;var n=t.apply(this,arguments);callValidate.errors=t.errors;return n}}function chooseGetId(e){switch(e.schemaId){case"auto":return _get$IdOrId;case"id":return _getId;default:return _get$Id}}function _getId(e){if(e.$id)this.logger.warn("schema $id ignored",e.$id);return e.id}function _get$Id(e){if(e.id)this.logger.warn("schema id ignored",e.id);return e.$id}function _get$IdOrId(e){if(e.$id&&e.id&&e.$id!=e.id)throw new Error("schema $id is different from id");return e.$id||e.id}function errorsText(e,t){e=e||this.errors;if(!e)return"No errors";t=t||{};var n=t.separator===undefined?", ":t.separator;var r=t.dataVar===undefined?"data":t.dataVar;var i="";for(var o=0;o<e.length;o++){var a=e[o];if(a)i+=r+a.dataPath+" "+a.message+n}return i.slice(0,-n.length)}function addFormat(e,t){if(typeof t=="string")t=new RegExp(t);this._formats[e]=t;return this}function addDefaultMetaSchema(e){var t;if(e._opts.$data){t=n(5160);e.addMetaSchema(t,t.$id,true)}if(e._opts.meta===false)return;var r=n(1261);if(e._opts.$data)r=l(r,v);e.addMetaSchema(r,h,true);e._refs["http://json-schema.org/schema"]=h}function addInitialSchemas(e){var t=e._opts.schemas;if(!t)return;if(Array.isArray(t))e.addSchema(t);else for(var n in t)e.addSchema(t[n],n)}function addInitialFormats(e){for(var t in e._opts.formats){var n=e._opts.formats[t];e.addFormat(t,n)}}function checkUnique(e,t){if(e._schemas[t]||e._refs[t])throw new Error('schema with key or id "'+t+'" already exists')}function getMetaSchemaOptions(e){var t=f.copy(e._opts);for(var n=0;n<m.length;n++)delete t[m[n]];return t}function setLogger(e){var t=e._opts.logger;if(t===false){e.logger={log:noop,warn:noop,error:noop}}else{if(t===undefined)t=console;if(!(typeof t=="object"&&t.log&&t.warn&&t.error))throw new Error("logger must implement log, warn and error methods");e.logger=t}}function noop(){}},1340:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(5897);const a=i(n(653));const s=i(n(339));const c=i(n(3274));const u=i(n(772));const l=i(n(4869));const f=i(n(1505));const p=i(n(5531));const d=(e,t=[])=>{for(let n of e){if(Array.isArray(n)){d(n,t)}else{t.push(n)}}return t};const h=function(e,t){return r(this,void 0,void 0,function*(){return new Promise((n,r)=>{c.default(e,t,(e,t)=>{if(e){r(e)}else{n(t)}})})})};const m=(e,t,n=[],i)=>r(this,void 0,void 0,function*(){const{debug:r}=i.output;const o=yield u.default.readdir(b(e,t));for(let a of o){a=b(a,e);try{const e=yield u.default.stat(a);n=e.isDirectory()?yield m(a,t,n,i):n.concat(a)}catch(e){r(`Ignoring invalid file ${a}`)}}return n});const v=function(e,t,n){return r(this,void 0,void 0,function*(){const{debug:i}=n.output;const o=[];yield Promise.all(e.map(e=>r(this,void 0,void 0,function*(){e=b(e,t);try{const r=yield u.default.stat(e);if(r.isDirectory()){const r=yield m(e,t,[],n);o.push(...r)}else{o.push(e)}}catch(t){i(`Ignoring invalid file ${e}`)}})));return o})};const g=function(e){return e.replace(/(\n|^)\.\//g,"$1")};const y=function(e,t){return r(this,void 0,void 0,function*(){try{return yield u.default.readFile(e,"utf8")}catch(e){return t}})};const b=function(e,t){if(e[0]==="/"){return e}return o.resolve(t,e)};function createIgnore(e){return r(this,void 0,void 0,function*(){const t=yield y(e,"");const n=a.default().add(`${l.default}\n${g(t)}`);return n})}t.createIgnore=createIgnore;function staticFiles(e,t={},{output:n,isBuilds:i,src:a}){return r(this,void 0,void 0,function*(){const{debug:r,time:s}=n;let c=[];if(!i&&t.files&&Array.isArray(t.files)){c=yield v(t.files,e,{output:n})}else{const t=a||".";const u=yield h(t,{cwd:e,absolute:true,dot:true});const l=i?".nowignore":".gitignore";const f=yield createIgnore(o.resolve(e,l));const p=f.createFilter();const d=e.length+1;const m=e=>{const t=e.substr(d);if(t===""){return true}const n=p(t);if(!n){r(`Ignoring ${e}`)}return n};c=yield s(`Locating files ${e}`,explode(u,{accepts:m,output:n}))}return f.default(c)})}t.staticFiles=staticFiles;function npm(e,t={},n={},{hasNowJson:i=false,output:s}){return r(this,void 0,void 0,function*(){const{debug:r,time:c}=s;const u=n.files||t.files||t.now&&t.now.files;let d=[];if(u){d=yield v(u,e,{output:s})}else{const t=["."];const n=Array.prototype.concat.apply([],yield Promise.all(t.map(t=>h(t,{cwd:e,absolute:true,dot:true}))));const i=yield y(o.resolve(e,".npmignore"),null);const u=a.default().add(`${l.default}\n${g(i===null?yield y(o.resolve(e,".gitignore"),""):i)}`).createFilter();const f=e.length+1;const p=e=>{const t=e.substr(f);if(t===""){return true}const n=u(t);if(!n){r(`Ignoring ${e}`)}return n};d=yield c(`Locating files ${e}`,explode(n,{accepts:p,output:s}))}d.push(b("package.json",e));if(i){d.push(b(p.default(e),e))}return f.default(d)})}t.npm=npm;function docker(e,t={},{hasNowJson:n=false,output:i}){return r(this,void 0,void 0,function*(){const{debug:r,time:c}=i;let u=[];if(t.files){u=yield v(t.files,e,{output:i})}else{const t=["."];const n=t.map(t=>b(t,e));const f=yield y(o.resolve(e,".dockerignore"),null);const p=g(f===null?yield y(o.resolve(e,".gitignore"),""):f);const d=f===null?a.default:s.default;const h=d().add(`${l.default}\n${p}`).createFilter();const m=e.length+1;const v=function(e){const t=e.substr(m);if(t===""){return true}const n=h(t);if(!n){r(`Ignoring ${e}`)}return n};u=yield c(`Locating files ${e}`,explode(n,{accepts:v,output:i}))}if(n){u.push(b(p.default(e),e))}u.push(b("Dockerfile",e));return f.default(u)})}t.docker=docker;function getAllProjectFiles(e,{debug:t}){return r(this,void 0,void 0,function*(){const n=o.join(o.resolve(e),"/");t(`Searching files inside of ${n}`);const r=yield h("**",{cwd:n,absolute:true,nodir:true});return r.map(e=>e.replace(n.replace(/\\/g,"/"),""))})}t.getAllProjectFiles=getAllProjectFiles;function explode(e,{accepts:t,output:n}){return r(this,void 0,void 0,function*(){const{debug:i}=n;const o=e=>r(this,void 0,void 0,function*(){let n=e;let r;if(!t(e)){return null}try{r=yield u.default.stat(n)}catch(t){n=`${e}.js`;try{r=yield u.default.stat(n)}catch(t){i(`Ignoring invalid file ${e}`);return null}}if(r.isDirectory()){const t=yield u.default.readdir(e);const n=a(t.map(t=>b(t,e)));return n}if(!r.isFile()){i(`Ignoring special file ${e}`);return null}return n});const a=e=>Promise.all(e.map(e=>o(e)));const s=yield a(e);return d(s).filter(notNull)})}function notNull(e){return e!==null}},1344:function(e,t,n){"use strict";var r=n(8703);e.exports=Readable;var i=n(1504);var o;Readable.ReadableState=ReadableState;var a=n(4859).EventEmitter;var s=function(e,t){return e.listeners(t).length};var c=n(3416);var u=n(2342).Buffer;var l=global.Uint8Array||function(){};function _uint8ArrayToBuffer(e){return u.from(e)}function _isUint8Array(e){return u.isBuffer(e)||e instanceof l}var f=n(8107);f.inherits=n(8368);var p=n(649);var d=void 0;if(p&&p.debuglog){d=p.debuglog("stream")}else{d=function(){}}var h=n(7686);var m=n(7461);var v;f.inherits(Readable,c);var g=["error","close","destroy","pause","resume"];function prependListener(e,t,n){if(typeof e.prependListener==="function")return e.prependListener(t,n);if(!e._events||!e._events[t])e.on(t,n);else if(i(e._events[t]))e._events[t].unshift(n);else e._events[t]=[n,e._events[t]]}function ReadableState(e,t){o=o||n(1178);e=e||{};var r=t instanceof o;this.objectMode=!!e.objectMode;if(r)this.objectMode=this.objectMode||!!e.readableObjectMode;var i=e.highWaterMark;var a=e.readableHighWaterMark;var s=this.objectMode?16:16*1024;if(i||i===0)this.highWaterMark=i;else if(r&&(a||a===0))this.highWaterMark=a;else this.highWaterMark=s;this.highWaterMark=Math.floor(this.highWaterMark);this.buffer=new h;this.length=0;this.pipes=null;this.pipesCount=0;this.flowing=null;this.ended=false;this.endEmitted=false;this.reading=false;this.sync=true;this.needReadable=false;this.emittedReadable=false;this.readableListening=false;this.resumeScheduled=false;this.destroyed=false;this.defaultEncoding=e.defaultEncoding||"utf8";this.awaitDrain=0;this.readingMore=false;this.decoder=null;this.encoding=null;if(e.encoding){if(!v)v=n(6419).StringDecoder;this.decoder=new v(e.encoding);this.encoding=e.encoding}}function Readable(e){o=o||n(1178);if(!(this instanceof Readable))return new Readable(e);this._readableState=new ReadableState(e,this);this.readable=true;if(e){if(typeof e.read==="function")this._read=e.read;if(typeof e.destroy==="function")this._destroy=e.destroy}c.call(this)}Object.defineProperty(Readable.prototype,"destroyed",{get:function(){if(this._readableState===undefined){return false}return this._readableState.destroyed},set:function(e){if(!this._readableState){return}this._readableState.destroyed=e}});Readable.prototype.destroy=m.destroy;Readable.prototype._undestroy=m.undestroy;Readable.prototype._destroy=function(e,t){this.push(null);t(e)};Readable.prototype.push=function(e,t){var n=this._readableState;var r;if(!n.objectMode){if(typeof e==="string"){t=t||n.defaultEncoding;if(t!==n.encoding){e=u.from(e,t);t=""}r=true}}else{r=true}return readableAddChunk(this,e,t,false,r)};Readable.prototype.unshift=function(e){return readableAddChunk(this,e,null,true,false)};function readableAddChunk(e,t,n,r,i){var o=e._readableState;if(t===null){o.reading=false;onEofChunk(e,o)}else{var a;if(!i)a=chunkInvalid(o,t);if(a){e.emit("error",a)}else if(o.objectMode||t&&t.length>0){if(typeof t!=="string"&&!o.objectMode&&Object.getPrototypeOf(t)!==u.prototype){t=_uint8ArrayToBuffer(t)}if(r){if(o.endEmitted)e.emit("error",new Error("stream.unshift() after end event"));else addChunk(e,o,t,true)}else if(o.ended){e.emit("error",new Error("stream.push() after EOF"))}else{o.reading=false;if(o.decoder&&!n){t=o.decoder.write(t);if(o.objectMode||t.length!==0)addChunk(e,o,t,false);else maybeReadMore(e,o)}else{addChunk(e,o,t,false)}}}else if(!r){o.reading=false}}return needMoreData(o)}function addChunk(e,t,n,r){if(t.flowing&&t.length===0&&!t.sync){e.emit("data",n);e.read(0)}else{t.length+=t.objectMode?1:n.length;if(r)t.buffer.unshift(n);else t.buffer.push(n);if(t.needReadable)emitReadable(e)}maybeReadMore(e,t)}function chunkInvalid(e,t){var n;if(!_isUint8Array(t)&&typeof t!=="string"&&t!==undefined&&!e.objectMode){n=new TypeError("Invalid non-string/buffer chunk")}return n}function needMoreData(e){return!e.ended&&(e.needReadable||e.length<e.highWaterMark||e.length===0)}Readable.prototype.isPaused=function(){return this._readableState.flowing===false};Readable.prototype.setEncoding=function(e){if(!v)v=n(6419).StringDecoder;this._readableState.decoder=new v(e);this._readableState.encoding=e;return this};var y=8388608;function computeNewHighWaterMark(e){if(e>=y){e=y}else{e--;e|=e>>>1;e|=e>>>2;e|=e>>>4;e|=e>>>8;e|=e>>>16;e++}return e}function howMuchToRead(e,t){if(e<=0||t.length===0&&t.ended)return 0;if(t.objectMode)return 1;if(e!==e){if(t.flowing&&t.length)return t.buffer.head.data.length;else return t.length}if(e>t.highWaterMark)t.highWaterMark=computeNewHighWaterMark(e);if(e<=t.length)return e;if(!t.ended){t.needReadable=true;return 0}return t.length}Readable.prototype.read=function(e){d("read",e);e=parseInt(e,10);var t=this._readableState;var n=e;if(e!==0)t.emittedReadable=false;if(e===0&&t.needReadable&&(t.length>=t.highWaterMark||t.ended)){d("read: emitReadable",t.length,t.ended);if(t.length===0&&t.ended)endReadable(this);else emitReadable(this);return null}e=howMuchToRead(e,t);if(e===0&&t.ended){if(t.length===0)endReadable(this);return null}var r=t.needReadable;d("need readable",r);if(t.length===0||t.length-e<t.highWaterMark){r=true;d("length less than watermark",r)}if(t.ended||t.reading){r=false;d("reading or ended",r)}else if(r){d("do read");t.reading=true;t.sync=true;if(t.length===0)t.needReadable=true;this._read(t.highWaterMark);t.sync=false;if(!t.reading)e=howMuchToRead(n,t)}var i;if(e>0)i=fromList(e,t);else i=null;if(i===null){t.needReadable=true;e=0}else{t.length-=e}if(t.length===0){if(!t.ended)t.needReadable=true;if(n!==e&&t.ended)endReadable(this)}if(i!==null)this.emit("data",i);return i};function onEofChunk(e,t){if(t.ended)return;if(t.decoder){var n=t.decoder.end();if(n&&n.length){t.buffer.push(n);t.length+=t.objectMode?1:n.length}}t.ended=true;emitReadable(e)}function emitReadable(e){var t=e._readableState;t.needReadable=false;if(!t.emittedReadable){d("emitReadable",t.flowing);t.emittedReadable=true;if(t.sync)r.nextTick(emitReadable_,e);else emitReadable_(e)}}function emitReadable_(e){d("emit readable");e.emit("readable");flow(e)}function maybeReadMore(e,t){if(!t.readingMore){t.readingMore=true;r.nextTick(maybeReadMore_,e,t)}}function maybeReadMore_(e,t){var n=t.length;while(!t.reading&&!t.flowing&&!t.ended&&t.length<t.highWaterMark){d("maybeReadMore read 0");e.read(0);if(n===t.length)break;else n=t.length}t.readingMore=false}Readable.prototype._read=function(e){this.emit("error",new Error("_read() is not implemented"))};Readable.prototype.pipe=function(e,t){var n=this;var i=this._readableState;switch(i.pipesCount){case 0:i.pipes=e;break;case 1:i.pipes=[i.pipes,e];break;default:i.pipes.push(e);break}i.pipesCount+=1;d("pipe count=%d opts=%j",i.pipesCount,t);var o=(!t||t.end!==false)&&e!==process.stdout&&e!==process.stderr;var a=o?onend:unpipe;if(i.endEmitted)r.nextTick(a);else n.once("end",a);e.on("unpipe",onunpipe);function onunpipe(e,t){d("onunpipe");if(e===n){if(t&&t.hasUnpiped===false){t.hasUnpiped=true;cleanup()}}}function onend(){d("onend");e.end()}var c=pipeOnDrain(n);e.on("drain",c);var u=false;function cleanup(){d("cleanup");e.removeListener("close",onclose);e.removeListener("finish",onfinish);e.removeListener("drain",c);e.removeListener("error",onerror);e.removeListener("unpipe",onunpipe);n.removeListener("end",onend);n.removeListener("end",unpipe);n.removeListener("data",ondata);u=true;if(i.awaitDrain&&(!e._writableState||e._writableState.needDrain))c()}var l=false;n.on("data",ondata);function ondata(t){d("ondata");l=false;var r=e.write(t);if(false===r&&!l){if((i.pipesCount===1&&i.pipes===e||i.pipesCount>1&&indexOf(i.pipes,e)!==-1)&&!u){d("false write response, pause",n._readableState.awaitDrain);n._readableState.awaitDrain++;l=true}n.pause()}}function onerror(t){d("onerror",t);unpipe();e.removeListener("error",onerror);if(s(e,"error")===0)e.emit("error",t)}prependListener(e,"error",onerror);function onclose(){e.removeListener("finish",onfinish);unpipe()}e.once("close",onclose);function onfinish(){d("onfinish");e.removeListener("close",onclose);unpipe()}e.once("finish",onfinish);function unpipe(){d("unpipe");n.unpipe(e)}e.emit("pipe",n);if(!i.flowing){d("pipe resume");n.resume()}return e};function pipeOnDrain(e){return function(){var t=e._readableState;d("pipeOnDrain",t.awaitDrain);if(t.awaitDrain)t.awaitDrain--;if(t.awaitDrain===0&&s(e,"data")){t.flowing=true;flow(e)}}}Readable.prototype.unpipe=function(e){var t=this._readableState;var n={hasUnpiped:false};if(t.pipesCount===0)return this;if(t.pipesCount===1){if(e&&e!==t.pipes)return this;if(!e)e=t.pipes;t.pipes=null;t.pipesCount=0;t.flowing=false;if(e)e.emit("unpipe",this,n);return this}if(!e){var r=t.pipes;var i=t.pipesCount;t.pipes=null;t.pipesCount=0;t.flowing=false;for(var o=0;o<i;o++){r[o].emit("unpipe",this,n)}return this}var a=indexOf(t.pipes,e);if(a===-1)return this;t.pipes.splice(a,1);t.pipesCount-=1;if(t.pipesCount===1)t.pipes=t.pipes[0];e.emit("unpipe",this,n);return this};Readable.prototype.on=function(e,t){var n=c.prototype.on.call(this,e,t);if(e==="data"){if(this._readableState.flowing!==false)this.resume()}else if(e==="readable"){var i=this._readableState;if(!i.endEmitted&&!i.readableListening){i.readableListening=i.needReadable=true;i.emittedReadable=false;if(!i.reading){r.nextTick(nReadingNextTick,this)}else if(i.length){emitReadable(this)}}}return n};Readable.prototype.addListener=Readable.prototype.on;function nReadingNextTick(e){d("readable nexttick read 0");e.read(0)}Readable.prototype.resume=function(){var e=this._readableState;if(!e.flowing){d("resume");e.flowing=true;resume(this,e)}return this};function resume(e,t){if(!t.resumeScheduled){t.resumeScheduled=true;r.nextTick(resume_,e,t)}}function resume_(e,t){if(!t.reading){d("resume read 0");e.read(0)}t.resumeScheduled=false;t.awaitDrain=0;e.emit("resume");flow(e);if(t.flowing&&!t.reading)e.read(0)}Readable.prototype.pause=function(){d("call pause flowing=%j",this._readableState.flowing);if(false!==this._readableState.flowing){d("pause");this._readableState.flowing=false;this.emit("pause")}return this};function flow(e){var t=e._readableState;d("flow",t.flowing);while(t.flowing&&e.read()!==null){}}Readable.prototype.wrap=function(e){var t=this;var n=this._readableState;var r=false;e.on("end",function(){d("wrapped end");if(n.decoder&&!n.ended){var e=n.decoder.end();if(e&&e.length)t.push(e)}t.push(null)});e.on("data",function(i){d("wrapped data");if(n.decoder)i=n.decoder.write(i);if(n.objectMode&&(i===null||i===undefined))return;else if(!n.objectMode&&(!i||!i.length))return;var o=t.push(i);if(!o){r=true;e.pause()}});for(var i in e){if(this[i]===undefined&&typeof e[i]==="function"){this[i]=function(t){return function(){return e[t].apply(e,arguments)}}(i)}}for(var o=0;o<g.length;o++){e.on(g[o],this.emit.bind(this,g[o]))}this._read=function(t){d("wrapped _read",t);if(r){r=false;e.resume()}};return this};Object.defineProperty(Readable.prototype,"readableHighWaterMark",{enumerable:false,get:function(){return this._readableState.highWaterMark}});Readable._fromList=fromList;function fromList(e,t){if(t.length===0)return null;var n;if(t.objectMode)n=t.buffer.shift();else if(!e||e>=t.length){if(t.decoder)n=t.buffer.join("");else if(t.buffer.length===1)n=t.buffer.head.data;else n=t.buffer.concat(t.length);t.buffer.clear()}else{n=fromListPartial(e,t.buffer,t.decoder)}return n}function fromListPartial(e,t,n){var r;if(e<t.head.data.length){r=t.head.data.slice(0,e);t.head.data=t.head.data.slice(e)}else if(e===t.head.data.length){r=t.shift()}else{r=n?copyFromBufferString(e,t):copyFromBuffer(e,t)}return r}function copyFromBufferString(e,t){var n=t.head;var r=1;var i=n.data;e-=i.length;while(n=n.next){var o=n.data;var a=e>o.length?o.length:e;if(a===o.length)i+=o;else i+=o.slice(0,e);e-=a;if(e===0){if(a===o.length){++r;if(n.next)t.head=n.next;else t.head=t.tail=null}else{t.head=n;n.data=o.slice(a)}break}++r}t.length-=r;return i}function copyFromBuffer(e,t){var n=u.allocUnsafe(e);var r=t.head;var i=1;r.data.copy(n);e-=r.data.length;while(r=r.next){var o=r.data;var a=e>o.length?o.length:e;o.copy(n,n.length-e,0,a);e-=a;if(e===0){if(a===o.length){++i;if(r.next)t.head=r.next;else t.head=t.tail=null}else{t.head=r;r.data=o.slice(a)}break}++i}t.length-=i;return n}function endReadable(e){var t=e._readableState;if(t.length>0)throw new Error('"endReadable()" called on non-empty stream');if(!t.endEmitted){t.ended=true;r.nextTick(endReadableNT,t,e)}}function endReadableNT(e,t){if(!e.endEmitted&&e.length===0){e.endEmitted=true;t.readable=false;t.emit("end")}}function indexOf(e,t){for(var n=0,r=e.length;n<r;n++){if(e[n]===t)return n}return-1}},1355:function(e,t,n){e.exports=which;which.sync=whichSync;var r=process.platform==="win32"||process.env.OSTYPE==="cygwin"||process.env.OSTYPE==="msys";var i=n(5897);var o=r?";":":";var a=n(8804);function getNotFoundError(e){var t=new Error("not found: "+e);t.code="ENOENT";return t}function getPathInfo(e,t){var n=t.colon||o;var i=t.path||process.env.PATH||"";var a=[""];i=i.split(n);var s="";if(r){i.unshift(process.cwd());s=t.pathExt||process.env.PATHEXT||".EXE;.CMD;.BAT;.COM";a=s.split(n);if(e.indexOf(".")!==-1&&a[0]!=="")a.unshift("")}if(e.match(/\//)||r&&e.match(/\\/))i=[""];return{env:i,ext:a,extExe:s}}function which(e,t,n){if(typeof t==="function"){n=t;t={}}var r=getPathInfo(e,t);var o=r.env;var s=r.ext;var c=r.extExe;var u=[];(function F(r,l){if(r===l){if(t.all&&u.length)return n(null,u);else return n(getNotFoundError(e))}var f=o[r];if(f.charAt(0)==='"'&&f.slice(-1)==='"')f=f.slice(1,-1);var p=i.join(f,e);if(!f&&/^\.[\\\/]/.test(e)){p=e.slice(0,2)+p}(function E(e,i){if(e===i)return F(r+1,l);var o=s[e];a(p+o,{pathExt:c},function(r,a){if(!r&&a){if(t.all)u.push(p+o);else return n(null,p+o)}return E(e+1,i)})})(0,s.length)})(0,o.length)}function whichSync(e,t){t=t||{};var n=getPathInfo(e,t);var r=n.env;var o=n.ext;var s=n.extExe;var c=[];for(var u=0,l=r.length;u<l;u++){var f=r[u];if(f.charAt(0)==='"'&&f.slice(-1)==='"')f=f.slice(1,-1);var p=i.join(f,e);if(!f&&/^\.[\\\/]/.test(e)){p=e.slice(0,2)+p}for(var d=0,h=o.length;d<h;d++){var m=p+o[d];var v;try{v=a.sync(m,{pathExt:s});if(v){if(t.all)c.push(m);else return m}}catch(e){}}}if(t.all&&c.length)return c;if(t.nothrow)return null;throw getNotFoundError(e)}},1357:function(e){"use strict";e.exports=function generate_oneOf(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f="valid"+i;var p="errs__"+i;var d=e.util.copy(e);var h="";d.level++;var m="valid"+d.level;var v=d.baseId,g="prevValid"+i,y="passingSchemas"+i;r+="var "+p+" = errors , "+g+" = false , "+f+" = false , "+y+" = null; ";var b=e.compositeRule;e.compositeRule=d.compositeRule=true;var w=a;if(w){var x,k=-1,j=w.length-1;while(k<j){x=w[k+=1];if(e.opts.strictKeywords?typeof x=="object"&&Object.keys(x).length>0:e.util.schemaHasRules(x,e.RULES.all)){d.schema=x;d.schemaPath=s+"["+k+"]";d.errSchemaPath=c+"/"+k;r+=" "+e.validate(d)+" ";d.baseId=v}else{r+=" var "+m+" = true; "}if(k){r+=" if ("+m+" && "+g+") { "+f+" = false; "+y+" = ["+y+", "+k+"]; } else { ";h+="}"}r+=" if ("+m+") { "+f+" = "+g+" = true; "+y+" = "+k+"; }"}}e.compositeRule=d.compositeRule=b;r+=""+h+"if (!"+f+") { var err = ";if(e.createErrors!==false){r+=" { keyword: '"+"oneOf"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { passingSchemas: "+y+" } ";if(e.opts.messages!==false){r+=" , message: 'should match exactly one schema in oneOf' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}r+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ";if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(vErrors); "}else{r+=" validate.errors = vErrors; return false; "}}r+="} else { errors = "+p+"; if (vErrors !== null) { if ("+p+") vErrors.length = "+p+"; else vErrors = null; }";if(e.opts.allErrors){r+=" } "}return r}},1365:function(e){e.exports={"application/1d-interleaved-parityfec":{source:"iana"},"application/3gpdash-qoe-report+xml":{source:"iana"},"application/3gpp-ims+xml":{source:"iana"},"application/a2l":{source:"iana"},"application/activemessage":{source:"iana"},"application/alto-costmap+json":{source:"iana",compressible:true},"application/alto-costmapfilter+json":{source:"iana",compressible:true},"application/alto-directory+json":{source:"iana",compressible:true},"application/alto-endpointcost+json":{source:"iana",compressible:true},"application/alto-endpointcostparams+json":{source:"iana",compressible:true},"application/alto-endpointprop+json":{source:"iana",compressible:true},"application/alto-endpointpropparams+json":{source:"iana",compressible:true},"application/alto-error+json":{source:"iana",compressible:true},"application/alto-networkmap+json":{source:"iana",compressible:true},"application/alto-networkmapfilter+json":{source:"iana",compressible:true},"application/aml":{source:"iana"},"application/andrew-inset":{source:"iana",extensions:["ez"]},"application/applefile":{source:"iana"},"application/applixware":{source:"apache",extensions:["aw"]},"application/atf":{source:"iana"},"application/atfx":{source:"iana"},"application/atom+xml":{source:"iana",compressible:true,extensions:["atom"]},"application/atomcat+xml":{source:"iana",extensions:["atomcat"]},"application/atomdeleted+xml":{source:"iana"},"application/atomicmail":{source:"iana"},"application/atomsvc+xml":{source:"iana",extensions:["atomsvc"]},"application/atxml":{source:"iana"},"application/auth-policy+xml":{source:"iana"},"application/bacnet-xdd+zip":{source:"iana"},"application/batch-smtp":{source:"iana"},"application/bdoc":{compressible:false,extensions:["bdoc"]},"application/beep+xml":{source:"iana"},"application/calendar+json":{source:"iana",compressible:true},"application/calendar+xml":{source:"iana"},"application/call-completion":{source:"iana"},"application/cals-1840":{source:"iana"},"application/cbor":{source:"iana"},"application/cccex":{source:"iana"},"application/ccmp+xml":{source:"iana"},"application/ccxml+xml":{source:"iana",extensions:["ccxml"]},"application/cdfx+xml":{source:"iana"},"application/cdmi-capability":{source:"iana",extensions:["cdmia"]},"application/cdmi-container":{source:"iana",extensions:["cdmic"]},"application/cdmi-domain":{source:"iana",extensions:["cdmid"]},"application/cdmi-object":{source:"iana",extensions:["cdmio"]},"application/cdmi-queue":{source:"iana",extensions:["cdmiq"]},"application/cdni":{source:"iana"},"application/cea":{source:"iana"},"application/cea-2018+xml":{source:"iana"},"application/cellml+xml":{source:"iana"},"application/cfw":{source:"iana"},"application/clue_info+xml":{source:"iana"},"application/cms":{source:"iana"},"application/cnrp+xml":{source:"iana"},"application/coap-group+json":{source:"iana",compressible:true},"application/coap-payload":{source:"iana"},"application/commonground":{source:"iana"},"application/conference-info+xml":{source:"iana"},"application/cose":{source:"iana"},"application/cose-key":{source:"iana"},"application/cose-key-set":{source:"iana"},"application/cpl+xml":{source:"iana"},"application/csrattrs":{source:"iana"},"application/csta+xml":{source:"iana"},"application/cstadata+xml":{source:"iana"},"application/csvm+json":{source:"iana",compressible:true},"application/cu-seeme":{source:"apache",extensions:["cu"]},"application/cybercash":{source:"iana"},"application/dart":{compressible:true},"application/dash+xml":{source:"iana",extensions:["mpd"]},"application/dashdelta":{source:"iana"},"application/davmount+xml":{source:"iana",extensions:["davmount"]},"application/dca-rft":{source:"iana"},"application/dcd":{source:"iana"},"application/dec-dx":{source:"iana"},"application/dialog-info+xml":{source:"iana"},"application/dicom":{source:"iana"},"application/dicom+json":{source:"iana",compressible:true},"application/dicom+xml":{source:"iana"},"application/dii":{source:"iana"},"application/dit":{source:"iana"},"application/dns":{source:"iana"},"application/docbook+xml":{source:"apache",extensions:["dbk"]},"application/dskpp+xml":{source:"iana"},"application/dssc+der":{source:"iana",extensions:["dssc"]},"application/dssc+xml":{source:"iana",extensions:["xdssc"]},"application/dvcs":{source:"iana"},"application/ecmascript":{source:"iana",compressible:true,extensions:["ecma"]},"application/edi-consent":{source:"iana"},"application/edi-x12":{source:"iana",compressible:false},"application/edifact":{source:"iana",compressible:false},"application/efi":{source:"iana"},"application/emergencycalldata.comment+xml":{source:"iana"},"application/emergencycalldata.control+xml":{source:"iana"},"application/emergencycalldata.deviceinfo+xml":{source:"iana"},"application/emergencycalldata.ecall.msd":{source:"iana"},"application/emergencycalldata.providerinfo+xml":{source:"iana"},"application/emergencycalldata.serviceinfo+xml":{source:"iana"},"application/emergencycalldata.subscriberinfo+xml":{source:"iana"},"application/emergencycalldata.veds+xml":{source:"iana"},"application/emma+xml":{source:"iana",extensions:["emma"]},"application/emotionml+xml":{source:"iana"},"application/encaprtp":{source:"iana"},"application/epp+xml":{source:"iana"},"application/epub+zip":{source:"iana",extensions:["epub"]},"application/eshop":{source:"iana"},"application/exi":{source:"iana",extensions:["exi"]},"application/fastinfoset":{source:"iana"},"application/fastsoap":{source:"iana"},"application/fdt+xml":{source:"iana"},"application/fhir+xml":{source:"iana"},"application/fido.trusted-apps+json":{compressible:true},"application/fits":{source:"iana"},"application/font-sfnt":{source:"iana"},"application/font-tdpfr":{source:"iana",extensions:["pfr"]},"application/font-woff":{source:"iana",compressible:false,extensions:["woff"]},"application/framework-attributes+xml":{source:"iana"},"application/geo+json":{source:"iana",compressible:true,extensions:["geojson"]},"application/geo+json-seq":{source:"iana"},"application/geoxacml+xml":{source:"iana"},"application/gml+xml":{source:"iana",extensions:["gml"]},"application/gpx+xml":{source:"apache",extensions:["gpx"]},"application/gxf":{source:"apache",extensions:["gxf"]},"application/gzip":{source:"iana",compressible:false,extensions:["gz"]},"application/h224":{source:"iana"},"application/held+xml":{source:"iana"},"application/hjson":{extensions:["hjson"]},"application/http":{source:"iana"},"application/hyperstudio":{source:"iana",extensions:["stk"]},"application/ibe-key-request+xml":{source:"iana"},"application/ibe-pkg-reply+xml":{source:"iana"},"application/ibe-pp-data":{source:"iana"},"application/iges":{source:"iana"},"application/im-iscomposing+xml":{source:"iana"},"application/index":{source:"iana"},"application/index.cmd":{source:"iana"},"application/index.obj":{source:"iana"},"application/index.response":{source:"iana"},"application/index.vnd":{source:"iana"},"application/inkml+xml":{source:"iana",extensions:["ink","inkml"]},"application/iotp":{source:"iana"},"application/ipfix":{source:"iana",extensions:["ipfix"]},"application/ipp":{source:"iana"},"application/isup":{source:"iana"},"application/its+xml":{source:"iana"},"application/java-archive":{source:"apache",compressible:false,extensions:["jar","war","ear"]},"application/java-serialized-object":{source:"apache",compressible:false,extensions:["ser"]},"application/java-vm":{source:"apache",compressible:false,extensions:["class"]},"application/javascript":{source:"iana",charset:"UTF-8",compressible:true,extensions:["js","mjs"]},"application/jf2feed+json":{source:"iana",compressible:true},"application/jose":{source:"iana"},"application/jose+json":{source:"iana",compressible:true},"application/jrd+json":{source:"iana",compressible:true},"application/json":{source:"iana",charset:"UTF-8",compressible:true,extensions:["json","map"]},"application/json-patch+json":{source:"iana",compressible:true},"application/json-seq":{source:"iana"},"application/json5":{extensions:["json5"]},"application/jsonml+json":{source:"apache",compressible:true,extensions:["jsonml"]},"application/jwk+json":{source:"iana",compressible:true},"application/jwk-set+json":{source:"iana",compressible:true},"application/jwt":{source:"iana"},"application/kpml-request+xml":{source:"iana"},"application/kpml-response+xml":{source:"iana"},"application/ld+json":{source:"iana",compressible:true,extensions:["jsonld"]},"application/lgr+xml":{source:"iana"},"application/link-format":{source:"iana"},"application/load-control+xml":{source:"iana"},"application/lost+xml":{source:"iana",extensions:["lostxml"]},"application/lostsync+xml":{source:"iana"},"application/lxf":{source:"iana"},"application/mac-binhex40":{source:"iana",extensions:["hqx"]},"application/mac-compactpro":{source:"apache",extensions:["cpt"]},"application/macwriteii":{source:"iana"},"application/mads+xml":{source:"iana",extensions:["mads"]},"application/manifest+json":{charset:"UTF-8",compressible:true,extensions:["webmanifest"]},"application/marc":{source:"iana",extensions:["mrc"]},"application/marcxml+xml":{source:"iana",extensions:["mrcx"]},"application/mathematica":{source:"iana",extensions:["ma","nb","mb"]},"application/mathml+xml":{source:"iana",extensions:["mathml"]},"application/mathml-content+xml":{source:"iana"},"application/mathml-presentation+xml":{source:"iana"},"application/mbms-associated-procedure-description+xml":{source:"iana"},"application/mbms-deregister+xml":{source:"iana"},"application/mbms-envelope+xml":{source:"iana"},"application/mbms-msk+xml":{source:"iana"},"application/mbms-msk-response+xml":{source:"iana"},"application/mbms-protection-description+xml":{source:"iana"},"application/mbms-reception-report+xml":{source:"iana"},"application/mbms-register+xml":{source:"iana"},"application/mbms-register-response+xml":{source:"iana"},"application/mbms-schedule+xml":{source:"iana"},"application/mbms-user-service-description+xml":{source:"iana"},"application/mbox":{source:"iana",extensions:["mbox"]},"application/media-policy-dataset+xml":{source:"iana"},"application/media_control+xml":{source:"iana"},"application/mediaservercontrol+xml":{source:"iana",extensions:["mscml"]},"application/merge-patch+json":{source:"iana",compressible:true},"application/metalink+xml":{source:"apache",extensions:["metalink"]},"application/metalink4+xml":{source:"iana",extensions:["meta4"]},"application/mets+xml":{source:"iana",extensions:["mets"]},"application/mf4":{source:"iana"},"application/mikey":{source:"iana"},"application/mmt-usd+xml":{source:"iana"},"application/mods+xml":{source:"iana",extensions:["mods"]},"application/moss-keys":{source:"iana"},"application/moss-signature":{source:"iana"},"application/mosskey-data":{source:"iana"},"application/mosskey-request":{source:"iana"},"application/mp21":{source:"iana",extensions:["m21","mp21"]},"application/mp4":{source:"iana",extensions:["mp4s","m4p"]},"application/mpeg4-generic":{source:"iana"},"application/mpeg4-iod":{source:"iana"},"application/mpeg4-iod-xmt":{source:"iana"},"application/mrb-consumer+xml":{source:"iana"},"application/mrb-publish+xml":{source:"iana"},"application/msc-ivr+xml":{source:"iana"},"application/msc-mixer+xml":{source:"iana"},"application/msword":{source:"iana",compressible:false,extensions:["doc","dot"]},"application/mud+json":{source:"iana",compressible:true},"application/mxf":{source:"iana",extensions:["mxf"]},"application/n-quads":{source:"iana"},"application/n-triples":{source:"iana"},"application/nasdata":{source:"iana"},"application/news-checkgroups":{source:"iana"},"application/news-groupinfo":{source:"iana"},"application/news-transmission":{source:"iana"},"application/nlsml+xml":{source:"iana"},"application/node":{source:"iana"},"application/nss":{source:"iana"},"application/ocsp-request":{source:"iana"},"application/ocsp-response":{source:"iana"},"application/octet-stream":{source:"iana",compressible:false,extensions:["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"]},"application/oda":{source:"iana",extensions:["oda"]},"application/odx":{source:"iana"},"application/oebps-package+xml":{source:"iana",extensions:["opf"]},"application/ogg":{source:"iana",compressible:false,extensions:["ogx"]},"application/omdoc+xml":{source:"apache",extensions:["omdoc"]},"application/onenote":{source:"apache",extensions:["onetoc","onetoc2","onetmp","onepkg"]},"application/oxps":{source:"iana",extensions:["oxps"]},"application/p2p-overlay+xml":{source:"iana"},"application/parityfec":{source:"iana"},"application/passport":{source:"iana"},"application/patch-ops-error+xml":{source:"iana",extensions:["xer"]},"application/pdf":{source:"iana",compressible:false,extensions:["pdf"]},"application/pdx":{source:"iana"},"application/pgp-encrypted":{source:"iana",compressible:false,extensions:["pgp"]},"application/pgp-keys":{source:"iana"},"application/pgp-signature":{source:"iana",extensions:["asc","sig"]},"application/pics-rules":{source:"apache",extensions:["prf"]},"application/pidf+xml":{source:"iana"},"application/pidf-diff+xml":{source:"iana"},"application/pkcs10":{source:"iana",extensions:["p10"]},"application/pkcs12":{source:"iana"},"application/pkcs7-mime":{source:"iana",extensions:["p7m","p7c"]},"application/pkcs7-signature":{source:"iana",extensions:["p7s"]},"application/pkcs8":{source:"iana",extensions:["p8"]},"application/pkcs8-encrypted":{source:"iana"},"application/pkix-attr-cert":{source:"iana",extensions:["ac"]},"application/pkix-cert":{source:"iana",extensions:["cer"]},"application/pkix-crl":{source:"iana",extensions:["crl"]},"application/pkix-pkipath":{source:"iana",extensions:["pkipath"]},"application/pkixcmp":{source:"iana",extensions:["pki"]},"application/pls+xml":{source:"iana",extensions:["pls"]},"application/poc-settings+xml":{source:"iana"},"application/postscript":{source:"iana",compressible:true,extensions:["ai","eps","ps"]},"application/ppsp-tracker+json":{source:"iana",compressible:true},"application/problem+json":{source:"iana",compressible:true},"application/problem+xml":{source:"iana"},"application/provenance+xml":{source:"iana"},"application/prs.alvestrand.titrax-sheet":{source:"iana"},"application/prs.cww":{source:"iana",extensions:["cww"]},"application/prs.hpub+zip":{source:"iana"},"application/prs.nprend":{source:"iana"},"application/prs.plucker":{source:"iana"},"application/prs.rdf-xml-crypt":{source:"iana"},"application/prs.xsf+xml":{source:"iana"},"application/pskc+xml":{source:"iana",extensions:["pskcxml"]},"application/qsig":{source:"iana"},"application/raml+yaml":{compressible:true,extensions:["raml"]},"application/raptorfec":{source:"iana"},"application/rdap+json":{source:"iana",compressible:true},"application/rdf+xml":{source:"iana",compressible:true,extensions:["rdf"]},"application/reginfo+xml":{source:"iana",extensions:["rif"]},"application/relax-ng-compact-syntax":{source:"iana",extensions:["rnc"]},"application/remote-printing":{source:"iana"},"application/reputon+json":{source:"iana",compressible:true},"application/resource-lists+xml":{source:"iana",extensions:["rl"]},"application/resource-lists-diff+xml":{source:"iana",extensions:["rld"]},"application/rfc+xml":{source:"iana"},"application/riscos":{source:"iana"},"application/rlmi+xml":{source:"iana"},"application/rls-services+xml":{source:"iana",extensions:["rs"]},"application/route-apd+xml":{source:"iana"},"application/route-s-tsid+xml":{source:"iana"},"application/route-usd+xml":{source:"iana"},"application/rpki-ghostbusters":{source:"iana",extensions:["gbr"]},"application/rpki-manifest":{source:"iana",extensions:["mft"]},"application/rpki-publication":{source:"iana"},"application/rpki-roa":{source:"iana",extensions:["roa"]},"application/rpki-updown":{source:"iana"},"application/rsd+xml":{source:"apache",extensions:["rsd"]},"application/rss+xml":{source:"apache",compressible:true,extensions:["rss"]},"application/rtf":{source:"iana",compressible:true,extensions:["rtf"]},"application/rtploopback":{source:"iana"},"application/rtx":{source:"iana"},"application/samlassertion+xml":{source:"iana"},"application/samlmetadata+xml":{source:"iana"},"application/sbml+xml":{source:"iana",extensions:["sbml"]},"application/scaip+xml":{source:"iana"},"application/scim+json":{source:"iana",compressible:true},"application/scvp-cv-request":{source:"iana",extensions:["scq"]},"application/scvp-cv-response":{source:"iana",extensions:["scs"]},"application/scvp-vp-request":{source:"iana",extensions:["spq"]},"application/scvp-vp-response":{source:"iana",extensions:["spp"]},"application/sdp":{source:"iana",extensions:["sdp"]},"application/sep+xml":{source:"iana"},"application/sep-exi":{source:"iana"},"application/session-info":{source:"iana"},"application/set-payment":{source:"iana"},"application/set-payment-initiation":{source:"iana",extensions:["setpay"]},"application/set-registration":{source:"iana"},"application/set-registration-initiation":{source:"iana",extensions:["setreg"]},"application/sgml":{source:"iana"},"application/sgml-open-catalog":{source:"iana"},"application/shf+xml":{source:"iana",extensions:["shf"]},"application/sieve":{source:"iana"},"application/simple-filter+xml":{source:"iana"},"application/simple-message-summary":{source:"iana"},"application/simplesymbolcontainer":{source:"iana"},"application/slate":{source:"iana"},"application/smil":{source:"iana"},"application/smil+xml":{source:"iana",extensions:["smi","smil"]},"application/smpte336m":{source:"iana"},"application/soap+fastinfoset":{source:"iana"},"application/soap+xml":{source:"iana",compressible:true},"application/sparql-query":{source:"iana",extensions:["rq"]},"application/sparql-results+xml":{source:"iana",extensions:["srx"]},"application/spirits-event+xml":{source:"iana"},"application/sql":{source:"iana"},"application/srgs":{source:"iana",extensions:["gram"]},"application/srgs+xml":{source:"iana",extensions:["grxml"]},"application/sru+xml":{source:"iana",extensions:["sru"]},"application/ssdl+xml":{source:"apache",extensions:["ssdl"]},"application/ssml+xml":{source:"iana",extensions:["ssml"]},"application/tamp-apex-update":{source:"iana"},"application/tamp-apex-update-confirm":{source:"iana"},"application/tamp-community-update":{source:"iana"},"application/tamp-community-update-confirm":{source:"iana"},"application/tamp-error":{source:"iana"},"application/tamp-sequence-adjust":{source:"iana"},"application/tamp-sequence-adjust-confirm":{source:"iana"},"application/tamp-status-query":{source:"iana"},"application/tamp-status-response":{source:"iana"},"application/tamp-update":{source:"iana"},"application/tamp-update-confirm":{source:"iana"},"application/tar":{compressible:true},"application/tei+xml":{source:"iana",extensions:["tei","teicorpus"]},"application/thraud+xml":{source:"iana",extensions:["tfi"]},"application/timestamp-query":{source:"iana"},"application/timestamp-reply":{source:"iana"},"application/timestamped-data":{source:"iana",extensions:["tsd"]},"application/tnauthlist":{source:"iana"},"application/trig":{source:"iana"},"application/ttml+xml":{source:"iana"},"application/tve-trigger":{source:"iana"},"application/ulpfec":{source:"iana"},"application/urc-grpsheet+xml":{source:"iana"},"application/urc-ressheet+xml":{source:"iana"},"application/urc-targetdesc+xml":{source:"iana"},"application/urc-uisocketdesc+xml":{source:"iana"},"application/vcard+json":{source:"iana",compressible:true},"application/vcard+xml":{source:"iana"},"application/vemmi":{source:"iana"},"application/vividence.scriptfile":{source:"apache"},"application/vnd.1000minds.decision-model+xml":{source:"iana"},"application/vnd.3gpp-prose+xml":{source:"iana"},"application/vnd.3gpp-prose-pc3ch+xml":{source:"iana"},"application/vnd.3gpp-v2x-local-service-information":{source:"iana"},"application/vnd.3gpp.access-transfer-events+xml":{source:"iana"},"application/vnd.3gpp.bsf+xml":{source:"iana"},"application/vnd.3gpp.gmop+xml":{source:"iana"},"application/vnd.3gpp.mcptt-affiliation-command+xml":{source:"iana"},"application/vnd.3gpp.mcptt-floor-request+xml":{source:"iana"},"application/vnd.3gpp.mcptt-info+xml":{source:"iana"},"application/vnd.3gpp.mcptt-location-info+xml":{source:"iana"},"application/vnd.3gpp.mcptt-mbms-usage-info+xml":{source:"iana"},"application/vnd.3gpp.mcptt-signed+xml":{source:"iana"},"application/vnd.3gpp.mid-call+xml":{source:"iana"},"application/vnd.3gpp.pic-bw-large":{source:"iana",extensions:["plb"]},"application/vnd.3gpp.pic-bw-small":{source:"iana",extensions:["psb"]},"application/vnd.3gpp.pic-bw-var":{source:"iana",extensions:["pvb"]},"application/vnd.3gpp.sms":{source:"iana"},"application/vnd.3gpp.sms+xml":{source:"iana"},"application/vnd.3gpp.srvcc-ext+xml":{source:"iana"},"application/vnd.3gpp.srvcc-info+xml":{source:"iana"},"application/vnd.3gpp.state-and-event-info+xml":{source:"iana"},"application/vnd.3gpp.ussd+xml":{source:"iana"},"application/vnd.3gpp2.bcmcsinfo+xml":{source:"iana"},"application/vnd.3gpp2.sms":{source:"iana"},"application/vnd.3gpp2.tcap":{source:"iana",extensions:["tcap"]},"application/vnd.3lightssoftware.imagescal":{source:"iana"},"application/vnd.3m.post-it-notes":{source:"iana",extensions:["pwn"]},"application/vnd.accpac.simply.aso":{source:"iana",extensions:["aso"]},"application/vnd.accpac.simply.imp":{source:"iana",extensions:["imp"]},"application/vnd.acucobol":{source:"iana",extensions:["acu"]},"application/vnd.acucorp":{source:"iana",extensions:["atc","acutc"]},"application/vnd.adobe.air-application-installer-package+zip":{source:"apache",extensions:["air"]},"application/vnd.adobe.flash.movie":{source:"iana"},"application/vnd.adobe.formscentral.fcdt":{source:"iana",extensions:["fcdt"]},"application/vnd.adobe.fxp":{source:"iana",extensions:["fxp","fxpl"]},"application/vnd.adobe.partial-upload":{source:"iana"},"application/vnd.adobe.xdp+xml":{source:"iana",extensions:["xdp"]},"application/vnd.adobe.xfdf":{source:"iana",extensions:["xfdf"]},"application/vnd.aether.imp":{source:"iana"},"application/vnd.ah-barcode":{source:"iana"},"application/vnd.ahead.space":{source:"iana",extensions:["ahead"]},"application/vnd.airzip.filesecure.azf":{source:"iana",extensions:["azf"]},"application/vnd.airzip.filesecure.azs":{source:"iana",extensions:["azs"]},"application/vnd.amadeus+json":{source:"iana",compressible:true},"application/vnd.amazon.ebook":{source:"apache",extensions:["azw"]},"application/vnd.amazon.mobi8-ebook":{source:"iana"},"application/vnd.americandynamics.acc":{source:"iana",extensions:["acc"]},"application/vnd.amiga.ami":{source:"iana",extensions:["ami"]},"application/vnd.amundsen.maze+xml":{source:"iana"},"application/vnd.android.package-archive":{source:"apache",compressible:false,extensions:["apk"]},"application/vnd.anki":{source:"iana"},"application/vnd.anser-web-certificate-issue-initiation":{source:"iana",extensions:["cii"]},"application/vnd.anser-web-funds-transfer-initiation":{source:"apache",extensions:["fti"]},"application/vnd.antix.game-component":{source:"iana",extensions:["atx"]},"application/vnd.apache.thrift.binary":{source:"iana"},"application/vnd.apache.thrift.compact":{source:"iana"},"application/vnd.apache.thrift.json":{source:"iana"},"application/vnd.api+json":{source:"iana",compressible:true},"application/vnd.apothekende.reservation+json":{source:"iana",compressible:true},"application/vnd.apple.installer+xml":{source:"iana",extensions:["mpkg"]},"application/vnd.apple.mpegurl":{source:"iana",extensions:["m3u8"]},"application/vnd.apple.pkpass":{compressible:false,extensions:["pkpass"]},"application/vnd.arastra.swi":{source:"iana"},"application/vnd.aristanetworks.swi":{source:"iana",extensions:["swi"]},"application/vnd.artsquare":{source:"iana"},"application/vnd.astraea-software.iota":{source:"iana",extensions:["iota"]},"application/vnd.audiograph":{source:"iana",extensions:["aep"]},"application/vnd.autopackage":{source:"iana"},"application/vnd.avalon+json":{source:"iana",compressible:true},"application/vnd.avistar+xml":{source:"iana"},"application/vnd.balsamiq.bmml+xml":{source:"iana"},"application/vnd.balsamiq.bmpr":{source:"iana"},"application/vnd.bbf.usp.msg":{source:"iana"},"application/vnd.bbf.usp.msg+json":{source:"iana",compressible:true},"application/vnd.bekitzur-stech+json":{source:"iana",compressible:true},"application/vnd.bint.med-content":{source:"iana"},"application/vnd.biopax.rdf+xml":{source:"iana"},"application/vnd.blink-idb-value-wrapper":{source:"iana"},"application/vnd.blueice.multipass":{source:"iana",extensions:["mpm"]},"application/vnd.bluetooth.ep.oob":{source:"iana"},"application/vnd.bluetooth.le.oob":{source:"iana"},"application/vnd.bmi":{source:"iana",extensions:["bmi"]},"application/vnd.businessobjects":{source:"iana",extensions:["rep"]},"application/vnd.cab-jscript":{source:"iana"},"application/vnd.canon-cpdl":{source:"iana"},"application/vnd.canon-lips":{source:"iana"},"application/vnd.capasystems-pg+json":{source:"iana",compressible:true},"application/vnd.cendio.thinlinc.clientconf":{source:"iana"},"application/vnd.century-systems.tcp_stream":{source:"iana"},"application/vnd.chemdraw+xml":{source:"iana",extensions:["cdxml"]},"application/vnd.chess-pgn":{source:"iana"},"application/vnd.chipnuts.karaoke-mmd":{source:"iana",extensions:["mmd"]},"application/vnd.cinderella":{source:"iana",extensions:["cdy"]},"application/vnd.cirpack.isdn-ext":{source:"iana"},"application/vnd.citationstyles.style+xml":{source:"iana"},"application/vnd.claymore":{source:"iana",extensions:["cla"]},"application/vnd.cloanto.rp9":{source:"iana",extensions:["rp9"]},"application/vnd.clonk.c4group":{source:"iana",extensions:["c4g","c4d","c4f","c4p","c4u"]},"application/vnd.cluetrust.cartomobile-config":{source:"iana",extensions:["c11amc"]},"application/vnd.cluetrust.cartomobile-config-pkg":{source:"iana",extensions:["c11amz"]},"application/vnd.coffeescript":{source:"iana"},"application/vnd.collabio.xodocuments.document":{source:"iana"},"application/vnd.collabio.xodocuments.document-template":{source:"iana"},"application/vnd.collabio.xodocuments.presentation":{source:"iana"},"application/vnd.collabio.xodocuments.presentation-template":{source:"iana"},"application/vnd.collabio.xodocuments.spreadsheet":{source:"iana"},"application/vnd.collabio.xodocuments.spreadsheet-template":{source:"iana"},"application/vnd.collection+json":{source:"iana",compressible:true},"application/vnd.collection.doc+json":{source:"iana",compressible:true},"application/vnd.collection.next+json":{source:"iana",compressible:true},"application/vnd.comicbook+zip":{source:"iana"},"application/vnd.comicbook-rar":{source:"iana"},"application/vnd.commerce-battelle":{source:"iana"},"application/vnd.commonspace":{source:"iana",extensions:["csp"]},"application/vnd.contact.cmsg":{source:"iana",extensions:["cdbcmsg"]},"application/vnd.coreos.ignition+json":{source:"iana",compressible:true},"application/vnd.cosmocaller":{source:"iana",extensions:["cmc"]},"application/vnd.crick.clicker":{source:"iana",extensions:["clkx"]},"application/vnd.crick.clicker.keyboard":{source:"iana",extensions:["clkk"]},"application/vnd.crick.clicker.palette":{source:"iana",extensions:["clkp"]},"application/vnd.crick.clicker.template":{source:"iana",extensions:["clkt"]},"application/vnd.crick.clicker.wordbank":{source:"iana",extensions:["clkw"]},"application/vnd.criticaltools.wbs+xml":{source:"iana",extensions:["wbs"]},"application/vnd.ctc-posml":{source:"iana",extensions:["pml"]},"application/vnd.ctct.ws+xml":{source:"iana"},"application/vnd.cups-pdf":{source:"iana"},"application/vnd.cups-postscript":{source:"iana"},"application/vnd.cups-ppd":{source:"iana",extensions:["ppd"]},"application/vnd.cups-raster":{source:"iana"},"application/vnd.cups-raw":{source:"iana"},"application/vnd.curl":{source:"iana"},"application/vnd.curl.car":{source:"apache",extensions:["car"]},"application/vnd.curl.pcurl":{source:"apache",extensions:["pcurl"]},"application/vnd.cyan.dean.root+xml":{source:"iana"},"application/vnd.cybank":{source:"iana"},"application/vnd.d2l.coursepackage1p0+zip":{source:"iana"},"application/vnd.dart":{source:"iana",compressible:true,extensions:["dart"]},"application/vnd.data-vision.rdz":{source:"iana",extensions:["rdz"]},"application/vnd.datapackage+json":{source:"iana",compressible:true},"application/vnd.dataresource+json":{source:"iana",compressible:true},"application/vnd.debian.binary-package":{source:"iana"},"application/vnd.dece.data":{source:"iana",extensions:["uvf","uvvf","uvd","uvvd"]},"application/vnd.dece.ttml+xml":{source:"iana",extensions:["uvt","uvvt"]},"application/vnd.dece.unspecified":{source:"iana",extensions:["uvx","uvvx"]},"application/vnd.dece.zip":{source:"iana",extensions:["uvz","uvvz"]},"application/vnd.denovo.fcselayout-link":{source:"iana",extensions:["fe_launch"]},"application/vnd.desmume-movie":{source:"iana"},"application/vnd.desmume.movie":{source:"apache"},"application/vnd.dir-bi.plate-dl-nosuffix":{source:"iana"},"application/vnd.dm.delegation+xml":{source:"iana"},"application/vnd.dna":{source:"iana",extensions:["dna"]},"application/vnd.document+json":{source:"iana",compressible:true},"application/vnd.dolby.mlp":{source:"apache",extensions:["mlp"]},"application/vnd.dolby.mobile.1":{source:"iana"},"application/vnd.dolby.mobile.2":{source:"iana"},"application/vnd.doremir.scorecloud-binary-document":{source:"iana"},"application/vnd.dpgraph":{source:"iana",extensions:["dpg"]},"application/vnd.dreamfactory":{source:"iana",extensions:["dfac"]},"application/vnd.drive+json":{source:"iana",compressible:true},"application/vnd.ds-keypoint":{source:"apache",extensions:["kpxx"]},"application/vnd.dtg.local":{source:"iana"},"application/vnd.dtg.local.flash":{source:"iana"},"application/vnd.dtg.local.html":{source:"iana"},"application/vnd.dvb.ait":{source:"iana",extensions:["ait"]},"application/vnd.dvb.dvbj":{source:"iana"},"application/vnd.dvb.esgcontainer":{source:"iana"},"application/vnd.dvb.ipdcdftnotifaccess":{source:"iana"},"application/vnd.dvb.ipdcesgaccess":{source:"iana"},"application/vnd.dvb.ipdcesgaccess2":{source:"iana"},"application/vnd.dvb.ipdcesgpdd":{source:"iana"},"application/vnd.dvb.ipdcroaming":{source:"iana"},"application/vnd.dvb.iptv.alfec-base":{source:"iana"},"application/vnd.dvb.iptv.alfec-enhancement":{source:"iana"},"application/vnd.dvb.notif-aggregate-root+xml":{source:"iana"},"application/vnd.dvb.notif-container+xml":{source:"iana"},"application/vnd.dvb.notif-generic+xml":{source:"iana"},"application/vnd.dvb.notif-ia-msglist+xml":{source:"iana"},"application/vnd.dvb.notif-ia-registration-request+xml":{source:"iana"},"application/vnd.dvb.notif-ia-registration-response+xml":{source:"iana"},"application/vnd.dvb.notif-init+xml":{source:"iana"},"application/vnd.dvb.pfr":{source:"iana"},"application/vnd.dvb.service":{source:"iana",extensions:["svc"]},"application/vnd.dxr":{source:"iana"},"application/vnd.dynageo":{source:"iana",extensions:["geo"]},"application/vnd.dzr":{source:"iana"},"application/vnd.easykaraoke.cdgdownload":{source:"iana"},"application/vnd.ecdis-update":{source:"iana"},"application/vnd.ecip.rlp":{source:"iana"},"application/vnd.ecowin.chart":{source:"iana",extensions:["mag"]},"application/vnd.ecowin.filerequest":{source:"iana"},"application/vnd.ecowin.fileupdate":{source:"iana"},"application/vnd.ecowin.series":{source:"iana"},"application/vnd.ecowin.seriesrequest":{source:"iana"},"application/vnd.ecowin.seriesupdate":{source:"iana"},"application/vnd.efi.img":{source:"iana"},"application/vnd.efi.iso":{source:"iana"},"application/vnd.emclient.accessrequest+xml":{source:"iana"},"application/vnd.enliven":{source:"iana",extensions:["nml"]},"application/vnd.enphase.envoy":{source:"iana"},"application/vnd.eprints.data+xml":{source:"iana"},"application/vnd.epson.esf":{source:"iana",extensions:["esf"]},"application/vnd.epson.msf":{source:"iana",extensions:["msf"]},"application/vnd.epson.quickanime":{source:"iana",extensions:["qam"]},"application/vnd.epson.salt":{source:"iana",extensions:["slt"]},"application/vnd.epson.ssf":{source:"iana",extensions:["ssf"]},"application/vnd.ericsson.quickcall":{source:"iana"},"application/vnd.espass-espass+zip":{source:"iana"},"application/vnd.eszigno3+xml":{source:"iana",extensions:["es3","et3"]},"application/vnd.etsi.aoc+xml":{source:"iana"},"application/vnd.etsi.asic-e+zip":{source:"iana"},"application/vnd.etsi.asic-s+zip":{source:"iana"},"application/vnd.etsi.cug+xml":{source:"iana"},"application/vnd.etsi.iptvcommand+xml":{source:"iana"},"application/vnd.etsi.iptvdiscovery+xml":{source:"iana"},"application/vnd.etsi.iptvprofile+xml":{source:"iana"},"application/vnd.etsi.iptvsad-bc+xml":{source:"iana"},"application/vnd.etsi.iptvsad-cod+xml":{source:"iana"},"application/vnd.etsi.iptvsad-npvr+xml":{source:"iana"},"application/vnd.etsi.iptvservice+xml":{source:"iana"},"application/vnd.etsi.iptvsync+xml":{source:"iana"},"application/vnd.etsi.iptvueprofile+xml":{source:"iana"},"application/vnd.etsi.mcid+xml":{source:"iana"},"application/vnd.etsi.mheg5":{source:"iana"},"application/vnd.etsi.overload-control-policy-dataset+xml":{source:"iana"},"application/vnd.etsi.pstn+xml":{source:"iana"},"application/vnd.etsi.sci+xml":{source:"iana"},"application/vnd.etsi.simservs+xml":{source:"iana"},"application/vnd.etsi.timestamp-token":{source:"iana"},"application/vnd.etsi.tsl+xml":{source:"iana"},"application/vnd.etsi.tsl.der":{source:"iana"},"application/vnd.eudora.data":{source:"iana"},"application/vnd.evolv.ecig.profile":{source:"iana"},"application/vnd.evolv.ecig.settings":{source:"iana"},"application/vnd.evolv.ecig.theme":{source:"iana"},"application/vnd.ezpix-album":{source:"iana",extensions:["ez2"]},"application/vnd.ezpix-package":{source:"iana",extensions:["ez3"]},"application/vnd.f-secure.mobile":{source:"iana"},"application/vnd.fastcopy-disk-image":{source:"iana"},"application/vnd.fdf":{source:"iana",extensions:["fdf"]},"application/vnd.fdsn.mseed":{source:"iana",extensions:["mseed"]},"application/vnd.fdsn.seed":{source:"iana",extensions:["seed","dataless"]},"application/vnd.ffsns":{source:"iana"},"application/vnd.filmit.zfc":{source:"iana"},"application/vnd.fints":{source:"iana"},"application/vnd.firemonkeys.cloudcell":{source:"iana"},"application/vnd.flographit":{source:"iana",extensions:["gph"]},"application/vnd.fluxtime.clip":{source:"iana",extensions:["ftc"]},"application/vnd.font-fontforge-sfd":{source:"iana"},"application/vnd.framemaker":{source:"iana",extensions:["fm","frame","maker","book"]},"application/vnd.frogans.fnc":{source:"iana",extensions:["fnc"]},"application/vnd.frogans.ltf":{source:"iana",extensions:["ltf"]},"application/vnd.fsc.weblaunch":{source:"iana",extensions:["fsc"]},"application/vnd.fujitsu.oasys":{source:"iana",extensions:["oas"]},"application/vnd.fujitsu.oasys2":{source:"iana",extensions:["oa2"]},"application/vnd.fujitsu.oasys3":{source:"iana",extensions:["oa3"]},"application/vnd.fujitsu.oasysgp":{source:"iana",extensions:["fg5"]},"application/vnd.fujitsu.oasysprs":{source:"iana",extensions:["bh2"]},"application/vnd.fujixerox.art-ex":{source:"iana"},"application/vnd.fujixerox.art4":{source:"iana"},"application/vnd.fujixerox.ddd":{source:"iana",extensions:["ddd"]},"application/vnd.fujixerox.docuworks":{source:"iana",extensions:["xdw"]},"application/vnd.fujixerox.docuworks.binder":{source:"iana",extensions:["xbd"]},"application/vnd.fujixerox.docuworks.container":{source:"iana"},"application/vnd.fujixerox.hbpl":{source:"iana"},"application/vnd.fut-misnet":{source:"iana"},"application/vnd.fuzzysheet":{source:"iana",extensions:["fzs"]},"application/vnd.genomatix.tuxedo":{source:"iana",extensions:["txd"]},"application/vnd.geo+json":{source:"iana",compressible:true},"application/vnd.geocube+xml":{source:"iana"},"application/vnd.geogebra.file":{source:"iana",extensions:["ggb"]},"application/vnd.geogebra.tool":{source:"iana",extensions:["ggt"]},"application/vnd.geometry-explorer":{source:"iana",extensions:["gex","gre"]},"application/vnd.geonext":{source:"iana",extensions:["gxt"]},"application/vnd.geoplan":{source:"iana",extensions:["g2w"]},"application/vnd.geospace":{source:"iana",extensions:["g3w"]},"application/vnd.gerber":{source:"iana"},"application/vnd.globalplatform.card-content-mgt":{source:"iana"},"application/vnd.globalplatform.card-content-mgt-response":{source:"iana"},"application/vnd.gmx":{source:"iana",extensions:["gmx"]},"application/vnd.google-apps.document":{compressible:false,extensions:["gdoc"]},"application/vnd.google-apps.presentation":{compressible:false,extensions:["gslides"]},"application/vnd.google-apps.spreadsheet":{compressible:false,extensions:["gsheet"]},"application/vnd.google-earth.kml+xml":{source:"iana",compressible:true,extensions:["kml"]},"application/vnd.google-earth.kmz":{source:"iana",compressible:false,extensions:["kmz"]},"application/vnd.gov.sk.e-form+xml":{source:"iana"},"application/vnd.gov.sk.e-form+zip":{source:"iana"},"application/vnd.gov.sk.xmldatacontainer+xml":{source:"iana"},"application/vnd.grafeq":{source:"iana",extensions:["gqf","gqs"]},"application/vnd.gridmp":{source:"iana"},"application/vnd.groove-account":{source:"iana",extensions:["gac"]},"application/vnd.groove-help":{source:"iana",extensions:["ghf"]},"application/vnd.groove-identity-message":{source:"iana",extensions:["gim"]},"application/vnd.groove-injector":{source:"iana",extensions:["grv"]},"application/vnd.groove-tool-message":{source:"iana",extensions:["gtm"]},"application/vnd.groove-tool-template":{source:"iana",extensions:["tpl"]},"application/vnd.groove-vcard":{source:"iana",extensions:["vcg"]},"application/vnd.hal+json":{source:"iana",compressible:true},"application/vnd.hal+xml":{source:"iana",extensions:["hal"]},"application/vnd.handheld-entertainment+xml":{source:"iana",extensions:["zmm"]},"application/vnd.hbci":{source:"iana",extensions:["hbci"]},"application/vnd.hc+json":{source:"iana",compressible:true},"application/vnd.hcl-bireports":{source:"iana"},"application/vnd.hdt":{source:"iana"},"application/vnd.heroku+json":{source:"iana",compressible:true},"application/vnd.hhe.lesson-player":{source:"iana",extensions:["les"]},"application/vnd.hp-hpgl":{source:"iana",extensions:["hpgl"]},"application/vnd.hp-hpid":{source:"iana",extensions:["hpid"]},"application/vnd.hp-hps":{source:"iana",extensions:["hps"]},"application/vnd.hp-jlyt":{source:"iana",extensions:["jlt"]},"application/vnd.hp-pcl":{source:"iana",extensions:["pcl"]},"application/vnd.hp-pclxl":{source:"iana",extensions:["pclxl"]},"application/vnd.httphone":{source:"iana"},"application/vnd.hydrostatix.sof-data":{source:"iana",extensions:["sfd-hdstx"]},"application/vnd.hyper-item+json":{source:"iana",compressible:true},"application/vnd.hyperdrive+json":{source:"iana",compressible:true},"application/vnd.hzn-3d-crossword":{source:"iana"},"application/vnd.ibm.afplinedata":{source:"iana"},"application/vnd.ibm.electronic-media":{source:"iana"},"application/vnd.ibm.minipay":{source:"iana",extensions:["mpy"]},"application/vnd.ibm.modcap":{source:"iana",extensions:["afp","listafp","list3820"]},"application/vnd.ibm.rights-management":{source:"iana",extensions:["irm"]},"application/vnd.ibm.secure-container":{source:"iana",extensions:["sc"]},"application/vnd.iccprofile":{source:"iana",extensions:["icc","icm"]},"application/vnd.ieee.1905":{source:"iana"},"application/vnd.igloader":{source:"iana",extensions:["igl"]},"application/vnd.imagemeter.folder+zip":{source:"iana"},"application/vnd.imagemeter.image+zip":{source:"iana"},"application/vnd.immervision-ivp":{source:"iana",extensions:["ivp"]},"application/vnd.immervision-ivu":{source:"iana",extensions:["ivu"]},"application/vnd.ims.imsccv1p1":{source:"iana"},"application/vnd.ims.imsccv1p2":{source:"iana"},"application/vnd.ims.imsccv1p3":{source:"iana"},"application/vnd.ims.lis.v2.result+json":{source:"iana",compressible:true},"application/vnd.ims.lti.v2.toolconsumerprofile+json":{source:"iana",compressible:true},"application/vnd.ims.lti.v2.toolproxy+json":{source:"iana",compressible:true},"application/vnd.ims.lti.v2.toolproxy.id+json":{source:"iana",compressible:true},"application/vnd.ims.lti.v2.toolsettings+json":{source:"iana",compressible:true},"application/vnd.ims.lti.v2.toolsettings.simple+json":{source:"iana",compressible:true},"application/vnd.informedcontrol.rms+xml":{source:"iana"},"application/vnd.informix-visionary":{source:"iana"},"application/vnd.infotech.project":{source:"iana"},"application/vnd.infotech.project+xml":{source:"iana"},"application/vnd.innopath.wamp.notification":{source:"iana"},"application/vnd.insors.igm":{source:"iana",extensions:["igm"]},"application/vnd.intercon.formnet":{source:"iana",extensions:["xpw","xpx"]},"application/vnd.intergeo":{source:"iana",extensions:["i2g"]},"application/vnd.intertrust.digibox":{source:"iana"},"application/vnd.intertrust.nncp":{source:"iana"},"application/vnd.intu.qbo":{source:"iana",extensions:["qbo"]},"application/vnd.intu.qfx":{source:"iana",extensions:["qfx"]},"application/vnd.iptc.g2.catalogitem+xml":{source:"iana"},"application/vnd.iptc.g2.conceptitem+xml":{source:"iana"},"application/vnd.iptc.g2.knowledgeitem+xml":{source:"iana"},"application/vnd.iptc.g2.newsitem+xml":{source:"iana"},"application/vnd.iptc.g2.newsmessage+xml":{source:"iana"},"application/vnd.iptc.g2.packageitem+xml":{source:"iana"},"application/vnd.iptc.g2.planningitem+xml":{source:"iana"},"application/vnd.ipunplugged.rcprofile":{source:"iana",extensions:["rcprofile"]},"application/vnd.irepository.package+xml":{source:"iana",extensions:["irp"]},"application/vnd.is-xpr":{source:"iana",extensions:["xpr"]},"application/vnd.isac.fcs":{source:"iana",extensions:["fcs"]},"application/vnd.jam":{source:"iana",extensions:["jam"]},"application/vnd.japannet-directory-service":{source:"iana"},"application/vnd.japannet-jpnstore-wakeup":{source:"iana"},"application/vnd.japannet-payment-wakeup":{source:"iana"},"application/vnd.japannet-registration":{source:"iana"},"application/vnd.japannet-registration-wakeup":{source:"iana"},"application/vnd.japannet-setstore-wakeup":{source:"iana"},"application/vnd.japannet-verification":{source:"iana"},"application/vnd.japannet-verification-wakeup":{source:"iana"},"application/vnd.jcp.javame.midlet-rms":{source:"iana",extensions:["rms"]},"application/vnd.jisp":{source:"iana",extensions:["jisp"]},"application/vnd.joost.joda-archive":{source:"iana",extensions:["joda"]},"application/vnd.jsk.isdn-ngn":{source:"iana"},"application/vnd.kahootz":{source:"iana",extensions:["ktz","ktr"]},"application/vnd.kde.karbon":{source:"iana",extensions:["karbon"]},"application/vnd.kde.kchart":{source:"iana",extensions:["chrt"]},"application/vnd.kde.kformula":{source:"iana",extensions:["kfo"]},"application/vnd.kde.kivio":{source:"iana",extensions:["flw"]},"application/vnd.kde.kontour":{source:"iana",extensions:["kon"]},"application/vnd.kde.kpresenter":{source:"iana",extensions:["kpr","kpt"]},"application/vnd.kde.kspread":{source:"iana",extensions:["ksp"]},"application/vnd.kde.kword":{source:"iana",extensions:["kwd","kwt"]},"application/vnd.kenameaapp":{source:"iana",extensions:["htke"]},"application/vnd.kidspiration":{source:"iana",extensions:["kia"]},"application/vnd.kinar":{source:"iana",extensions:["kne","knp"]},"application/vnd.koan":{source:"iana",extensions:["skp","skd","skt","skm"]},"application/vnd.kodak-descriptor":{source:"iana",extensions:["sse"]},"application/vnd.las.las+json":{source:"iana",compressible:true},"application/vnd.las.las+xml":{source:"iana",extensions:["lasxml"]},"application/vnd.liberty-request+xml":{source:"iana"},"application/vnd.llamagraphics.life-balance.desktop":{source:"iana",extensions:["lbd"]},"application/vnd.llamagraphics.life-balance.exchange+xml":{source:"iana",extensions:["lbe"]},"application/vnd.lotus-1-2-3":{source:"iana",extensions:["123"]},"application/vnd.lotus-approach":{source:"iana",extensions:["apr"]},"application/vnd.lotus-freelance":{source:"iana",extensions:["pre"]},"application/vnd.lotus-notes":{source:"iana",extensions:["nsf"]},"application/vnd.lotus-organizer":{source:"iana",extensions:["org"]},"application/vnd.lotus-screencam":{source:"iana",extensions:["scm"]},"application/vnd.lotus-wordpro":{source:"iana",extensions:["lwp"]},"application/vnd.macports.portpkg":{source:"iana",extensions:["portpkg"]},"application/vnd.mapbox-vector-tile":{source:"iana"},"application/vnd.marlin.drm.actiontoken+xml":{source:"iana"},"application/vnd.marlin.drm.conftoken+xml":{source:"iana"},"application/vnd.marlin.drm.license+xml":{source:"iana"},"application/vnd.marlin.drm.mdcf":{source:"iana"},"application/vnd.mason+json":{source:"iana",compressible:true},"application/vnd.maxmind.maxmind-db":{source:"iana"},"application/vnd.mcd":{source:"iana",extensions:["mcd"]},"application/vnd.medcalcdata":{source:"iana",extensions:["mc1"]},"application/vnd.mediastation.cdkey":{source:"iana",extensions:["cdkey"]},"application/vnd.meridian-slingshot":{source:"iana"},"application/vnd.mfer":{source:"iana",extensions:["mwf"]},"application/vnd.mfmp":{source:"iana",extensions:["mfm"]},"application/vnd.micro+json":{source:"iana",compressible:true},"application/vnd.micrografx.flo":{source:"iana",extensions:["flo"]},"application/vnd.micrografx.igx":{source:"iana",extensions:["igx"]},"application/vnd.microsoft.portable-executable":{source:"iana"},"application/vnd.microsoft.windows.thumbnail-cache":{source:"iana"},"application/vnd.miele+json":{source:"iana",compressible:true},"application/vnd.mif":{source:"iana",extensions:["mif"]},"application/vnd.minisoft-hp3000-save":{source:"iana"},"application/vnd.mitsubishi.misty-guard.trustweb":{source:"iana"},"application/vnd.mobius.daf":{source:"iana",extensions:["daf"]},"application/vnd.mobius.dis":{source:"iana",extensions:["dis"]},"application/vnd.mobius.mbk":{source:"iana",extensions:["mbk"]},"application/vnd.mobius.mqy":{source:"iana",extensions:["mqy"]},"application/vnd.mobius.msl":{source:"iana",extensions:["msl"]},"application/vnd.mobius.plc":{source:"iana",extensions:["plc"]},"application/vnd.mobius.txf":{source:"iana",extensions:["txf"]},"application/vnd.mophun.application":{source:"iana",extensions:["mpn"]},"application/vnd.mophun.certificate":{source:"iana",extensions:["mpc"]},"application/vnd.motorola.flexsuite":{source:"iana"},"application/vnd.motorola.flexsuite.adsi":{source:"iana"},"application/vnd.motorola.flexsuite.fis":{source:"iana"},"application/vnd.motorola.flexsuite.gotap":{source:"iana"},"application/vnd.motorola.flexsuite.kmr":{source:"iana"},"application/vnd.motorola.flexsuite.ttc":{source:"iana"},"application/vnd.motorola.flexsuite.wem":{source:"iana"},"application/vnd.motorola.iprm":{source:"iana"},"application/vnd.mozilla.xul+xml":{source:"iana",compressible:true,extensions:["xul"]},"application/vnd.ms-3mfdocument":{source:"iana"},"application/vnd.ms-artgalry":{source:"iana",extensions:["cil"]},"application/vnd.ms-asf":{source:"iana"},"application/vnd.ms-cab-compressed":{source:"iana",extensions:["cab"]},"application/vnd.ms-color.iccprofile":{source:"apache"},"application/vnd.ms-excel":{source:"iana",compressible:false,extensions:["xls","xlm","xla","xlc","xlt","xlw"]},"application/vnd.ms-excel.addin.macroenabled.12":{source:"iana",extensions:["xlam"]},"application/vnd.ms-excel.sheet.binary.macroenabled.12":{source:"iana",extensions:["xlsb"]},"application/vnd.ms-excel.sheet.macroenabled.12":{source:"iana",extensions:["xlsm"]},"application/vnd.ms-excel.template.macroenabled.12":{source:"iana",extensions:["xltm"]},"application/vnd.ms-fontobject":{source:"iana",compressible:true,extensions:["eot"]},"application/vnd.ms-htmlhelp":{source:"iana",extensions:["chm"]},"application/vnd.ms-ims":{source:"iana",extensions:["ims"]},"application/vnd.ms-lrm":{source:"iana",extensions:["lrm"]},"application/vnd.ms-office.activex+xml":{source:"iana"},"application/vnd.ms-officetheme":{source:"iana",extensions:["thmx"]},"application/vnd.ms-opentype":{source:"apache",compressible:true},"application/vnd.ms-outlook":{compressible:false,extensions:["msg"]},"application/vnd.ms-package.obfuscated-opentype":{source:"apache"},"application/vnd.ms-pki.seccat":{source:"apache",extensions:["cat"]},"application/vnd.ms-pki.stl":{source:"apache",extensions:["stl"]},"application/vnd.ms-playready.initiator+xml":{source:"iana"},"application/vnd.ms-powerpoint":{source:"iana",compressible:false,extensions:["ppt","pps","pot"]},"application/vnd.ms-powerpoint.addin.macroenabled.12":{source:"iana",extensions:["ppam"]},"application/vnd.ms-powerpoint.presentation.macroenabled.12":{source:"iana",extensions:["pptm"]},"application/vnd.ms-powerpoint.slide.macroenabled.12":{source:"iana",extensions:["sldm"]},"application/vnd.ms-powerpoint.slideshow.macroenabled.12":{source:"iana",extensions:["ppsm"]},"application/vnd.ms-powerpoint.template.macroenabled.12":{source:"iana",extensions:["potm"]},"application/vnd.ms-printdevicecapabilities+xml":{source:"iana"},"application/vnd.ms-printing.printticket+xml":{source:"apache"},"application/vnd.ms-printschematicket+xml":{source:"iana"},"application/vnd.ms-project":{source:"iana",extensions:["mpp","mpt"]},"application/vnd.ms-tnef":{source:"iana"},"application/vnd.ms-windows.devicepairing":{source:"iana"},"application/vnd.ms-windows.nwprinting.oob":{source:"iana"},"application/vnd.ms-windows.printerpairing":{source:"iana"},"application/vnd.ms-windows.wsd.oob":{source:"iana"},"application/vnd.ms-wmdrm.lic-chlg-req":{source:"iana"},"application/vnd.ms-wmdrm.lic-resp":{source:"iana"},"application/vnd.ms-wmdrm.meter-chlg-req":{source:"iana"},"application/vnd.ms-wmdrm.meter-resp":{source:"iana"},"application/vnd.ms-word.document.macroenabled.12":{source:"iana",extensions:["docm"]},"application/vnd.ms-word.template.macroenabled.12":{source:"iana",extensions:["dotm"]},"application/vnd.ms-works":{source:"iana",extensions:["wps","wks","wcm","wdb"]},"application/vnd.ms-wpl":{source:"iana",extensions:["wpl"]},"application/vnd.ms-xpsdocument":{source:"iana",compressible:false,extensions:["xps"]},"application/vnd.msa-disk-image":{source:"iana"},"application/vnd.mseq":{source:"iana",extensions:["mseq"]},"application/vnd.msign":{source:"iana"},"application/vnd.multiad.creator":{source:"iana"},"application/vnd.multiad.creator.cif":{source:"iana"},"application/vnd.music-niff":{source:"iana"},"application/vnd.musician":{source:"iana",extensions:["mus"]},"application/vnd.muvee.style":{source:"iana",extensions:["msty"]},"application/vnd.mynfc":{source:"iana",extensions:["taglet"]},"application/vnd.ncd.control":{source:"iana"},"application/vnd.ncd.reference":{source:"iana"},"application/vnd.nearst.inv+json":{source:"iana",compressible:true},"application/vnd.nervana":{source:"iana"},"application/vnd.netfpx":{source:"iana"},"application/vnd.neurolanguage.nlu":{source:"iana",extensions:["nlu"]},"application/vnd.nintendo.nitro.rom":{source:"iana"},"application/vnd.nintendo.snes.rom":{source:"iana"},"application/vnd.nitf":{source:"iana",extensions:["ntf","nitf"]},"application/vnd.noblenet-directory":{source:"iana",extensions:["nnd"]},"application/vnd.noblenet-sealer":{source:"iana",extensions:["nns"]},"application/vnd.noblenet-web":{source:"iana",extensions:["nnw"]},"application/vnd.nokia.catalogs":{source:"iana"},"application/vnd.nokia.conml+wbxml":{source:"iana"},"application/vnd.nokia.conml+xml":{source:"iana"},"application/vnd.nokia.iptv.config+xml":{source:"iana"},"application/vnd.nokia.isds-radio-presets":{source:"iana"},"application/vnd.nokia.landmark+wbxml":{source:"iana"},"application/vnd.nokia.landmark+xml":{source:"iana"},"application/vnd.nokia.landmarkcollection+xml":{source:"iana"},"application/vnd.nokia.n-gage.ac+xml":{source:"iana"},"application/vnd.nokia.n-gage.data":{source:"iana",extensions:["ngdat"]},"application/vnd.nokia.n-gage.symbian.install":{source:"iana",extensions:["n-gage"]},"application/vnd.nokia.ncd":{source:"iana"},"application/vnd.nokia.pcd+wbxml":{source:"iana"},"application/vnd.nokia.pcd+xml":{source:"iana"},"application/vnd.nokia.radio-preset":{source:"iana",extensions:["rpst"]},"application/vnd.nokia.radio-presets":{source:"iana",extensions:["rpss"]},"application/vnd.novadigm.edm":{source:"iana",extensions:["edm"]},"application/vnd.novadigm.edx":{source:"iana",extensions:["edx"]},"application/vnd.novadigm.ext":{source:"iana",extensions:["ext"]},"application/vnd.ntt-local.content-share":{source:"iana"},"application/vnd.ntt-local.file-transfer":{source:"iana"},"application/vnd.ntt-local.ogw_remote-access":{source:"iana"},"application/vnd.ntt-local.sip-ta_remote":{source:"iana"},"application/vnd.ntt-local.sip-ta_tcp_stream":{source:"iana"},"application/vnd.oasis.opendocument.chart":{source:"iana",extensions:["odc"]},"application/vnd.oasis.opendocument.chart-template":{source:"iana",extensions:["otc"]},"application/vnd.oasis.opendocument.database":{source:"iana",extensions:["odb"]},"application/vnd.oasis.opendocument.formula":{source:"iana",extensions:["odf"]},"application/vnd.oasis.opendocument.formula-template":{source:"iana",extensions:["odft"]},"application/vnd.oasis.opendocument.graphics":{source:"iana",compressible:false,extensions:["odg"]},"application/vnd.oasis.opendocument.graphics-template":{source:"iana",extensions:["otg"]},"application/vnd.oasis.opendocument.image":{source:"iana",extensions:["odi"]},"application/vnd.oasis.opendocument.image-template":{source:"iana",extensions:["oti"]},"application/vnd.oasis.opendocument.presentation":{source:"iana",compressible:false,extensions:["odp"]},"application/vnd.oasis.opendocument.presentation-template":{source:"iana",extensions:["otp"]},"application/vnd.oasis.opendocument.spreadsheet":{source:"iana",compressible:false,extensions:["ods"]},"application/vnd.oasis.opendocument.spreadsheet-template":{source:"iana",extensions:["ots"]},"application/vnd.oasis.opendocument.text":{source:"iana",compressible:false,extensions:["odt"]},"application/vnd.oasis.opendocument.text-master":{source:"iana",extensions:["odm"]},"application/vnd.oasis.opendocument.text-template":{source:"iana",extensions:["ott"]},"application/vnd.oasis.opendocument.text-web":{source:"iana",extensions:["oth"]},"application/vnd.obn":{source:"iana"},"application/vnd.ocf+cbor":{source:"iana"},"application/vnd.oftn.l10n+json":{source:"iana",compressible:true},"application/vnd.oipf.contentaccessdownload+xml":{source:"iana"},"application/vnd.oipf.contentaccessstreaming+xml":{source:"iana"},"application/vnd.oipf.cspg-hexbinary":{source:"iana"},"application/vnd.oipf.dae.svg+xml":{source:"iana"},"application/vnd.oipf.dae.xhtml+xml":{source:"iana"},"application/vnd.oipf.mippvcontrolmessage+xml":{source:"iana"},"application/vnd.oipf.pae.gem":{source:"iana"},"application/vnd.oipf.spdiscovery+xml":{source:"iana"},"application/vnd.oipf.spdlist+xml":{source:"iana"},"application/vnd.oipf.ueprofile+xml":{source:"iana"},"application/vnd.oipf.userprofile+xml":{source:"iana"},"application/vnd.olpc-sugar":{source:"iana",extensions:["xo"]},"application/vnd.oma-scws-config":{source:"iana"},"application/vnd.oma-scws-http-request":{source:"iana"},"application/vnd.oma-scws-http-response":{source:"iana"},"application/vnd.oma.bcast.associated-procedure-parameter+xml":{source:"iana"},"application/vnd.oma.bcast.drm-trigger+xml":{source:"iana"},"application/vnd.oma.bcast.imd+xml":{source:"iana"},"application/vnd.oma.bcast.ltkm":{source:"iana"},"application/vnd.oma.bcast.notification+xml":{source:"iana"},"application/vnd.oma.bcast.provisioningtrigger":{source:"iana"},"application/vnd.oma.bcast.sgboot":{source:"iana"},"application/vnd.oma.bcast.sgdd+xml":{source:"iana"},"application/vnd.oma.bcast.sgdu":{source:"iana"},"application/vnd.oma.bcast.simple-symbol-container":{source:"iana"},"application/vnd.oma.bcast.smartcard-trigger+xml":{source:"iana"},"application/vnd.oma.bcast.sprov+xml":{source:"iana"},"application/vnd.oma.bcast.stkm":{source:"iana"},"application/vnd.oma.cab-address-book+xml":{source:"iana"},"application/vnd.oma.cab-feature-handler+xml":{source:"iana"},"application/vnd.oma.cab-pcc+xml":{source:"iana"},"application/vnd.oma.cab-subs-invite+xml":{source:"iana"},"application/vnd.oma.cab-user-prefs+xml":{source:"iana"},"application/vnd.oma.dcd":{source:"iana"},"application/vnd.oma.dcdc":{source:"iana"},"application/vnd.oma.dd2+xml":{source:"iana",extensions:["dd2"]},"application/vnd.oma.drm.risd+xml":{source:"iana"},"application/vnd.oma.group-usage-list+xml":{source:"iana"},"application/vnd.oma.lwm2m+json":{source:"iana",compressible:true},"application/vnd.oma.lwm2m+tlv":{source:"iana"},"application/vnd.oma.pal+xml":{source:"iana"},"application/vnd.oma.poc.detailed-progress-report+xml":{source:"iana"},"application/vnd.oma.poc.final-report+xml":{source:"iana"},"application/vnd.oma.poc.groups+xml":{source:"iana"},"application/vnd.oma.poc.invocation-descriptor+xml":{source:"iana"},"application/vnd.oma.poc.optimized-progress-report+xml":{source:"iana"},"application/vnd.oma.push":{source:"iana"},"application/vnd.oma.scidm.messages+xml":{source:"iana"},"application/vnd.oma.xcap-directory+xml":{source:"iana"},"application/vnd.omads-email+xml":{source:"iana"},"application/vnd.omads-file+xml":{source:"iana"},"application/vnd.omads-folder+xml":{source:"iana"},"application/vnd.omaloc-supl-init":{source:"iana"},"application/vnd.onepager":{source:"iana"},"application/vnd.onepagertamp":{source:"iana"},"application/vnd.onepagertamx":{source:"iana"},"application/vnd.onepagertat":{source:"iana"},"application/vnd.onepagertatp":{source:"iana"},"application/vnd.onepagertatx":{source:"iana"},"application/vnd.openblox.game+xml":{source:"iana"},"application/vnd.openblox.game-binary":{source:"iana"},"application/vnd.openeye.oeb":{source:"iana"},"application/vnd.openofficeorg.extension":{source:"apache",extensions:["oxt"]},"application/vnd.openstreetmap.data+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.custom-properties+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.customxmlproperties+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.drawing+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.drawingml.chart+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.extended-properties+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.comments+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.presentation":{source:"iana",compressible:false,extensions:["pptx"]},"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.presprops+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.slide":{source:"iana",extensions:["sldx"]},"application/vnd.openxmlformats-officedocument.presentationml.slide+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.slideshow":{source:"iana",extensions:["ppsx"]},"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.tags+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.template":{source:"iana",extensions:["potx"]},"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{source:"iana",compressible:false,extensions:["xlsx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.template":{source:"iana",extensions:["xltx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.theme+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.themeoverride+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.vmldrawing":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.document":{source:"iana",compressible:false,extensions:["docx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.template":{source:"iana",extensions:["dotx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml":{source:"iana"},"application/vnd.openxmlformats-package.core-properties+xml":{source:"iana"},"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml":{source:"iana"},"application/vnd.openxmlformats-package.relationships+xml":{source:"iana"},"application/vnd.oracle.resource+json":{source:"iana",compressible:true},"application/vnd.orange.indata":{source:"iana"},"application/vnd.osa.netdeploy":{source:"iana"},"application/vnd.osgeo.mapguide.package":{source:"iana",extensions:["mgp"]},"application/vnd.osgi.bundle":{source:"iana"},"application/vnd.osgi.dp":{source:"iana",extensions:["dp"]},"application/vnd.osgi.subsystem":{source:"iana",extensions:["esa"]},"application/vnd.otps.ct-kip+xml":{source:"iana"},"application/vnd.oxli.countgraph":{source:"iana"},"application/vnd.pagerduty+json":{source:"iana",compressible:true},"application/vnd.palm":{source:"iana",extensions:["pdb","pqa","oprc"]},"application/vnd.panoply":{source:"iana"},"application/vnd.paos+xml":{source:"iana"},"application/vnd.paos.xml":{source:"apache"},"application/vnd.patentdive":{source:"iana"},"application/vnd.pawaafile":{source:"iana",extensions:["paw"]},"application/vnd.pcos":{source:"iana"},"application/vnd.pg.format":{source:"iana",extensions:["str"]},"application/vnd.pg.osasli":{source:"iana",extensions:["ei6"]},"application/vnd.piaccess.application-licence":{source:"iana"},"application/vnd.picsel":{source:"iana",extensions:["efif"]},"application/vnd.pmi.widget":{source:"iana",extensions:["wg"]},"application/vnd.poc.group-advertisement+xml":{source:"iana"},"application/vnd.pocketlearn":{source:"iana",extensions:["plf"]},"application/vnd.powerbuilder6":{source:"iana",extensions:["pbd"]},"application/vnd.powerbuilder6-s":{source:"iana"},"application/vnd.powerbuilder7":{source:"iana"},"application/vnd.powerbuilder7-s":{source:"iana"},"application/vnd.powerbuilder75":{source:"iana"},"application/vnd.powerbuilder75-s":{source:"iana"},"application/vnd.preminet":{source:"iana"},"application/vnd.previewsystems.box":{source:"iana",extensions:["box"]},"application/vnd.proteus.magazine":{source:"iana",extensions:["mgz"]},"application/vnd.publishare-delta-tree":{source:"iana",extensions:["qps"]},"application/vnd.pvi.ptid1":{source:"iana",extensions:["ptid"]},"application/vnd.pwg-multiplexed":{source:"iana"},"application/vnd.pwg-xhtml-print+xml":{source:"iana"},"application/vnd.qualcomm.brew-app-res":{source:"iana"},"application/vnd.quarantainenet":{source:"iana"},"application/vnd.quark.quarkxpress":{source:"iana",extensions:["qxd","qxt","qwd","qwt","qxl","qxb"]},"application/vnd.quobject-quoxdocument":{source:"iana"},"application/vnd.radisys.moml+xml":{source:"iana"},"application/vnd.radisys.msml+xml":{source:"iana"},"application/vnd.radisys.msml-audit+xml":{source:"iana"},"application/vnd.radisys.msml-audit-conf+xml":{source:"iana"},"application/vnd.radisys.msml-audit-conn+xml":{source:"iana"},"application/vnd.radisys.msml-audit-dialog+xml":{source:"iana"},"application/vnd.radisys.msml-audit-stream+xml":{source:"iana"},"application/vnd.radisys.msml-conf+xml":{source:"iana"},"application/vnd.radisys.msml-dialog+xml":{source:"iana"},"application/vnd.radisys.msml-dialog-base+xml":{source:"iana"},"application/vnd.radisys.msml-dialog-fax-detect+xml":{source:"iana"},"application/vnd.radisys.msml-dialog-fax-sendrecv+xml":{source:"iana"},"application/vnd.radisys.msml-dialog-group+xml":{source:"iana"},"application/vnd.radisys.msml-dialog-speech+xml":{source:"iana"},"application/vnd.radisys.msml-dialog-transform+xml":{source:"iana"},"application/vnd.rainstor.data":{source:"iana"},"application/vnd.rapid":{source:"iana"},"application/vnd.rar":{source:"iana"},"application/vnd.realvnc.bed":{source:"iana",extensions:["bed"]},"application/vnd.recordare.musicxml":{source:"iana",extensions:["mxl"]},"application/vnd.recordare.musicxml+xml":{source:"iana",extensions:["musicxml"]},"application/vnd.renlearn.rlprint":{source:"iana"},"application/vnd.restful+json":{source:"iana",compressible:true},"application/vnd.rig.cryptonote":{source:"iana",extensions:["cryptonote"]},"application/vnd.rim.cod":{source:"apache",extensions:["cod"]},"application/vnd.rn-realmedia":{source:"apache",extensions:["rm"]},"application/vnd.rn-realmedia-vbr":{source:"apache",extensions:["rmvb"]},"application/vnd.route66.link66+xml":{source:"iana",extensions:["link66"]},"application/vnd.rs-274x":{source:"iana"},"application/vnd.ruckus.download":{source:"iana"},"application/vnd.s3sms":{source:"iana"},"application/vnd.sailingtracker.track":{source:"iana",extensions:["st"]},"application/vnd.sbm.cid":{source:"iana"},"application/vnd.sbm.mid2":{source:"iana"},"application/vnd.scribus":{source:"iana"},"application/vnd.sealed.3df":{source:"iana"},"application/vnd.sealed.csf":{source:"iana"},"application/vnd.sealed.doc":{source:"iana"},"application/vnd.sealed.eml":{source:"iana"},"application/vnd.sealed.mht":{source:"iana"},"application/vnd.sealed.net":{source:"iana"},"application/vnd.sealed.ppt":{source:"iana"},"application/vnd.sealed.tiff":{source:"iana"},"application/vnd.sealed.xls":{source:"iana"},"application/vnd.sealedmedia.softseal.html":{source:"iana"},"application/vnd.sealedmedia.softseal.pdf":{source:"iana"},"application/vnd.seemail":{source:"iana",extensions:["see"]},"application/vnd.sema":{source:"iana",extensions:["sema"]},"application/vnd.semd":{source:"iana",extensions:["semd"]},"application/vnd.semf":{source:"iana",extensions:["semf"]},"application/vnd.shana.informed.formdata":{source:"iana",extensions:["ifm"]},"application/vnd.shana.informed.formtemplate":{source:"iana",extensions:["itp"]},"application/vnd.shana.informed.interchange":{source:"iana",extensions:["iif"]},"application/vnd.shana.informed.package":{source:"iana",extensions:["ipk"]},"application/vnd.sigrok.session":{source:"iana"},"application/vnd.simtech-mindmapper":{source:"iana",extensions:["twd","twds"]},"application/vnd.siren+json":{source:"iana",compressible:true},"application/vnd.smaf":{source:"iana",extensions:["mmf"]},"application/vnd.smart.notebook":{source:"iana"},"application/vnd.smart.teacher":{source:"iana",extensions:["teacher"]},"application/vnd.software602.filler.form+xml":{source:"iana"},"application/vnd.software602.filler.form-xml-zip":{source:"iana"},"application/vnd.solent.sdkm+xml":{source:"iana",extensions:["sdkm","sdkd"]},"application/vnd.spotfire.dxp":{source:"iana",extensions:["dxp"]},"application/vnd.spotfire.sfs":{source:"iana",extensions:["sfs"]},"application/vnd.sqlite3":{source:"iana"},"application/vnd.sss-cod":{source:"iana"},"application/vnd.sss-dtf":{source:"iana"},"application/vnd.sss-ntf":{source:"iana"},"application/vnd.stardivision.calc":{source:"apache",extensions:["sdc"]},"application/vnd.stardivision.draw":{source:"apache",extensions:["sda"]},"application/vnd.stardivision.impress":{source:"apache",extensions:["sdd"]},"application/vnd.stardivision.math":{source:"apache",extensions:["smf"]},"application/vnd.stardivision.writer":{source:"apache",extensions:["sdw","vor"]},"application/vnd.stardivision.writer-global":{source:"apache",extensions:["sgl"]},"application/vnd.stepmania.package":{source:"iana",extensions:["smzip"]},"application/vnd.stepmania.stepchart":{source:"iana",extensions:["sm"]},"application/vnd.street-stream":{source:"iana"},"application/vnd.sun.wadl+xml":{source:"iana",compressible:true,extensions:["wadl"]},"application/vnd.sun.xml.calc":{source:"apache",extensions:["sxc"]},"application/vnd.sun.xml.calc.template":{source:"apache",extensions:["stc"]},"application/vnd.sun.xml.draw":{source:"apache",extensions:["sxd"]},"application/vnd.sun.xml.draw.template":{source:"apache",extensions:["std"]},"application/vnd.sun.xml.impress":{source:"apache",extensions:["sxi"]},"application/vnd.sun.xml.impress.template":{source:"apache",extensions:["sti"]},"application/vnd.sun.xml.math":{source:"apache",extensions:["sxm"]},"application/vnd.sun.xml.writer":{source:"apache",extensions:["sxw"]},"application/vnd.sun.xml.writer.global":{source:"apache",extensions:["sxg"]},"application/vnd.sun.xml.writer.template":{source:"apache",extensions:["stw"]},"application/vnd.sus-calendar":{source:"iana",extensions:["sus","susp"]},"application/vnd.svd":{source:"iana",extensions:["svd"]},"application/vnd.swiftview-ics":{source:"iana"},"application/vnd.symbian.install":{source:"apache",extensions:["sis","sisx"]},"application/vnd.syncml+xml":{source:"iana",extensions:["xsm"]},"application/vnd.syncml.dm+wbxml":{source:"iana",extensions:["bdm"]},"application/vnd.syncml.dm+xml":{source:"iana",extensions:["xdm"]},"application/vnd.syncml.dm.notification":{source:"iana"},"application/vnd.syncml.dmddf+wbxml":{source:"iana"},"application/vnd.syncml.dmddf+xml":{source:"iana"},"application/vnd.syncml.dmtnds+wbxml":{source:"iana"},"application/vnd.syncml.dmtnds+xml":{source:"iana"},"application/vnd.syncml.ds.notification":{source:"iana"},"application/vnd.tableschema+json":{source:"iana",compressible:true},"application/vnd.tao.intent-module-archive":{source:"iana",extensions:["tao"]},"application/vnd.tcpdump.pcap":{source:"iana",extensions:["pcap","cap","dmp"]},"application/vnd.tmd.mediaflex.api+xml":{source:"iana"},"application/vnd.tml":{source:"iana"},"application/vnd.tmobile-livetv":{source:"iana",extensions:["tmo"]},"application/vnd.tri.onesource":{source:"iana"},"application/vnd.trid.tpt":{source:"iana",extensions:["tpt"]},"application/vnd.triscape.mxs":{source:"iana",extensions:["mxs"]},"application/vnd.trueapp":{source:"iana",extensions:["tra"]},"application/vnd.truedoc":{source:"iana"},"application/vnd.ubisoft.webplayer":{source:"iana"},"application/vnd.ufdl":{source:"iana",extensions:["ufd","ufdl"]},"application/vnd.uiq.theme":{source:"iana",extensions:["utz"]},"application/vnd.umajin":{source:"iana",extensions:["umj"]},"application/vnd.unity":{source:"iana",extensions:["unityweb"]},"application/vnd.uoml+xml":{source:"iana",extensions:["uoml"]},"application/vnd.uplanet.alert":{source:"iana"},"application/vnd.uplanet.alert-wbxml":{source:"iana"},"application/vnd.uplanet.bearer-choice":{source:"iana"},"application/vnd.uplanet.bearer-choice-wbxml":{source:"iana"},"application/vnd.uplanet.cacheop":{source:"iana"},"application/vnd.uplanet.cacheop-wbxml":{source:"iana"},"application/vnd.uplanet.channel":{source:"iana"},"application/vnd.uplanet.channel-wbxml":{source:"iana"},"application/vnd.uplanet.list":{source:"iana"},"application/vnd.uplanet.list-wbxml":{source:"iana"},"application/vnd.uplanet.listcmd":{source:"iana"},"application/vnd.uplanet.listcmd-wbxml":{source:"iana"},"application/vnd.uplanet.signal":{source:"iana"},"application/vnd.uri-map":{source:"iana"},"application/vnd.valve.source.material":{source:"iana"},"application/vnd.vcx":{source:"iana",extensions:["vcx"]},"application/vnd.vd-study":{source:"iana"},"application/vnd.vectorworks":{source:"iana"},"application/vnd.vel+json":{source:"iana",compressible:true},"application/vnd.verimatrix.vcas":{source:"iana"},"application/vnd.vidsoft.vidconference":{source:"iana"},"application/vnd.visio":{source:"iana",extensions:["vsd","vst","vss","vsw"]},"application/vnd.visionary":{source:"iana",extensions:["vis"]},"application/vnd.vividence.scriptfile":{source:"iana"},"application/vnd.vsf":{source:"iana",extensions:["vsf"]},"application/vnd.wap.sic":{source:"iana"},"application/vnd.wap.slc":{source:"iana"},"application/vnd.wap.wbxml":{source:"iana",extensions:["wbxml"]},"application/vnd.wap.wmlc":{source:"iana",extensions:["wmlc"]},"application/vnd.wap.wmlscriptc":{source:"iana",extensions:["wmlsc"]},"application/vnd.webturbo":{source:"iana",extensions:["wtb"]},"application/vnd.wfa.p2p":{source:"iana"},"application/vnd.wfa.wsc":{source:"iana"},"application/vnd.windows.devicepairing":{source:"iana"},"application/vnd.wmc":{source:"iana"},"application/vnd.wmf.bootstrap":{source:"iana"},"application/vnd.wolfram.mathematica":{source:"iana"},"application/vnd.wolfram.mathematica.package":{source:"iana"},"application/vnd.wolfram.player":{source:"iana",extensions:["nbp"]},"application/vnd.wordperfect":{source:"iana",extensions:["wpd"]},"application/vnd.wqd":{source:"iana",extensions:["wqd"]},"application/vnd.wrq-hp3000-labelled":{source:"iana"},"application/vnd.wt.stf":{source:"iana",extensions:["stf"]},"application/vnd.wv.csp+wbxml":{source:"iana"},"application/vnd.wv.csp+xml":{source:"iana"},"application/vnd.wv.ssp+xml":{source:"iana"},"application/vnd.xacml+json":{source:"iana",compressible:true},"application/vnd.xara":{source:"iana",extensions:["xar"]},"application/vnd.xfdl":{source:"iana",extensions:["xfdl"]},"application/vnd.xfdl.webform":{source:"iana"},"application/vnd.xmi+xml":{source:"iana"},"application/vnd.xmpie.cpkg":{source:"iana"},"application/vnd.xmpie.dpkg":{source:"iana"},"application/vnd.xmpie.plan":{source:"iana"},"application/vnd.xmpie.ppkg":{source:"iana"},"application/vnd.xmpie.xlim":{source:"iana"},"application/vnd.yamaha.hv-dic":{source:"iana",extensions:["hvd"]},"application/vnd.yamaha.hv-script":{source:"iana",extensions:["hvs"]},"application/vnd.yamaha.hv-voice":{source:"iana",extensions:["hvp"]},"application/vnd.yamaha.openscoreformat":{source:"iana",extensions:["osf"]},"application/vnd.yamaha.openscoreformat.osfpvg+xml":{source:"iana",extensions:["osfpvg"]},"application/vnd.yamaha.remote-setup":{source:"iana"},"application/vnd.yamaha.smaf-audio":{source:"iana",extensions:["saf"]},"application/vnd.yamaha.smaf-phrase":{source:"iana",extensions:["spf"]},"application/vnd.yamaha.through-ngn":{source:"iana"},"application/vnd.yamaha.tunnel-udpencap":{source:"iana"},"application/vnd.yaoweme":{source:"iana"},"application/vnd.yellowriver-custom-menu":{source:"iana",extensions:["cmp"]},"application/vnd.youtube.yt":{source:"iana"},"application/vnd.zul":{source:"iana",extensions:["zir","zirz"]},"application/vnd.zzazz.deck+xml":{source:"iana",extensions:["zaz"]},"application/voicexml+xml":{source:"iana",extensions:["vxml"]},"application/voucher-cms+json":{source:"iana",compressible:true},"application/vq-rtcpxr":{source:"iana"},"application/wasm":{compressible:true,extensions:["wasm"]},"application/watcherinfo+xml":{source:"iana"},"application/webpush-options+json":{source:"iana",compressible:true},"application/whoispp-query":{source:"iana"},"application/whoispp-response":{source:"iana"},"application/widget":{source:"iana",extensions:["wgt"]},"application/winhlp":{source:"apache",extensions:["hlp"]},"application/wita":{source:"iana"},"application/wordperfect5.1":{source:"iana"},"application/wsdl+xml":{source:"iana",extensions:["wsdl"]},"application/wspolicy+xml":{source:"iana",extensions:["wspolicy"]},"application/x-7z-compressed":{source:"apache",compressible:false,extensions:["7z"]},"application/x-abiword":{source:"apache",extensions:["abw"]},"application/x-ace-compressed":{source:"apache",extensions:["ace"]},"application/x-amf":{source:"apache"},"application/x-apple-diskimage":{source:"apache",extensions:["dmg"]},"application/x-arj":{compressible:false,extensions:["arj"]},"application/x-authorware-bin":{source:"apache",extensions:["aab","x32","u32","vox"]},"application/x-authorware-map":{source:"apache",extensions:["aam"]},"application/x-authorware-seg":{source:"apache",extensions:["aas"]},"application/x-bcpio":{source:"apache",extensions:["bcpio"]},"application/x-bdoc":{compressible:false,extensions:["bdoc"]},"application/x-bittorrent":{source:"apache",extensions:["torrent"]},"application/x-blorb":{source:"apache",extensions:["blb","blorb"]},"application/x-bzip":{source:"apache",compressible:false,extensions:["bz"]},"application/x-bzip2":{source:"apache",compressible:false,extensions:["bz2","boz"]},"application/x-cbr":{source:"apache",extensions:["cbr","cba","cbt","cbz","cb7"]},"application/x-cdlink":{source:"apache",extensions:["vcd"]},"application/x-cfs-compressed":{source:"apache",extensions:["cfs"]},"application/x-chat":{source:"apache",extensions:["chat"]},"application/x-chess-pgn":{source:"apache",extensions:["pgn"]},"application/x-chrome-extension":{extensions:["crx"]},"application/x-cocoa":{source:"nginx",extensions:["cco"]},"application/x-compress":{source:"apache"},"application/x-conference":{source:"apache",extensions:["nsc"]},"application/x-cpio":{source:"apache",extensions:["cpio"]},"application/x-csh":{source:"apache",extensions:["csh"]},"application/x-deb":{compressible:false},"application/x-debian-package":{source:"apache",extensions:["deb","udeb"]},"application/x-dgc-compressed":{source:"apache",extensions:["dgc"]},"application/x-director":{source:"apache",extensions:["dir","dcr","dxr","cst","cct","cxt","w3d","fgd","swa"]},"application/x-doom":{source:"apache",extensions:["wad"]},"application/x-dtbncx+xml":{source:"apache",extensions:["ncx"]},"application/x-dtbook+xml":{source:"apache",extensions:["dtb"]},"application/x-dtbresource+xml":{source:"apache",extensions:["res"]},"application/x-dvi":{source:"apache",compressible:false,extensions:["dvi"]},"application/x-envoy":{source:"apache",extensions:["evy"]},"application/x-eva":{source:"apache",extensions:["eva"]},"application/x-font-bdf":{source:"apache",extensions:["bdf"]},"application/x-font-dos":{source:"apache"},"application/x-font-framemaker":{source:"apache"},"application/x-font-ghostscript":{source:"apache",extensions:["gsf"]},"application/x-font-libgrx":{source:"apache"},"application/x-font-linux-psf":{source:"apache",extensions:["psf"]},"application/x-font-pcf":{source:"apache",extensions:["pcf"]},"application/x-font-snf":{source:"apache",extensions:["snf"]},"application/x-font-speedo":{source:"apache"},"application/x-font-sunos-news":{source:"apache"},"application/x-font-type1":{source:"apache",extensions:["pfa","pfb","pfm","afm"]},"application/x-font-vfont":{source:"apache"},"application/x-freearc":{source:"apache",extensions:["arc"]},"application/x-futuresplash":{source:"apache",extensions:["spl"]},"application/x-gca-compressed":{source:"apache",extensions:["gca"]},"application/x-glulx":{source:"apache",extensions:["ulx"]},"application/x-gnumeric":{source:"apache",extensions:["gnumeric"]},"application/x-gramps-xml":{source:"apache",extensions:["gramps"]},"application/x-gtar":{source:"apache",extensions:["gtar"]},"application/x-gzip":{source:"apache"},"application/x-hdf":{source:"apache",extensions:["hdf"]},"application/x-httpd-php":{compressible:true,extensions:["php"]},"application/x-install-instructions":{source:"apache",extensions:["install"]},"application/x-iso9660-image":{source:"apache",extensions:["iso"]},"application/x-java-archive-diff":{source:"nginx",extensions:["jardiff"]},"application/x-java-jnlp-file":{source:"apache",compressible:false,extensions:["jnlp"]},"application/x-javascript":{compressible:true},"application/x-latex":{source:"apache",compressible:false,extensions:["latex"]},"application/x-lua-bytecode":{extensions:["luac"]},"application/x-lzh-compressed":{source:"apache",extensions:["lzh","lha"]},"application/x-makeself":{source:"nginx",extensions:["run"]},"application/x-mie":{source:"apache",extensions:["mie"]},"application/x-mobipocket-ebook":{source:"apache",extensions:["prc","mobi"]},"application/x-mpegurl":{compressible:false},"application/x-ms-application":{source:"apache",extensions:["application"]},"application/x-ms-shortcut":{source:"apache",extensions:["lnk"]},"application/x-ms-wmd":{source:"apache",extensions:["wmd"]},"application/x-ms-wmz":{source:"apache",extensions:["wmz"]},"application/x-ms-xbap":{source:"apache",extensions:["xbap"]},"application/x-msaccess":{source:"apache",extensions:["mdb"]},"application/x-msbinder":{source:"apache",extensions:["obd"]},"application/x-mscardfile":{source:"apache",extensions:["crd"]},"application/x-msclip":{source:"apache",extensions:["clp"]},"application/x-msdos-program":{extensions:["exe"]},"application/x-msdownload":{source:"apache",extensions:["exe","dll","com","bat","msi"]},"application/x-msmediaview":{source:"apache",extensions:["mvb","m13","m14"]},"application/x-msmetafile":{source:"apache",extensions:["wmf","wmz","emf","emz"]},"application/x-msmoney":{source:"apache",extensions:["mny"]},"application/x-mspublisher":{source:"apache",extensions:["pub"]},"application/x-msschedule":{source:"apache",extensions:["scd"]},"application/x-msterminal":{source:"apache",extensions:["trm"]},"application/x-mswrite":{source:"apache",extensions:["wri"]},"application/x-netcdf":{source:"apache",extensions:["nc","cdf"]},"application/x-ns-proxy-autoconfig":{compressible:true,extensions:["pac"]},"application/x-nzb":{source:"apache",extensions:["nzb"]},"application/x-perl":{source:"nginx",extensions:["pl","pm"]},"application/x-pilot":{source:"nginx",extensions:["prc","pdb"]},"application/x-pkcs12":{source:"apache",compressible:false,extensions:["p12","pfx"]},"application/x-pkcs7-certificates":{source:"apache",extensions:["p7b","spc"]},"application/x-pkcs7-certreqresp":{source:"apache",extensions:["p7r"]},"application/x-rar-compressed":{source:"apache",compressible:false,extensions:["rar"]},"application/x-redhat-package-manager":{source:"nginx",extensions:["rpm"]},"application/x-research-info-systems":{source:"apache",extensions:["ris"]},"application/x-sea":{source:"nginx",extensions:["sea"]},"application/x-sh":{source:"apache",compressible:true,extensions:["sh"]},"application/x-shar":{source:"apache",extensions:["shar"]},"application/x-shockwave-flash":{source:"apache",compressible:false,extensions:["swf"]},"application/x-silverlight-app":{source:"apache",extensions:["xap"]},"application/x-sql":{source:"apache",extensions:["sql"]},"application/x-stuffit":{source:"apache",compressible:false,extensions:["sit"]},"application/x-stuffitx":{source:"apache",extensions:["sitx"]},"application/x-subrip":{source:"apache",extensions:["srt"]},"application/x-sv4cpio":{source:"apache",extensions:["sv4cpio"]},"application/x-sv4crc":{source:"apache",extensions:["sv4crc"]},"application/x-t3vm-image":{source:"apache",extensions:["t3"]},"application/x-tads":{source:"apache",extensions:["gam"]},"application/x-tar":{source:"apache",compressible:true,extensions:["tar"]},"application/x-tcl":{source:"apache",extensions:["tcl","tk"]},"application/x-tex":{source:"apache",extensions:["tex"]},"application/x-tex-tfm":{source:"apache",extensions:["tfm"]},"application/x-texinfo":{source:"apache",extensions:["texinfo","texi"]},"application/x-tgif":{source:"apache",extensions:["obj"]},"application/x-ustar":{source:"apache",extensions:["ustar"]},"application/x-virtualbox-hdd":{compressible:true,extensions:["hdd"]},"application/x-virtualbox-ova":{compressible:true,extensions:["ova"]},"application/x-virtualbox-ovf":{compressible:true,extensions:["ovf"]},"application/x-virtualbox-vbox":{compressible:true,extensions:["vbox"]},"application/x-virtualbox-vbox-extpack":{compressible:false,extensions:["vbox-extpack"]},"application/x-virtualbox-vdi":{compressible:true,extensions:["vdi"]},"application/x-virtualbox-vhd":{compressible:true,extensions:["vhd"]},"application/x-virtualbox-vmdk":{compressible:true,extensions:["vmdk"]},"application/x-wais-source":{source:"apache",extensions:["src"]},"application/x-web-app-manifest+json":{compressible:true,extensions:["webapp"]},"application/x-www-form-urlencoded":{source:"iana",compressible:true},"application/x-x509-ca-cert":{source:"apache",extensions:["der","crt","pem"]},"application/x-xfig":{source:"apache",extensions:["fig"]},"application/x-xliff+xml":{source:"apache",extensions:["xlf"]},"application/x-xpinstall":{source:"apache",compressible:false,extensions:["xpi"]},"application/x-xz":{source:"apache",extensions:["xz"]},"application/x-zmachine":{source:"apache",extensions:["z1","z2","z3","z4","z5","z6","z7","z8"]},"application/x400-bp":{source:"iana"},"application/xacml+xml":{source:"iana"},"application/xaml+xml":{source:"apache",extensions:["xaml"]},"application/xcap-att+xml":{source:"iana"},"application/xcap-caps+xml":{source:"iana"},"application/xcap-diff+xml":{source:"iana",extensions:["xdf"]},"application/xcap-el+xml":{source:"iana"},"application/xcap-error+xml":{source:"iana"},"application/xcap-ns+xml":{source:"iana"},"application/xcon-conference-info+xml":{source:"iana"},"application/xcon-conference-info-diff+xml":{source:"iana"},"application/xenc+xml":{source:"iana",extensions:["xenc"]},"application/xhtml+xml":{source:"iana",compressible:true,extensions:["xhtml","xht"]},"application/xhtml-voice+xml":{source:"apache"},"application/xml":{source:"iana",compressible:true,extensions:["xml","xsl","xsd","rng"]},"application/xml-dtd":{source:"iana",compressible:true,extensions:["dtd"]},"application/xml-external-parsed-entity":{source:"iana"},"application/xml-patch+xml":{source:"iana"},"application/xmpp+xml":{source:"iana"},"application/xop+xml":{source:"iana",compressible:true,extensions:["xop"]},"application/xproc+xml":{source:"apache",extensions:["xpl"]},"application/xslt+xml":{source:"iana",extensions:["xslt"]},"application/xspf+xml":{source:"apache",extensions:["xspf"]},"application/xv+xml":{source:"iana",extensions:["mxml","xhvml","xvml","xvm"]},"application/yang":{source:"iana",extensions:["yang"]},"application/yang-data+json":{source:"iana",compressible:true},"application/yang-data+xml":{source:"iana"},"application/yang-patch+json":{source:"iana",compressible:true},"application/yang-patch+xml":{source:"iana"},"application/yin+xml":{source:"iana",extensions:["yin"]},"application/zip":{source:"iana",compressible:false,extensions:["zip"]},"application/zlib":{source:"iana"},"audio/1d-interleaved-parityfec":{source:"iana"},"audio/32kadpcm":{source:"iana"},"audio/3gpp":{source:"iana",compressible:false,extensions:["3gpp"]},"audio/3gpp2":{source:"iana"},"audio/ac3":{source:"iana"},"audio/adpcm":{source:"apache",extensions:["adp"]},"audio/amr":{source:"iana"},"audio/amr-wb":{source:"iana"},"audio/amr-wb+":{source:"iana"},"audio/aptx":{source:"iana"},"audio/asc":{source:"iana"},"audio/atrac-advanced-lossless":{source:"iana"},"audio/atrac-x":{source:"iana"},"audio/atrac3":{source:"iana"},"audio/basic":{source:"iana",compressible:false,extensions:["au","snd"]},"audio/bv16":{source:"iana"},"audio/bv32":{source:"iana"},"audio/clearmode":{source:"iana"},"audio/cn":{source:"iana"},"audio/dat12":{source:"iana"},"audio/dls":{source:"iana"},"audio/dsr-es201108":{source:"iana"},"audio/dsr-es202050":{source:"iana"},"audio/dsr-es202211":{source:"iana"},"audio/dsr-es202212":{source:"iana"},"audio/dv":{source:"iana"},"audio/dvi4":{source:"iana"},"audio/eac3":{source:"iana"},"audio/encaprtp":{source:"iana"},"audio/evrc":{source:"iana"},"audio/evrc-qcp":{source:"iana"},"audio/evrc0":{source:"iana"},"audio/evrc1":{source:"iana"},"audio/evrcb":{source:"iana"},"audio/evrcb0":{source:"iana"},"audio/evrcb1":{source:"iana"},"audio/evrcnw":{source:"iana"},"audio/evrcnw0":{source:"iana"},"audio/evrcnw1":{source:"iana"},"audio/evrcwb":{source:"iana"},"audio/evrcwb0":{source:"iana"},"audio/evrcwb1":{source:"iana"},"audio/evs":{source:"iana"},"audio/fwdred":{source:"iana"},"audio/g711-0":{source:"iana"},"audio/g719":{source:"iana"},"audio/g722":{source:"iana"},"audio/g7221":{source:"iana"},"audio/g723":{source:"iana"},"audio/g726-16":{source:"iana"},"audio/g726-24":{source:"iana"},"audio/g726-32":{source:"iana"},"audio/g726-40":{source:"iana"},"audio/g728":{source:"iana"},"audio/g729":{source:"iana"},"audio/g7291":{source:"iana"},"audio/g729d":{source:"iana"},"audio/g729e":{source:"iana"},"audio/gsm":{source:"iana"},"audio/gsm-efr":{source:"iana"},"audio/gsm-hr-08":{source:"iana"},"audio/ilbc":{source:"iana"},"audio/ip-mr_v2.5":{source:"iana"},"audio/isac":{source:"apache"},"audio/l16":{source:"iana"},"audio/l20":{source:"iana"},"audio/l24":{source:"iana",compressible:false},"audio/l8":{source:"iana"},"audio/lpc":{source:"iana"},"audio/melp":{source:"iana"},"audio/melp1200":{source:"iana"},"audio/melp2400":{source:"iana"},"audio/melp600":{source:"iana"},"audio/midi":{source:"apache",extensions:["mid","midi","kar","rmi"]},"audio/mobile-xmf":{source:"iana"},"audio/mp3":{compressible:false,extensions:["mp3"]},"audio/mp4":{source:"iana",compressible:false,extensions:["m4a","mp4a"]},"audio/mp4a-latm":{source:"iana"},"audio/mpa":{source:"iana"},"audio/mpa-robust":{source:"iana"},"audio/mpeg":{source:"iana",compressible:false,extensions:["mpga","mp2","mp2a","mp3","m2a","m3a"]},"audio/mpeg4-generic":{source:"iana"},"audio/musepack":{source:"apache"},"audio/ogg":{source:"iana",compressible:false,extensions:["oga","ogg","spx"]},"audio/opus":{source:"iana"},"audio/parityfec":{source:"iana"},"audio/pcma":{source:"iana"},"audio/pcma-wb":{source:"iana"},"audio/pcmu":{source:"iana"},"audio/pcmu-wb":{source:"iana"},"audio/prs.sid":{source:"iana"},"audio/qcelp":{source:"iana"},"audio/raptorfec":{source:"iana"},"audio/red":{source:"iana"},"audio/rtp-enc-aescm128":{source:"iana"},"audio/rtp-midi":{source:"iana"},"audio/rtploopback":{source:"iana"},"audio/rtx":{source:"iana"},"audio/s3m":{source:"apache",extensions:["s3m"]},"audio/silk":{source:"apache",extensions:["sil"]},"audio/smv":{source:"iana"},"audio/smv-qcp":{source:"iana"},"audio/smv0":{source:"iana"},"audio/sp-midi":{source:"iana"},"audio/speex":{source:"iana"},"audio/t140c":{source:"iana"},"audio/t38":{source:"iana"},"audio/telephone-event":{source:"iana"},"audio/tone":{source:"iana"},"audio/uemclip":{source:"iana"},"audio/ulpfec":{source:"iana"},"audio/vdvi":{source:"iana"},"audio/vmr-wb":{source:"iana"},"audio/vnd.3gpp.iufp":{source:"iana"},"audio/vnd.4sb":{source:"iana"},"audio/vnd.audiokoz":{source:"iana"},"audio/vnd.celp":{source:"iana"},"audio/vnd.cisco.nse":{source:"iana"},"audio/vnd.cmles.radio-events":{source:"iana"},"audio/vnd.cns.anp1":{source:"iana"},"audio/vnd.cns.inf1":{source:"iana"},"audio/vnd.dece.audio":{source:"iana",extensions:["uva","uvva"]},"audio/vnd.digital-winds":{source:"iana",extensions:["eol"]},"audio/vnd.dlna.adts":{source:"iana"},"audio/vnd.dolby.heaac.1":{source:"iana"},"audio/vnd.dolby.heaac.2":{source:"iana"},"audio/vnd.dolby.mlp":{source:"iana"},"audio/vnd.dolby.mps":{source:"iana"},"audio/vnd.dolby.pl2":{source:"iana"},"audio/vnd.dolby.pl2x":{source:"iana"},"audio/vnd.dolby.pl2z":{source:"iana"},"audio/vnd.dolby.pulse.1":{source:"iana"},"audio/vnd.dra":{source:"iana",extensions:["dra"]},"audio/vnd.dts":{source:"iana",extensions:["dts"]},"audio/vnd.dts.hd":{source:"iana",extensions:["dtshd"]},"audio/vnd.dvb.file":{source:"iana"},"audio/vnd.everad.plj":{source:"iana"},"audio/vnd.hns.audio":{source:"iana"},"audio/vnd.lucent.voice":{source:"iana",extensions:["lvp"]},"audio/vnd.ms-playready.media.pya":{source:"iana",extensions:["pya"]},"audio/vnd.nokia.mobile-xmf":{source:"iana"},"audio/vnd.nortel.vbk":{source:"iana"},"audio/vnd.nuera.ecelp4800":{source:"iana",extensions:["ecelp4800"]},"audio/vnd.nuera.ecelp7470":{source:"iana",extensions:["ecelp7470"]},"audio/vnd.nuera.ecelp9600":{source:"iana",extensions:["ecelp9600"]},"audio/vnd.octel.sbc":{source:"iana"},"audio/vnd.presonus.multitrack":{source:"iana"},"audio/vnd.qcelp":{source:"iana"},"audio/vnd.rhetorex.32kadpcm":{source:"iana"},"audio/vnd.rip":{source:"iana",extensions:["rip"]},"audio/vnd.rn-realaudio":{compressible:false},"audio/vnd.sealedmedia.softseal.mpeg":{source:"iana"},"audio/vnd.vmx.cvsd":{source:"iana"},"audio/vnd.wave":{compressible:false},"audio/vorbis":{source:"iana",compressible:false},"audio/vorbis-config":{source:"iana"},"audio/wav":{compressible:false,extensions:["wav"]},"audio/wave":{compressible:false,extensions:["wav"]},"audio/webm":{source:"apache",compressible:false,extensions:["weba"]},"audio/x-aac":{source:"apache",compressible:false,extensions:["aac"]},"audio/x-aiff":{source:"apache",extensions:["aif","aiff","aifc"]},"audio/x-caf":{source:"apache",compressible:false,extensions:["caf"]},"audio/x-flac":{source:"apache",extensions:["flac"]},"audio/x-m4a":{source:"nginx",extensions:["m4a"]},"audio/x-matroska":{source:"apache",extensions:["mka"]},"audio/x-mpegurl":{source:"apache",extensions:["m3u"]},"audio/x-ms-wax":{source:"apache",extensions:["wax"]},"audio/x-ms-wma":{source:"apache",extensions:["wma"]},"audio/x-pn-realaudio":{source:"apache",extensions:["ram","ra"]},"audio/x-pn-realaudio-plugin":{source:"apache",extensions:["rmp"]},"audio/x-realaudio":{source:"nginx",extensions:["ra"]},"audio/x-tta":{source:"apache"},"audio/x-wav":{source:"apache",extensions:["wav"]},"audio/xm":{source:"apache",extensions:["xm"]},"chemical/x-cdx":{source:"apache",extensions:["cdx"]},"chemical/x-cif":{source:"apache",extensions:["cif"]},"chemical/x-cmdf":{source:"apache",extensions:["cmdf"]},"chemical/x-cml":{source:"apache",extensions:["cml"]},"chemical/x-csml":{source:"apache",extensions:["csml"]},"chemical/x-pdb":{source:"apache"},"chemical/x-xyz":{source:"apache",extensions:["xyz"]},"font/collection":{source:"iana",extensions:["ttc"]},"font/otf":{source:"iana",compressible:true,extensions:["otf"]},"font/sfnt":{source:"iana"},"font/ttf":{source:"iana",extensions:["ttf"]},"font/woff":{source:"iana",extensions:["woff"]},"font/woff2":{source:"iana",extensions:["woff2"]},"image/aces":{source:"iana"},"image/apng":{compressible:false,extensions:["apng"]},"image/bmp":{source:"iana",compressible:true,extensions:["bmp"]},"image/cgm":{source:"iana",extensions:["cgm"]},"image/dicom-rle":{source:"iana"},"image/emf":{source:"iana"},"image/fits":{source:"iana"},"image/g3fax":{source:"iana",extensions:["g3"]},"image/gif":{source:"iana",compressible:false,extensions:["gif"]},"image/ief":{source:"iana",extensions:["ief"]},"image/jls":{source:"iana"},"image/jp2":{source:"iana",compressible:false,extensions:["jp2","jpg2"]},"image/jpeg":{source:"iana",compressible:false,extensions:["jpeg","jpg","jpe"]},"image/jpm":{source:"iana",compressible:false,extensions:["jpm"]},"image/jpx":{source:"iana",compressible:false,extensions:["jpx","jpf"]},"image/ktx":{source:"iana",extensions:["ktx"]},"image/naplps":{source:"iana"},"image/pjpeg":{compressible:false},"image/png":{source:"iana",compressible:false,extensions:["png"]},"image/prs.btif":{source:"iana",extensions:["btif"]},"image/prs.pti":{source:"iana"},"image/pwg-raster":{source:"iana"},"image/sgi":{source:"apache",extensions:["sgi"]},"image/svg+xml":{source:"iana",compressible:true,extensions:["svg","svgz"]},"image/t38":{source:"iana"},"image/tiff":{source:"iana",compressible:false,extensions:["tiff","tif"]},"image/tiff-fx":{source:"iana"},"image/vnd.adobe.photoshop":{source:"iana",compressible:true,extensions:["psd"]},"image/vnd.airzip.accelerator.azv":{source:"iana"},"image/vnd.cns.inf2":{source:"iana"},"image/vnd.dece.graphic":{source:"iana",extensions:["uvi","uvvi","uvg","uvvg"]},"image/vnd.djvu":{source:"iana",extensions:["djvu","djv"]},"image/vnd.dvb.subtitle":{source:"iana",extensions:["sub"]},"image/vnd.dwg":{source:"iana",extensions:["dwg"]},"image/vnd.dxf":{source:"iana",extensions:["dxf"]},"image/vnd.fastbidsheet":{source:"iana",extensions:["fbs"]},"image/vnd.fpx":{source:"iana",extensions:["fpx"]},"image/vnd.fst":{source:"iana",extensions:["fst"]},"image/vnd.fujixerox.edmics-mmr":{source:"iana",extensions:["mmr"]},"image/vnd.fujixerox.edmics-rlc":{source:"iana",extensions:["rlc"]},"image/vnd.globalgraphics.pgb":{source:"iana"},"image/vnd.microsoft.icon":{source:"iana"},"image/vnd.mix":{source:"iana"},"image/vnd.mozilla.apng":{source:"iana"},"image/vnd.ms-modi":{source:"iana",extensions:["mdi"]},"image/vnd.ms-photo":{source:"apache",extensions:["wdp"]},"image/vnd.net-fpx":{source:"iana",extensions:["npx"]},"image/vnd.radiance":{source:"iana"},"image/vnd.sealed.png":{source:"iana"},"image/vnd.sealedmedia.softseal.gif":{source:"iana"},"image/vnd.sealedmedia.softseal.jpg":{source:"iana"},"image/vnd.svf":{source:"iana"},"image/vnd.tencent.tap":{source:"iana"},"image/vnd.valve.source.texture":{source:"iana"},"image/vnd.wap.wbmp":{source:"iana",extensions:["wbmp"]},"image/vnd.xiff":{source:"iana",extensions:["xif"]},"image/vnd.zbrush.pcx":{source:"iana"},"image/webp":{source:"apache",extensions:["webp"]},"image/wmf":{source:"iana"},"image/x-3ds":{source:"apache",extensions:["3ds"]},"image/x-cmu-raster":{source:"apache",extensions:["ras"]},"image/x-cmx":{source:"apache",extensions:["cmx"]},"image/x-freehand":{source:"apache",extensions:["fh","fhc","fh4","fh5","fh7"]},"image/x-icon":{source:"apache",compressible:true,extensions:["ico"]},"image/x-jng":{source:"nginx",extensions:["jng"]},"image/x-mrsid-image":{source:"apache",extensions:["sid"]},"image/x-ms-bmp":{source:"nginx",compressible:true,extensions:["bmp"]},"image/x-pcx":{source:"apache",extensions:["pcx"]},"image/x-pict":{source:"apache",extensions:["pic","pct"]},"image/x-portable-anymap":{source:"apache",extensions:["pnm"]},"image/x-portable-bitmap":{source:"apache",extensions:["pbm"]},"image/x-portable-graymap":{source:"apache",extensions:["pgm"]},"image/x-portable-pixmap":{source:"apache",extensions:["ppm"]},"image/x-rgb":{source:"apache",extensions:["rgb"]},"image/x-tga":{source:"apache",extensions:["tga"]},"image/x-xbitmap":{source:"apache",extensions:["xbm"]},"image/x-xcf":{compressible:false},"image/x-xpixmap":{source:"apache",extensions:["xpm"]},"image/x-xwindowdump":{source:"apache",extensions:["xwd"]},"message/cpim":{source:"iana"},"message/delivery-status":{source:"iana"},"message/disposition-notification":{source:"iana",extensions:["disposition-notification"]},"message/external-body":{source:"iana"},"message/feedback-report":{source:"iana"},"message/global":{source:"iana",extensions:["u8msg"]},"message/global-delivery-status":{source:"iana",extensions:["u8dsn"]},"message/global-disposition-notification":{source:"iana",extensions:["u8mdn"]},"message/global-headers":{source:"iana",extensions:["u8hdr"]},"message/http":{source:"iana",compressible:false},"message/imdn+xml":{source:"iana",compressible:true},"message/news":{source:"iana"},"message/partial":{source:"iana",compressible:false},"message/rfc822":{source:"iana",compressible:true,extensions:["eml","mime"]},"message/s-http":{source:"iana"},"message/sip":{source:"iana"},"message/sipfrag":{source:"iana"},"message/tracking-status":{source:"iana"},"message/vnd.si.simp":{source:"iana"},"message/vnd.wfa.wsc":{source:"iana",extensions:["wsc"]},"model/3mf":{source:"iana"},"model/gltf+json":{source:"iana",compressible:true,extensions:["gltf"]},"model/gltf-binary":{source:"iana",compressible:true,extensions:["glb"]},"model/iges":{source:"iana",compressible:false,extensions:["igs","iges"]},"model/mesh":{source:"iana",compressible:false,extensions:["msh","mesh","silo"]},"model/vnd.collada+xml":{source:"iana",extensions:["dae"]},"model/vnd.dwf":{source:"iana",extensions:["dwf"]},"model/vnd.flatland.3dml":{source:"iana"},"model/vnd.gdl":{source:"iana",extensions:["gdl"]},"model/vnd.gs-gdl":{source:"apache"},"model/vnd.gs.gdl":{source:"iana"},"model/vnd.gtw":{source:"iana",extensions:["gtw"]},"model/vnd.moml+xml":{source:"iana"},"model/vnd.mts":{source:"iana",extensions:["mts"]},"model/vnd.opengex":{source:"iana"},"model/vnd.parasolid.transmit.binary":{source:"iana"},"model/vnd.parasolid.transmit.text":{source:"iana"},"model/vnd.rosette.annotated-data-model":{source:"iana"},"model/vnd.valve.source.compiled-map":{source:"iana"},"model/vnd.vtu":{source:"iana",extensions:["vtu"]},"model/vrml":{source:"iana",compressible:false,extensions:["wrl","vrml"]},"model/x3d+binary":{source:"apache",compressible:false,extensions:["x3db","x3dbz"]},"model/x3d+fastinfoset":{source:"iana"},"model/x3d+vrml":{source:"apache",compressible:false,extensions:["x3dv","x3dvz"]},"model/x3d+xml":{source:"iana",compressible:true,extensions:["x3d","x3dz"]},"model/x3d-vrml":{source:"iana"},"multipart/alternative":{source:"iana",compressible:false},"multipart/appledouble":{source:"iana"},"multipart/byteranges":{source:"iana"},"multipart/digest":{source:"iana"},"multipart/encrypted":{source:"iana",compressible:false},"multipart/form-data":{source:"iana",compressible:false},"multipart/header-set":{source:"iana"},"multipart/mixed":{source:"iana",compressible:false},"multipart/multilingual":{source:"iana"},"multipart/parallel":{source:"iana"},"multipart/related":{source:"iana",compressible:false},"multipart/report":{source:"iana"},"multipart/signed":{source:"iana",compressible:false},"multipart/vnd.bint.med-plus":{source:"iana"},"multipart/voice-message":{source:"iana"},"multipart/x-mixed-replace":{source:"iana"},"text/1d-interleaved-parityfec":{source:"iana"},"text/cache-manifest":{source:"iana",compressible:true,extensions:["appcache","manifest"]},"text/calendar":{source:"iana",extensions:["ics","ifb"]},"text/calender":{compressible:true},"text/cmd":{compressible:true},"text/coffeescript":{extensions:["coffee","litcoffee"]},"text/css":{source:"iana",charset:"UTF-8",compressible:true,extensions:["css"]},"text/csv":{source:"iana",compressible:true,extensions:["csv"]},"text/csv-schema":{source:"iana"},"text/directory":{source:"iana"},"text/dns":{source:"iana"},"text/ecmascript":{source:"iana"},"text/encaprtp":{source:"iana"},"text/enriched":{source:"iana"},"text/fwdred":{source:"iana"},"text/grammar-ref-list":{source:"iana"},"text/html":{source:"iana",compressible:true,extensions:["html","htm","shtml"]},"text/jade":{extensions:["jade"]},"text/javascript":{source:"iana",compressible:true},"text/jcr-cnd":{source:"iana"},"text/jsx":{compressible:true,extensions:["jsx"]},"text/less":{extensions:["less"]},"text/markdown":{source:"iana",compressible:true,extensions:["markdown","md"]},"text/mathml":{source:"nginx",extensions:["mml"]},"text/mizar":{source:"iana"},"text/n3":{source:"iana",compressible:true,extensions:["n3"]},"text/parameters":{source:"iana"},"text/parityfec":{source:"iana"},"text/plain":{source:"iana",compressible:true,extensions:["txt","text","conf","def","list","log","in","ini"]},"text/provenance-notation":{source:"iana"},"text/prs.fallenstein.rst":{source:"iana"},"text/prs.lines.tag":{source:"iana",extensions:["dsc"]},"text/prs.prop.logic":{source:"iana"},"text/raptorfec":{source:"iana"},"text/red":{source:"iana"},"text/rfc822-headers":{source:"iana"},"text/richtext":{source:"iana",compressible:true,extensions:["rtx"]},"text/rtf":{source:"iana",compressible:true,extensions:["rtf"]},"text/rtp-enc-aescm128":{source:"iana"},"text/rtploopback":{source:"iana"},"text/rtx":{source:"iana"},"text/sgml":{source:"iana",extensions:["sgml","sgm"]},"text/shex":{extensions:["shex"]},"text/slim":{extensions:["slim","slm"]},"text/strings":{source:"iana"},"text/stylus":{extensions:["stylus","styl"]},"text/t140":{source:"iana"},"text/tab-separated-values":{source:"iana",compressible:true,extensions:["tsv"]},"text/troff":{source:"iana",extensions:["t","tr","roff","man","me","ms"]},"text/turtle":{source:"iana",extensions:["ttl"]},"text/ulpfec":{source:"iana"},"text/uri-list":{source:"iana",compressible:true,extensions:["uri","uris","urls"]},"text/vcard":{source:"iana",compressible:true,extensions:["vcard"]},"text/vnd.a":{source:"iana"},"text/vnd.abc":{source:"iana"},"text/vnd.ascii-art":{source:"iana"},"text/vnd.curl":{source:"iana",extensions:["curl"]},"text/vnd.curl.dcurl":{source:"apache",extensions:["dcurl"]},"text/vnd.curl.mcurl":{source:"apache",extensions:["mcurl"]},"text/vnd.curl.scurl":{source:"apache",extensions:["scurl"]},"text/vnd.debian.copyright":{source:"iana"},"text/vnd.dmclientscript":{source:"iana"},"text/vnd.dvb.subtitle":{source:"iana",extensions:["sub"]},"text/vnd.esmertec.theme-descriptor":{source:"iana"},"text/vnd.fly":{source:"iana",extensions:["fly"]},"text/vnd.fmi.flexstor":{source:"iana",extensions:["flx"]},"text/vnd.graphviz":{source:"iana",extensions:["gv"]},"text/vnd.in3d.3dml":{source:"iana",extensions:["3dml"]},"text/vnd.in3d.spot":{source:"iana",extensions:["spot"]},"text/vnd.iptc.newsml":{source:"iana"},"text/vnd.iptc.nitf":{source:"iana"},"text/vnd.latex-z":{source:"iana"},"text/vnd.motorola.reflex":{source:"iana"},"text/vnd.ms-mediapackage":{source:"iana"},"text/vnd.net2phone.commcenter.command":{source:"iana"},"text/vnd.radisys.msml-basic-layout":{source:"iana"},"text/vnd.si.uricatalogue":{source:"iana"},"text/vnd.sun.j2me.app-descriptor":{source:"iana",extensions:["jad"]},"text/vnd.trolltech.linguist":{source:"iana"},"text/vnd.wap.si":{source:"iana"},"text/vnd.wap.sl":{source:"iana"},"text/vnd.wap.wml":{source:"iana",extensions:["wml"]},"text/vnd.wap.wmlscript":{source:"iana",extensions:["wmls"]},"text/vtt":{charset:"UTF-8",compressible:true,extensions:["vtt"]},"text/x-asm":{source:"apache",extensions:["s","asm"]},"text/x-c":{source:"apache",extensions:["c","cc","cxx","cpp","h","hh","dic"]},"text/x-component":{source:"nginx",extensions:["htc"]},"text/x-fortran":{source:"apache",extensions:["f","for","f77","f90"]},"text/x-gwt-rpc":{compressible:true},"text/x-handlebars-template":{extensions:["hbs"]},"text/x-java-source":{source:"apache",extensions:["java"]},"text/x-jquery-tmpl":{compressible:true},"text/x-lua":{extensions:["lua"]},"text/x-markdown":{compressible:true,extensions:["mkd"]},"text/x-nfo":{source:"apache",extensions:["nfo"]},"text/x-opml":{source:"apache",extensions:["opml"]},"text/x-org":{compressible:true,extensions:["org"]},"text/x-pascal":{source:"apache",extensions:["p","pas"]},"text/x-processing":{compressible:true,extensions:["pde"]},"text/x-sass":{extensions:["sass"]},"text/x-scss":{extensions:["scss"]},"text/x-setext":{source:"apache",extensions:["etx"]},"text/x-sfv":{source:"apache",extensions:["sfv"]},"text/x-suse-ymp":{compressible:true,extensions:["ymp"]},"text/x-uuencode":{source:"apache",extensions:["uu"]},"text/x-vcalendar":{source:"apache",extensions:["vcs"]},"text/x-vcard":{source:"apache",extensions:["vcf"]},"text/xml":{source:"iana",compressible:true,extensions:["xml"]},"text/xml-external-parsed-entity":{source:"iana"},"text/yaml":{extensions:["yaml","yml"]},"video/1d-interleaved-parityfec":{source:"iana"},"video/3gpp":{source:"iana",extensions:["3gp","3gpp"]},"video/3gpp-tt":{source:"iana"},"video/3gpp2":{source:"iana",extensions:["3g2"]},"video/bmpeg":{source:"iana"},"video/bt656":{source:"iana"},"video/celb":{source:"iana"},"video/dv":{source:"iana"},"video/encaprtp":{source:"iana"},"video/h261":{source:"iana",extensions:["h261"]},"video/h263":{source:"iana",extensions:["h263"]},"video/h263-1998":{source:"iana"},"video/h263-2000":{source:"iana"},"video/h264":{source:"iana",extensions:["h264"]},"video/h264-rcdo":{source:"iana"},"video/h264-svc":{source:"iana"},"video/h265":{source:"iana"},"video/iso.segment":{source:"iana"},"video/jpeg":{source:"iana",extensions:["jpgv"]},"video/jpeg2000":{source:"iana"},"video/jpm":{source:"apache",extensions:["jpm","jpgm"]},"video/mj2":{source:"iana",extensions:["mj2","mjp2"]},"video/mp1s":{source:"iana"},"video/mp2p":{source:"iana"},"video/mp2t":{source:"iana",extensions:["ts"]},"video/mp4":{source:"iana",compressible:false,extensions:["mp4","mp4v","mpg4"]},"video/mp4v-es":{source:"iana"},"video/mpeg":{source:"iana",compressible:false,extensions:["mpeg","mpg","mpe","m1v","m2v"]},"video/mpeg4-generic":{source:"iana"},"video/mpv":{source:"iana"},"video/nv":{source:"iana"},"video/ogg":{source:"iana",compressible:false,extensions:["ogv"]},"video/parityfec":{source:"iana"},"video/pointer":{source:"iana"},"video/quicktime":{source:"iana",compressible:false,extensions:["qt","mov"]},"video/raptorfec":{source:"iana"},"video/raw":{source:"iana"},"video/rtp-enc-aescm128":{source:"iana"},"video/rtploopback":{source:"iana"},"video/rtx":{source:"iana"},"video/smpte291":{source:"iana"},"video/smpte292m":{source:"iana"},"video/ulpfec":{source:"iana"},"video/vc1":{source:"iana"},"video/vnd.cctv":{source:"iana"},"video/vnd.dece.hd":{source:"iana",extensions:["uvh","uvvh"]},"video/vnd.dece.mobile":{source:"iana",extensions:["uvm","uvvm"]},"video/vnd.dece.mp4":{source:"iana"},"video/vnd.dece.pd":{source:"iana",extensions:["uvp","uvvp"]},"video/vnd.dece.sd":{source:"iana",extensions:["uvs","uvvs"]},"video/vnd.dece.video":{source:"iana",extensions:["uvv","uvvv"]},"video/vnd.directv.mpeg":{source:"iana"},"video/vnd.directv.mpeg-tts":{source:"iana"},"video/vnd.dlna.mpeg-tts":{source:"iana"},"video/vnd.dvb.file":{source:"iana",extensions:["dvb"]},"video/vnd.fvt":{source:"iana",extensions:["fvt"]},"video/vnd.hns.video":{source:"iana"},"video/vnd.iptvforum.1dparityfec-1010":{source:"iana"},"video/vnd.iptvforum.1dparityfec-2005":{source:"iana"},"video/vnd.iptvforum.2dparityfec-1010":{source:"iana"},"video/vnd.iptvforum.2dparityfec-2005":{source:"iana"},"video/vnd.iptvforum.ttsavc":{source:"iana"},"video/vnd.iptvforum.ttsmpeg2":{source:"iana"},"video/vnd.motorola.video":{source:"iana"},"video/vnd.motorola.videop":{source:"iana"},"video/vnd.mpegurl":{source:"iana",extensions:["mxu","m4u"]},"video/vnd.ms-playready.media.pyv":{source:"iana",extensions:["pyv"]},"video/vnd.nokia.interleaved-multimedia":{source:"iana"},"video/vnd.nokia.mp4vr":{source:"iana"},"video/vnd.nokia.videovoip":{source:"iana"},"video/vnd.objectvideo":{source:"iana"},"video/vnd.radgamettools.bink":{source:"iana"},"video/vnd.radgamettools.smacker":{source:"iana"},"video/vnd.sealed.mpeg1":{source:"iana"},"video/vnd.sealed.mpeg4":{source:"iana"},"video/vnd.sealed.swf":{source:"iana"},"video/vnd.sealedmedia.softseal.mov":{source:"iana"},"video/vnd.uvvu.mp4":{source:"iana",extensions:["uvu","uvvu"]},"video/vnd.vivo":{source:"iana",extensions:["viv"]},"video/vp8":{source:"iana"},"video/webm":{source:"apache",compressible:false,extensions:["webm"]},"video/x-f4v":{source:"apache",extensions:["f4v"]},"video/x-fli":{source:"apache",extensions:["fli"]},"video/x-flv":{source:"apache",compressible:false,extensions:["flv"]},"video/x-m4v":{source:"apache",extensions:["m4v"]},"video/x-matroska":{source:"apache",compressible:false,extensions:["mkv","mk3d","mks"]},"video/x-mng":{source:"apache",extensions:["mng"]},"video/x-ms-asf":{source:"apache",extensions:["asf","asx"]},"video/x-ms-vob":{source:"apache",extensions:["vob"]},"video/x-ms-wm":{source:"apache",extensions:["wm"]},"video/x-ms-wmv":{source:"apache",compressible:false,extensions:["wmv"]},"video/x-ms-wmx":{source:"apache",extensions:["wmx"]},"video/x-ms-wvx":{source:"apache",extensions:["wvx"]},"video/x-msvideo":{source:"apache",extensions:["avi"]},"video/x-sgi-movie":{source:"apache",extensions:["movie"]},"video/x-smv":{source:"apache",extensions:["smv"]},"x-conference/x-cooltalk":{source:"apache",extensions:["ice"]},"x-shader/x-fragment":{compressible:true},"x-shader/x-vertex":{compressible:true}}},1366:function(e,t,n){"use strict";const r=n(5897);const i=n(5627);const o=n(7346).pathExists;const a=n(5529);function outputJson(e,t,n,s){if(typeof n==="function"){s=n;n={}}const c=r.dirname(e);o(c,(r,o)=>{if(r)return s(r);if(o)return a.writeJson(e,t,n,s);i.mkdirs(c,r=>{if(r)return s(r);a.writeJson(e,t,n,s)})})}e.exports=outputJson},1376:function(e,t,n){"use strict";const r=n(4244);const i=n(4348);class Queue extends i{push(e){const t=r.createNode(e);e.promise.catch(this._createTimeoutRejectionHandler(t));this._list.insertEnd(t)}_createTimeoutRejectionHandler(e){return t=>{if(t.name==="TimeoutError"){this._list.remove(e)}}}}e.exports=Queue},1377:function(e,t,n){var r=n(4219),i=n(2307),o=n(6881);e.exports={checkMethodAndHeader:function checkMethodAndHeader(e,t){if(e.method!=="GET"||!e.headers.upgrade){t.destroy();return true}if(e.headers.upgrade.toLowerCase()!=="websocket"){t.destroy();return true}},XHeaders:function XHeaders(e,t,n){if(!n.xfwd)return;var r={for:e.connection.remoteAddress||e.socket.remoteAddress,port:o.getPort(e),proto:o.hasEncryptedConnection(e)?"wss":"ws"};["for","port","proto"].forEach(function(t){e.headers["x-forwarded-"+t]=(e.headers["x-forwarded-"+t]||"")+(e.headers["x-forwarded-"+t]?",":"")+r[t]})},stream:function stream(e,t,n,a,s,c){var u=function(e,t){return Object.keys(t).reduce(function(e,n){var r=t[n];if(!Array.isArray(r)){e.push(n+": "+r);return e}for(var i=0;i<r.length;i++){e.push(n+": "+r[i])}return e},[e]).join("\r\n")+"\r\n\r\n"};o.setupSocket(t);if(a&&a.length)t.unshift(a);var l=(o.isSSL.test(n.target.protocol)?i:r).request(o.setupOutgoing(n.ssl||{},n,e));if(s){s.emit("proxyReqWs",l,e,t,n,a)}l.on("error",onOutgoingError);l.on("response",function(e){if(!e.upgrade){t.write(u("HTTP/"+e.httpVersion+" "+e.statusCode+" "+e.statusMessage,e.headers));e.pipe(t)}});l.on("upgrade",function(e,n,r){n.on("error",onOutgoingError);n.on("end",function(){s.emit("close",e,n,r)});t.on("error",function(){n.end()});o.setupSocket(n);if(r&&r.length)n.unshift(r);t.write(u("HTTP/1.1 101 Switching Protocols",e.headers));n.pipe(t).pipe(n);s.emit("open",n);s.emit("proxySocket",n)});return l.end();function onOutgoingError(n){if(c){c(n,e,t)}else{s.emit("error",n,e,t)}t.end()}}}},1382:function(e,t,n){"use strict";var r=n(8070)("http-errors");var i=n(1492);var o=n(4402);var a=n(8368);var s=n(7507);e.exports=createError;e.exports.HttpError=createHttpErrorConstructor();populateConstructorExports(e.exports,o.codes,e.exports.HttpError);function codeClass(e){return Number(String(e).charAt(0)+"00")}function createError(){var e;var t;var n=500;var i={};for(var a=0;a<arguments.length;a++){var s=arguments[a];if(s instanceof Error){e=s;n=e.status||e.statusCode||n;continue}switch(typeof s){case"string":t=s;break;case"number":n=s;if(a!==0){r("non-first-argument status code; replace with createError("+s+", ...)")}break;case"object":i=s;break}}if(typeof n==="number"&&(n<400||n>=600)){r("non-error status code; use only 4xx or 5xx status codes")}if(typeof n!=="number"||!o[n]&&(n<400||n>=600)){n=500}var c=createError[n]||createError[codeClass(n)];if(!e){e=c?new c(t):new Error(t||o[n]);Error.captureStackTrace(e,createError)}if(!c||!(e instanceof c)||e.status!==n){e.expose=n<500;e.status=e.statusCode=n}for(var u in i){if(u!=="status"&&u!=="statusCode"){e[u]=i[u]}}return e}function createHttpErrorConstructor(){function HttpError(){throw new TypeError("cannot construct abstract class")}a(HttpError,Error);return HttpError}function createClientErrorConstructor(e,t,n){var r=t.match(/Error$/)?t:t+"Error";function ClientError(e){var t=e!=null?e:o[n];var a=new Error(t);Error.captureStackTrace(a,ClientError);i(a,ClientError.prototype);Object.defineProperty(a,"message",{enumerable:true,configurable:true,value:t,writable:true});Object.defineProperty(a,"name",{enumerable:false,configurable:true,value:r,writable:true});return a}a(ClientError,e);nameFunc(ClientError,r);ClientError.prototype.status=n;ClientError.prototype.statusCode=n;ClientError.prototype.expose=true;return ClientError}function createServerErrorConstructor(e,t,n){var r=t.match(/Error$/)?t:t+"Error";function ServerError(e){var t=e!=null?e:o[n];var a=new Error(t);Error.captureStackTrace(a,ServerError);i(a,ServerError.prototype);Object.defineProperty(a,"message",{enumerable:true,configurable:true,value:t,writable:true});Object.defineProperty(a,"name",{enumerable:false,configurable:true,value:r,writable:true});return a}a(ServerError,e);nameFunc(ServerError,r);ServerError.prototype.status=n;ServerError.prototype.statusCode=n;ServerError.prototype.expose=false;return ServerError}function nameFunc(e,t){var n=Object.getOwnPropertyDescriptor(e,"name");if(n&&n.configurable){n.value=t;Object.defineProperty(e,"name",n)}}function populateConstructorExports(e,t,n){t.forEach(function forEachCode(t){var r;var i=s(o[t]);switch(codeClass(t)){case 400:r=createClientErrorConstructor(n,i,t);break;case 500:r=createServerErrorConstructor(n,i,t);break}if(r){e[t]=r;e[i]=r}});e["I'mateapot"]=r.function(e.ImATeapot,'"I\'mateapot"; use "ImATeapot" instead')}},1384:function(e,t,n){"use strict";var r=n(5325);var i=n(6146);var o=n(5927);var a;function Node(e,t,n){if(typeof t!=="string"){n=t;t=null}i(this,"parent",n);i(this,"isNode",true);i(this,"expect",null);if(typeof t!=="string"&&r(e)){lazyKeys();var o=Object.keys(e);for(var s=0;s<o.length;s++){var c=o[s];if(a.indexOf(c)===-1){this[c]=e[c]}}}else{this.type=t;this.val=e}}Node.isNode=function(e){return o.isNode(e)};Node.prototype.define=function(e,t){i(this,e,t);return this};Node.prototype.isEmpty=function(e){return o.isEmpty(this,e)};Node.prototype.push=function(e){assert(Node.isNode(e),"expected node to be an instance of Node");i(e,"parent",this);this.nodes=this.nodes||[];return this.nodes.push(e)};Node.prototype.unshift=function(e){assert(Node.isNode(e),"expected node to be an instance of Node");i(e,"parent",this);this.nodes=this.nodes||[];return this.nodes.unshift(e)};Node.prototype.pop=function(){return this.nodes&&this.nodes.pop()};Node.prototype.shift=function(){return this.nodes&&this.nodes.shift()};Node.prototype.remove=function(e){assert(Node.isNode(e),"expected node to be an instance of Node");this.nodes=this.nodes||[];var t=e.index;if(t!==-1){e.index=-1;return this.nodes.splice(t,1)}return null};Node.prototype.find=function(e){return o.findNode(this.nodes,e)};Node.prototype.isType=function(e){return o.isType(this,e)};Node.prototype.hasType=function(e){return o.hasType(this,e)};Object.defineProperty(Node.prototype,"siblings",{set:function(){throw new Error("node.siblings is a getter and cannot be defined")},get:function(){return this.parent?this.parent.nodes:null}});Object.defineProperty(Node.prototype,"index",{set:function(e){i(this,"idx",e)},get:function(){if(!Array.isArray(this.siblings)){return-1}var e=this.idx!==-1?this.siblings[this.idx]:null;if(e!==this){this.idx=this.siblings.indexOf(this)}return this.idx}});Object.defineProperty(Node.prototype,"prev",{set:function(){throw new Error("node.prev is a getter and cannot be defined")},get:function(){if(Array.isArray(this.siblings)){return this.siblings[this.index-1]||this.parent.prev}return null}});Object.defineProperty(Node.prototype,"next",{set:function(){throw new Error("node.next is a getter and cannot be defined")},get:function(){if(Array.isArray(this.siblings)){return this.siblings[this.index+1]||this.parent.next}return null}});Object.defineProperty(Node.prototype,"first",{get:function(){return this.nodes?this.nodes[0]:null}});Object.defineProperty(Node.prototype,"last",{get:function(){return this.nodes?o.last(this.nodes):null}});Object.defineProperty(Node.prototype,"scope",{get:function(){if(this.isScope!==true){return this.parent?this.parent.scope:this}return this}});function lazyKeys(){if(!a){a=Object.getOwnPropertyNames(Node.prototype)}}function assert(e,t){if(!e)throw new Error(t)}t=e.exports=Node},1385:function(e){"use strict";e.exports=function repeat(e,t){var n=new Array(t);for(var r=0;r<t;r++){n[r]=e}return n}},1390:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);r.__exportStar(n(7999),t);r.__exportStar(n(8244),t);r.__exportStar(n(5844),t);r.__exportStar(n(127),t);r.__exportStar(n(6522),t);r.__exportStar(n(3079),t);r.__exportStar(n(7850),t);r.__exportStar(n(6638),t);r.__exportStar(n(8919),t);r.__exportStar(n(1279),t);r.__exportStar(n(8672),t);r.__exportStar(n(5469),t)},1393:function(e,t,n){var r=n(4436),i=n(5897),o=n(662),a=n(8225),s=n(4859).EventEmitter,c=n(774),u=n(4219);var l=e.exports=function(){var e=[].slice.call(arguments),t=new ConfigChain;while(e.length){var n=e.shift();if(n)t.push("string"===typeof n?d(n):n)}return t};var f=l.find=function(){var e=i.join.apply(null,[].slice.call(arguments));function find(e,t){var n=i.join(e,t);try{o.statSync(n);return n}catch(n){if(i.dirname(e)!==e)return find(i.dirname(e),t)}}return find(__dirname+"/config-chain",e)};var p=l.parse=function(e,t,n){e=""+e;if(!n){try{return JSON.parse(e)}catch(t){return a.parse(e)}}else if(n==="json"){if(this.emit){try{return JSON.parse(e)}catch(e){this.emit("error",e)}}else{return JSON.parse(e)}}else{return a.parse(e)}};var d=l.json=function(){var e=[].slice.call(arguments).filter(function(e){return e!=null});var t=i.join.apply(null,e);var n;try{n=o.readFileSync(t,"utf-8")}catch(e){return}return p(n,t,"json")};var h=l.env=function(e,t){t=t||process.env;var n={};var r=e.length;for(var i in t){if(i.indexOf(e)===0)n[i.substring(r)]=t[i]}return n};l.ConfigChain=ConfigChain;function ConfigChain(){s.apply(this);r.apply(this,arguments);this._awaiting=0;this._saving=0;this.sources={}}var m={constructor:{value:ConfigChain}};Object.keys(s.prototype).forEach(function(e){m[e]=Object.getOwnPropertyDescriptor(s.prototype,e)});ConfigChain.prototype=Object.create(r.prototype,m);ConfigChain.prototype.del=function(e,t){if(t){var n=this.sources[t];n=n&&n.data;if(!n){return this.emit("error",new Error("not found "+t))}delete n[e]}else{for(var r=0,i=this.list.length;r<i;r++){delete this.list[r][e]}}return this};ConfigChain.prototype.set=function(e,t,n){var r;if(n){r=this.sources[n];r=r&&r.data;if(!r){return this.emit("error",new Error("not found "+n))}}else{r=this.list[0];if(!r){return this.emit("error",new Error("cannot set, no confs!"))}}r[e]=t;return this};ConfigChain.prototype.get=function(e,t){if(t){t=this.sources[t];if(t)t=t.data;if(t&&Object.hasOwnProperty.call(t,e))return t[e];return undefined}return this.list[0][e]};ConfigChain.prototype.save=function(e,t,n){if(typeof t==="function")n=t,t=null;var r=this.sources[e];if(!r||!(r.path||r.source)||!r.data){return this.emit("error",new Error("bad save target: "+e))}if(r.source){var i=r.prefix||"";Object.keys(r.data).forEach(function(e){r.source[i+e]=r.data[e]});return this}var t=t||r.type;var s=r.data;if(r.type==="json"){s=JSON.stringify(s)}else{s=a.stringify(s)}this._saving++;o.writeFile(r.path,s,"utf8",function(e){this._saving--;if(e){if(n)return n(e);else return this.emit("error",e)}if(this._saving===0){if(n)n();this.emit("save")}}.bind(this));return this};ConfigChain.prototype.addFile=function(e,t,n){n=n||e;var r={__source__:n};this.sources[n]={path:e,type:t};this.push(r);this._await();o.readFile(e,"utf8",function(n,i){if(n)this.emit("error",n);this.addString(i,e,t,r)}.bind(this));return this};ConfigChain.prototype.addEnv=function(e,t,n){n=n||"env";var r=l.env(e,t);this.sources[n]={data:r,source:t,prefix:e};return this.add(r,n)};ConfigChain.prototype.addUrl=function(e,t,n){this._await();var r=c.format(e);n=n||r;var i={__source__:n};this.sources[n]={href:r,type:t};this.push(i);u.request(e,function(e){var n=[];var o=e.headers["content-type"];if(!t){t=o.indexOf("json")!==-1?"json":o.indexOf("ini")!==-1?"ini":r.match(/\.json$/)?"json":r.match(/\.ini$/)?"ini":null;i.type=t}e.on("data",n.push.bind(n)).on("end",function(){this.addString(Buffer.concat(n),r,t,i)}.bind(this)).on("error",this.emit.bind(this,"error"))}.bind(this)).on("error",this.emit.bind(this,"error")).end();return this};ConfigChain.prototype.addString=function(e,t,n,r){e=this.parse(e,t,n);this.add(e,r);return this};ConfigChain.prototype.add=function(e,t){if(t&&typeof t==="object"){var n=this.list.indexOf(t);if(n===-1){return this.emit("error",new Error("bad marker"))}this.splice(n,1,e);t=t.__source__;this.sources[t]=this.sources[t]||{};this.sources[t].data=e;this._resolve()}else{if(typeof t==="string"){this.sources[t]=this.sources[t]||{};this.sources[t].data=e}this._await();this.push(e);process.nextTick(this._resolve.bind(this))}return this};ConfigChain.prototype.parse=l.parse;ConfigChain.prototype._await=function(){this._awaiting++};ConfigChain.prototype._resolve=function(){this._awaiting--;if(this._awaiting===0)this.emit("load",this)}},1399:function(e,t,n){var r=n(5212);var i=n(1852).document;var o=r(i)&&r(i.createElement);e.exports=function(e){return o?i.createElement(e):{}}},1400:function(e,t,n){const r=n(2255).fromCallback;const i=n(2617);const o=["access","appendFile","chmod","chown","close","fchmod","fchown","fdatasync","fstat","fsync","ftruncate","futimes","lchown","link","lstat","mkdir","open","read","readFile","readdir","readlink","realpath","rename","rmdir","stat","symlink","truncate","unlink","utimes","write","writeFile"];typeof i.mkdtemp==="function"&&o.push("mkdtemp");Object.keys(i).forEach(e=>{t[e]=i[e]});o.forEach(e=>{t[e]=r(i[e])});t.exists=function(e,t){if(typeof t==="function"){return i.exists(e,t)}return new Promise(t=>{return i.exists(e,t)})}},1405:function(e,t,n){e.exports={Verifier:Verifier,Signer:Signer};var r=n(1449);var i=n(6886);var o=n(649);var a=n(9261);var s=n(3062).Buffer;var c=n(5511);function Verifier(e,t){if(t.toLowerCase()!=="sha512")throw new Error("ED25519 only supports the use of "+"SHA-512 hashes");this.key=e;this.chunks=[];i.Writable.call(this,{})}o.inherits(Verifier,i.Writable);Verifier.prototype._write=function(e,t,n){this.chunks.push(e);n()};Verifier.prototype.update=function(e){if(typeof e==="string")e=s.from(e,"binary");this.chunks.push(e)};Verifier.prototype.verify=function(e,t){var n;if(c.isSignature(e,[2,0])){if(e.type!=="ed25519")return false;n=e.toBuffer("raw")}else if(typeof e==="string"){n=s.from(e,"base64")}else if(c.isSignature(e,[1,0])){throw new Error("signature was created by too old "+"a version of sshpk and cannot be verified")}a.buffer(n);return r.sign.detached.verify(new Uint8Array(s.concat(this.chunks)),new Uint8Array(n),new Uint8Array(this.key.part.A.data))};function Signer(e,t){if(t.toLowerCase()!=="sha512")throw new Error("ED25519 only supports the use of "+"SHA-512 hashes");this.key=e;this.chunks=[];i.Writable.call(this,{})}o.inherits(Signer,i.Writable);Signer.prototype._write=function(e,t,n){this.chunks.push(e);n()};Signer.prototype.update=function(e){if(typeof e==="string")e=s.from(e,"binary");this.chunks.push(e)};Signer.prototype.sign=function(){var e=r.sign.detached(new Uint8Array(s.concat(this.chunks)),new Uint8Array(s.concat([this.key.part.k.data,this.key.part.A.data])));var t=s.from(e);var n=c.parse(t,"ed25519","raw");n.hashAlgorithm="sha512";return n}},1417:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5897);const o=n(2617);const a=n(1908);const s=a.mkdirs;const c=a.mkdirsSync;const u=n(1523);const l=u.symlinkPaths;const f=u.symlinkPathsSync;const p=n(8599);const d=p.symlinkType;const h=p.symlinkTypeSync;const m=n(8975).pathExists;function createSymlink(e,t,n,r){r=typeof n==="function"?n:r;n=typeof n==="function"?false:n;m(t,(a,c)=>{if(a)return r(a);if(c)return r(null);l(e,t,(a,c)=>{if(a)return r(a);e=c.toDst;d(c.toCwd,n,(n,a)=>{if(n)return r(n);const c=i.dirname(t);m(c,(n,i)=>{if(n)return r(n);if(i)return o.symlink(e,t,a,r);s(c,n=>{if(n)return r(n);o.symlink(e,t,a,r)})})})})})}function createSymlinkSync(e,t,n){const r=o.existsSync(t);if(r)return undefined;const a=f(e,t);e=a.toDst;n=h(a.toCwd,n);const s=i.dirname(t);const u=o.existsSync(s);if(u)return o.symlinkSync(e,t,n);c(s);return o.symlinkSync(e,t,n)}e.exports={createSymlink:r(createSymlink),createSymlinkSync:createSymlinkSync}},1419:function(e){"use strict";e.exports=((e,t)=>{e&=4095;if(t){if(e&256)e|=64;if(e&32)e|=8;if(e&4)e|=1}return e})},1426:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(9726);function callOnHub(e){var t=[];for(var n=1;n<arguments.length;n++){t[n-1]=arguments[n]}var o=i.getCurrentHub();if(o&&o[e]){return o[e].apply(o,r.__spread(t))}throw new Error("No hub defined or "+e+" was not found on the hub, please open a bug report.")}function captureException(e){var t;try{throw new Error("Sentry syntheticException")}catch(e){t=e}return callOnHub("captureException",e,{originalException:e,syntheticException:t})}t.captureException=captureException;function captureMessage(e,t){var n;try{throw new Error(e)}catch(e){n=e}return callOnHub("captureMessage",e,t,{originalException:e,syntheticException:n})}t.captureMessage=captureMessage;function captureEvent(e){return callOnHub("captureEvent",e)}t.captureEvent=captureEvent;function configureScope(e){callOnHub("configureScope",e)}t.configureScope=configureScope;function addBreadcrumb(e){callOnHub("addBreadcrumb",e)}t.addBreadcrumb=addBreadcrumb;function setContext(e,t){callOnHub("setContext",e,t)}t.setContext=setContext;function setExtras(e){callOnHub("setExtras",e)}t.setExtras=setExtras;function setTags(e){callOnHub("setTags",e)}t.setTags=setTags;function setExtra(e,t){callOnHub("setExtra",e,t)}t.setExtra=setExtra;function setTag(e,t){callOnHub("setTag",e,t)}t.setTag=setTag;function setUser(e){callOnHub("setUser",e)}t.setUser=setUser;function withScope(e){callOnHub("withScope",e)}t.withScope=withScope;function _callOnClient(e){var t=[];for(var n=1;n<arguments.length;n++){t[n-1]=arguments[n]}callOnHub.apply(void 0,r.__spread(["_invokeClient",e],t))}t._callOnClient=_callOnClient},1429:function(e,t,n){var r=n(1327);var i=n(56);var o=n(2054);var a=n(4839);var s=n(6071);function callbackAsync(e,t,n){setImmediate(function(){e(t,n)})}function parseMapToJSON(e,t){try{return JSON.parse(e.replace(/^\)\]\}'/,""))}catch(e){e.sourceMapData=t;throw e}}function readSync(e,t,n){var r=o(t);try{return String(e(r))}catch(e){e.sourceMapData=n;throw e}}function resolveSourceMap(e,t,n,r){var i;try{i=resolveSourceMapHelper(e,t)}catch(e){return callbackAsync(r,e)}if(!i||i.map){return callbackAsync(r,null,i)}var a=o(i.url);n(a,function(e,t){if(e){e.sourceMapData=i;return r(e)}i.map=String(t);try{i.map=parseMapToJSON(i.map,i)}catch(e){return r(e)}r(null,i)})}function resolveSourceMapSync(e,t,n){var r=resolveSourceMapHelper(e,t);if(!r||r.map){return r}r.map=readSync(n,r.url,r);r.map=parseMapToJSON(r.map,r);return r}var c=/^data:([^,;]*)(;[^,;]*)*(?:,(.*))?$/;var u=/^(?:application|text)\/json$/;function resolveSourceMapHelper(e,t){t=a(t);var n=r.getFrom(e);if(!n){return null}var o=n.match(c);if(o){var l=o[1];var f=o[2]||"";var p=o[3]||"";var d={sourceMappingURL:n,url:null,sourcesRelativeTo:t,map:p};if(!u.test(l)){var h=new Error("Unuseful data uri mime type: "+(l||"text/plain"));h.sourceMapData=d;throw h}d.map=parseMapToJSON(f===";base64"?s(p):decodeURIComponent(p),d);return d}var m=i(t,n);return{sourceMappingURL:n,url:m,sourcesRelativeTo:m,map:null}}function resolveSources(e,t,n,r,i){if(typeof r==="function"){i=r;r={}}var a=e.sources?e.sources.length:0;var s={sourcesResolved:[],sourcesContent:[]};if(a===0){callbackAsync(i,null,s);return}var c=function(){a--;if(a===0){i(null,s)}};resolveSourcesHelper(e,t,r,function(e,t,r){s.sourcesResolved[r]=e;if(typeof t==="string"){s.sourcesContent[r]=t;callbackAsync(c,null)}else{var i=o(e);n(i,function(e,t){s.sourcesContent[r]=e?e:String(t);c()})}})}function resolveSourcesSync(e,t,n,r){var i={sourcesResolved:[],sourcesContent:[]};if(!e.sources||e.sources.length===0){return i}resolveSourcesHelper(e,t,r,function(e,t,r){i.sourcesResolved[r]=e;if(n!==null){if(typeof t==="string"){i.sourcesContent[r]=t}else{var a=o(e);try{i.sourcesContent[r]=String(n(a))}catch(e){i.sourcesContent[r]=e}}}});return i}var l=/\/?$/;function resolveSourcesHelper(e,t,n,r){n=n||{};t=a(t);var o;var s;var c;for(var u=0,f=e.sources.length;u<f;u++){c=null;if(typeof n.sourceRoot==="string"){c=n.sourceRoot}else if(typeof e.sourceRoot==="string"&&n.sourceRoot!==false){c=e.sourceRoot}if(c===null||c===""){o=i(t,e.sources[u])}else{o=i(t,c.replace(l,"/"),e.sources[u])}s=(e.sourcesContent||[])[u];r(o,s,u)}}function resolve(e,t,n,r,i){if(typeof r==="function"){i=r;r={}}if(e===null){var a=t;var s={sourceMappingURL:null,url:a,sourcesRelativeTo:a,map:null};var c=o(a);n(c,function(e,t){if(e){e.sourceMapData=s;return i(e)}s.map=String(t);try{s.map=parseMapToJSON(s.map,s)}catch(e){return i(e)}_resolveSources(s)})}else{resolveSourceMap(e,t,n,function(e,t){if(e){return i(e)}if(!t){return i(null,null)}_resolveSources(t)})}function _resolveSources(e){resolveSources(e.map,e.sourcesRelativeTo,n,r,function(t,n){if(t){return i(t)}e.sourcesResolved=n.sourcesResolved;e.sourcesContent=n.sourcesContent;i(null,e)})}}function resolveSync(e,t,n,r){var i;if(e===null){var o=t;i={sourceMappingURL:null,url:o,sourcesRelativeTo:o,map:null};i.map=readSync(n,o,i);i.map=parseMapToJSON(i.map,i)}else{i=resolveSourceMapSync(e,t,n);if(!i){return null}}var a=resolveSourcesSync(i.map,i.sourcesRelativeTo,n,r);i.sourcesResolved=a.sourcesResolved;i.sourcesContent=a.sourcesContent;return i}e.exports={resolveSourceMap:resolveSourceMap,resolveSourceMapSync:resolveSourceMapSync,resolveSources:resolveSources,resolveSourcesSync:resolveSourcesSync,resolve:resolve,resolveSync:resolveSync,parseMapToJSON:parseMapToJSON}},1439:function(e,t,n){"use strict";const r=n(547);const i=n(7426);const o=Object.prototype.toString;const a="[object URL]";const s="hash";const c="host";const u="hostname";const l="href";const f="password";const p="pathname";const d="port";const h="protocol";const m="search";const v="username";const g=(e,t)=>{if(!i(e))return false;if(!r&&o.call(e)===a)return true;if(!(l in e))return false;if(!(h in e))return false;if(!(v in e))return false;if(!(f in e))return false;if(!(u in e))return false;if(!(d in e))return false;if(!(c in e))return false;if(!(p in e))return false;if(!(m in e))return false;if(!(s in e))return false;if(t!==true){if(!i(e.searchParams))return false}return true};g.lenient=(e=>{return g(e,true)});e.exports=g},1449:function(e,t,n){(function(e){"use strict";var t=function(e){var t,n=new Float64Array(16);if(e)for(t=0;t<e.length;t++)n[t]=e[t];return n};var r=function(){throw new Error("no PRNG")};var i=new Uint8Array(16);var o=new Uint8Array(32);o[0]=9;var a=t(),s=t([1]),c=t([56129,1]),u=t([30883,4953,19914,30187,55467,16705,2637,112,59544,30585,16505,36039,65139,11119,27886,20995]),l=t([61785,9906,39828,60374,45398,33411,5274,224,53552,61171,33010,6542,64743,22239,55772,9222]),f=t([54554,36645,11616,51542,42930,38181,51040,26924,56412,64982,57905,49316,21502,52590,14035,8553]),p=t([26200,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214,26214]),d=t([41136,18958,6951,50414,58488,44335,6150,12099,55207,15867,153,11085,57099,20417,9344,11139]);function ts64(e,t,n,r){e[t]=n>>24&255;e[t+1]=n>>16&255;e[t+2]=n>>8&255;e[t+3]=n&255;e[t+4]=r>>24&255;e[t+5]=r>>16&255;e[t+6]=r>>8&255;e[t+7]=r&255}function vn(e,t,n,r,i){var o,a=0;for(o=0;o<i;o++)a|=e[t+o]^n[r+o];return(1&a-1>>>8)-1}function crypto_verify_16(e,t,n,r){return vn(e,t,n,r,16)}function crypto_verify_32(e,t,n,r){return vn(e,t,n,r,32)}function core_salsa20(e,t,n,r){var i=r[0]&255|(r[1]&255)<<8|(r[2]&255)<<16|(r[3]&255)<<24,o=n[0]&255|(n[1]&255)<<8|(n[2]&255)<<16|(n[3]&255)<<24,a=n[4]&255|(n[5]&255)<<8|(n[6]&255)<<16|(n[7]&255)<<24,s=n[8]&255|(n[9]&255)<<8|(n[10]&255)<<16|(n[11]&255)<<24,c=n[12]&255|(n[13]&255)<<8|(n[14]&255)<<16|(n[15]&255)<<24,u=r[4]&255|(r[5]&255)<<8|(r[6]&255)<<16|(r[7]&255)<<24,l=t[0]&255|(t[1]&255)<<8|(t[2]&255)<<16|(t[3]&255)<<24,f=t[4]&255|(t[5]&255)<<8|(t[6]&255)<<16|(t[7]&255)<<24,p=t[8]&255|(t[9]&255)<<8|(t[10]&255)<<16|(t[11]&255)<<24,d=t[12]&255|(t[13]&255)<<8|(t[14]&255)<<16|(t[15]&255)<<24,h=r[8]&255|(r[9]&255)<<8|(r[10]&255)<<16|(r[11]&255)<<24,m=n[16]&255|(n[17]&255)<<8|(n[18]&255)<<16|(n[19]&255)<<24,v=n[20]&255|(n[21]&255)<<8|(n[22]&255)<<16|(n[23]&255)<<24,g=n[24]&255|(n[25]&255)<<8|(n[26]&255)<<16|(n[27]&255)<<24,y=n[28]&255|(n[29]&255)<<8|(n[30]&255)<<16|(n[31]&255)<<24,b=r[12]&255|(r[13]&255)<<8|(r[14]&255)<<16|(r[15]&255)<<24;var w=i,x=o,k=a,j=s,S=c,E=u,_=l,C=f,A=p,O=d,F=h,D=m,T=v,I=g,R=y,P=b,B;for(var N=0;N<20;N+=2){B=w+T|0;S^=B<<7|B>>>32-7;B=S+w|0;A^=B<<9|B>>>32-9;B=A+S|0;T^=B<<13|B>>>32-13;B=T+A|0;w^=B<<18|B>>>32-18;B=E+x|0;O^=B<<7|B>>>32-7;B=O+E|0;I^=B<<9|B>>>32-9;B=I+O|0;x^=B<<13|B>>>32-13;B=x+I|0;E^=B<<18|B>>>32-18;B=F+_|0;R^=B<<7|B>>>32-7;B=R+F|0;k^=B<<9|B>>>32-9;B=k+R|0;_^=B<<13|B>>>32-13;B=_+k|0;F^=B<<18|B>>>32-18;B=P+D|0;j^=B<<7|B>>>32-7;B=j+P|0;C^=B<<9|B>>>32-9;B=C+j|0;D^=B<<13|B>>>32-13;B=D+C|0;P^=B<<18|B>>>32-18;B=w+j|0;x^=B<<7|B>>>32-7;B=x+w|0;k^=B<<9|B>>>32-9;B=k+x|0;j^=B<<13|B>>>32-13;B=j+k|0;w^=B<<18|B>>>32-18;B=E+S|0;_^=B<<7|B>>>32-7;B=_+E|0;C^=B<<9|B>>>32-9;B=C+_|0;S^=B<<13|B>>>32-13;B=S+C|0;E^=B<<18|B>>>32-18;B=F+O|0;D^=B<<7|B>>>32-7;B=D+F|0;A^=B<<9|B>>>32-9;B=A+D|0;O^=B<<13|B>>>32-13;B=O+A|0;F^=B<<18|B>>>32-18;B=P+R|0;T^=B<<7|B>>>32-7;B=T+P|0;I^=B<<9|B>>>32-9;B=I+T|0;R^=B<<13|B>>>32-13;B=R+I|0;P^=B<<18|B>>>32-18}w=w+i|0;x=x+o|0;k=k+a|0;j=j+s|0;S=S+c|0;E=E+u|0;_=_+l|0;C=C+f|0;A=A+p|0;O=O+d|0;F=F+h|0;D=D+m|0;T=T+v|0;I=I+g|0;R=R+y|0;P=P+b|0;e[0]=w>>>0&255;e[1]=w>>>8&255;e[2]=w>>>16&255;e[3]=w>>>24&255;e[4]=x>>>0&255;e[5]=x>>>8&255;e[6]=x>>>16&255;e[7]=x>>>24&255;e[8]=k>>>0&255;e[9]=k>>>8&255;e[10]=k>>>16&255;e[11]=k>>>24&255;e[12]=j>>>0&255;e[13]=j>>>8&255;e[14]=j>>>16&255;e[15]=j>>>24&255;e[16]=S>>>0&255;e[17]=S>>>8&255;e[18]=S>>>16&255;e[19]=S>>>24&255;e[20]=E>>>0&255;e[21]=E>>>8&255;e[22]=E>>>16&255;e[23]=E>>>24&255;e[24]=_>>>0&255;e[25]=_>>>8&255;e[26]=_>>>16&255;e[27]=_>>>24&255;e[28]=C>>>0&255;e[29]=C>>>8&255;e[30]=C>>>16&255;e[31]=C>>>24&255;e[32]=A>>>0&255;e[33]=A>>>8&255;e[34]=A>>>16&255;e[35]=A>>>24&255;e[36]=O>>>0&255;e[37]=O>>>8&255;e[38]=O>>>16&255;e[39]=O>>>24&255;e[40]=F>>>0&255;e[41]=F>>>8&255;e[42]=F>>>16&255;e[43]=F>>>24&255;e[44]=D>>>0&255;e[45]=D>>>8&255;e[46]=D>>>16&255;e[47]=D>>>24&255;e[48]=T>>>0&255;e[49]=T>>>8&255;e[50]=T>>>16&255;e[51]=T>>>24&255;e[52]=I>>>0&255;e[53]=I>>>8&255;e[54]=I>>>16&255;e[55]=I>>>24&255;e[56]=R>>>0&255;e[57]=R>>>8&255;e[58]=R>>>16&255;e[59]=R>>>24&255;e[60]=P>>>0&255;e[61]=P>>>8&255;e[62]=P>>>16&255;e[63]=P>>>24&255}function core_hsalsa20(e,t,n,r){var i=r[0]&255|(r[1]&255)<<8|(r[2]&255)<<16|(r[3]&255)<<24,o=n[0]&255|(n[1]&255)<<8|(n[2]&255)<<16|(n[3]&255)<<24,a=n[4]&255|(n[5]&255)<<8|(n[6]&255)<<16|(n[7]&255)<<24,s=n[8]&255|(n[9]&255)<<8|(n[10]&255)<<16|(n[11]&255)<<24,c=n[12]&255|(n[13]&255)<<8|(n[14]&255)<<16|(n[15]&255)<<24,u=r[4]&255|(r[5]&255)<<8|(r[6]&255)<<16|(r[7]&255)<<24,l=t[0]&255|(t[1]&255)<<8|(t[2]&255)<<16|(t[3]&255)<<24,f=t[4]&255|(t[5]&255)<<8|(t[6]&255)<<16|(t[7]&255)<<24,p=t[8]&255|(t[9]&255)<<8|(t[10]&255)<<16|(t[11]&255)<<24,d=t[12]&255|(t[13]&255)<<8|(t[14]&255)<<16|(t[15]&255)<<24,h=r[8]&255|(r[9]&255)<<8|(r[10]&255)<<16|(r[11]&255)<<24,m=n[16]&255|(n[17]&255)<<8|(n[18]&255)<<16|(n[19]&255)<<24,v=n[20]&255|(n[21]&255)<<8|(n[22]&255)<<16|(n[23]&255)<<24,g=n[24]&255|(n[25]&255)<<8|(n[26]&255)<<16|(n[27]&255)<<24,y=n[28]&255|(n[29]&255)<<8|(n[30]&255)<<16|(n[31]&255)<<24,b=r[12]&255|(r[13]&255)<<8|(r[14]&255)<<16|(r[15]&255)<<24;var w=i,x=o,k=a,j=s,S=c,E=u,_=l,C=f,A=p,O=d,F=h,D=m,T=v,I=g,R=y,P=b,B;for(var N=0;N<20;N+=2){B=w+T|0;S^=B<<7|B>>>32-7;B=S+w|0;A^=B<<9|B>>>32-9;B=A+S|0;T^=B<<13|B>>>32-13;B=T+A|0;w^=B<<18|B>>>32-18;B=E+x|0;O^=B<<7|B>>>32-7;B=O+E|0;I^=B<<9|B>>>32-9;B=I+O|0;x^=B<<13|B>>>32-13;B=x+I|0;E^=B<<18|B>>>32-18;B=F+_|0;R^=B<<7|B>>>32-7;B=R+F|0;k^=B<<9|B>>>32-9;B=k+R|0;_^=B<<13|B>>>32-13;B=_+k|0;F^=B<<18|B>>>32-18;B=P+D|0;j^=B<<7|B>>>32-7;B=j+P|0;C^=B<<9|B>>>32-9;B=C+j|0;D^=B<<13|B>>>32-13;B=D+C|0;P^=B<<18|B>>>32-18;B=w+j|0;x^=B<<7|B>>>32-7;B=x+w|0;k^=B<<9|B>>>32-9;B=k+x|0;j^=B<<13|B>>>32-13;B=j+k|0;w^=B<<18|B>>>32-18;B=E+S|0;_^=B<<7|B>>>32-7;B=_+E|0;C^=B<<9|B>>>32-9;B=C+_|0;S^=B<<13|B>>>32-13;B=S+C|0;E^=B<<18|B>>>32-18;B=F+O|0;D^=B<<7|B>>>32-7;B=D+F|0;A^=B<<9|B>>>32-9;B=A+D|0;O^=B<<13|B>>>32-13;B=O+A|0;F^=B<<18|B>>>32-18;B=P+R|0;T^=B<<7|B>>>32-7;B=T+P|0;I^=B<<9|B>>>32-9;B=I+T|0;R^=B<<13|B>>>32-13;B=R+I|0;P^=B<<18|B>>>32-18}e[0]=w>>>0&255;e[1]=w>>>8&255;e[2]=w>>>16&255;e[3]=w>>>24&255;e[4]=E>>>0&255;e[5]=E>>>8&255;e[6]=E>>>16&255;e[7]=E>>>24&255;e[8]=F>>>0&255;e[9]=F>>>8&255;e[10]=F>>>16&255;e[11]=F>>>24&255;e[12]=P>>>0&255;e[13]=P>>>8&255;e[14]=P>>>16&255;e[15]=P>>>24&255;e[16]=_>>>0&255;e[17]=_>>>8&255;e[18]=_>>>16&255;e[19]=_>>>24&255;e[20]=C>>>0&255;e[21]=C>>>8&255;e[22]=C>>>16&255;e[23]=C>>>24&255;e[24]=A>>>0&255;e[25]=A>>>8&255;e[26]=A>>>16&255;e[27]=A>>>24&255;e[28]=O>>>0&255;e[29]=O>>>8&255;e[30]=O>>>16&255;e[31]=O>>>24&255}function crypto_core_salsa20(e,t,n,r){core_salsa20(e,t,n,r)}function crypto_core_hsalsa20(e,t,n,r){core_hsalsa20(e,t,n,r)}var h=new Uint8Array([101,120,112,97,110,100,32,51,50,45,98,121,116,101,32,107]);function crypto_stream_salsa20_xor(e,t,n,r,i,o,a){var s=new Uint8Array(16),c=new Uint8Array(64);var u,l;for(l=0;l<16;l++)s[l]=0;for(l=0;l<8;l++)s[l]=o[l];while(i>=64){crypto_core_salsa20(c,s,a,h);for(l=0;l<64;l++)e[t+l]=n[r+l]^c[l];u=1;for(l=8;l<16;l++){u=u+(s[l]&255)|0;s[l]=u&255;u>>>=8}i-=64;t+=64;r+=64}if(i>0){crypto_core_salsa20(c,s,a,h);for(l=0;l<i;l++)e[t+l]=n[r+l]^c[l]}return 0}function crypto_stream_salsa20(e,t,n,r,i){var o=new Uint8Array(16),a=new Uint8Array(64);var s,c;for(c=0;c<16;c++)o[c]=0;for(c=0;c<8;c++)o[c]=r[c];while(n>=64){crypto_core_salsa20(a,o,i,h);for(c=0;c<64;c++)e[t+c]=a[c];s=1;for(c=8;c<16;c++){s=s+(o[c]&255)|0;o[c]=s&255;s>>>=8}n-=64;t+=64}if(n>0){crypto_core_salsa20(a,o,i,h);for(c=0;c<n;c++)e[t+c]=a[c]}return 0}function crypto_stream(e,t,n,r,i){var o=new Uint8Array(32);crypto_core_hsalsa20(o,r,i,h);var a=new Uint8Array(8);for(var s=0;s<8;s++)a[s]=r[s+16];return crypto_stream_salsa20(e,t,n,a,o)}function crypto_stream_xor(e,t,n,r,i,o,a){var s=new Uint8Array(32);crypto_core_hsalsa20(s,o,a,h);var c=new Uint8Array(8);for(var u=0;u<8;u++)c[u]=o[u+16];return crypto_stream_salsa20_xor(e,t,n,r,i,c,s)}var m=function(e){this.buffer=new Uint8Array(16);this.r=new Uint16Array(10);this.h=new Uint16Array(10);this.pad=new Uint16Array(8);this.leftover=0;this.fin=0;var t,n,r,i,o,a,s,c;t=e[0]&255|(e[1]&255)<<8;this.r[0]=t&8191;n=e[2]&255|(e[3]&255)<<8;this.r[1]=(t>>>13|n<<3)&8191;r=e[4]&255|(e[5]&255)<<8;this.r[2]=(n>>>10|r<<6)&7939;i=e[6]&255|(e[7]&255)<<8;this.r[3]=(r>>>7|i<<9)&8191;o=e[8]&255|(e[9]&255)<<8;this.r[4]=(i>>>4|o<<12)&255;this.r[5]=o>>>1&8190;a=e[10]&255|(e[11]&255)<<8;this.r[6]=(o>>>14|a<<2)&8191;s=e[12]&255|(e[13]&255)<<8;this.r[7]=(a>>>11|s<<5)&8065;c=e[14]&255|(e[15]&255)<<8;this.r[8]=(s>>>8|c<<8)&8191;this.r[9]=c>>>5&127;this.pad[0]=e[16]&255|(e[17]&255)<<8;this.pad[1]=e[18]&255|(e[19]&255)<<8;this.pad[2]=e[20]&255|(e[21]&255)<<8;this.pad[3]=e[22]&255|(e[23]&255)<<8;this.pad[4]=e[24]&255|(e[25]&255)<<8;this.pad[5]=e[26]&255|(e[27]&255)<<8;this.pad[6]=e[28]&255|(e[29]&255)<<8;this.pad[7]=e[30]&255|(e[31]&255)<<8};m.prototype.blocks=function(e,t,n){var r=this.fin?0:1<<11;var i,o,a,s,c,u,l,f,p;var d,h,m,v,g,y,b,w,x,k;var j=this.h[0],S=this.h[1],E=this.h[2],_=this.h[3],C=this.h[4],A=this.h[5],O=this.h[6],F=this.h[7],D=this.h[8],T=this.h[9];var I=this.r[0],R=this.r[1],P=this.r[2],B=this.r[3],N=this.r[4],z=this.r[5],L=this.r[6],M=this.r[7],U=this.r[8],q=this.r[9];while(n>=16){i=e[t+0]&255|(e[t+1]&255)<<8;j+=i&8191;o=e[t+2]&255|(e[t+3]&255)<<8;S+=(i>>>13|o<<3)&8191;a=e[t+4]&255|(e[t+5]&255)<<8;E+=(o>>>10|a<<6)&8191;s=e[t+6]&255|(e[t+7]&255)<<8;_+=(a>>>7|s<<9)&8191;c=e[t+8]&255|(e[t+9]&255)<<8;C+=(s>>>4|c<<12)&8191;A+=c>>>1&8191;u=e[t+10]&255|(e[t+11]&255)<<8;O+=(c>>>14|u<<2)&8191;l=e[t+12]&255|(e[t+13]&255)<<8;F+=(u>>>11|l<<5)&8191;f=e[t+14]&255|(e[t+15]&255)<<8;D+=(l>>>8|f<<8)&8191;T+=f>>>5|r;p=0;d=p;d+=j*I;d+=S*(5*q);d+=E*(5*U);d+=_*(5*M);d+=C*(5*L);p=d>>>13;d&=8191;d+=A*(5*z);d+=O*(5*N);d+=F*(5*B);d+=D*(5*P);d+=T*(5*R);p+=d>>>13;d&=8191;h=p;h+=j*R;h+=S*I;h+=E*(5*q);h+=_*(5*U);h+=C*(5*M);p=h>>>13;h&=8191;h+=A*(5*L);h+=O*(5*z);h+=F*(5*N);h+=D*(5*B);h+=T*(5*P);p+=h>>>13;h&=8191;m=p;m+=j*P;m+=S*R;m+=E*I;m+=_*(5*q);m+=C*(5*U);p=m>>>13;m&=8191;m+=A*(5*M);m+=O*(5*L);m+=F*(5*z);m+=D*(5*N);m+=T*(5*B);p+=m>>>13;m&=8191;v=p;v+=j*B;v+=S*P;v+=E*R;v+=_*I;v+=C*(5*q);p=v>>>13;v&=8191;v+=A*(5*U);v+=O*(5*M);v+=F*(5*L);v+=D*(5*z);v+=T*(5*N);p+=v>>>13;v&=8191;g=p;g+=j*N;g+=S*B;g+=E*P;g+=_*R;g+=C*I;p=g>>>13;g&=8191;g+=A*(5*q);g+=O*(5*U);g+=F*(5*M);g+=D*(5*L);g+=T*(5*z);p+=g>>>13;g&=8191;y=p;y+=j*z;y+=S*N;y+=E*B;y+=_*P;y+=C*R;p=y>>>13;y&=8191;y+=A*I;y+=O*(5*q);y+=F*(5*U);y+=D*(5*M);y+=T*(5*L);p+=y>>>13;y&=8191;b=p;b+=j*L;b+=S*z;b+=E*N;b+=_*B;b+=C*P;p=b>>>13;b&=8191;b+=A*R;b+=O*I;b+=F*(5*q);b+=D*(5*U);b+=T*(5*M);p+=b>>>13;b&=8191;w=p;w+=j*M;w+=S*L;w+=E*z;w+=_*N;w+=C*B;p=w>>>13;w&=8191;w+=A*P;w+=O*R;w+=F*I;w+=D*(5*q);w+=T*(5*U);p+=w>>>13;w&=8191;x=p;x+=j*U;x+=S*M;x+=E*L;x+=_*z;x+=C*N;p=x>>>13;x&=8191;x+=A*B;x+=O*P;x+=F*R;x+=D*I;x+=T*(5*q);p+=x>>>13;x&=8191;k=p;k+=j*q;k+=S*U;k+=E*M;k+=_*L;k+=C*z;p=k>>>13;k&=8191;k+=A*N;k+=O*B;k+=F*P;k+=D*R;k+=T*I;p+=k>>>13;k&=8191;p=(p<<2)+p|0;p=p+d|0;d=p&8191;p=p>>>13;h+=p;j=d;S=h;E=m;_=v;C=g;A=y;O=b;F=w;D=x;T=k;t+=16;n-=16}this.h[0]=j;this.h[1]=S;this.h[2]=E;this.h[3]=_;this.h[4]=C;this.h[5]=A;this.h[6]=O;this.h[7]=F;this.h[8]=D;this.h[9]=T};m.prototype.finish=function(e,t){var n=new Uint16Array(10);var r,i,o,a;if(this.leftover){a=this.leftover;this.buffer[a++]=1;for(;a<16;a++)this.buffer[a]=0;this.fin=1;this.blocks(this.buffer,0,16)}r=this.h[1]>>>13;this.h[1]&=8191;for(a=2;a<10;a++){this.h[a]+=r;r=this.h[a]>>>13;this.h[a]&=8191}this.h[0]+=r*5;r=this.h[0]>>>13;this.h[0]&=8191;this.h[1]+=r;r=this.h[1]>>>13;this.h[1]&=8191;this.h[2]+=r;n[0]=this.h[0]+5;r=n[0]>>>13;n[0]&=8191;for(a=1;a<10;a++){n[a]=this.h[a]+r;r=n[a]>>>13;n[a]&=8191}n[9]-=1<<13;i=(r^1)-1;for(a=0;a<10;a++)n[a]&=i;i=~i;for(a=0;a<10;a++)this.h[a]=this.h[a]&i|n[a];this.h[0]=(this.h[0]|this.h[1]<<13)&65535;this.h[1]=(this.h[1]>>>3|this.h[2]<<10)&65535;this.h[2]=(this.h[2]>>>6|this.h[3]<<7)&65535;this.h[3]=(this.h[3]>>>9|this.h[4]<<4)&65535;this.h[4]=(this.h[4]>>>12|this.h[5]<<1|this.h[6]<<14)&65535;this.h[5]=(this.h[6]>>>2|this.h[7]<<11)&65535;this.h[6]=(this.h[7]>>>5|this.h[8]<<8)&65535;this.h[7]=(this.h[8]>>>8|this.h[9]<<5)&65535;o=this.h[0]+this.pad[0];this.h[0]=o&65535;for(a=1;a<8;a++){o=(this.h[a]+this.pad[a]|0)+(o>>>16)|0;this.h[a]=o&65535}e[t+0]=this.h[0]>>>0&255;e[t+1]=this.h[0]>>>8&255;e[t+2]=this.h[1]>>>0&255;e[t+3]=this.h[1]>>>8&255;e[t+4]=this.h[2]>>>0&255;e[t+5]=this.h[2]>>>8&255;e[t+6]=this.h[3]>>>0&255;e[t+7]=this.h[3]>>>8&255;e[t+8]=this.h[4]>>>0&255;e[t+9]=this.h[4]>>>8&255;e[t+10]=this.h[5]>>>0&255;e[t+11]=this.h[5]>>>8&255;e[t+12]=this.h[6]>>>0&255;e[t+13]=this.h[6]>>>8&255;e[t+14]=this.h[7]>>>0&255;e[t+15]=this.h[7]>>>8&255};m.prototype.update=function(e,t,n){var r,i;if(this.leftover){i=16-this.leftover;if(i>n)i=n;for(r=0;r<i;r++)this.buffer[this.leftover+r]=e[t+r];n-=i;t+=i;this.leftover+=i;if(this.leftover<16)return;this.blocks(this.buffer,0,16);this.leftover=0}if(n>=16){i=n-n%16;this.blocks(e,t,i);t+=i;n-=i}if(n){for(r=0;r<n;r++)this.buffer[this.leftover+r]=e[t+r];this.leftover+=n}};function crypto_onetimeauth(e,t,n,r,i,o){var a=new m(o);a.update(n,r,i);a.finish(e,t);return 0}function crypto_onetimeauth_verify(e,t,n,r,i,o){var a=new Uint8Array(16);crypto_onetimeauth(a,0,n,r,i,o);return crypto_verify_16(e,t,a,0)}function crypto_secretbox(e,t,n,r,i){var o;if(n<32)return-1;crypto_stream_xor(e,0,t,0,n,r,i);crypto_onetimeauth(e,16,e,32,n-32,e);for(o=0;o<16;o++)e[o]=0;return 0}function crypto_secretbox_open(e,t,n,r,i){var o;var a=new Uint8Array(32);if(n<32)return-1;crypto_stream(a,0,32,r,i);if(crypto_onetimeauth_verify(t,16,t,32,n-32,a)!==0)return-1;crypto_stream_xor(e,0,t,0,n,r,i);for(o=0;o<32;o++)e[o]=0;return 0}function set25519(e,t){var n;for(n=0;n<16;n++)e[n]=t[n]|0}function car25519(e){var t,n,r=1;for(t=0;t<16;t++){n=e[t]+r+65535;r=Math.floor(n/65536);e[t]=n-r*65536}e[0]+=r-1+37*(r-1)}function sel25519(e,t,n){var r,i=~(n-1);for(var o=0;o<16;o++){r=i&(e[o]^t[o]);e[o]^=r;t[o]^=r}}function pack25519(e,n){var r,i,o;var a=t(),s=t();for(r=0;r<16;r++)s[r]=n[r];car25519(s);car25519(s);car25519(s);for(i=0;i<2;i++){a[0]=s[0]-65517;for(r=1;r<15;r++){a[r]=s[r]-65535-(a[r-1]>>16&1);a[r-1]&=65535}a[15]=s[15]-32767-(a[14]>>16&1);o=a[15]>>16&1;a[14]&=65535;sel25519(s,a,1-o)}for(r=0;r<16;r++){e[2*r]=s[r]&255;e[2*r+1]=s[r]>>8}}function neq25519(e,t){var n=new Uint8Array(32),r=new Uint8Array(32);pack25519(n,e);pack25519(r,t);return crypto_verify_32(n,0,r,0)}function par25519(e){var t=new Uint8Array(32);pack25519(t,e);return t[0]&1}function unpack25519(e,t){var n;for(n=0;n<16;n++)e[n]=t[2*n]+(t[2*n+1]<<8);e[15]&=32767}function A(e,t,n){for(var r=0;r<16;r++)e[r]=t[r]+n[r]}function Z(e,t,n){for(var r=0;r<16;r++)e[r]=t[r]-n[r]}function M(e,t,n){var r,i,o=0,a=0,s=0,c=0,u=0,l=0,f=0,p=0,d=0,h=0,m=0,v=0,g=0,y=0,b=0,w=0,x=0,k=0,j=0,S=0,E=0,_=0,C=0,A=0,O=0,F=0,D=0,T=0,I=0,R=0,P=0,B=n[0],N=n[1],z=n[2],L=n[3],M=n[4],U=n[5],q=n[6],H=n[7],G=n[8],W=n[9],V=n[10],J=n[11],Y=n[12],Z=n[13],X=n[14],Q=n[15];r=t[0];o+=r*B;a+=r*N;s+=r*z;c+=r*L;u+=r*M;l+=r*U;f+=r*q;p+=r*H;d+=r*G;h+=r*W;m+=r*V;v+=r*J;g+=r*Y;y+=r*Z;b+=r*X;w+=r*Q;r=t[1];a+=r*B;s+=r*N;c+=r*z;u+=r*L;l+=r*M;f+=r*U;p+=r*q;d+=r*H;h+=r*G;m+=r*W;v+=r*V;g+=r*J;y+=r*Y;b+=r*Z;w+=r*X;x+=r*Q;r=t[2];s+=r*B;c+=r*N;u+=r*z;l+=r*L;f+=r*M;p+=r*U;d+=r*q;h+=r*H;m+=r*G;v+=r*W;g+=r*V;y+=r*J;b+=r*Y;w+=r*Z;x+=r*X;k+=r*Q;r=t[3];c+=r*B;u+=r*N;l+=r*z;f+=r*L;p+=r*M;d+=r*U;h+=r*q;m+=r*H;v+=r*G;g+=r*W;y+=r*V;b+=r*J;w+=r*Y;x+=r*Z;k+=r*X;j+=r*Q;r=t[4];u+=r*B;l+=r*N;f+=r*z;p+=r*L;d+=r*M;h+=r*U;m+=r*q;v+=r*H;g+=r*G;y+=r*W;b+=r*V;w+=r*J;x+=r*Y;k+=r*Z;j+=r*X;S+=r*Q;r=t[5];l+=r*B;f+=r*N;p+=r*z;d+=r*L;h+=r*M;m+=r*U;v+=r*q;g+=r*H;y+=r*G;b+=r*W;w+=r*V;x+=r*J;k+=r*Y;j+=r*Z;S+=r*X;E+=r*Q;r=t[6];f+=r*B;p+=r*N;d+=r*z;h+=r*L;m+=r*M;v+=r*U;g+=r*q;y+=r*H;b+=r*G;w+=r*W;x+=r*V;k+=r*J;j+=r*Y;S+=r*Z;E+=r*X;_+=r*Q;r=t[7];p+=r*B;d+=r*N;h+=r*z;m+=r*L;v+=r*M;g+=r*U;y+=r*q;b+=r*H;w+=r*G;x+=r*W;k+=r*V;j+=r*J;S+=r*Y;E+=r*Z;_+=r*X;C+=r*Q;r=t[8];d+=r*B;h+=r*N;m+=r*z;v+=r*L;g+=r*M;y+=r*U;b+=r*q;w+=r*H;x+=r*G;k+=r*W;j+=r*V;S+=r*J;E+=r*Y;_+=r*Z;C+=r*X;A+=r*Q;r=t[9];h+=r*B;m+=r*N;v+=r*z;g+=r*L;y+=r*M;b+=r*U;w+=r*q;x+=r*H;k+=r*G;j+=r*W;S+=r*V;E+=r*J;_+=r*Y;C+=r*Z;A+=r*X;O+=r*Q;r=t[10];m+=r*B;v+=r*N;g+=r*z;y+=r*L;b+=r*M;w+=r*U;x+=r*q;k+=r*H;j+=r*G;S+=r*W;E+=r*V;_+=r*J;C+=r*Y;A+=r*Z;O+=r*X;F+=r*Q;r=t[11];v+=r*B;g+=r*N;y+=r*z;b+=r*L;w+=r*M;x+=r*U;k+=r*q;j+=r*H;S+=r*G;E+=r*W;_+=r*V;C+=r*J;A+=r*Y;O+=r*Z;F+=r*X;D+=r*Q;r=t[12];g+=r*B;y+=r*N;b+=r*z;w+=r*L;x+=r*M;k+=r*U;j+=r*q;S+=r*H;E+=r*G;_+=r*W;C+=r*V;A+=r*J;O+=r*Y;F+=r*Z;D+=r*X;T+=r*Q;r=t[13];y+=r*B;b+=r*N;w+=r*z;x+=r*L;k+=r*M;j+=r*U;S+=r*q;E+=r*H;_+=r*G;C+=r*W;A+=r*V;O+=r*J;F+=r*Y;D+=r*Z;T+=r*X;I+=r*Q;r=t[14];b+=r*B;w+=r*N;x+=r*z;k+=r*L;j+=r*M;S+=r*U;E+=r*q;_+=r*H;C+=r*G;A+=r*W;O+=r*V;F+=r*J;D+=r*Y;T+=r*Z;I+=r*X;R+=r*Q;r=t[15];w+=r*B;x+=r*N;k+=r*z;j+=r*L;S+=r*M;E+=r*U;_+=r*q;C+=r*H;A+=r*G;O+=r*W;F+=r*V;D+=r*J;T+=r*Y;I+=r*Z;R+=r*X;P+=r*Q;o+=38*x;a+=38*k;s+=38*j;c+=38*S;u+=38*E;l+=38*_;f+=38*C;p+=38*A;d+=38*O;h+=38*F;m+=38*D;v+=38*T;g+=38*I;y+=38*R;b+=38*P;i=1;r=o+i+65535;i=Math.floor(r/65536);o=r-i*65536;r=a+i+65535;i=Math.floor(r/65536);a=r-i*65536;r=s+i+65535;i=Math.floor(r/65536);s=r-i*65536;r=c+i+65535;i=Math.floor(r/65536);c=r-i*65536;r=u+i+65535;i=Math.floor(r/65536);u=r-i*65536;r=l+i+65535;i=Math.floor(r/65536);l=r-i*65536;r=f+i+65535;i=Math.floor(r/65536);f=r-i*65536;r=p+i+65535;i=Math.floor(r/65536);p=r-i*65536;r=d+i+65535;i=Math.floor(r/65536);d=r-i*65536;r=h+i+65535;i=Math.floor(r/65536);h=r-i*65536;r=m+i+65535;i=Math.floor(r/65536);m=r-i*65536;r=v+i+65535;i=Math.floor(r/65536);v=r-i*65536;r=g+i+65535;i=Math.floor(r/65536);g=r-i*65536;r=y+i+65535;i=Math.floor(r/65536);y=r-i*65536;r=b+i+65535;i=Math.floor(r/65536);b=r-i*65536;r=w+i+65535;i=Math.floor(r/65536);w=r-i*65536;o+=i-1+37*(i-1);i=1;r=o+i+65535;i=Math.floor(r/65536);o=r-i*65536;r=a+i+65535;i=Math.floor(r/65536);a=r-i*65536;r=s+i+65535;i=Math.floor(r/65536);s=r-i*65536;r=c+i+65535;i=Math.floor(r/65536);c=r-i*65536;r=u+i+65535;i=Math.floor(r/65536);u=r-i*65536;r=l+i+65535;i=Math.floor(r/65536);l=r-i*65536;r=f+i+65535;i=Math.floor(r/65536);f=r-i*65536;r=p+i+65535;i=Math.floor(r/65536);p=r-i*65536;r=d+i+65535;i=Math.floor(r/65536);d=r-i*65536;r=h+i+65535;i=Math.floor(r/65536);h=r-i*65536;r=m+i+65535;i=Math.floor(r/65536);m=r-i*65536;r=v+i+65535;i=Math.floor(r/65536);v=r-i*65536;r=g+i+65535;i=Math.floor(r/65536);g=r-i*65536;r=y+i+65535;i=Math.floor(r/65536);y=r-i*65536;r=b+i+65535;i=Math.floor(r/65536);b=r-i*65536;r=w+i+65535;i=Math.floor(r/65536);w=r-i*65536;o+=i-1+37*(i-1);e[0]=o;e[1]=a;e[2]=s;e[3]=c;e[4]=u;e[5]=l;e[6]=f;e[7]=p;e[8]=d;e[9]=h;e[10]=m;e[11]=v;e[12]=g;e[13]=y;e[14]=b;e[15]=w}function S(e,t){M(e,t,t)}function inv25519(e,n){var r=t();var i;for(i=0;i<16;i++)r[i]=n[i];for(i=253;i>=0;i--){S(r,r);if(i!==2&&i!==4)M(r,r,n)}for(i=0;i<16;i++)e[i]=r[i]}function pow2523(e,n){var r=t();var i;for(i=0;i<16;i++)r[i]=n[i];for(i=250;i>=0;i--){S(r,r);if(i!==1)M(r,r,n)}for(i=0;i<16;i++)e[i]=r[i]}function crypto_scalarmult(e,n,r){var i=new Uint8Array(32);var o=new Float64Array(80),a,s;var u=t(),l=t(),f=t(),p=t(),d=t(),h=t();for(s=0;s<31;s++)i[s]=n[s];i[31]=n[31]&127|64;i[0]&=248;unpack25519(o,r);for(s=0;s<16;s++){l[s]=o[s];p[s]=u[s]=f[s]=0}u[0]=p[0]=1;for(s=254;s>=0;--s){a=i[s>>>3]>>>(s&7)&1;sel25519(u,l,a);sel25519(f,p,a);A(d,u,f);Z(u,u,f);A(f,l,p);Z(l,l,p);S(p,d);S(h,u);M(u,f,u);M(f,l,d);A(d,u,f);Z(u,u,f);S(l,u);Z(f,p,h);M(u,f,c);A(u,u,p);M(f,f,u);M(u,p,h);M(p,l,o);S(l,d);sel25519(u,l,a);sel25519(f,p,a)}for(s=0;s<16;s++){o[s+16]=u[s];o[s+32]=f[s];o[s+48]=l[s];o[s+64]=p[s]}var m=o.subarray(32);var v=o.subarray(16);inv25519(m,m);M(v,v,m);pack25519(e,v);return 0}function crypto_scalarmult_base(e,t){return crypto_scalarmult(e,t,o)}function crypto_box_keypair(e,t){r(t,32);return crypto_scalarmult_base(e,t)}function crypto_box_beforenm(e,t,n){var r=new Uint8Array(32);crypto_scalarmult(r,n,t);return crypto_core_hsalsa20(e,i,r,h)}var v=crypto_secretbox;var g=crypto_secretbox_open;function crypto_box(e,t,n,r,i,o){var a=new Uint8Array(32);crypto_box_beforenm(a,i,o);return v(e,t,n,r,a)}function crypto_box_open(e,t,n,r,i,o){var a=new Uint8Array(32);crypto_box_beforenm(a,i,o);return g(e,t,n,r,a)}var y=[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];function crypto_hashblocks_hl(e,t,n,r){var i=new Int32Array(16),o=new Int32Array(16),a,s,c,u,l,f,p,d,h,m,v,g,b,w,x,k,j,S,E,_,C,A,O,F,D,T;var I=e[0],R=e[1],P=e[2],B=e[3],N=e[4],z=e[5],L=e[6],M=e[7],U=t[0],q=t[1],H=t[2],G=t[3],W=t[4],V=t[5],J=t[6],Y=t[7];var Z=0;while(r>=128){for(E=0;E<16;E++){_=8*E+Z;i[E]=n[_+0]<<24|n[_+1]<<16|n[_+2]<<8|n[_+3];o[E]=n[_+4]<<24|n[_+5]<<16|n[_+6]<<8|n[_+7]}for(E=0;E<80;E++){a=I;s=R;c=P;u=B;l=N;f=z;p=L;d=M;h=U;m=q;v=H;g=G;b=W;w=V;x=J;k=Y;C=M;A=Y;O=A&65535;F=A>>>16;D=C&65535;T=C>>>16;C=(N>>>14|W<<32-14)^(N>>>18|W<<32-18)^(W>>>41-32|N<<32-(41-32));A=(W>>>14|N<<32-14)^(W>>>18|N<<32-18)^(N>>>41-32|W<<32-(41-32));O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;C=N&z^~N&L;A=W&V^~W&J;O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;C=y[E*2];A=y[E*2+1];O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;C=i[E%16];A=o[E%16];O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;F+=O>>>16;D+=F>>>16;T+=D>>>16;j=D&65535|T<<16;S=O&65535|F<<16;C=j;A=S;O=A&65535;F=A>>>16;D=C&65535;T=C>>>16;C=(I>>>28|U<<32-28)^(U>>>34-32|I<<32-(34-32))^(U>>>39-32|I<<32-(39-32));A=(U>>>28|I<<32-28)^(I>>>34-32|U<<32-(34-32))^(I>>>39-32|U<<32-(39-32));O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;C=I&R^I&P^R&P;A=U&q^U&H^q&H;O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;F+=O>>>16;D+=F>>>16;T+=D>>>16;d=D&65535|T<<16;k=O&65535|F<<16;C=u;A=g;O=A&65535;F=A>>>16;D=C&65535;T=C>>>16;C=j;A=S;O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;F+=O>>>16;D+=F>>>16;T+=D>>>16;u=D&65535|T<<16;g=O&65535|F<<16;R=a;P=s;B=c;N=u;z=l;L=f;M=p;I=d;q=h;H=m;G=v;W=g;V=b;J=w;Y=x;U=k;if(E%16===15){for(_=0;_<16;_++){C=i[_];A=o[_];O=A&65535;F=A>>>16;D=C&65535;T=C>>>16;C=i[(_+9)%16];A=o[(_+9)%16];O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;j=i[(_+1)%16];S=o[(_+1)%16];C=(j>>>1|S<<32-1)^(j>>>8|S<<32-8)^j>>>7;A=(S>>>1|j<<32-1)^(S>>>8|j<<32-8)^(S>>>7|j<<32-7);O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;j=i[(_+14)%16];S=o[(_+14)%16];C=(j>>>19|S<<32-19)^(S>>>61-32|j<<32-(61-32))^j>>>6;A=(S>>>19|j<<32-19)^(j>>>61-32|S<<32-(61-32))^(S>>>6|j<<32-6);O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;F+=O>>>16;D+=F>>>16;T+=D>>>16;i[_]=D&65535|T<<16;o[_]=O&65535|F<<16}}}C=I;A=U;O=A&65535;F=A>>>16;D=C&65535;T=C>>>16;C=e[0];A=t[0];O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;F+=O>>>16;D+=F>>>16;T+=D>>>16;e[0]=I=D&65535|T<<16;t[0]=U=O&65535|F<<16;C=R;A=q;O=A&65535;F=A>>>16;D=C&65535;T=C>>>16;C=e[1];A=t[1];O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;F+=O>>>16;D+=F>>>16;T+=D>>>16;e[1]=R=D&65535|T<<16;t[1]=q=O&65535|F<<16;C=P;A=H;O=A&65535;F=A>>>16;D=C&65535;T=C>>>16;C=e[2];A=t[2];O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;F+=O>>>16;D+=F>>>16;T+=D>>>16;e[2]=P=D&65535|T<<16;t[2]=H=O&65535|F<<16;C=B;A=G;O=A&65535;F=A>>>16;D=C&65535;T=C>>>16;C=e[3];A=t[3];O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;F+=O>>>16;D+=F>>>16;T+=D>>>16;e[3]=B=D&65535|T<<16;t[3]=G=O&65535|F<<16;C=N;A=W;O=A&65535;F=A>>>16;D=C&65535;T=C>>>16;C=e[4];A=t[4];O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;F+=O>>>16;D+=F>>>16;T+=D>>>16;e[4]=N=D&65535|T<<16;t[4]=W=O&65535|F<<16;C=z;A=V;O=A&65535;F=A>>>16;D=C&65535;T=C>>>16;C=e[5];A=t[5];O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;F+=O>>>16;D+=F>>>16;T+=D>>>16;e[5]=z=D&65535|T<<16;t[5]=V=O&65535|F<<16;C=L;A=J;O=A&65535;F=A>>>16;D=C&65535;T=C>>>16;C=e[6];A=t[6];O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;F+=O>>>16;D+=F>>>16;T+=D>>>16;e[6]=L=D&65535|T<<16;t[6]=J=O&65535|F<<16;C=M;A=Y;O=A&65535;F=A>>>16;D=C&65535;T=C>>>16;C=e[7];A=t[7];O+=A&65535;F+=A>>>16;D+=C&65535;T+=C>>>16;F+=O>>>16;D+=F>>>16;T+=D>>>16;e[7]=M=D&65535|T<<16;t[7]=Y=O&65535|F<<16;Z+=128;r-=128}return r}function crypto_hash(e,t,n){var r=new Int32Array(8),i=new Int32Array(8),o=new Uint8Array(256),a,s=n;r[0]=1779033703;r[1]=3144134277;r[2]=1013904242;r[3]=2773480762;r[4]=1359893119;r[5]=2600822924;r[6]=528734635;r[7]=1541459225;i[0]=4089235720;i[1]=2227873595;i[2]=4271175723;i[3]=1595750129;i[4]=2917565137;i[5]=725511199;i[6]=4215389547;i[7]=327033209;crypto_hashblocks_hl(r,i,t,n);n%=128;for(a=0;a<n;a++)o[a]=t[s-n+a];o[n]=128;n=256-128*(n<112?1:0);o[n-9]=0;ts64(o,n-8,s/536870912|0,s<<3);crypto_hashblocks_hl(r,i,o,n);for(a=0;a<8;a++)ts64(e,8*a,r[a],i[a]);return 0}function add(e,n){var r=t(),i=t(),o=t(),a=t(),s=t(),c=t(),u=t(),f=t(),p=t();Z(r,e[1],e[0]);Z(p,n[1],n[0]);M(r,r,p);A(i,e[0],e[1]);A(p,n[0],n[1]);M(i,i,p);M(o,e[3],n[3]);M(o,o,l);M(a,e[2],n[2]);A(a,a,a);Z(s,i,r);Z(c,a,o);A(u,a,o);A(f,i,r);M(e[0],s,c);M(e[1],f,u);M(e[2],u,c);M(e[3],s,f)}function cswap(e,t,n){var r;for(r=0;r<4;r++){sel25519(e[r],t[r],n)}}function pack(e,n){var r=t(),i=t(),o=t();inv25519(o,n[2]);M(r,n[0],o);M(i,n[1],o);pack25519(e,i);e[31]^=par25519(r)<<7}function scalarmult(e,t,n){var r,i;set25519(e[0],a);set25519(e[1],s);set25519(e[2],s);set25519(e[3],a);for(i=255;i>=0;--i){r=n[i/8|0]>>(i&7)&1;cswap(e,t,r);add(t,e);add(e,e);cswap(e,t,r)}}function scalarbase(e,n){var r=[t(),t(),t(),t()];set25519(r[0],f);set25519(r[1],p);set25519(r[2],s);M(r[3],f,p);scalarmult(e,r,n)}function crypto_sign_keypair(e,n,i){var o=new Uint8Array(64);var a=[t(),t(),t(),t()];var s;if(!i)r(n,32);crypto_hash(o,n,32);o[0]&=248;o[31]&=127;o[31]|=64;scalarbase(a,o);pack(e,a);for(s=0;s<32;s++)n[s+32]=e[s];return 0}var b=new Float64Array([237,211,245,92,26,99,18,88,214,156,247,162,222,249,222,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16]);function modL(e,t){var n,r,i,o;for(r=63;r>=32;--r){n=0;for(i=r-32,o=r-12;i<o;++i){t[i]+=n-16*t[r]*b[i-(r-32)];n=t[i]+128>>8;t[i]-=n*256}t[i]+=n;t[r]=0}n=0;for(i=0;i<32;i++){t[i]+=n-(t[31]>>4)*b[i];n=t[i]>>8;t[i]&=255}for(i=0;i<32;i++)t[i]-=n*b[i];for(r=0;r<32;r++){t[r+1]+=t[r]>>8;e[r]=t[r]&255}}function reduce(e){var t=new Float64Array(64),n;for(n=0;n<64;n++)t[n]=e[n];for(n=0;n<64;n++)e[n]=0;modL(e,t)}function crypto_sign(e,n,r,i){var o=new Uint8Array(64),a=new Uint8Array(64),s=new Uint8Array(64);var c,u,l=new Float64Array(64);var f=[t(),t(),t(),t()];crypto_hash(o,i,32);o[0]&=248;o[31]&=127;o[31]|=64;var p=r+64;for(c=0;c<r;c++)e[64+c]=n[c];for(c=0;c<32;c++)e[32+c]=o[32+c];crypto_hash(s,e.subarray(32),r+32);reduce(s);scalarbase(f,s);pack(e,f);for(c=32;c<64;c++)e[c]=i[c];crypto_hash(a,e,r+64);reduce(a);for(c=0;c<64;c++)l[c]=0;for(c=0;c<32;c++)l[c]=s[c];for(c=0;c<32;c++){for(u=0;u<32;u++){l[c+u]+=a[c]*o[u]}}modL(e.subarray(32),l);return p}function unpackneg(e,n){var r=t(),i=t(),o=t(),c=t(),l=t(),f=t(),p=t();set25519(e[2],s);unpack25519(e[1],n);S(o,e[1]);M(c,o,u);Z(o,o,e[2]);A(c,e[2],c);S(l,c);S(f,l);M(p,f,l);M(r,p,o);M(r,r,c);pow2523(r,r);M(r,r,o);M(r,r,c);M(r,r,c);M(e[0],r,c);S(i,e[0]);M(i,i,c);if(neq25519(i,o))M(e[0],e[0],d);S(i,e[0]);M(i,i,c);if(neq25519(i,o))return-1;if(par25519(e[0])===n[31]>>7)Z(e[0],a,e[0]);M(e[3],e[0],e[1]);return 0}function crypto_sign_open(e,n,r,i){var o,a;var s=new Uint8Array(32),c=new Uint8Array(64);var u=[t(),t(),t(),t()],l=[t(),t(),t(),t()];a=-1;if(r<64)return-1;if(unpackneg(l,i))return-1;for(o=0;o<r;o++)e[o]=n[o];for(o=0;o<32;o++)e[o+32]=i[o];crypto_hash(c,e,r);reduce(c);scalarmult(u,l,c);scalarbase(l,n.subarray(32));add(u,l);pack(s,u);r-=64;if(crypto_verify_32(n,0,s,0)){for(o=0;o<r;o++)e[o]=0;return-1}for(o=0;o<r;o++)e[o]=n[o+64];a=r;return a}var w=32,x=24,k=32,j=16,E=32,_=32,C=32,O=32,F=32,D=x,T=k,I=j,R=64,P=32,B=64,N=32,z=64;e.lowlevel={crypto_core_hsalsa20:crypto_core_hsalsa20,crypto_stream_xor:crypto_stream_xor,crypto_stream:crypto_stream,crypto_stream_salsa20_xor:crypto_stream_salsa20_xor,crypto_stream_salsa20:crypto_stream_salsa20,crypto_onetimeauth:crypto_onetimeauth,crypto_onetimeauth_verify:crypto_onetimeauth_verify,crypto_verify_16:crypto_verify_16,crypto_verify_32:crypto_verify_32,crypto_secretbox:crypto_secretbox,crypto_secretbox_open:crypto_secretbox_open,crypto_scalarmult:crypto_scalarmult,crypto_scalarmult_base:crypto_scalarmult_base,crypto_box_beforenm:crypto_box_beforenm,crypto_box_afternm:v,crypto_box:crypto_box,crypto_box_open:crypto_box_open,crypto_box_keypair:crypto_box_keypair,crypto_hash:crypto_hash,crypto_sign:crypto_sign,crypto_sign_keypair:crypto_sign_keypair,crypto_sign_open:crypto_sign_open,crypto_secretbox_KEYBYTES:w,crypto_secretbox_NONCEBYTES:x,crypto_secretbox_ZEROBYTES:k,crypto_secretbox_BOXZEROBYTES:j,crypto_scalarmult_BYTES:E,crypto_scalarmult_SCALARBYTES:_,crypto_box_PUBLICKEYBYTES:C,crypto_box_SECRETKEYBYTES:O,crypto_box_BEFORENMBYTES:F,crypto_box_NONCEBYTES:D,crypto_box_ZEROBYTES:T,crypto_box_BOXZEROBYTES:I,crypto_sign_BYTES:R,crypto_sign_PUBLICKEYBYTES:P,crypto_sign_SECRETKEYBYTES:B,crypto_sign_SEEDBYTES:N,crypto_hash_BYTES:z};function checkLengths(e,t){if(e.length!==w)throw new Error("bad key size");if(t.length!==x)throw new Error("bad nonce size")}function checkBoxLengths(e,t){if(e.length!==C)throw new Error("bad public key size");if(t.length!==O)throw new Error("bad secret key size")}function checkArrayTypes(){var e,t;for(t=0;t<arguments.length;t++){if((e=Object.prototype.toString.call(arguments[t]))!=="[object Uint8Array]")throw new TypeError("unexpected type "+e+", use Uint8Array")}}function cleanup(e){for(var t=0;t<e.length;t++)e[t]=0}if(!e.util){e.util={};e.util.decodeUTF8=e.util.encodeUTF8=e.util.encodeBase64=e.util.decodeBase64=function(){throw new Error("nacl.util moved into separate package: https://github.com/dchest/tweetnacl-util-js")}}e.randomBytes=function(e){var t=new Uint8Array(e);r(t,e);return t};e.secretbox=function(e,t,n){checkArrayTypes(e,t,n);checkLengths(n,t);var r=new Uint8Array(k+e.length);var i=new Uint8Array(r.length);for(var o=0;o<e.length;o++)r[o+k]=e[o];crypto_secretbox(i,r,r.length,t,n);return i.subarray(j)};e.secretbox.open=function(e,t,n){checkArrayTypes(e,t,n);checkLengths(n,t);var r=new Uint8Array(j+e.length);var i=new Uint8Array(r.length);for(var o=0;o<e.length;o++)r[o+j]=e[o];if(r.length<32)return false;if(crypto_secretbox_open(i,r,r.length,t,n)!==0)return false;return i.subarray(k)};e.secretbox.keyLength=w;e.secretbox.nonceLength=x;e.secretbox.overheadLength=j;e.scalarMult=function(e,t){checkArrayTypes(e,t);if(e.length!==_)throw new Error("bad n size");if(t.length!==E)throw new Error("bad p size");var n=new Uint8Array(E);crypto_scalarmult(n,e,t);return n};e.scalarMult.base=function(e){checkArrayTypes(e);if(e.length!==_)throw new Error("bad n size");var t=new Uint8Array(E);crypto_scalarmult_base(t,e);return t};e.scalarMult.scalarLength=_;e.scalarMult.groupElementLength=E;e.box=function(t,n,r,i){var o=e.box.before(r,i);return e.secretbox(t,n,o)};e.box.before=function(e,t){checkArrayTypes(e,t);checkBoxLengths(e,t);var n=new Uint8Array(F);crypto_box_beforenm(n,e,t);return n};e.box.after=e.secretbox;e.box.open=function(t,n,r,i){var o=e.box.before(r,i);return e.secretbox.open(t,n,o)};e.box.open.after=e.secretbox.open;e.box.keyPair=function(){var e=new Uint8Array(C);var t=new Uint8Array(O);crypto_box_keypair(e,t);return{publicKey:e,secretKey:t}};e.box.keyPair.fromSecretKey=function(e){checkArrayTypes(e);if(e.length!==O)throw new Error("bad secret key size");var t=new Uint8Array(C);crypto_scalarmult_base(t,e);return{publicKey:t,secretKey:new Uint8Array(e)}};e.box.publicKeyLength=C;e.box.secretKeyLength=O;e.box.sharedKeyLength=F;e.box.nonceLength=D;e.box.overheadLength=e.secretbox.overheadLength;e.sign=function(e,t){checkArrayTypes(e,t);if(t.length!==B)throw new Error("bad secret key size");var n=new Uint8Array(R+e.length);crypto_sign(n,e,e.length,t);return n};e.sign.open=function(e,t){if(arguments.length!==2)throw new Error("nacl.sign.open accepts 2 arguments; did you mean to use nacl.sign.detached.verify?");checkArrayTypes(e,t);if(t.length!==P)throw new Error("bad public key size");var n=new Uint8Array(e.length);var r=crypto_sign_open(n,e,e.length,t);if(r<0)return null;var i=new Uint8Array(r);for(var o=0;o<i.length;o++)i[o]=n[o];return i};e.sign.detached=function(t,n){var r=e.sign(t,n);var i=new Uint8Array(R);for(var o=0;o<i.length;o++)i[o]=r[o];return i};e.sign.detached.verify=function(e,t,n){checkArrayTypes(e,t,n);if(t.length!==R)throw new Error("bad signature size");if(n.length!==P)throw new Error("bad public key size");var r=new Uint8Array(R+e.length);var i=new Uint8Array(R+e.length);var o;for(o=0;o<R;o++)r[o]=t[o];for(o=0;o<e.length;o++)r[o+R]=e[o];return crypto_sign_open(i,r,r.length,n)>=0};e.sign.keyPair=function(){var e=new Uint8Array(P);var t=new Uint8Array(B);crypto_sign_keypair(e,t);return{publicKey:e,secretKey:t}};e.sign.keyPair.fromSecretKey=function(e){checkArrayTypes(e);if(e.length!==B)throw new Error("bad secret key size");var t=new Uint8Array(P);for(var n=0;n<t.length;n++)t[n]=e[32+n];return{publicKey:t,secretKey:new Uint8Array(e)}};e.sign.keyPair.fromSeed=function(e){checkArrayTypes(e);if(e.length!==N)throw new Error("bad seed size");var t=new Uint8Array(P);var n=new Uint8Array(B);for(var r=0;r<32;r++)n[r]=e[r];crypto_sign_keypair(t,n,true);return{publicKey:t,secretKey:n}};e.sign.publicKeyLength=P;e.sign.secretKeyLength=B;e.sign.seedLength=N;e.sign.signatureLength=R;e.hash=function(e){checkArrayTypes(e);var t=new Uint8Array(z);crypto_hash(t,e,e.length);return t};e.hash.hashLength=z;e.verify=function(e,t){checkArrayTypes(e,t);if(e.length===0||t.length===0)return false;if(e.length!==t.length)return false;return vn(e,0,t,0,e.length)===0?true:false};e.setPRNG=function(e){r=e};(function(){var t=typeof self!=="undefined"?self.crypto||self.msCrypto:null;if(t&&t.getRandomValues){var r=65536;e.setPRNG(function(e,n){var i,o=new Uint8Array(n);for(i=0;i<n;i+=r){t.getRandomValues(o.subarray(i,i+Math.min(n-i,r)))}for(i=0;i<n;i++)e[i]=o[i];cleanup(o)})}else if(true){t=n(2984);if(t&&t.randomBytes){e.setPRNG(function(e,n){var r,i=t.randomBytes(n);for(r=0;r<n;r++)e[r]=i[r];cleanup(i)})}}})()})(true&&e.exports?e.exports:self.nacl=self.nacl||{})},1459:function(e,t){var n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");t.encode=function(e){if(0<=e&&e<n.length){return n[e]}throw new TypeError("Must be between 0 and 63: "+e)};t.decode=function(e){var t=65;var n=90;var r=97;var i=122;var o=48;var a=57;var s=43;var c=47;var u=26;var l=52;if(t<=e&&e<=n){return e-t}if(r<=e&&e<=i){return e-r+u}if(o<=e&&e<=a){return e-o+l}if(e==s){return 62}if(e==c){return 63}return-1}},1461:function(e,t,n){"use strict";var r=n(1128);e.exports=function(e){var t=e.match(r);if(!t){return null}var n=t[0].replace(/#! ?/,"").split(" ");var i=n[0].split("/").pop();var o=n[1];return i==="env"?o:i+(o?" "+o:"")}},1471:function(e,t,n){var r=n(8901);var i=n(9544);var o=n(7007);var a=n(4734);var s=n(1767);var c=e.exports=function(e,t,n){r.assign(this,{answers:n,status:"pending"});this.opt=r.defaults(r.clone(e),{validate:function(){return true},filter:function(e){return e},when:function(){return true},suffix:"",prefix:i.green("?")});if(!this.opt.message){this.throwParamError("message")}if(!this.opt.name){this.throwParamError("name")}if(Array.isArray(this.opt.choices)){this.opt.choices=new a(this.opt.choices,n)}this.rl=t;this.screen=new s(this.rl)};c.prototype.run=function(){return new Promise(function(e){this._run(function(t){e(t)})}.bind(this))};c.prototype._run=function(e){e()};c.prototype.throwParamError=function(e){throw new Error("You must provide a `"+e+"` parameter")};c.prototype.close=function(){this.screen.releaseCursor()};c.prototype.handleSubmitEvents=function(e){var t=this;var n=o(this.opt.validate);var r=o(this.opt.filter);var i=e.flatMap(function(e){return r(e,t.answers).then(function(e){return n(e,t.answers).then(function(t){return{isValid:t,value:e}},function(e){return{isValid:e}})},function(e){return{isValid:e}})}).share();var a=i.filter(function(e){return e.isValid===true}).take(1);var s=i.filter(function(e){return e.isValid!==true}).takeUntil(a);return{success:a,error:s}};c.prototype.getQuestion=function(){var e=this.opt.prefix+" "+i.bold(this.opt.message)+this.opt.suffix+i.reset(" ");if(this.opt.default!=null&&this.status!=="answered"){e+=i.dim("("+this.opt.default+") ")}return e}},1473:function(e,t,n){var r=n(695);function retry(e,t){function run(n,i){var o=t||{};var a=r.operation(o);function bail(e){i(e||new Error("Aborted"))}function onError(e,t){if(e.bail){bail(e);return}if(!a.retry(e)){i(a.mainError())}else if(o.onRetry){o.onRetry(e,t)}}function runAttempt(t){var r;try{r=e(bail,t)}catch(e){onError(e,t);return}Promise.resolve(r).then(n).catch(function catchIt(e){onError(e,t)})}a.attempt(runAttempt)}return new Promise(run)}e.exports=retry},1476:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(635);var i=n(1390);var o=n(649);var a;var s=function(){function Http(){this.name=Http.id}Http.prototype.setupOnce=function(){var e=n(7786);i.fill(e,"_load",loadWrapper(e));n(4219)};Http.id="Http";return Http}();t.Http=s;function createBreadcrumbUrl(e){if(typeof e==="string"){return e}var t=e.protocol||"";var n=e.hostname||e.host||"";var r=!e.port||e.port===80||e.port===443?"":":"+e.port;var i=e.path||"/";return t+"//"+n+r+i}function loadWrapper(e){return function(t){return function(n){var r=t.apply(e,arguments);if(n!=="http"||r.__sentry__){return r}var a=r.ClientRequest;var s=function(e,t){a.call(this,e,t);this.__ravenBreadcrumbUrl=createBreadcrumbUrl(e)};o.inherits(s,a);i.fill(s.prototype,"emit",emitWrapper);i.fill(r,"ClientRequest",function(){return s});i.fill(r,"request",function(){return function(e,t){return new r.ClientRequest(e,t)}});i.fill(r,"get",function(){return function(e,t){var n=r.request(e,t);n.end();return n}});r.__sentry__=true;return r}}}function emitWrapper(e){return function(t,n){if(a===undefined||a!==n){a=n}else{return e.apply(this,arguments)}var i=r.getCurrentHub().getClient();if(i){var o=i.getDsn();var c=t==="response"||t==="error";var u=o&&this.__ravenBreadcrumbUrl&&!this.__ravenBreadcrumbUrl.includes(o.host);if(c&&u&&r.getCurrentHub().getIntegration(s)){r.getCurrentHub().addBreadcrumb({category:"http",data:{method:this.method,status_code:n.statusCode,url:this.__ravenBreadcrumbUrl},type:"http"},{event:t,request:this,response:n})}}return e.apply(this,arguments)}}},1482:function(e){"use strict";const t=/^(?:( )+|\t+)/;function getMostUsed(e){let t=0;let n=0;let r=0;for(const i of e){const e=i[0];const o=i[1];const a=o[0];const s=o[1];if(a>n||a===n&&s>r){n=a;r=s;t=Number(e)}}return t}e.exports=(e=>{if(typeof e!=="string"){throw new TypeError("Expected a string")}let n=0;let r=0;let i=0;const o=new Map;let a;let s;for(const c of e.split(/\n/g)){if(!c){continue}let e;const u=c.match(t);if(u){e=u[0].length;if(u[1]){r++}else{n++}}else{e=0}const l=e-i;i=e;if(l){s=l>0;a=o.get(s?l:-l);if(a){a[0]++}else{a=[1,0];o.set(l,a)}}else if(a){a[1]+=Number(s)}}const c=getMostUsed(o);let u;let l;if(!c){u=null;l=""}else if(r>=n){u="space";l=" ".repeat(c)}else{u="tab";l="\t".repeat(c)}return{amount:c,type:u,indent:l}})},1485:function(e,t,n){var r=n(5195);var i=36e5;var o=6e4;var a=2;var s=/[T ]/;var c=/:/;var u=/^(\d{2})$/;var l=[/^([+-]\d{2})$/,/^([+-]\d{3})$/,/^([+-]\d{4})$/];var f=/^(\d{4})/;var p=[/^([+-]\d{4})/,/^([+-]\d{5})/,/^([+-]\d{6})/];var d=/^-(\d{2})$/;var h=/^-?(\d{3})$/;var m=/^-?(\d{2})-?(\d{2})$/;var v=/^-?W(\d{2})$/;var g=/^-?W(\d{2})-?(\d{1})$/;var y=/^(\d{2}([.,]\d*)?)$/;var b=/^(\d{2}):?(\d{2}([.,]\d*)?)$/;var w=/^(\d{2}):?(\d{2}):?(\d{2}([.,]\d*)?)$/;var x=/([Z+-].*)$/;var k=/^(Z)$/;var j=/^([+-])(\d{2})$/;var S=/^([+-])(\d{2}):?(\d{2})$/;function parse(e,t){if(r(e)){return new Date(e.getTime())}else if(typeof e!=="string"){return new Date(e)}var n=t||{};var i=n.additionalDigits;if(i==null){i=a}else{i=Number(i)}var s=splitDateString(e);var c=parseYear(s.date,i);var u=c.year;var l=c.restDateString;var f=parseDate(l,u);if(f){var p=f.getTime();var d=0;var h;if(s.time){d=parseTime(s.time)}if(s.timezone){h=parseTimezone(s.timezone)}else{h=new Date(p+d).getTimezoneOffset();h=new Date(p+d+h*o).getTimezoneOffset()}return new Date(p+d+h*o)}else{return new Date(e)}}function splitDateString(e){var t={};var n=e.split(s);var r;if(c.test(n[0])){t.date=null;r=n[0]}else{t.date=n[0];r=n[1]}if(r){var i=x.exec(r);if(i){t.time=r.replace(i[1],"");t.timezone=i[1]}else{t.time=r}}return t}function parseYear(e,t){var n=l[t];var r=p[t];var i;i=f.exec(e)||r.exec(e);if(i){var o=i[1];return{year:parseInt(o,10),restDateString:e.slice(o.length)}}i=u.exec(e)||n.exec(e);if(i){var a=i[1];return{year:parseInt(a,10)*100,restDateString:e.slice(a.length)}}return{year:null}}function parseDate(e,t){if(t===null){return null}var n;var r;var i;var o;if(e.length===0){r=new Date(0);r.setUTCFullYear(t);return r}n=d.exec(e);if(n){r=new Date(0);i=parseInt(n[1],10)-1;r.setUTCFullYear(t,i);return r}n=h.exec(e);if(n){r=new Date(0);var a=parseInt(n[1],10);r.setUTCFullYear(t,0,a);return r}n=m.exec(e);if(n){r=new Date(0);i=parseInt(n[1],10)-1;var s=parseInt(n[2],10);r.setUTCFullYear(t,i,s);return r}n=v.exec(e);if(n){o=parseInt(n[1],10)-1;return dayOfISOYear(t,o)}n=g.exec(e);if(n){o=parseInt(n[1],10)-1;var c=parseInt(n[2],10)-1;return dayOfISOYear(t,o,c)}return null}function parseTime(e){var t;var n;var r;t=y.exec(e);if(t){n=parseFloat(t[1].replace(",","."));return n%24*i}t=b.exec(e);if(t){n=parseInt(t[1],10);r=parseFloat(t[2].replace(",","."));return n%24*i+r*o}t=w.exec(e);if(t){n=parseInt(t[1],10);r=parseInt(t[2],10);var a=parseFloat(t[3].replace(",","."));return n%24*i+r*o+a*1e3}return null}function parseTimezone(e){var t;var n;t=k.exec(e);if(t){return 0}t=j.exec(e);if(t){n=parseInt(t[2],10)*60;return t[1]==="+"?-n:n}t=S.exec(e);if(t){n=parseInt(t[2],10)*60+parseInt(t[3],10);return t[1]==="+"?-n:n}return 0}function dayOfISOYear(e,t,n){t=t||0;n=n||0;var r=new Date(0);r.setUTCFullYear(e,0,4);var i=r.getUTCDay()||7;var o=t*7+n+1-i;r.setUTCDate(r.getUTCDate()+o);return r}e.exports=parse},1486:function(e,t,n){"use strict";var r=n(649);var i=n(3413);var o=n(1974);var a=n(5343);var s=n(7054);var c=n(1989);var u=n(7101);var l=n(5248);var f=1024*64;function micromatch(e,t,n){t=l.arrayify(t);e=l.arrayify(e);var r=t.length;if(e.length===0||r===0){return[]}if(r===1){return micromatch.match(e,t[0],n)}var i=[];var o=[];var a=-1;while(++a<r){var s=t[a];if(typeof s==="string"&&s.charCodeAt(0)===33){i.push.apply(i,micromatch.match(e,s.slice(1),n))}else{o.push.apply(o,micromatch.match(e,s,n))}}var c=l.diff(o,i);if(!n||n.nodupes!==false){return l.unique(c)}return c}micromatch.match=function(e,t,n){if(Array.isArray(t)){throw new TypeError("expected pattern to be a string")}var r=l.unixify(n);var i=memoize("match",t,n,micromatch.matcher);var o=[];e=l.arrayify(e);var a=e.length;var s=-1;while(++s<a){var c=e[s];if(c===t||i(c)){o.push(l.value(c,r,n))}}if(typeof n==="undefined"){return l.unique(o)}if(o.length===0){if(n.failglob===true){throw new Error('no matches found for "'+t+'"')}if(n.nonull===true||n.nullglob===true){return[n.unescape?l.unescape(t):t]}}if(n.ignore){o=micromatch.not(o,n.ignore,n)}return n.nodupes!==false?l.unique(o):o};micromatch.isMatch=function(e,t,n){if(typeof e!=="string"){throw new TypeError('expected a string: "'+r.inspect(e)+'"')}if(isEmptyString(e)||isEmptyString(t)){return false}var i=l.equalsPattern(n);if(i(e)){return true}var o=memoize("isMatch",t,n,micromatch.matcher);return o(e)};micromatch.some=function(e,t,n){if(typeof e==="string"){e=[e]}for(var r=0;r<e.length;r++){if(micromatch(e[r],t,n).length===1){return true}}return false};micromatch.every=function(e,t,n){if(typeof e==="string"){e=[e]}for(var r=0;r<e.length;r++){if(micromatch(e[r],t,n).length!==1){return false}}return true};micromatch.any=function(e,t,n){if(typeof e!=="string"){throw new TypeError('expected a string: "'+r.inspect(e)+'"')}if(isEmptyString(e)||isEmptyString(t)){return false}if(typeof t==="string"){t=[t]}for(var i=0;i<t.length;i++){if(micromatch.isMatch(e,t[i],n)){return true}}return false};micromatch.all=function(e,t,n){if(typeof e!=="string"){throw new TypeError('expected a string: "'+r.inspect(e)+'"')}if(typeof t==="string"){t=[t]}for(var i=0;i<t.length;i++){if(!micromatch.isMatch(e,t[i],n)){return false}}return true};micromatch.not=function(e,t,n){var r=a({},n);var i=r.ignore;delete r.ignore;var o=l.unixify(r);e=l.arrayify(e).map(o);var s=l.diff(e,micromatch(e,t,r));if(i){s=l.diff(s,micromatch(e,i))}return r.nodupes!==false?l.unique(s):s};micromatch.contains=function(e,t,n){if(typeof e!=="string"){throw new TypeError('expected a string: "'+r.inspect(e)+'"')}if(typeof t==="string"){if(isEmptyString(e)||isEmptyString(t)){return false}var i=l.equalsPattern(t,n);if(i(e)){return true}var o=l.containsPattern(t,n);if(o(e)){return true}}var s=a({},n,{contains:true});return micromatch.any(e,t,s)};micromatch.matchBase=function(e,t){if(e&&e.indexOf("/")!==-1||!t)return false;return t.basename===true||t.matchBase===true};micromatch.matchKeys=function(e,t,n){if(!l.isObject(e)){throw new TypeError("expected the first argument to be an object")}var r=micromatch(Object.keys(e),t,n);return l.pick(e,r)};micromatch.matcher=function matcher(e,t){if(Array.isArray(e)){return compose(e,t,matcher)}if(e instanceof RegExp){return test(e)}if(!l.isString(e)){throw new TypeError("expected pattern to be an array, string or regex")}if(!l.hasSpecialChars(e)){if(t&&t.nocase===true){e=e.toLowerCase()}return l.matchPath(e,t)}var n=micromatch.makeRe(e,t);if(micromatch.matchBase(e,t)){return l.matchBasename(n,t)}function test(e){var n=l.equalsPattern(t);var r=l.unixify(t);return function(t){if(n(t)){return true}if(e.test(r(t))){return true}return false}}var r=test(n);Object.defineProperty(r,"result",{configurable:true,enumerable:false,value:n.result});return r};micromatch.capture=function(e,t,n){var r=micromatch.makeRe(e,a({capture:true},n));var i=l.unixify(n);function match(){return function(e){var t=r.exec(i(e));if(!t){return null}return t.slice(1)}}var o=memoize("capture",e,n,match);return o(t)};micromatch.makeRe=function(e,t){if(typeof e!=="string"){throw new TypeError("expected pattern to be a string")}if(e.length>f){throw new Error("expected pattern to be less than "+f+" characters")}function makeRe(){var n=micromatch.create(e,t);var r=[];var i=n.map(function(e){e.ast.state=e.state;r.push(e.ast);return e.output});var a=o(i.join("|"),t);Object.defineProperty(a,"result",{configurable:true,enumerable:false,value:r});return a}return memoize("makeRe",e,t,makeRe)};micromatch.braces=function(e,t){if(typeof e!=="string"&&!Array.isArray(e)){throw new TypeError("expected pattern to be an array or string")}function expand(){if(t&&t.nobrace===true||!/\{.*\}/.test(e)){return l.arrayify(e)}return i(e,t)}return memoize("braces",e,t,expand)};micromatch.braceExpand=function(e,t){var n=a({},t,{expand:true});return micromatch.braces(e,n)};micromatch.create=function(e,t){return memoize("create",e,t,function(){function create(e,t){return micromatch.compile(micromatch.parse(e,t),t)}e=micromatch.braces(e,t);var n=e.length;var r=-1;var i=[];while(++r<n){i.push(create(e[r],t))}return i})};micromatch.parse=function(e,t){if(typeof e!=="string"){throw new TypeError("expected a string")}function parse(){var n=l.instantiate(null,t);c(n,t);var r=n.parse(e,t);l.define(r,"snapdragon",n);r.input=e;return r}return memoize("parse",e,t,parse)};micromatch.compile=function(e,t){if(typeof e==="string"){e=micromatch.parse(e,t)}return memoize("compile",e.input,t,function(){var n=l.instantiate(e,t);s(n,t);return n.compile(e,t)})};micromatch.clearCache=function(){micromatch.cache.caches={}};function isEmptyString(e){return String(e)===""||String(e)==="./"}function compose(e,t,n){var r;return memoize("compose",String(e),t,function(){return function(i){if(!r){r=[];for(var o=0;o<e.length;o++){r.push(n(e[o],t))}}var a=r.length;while(a--){if(r[a](i)===true){return true}}return false}})}function memoize(e,t,n,r){var i=l.createKey(e+"="+t,n);if(n&&n.cache===false){return r(t,n)}if(u.has(e,i)){return u.get(e,i)}var o=r(t,n);u.set(e,i,o);return o}micromatch.compilers=s;micromatch.parsers=c;micromatch.caches=u.caches;e.exports=micromatch},1490:function(e,t,n){"use strict";var r=n(92);function getPublicSuffix(e){return r.get(e)}t.getPublicSuffix=getPublicSuffix},1492:function(e){"use strict";e.exports=Object.setPrototypeOf||({__proto__:[]}instanceof Array?setProtoOf:mixinProperties);function setProtoOf(e,t){e.__proto__=t;return e}function mixinProperties(e,t){for(var n in t){if(!e.hasOwnProperty(n)){e[n]=t[n]}}return e}},1494:function(e){function webpackEmptyContext(e){var t=new Error("Cannot find module '"+e+"'");t.code="MODULE_NOT_FOUND";throw t}webpackEmptyContext.keys=function(){return[]};webpackEmptyContext.resolve=webpackEmptyContext;e.exports=webpackEmptyContext;webpackEmptyContext.id=1494},1502:function(e,t,n){"use strict";var r=n(662);function parse(e){var t={};e.toString().split("\n").forEach(function(e){var n=e.match(/^\s*([\w\.\-]+)\s*=\s*(.*)?\s*$/);if(n!=null){var r=n[1];var i=n[2]?n[2]:"";var o=i?i.length:0;if(o>0&&i.charAt(0)==='"'&&i.charAt(o-1)==='"'){i=i.replace(/\\n/gm,"\n")}i=i.replace(/(^['"]|['"]$)/g,"").trim();t[r]=i}});return t}function config(e){var t=".env";var n="utf8";if(e){if(e.path){t=e.path}if(e.encoding){n=e.encoding}}try{var i=parse(r.readFileSync(t,{encoding:n}));Object.keys(i).forEach(function(e){process.env[e]=process.env[e]||i[e]});return{parsed:i}}catch(e){return{error:e}}}e.exports.config=config;e.exports.load=config;e.exports.parse=parse},1504:function(e){var t={}.toString;e.exports=Array.isArray||function(e){return t.call(e)=="[object Array]"}},1505:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});t.default=(e=>{const t=e.length;const n=[];const r={};let i;for(i=0;i<t;i+=1){r[e[i]]=r[e[i]]||n.push(e[i])}return n})},1508:function(e){"use strict";var t=Object.prototype.hasOwnProperty,n="~";function Events(){}if(Object.create){Events.prototype=Object.create(null);if(!(new Events).__proto__)n=false}function EE(e,t,n){this.fn=e;this.context=t;this.once=n||false}function addListener(e,t,r,i,o){if(typeof r!=="function"){throw new TypeError("The listener must be a function")}var a=new EE(r,i||e,o),s=n?n+t:t;if(!e._events[s])e._events[s]=a,e._eventsCount++;else if(!e._events[s].fn)e._events[s].push(a);else e._events[s]=[e._events[s],a];return e}function clearEvent(e,t){if(--e._eventsCount===0)e._events=new Events;else delete e._events[t]}function EventEmitter(){this._events=new Events;this._eventsCount=0}EventEmitter.prototype.eventNames=function eventNames(){var e=[],r,i;if(this._eventsCount===0)return e;for(i in r=this._events){if(t.call(r,i))e.push(n?i.slice(1):i)}if(Object.getOwnPropertySymbols){return e.concat(Object.getOwnPropertySymbols(r))}return e};EventEmitter.prototype.listeners=function listeners(e){var t=n?n+e:e,r=this._events[t];if(!r)return[];if(r.fn)return[r.fn];for(var i=0,o=r.length,a=new Array(o);i<o;i++){a[i]=r[i].fn}return a};EventEmitter.prototype.listenerCount=function listenerCount(e){var t=n?n+e:e,r=this._events[t];if(!r)return 0;if(r.fn)return 1;return r.length};EventEmitter.prototype.emit=function emit(e,t,r,i,o,a){var s=n?n+e:e;if(!this._events[s])return false;var c=this._events[s],u=arguments.length,l,f;if(c.fn){if(c.once)this.removeListener(e,c.fn,undefined,true);switch(u){case 1:return c.fn.call(c.context),true;case 2:return c.fn.call(c.context,t),true;case 3:return c.fn.call(c.context,t,r),true;case 4:return c.fn.call(c.context,t,r,i),true;case 5:return c.fn.call(c.context,t,r,i,o),true;case 6:return c.fn.call(c.context,t,r,i,o,a),true}for(f=1,l=new Array(u-1);f<u;f++){l[f-1]=arguments[f]}c.fn.apply(c.context,l)}else{var p=c.length,d;for(f=0;f<p;f++){if(c[f].once)this.removeListener(e,c[f].fn,undefined,true);switch(u){case 1:c[f].fn.call(c[f].context);break;case 2:c[f].fn.call(c[f].context,t);break;case 3:c[f].fn.call(c[f].context,t,r);break;case 4:c[f].fn.call(c[f].context,t,r,i);break;default:if(!l)for(d=1,l=new Array(u-1);d<u;d++){l[d-1]=arguments[d]}c[f].fn.apply(c[f].context,l)}}}return true};EventEmitter.prototype.on=function on(e,t,n){return addListener(this,e,t,n,false)};EventEmitter.prototype.once=function once(e,t,n){return addListener(this,e,t,n,true)};EventEmitter.prototype.removeListener=function removeListener(e,t,r,i){var o=n?n+e:e;if(!this._events[o])return this;if(!t){clearEvent(this,o);return this}var a=this._events[o];if(a.fn){if(a.fn===t&&(!i||a.once)&&(!r||a.context===r)){clearEvent(this,o)}}else{for(var s=0,c=[],u=a.length;s<u;s++){if(a[s].fn!==t||i&&!a[s].once||r&&a[s].context!==r){c.push(a[s])}}if(c.length)this._events[o]=c.length===1?c[0]:c;else clearEvent(this,o)}return this};EventEmitter.prototype.removeAllListeners=function removeAllListeners(e){var t;if(e){t=n?n+e:e;if(this._events[t])clearEvent(this,t)}else{this._events=new Events;this._eventsCount=0}return this};EventEmitter.prototype.off=EventEmitter.prototype.removeListener;EventEmitter.prototype.addListener=EventEmitter.prototype.on;EventEmitter.prefixed=n;EventEmitter.EventEmitter=EventEmitter;if(true){e.exports=EventEmitter}},1518:function(e,t,n){(function(){var t,r,i,o,a,s,c,u,l,f,p,d=function(e,t){return function(){return e.apply(t,arguments)}};o=n(662);p=n(7158);f=n(2041).spawnSync;l=n(2041).spawn;a=n(4623);t=n(2924);r=n(3678);c=n(2465);u=n(5092);s=n(5855);i=function(){ExternalEditor.edit=function(e){var t;if(e==null){e=""}t=new ExternalEditor(e);t.run();t.cleanup();return t.text};ExternalEditor.editAsync=function(e,t){var n;if(e==null){e=""}n=new ExternalEditor(e);return n.runAsync(function(e,r){var i;if(!e){try{n.cleanup();if(typeof t==="function"){return setImmediate(t,null,r)}}catch(e){i=e;if(typeof t==="function"){return setImmediate(t,i,null)}}}else{if(typeof t==="function"){return setImmediate(t,e,null)}}})};ExternalEditor.CreateFileError=r;ExternalEditor.ReadFileError=c;ExternalEditor.RemoveFileError=u;ExternalEditor.LaunchEditorError=s;ExternalEditor.prototype.text="";ExternalEditor.prototype.temp_file=void 0;ExternalEditor.prototype.editor={bin:void 0,args:[]};ExternalEditor.prototype.last_exit_status=void 0;function ExternalEditor(e){this.text=e!=null?e:"";this.launchEditorAsync=d(this.launchEditorAsync,this);this.launchEditor=d(this.launchEditor,this);this.removeTemporaryFile=d(this.removeTemporaryFile,this);this.readTemporaryFile=d(this.readTemporaryFile,this);this.createTemporaryFile=d(this.createTemporaryFile,this);this.determineEditor=d(this.determineEditor,this);this.cleanup=d(this.cleanup,this);this.runAsync=d(this.runAsync,this);this.run=d(this.run,this);this.determineEditor();this.createTemporaryFile()}ExternalEditor.prototype.run=function(){this.launchEditor();return this.readTemporaryFile()};ExternalEditor.prototype.runAsync=function(e){var t;try{return this.launchEditorAsync(function(t){return function(){var n;try{t.readTemporaryFile();if(typeof e==="function"){return setImmediate(e,null,t.text)}}catch(t){n=t;if(typeof e==="function"){return setImmediate(e,n,null)}}}}(this))}catch(n){t=n;if(typeof e==="function"){return setImmediate(e,t,null)}}};ExternalEditor.prototype.cleanup=function(){return this.removeTemporaryFile()};ExternalEditor.prototype.determineEditor=function(){var e,t,n;t=/^win/.test(process.platform)?"notepad":"vim";n=process.env.VISUAL||process.env.EDITOR||t;e=n.split(/\s+/);this.editor.bin=e.shift();return this.editor.args=e};ExternalEditor.prototype.createTemporaryFile=function(){var e;try{this.temp_file=p.tmpNameSync({});return o.writeFileSync(this.temp_file,this.text,{encoding:"utf8"})}catch(t){e=t;throw new r(e)}};ExternalEditor.prototype.readTemporaryFile=function(){var e,n,r;try{e=o.readFileSync(this.temp_file);if(!e.length){return this.text=""}r=t.detect(e);return this.text=a.decode(e,r)}catch(e){n=e;throw new c(n)}};ExternalEditor.prototype.removeTemporaryFile=function(){var e;try{return o.unlinkSync(this.temp_file)}catch(t){e=t;throw new u(e)}};ExternalEditor.prototype.launchEditor=function(){var e,t;try{t=f(this.editor.bin,this.editor.args.concat([this.temp_file]),{stdio:"inherit"});return this.last_exit_status=t.status}catch(t){e=t;throw new s(e)}};ExternalEditor.prototype.launchEditorAsync=function(e){var t,n;try{t=l(this.editor.bin,this.editor.args.concat([this.temp_file]),{stdio:"inherit"});return t.on("exit",function(t){return function(n){t.last_exit_status=n;if(typeof e==="function"){return e()}}}(this))}catch(e){n=e;throw new s(n)}};return ExternalEditor}();e.exports=i}).call(this)},1523:function(e,t,n){"use strict";const r=n(5897);const i=n(2617);const o=n(8975).pathExists;function symlinkPaths(e,t,n){if(r.isAbsolute(e)){return i.lstat(e,t=>{if(t){t.message=t.message.replace("lstat","ensureSymlink");return n(t)}return n(null,{toCwd:e,toDst:e})})}else{const a=r.dirname(t);const s=r.join(a,e);return o(s,(t,o)=>{if(t)return n(t);if(o){return n(null,{toCwd:s,toDst:e})}else{return i.lstat(e,t=>{if(t){t.message=t.message.replace("lstat","ensureSymlink");return n(t)}return n(null,{toCwd:e,toDst:r.relative(a,e)})})}})}}function symlinkPathsSync(e,t){let n;if(r.isAbsolute(e)){n=i.existsSync(e);if(!n)throw new Error("absolute srcpath does not exist");return{toCwd:e,toDst:e}}else{const o=r.dirname(t);const a=r.join(o,e);n=i.existsSync(a);if(n){return{toCwd:a,toDst:e}}else{n=i.existsSync(e);if(!n)throw new Error("relative srcpath does not exist");return{toCwd:e,toDst:r.relative(o,e)}}}}e.exports={symlinkPaths:symlinkPaths,symlinkPathsSync:symlinkPathsSync}},1524:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(2617);const o=n(1768);const a=n(5897);const s=n(6078).remove;const c=n(501).mkdirs;function move(e,t,n,r){if(typeof n==="function"){r=n;n={}}const o="mkdirp"in n?n.mkdirp:true;const u=n.overwrite||n.clobber||false;if(o){mkdirs()}else{doRename()}function mkdirs(){c(a.dirname(t),e=>{if(e)return r(e);doRename()})}function doRename(){if(a.resolve(e)===a.resolve(t)){i.access(e,r)}else if(u){i.rename(e,t,i=>{if(!i)return r();if(i.code==="ENOTEMPTY"||i.code==="EEXIST"){s(t,i=>{if(i)return r(i);n.overwrite=false;move(e,t,n,r)});return}if(i.code==="EPERM"){setTimeout(()=>{s(t,i=>{if(i)return r(i);n.overwrite=false;move(e,t,n,r)})},200);return}if(i.code!=="EXDEV")return r(i);moveAcrossDevice(e,t,u,r)})}else{i.link(e,t,n=>{if(n){if(n.code==="EXDEV"||n.code==="EISDIR"||n.code==="EPERM"||n.code==="ENOTSUP"){moveAcrossDevice(e,t,u,r);return}r(n);return}i.unlink(e,r)})}}}function moveAcrossDevice(e,t,n,r){i.stat(e,(i,o)=>{if(i){r(i);return}if(o.isDirectory()){moveDirAcrossDevice(e,t,n,r)}else{moveFileAcrossDevice(e,t,n,r)}})}function moveFileAcrossDevice(e,t,n,r){const o=n?"w":"wx";const a=i.createReadStream(e);const s=i.createWriteStream(t,{flags:o});a.on("error",o=>{a.destroy();s.destroy();s.removeListener("close",onClose);i.unlink(t,()=>{if(o.code==="EISDIR"||o.code==="EPERM"){moveDirAcrossDevice(e,t,n,r)}else{r(o)}})});s.on("error",e=>{a.destroy();s.destroy();s.removeListener("close",onClose);r(e)});s.once("close",onClose);a.pipe(s);function onClose(){i.unlink(e,r)}}function moveDirAcrossDevice(e,t,n,r){const i={overwrite:false};if(n){s(t,e=>{if(e)return r(e);startNcp()})}else{startNcp()}function startNcp(){o(e,t,i,t=>{if(t)return r(t);s(e,r)})}}e.exports={move:r(move)}},1530:function(e,t,n){"use strict";var r=n(5951);var i=n(649);var o=r.Readable;e.exports=ReaddirpReadable;i.inherits(ReaddirpReadable,o);function ReaddirpReadable(e){if(!(this instanceof ReaddirpReadable))return new ReaddirpReadable(e);e=e||{};e.objectMode=true;o.call(this,e);this.highWaterMark=Infinity;this._destroyed=false;this._paused=false;this._warnings=[];this._errors=[];this._pauseResumeErrors()}var a=ReaddirpReadable.prototype;a._pauseResumeErrors=function(){var e=this;e.on("pause",function(){e._paused=true});e.on("resume",function(){if(e._destroyed)return;e._paused=false;e._warnings.forEach(function(t){e.emit("warn",t)});e._warnings.length=0;e._errors.forEach(function(t){e.emit("error",t)});e._errors.length=0})};a._processEntry=function(e){if(this._destroyed)return;this.push(e)};a._read=function(){};a.destroy=function(){this.push(null);this.readable=false;this._destroyed=true;this.emit("close")};a._done=function(){this.push(null)};a._handleError=function(e){var t=this;setImmediate(function(){if(t._paused)return t._warnings.push(e);if(!t._destroyed)t.emit("warn",e)})};a._handleFatalError=function(e){var t=this;setImmediate(function(){if(t._paused)return t._errors.push(e);if(!t._destroyed)t.emit("error",e)})};function createStreamAPI(){var e=new ReaddirpReadable;return{stream:e,processEntry:e._processEntry.bind(e),done:e._done.bind(e),handleError:e._handleError.bind(e),handleFatalError:e._handleFatalError.bind(e)}}e.exports=createStreamAPI},1533:function(e,t,n){"use strict";var r=n(6606);var i=n(9799);var o=n(649);function extend(e,t){if(typeof e!=="function"){throw new TypeError("expected Parent to be a function.")}return function(n,a){if(typeof n!=="function"){throw new TypeError("expected Ctor to be a function.")}o.inherits(n,e);r(n,e);if(typeof a==="object"){var s=Object.create(a);for(var c in s){n.prototype[c]=s[c]}}i(n.prototype,"_parent_",{configurable:true,set:function(){},get:function(){return e.prototype}});if(typeof t==="function"){t(n,e)}n.extend=extend(n,t)}}e.exports=extend},1536:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({path:"charges",includeBasic:["create","list","retrieve","update","setMetadata","getMetadata"],capture:i({method:"POST",path:"/{id}/capture",urlParams:["id"]}),refund:i({method:"POST",path:"/{id}/refund",urlParams:["id"]}),updateDispute:i({method:"POST",path:"/{id}/dispute",urlParams:["id"]}),closeDispute:i({method:"POST",path:"/{id}/dispute/close",urlParams:["id"]}),createRefund:i({method:"POST",path:"/{chargeId}/refunds",urlParams:["chargeId"]}),listRefunds:i({method:"GET",path:"/{chargeId}/refunds",urlParams:["chargeId"]}),retrieveRefund:i({method:"GET",path:"/{chargeId}/refunds/{refundId}",urlParams:["chargeId","refundId"]}),updateRefund:i({method:"POST",path:"/{chargeId}/refunds/{refundId}",urlParams:["chargeId","refundId"]}),markAsSafe:function(e){return this.update(e,{fraud_details:{user_report:"safe"}})},markAsFraudulent:function(e){return this.update(e,{fraud_details:{user_report:"fraudulent"}})}})},1537:function(e,t,n){"use strict";var r;if(typeof Promise!=="undefined")r=Promise;function noConflict(){try{if(Promise===i)Promise=r}catch(e){}return i}var i=n(4239)();i.noConflict=noConflict;e.exports=i},1538:function(e){e.exports=pathToRegexp;e.exports.parse=parse;e.exports.compile=compile;e.exports.tokensToFunction=tokensToFunction;e.exports.tokensToRegExp=tokensToRegExp;var t="/";var n="./";var r=new RegExp(["(\\\\.)","(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?"].join("|"),"g");function parse(e,i){var o=[];var a=0;var s=0;var c="";var u=i&&i.delimiter||t;var l=i&&i.delimiters||n;var f=false;var p;while((p=r.exec(e))!==null){var d=p[0];var h=p[1];var m=p.index;c+=e.slice(s,m);s=m+d.length;if(h){c+=h[1];f=true;continue}var v="";var g=e[s];var y=p[2];var b=p[3];var w=p[4];var x=p[5];if(!f&&c.length){var k=c.length-1;if(l.indexOf(c[k])>-1){v=c[k];c=c.slice(0,k)}}if(c){o.push(c);c="";f=false}var j=v!==""&&g!==undefined&&g!==v;var S=x==="+"||x==="*";var E=x==="?"||x==="*";var _=v||u;var C=b||w;o.push({name:y||a++,prefix:v,delimiter:_,optional:E,repeat:S,partial:j,pattern:C?escapeGroup(C):"[^"+escapeString(_)+"]+?"})}if(c||s<e.length){o.push(c+e.substr(s))}return o}function compile(e,t){return tokensToFunction(parse(e,t))}function tokensToFunction(e){var t=new Array(e.length);for(var n=0;n<e.length;n++){if(typeof e[n]==="object"){t[n]=new RegExp("^(?:"+e[n].pattern+")$")}}return function(n,r){var i="";var o=r&&r.encode||encodeURIComponent;for(var a=0;a<e.length;a++){var s=e[a];if(typeof s==="string"){i+=s;continue}var c=n?n[s.name]:undefined;var u;if(Array.isArray(c)){if(!s.repeat){throw new TypeError('Expected "'+s.name+'" to not repeat, but got array')}if(c.length===0){if(s.optional)continue;throw new TypeError('Expected "'+s.name+'" to not be empty')}for(var l=0;l<c.length;l++){u=o(c[l],s);if(!t[a].test(u)){throw new TypeError('Expected all "'+s.name+'" to match "'+s.pattern+'"')}i+=(l===0?s.prefix:s.delimiter)+u}continue}if(typeof c==="string"||typeof c==="number"||typeof c==="boolean"){u=o(String(c),s);if(!t[a].test(u)){throw new TypeError('Expected "'+s.name+'" to match "'+s.pattern+'", but got "'+u+'"')}i+=s.prefix+u;continue}if(s.optional){if(s.partial)i+=s.prefix;continue}throw new TypeError('Expected "'+s.name+'" to be '+(s.repeat?"an array":"a string"))}return i}}function escapeString(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function escapeGroup(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function flags(e){return e&&e.sensitive?"":"i"}function regexpToRegexp(e,t){if(!t)return e;var n=e.source.match(/\((?!\?)/g);if(n){for(var r=0;r<n.length;r++){t.push({name:r,prefix:null,delimiter:null,optional:false,repeat:false,partial:false,pattern:null})}}return e}function arrayToRegexp(e,t,n){var r=[];for(var i=0;i<e.length;i++){r.push(pathToRegexp(e[i],t,n).source)}return new RegExp("(?:"+r.join("|")+")",flags(n))}function stringToRegexp(e,t,n){return tokensToRegExp(parse(e,n),t,n)}function tokensToRegExp(e,r,i){i=i||{};var o=i.strict;var a=i.end!==false;var s=escapeString(i.delimiter||t);var c=i.delimiters||n;var u=[].concat(i.endsWith||[]).map(escapeString).concat("$").join("|");var l="";var f=e.length===0;for(var p=0;p<e.length;p++){var d=e[p];if(typeof d==="string"){l+=escapeString(d);f=p===e.length-1&&c.indexOf(d[d.length-1])>-1}else{var h=escapeString(d.prefix);var m=d.repeat?"(?:"+d.pattern+")(?:"+h+"(?:"+d.pattern+"))*":d.pattern;if(r)r.push(d);if(d.optional){if(d.partial){l+=h+"("+m+")?"}else{l+="(?:"+h+"("+m+"))?"}}else{l+=h+"("+m+")"}}}if(a){if(!o)l+="(?:"+s+")?";l+=u==="$"?"$":"(?="+u+")"}else{if(!o)l+="(?:"+s+"(?="+u+"))?";if(!f)l+="(?="+s+"|"+u+")"}return new RegExp("^"+l,flags(i))}function pathToRegexp(e,t,n){if(e instanceof RegExp){return regexpToRegexp(e,t)}if(Array.isArray(e)){return arrayToRegexp(e,t,n)}return stringToRegexp(e,t,n)}},1539:function(e,t,n){var r=n(3902);e.exports=function normalizePath(e,t){if(typeof e!=="string"){throw new TypeError("expected a string")}e=e.replace(/[\\\/]+/g,"/");if(t!==false){e=r(e)}return e}},1541:function(e,t,n){"use strict";const r=n(4666);const i=n(3932);const o=n(662);const a=n(4594);const s=n(5897);const c=e.exports=((e,t,n)=>{if(typeof e==="function")n=e,t=null,e={};else if(Array.isArray(e))t=e,e={};if(typeof t==="function")n=t,t=null;if(!t)t=[];else t=Array.from(t);const i=r(e);if(i.sync&&typeof n==="function")throw new TypeError("callback not supported for sync tar functions");if(!i.file&&typeof n==="function")throw new TypeError("callback only supported with file option");if(t.length)u(i,t);return i.file&&i.sync?l(i):i.file?f(i,n):i.sync?p(i):d(i)});const u=(e,t)=>{const n=new Map(t.map(e=>[e.replace(/\/+$/,""),true]));const r=e.filter;const i=(e,t)=>{const r=t||s.parse(e).root||".";const o=e===r?false:n.has(e)?n.get(e):i(s.dirname(e),r);n.set(e,o);return o};e.filter=r?(e,t)=>r(e,t)&&i(e.replace(/\/+$/,"")):e=>i(e.replace(/\/+$/,""))};const l=e=>{const t=new i.Sync(e);const n=e.file;let r=true;let s;const c=o.statSync(n);const u=e.maxReadSize||16*1024*1024;const l=new a.ReadStreamSync(n,{readSize:u,size:c.size});l.pipe(t)};const f=(e,t)=>{const n=new i(e);const r=e.maxReadSize||16*1024*1024;const s=e.file;const c=new Promise((e,t)=>{n.on("error",t);n.on("close",e);o.stat(s,(e,i)=>{if(e)t(e);else{const e=new a.ReadStream(s,{readSize:r,size:i.size});e.on("error",t);e.pipe(n)}})});return t?c.then(t,t):c};const p=e=>{return new i.Sync(e)};const d=e=>{return new i(e)}},1548:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=i(n(2229));const c=i(n(3759));const u=i(n(2616));const l=o(n(8715));const f=i(n(2269));const p=i(n(6103));const d=i(n(7928));const h=i(n(4573));const m=i(n(8303));const v=i(n(586));const g=i(n(2788));function rm(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:o}=e;const{currentTeam:s}=o;const{apiUrl:u}=e;const p=v.default();const d=t["--debug"];const y=new h.default({apiUrl:u,token:r,currentTeam:s,debug:d});let b=null;try{({contextName:b}=yield m.default(y))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){i.error(e.message);return 1}throw e}if(n.length!==1){i.error(`Invalid number of arguments. Usage: ${a.default.cyan("`now certs rm <id or cn>`")}`);return 1}const w=n[0];const x=yield getCertsToDelete(i,y,b,w);if(x instanceof l.CertsPermissionDenied){i.error(`You don't have access to ${g.default(w)}'s certs under ${b}.`);return 1}if(x.length===0){i.error(`No certificates found by id "${w}" under ${a.default.bold(b)}`);return 1}const k=yield readConfirmation(i,"The following certificates will be removed permanently",x);if(!k){return 0}yield Promise.all(x.map(e=>f.default(i,y,e.uid)));i.success(`${a.default.bold(c.default("Certificate",x.length,true))} removed ${p()}`);return 0})}function getCertsToDelete(e,t,n,i){return r(this,void 0,void 0,function*(){const r=yield p.default(e,t,i);if(r instanceof l.CertNotFound){const r=yield d.default(e,t,n,i);if(r instanceof l.CertsPermissionDenied){return r}return r}return[r]})}function readConfirmation(e,t,n){return new Promise(r=>{e.log(t);e.print(`${u.default(n.map(formatCertRow),{align:["l","r","l"],hsep:" ".repeat(6)}).replace(/^(.*)/gm," $1")}\n`);e.print(`${a.default.bold.red("> Are you sure?")} ${a.default.gray("[y/N] ")}`);process.stdin.on("data",e=>{process.stdin.pause();r(e.toString().trim().toLowerCase()==="y")}).resume()})}function formatCertRow(e){return[e.uid,a.default.bold(e.cns?e.cns.join(", "):""),...e.created?[a.default.gray(`${s.default(Date.now()-new Date(e.created).getTime())} ago`)]:[]]}t.default=rm},1551:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(6757);t.FunctionToString=r.FunctionToString;var i=n(3885);t.InboundFilters=i.InboundFilters},1566:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return main});var r=n(816);var i=n.n(r);var o=n(9544);var a=n.n(o);var s=n(4495);var c=n(5242);var u=n.n(c);var l=n(4999);var f=n.n(l);var p=n(89);var d=n.n(p);var h=n(3033);var m=n(2736);var v=n(8950);var g=n.n(v);var y=n(4573);var b=n.n(y);var w=n(8303);var x=n.n(w);const k=()=>{console.log(`\n ${a.a.bold(`${f.a} now logs`)} <url|deploymentId>\n\n ${a.a.dim("Options:")}\n\n -h, --help Output usage information\n -a, --all Include access logs\n -A ${a.a.bold.underline("FILE")}, --local-config=${a.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${a.a.bold.underline("DIR")}, --global-config=${a.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -d, --debug Debug mode [off]\n -f, --follow Wait for additional data [off]\n -n ${a.a.bold.underline("NUMBER")} Number of logs [100]\n -q ${a.a.bold.underline("QUERY")}, --query=${a.a.bold.underline("QUERY")} Search query\n -t ${a.a.bold.underline("TOKEN")}, --token=${a.a.bold.underline("TOKEN")} Login token\n --since=${a.a.bold.underline("SINCE")} Only return logs after date (ISO 8601)\n --until=${a.a.bold.underline("UNTIL")} Only return logs before date (ISO 8601), ignored for ${"`-f`"}\n -S, --scope Set a custom scope\n -o ${a.a.bold.underline("MODE")}, --output=${a.a.bold.underline("MODE")} Specify the output format (${Object.keys(j).join("|")}) [short]\n\n ${a.a.dim("Examples:")}\n\n ${a.a.gray("")} Print the logs for the deployment ${a.a.dim("`deploymentId`")}\n\n ${a.a.cyan("$ now logs deploymentId")}\n`)};async function main(e){let t;let n;let r;let o;let c;let l;let f;let p;let v;let y;let w;let S;let E;t=i()(e.argv.slice(2),{string:["query","since","until","output"],boolean:["help","all","debug","head","follow"],alias:{help:"h",all:"a",debug:"d",query:"q",follow:"f",output:"o"}});t._=t._.slice(1);n=t._[0];if(t.help||!n||n==="help"){k();return 2}const _=t.debug;const C=u()({debug:_});try{w=t.since?toTimestamp(t.since):0}catch(e){C.error(`Invalid date string: ${t.since}`);return 1}try{S=t.until?toTimestamp(t.until):0}catch(e){C.error(`Invalid date string: ${t.until}`);return 1}if(Object(h["maybeURL"])(n)){const e=Object(h["normalizeURL"])(n);if(e.includes("/")){C.error(`Invalid deployment url: can't include path (${n})`);return 1}[n,E]=Object(h["parseInstanceURL"])(e)}r=t.debug;o=e.apiUrl;c=t.head;l=typeof t.n==="number"?t.n:100;f=t.query||"";p=t.f;if(p)S=0;v=t.all?[]:["command","stdout","stderr","exit"];y=t.output in j?t.output:"short";const{authConfig:{token:A},config:O}=e;const{currentTeam:F}=O;const D=new s["default"]({apiUrl:o,token:A,debug:r,currentTeam:F});const T=new b.a({apiUrl:o,token:A,currentTeam:F,debug:_});let I=null;try{({contextName:I}=await x()(T))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){C.error(e.message);return 1}throw e}let R;const P=n;const B=Date.now();const N=g()(`Fetching deployment "${P}" in ${a.a.bold(I)}`);try{R=await D.findDeployment(P)}catch(e){N();D.close();if(e.status===404){C.error(`Failed to find deployment "${P}" in ${a.a.bold(I)}`);return 1}if(e.status===403){C.error(`No permission to access deployment "${P}" in ${a.a.bold(I)}`);return 1}throw e}N();C.log(`Fetched deployment "${R.url}" in ${a.a.bold(I)} ${d()(Date.now()-B)}`);let z=c?"forward":"backward";if(w&&!S)z="forward";const L={direction:z,limit:l,query:f,types:v,instanceId:E,since:w,until:S};const M=[];const U=e=>M.push(e);await Object(m["default"])(D,R.uid||R.id,F,{mode:"logs",onEvent:U,quiet:false,debug:r,findOpts:L});const q=new Set;const H=e=>{if(q.has(e.id))return 0;q.add(e.id);return j[y](e)};M.sort(compareEvents).forEach(H);if(p){const e=M[M.length-1];const t=e?e.date:Date.now();const n={direction:"forward",query:f,types:v,instanceId:E,since:t,follow:true};await Object(m["default"])(D,R.uid||R.id,F,{mode:"logs",onEvent:H,quiet:false,debug:r,findOpts:n})}D.close();return 0}function compareEvents(e,t){const n=e.date||e.created;const r=t.date||t.created;if(n!==r)return n-r;const i=e.serial||"";const o=t.serial||"";const a=i.localeCompare(o);if(a!==0)return a;return e.created-t.created}function printLogShort(e){if(!e.created)return;let t;const n=e.object;if(e.type==="request"){t=`REQ "${n.method} ${n.uri} ${n.protocol}"`+` ${n.remoteAddr} - ${n.remoteUser||""}`+` "${n.referer||""}" "${n.userAgent||""}"`}else if(e.type==="response"){t=`RES "${n.method} ${n.uri} ${n.protocol}"`+` ${n.status} ${n.bodyBytesSent}`}else if(e.type==="event"){t=`EVENT ${e.event} ${JSON.stringify(e.payload)}`}else if(n){t=JSON.stringify(n,null,2)}else{t=(e.text||"").replace(/\n$/,"").replace(/^\n/,"").replace(/\x1b\[1000D/g,"").replace(/\x1b\[0K/g,"").replace(/\x1b\[1A/g,"");if(/warning/i.test(t)){t=a.a.yellow(t)}else if(e.type==="stderr"){t=a.a.red(t)}}const r=new Date(e.created).toISOString();t.split("\n").forEach((e,t)=>{if(e.includes("START RequestId:")||e.includes("END RequestId:")||e.includes("XRAY TraceId:")){return}if(e.includes("REPORT RequestId:")){e=e.substring(e.indexOf("Duration:"),e.length);if(e.includes("Init Duration:")){e=e.substring(0,e.indexOf("Init Duration:"))}}if(t===0){console.log(`${a.a.dim(r)} ${e.replace("[now-builder-debug] ","")}`)}else{console.log(`${" ".repeat(r.length)} ${e.replace("[now-builder-debug] ","")}`)}});return 0}function printLogRaw(e){if(!e.created)return;if(e.object){console.log(e.object)}else{console.log(e.text.replace(/\n$/,"").replace(/^\n/,"").replace(/\x1b\[1000D/g,"").replace(/\x1b\[0K/g,"").replace(/\x1b\[1A/g,""))}return 0}const j={short:printLogShort,raw:printLogRaw};function toTimestamp(e){const t=Date.parse(e);if(isNaN(t)){throw new TypeError("Invalid date string")}return t}},1580:function(e,t,n){"use strict";e.exports=function(e,t,r){var i=n(4730);var o=e.CancellationError;var a=i.errorObj;var s=n(4907)(r);function PassThroughHandlerContext(e,t,n){this.promise=e;this.type=t;this.handler=n;this.called=false;this.cancelPromise=null}PassThroughHandlerContext.prototype.isFinallyHandler=function(){return this.type===0};function FinallyHandlerCancelReaction(e){this.finallyHandler=e}FinallyHandlerCancelReaction.prototype._resultCancelled=function(){checkCancel(this.finallyHandler)};function checkCancel(e,t){if(e.cancelPromise!=null){if(arguments.length>1){e.cancelPromise._reject(t)}else{e.cancelPromise._cancel()}e.cancelPromise=null;return true}return false}function succeed(){return finallyHandler.call(this,this.promise._target()._settledValue())}function fail(e){if(checkCancel(this,e))return;a.e=e;return a}function finallyHandler(n){var i=this.promise;var s=this.handler;if(!this.called){this.called=true;var c=this.isFinallyHandler()?s.call(i._boundValue()):s.call(i._boundValue(),n);if(c===r){return c}else if(c!==undefined){i._setReturnedNonUndefined();var u=t(c,i);if(u instanceof e){if(this.cancelPromise!=null){if(u._isCancelled()){var l=new o("late cancellation observer");i._attachExtraTrace(l);a.e=l;return a}else if(u.isPending()){u._attachCancellationCallback(new FinallyHandlerCancelReaction(this))}}return u._then(succeed,fail,undefined,this,undefined)}}}if(i.isRejected()){checkCancel(this);a.e=n;return a}else{checkCancel(this);return n}}e.prototype._passThrough=function(e,t,n,r){if(typeof e!=="function")return this.then();return this._then(n,r,undefined,new PassThroughHandlerContext(this,t,e),undefined)};e.prototype.lastly=e.prototype["finally"]=function(e){return this._passThrough(e,0,finallyHandler,finallyHandler)};e.prototype.tap=function(e){return this._passThrough(e,1,finallyHandler)};e.prototype.tapCatch=function(t){var n=arguments.length;if(n===1){return this._passThrough(t,1,undefined,finallyHandler)}else{var r=new Array(n-1),o=0,a;for(a=0;a<n-1;++a){var c=arguments[a];if(i.isObject(c)){r[o++]=c}else{return e.reject(new TypeError("tapCatch statement predicate: "+"expecting an object but got "+i.classString(c)))}}r.length=o;var u=arguments[a];return this._passThrough(s(r,u,this),1,undefined,finallyHandler)}};return PassThroughHandlerContext}},1581:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return Secrets});var r=n(4495);class Secrets extends r["default"]{ls(){return this.listSecrets()}rm(e){return this.retry(async(t,n)=>{if(this._debug){console.time(`> [debug] #${n} DELETE /secrets/${e}`)}const r=await this._fetch(`/now/secrets/${e}`,{method:"DELETE"});if(this._debug){console.timeEnd(`> [debug] #${n} DELETE /secrets/${e}`)}if(r.status===403){return t(new Error("Unauthorized"))}const i=await r.json();if(r.status!==200){throw new Error(i.error.message)}return i})}add(e,t){return this.retry(async(n,r)=>{if(this._debug){console.time(`> [debug] #${r} POST /secrets`)}const i=await this._fetch("/now/secrets",{method:"POST",body:{name:e,value:t.toString()}});if(this._debug){console.timeEnd(`> [debug] #${r} POST /secrets`)}if(i.status===403){return n(new Error("Unauthorized"))}const o=await i.json();if(i.status!==200){throw new Error(o.error.message)}return o})}rename(e,t){return this.retry(async(n,r)=>{if(this._debug){console.time(`> [debug] #${r} PATCH /secrets/${e}`)}const i=await this._fetch(`/now/secrets/${e}`,{method:"PATCH",body:{name:t}});if(this._debug){console.timeEnd(`> [debug] #${r} PATCH /secrets/${e}`)}if(i.status===403){return n(new Error("Unauthorized"))}const o=await i.json();if(i.status!==200){throw new Error(o.error.message)}return o})}}},1598:function(e,t,n){"use strict";const r=n(5897);const i=n(7184);const o=n(5527).pathExists;const a=n(9361);function outputJson(e,t,n,s){if(typeof n==="function"){s=n;n={}}const c=r.dirname(e);o(c,(r,o)=>{if(r)return s(r);if(o)return a.writeJson(e,t,n,s);i.mkdirs(c,r=>{if(r)return s(r);a.writeJson(e,t,n,s)})})}e.exports=outputJson},1611:function(e,t,n){"use strict";var r=n(5325);e.exports=function pick(e,t){if(!r(e)&&typeof e!=="function"){return{}}var n={};if(typeof t==="string"){if(t in e){n[t]=e[t]}return n}var i=t.length;var o=-1;while(++o<i){var a=t[o];if(a in e){n[a]=e[a]}}return n}},1612:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});const r=n(6097);class SchemaValidationFailed extends r.NowError{constructor(e,t,n,r){super({code:"SCHEMA_VALIDATION_FAILED",meta:{message:e,keyword:t,dataPath:n,params:r},message:`Schema verification failed`})}}t.SchemaValidationFailed=SchemaValidationFailed;class InvalidAllForScale extends r.NowError{constructor(){super({code:"INVALID_ALL_FOR_SCALE",meta:{},message:`You can't use all in the regions list mixed with other regions`})}}t.InvalidAllForScale=InvalidAllForScale;class InvalidRegionOrDCForScale extends r.NowError{constructor(e){super({code:"INVALID_REGION_OR_DC_FOR_SCALE",meta:{regionOrDC:e},message:`Invalid region or DC "${e}" provided`})}}t.InvalidRegionOrDCForScale=InvalidRegionOrDCForScale;class InvalidLocalConfig extends r.NowError{constructor(e){super({code:"INVALID_LOCAL_CONFIG",meta:{value:e},message:`Invalid local config parameter [${e.map(e=>`"${e}"`).join(", ")}]. A string was expected.`})}}t.InvalidLocalConfig=InvalidLocalConfig},1620:function(e,t,n){"use strict";var r=n(6875);var i=n(4707);var o=n(3462);var a=n(7180);var s=n(4215);function Extglob(e){this.options=o({source:"extglob"},e);this.snapdragon=this.options.snapdragon||new r(this.options);this.snapdragon.patterns=this.snapdragon.patterns||{};this.compiler=this.snapdragon.compiler;this.parser=this.snapdragon.parser;a(this.snapdragon);s(this.snapdragon);i(this.snapdragon,"parse",function(e,t){var n=r.prototype.parse.apply(this,arguments);n.input=e;var o=this.parser.stack.pop();if(o&&this.options.strict!==true){var a=o.nodes[0];a.val="\\"+a.val;var s=a.parent.nodes[1];if(s.type==="star"){s.loose=true}}i(n,"parser",this.parser);return n});i(this,"parse",function(e,t){return this.snapdragon.parse.apply(this.snapdragon,arguments)});i(this,"compile",function(e,t){return this.snapdragon.compile.apply(this.snapdragon,arguments)})}e.exports=Extglob},1623:function(e,t,n){"use strict";var r=n(6279);e.exports=function isExtendable(e){return r(e)||typeof e==="function"||Array.isArray(e)}},1631:function(e,t,n){"use strict";const r=n(6824);const i=n(1148);function appendPosition(e){const t=/ at (\d+:\d+) in/;const n=t.exec(e);return e.replace(t," in")+":"+n[1]}const o=r("JSONError",{fileName:r.append("in %s"),appendPosition:{message:(e,t)=>{if(e){t[0]=appendPosition(t[0])}return t}}});e.exports=((e,t,n)=>{if(typeof t==="string"){n=t;t=null}try{try{return JSON.parse(e,t)}catch(n){i.parse(e,{mode:"json",reviver:t});throw n}}catch(e){const t=new o(e);if(n){t.fileName=n;t.appendPosition=true}throw t}})},1632:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(8950));function getDomains(e,t){return r(this,void 0,void 0,function*(){const n=a.default(`Fetching domains under ${o.default.bold(t)}`);const{domains:r}=yield e.fetch("/v4/domains");n();return r.sort((e,t)=>t.createdAt-e.createdAt)})}t.default=getDomains},1640:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(416));const a=n(774);const s=n(4219);const c=i(n(6127));const u=n(712);const l=i(n(595));const f=n(7151);const p=n(8463);const d=l.default();const h=d("/:version/runtime/:subject/:target/:action?");const m=c.default("@zeit/fun:runtime-server");function send404(e){e.statusCode=404;e.end()}class RuntimeServer extends s.Server{constructor(e){super();this.version="2018-06-01";const t=this.serve.bind(this);this.on("request",(e,n)=>u.run(e,n,t));this.lambda=e;this.initDeferred=p.createDeferred();this.resetInvocationState()}resetInvocationState(){this.nextDeferred=p.createDeferred();this.invokeDeferred=null;this.resultDeferred=null;this.currentRequestId=o.default()}serve(e,t){return r(this,void 0,void 0,function*(){m("%s %s",e.method,e.url);let n;const r=h(a.parse(e.url).pathname);if(!r){return send404(t)}const{version:i,subject:o,target:s,action:c}=r;if(this.version!==i){m("Invalid API version, expected %o but got %o",this.version,i);return send404(t)}if(o==="invocation"){if(s==="next"){return this.handleNextInvocation(e,t)}else{if(c==="response"){return this.handleInvocationResponse(e,t,s)}else if(c==="error"){return this.handleInvocationError(e,t,s)}else{return send404(t)}}}else if(o==="init"){if(s==="error"){return this.handleInitializationError(e,t)}else{return send404(t)}}else{return send404(t)}})}handleNextInvocation(e,t){return r(this,void 0,void 0,function*(){const{initDeferred:n}=this;if(n){m("Runtime successfully initialized");this.initDeferred=null;n.resolve()}this.invokeDeferred=p.createDeferred();this.resultDeferred=p.createDeferred();this.nextDeferred.resolve();this.nextDeferred=null;m("Waiting for the `invoke()` function to be called");e.setTimeout(0);const r=yield this.invokeDeferred.promise;const i=5e3;const o="arn:aws:lambda:us-west-1:977805900156:function:nate-dump";t.setHeader("Lambda-Runtime-Aws-Request-Id",this.currentRequestId);t.setHeader("Lambda-Runtime-Invoked-Function-Arn",o);t.setHeader("Lambda-Runtime-Deadline-Ms",String(i));const a=f.once(t,"finish");t.end(r.Payload);yield a})}handleInvocationResponse(e,t,n){return r(this,void 0,void 0,function*(){const n=200;const r={StatusCode:n,ExecutedVersion:"$LATEST",Payload:yield u.text(e,{limit:"6mb"})};t.statusCode=202;const i=f.once(t,"finish");t.end();yield i;this.resultDeferred.resolve(r);this.resetInvocationState()})}handleInvocationError(e,t,n){return r(this,void 0,void 0,function*(){const n=200;const r={StatusCode:n,FunctionError:"Handled",ExecutedVersion:"$LATEST",Payload:yield u.text(e,{limit:"6mb"})};t.statusCode=202;const i=f.once(t,"finish");t.end();yield i;this.resultDeferred.resolve(r);this.resetInvocationState()})}handleInitializationError(e,t){return r(this,void 0,void 0,function*(){const n=200;const r={StatusCode:n,FunctionError:"Unhandled",ExecutedVersion:"$LATEST",Payload:yield u.text(e,{limit:"6mb"})};t.statusCode=202;const i=f.once(t,"finish");t.end();yield i;this.initDeferred.resolve(r)})}invoke(e={InvocationType:"RequestResponse"}){return r(this,void 0,void 0,function*(){if(this.nextDeferred){m("Waiting for `next` invocation request from runtime");yield this.nextDeferred.promise}if(!e.Payload){e.Payload="{}"}this.invokeDeferred.resolve(e);const t=yield this.resultDeferred.promise;return t})}close(e){const t=this.initDeferred||this.resultDeferred;if(t){const e=200;t.resolve({StatusCode:e,FunctionError:"Unhandled",ExecutedVersion:"$LATEST",Payload:JSON.stringify({errorMessage:`RequestId: ${this.currentRequestId} Process exited before completing request`})})}super.close(e);return this}}t.RuntimeServer=RuntimeServer},1647:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(8715);function getTeams(e){return r(this,void 0,void 0,function*(){try{const{teams:t}=yield e.fetch(`/teams`);return t}catch(e){if(e instanceof i.APIError&&e.status===403){throw new i.InvalidToken}throw e}})}t.default=getTeams},1650:function(e){e.exports=abort;function abort(e){Object.keys(e.jobs).forEach(clean.bind(e));e.jobs={}}function clean(e){if(typeof this.jobs[e]=="function"){this.jobs[e]()}}},1654:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=i(n(3759));const c=o(n(8715));const u=i(n(4573));const l=i(n(8685));const f=i(n(8303));const p=i(n(2105));const d=i(n(1216));const h=i(n(2826));const m=i(n(5032));const v=i(n(2788));const g=i(n(9208));const y=i(n(6760));const b=i(n(3266));const w=i(n(1647));function move(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:o}=e;const{currentTeam:m}=o;const{apiUrl:x}=e;const k=t["--debug"];const j=new u.default({apiUrl:x,token:r,currentTeam:m,debug:k});let S=null;let E=null;try{({contextName:S,user:E}=yield f.default(j))}catch(e){if(e.code==="NOT_AUTHORIZED"){i.error(e.message);return 1}throw e}const{domainName:_,destination:C}=yield getArgs(n);if(!h.default(_)){i.error(`Invalid domain name "${_}". Run ${l.default("now domains --help")}`);return 1}const A=yield y.default(j,S,_);if(A instanceof c.DomainNotFound){i.error(`Domain not found under ${a.default.bold(S)}`);i.log(`Run ${l.default("now domains ls")} to see your domains.`);return 1}if(A instanceof c.DomainPermissionDenied){i.error(`You don't have permissions over domain ${a.default.underline(A.meta.domain)} under ${a.default.bold(A.meta.context)}.`);return 1}const O=yield w.default(j);const F=yield findDestinationMatch(C,E,O);if(!F&&!t["--yes"]){i.warn(`You're not a member of ${v.default(C)}. `+`${v.default(C)} will have 24 hours to accept your move request before it expires.`);if(!(yield b.default(`Are you sure you want to move ${v.default(_)} to ${v.default(C)}?`))){i.log("Aborted");return 0}}if(!t["--yes"]){const e=yield g.default(j,_);if(e.length>0){i.warn(`This domain's ${a.default.bold(s.default("alias",e.length,true))} will be removed. Run ${a.default.dim("`now alias ls`")} to list them.`);if(!(yield b.default(`Are you sure you want to move ${v.default(_)}?`))){i.log("Aborted");return 0}}}const D=S;const T=yield p.default("Moving",()=>{return d.default(j,D,_,F||C)});if(T instanceof c.DomainMoveConflict){const{suffix:e,pendingAsyncPurchase:t}=T.meta;if(e){i.error(`Please remove custom suffix for ${v.default(_)} before moving out`);return 1}if(t){i.error(`Cannot remove ${v.default(A.name)} because it is still in the process of being purchased.`);return 1}i.error(T.message);return 1}if(T instanceof c.DomainNotFound){i.error(`Domain not found under ${a.default.bold(S)}`);i.log(`Run ${l.default("now domains ls")} to see your domains.`);return 1}if(T instanceof c.DomainPermissionDenied){i.error(`You don't have permissions over domain ${a.default.underline(T.meta.domain)} under ${a.default.bold(T.meta.context)}.`);return 1}if(T instanceof c.InvalidMoveDestination){i.error(`Destination ${a.default.bold(C)} is invalid. Please supply a valid username, email, team slug, user id, or team id.`);return 1}const{moved:I}=T;if(I){i.success(`${v.default(_)} was moved to ${v.default(C)}.`)}else{i.success(`Sent ${v.default(C)} an email to approve the ${v.default(_)} move request.`)}return 0})}t.default=move;function getArgs(e){return r(this,void 0,void 0,function*(){let[t,n]=e;if(!t){t=yield m.default({label:`- Domain name: `,validateValue:h.default})}if(!n){n=yield m.default({label:`- Destination: `,validateValue:e=>Boolean(e&&e.length>0)})}return{domainName:t,destination:n}})}function findDestinationMatch(e,t,n){return r(this,void 0,void 0,function*(){if(t.uid===e||t.username===e){return t.uid}for(const t of n){if(t.id===e||t.slug===e){return t.id}}return null})}},1659:function(e,t,n){"use strict";n.r(t);var r=n(4573);var i=n.n(r);var o=n(8303);var a=n.n(o);var s=n(5580);var c=n.n(s);t["default"]=(async(e,t,n,r)=>{let o;let s;let u;try{const{token:e}=r.readAuthConfigFile();const{currentTeam:t}=r.readConfigFile();const c=new i.a({apiUrl:n,token:e,currentTeam:t,debug:false});({user:o,team:s}=await a()(c))}catch(e){u=e}e.withScope(n=>{if(o){const e={email:o.email,id:o.uid};if(o.username){e.username=o.username}if(o.name){e.name=o.name}n.setUser(e)}if(s){n.setTag("currentTeam",s.id)}if(u){n.setExtra("scopeError",{name:u.name,message:u.message,stack:u.stack})}let r;let i;try{r=c()(process.argv.slice(2),{})}catch(e){i=e}if(r){const e=["--env","--build-env","--token"];for(const t of e){if(r[t])r[t]="REDACTED"}if(r._.length>=4&&r._[0].startsWith("secret")&&r._[1]==="add"){r._[3]="REDACTED"}n.setExtra("args",r)}else{let e="Unable to parse args";if(i){e+=`: ${i}`}n.setExtra("args",e)}n.setExtra("node",{execPath:process.execPath,version:process.version,platform:process.platform});e.captureException(t)});const l=e.getCurrentHub().getClient();if(l){await l.close()}})},1661:function(e,t,n){"use strict";n.r(t);var r=n(3041);var i=n.n(r);var o=n(2688);var a=n.n(o);var s=n(4680);var c=n.n(s);var u=n(998);function getLength(e){let t=0;e.split("\n").map(e=>{e=a()(e);if(e.length>t){t=e.length}return undefined});return t}t["default"]=async function({message:e="the question",choices:t=[{name:"something\ndescription\ndetails\netc",value:"something unique",short:"generally the first line of `name`"}],pageSize:n=15,separator:r=true,abort:o="end",eraseFinalAnswer:a=false}){let s=0;t=t.map(e=>{if(e.name){const t=getLength(e.name);if(t>s){s=t}return e}throw new Error("Invalid choice")});if(r===true){t=t.reduce((e,t)=>e.concat(new i.a.Separator(" "),t),[])}const u=new i.a.Separator("─".repeat(s));const l={name:"Abort",value:undefined};if(o==="start"){const e=t.shift();t.unshift(u);t.unshift(l);t.unshift(e)}else{t.push(u);t.push(l)}const f=Date.now();const p=await i.a.prompt({name:f,type:"list",message:e,choices:t,pageSize:n});if(a===true){process.stdout.write(c()(2))}return p[f]}},1668:function(e,t,n){var r=n(4234);e.exports={read:read,verify:r.verify,sign:r.sign,write:write};var i=n(9261);var o=n(4833);var a=n(3062).Buffer;var s=n(6977);var c=n(5271);var u=n(120);var l=n(1946);var f=n(5302);var p=n(8161);var d=n(5511);var h=n(6399);function read(e,t){if(typeof e!=="string"){i.buffer(e,"buf");e=e.toString("ascii")}var n=e.trim().split(/[\r\n]+/g);var o;var s=-1;while(!o&&s<n.length){o=n[++s].match(/[-]+[ ]*BEGIN CERTIFICATE[ ]*[-]+/)}i.ok(o,"invalid PEM header");var c;var u=n.length;while(!c&&u>0){c=n[--u].match(/[-]+[ ]*END CERTIFICATE[ ]*[-]+/)}i.ok(c,"invalid PEM footer");n=n.slice(s,u+1);var l={};while(true){n=n.slice(1);o=n[0].match(/^([A-Za-z0-9-]+): (.+)$/);if(!o)break;l[o[1].toLowerCase()]=o[2]}n=n.slice(0,-1).join("");e=a.from(n,"base64");return r.read(e,t)}function write(e,t){var n=r.write(e,t);var i="CERTIFICATE";var o=n.toString("base64");var s=o.length+o.length/64+18+16+i.length*2+10;var c=a.alloc(s);var u=0;u+=c.write("-----BEGIN "+i+"-----\n",u);for(var l=0;l<o.length;){var f=l+64;if(f>o.length)f=o.length;u+=c.write(o.slice(l,f),u);c[u++]=10;l=f}u+=c.write("-----END "+i+"-----\n",u);return c.slice(0,u)}},1676:function(e,t,n){"use strict";const r=n(2617);const i=n(4316);const o=n(5897);function hasMillisResSync(){let e=o.join("millis-test-sync"+Date.now().toString()+Math.random().toString().slice(2));e=o.join(i.tmpdir(),e);const t=new Date(1435410243862);r.writeFileSync(e,"https://github.com/jprichardson/node-fs-extra/pull/141");const n=r.openSync(e,"r+");r.futimesSync(n,t,t);r.closeSync(n);return r.statSync(e).mtime>1435410243e3}function hasMillisRes(e){let t=o.join("millis-test"+Date.now().toString()+Math.random().toString().slice(2));t=o.join(i.tmpdir(),t);const n=new Date(1435410243862);r.writeFile(t,"https://github.com/jprichardson/node-fs-extra/pull/141",i=>{if(i)return e(i);r.open(t,"r+",(i,o)=>{if(i)return e(i);r.futimes(o,n,n,n=>{if(n)return e(n);r.close(o,n=>{if(n)return e(n);r.stat(t,(t,n)=>{if(t)return e(t);e(null,n.mtime>1435410243e3)})})})})})}function timeRemoveMillis(e){if(typeof e==="number"){return Math.floor(e/1e3)*1e3}else if(e instanceof Date){return new Date(Math.floor(e.getTime()/1e3)*1e3)}else{throw new Error("fs-extra: timeRemoveMillis() unknown parameter type")}}function utimesMillis(e,t,n,i){r.open(e,"r+",(e,o)=>{if(e)return i(e);r.futimes(o,t,n,e=>{r.close(o,t=>{if(i)i(e||t)})})})}function utimesMillisSync(e,t,n){const i=r.openSync(e,"r+");r.futimesSync(i,t,n);return r.closeSync(i)}e.exports={hasMillisRes:hasMillisRes,hasMillisResSync:hasMillisResSync,timeRemoveMillis:timeRemoveMillis,utimesMillis:utimesMillis,utimesMillisSync:utimesMillisSync}},1678:function(e){"use strict";var t=process.platform==="win32";var n=t?/[^:]\\$/:/.\/$/;e.exports=function(){var e;if(t){e=process.env.TEMP||process.env.TMP||(process.env.SystemRoot||process.env.windir)+"\\temp"}else{e=process.env.TMPDIR||process.env.TMP||process.env.TEMP||"/tmp"}if(n.test(e)){e=e.slice(0,-1)}return e}},1680:function(e,t,n){"use strict";var r=n(649);var i=n(7227);e.exports=function mapVisit(e,t,n){if(isObject(n)){return i.apply(null,arguments)}if(!Array.isArray(n)){throw new TypeError("expected an array: "+r.inspect(n))}var o=[].slice.call(arguments,3);for(var a=0;a<n.length;a++){var s=n[a];if(isObject(s)){i.apply(null,[e,t,s].concat(o))}else{e[t].apply(e,[s].concat(o))}}};function isObject(e){return e&&(typeof e==="function"||!Array.isArray(e)&&typeof e==="object")}},1682:function(e,t,n){var r=n(9423);var i=r.Buffer;function copyProps(e,t){for(var n in e){t[n]=e[n]}}if(i.from&&i.alloc&&i.allocUnsafe&&i.allocUnsafeSlow){e.exports=r}else{copyProps(r,t);t.Buffer=SafeBuffer}function SafeBuffer(e,t,n){return i(e,t,n)}copyProps(i,SafeBuffer);SafeBuffer.from=function(e,t,n){if(typeof e==="number"){throw new TypeError("Argument must not be a number")}return i(e,t,n)};SafeBuffer.alloc=function(e,t,n){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}var r=i(e);if(t!==undefined){if(typeof n==="string"){r.fill(t,n)}else{r.fill(t)}}else{r.fill(0)}return r};SafeBuffer.allocUnsafe=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return i(e)};SafeBuffer.allocUnsafeSlow=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return r.SlowBuffer(e)}},1688:function(e,t,n){"use strict";var r=n(7409);e.exports=r.extend({path:"customers/{customerId}/cards",includeBasic:["create","list","retrieve","update","del"]})},1689:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({path:"balance",retrieve:i({method:"GET"}),listTransactions:i({method:"GET",path:"history"}),retrieveTransaction:i({method:"GET",path:"history/{transactionId}",urlParams:["transactionId"]})})},1694:function(e){"use strict";var t=/["'&<>]/;e.exports=escapeHtml;function escapeHtml(e){var n=""+e;var r=t.exec(n);if(!r){return n}var i;var o="";var a=0;var s=0;for(a=r.index;a<n.length;a++){switch(n.charCodeAt(a)){case 34:i="&quot;";break;case 38:i="&amp;";break;case 39:i="&#39;";break;case 60:i="&lt;";break;case 62:i="&gt;";break;default:continue}if(s!==a){o+=n.substring(s,a)}s=a+1;o+=i}return s!==a?o+n.substring(s,a):o}},1699:function(e){"use strict";e.exports=function(e){var t=e._SomePromiseArray;function any(e){var n=new t(e);var r=n.promise();n.setHowMany(1);n.setUnwrap();n.init();return r}e.any=function(e){return any(e)};e.prototype.any=function(){return any(this)}}},1703:function(e,t,n){"use strict";n(9063);const r=n(649).inherits;const i=n(2012);const o=n(4859).EventEmitter;e.exports=Agent;function isAgent(e){return e&&typeof e.addRequest==="function"}function Agent(e,t){if(!(this instanceof Agent)){return new Agent(e,t)}o.call(this);this._promisifiedCallback=false;let n=t;if("function"===typeof e){this.callback=e}else if(e){n=e}this.timeout=n&&n.timeout||null;this.options=n}r(Agent,o);Agent.prototype.callback=function callback(e,t){throw new Error('"agent-base" has no default implementation, you must subclass and override `callback()`')};Agent.prototype.addRequest=function addRequest(e,t){const n=Object.assign({},t);if(null==n.host){n.host="localhost"}if(null==n.port){n.port=n.secureEndpoint?443:80}const r=Object.assign({},this.options,n);if(r.host&&r.path){delete r.path}delete r.agent;delete r.hostname;delete r._defaultAgent;delete r.defaultPort;delete r.createConnection;e._last=true;e.shouldKeepAlive=false;let o;let a=false;const s=this.timeout;const c=this.freeSocket;function onerror(t){if(e._hadError)return;e.emit("error",t);e._hadError=true}function ontimeout(){o=null;a=true;const e=new Error('A "socket" was not created for HTTP request before '+s+"ms");e.code="ETIMEOUT";onerror(e)}function callbackError(e){if(a)return;if(o!=null){clearTimeout(o);o=null}onerror(e)}function onsocket(t){if(a)return;if(o!=null){clearTimeout(o);o=null}if(isAgent(t)){t.addRequest(e,r)}else if(t){function onfree(){c(t,r)}t.on("free",onfree);e.onSocket(t)}else{const t=new Error("no Duplex stream was returned to agent-base for `"+e.method+" "+e.path+"`");onerror(t)}}if(!this._promisifiedCallback&&this.callback.length>=3){this.callback=i(this.callback,this);this._promisifiedCallback=true}if(s>0){o=setTimeout(ontimeout,s)}try{Promise.resolve(this.callback(e,r)).then(onsocket,callbackError)}catch(e){Promise.reject(e).catch(callbackError)}};Agent.prototype.freeSocket=function freeSocket(e,t){e.destroy()}},1704:function(e,t,n){var r=n(649);var i=n(9544);var o=n(1471);var a=n(7063);e.exports=Prompt;function Prompt(){return o.apply(this,arguments)}r.inherits(Prompt,o);Prompt.prototype._run=function(e){this.done=e;var t=a(this.rl);var n=t.line.map(this.filterInput.bind(this));var r=this.handleSubmitEvents(n);r.success.forEach(this.onEnd.bind(this));r.error.forEach(this.onError.bind(this));t.keypress.takeUntil(r.success).forEach(this.onKeypress.bind(this));this.render();return this};Prompt.prototype.render=function(e){var t="";var n=this.getQuestion();if(this.status==="answered"){n+=i.cyan(this.answer)}else{n+=this.rl.line}if(e){t=i.red(">> ")+e}this.screen.render(n,t)};Prompt.prototype.filterInput=function(e){if(!e){return this.opt.default==null?"":this.opt.default}return e};Prompt.prototype.onEnd=function(e){this.answer=e.value;this.status="answered";this.render();this.screen.done();this.done(e.value)};Prompt.prototype.onError=function(e){this.render(e.isValid)};Prompt.prototype.onKeypress=function(){this.render()}},1721:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5897);const o=n(2617);const a=n(1908);const s=n(8975).pathExists;function createFile(e,t){function makeFile(){o.writeFile(e,"",e=>{if(e)return t(e);t()})}o.stat(e,(n,r)=>{if(!n&&r.isFile())return t();const o=i.dirname(e);s(o,(e,n)=>{if(e)return t(e);if(n)return makeFile();a.mkdirs(o,e=>{if(e)return t(e);makeFile()})})})}function createFileSync(e){let t;try{t=o.statSync(e)}catch(e){}if(t&&t.isFile())return;const n=i.dirname(e);if(!o.existsSync(n)){a.mkdirsSync(n)}o.writeFileSync(e,"")}e.exports={createFile:r(createFile),createFileSync:createFileSync}},1722:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(1694));function error_base(e){let t='<!DOCTYPE html><html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#000"> <title>'+e.http_status_code+": "+i.default(e.http_status_description)+'</title> <style> html { font-size: 62.5%; box-sizing: border-box } *, ::after, ::before { box-sizing: inherit } body { font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif; font-size: 1.6rem; line-height: 1.65; word-break: break-word; font-kerning: auto; font-variant: normal; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; hyphens: auto; height: 100vh; max-height: 100vh; margin: 0 } ::selection { background: #79FFE1; } ::-moz-selection { background: #79FFE1; } a { cursor: pointer; color: #0070f3; text-decoration: none; transition: all .2s ease; border-bottom: 1px solid transparent } a:hover { border-bottom: 1px solid #0070f3 } ul { padding: 0; margin-left: 1.5em; list-style-type: none } li { margin-bottom: 10px } ul li:before { content: \'\\02013\' } li:before { display: inline-block; color: #ccc; position: absolute; margin-left: -18px; transition: color .2s ease } code { font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif; font-size: .92em } code:after, code:before { content: \'`\' } .container { display: flex; justify-content: center; flex-direction: column; min-height: 100vh } main { max-width: 80rem; padding: 4rem 6rem; margin: auto } ul { margin-bottom: 32px } .error-title { font-size: 2rem; border-left: 2px solid #ff0080; padding-left: 22px; line-height: 1.5; margin-bottom: 24px; font-weight: 500 } main p { color: #333 } .devinfo-container { border: 1px solid #ddd; border-radius: 4px; padding: 2rem; display: flex; flex-direction: column; margin-bottom: 32px } .error-code { margin: 0; font-size: 1.6rem; color: #000; margin-bottom: 1.6rem } .devinfo-line { color: #333 } .devinfo-line code, code, li { color: #000 } .devinfo-line:not(:last-child) { margin-bottom: 8px } .docs-link, .contact-link { font-weight: 500 } header, footer, footer a { display: flex; justify-content: center; align-items: center } header, footer { min-height: 100px; height: 100px; } header { border-bottom: 1px solid #eaeaea; } header h1 { font-size: 1.8rem; margin: 0; font-weight: 500; } header p { font-size: 1.3rem; margin: 0; font-weight: 500; } .header-item { display: flex; padding: 0 2rem; margin: 2rem 0; text-decoration: line-through; color: #999; } .header-item.active { color: #ff0080; text-decoration: none; } .header-item.first { border-right: 1px solid #eaeaea; } .header-item-content { display: flex; flex-direction: column; } .header-item-icon { margin-right: 1rem; margin-top: 0.6rem; } footer { border-top: 1px solid #eaeaea; } footer a { color: #000 } footer a:hover { border-bottom-color: transparent } footer svg { margin-left: .8rem } @media (max-width:500px) { .devinfo-container .devinfo-line { display: flex; flex-direction: column } .devinfo-container .devinfo-line code { margin-top: .4rem } .devinfo-container .devinfo-line:not(:last-child) { margin-bottom: 1.6rem } .devinfo-container { margin-bottom: 0; } header { flex-direction: column; height: auto; min-height: auto; align-items: flex-start; } .header-item.first { border-right: none; margin-bottom: 0; } main { padding: 1rem 2rem; } body { font-size: 1.4rem; line-height: 1.55; } } </style> </head> <body> <div class="container"> '+e.view+' <footer> <a href="https://zeit.co" target="_blank" rel="noopener noreferrer">Powered by <svg xmlns="http://www.w3.org/2000/svg" width="82" height="16" fill="none"> <path fill="url(#paint0_linear)" d="M9.01831 0l9.01829 16H0L9.01831 0z"/> <path fill="#333" fill-rule="evenodd" d="M51.6336 12.0284h-6.4918V2.05194h6.4918v1.2559h-5.0237v3.0071h4.3692v1.2559h-4.3692v3.20166h5.0237v1.2559zm-14.0626 0h-7.2347v-1.0967l5.342-7.62385h-5.2536v-1.2559h7.0579v1.09671l-5.342 7.62384h5.4304v1.2559zm21.8809 0h6.3326v-1.2559h-2.4234V3.30784h2.4234v-1.2559h-6.3326v1.2559h2.4411v7.46466h-2.4411v1.2559zm18.2195 0h-1.4682V3.30784h-3.3609v-1.2559h8.2253v1.2559h-3.3962v8.72056z" clip-rule="evenodd"/> <defs> <linearGradient id="paint0_linear" x1="28.0221" x2="16.1889" y1="22.9909" y2="8.56865" gradientUnits="userSpaceOnUse"> <stop stop-color="#fff"/> <stop offset="1"/> </linearGradient> </defs> </svg> </a> </footer> </div> </body></html>';return t}t.default=error_base},1725:function(e,t){(function(e,n){const r=true?t:undefined;n(r);if(typeof define=="function"&&define.amd){define("lru",r)}})(this,function(e){const t=Symbol("newer");const n=Symbol("older");function LRUMap(e,t){if(typeof e!=="number"){t=e;e=0}this.size=0;this.limit=e;this.oldest=this.newest=undefined;this._keymap=new Map;if(t){this.assign(t);if(e<1){this.limit=this.size}}}e.LRUMap=LRUMap;function Entry(e,r){this.key=e;this.value=r;this[t]=undefined;this[n]=undefined}LRUMap.prototype._markEntryAsUsed=function(e){if(e===this.newest){return}if(e[t]){if(e===this.oldest){this.oldest=e[t]}e[t][n]=e[n]}if(e[n]){e[n][t]=e[t]}e[t]=undefined;e[n]=this.newest;if(this.newest){this.newest[t]=e}this.newest=e};LRUMap.prototype.assign=function(e){let r,i=this.limit||Number.MAX_VALUE;this._keymap.clear();let o=e[Symbol.iterator]();for(let e=o.next();!e.done;e=o.next()){let o=new Entry(e.value[0],e.value[1]);this._keymap.set(o.key,o);if(!r){this.oldest=o}else{r[t]=o;o[n]=r}r=o;if(i--==0){throw new Error("overflow")}}this.newest=r;this.size=this._keymap.size};LRUMap.prototype.get=function(e){var t=this._keymap.get(e);if(!t)return;this._markEntryAsUsed(t);return t.value};LRUMap.prototype.set=function(e,r){var i=this._keymap.get(e);if(i){i.value=r;this._markEntryAsUsed(i);return this}this._keymap.set(e,i=new Entry(e,r));if(this.newest){this.newest[t]=i;i[n]=this.newest}else{this.oldest=i}this.newest=i;++this.size;if(this.size>this.limit){this.shift()}return this};LRUMap.prototype.shift=function(){var e=this.oldest;if(e){if(this.oldest[t]){this.oldest=this.oldest[t];this.oldest[n]=undefined}else{this.oldest=undefined;this.newest=undefined}e[t]=e[n]=undefined;this._keymap.delete(e.key);--this.size;return[e.key,e.value]}};LRUMap.prototype.find=function(e){let t=this._keymap.get(e);return t?t.value:undefined};LRUMap.prototype.has=function(e){return this._keymap.has(e)};LRUMap.prototype["delete"]=function(e){var r=this._keymap.get(e);if(!r)return;this._keymap.delete(r.key);if(r[t]&&r[n]){r[n][t]=r[t];r[t][n]=r[n]}else if(r[t]){r[t][n]=undefined;this.oldest=r[t]}else if(r[n]){r[n][t]=undefined;this.newest=r[n]}else{this.oldest=this.newest=undefined}this.size--;return r.value};LRUMap.prototype.clear=function(){this.oldest=this.newest=undefined;this.size=0;this._keymap.clear()};function EntryIterator(e){this.entry=e}EntryIterator.prototype[Symbol.iterator]=function(){return this};EntryIterator.prototype.next=function(){let e=this.entry;if(e){this.entry=e[t];return{done:false,value:[e.key,e.value]}}else{return{done:true,value:undefined}}};function KeyIterator(e){this.entry=e}KeyIterator.prototype[Symbol.iterator]=function(){return this};KeyIterator.prototype.next=function(){let e=this.entry;if(e){this.entry=e[t];return{done:false,value:e.key}}else{return{done:true,value:undefined}}};function ValueIterator(e){this.entry=e}ValueIterator.prototype[Symbol.iterator]=function(){return this};ValueIterator.prototype.next=function(){let e=this.entry;if(e){this.entry=e[t];return{done:false,value:e.value}}else{return{done:true,value:undefined}}};LRUMap.prototype.keys=function(){return new KeyIterator(this.oldest)};LRUMap.prototype.values=function(){return new ValueIterator(this.oldest)};LRUMap.prototype.entries=function(){return this};LRUMap.prototype[Symbol.iterator]=function(){return new EntryIterator(this.oldest)};LRUMap.prototype.forEach=function(e,n){if(typeof n!=="object"){n=this}let r=this.oldest;while(r){e.call(n,r.value,r.key,this);r=r[t]}};LRUMap.prototype.toJSON=function(){var e=new Array(this.size),n=0,r=this.oldest;while(r){e[n++]={key:r.key,value:r.value};r=r[t]}return e};LRUMap.prototype.toString=function(){var e="",n=this.oldest;while(n){e+=String(n.key)+":"+n.value;n=n[t];if(n){e+=" < "}}return e}})},1737:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});function _interopDefault(e){return e&&typeof e==="object"&&"default"in e?e["default"]:e}var r=_interopDefault(n(6886));var i=_interopDefault(n(4219));var o=_interopDefault(n(774));var a=_interopDefault(n(2307));var s=_interopDefault(n(2673));const c=r.Readable;const u=Symbol("buffer");const l=Symbol("type");class Blob{constructor(){this[l]="";const e=arguments[0];const t=arguments[1];const n=[];let r=0;if(e){const t=e;const i=Number(t.length);for(let e=0;e<i;e++){const i=t[e];let o;if(i instanceof Buffer){o=i}else if(ArrayBuffer.isView(i)){o=Buffer.from(i.buffer,i.byteOffset,i.byteLength)}else if(i instanceof ArrayBuffer){o=Buffer.from(i)}else if(i instanceof Blob){o=i[u]}else{o=Buffer.from(typeof i==="string"?i:String(i))}r+=o.length;n.push(o)}}this[u]=Buffer.concat(n);let i=t&&t.type!==undefined&&String(t.type).toLowerCase();if(i&&!/[^\u0020-\u007E]/.test(i)){this[l]=i}}get size(){return this[u].length}get type(){return this[l]}text(){return Promise.resolve(this[u].toString())}arrayBuffer(){const e=this[u];const t=e.buffer.slice(e.byteOffset,e.byteOffset+e.byteLength);return Promise.resolve(t)}stream(){const e=new c;e._read=function(){};e.push(this[u]);e.push(null);return e}toString(){return"[object Blob]"}slice(){const e=this.size;const t=arguments[0];const n=arguments[1];let r,i;if(t===undefined){r=0}else if(t<0){r=Math.max(e+t,0)}else{r=Math.min(t,e)}if(n===undefined){i=e}else if(n<0){i=Math.max(e+n,0)}else{i=Math.min(n,e)}const o=Math.max(i-r,0);const a=this[u];const s=a.slice(r,r+o);const c=new Blob([],{type:arguments[2]});c[u]=s;return c}}Object.defineProperties(Blob.prototype,{size:{enumerable:true},type:{enumerable:true},slice:{enumerable:true}});Object.defineProperty(Blob.prototype,Symbol.toStringTag,{value:"Blob",writable:false,enumerable:false,configurable:true});function FetchError(e,t,n){Error.call(this,e);this.message=e;this.type=t;if(n){this.code=this.errno=n.code}Error.captureStackTrace(this,this.constructor)}FetchError.prototype=Object.create(Error.prototype);FetchError.prototype.constructor=FetchError;FetchError.prototype.name="FetchError";let f;try{f=n(3495).convert}catch(e){}const p=Symbol("Body internals");const d=r.PassThrough;function Body(e){var t=this;var n=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},i=n.size;let o=i===undefined?0:i;var a=n.timeout;let s=a===undefined?0:a;if(e==null){e=null}else if(isURLSearchParams(e)){e=Buffer.from(e.toString())}else if(isBlob(e)) ;else if(Buffer.isBuffer(e)) ;else if(Object.prototype.toString.call(e)==="[object ArrayBuffer]"){e=Buffer.from(e)}else if(ArrayBuffer.isView(e)){e=Buffer.from(e.buffer,e.byteOffset,e.byteLength)}else if(e instanceof r) ;else{e=Buffer.from(String(e))}this[p]={body:e,disturbed:false,error:null};this.size=o;this.timeout=s;if(e instanceof r){e.on("error",function(e){const n=e.name==="AbortError"?e:new FetchError(`Invalid response body while trying to fetch ${t.url}: ${e.message}`,"system",e);t[p].error=n})}}Body.prototype={get body(){return this[p].body},get bodyUsed(){return this[p].disturbed},arrayBuffer(){return consumeBody.call(this).then(function(e){return e.buffer.slice(e.byteOffset,e.byteOffset+e.byteLength)})},blob(){let e=this.headers&&this.headers.get("content-type")||"";return consumeBody.call(this).then(function(t){return Object.assign(new Blob([],{type:e.toLowerCase()}),{[u]:t})})},json(){var e=this;return consumeBody.call(this).then(function(t){try{return JSON.parse(t.toString())}catch(t){return Body.Promise.reject(new FetchError(`invalid json response body at ${e.url} reason: ${t.message}`,"invalid-json"))}})},text(){return consumeBody.call(this).then(function(e){return e.toString()})},buffer(){return consumeBody.call(this)},textConverted(){var e=this;return consumeBody.call(this).then(function(t){return convertBody(t,e.headers)})}};Object.defineProperties(Body.prototype,{body:{enumerable:true},bodyUsed:{enumerable:true},arrayBuffer:{enumerable:true},blob:{enumerable:true},json:{enumerable:true},text:{enumerable:true}});Body.mixIn=function(e){for(const t of Object.getOwnPropertyNames(Body.prototype)){if(!(t in e)){const n=Object.getOwnPropertyDescriptor(Body.prototype,t);Object.defineProperty(e,t,n)}}};function consumeBody(){var e=this;if(this[p].disturbed){return Body.Promise.reject(new TypeError(`body used already for: ${this.url}`))}this[p].disturbed=true;if(this[p].error){return Body.Promise.reject(this[p].error)}let t=this.body;if(t===null){return Body.Promise.resolve(Buffer.alloc(0))}if(isBlob(t)){t=t.stream()}if(Buffer.isBuffer(t)){return Body.Promise.resolve(t)}if(!(t instanceof r)){return Body.Promise.resolve(Buffer.alloc(0))}let n=[];let i=0;let o=false;return new Body.Promise(function(r,a){let s;if(e.timeout){s=setTimeout(function(){o=true;a(new FetchError(`Response timeout while trying to fetch ${e.url} (over ${e.timeout}ms)`,"body-timeout"))},e.timeout)}t.on("error",function(t){if(t.name==="AbortError"){o=true;a(t)}else{a(new FetchError(`Invalid response body while trying to fetch ${e.url}: ${t.message}`,"system",t))}});t.on("data",function(t){if(o||t===null){return}if(e.size&&i+t.length>e.size){o=true;a(new FetchError(`content size at ${e.url} over limit: ${e.size}`,"max-size"));return}i+=t.length;n.push(t)});t.on("end",function(){if(o){return}clearTimeout(s);try{r(Buffer.concat(n,i))}catch(t){a(new FetchError(`Could not create Buffer from response body for ${e.url}: ${t.message}`,"system",t))}})})}function convertBody(e,t){if(typeof f!=="function"){throw new Error("The package `encoding` must be installed to use the textConverted() function")}const n=t.get("content-type");let r="utf-8";let i,o;if(n){i=/charset=([^;]*)/i.exec(n)}o=e.slice(0,1024).toString();if(!i&&o){i=/<meta.+?charset=(['"])(.+?)\1/i.exec(o)}if(!i&&o){i=/<meta[\s]+?http-equiv=(['"])content-type\1[\s]+?content=(['"])(.+?)\2/i.exec(o);if(i){i=/charset=(.*)/i.exec(i.pop())}}if(!i&&o){i=/<\?xml.+?encoding=(['"])(.+?)\1/i.exec(o)}if(i){r=i.pop();if(r==="gb2312"||r==="gbk"){r="gb18030"}}return f(e,"UTF-8",r).toString()}function isURLSearchParams(e){if(typeof e!=="object"||typeof e.append!=="function"||typeof e.delete!=="function"||typeof e.get!=="function"||typeof e.getAll!=="function"||typeof e.has!=="function"||typeof e.set!=="function"){return false}return e.constructor.name==="URLSearchParams"||Object.prototype.toString.call(e)==="[object URLSearchParams]"||typeof e.sort==="function"}function isBlob(e){return typeof e==="object"&&typeof e.arrayBuffer==="function"&&typeof e.type==="string"&&typeof e.stream==="function"&&typeof e.constructor==="function"&&typeof e.constructor.name==="string"&&/^(Blob|File)$/.test(e.constructor.name)&&/^(Blob|File)$/.test(e[Symbol.toStringTag])}function clone(e){let t,n;let i=e.body;if(e.bodyUsed){throw new Error("cannot clone body after it is used")}if(i instanceof r&&typeof i.getBoundary!=="function"){t=new d;n=new d;i.pipe(t);i.pipe(n);e[p].body=t;i=n}return i}function extractContentType(e){if(e===null){return null}else if(typeof e==="string"){return"text/plain;charset=UTF-8"}else if(isURLSearchParams(e)){return"application/x-www-form-urlencoded;charset=UTF-8"}else if(isBlob(e)){return e.type||null}else if(Buffer.isBuffer(e)){return null}else if(Object.prototype.toString.call(e)==="[object ArrayBuffer]"){return null}else if(ArrayBuffer.isView(e)){return null}else if(typeof e.getBoundary==="function"){return`multipart/form-data;boundary=${e.getBoundary()}`}else if(e instanceof r){return null}else{return"text/plain;charset=UTF-8"}}function getTotalBytes(e){const t=e.body;if(t===null){return 0}else if(isBlob(t)){return t.size}else if(Buffer.isBuffer(t)){return t.length}else if(t&&typeof t.getLengthSync==="function"){if(t._lengthRetrievers&&t._lengthRetrievers.length==0||t.hasKnownLength&&t.hasKnownLength()){return t.getLengthSync()}return null}else{return null}}function writeToStream(e,t){const n=t.body;if(n===null){e.end()}else if(isBlob(n)){n.stream().pipe(e)}else if(Buffer.isBuffer(n)){e.write(n);e.end()}else{n.pipe(e)}}Body.Promise=global.Promise;const h=/[^\^_`a-zA-Z\-0-9!#$%&'*+.|~]/;const m=/[^\t\x20-\x7e\x80-\xff]/;function validateName(e){e=`${e}`;if(h.test(e)||e===""){throw new TypeError(`${e} is not a legal HTTP header name`)}}function validateValue(e){e=`${e}`;if(m.test(e)){throw new TypeError(`${e} is not a legal HTTP header value`)}}function find(e,t){t=t.toLowerCase();for(const n in e){if(n.toLowerCase()===t){return n}}return undefined}const v=Symbol("map");class Headers{constructor(){let e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:undefined;this[v]=Object.create(null);if(e instanceof Headers){const t=e.raw();const n=Object.keys(t);for(const e of n){for(const n of t[e]){this.append(e,n)}}return}if(e==null) ;else if(typeof e==="object"){const t=e[Symbol.iterator];if(t!=null){if(typeof t!=="function"){throw new TypeError("Header pairs must be iterable")}const n=[];for(const t of e){if(typeof t!=="object"||typeof t[Symbol.iterator]!=="function"){throw new TypeError("Each header pair must be iterable")}n.push(Array.from(t))}for(const e of n){if(e.length!==2){throw new TypeError("Each header pair must be a name/value tuple")}this.append(e[0],e[1])}}else{for(const t of Object.keys(e)){const n=e[t];this.append(t,n)}}}else{throw new TypeError("Provided initializer must be an object")}}get(e){e=`${e}`;validateName(e);const t=find(this[v],e);if(t===undefined){return null}return this[v][t].join(", ")}forEach(e){let t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:undefined;let n=getHeaders(this);let r=0;while(r<n.length){var i=n[r];const o=i[0],a=i[1];e.call(t,a,o,this);n=getHeaders(this);r++}}set(e,t){e=`${e}`;t=`${t}`;validateName(e);validateValue(t);const n=find(this[v],e);this[v][n!==undefined?n:e]=[t]}append(e,t){e=`${e}`;t=`${t}`;validateName(e);validateValue(t);const n=find(this[v],e);if(n!==undefined){this[v][n].push(t)}else{this[v][e]=[t]}}has(e){e=`${e}`;validateName(e);return find(this[v],e)!==undefined}delete(e){e=`${e}`;validateName(e);const t=find(this[v],e);if(t!==undefined){delete this[v][t]}}raw(){return this[v]}keys(){return createHeadersIterator(this,"key")}values(){return createHeadersIterator(this,"value")}[Symbol.iterator](){return createHeadersIterator(this,"key+value")}}Headers.prototype.entries=Headers.prototype[Symbol.iterator];Object.defineProperty(Headers.prototype,Symbol.toStringTag,{value:"Headers",writable:false,enumerable:false,configurable:true});Object.defineProperties(Headers.prototype,{get:{enumerable:true},forEach:{enumerable:true},set:{enumerable:true},append:{enumerable:true},has:{enumerable:true},delete:{enumerable:true},keys:{enumerable:true},values:{enumerable:true},entries:{enumerable:true}});function getHeaders(e){let t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:"key+value";const n=Object.keys(e[v]).sort();return n.map(t==="key"?function(e){return e.toLowerCase()}:t==="value"?function(t){return e[v][t].join(", ")}:function(t){return[t.toLowerCase(),e[v][t].join(", ")]})}const g=Symbol("internal");function createHeadersIterator(e,t){const n=Object.create(y);n[g]={target:e,kind:t,index:0};return n}const y=Object.setPrototypeOf({next(){if(!this||Object.getPrototypeOf(this)!==y){throw new TypeError("Value of `this` is not a HeadersIterator")}var e=this[g];const t=e.target,n=e.kind,r=e.index;const i=getHeaders(t,n);const o=i.length;if(r>=o){return{value:undefined,done:true}}this[g].index=r+1;return{value:i[r],done:false}}},Object.getPrototypeOf(Object.getPrototypeOf([][Symbol.iterator]())));Object.defineProperty(y,Symbol.toStringTag,{value:"HeadersIterator",writable:false,enumerable:false,configurable:true});function exportNodeCompatibleHeaders(e){const t=Object.assign({__proto__:null},e[v]);const n=find(e[v],"Host");if(n!==undefined){t[n]=t[n][0]}return t}function createHeadersLenient(e){const t=new Headers;for(const n of Object.keys(e)){if(h.test(n)){continue}if(Array.isArray(e[n])){for(const r of e[n]){if(m.test(r)){continue}if(t[v][n]===undefined){t[v][n]=[r]}else{t[v][n].push(r)}}}else if(!m.test(e[n])){t[v][n]=[e[n]]}}return t}const b=Symbol("Response internals");const w=i.STATUS_CODES;class Response{constructor(){let e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;let t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};Body.call(this,e,t);const n=t.status||200;const r=new Headers(t.headers);if(e!=null&&!r.has("Content-Type")){const t=extractContentType(e);if(t){r.append("Content-Type",t)}}this[b]={url:t.url,status:n,statusText:t.statusText||w[n],headers:r,counter:t.counter}}get url(){return this[b].url||""}get status(){return this[b].status}get ok(){return this[b].status>=200&&this[b].status<300}get redirected(){return this[b].counter>0}get statusText(){return this[b].statusText}get headers(){return this[b].headers}clone(){return new Response(clone(this),{url:this.url,status:this.status,statusText:this.statusText,headers:this.headers,ok:this.ok,redirected:this.redirected})}}Body.mixIn(Response.prototype);Object.defineProperties(Response.prototype,{url:{enumerable:true},status:{enumerable:true},ok:{enumerable:true},redirected:{enumerable:true},statusText:{enumerable:true},headers:{enumerable:true},clone:{enumerable:true}});Object.defineProperty(Response.prototype,Symbol.toStringTag,{value:"Response",writable:false,enumerable:false,configurable:true});const x=Symbol("Request internals");const k=o.parse;const j=o.format;const S="destroy"in r.Readable.prototype;function isRequest(e){return typeof e==="object"&&typeof e[x]==="object"}function isAbortSignal(e){const t=e&&typeof e==="object"&&Object.getPrototypeOf(e);return!!(t&&t.constructor.name==="AbortSignal")}class Request{constructor(e){let t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};let n;if(!isRequest(e)){if(e&&e.href){n=k(e.href)}else{n=k(`${e}`)}e={}}else{n=k(e.url)}let r=t.method||e.method||"GET";r=r.toUpperCase();if((t.body!=null||isRequest(e)&&e.body!==null)&&(r==="GET"||r==="HEAD")){throw new TypeError("Request with GET/HEAD method cannot have body")}let i=t.body!=null?t.body:isRequest(e)&&e.body!==null?clone(e):null;Body.call(this,i,{timeout:t.timeout||e.timeout||0,size:t.size||e.size||0});const o=new Headers(t.headers||e.headers||{});if(i!=null&&!o.has("Content-Type")){const e=extractContentType(i);if(e){o.append("Content-Type",e)}}let a=isRequest(e)?e.signal:null;if("signal"in t)a=t.signal;if(a!=null&&!isAbortSignal(a)){throw new TypeError("Expected signal to be an instanceof AbortSignal")}this[x]={method:r,redirect:t.redirect||e.redirect||"follow",headers:o,parsedURL:n,signal:a};this.follow=t.follow!==undefined?t.follow:e.follow!==undefined?e.follow:20;this.compress=t.compress!==undefined?t.compress:e.compress!==undefined?e.compress:true;this.counter=t.counter||e.counter||0;this.agent=t.agent||e.agent}get method(){return this[x].method}get url(){return j(this[x].parsedURL)}get headers(){return this[x].headers}get redirect(){return this[x].redirect}get signal(){return this[x].signal}clone(){return new Request(this)}}Body.mixIn(Request.prototype);Object.defineProperty(Request.prototype,Symbol.toStringTag,{value:"Request",writable:false,enumerable:false,configurable:true});Object.defineProperties(Request.prototype,{method:{enumerable:true},url:{enumerable:true},headers:{enumerable:true},redirect:{enumerable:true},clone:{enumerable:true},signal:{enumerable:true}});function getNodeRequestOptions(e){const t=e[x].parsedURL;const n=new Headers(e[x].headers);if(!n.has("Accept")){n.set("Accept","*/*")}if(!t.protocol||!t.hostname){throw new TypeError("Only absolute URLs are supported")}if(!/^https?:$/.test(t.protocol)){throw new TypeError("Only HTTP(S) protocols are supported")}if(e.signal&&e.body instanceof r.Readable&&!S){throw new Error("Cancellation of streamed requests with AbortSignal is not supported in node < 8")}let i=null;if(e.body==null&&/^(POST|PUT)$/i.test(e.method)){i="0"}if(e.body!=null){const t=getTotalBytes(e);if(typeof t==="number"){i=String(t)}}if(i){n.set("Content-Length",i)}if(!n.has("User-Agent")){n.set("User-Agent","node-fetch/1.0 (+https://github.com/bitinn/node-fetch)")}if(e.compress&&!n.has("Accept-Encoding")){n.set("Accept-Encoding","gzip,deflate")}let o=e.agent;if(typeof o==="function"){o=o(t)}if(!n.has("Connection")&&!o){n.set("Connection","close")}return Object.assign({},t,{method:e.method,headers:exportNodeCompatibleHeaders(n),agent:o})}function AbortError(e){Error.call(this,e);this.type="aborted";this.message=e;Error.captureStackTrace(this,this.constructor)}AbortError.prototype=Object.create(Error.prototype);AbortError.prototype.constructor=AbortError;AbortError.prototype.name="AbortError";const E=r.PassThrough;const _=o.resolve;function fetch(e,t){if(!fetch.Promise){throw new Error("native promise missing, set fetch.Promise to your favorite alternative")}Body.Promise=fetch.Promise;return new fetch.Promise(function(n,o){const c=new Request(e,t);const u=getNodeRequestOptions(c);const l=(u.protocol==="https:"?a:i).request;const f=c.signal;let p=null;const d=function abort(){let e=new AbortError("The user aborted a request.");o(e);if(c.body&&c.body instanceof r.Readable){c.body.destroy(e)}if(!p||!p.body)return;p.body.emit("error",e)};if(f&&f.aborted){d();return}const h=function abortAndFinalize(){d();finalize()};const m=l(u);let v;if(f){f.addEventListener("abort",h)}function finalize(){m.abort();if(f)f.removeEventListener("abort",h);clearTimeout(v)}if(c.timeout){m.once("socket",function(e){v=setTimeout(function(){o(new FetchError(`network timeout at: ${c.url}`,"request-timeout"));finalize()},c.timeout)})}m.on("error",function(e){o(new FetchError(`request to ${c.url} failed, reason: ${e.message}`,"system",e));finalize()});m.on("response",function(e){clearTimeout(v);const t=createHeadersLenient(e.headers);if(fetch.isRedirect(e.statusCode)){const r=t.get("Location");const i=r===null?null:_(c.url,r);switch(c.redirect){case"error":o(new FetchError(`redirect mode is set to error: ${c.url}`,"no-redirect"));finalize();return;case"manual":if(i!==null){try{t.set("Location",i)}catch(e){o(e)}}break;case"follow":if(i===null){break}if(c.counter>=c.follow){o(new FetchError(`maximum redirect reached at: ${c.url}`,"max-redirect"));finalize();return}const r={headers:new Headers(c.headers),follow:c.follow,counter:c.counter+1,agent:c.agent,compress:c.compress,method:c.method,body:c.body,signal:c.signal,timeout:c.timeout};if(e.statusCode!==303&&c.body&&getTotalBytes(c)===null){o(new FetchError("Cannot follow redirect with body being a readable stream","unsupported-redirect"));finalize();return}if(e.statusCode===303||(e.statusCode===301||e.statusCode===302)&&c.method==="POST"){r.method="GET";r.body=undefined;r.headers.delete("content-length")}n(fetch(new Request(i,r)));finalize();return}}e.once("end",function(){if(f)f.removeEventListener("abort",h)});let r=e.pipe(new E);const i={url:c.url,status:e.statusCode,statusText:e.statusMessage,headers:t,size:c.size,timeout:c.timeout,counter:c.counter};const a=t.get("Content-Encoding");if(!c.compress||c.method==="HEAD"||a===null||e.statusCode===204||e.statusCode===304){p=new Response(r,i);n(p);return}const u={flush:s.Z_SYNC_FLUSH,finishFlush:s.Z_SYNC_FLUSH};if(a=="gzip"||a=="x-gzip"){r=r.pipe(s.createGunzip(u));p=new Response(r,i);n(p);return}if(a=="deflate"||a=="x-deflate"){const t=e.pipe(new E);t.once("data",function(e){if((e[0]&15)===8){r=r.pipe(s.createInflate())}else{r=r.pipe(s.createInflateRaw())}p=new Response(r,i);n(p)});return}if(a=="br"&&typeof s.createBrotliDecompress==="function"){r=r.pipe(s.createBrotliDecompress());p=new Response(r,i);n(p);return}p=new Response(r,i);n(p)});writeToStream(m,c)})}fetch.isRedirect=function(e){return e===301||e===302||e===303||e===307||e===308};fetch.Promise=global.Promise;e.exports=t=fetch;Object.defineProperty(t,"__esModule",{value:true});t.default=t;t.Headers=Headers;t.Request=Request;t.Response=Response;t.FetchError=FetchError},1758:function(e){"use strict";e.exports=function(){return/[\u001b\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-PRZcf-nqry=><]/g}},1767:function(e,t,n){"use strict";var r=n(8901);var i=n(9415);var o=n(5798);var a=n(1253);var s=n(3651);function height(e){return e.split("\n").length}function lastLine(e){return r.last(e.split("\n"))}var c=e.exports=function(e){this.height=0;this.extraLinesUnderPrompt=0;this.rl=e};c.prototype.render=function(e,t){this.rl.output.unmute();this.clean(this.extraLinesUnderPrompt);var n=lastLine(e);var r=a(n);var o=r;if(this.rl.line.length){o=o.slice(0,-this.rl.line.length)}this.rl.setPrompt(o);var c=this.rl._getCursorPos();var u=this.normalizedCliWidth();e=forceLineReturn(e,u);if(t){t=forceLineReturn(t,u)}if(r.length%u===0){e+="\n"}var l=e+(t?"\n"+t:"");this.rl.output.write(l);var f=Math.floor(r.length/u)-c.rows;var p=f+(t?height(t):0);if(p>0){i.up(this.rl,p)}i.left(this.rl,s(lastLine(l)));i.right(this.rl,c.cols);this.extraLinesUnderPrompt=p;this.height=height(l);this.rl.output.mute()};c.prototype.clean=function(e){if(e>0){i.down(this.rl,e)}i.clearLine(this.rl,this.height)};c.prototype.done=function(){this.rl.setPrompt("");this.rl.output.unmute();this.rl.output.write("\n")};c.prototype.releaseCursor=function(){if(this.extraLinesUnderPrompt>0){i.down(this.rl,this.extraLinesUnderPrompt)}};c.prototype.normalizedCliWidth=function(){var e=o({defaultWidth:80,output:this.rl.output});if(process.platform==="win32"){return e-1}return e};function breakLines(e,t){var n=new RegExp("(?:(?:\\033[[0-9;]*m)*.?){1,"+t+"}","g");return e.map(function(e){var t=e.match(n);t.pop();return t||""})}function forceLineReturn(e,t){return r.flatten(breakLines(e.split("\n"),t)).join("\n")}},1768:function(e,t,n){var r=n(2617);var i=n(5897);var o=n(4406);function ncp(e,t,n,a){if(!a){a=n;n={}}var s=process.cwd();var c=i.resolve(s,e);var u=i.resolve(s,t);var l=n.filter;var f=n.transform;var p=n.overwrite;if(p===undefined)p=n.clobber;if(p===undefined)p=true;var d=n.errorOnExist;var h=n.dereference;var m=n.preserveTimestamps===true;var v=0;var g=0;var y=0;var b=false;startCopy(c);function startCopy(e){v++;if(l){if(l instanceof RegExp){console.warn("Warning: fs-extra: Passing a RegExp filter is deprecated, use a function");if(!l.test(e)){return doneOne(true)}}else if(typeof l==="function"){if(!l(e,t)){return doneOne(true)}}}return getStats(e)}function getStats(e){var t=h?r.stat:r.lstat;y++;t(e,function(t,n){if(t)return onError(t);var r={name:e,mode:n.mode,mtime:n.mtime,atime:n.atime,stats:n};if(n.isDirectory()){return onDir(r)}else if(n.isFile()||n.isCharacterDevice()||n.isBlockDevice()){return onFile(r)}else if(n.isSymbolicLink()){return onLink(e)}})}function onFile(e){var t=e.name.replace(c,u.replace("$","$$$$"));isWritable(t,function(n){if(n){copyFile(e,t)}else{if(p){rmFile(t,function(){copyFile(e,t)})}else if(d){onError(new Error(t+" already exists"))}else{doneOne()}}})}function copyFile(e,t){var n=r.createReadStream(e.name);var i=r.createWriteStream(t,{mode:e.mode});n.on("error",onError);i.on("error",onError);if(f){f(n,i,e)}else{i.on("open",function(){n.pipe(i)})}i.once("close",function(){r.chmod(t,e.mode,function(n){if(n)return onError(n);if(m){o.utimesMillis(t,e.atime,e.mtime,function(e){if(e)return onError(e);return doneOne()})}else{doneOne()}})})}function rmFile(e,t){r.unlink(e,function(e){if(e)return onError(e);return t()})}function onDir(e){var t=e.name.replace(c,u.replace("$","$$$$"));isWritable(t,function(n){if(n){return mkDir(e,t)}copyDir(e.name)})}function mkDir(e,t){r.mkdir(t,e.mode,function(n){if(n)return onError(n);r.chmod(t,e.mode,function(t){if(t)return onError(t);copyDir(e.name)})})}function copyDir(e){r.readdir(e,function(t,n){if(t)return onError(t);n.forEach(function(t){startCopy(i.join(e,t))});return doneOne()})}function onLink(e){var t=e.replace(c,u);r.readlink(e,function(e,n){if(e)return onError(e);checkLink(n,t)})}function checkLink(e,t){if(h){e=i.resolve(s,e)}isWritable(t,function(n){if(n){return makeLink(e,t)}r.readlink(t,function(n,r){if(n)return onError(n);if(h){r=i.resolve(s,r)}if(r===e){return doneOne()}return rmFile(t,function(){makeLink(e,t)})})})}function makeLink(e,t){r.symlink(e,t,function(e){if(e)return onError(e);return doneOne()})}function isWritable(e,t){r.lstat(e,function(e){if(e){if(e.code==="ENOENT")return t(true);return t(false)}return t(false)})}function onError(e){if(!b&&a!==undefined){b=true;return a(e)}}function doneOne(e){if(!e)y--;g++;if(v===g&&y===0){if(a!==undefined){return a(null)}}}}e.exports=ncp},1776:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9544));const o=r(n(2616));const a=r(n(4110));const s=["name","type","value"].map(e=>i.default.gray(e));function formatDNSTable(e,{extraSpace:t=""}={}){return o.default([s,...e],{align:["l","l","l"],hsep:" ".repeat(8),stringLength:a.default}).replace(/^(.*)/gm,`${t}$1`)}t.default=formatDNSTable},1780:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function uuid(){function s(e){return h(Math.random()*(1<<(e<<2))^Date.now()).slice(-e)}function h(e){return(e|0).toString(16)}return[s(4)+s(4),s(4),`4${s(3)}`,h(8|Math.random()*4)+s(3),Date.now().toString(16).slice(-10)+s(2)].join("-")}t.default=uuid},1781:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(635);var o=n(9726);var a=n(1390);var s=n(990);var c=n(51);var u=n(4316);var l=n(774);var f=n(2038);var p=2e3;function extractTransaction(e,t){try{var n=e;switch(t){case"path":{return n.route.path}case"handler":{return n.route.stack[0].name}case"methodPath":default:{var r=n.method.toUpperCase();var i=n.route.path;return r+"|"+i}}}catch(e){return undefined}}function extractRequestData(e){var t=e.headers||e.header||{};var n=e.method;var r=e.hostname||e.host||t.host||"<no host>";var i=e.protocol==="https"||e.secure||(e.socket||{}).encrypted?"https":"http";var o=e.originalUrl||e.url;var c=i+"://"+r+o;var u=l.parse(o||"",false).query;var f=s.parse(t.cookie||"");var p=e.body;if(n==="GET"||n==="HEAD"){if(typeof p==="undefined"){p="<unavailable>"}}if(p&&!a.isString(p)){p=JSON.stringify(a.normalize(p))}var d={cookies:f,data:p,headers:t,method:n,query_string:u,url:c};return d}var d=["id","username","email"];function extractUserData(e,t){var n={};var r=Array.isArray(t)?t:d;r.forEach(function(t){if({}.hasOwnProperty.call(e.user,t)){n[t]=e.user[t]}});var i=e.ip||e.connection&&e.connection.remoteAddress;if(i){n.ip_address=i}return n}function parseRequest(e,t,n){n=r.__assign({request:true,serverName:true,transaction:true,user:true,version:true},n);if(n.version){e.extra=r.__assign({},e.extra,{node:global.process.version})}if(n.request){e.request=r.__assign({},e.request,extractRequestData(t))}if(n.serverName){e.server_name=global.process.env.SENTRY_NAME||u.hostname()}if(n.user&&t.user){e.user=r.__assign({},e.user,extractUserData(t,n.user))}if(n.transaction&&!e.transaction){var i=extractTransaction(t,n.transaction);if(i){e.transaction=i}}return e}t.parseRequest=parseRequest;function requestHandler(e){return function sentryRequestMiddleware(t,n,r){if(e&&e.flushTimeout&&e.flushTimeout>0){var o=n.end;n.end=function(t,n,r){var i=this;f.flush(e.flushTimeout).then(function(){o.call(i,t,n,r)}).catch(function(e){a.logger.error(e)})}}var s=c.create();s.add(t);s.add(n);s.on("error",r);s.run(function(){i.getCurrentHub().configureScope(function(n){return n.addEventProcessor(function(n){return parseRequest(n,t,e)})});r()})}}t.requestHandler=requestHandler;function getStatusCodeFromResponse(e){var t=e.status||e.statusCode||e.status_code||e.output&&e.output.statusCode;return t?parseInt(t,10):500}function defaultShouldHandleError(e){var t=getStatusCodeFromResponse(e);return t>=500}function errorHandler(e){return function sentryErrorMiddleware(t,n,r,s){var c=e&&e.shouldHandleError||defaultShouldHandleError;if(c(t)){i.withScope(function(e){if(n.headers&&a.isString(n.headers["sentry-trace"])){var c=o.Span.fromTraceparent(n.headers["sentry-trace"]);e.setSpan(c)}var u=i.captureException(t);r.sentry=u;s(t)});return}s(t)}}t.errorHandler=errorHandler;function defaultOnFatalError(e){console.error(e&&e.stack?e.stack:e);var t=i.getCurrentHub().getClient();if(t===undefined){a.logger.warn("No NodeClient was defined, we are exiting the process now.");global.process.exit(1);return}var n=t.getOptions();var r=n&&n.shutdownTimeout&&n.shutdownTimeout>0&&n.shutdownTimeout||p;a.forget(t.close(r).then(function(e){if(!e){a.logger.warn("We reached the timeout for emptying the request buffer, still exiting now!")}global.process.exit(1)}))}t.defaultOnFatalError=defaultOnFatalError},1789:function(e){"use strict";e.exports=reach;const t={separator:".",strict:false,default:undefined};function reach(e,n,r){if(typeof n!=="string"){throw new TypeError(`Reach path must a string. Found ${n}.`)}const i=Object.assign({},t,r);const o=n.split(i.separator);let a=e;for(let e=0;e<o.length;++e){let t=o[e];if(t[0]==="-"&&Array.isArray(a)){t=t.slice(1,t.length);t=a.length-t}if(a===null||typeof a!=="object"&&typeof a!=="function"||!(t in a)){if(i.strict){throw new Error(`Invalid segment, ${t}, in reach path ${n}.`)}return i.default}a=a[t]}return a}},1804:function(e,t,n){var r=n(3320);t.operation=function(e){var n=t.timeouts(e);return new r(n,{forever:e&&e.forever,unref:e&&e.unref})};t.timeouts=function(e){if(e instanceof Array){return[].concat(e)}var t={retries:10,factor:2,minTimeout:1*1e3,maxTimeout:Infinity,randomize:false};for(var n in e){t[n]=e[n]}if(t.minTimeout>t.maxTimeout){throw new Error("minTimeout is greater than maxTimeout")}var r=[];for(var i=0;i<t.retries;i++){r.push(this.createTimeout(i,t))}if(e&&e.forever&&!r.length){r.push(this.createTimeout(i,t))}r.sort(function(e,t){return e-t});return r};t.createTimeout=function(e,t){var n=t.randomize?Math.random()+1:1;var r=Math.round(n*t.minTimeout*Math.pow(t.factor,e));r=Math.min(r,t.maxTimeout);return r};t.wrap=function(e,n,r){if(n instanceof Array){r=n;n=null}if(!r){r=[];for(var i in e){if(typeof e[i]==="function"){r.push(i)}}}for(var o=0;o<r.length;o++){var a=r[o];var s=e[a];e[a]=function retryWrapper(){var r=t.operation(n);var i=Array.prototype.slice.call(arguments);var o=i.pop();i.push(function(e){if(r.retry(e)){return}if(e){arguments[0]=r.mainError()}o.apply(this,arguments)});r.attempt(function(){s.apply(e,i)})};e[a].options=n}}},1814:function(e,t){"use strict";var n=/^[-!#$%&'*+\/0-9=?A-Z^_a-z{|}~](\.?[-!#$%&'*+\/0-9=?A-Z^_a-z`{|}~])*@[a-zA-Z0-9](-?\.?[a-zA-Z0-9])*\.[a-zA-Z](-?[a-zA-Z0-9])+$/;t.validate=function(e){if(!e)return false;if(e.length>254)return false;var t=n.test(e);if(!t)return false;var r=e.split("@");if(r[0].length>64)return false;var i=r[1].split(".");if(i.some(function(e){return e.length>63}))return false;return true}},1824:function(e){"use strict";e.exports=function(e){e.prototype[Symbol.iterator]=function*(){for(let e=this.head;e;e=e.next){yield e.value}}}},1828:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(8715);const a=i(n(6760));function maybeGetDomainByName(e,t,n){return r(this,void 0,void 0,function*(){const r=yield a.default(e,t,n);if(r instanceof o.DomainPermissionDenied){return r}return r instanceof o.DomainNotFound?null:r})}t.default=maybeGetDomainByName},1835:function(e){e.exports={author:{name:"Jeremy Stashewsky",email:"jstash@gmail.com",website:"https://github.com/stash"},contributors:[{name:"Alexander Savin",website:"https://github.com/apsavin"},{name:"Ian Livingstone",website:"https://github.com/ianlivingstone"},{name:"Ivan Nikulin",website:"https://github.com/inikulin"},{name:"Lalit Kapoor",website:"https://github.com/lalitkapoor"},{name:"Sam Thompson",website:"https://github.com/sambthompson"},{name:"Sebastian Mayr",website:"https://github.com/Sebmaster"}],license:"BSD-3-Clause",name:"tough-cookie",description:"RFC6265 Cookies and Cookie Jar for node.js",keywords:["HTTP","cookie","cookies","set-cookie","cookiejar","jar","RFC6265","RFC2965"],version:"2.4.3",homepage:"https://github.com/salesforce/tough-cookie",repository:{type:"git",url:"git://github.com/salesforce/tough-cookie.git"},bugs:{url:"https://github.com/salesforce/tough-cookie/issues"},main:"./lib/cookie",files:["lib"],scripts:{test:"vows test/*_test.js",cover:"nyc --reporter=lcov --reporter=html vows test/*_test.js"},engines:{node:">=0.8"},devDependencies:{async:"^1.4.2",nyc:"^11.6.0","string.prototype.repeat":"^0.2.0",vows:"^0.8.1"},dependencies:{psl:"^1.1.24",punycode:"^1.4.1"}}},1836:function(e){e.exports={$id:"postData.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",optional:true,required:["mimeType"],properties:{mimeType:{type:"string"},text:{type:"string"},params:{type:"array",required:["name"],properties:{name:{type:"string"},value:{type:"string"},fileName:{type:"string"},contentType:{type:"string"},comment:{type:"string"}}},comment:{type:"string"}}}},1838:function(e,t,n){"use strict";var r=n(1939);var i=n(774).parse;var o=n(649);var a=n(1490);var s=n(3466).Store;var c=n(9789).MemoryCookieStore;var u=n(2459).pathMatch;var l=n(1835).version;var f;try{f=n(8053)}catch(e){console.warn("tough-cookie: can't load punycode; won't use punycode for domain normalization")}var p=/^[\x21\x23-\x2B\x2D-\x3A\x3C-\x5B\x5D-\x7E]+$/;var d=/[\x00-\x1F]/;var h=["\n","\r","\0"];var m=/[\x20-\x3A\x3C-\x7E]+/;var v=/[\x09\x20-\x2F\x3B-\x40\x5B-\x60\x7B-\x7E]/;var g={jan:0,feb:1,mar:2,apr:3,may:4,jun:5,jul:6,aug:7,sep:8,oct:9,nov:10,dec:11};var y=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];var b=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"];var w=2147483647e3;var x=0;function parseDigits(e,t,n,r){var i=0;while(i<e.length){var o=e.charCodeAt(i);if(o<=47||o>=58){break}i++}if(i<t||i>n){return null}if(!r&&i!=e.length){return null}return parseInt(e.substr(0,i),10)}function parseTime(e){var t=e.split(":");var n=[0,0,0];if(t.length!==3){return null}for(var r=0;r<3;r++){var i=r==2;var o=parseDigits(t[r],1,2,i);if(o===null){return null}n[r]=o}return n}function parseMonth(e){e=String(e).substr(0,3).toLowerCase();var t=g[e];return t>=0?t:null}function parseDate(e){if(!e){return}var t=e.split(v);if(!t){return}var n=null;var r=null;var i=null;var o=null;var a=null;var s=null;for(var c=0;c<t.length;c++){var u=t[c].trim();if(!u.length){continue}var l;if(i===null){l=parseTime(u);if(l){n=l[0];r=l[1];i=l[2];continue}}if(o===null){l=parseDigits(u,1,2,true);if(l!==null){o=l;continue}}if(a===null){l=parseMonth(u);if(l!==null){a=l;continue}}if(s===null){l=parseDigits(u,2,4,true);if(l!==null){s=l;if(s>=70&&s<=99){s+=1900}else if(s>=0&&s<=69){s+=2e3}}}}if(o===null||a===null||s===null||i===null||o<1||o>31||s<1601||n>23||r>59||i>59){return}return new Date(Date.UTC(s,a,o,n,r,i))}function formatDate(e){var t=e.getUTCDate();t=t>=10?t:"0"+t;var n=e.getUTCHours();n=n>=10?n:"0"+n;var r=e.getUTCMinutes();r=r>=10?r:"0"+r;var i=e.getUTCSeconds();i=i>=10?i:"0"+i;return b[e.getUTCDay()]+", "+t+" "+y[e.getUTCMonth()]+" "+e.getUTCFullYear()+" "+n+":"+r+":"+i+" GMT"}function canonicalDomain(e){if(e==null){return null}e=e.trim().replace(/^\./,"");if(f&&/[^\u0001-\u007f]/.test(e)){e=f.toASCII(e)}return e.toLowerCase()}function domainMatch(e,t,n){if(e==null||t==null){return null}if(n!==false){e=canonicalDomain(e);t=canonicalDomain(t)}if(e==t){return true}if(r.isIP(e)){return false}var i=e.indexOf(t);if(i<=0){return false}if(e.length!==t.length+i){return false}if(e.substr(i-1,1)!=="."){return false}return true}function defaultPath(e){if(!e||e.substr(0,1)!=="/"){return"/"}if(e==="/"){return e}var t=e.lastIndexOf("/");if(t===0){return"/"}return e.slice(0,t)}function trimTerminator(e){for(var t=0;t<h.length;t++){var n=e.indexOf(h[t]);if(n!==-1){e=e.substr(0,n)}}return e}function parseCookiePair(e,t){e=trimTerminator(e);var n=e.indexOf("=");if(t){if(n===0){e=e.substr(1);n=e.indexOf("=")}}else{if(n<=0){return}}var r,i;if(n<=0){r="";i=e.trim()}else{r=e.substr(0,n).trim();i=e.substr(n+1).trim()}if(d.test(r)||d.test(i)){return}var o=new Cookie;o.key=r;o.value=i;return o}function parse(e,t){if(!t||typeof t!=="object"){t={}}e=e.trim();var n=e.indexOf(";");var r=n===-1?e:e.substr(0,n);var i=parseCookiePair(r,!!t.loose);if(!i){return}if(n===-1){return i}var o=e.slice(n+1).trim();if(o.length===0){return i}var a=o.split(";");while(a.length){var s=a.shift().trim();if(s.length===0){continue}var c=s.indexOf("=");var u,l;if(c===-1){u=s;l=null}else{u=s.substr(0,c);l=s.substr(c+1)}u=u.trim().toLowerCase();if(l){l=l.trim()}switch(u){case"expires":if(l){var f=parseDate(l);if(f){i.expires=f}}break;case"max-age":if(l){if(/^-?[0-9]+$/.test(l)){var p=parseInt(l,10);i.setMaxAge(p)}}break;case"domain":if(l){var d=l.trim().replace(/^\./,"");if(d){i.domain=d.toLowerCase()}}break;case"path":i.path=l&&l[0]==="/"?l:null;break;case"secure":i.secure=true;break;case"httponly":i.httpOnly=true;break;default:i.extensions=i.extensions||[];i.extensions.push(s);break}}return i}function jsonParse(e){var t;try{t=JSON.parse(e)}catch(e){return e}return t}function fromJSON(e){if(!e){return null}var t;if(typeof e==="string"){t=jsonParse(e);if(t instanceof Error){return null}}else{t=e}var n=new Cookie;for(var r=0;r<Cookie.serializableProperties.length;r++){var i=Cookie.serializableProperties[r];if(t[i]===undefined||t[i]===Cookie.prototype[i]){continue}if(i==="expires"||i==="creation"||i==="lastAccessed"){if(t[i]===null){n[i]=null}else{n[i]=t[i]=="Infinity"?"Infinity":new Date(t[i])}}else{n[i]=t[i]}}return n}function cookieCompare(e,t){var n=0;var r=e.path?e.path.length:0;var i=t.path?t.path.length:0;n=i-r;if(n!==0){return n}var o=e.creation?e.creation.getTime():w;var a=t.creation?t.creation.getTime():w;n=o-a;if(n!==0){return n}n=e.creationIndex-t.creationIndex;return n}function permutePath(e){if(e==="/"){return["/"]}if(e.lastIndexOf("/")===e.length-1){e=e.substr(0,e.length-1)}var t=[e];while(e.length>1){var n=e.lastIndexOf("/");if(n===0){break}e=e.substr(0,n);t.push(e)}t.push("/");return t}function getCookieContext(e){if(e instanceof Object){return e}try{e=decodeURI(e)}catch(e){}return i(e)}function Cookie(e){e=e||{};Object.keys(e).forEach(function(t){if(Cookie.prototype.hasOwnProperty(t)&&Cookie.prototype[t]!==e[t]&&t.substr(0,1)!=="_"){this[t]=e[t]}},this);this.creation=this.creation||new Date;Object.defineProperty(this,"creationIndex",{configurable:false,enumerable:false,writable:true,value:++Cookie.cookiesCreated})}Cookie.cookiesCreated=0;Cookie.parse=parse;Cookie.fromJSON=fromJSON;Cookie.prototype.key="";Cookie.prototype.value="";Cookie.prototype.expires="Infinity";Cookie.prototype.maxAge=null;Cookie.prototype.domain=null;Cookie.prototype.path=null;Cookie.prototype.secure=false;Cookie.prototype.httpOnly=false;Cookie.prototype.extensions=null;Cookie.prototype.hostOnly=null;Cookie.prototype.pathIsDefault=null;Cookie.prototype.creation=null;Cookie.prototype.lastAccessed=null;Object.defineProperty(Cookie.prototype,"creationIndex",{configurable:true,enumerable:false,writable:true,value:0});Cookie.serializableProperties=Object.keys(Cookie.prototype).filter(function(e){return!(Cookie.prototype[e]instanceof Function||e==="creationIndex"||e.substr(0,1)==="_")});Cookie.prototype.inspect=function inspect(){var e=Date.now();return'Cookie="'+this.toString()+"; hostOnly="+(this.hostOnly!=null?this.hostOnly:"?")+"; aAge="+(this.lastAccessed?e-this.lastAccessed.getTime()+"ms":"?")+"; cAge="+(this.creation?e-this.creation.getTime()+"ms":"?")+'"'};if(o.inspect.custom){Cookie.prototype[o.inspect.custom]=Cookie.prototype.inspect}Cookie.prototype.toJSON=function(){var e={};var t=Cookie.serializableProperties;for(var n=0;n<t.length;n++){var r=t[n];if(this[r]===Cookie.prototype[r]){continue}if(r==="expires"||r==="creation"||r==="lastAccessed"){if(this[r]===null){e[r]=null}else{e[r]=this[r]=="Infinity"?"Infinity":this[r].toISOString()}}else if(r==="maxAge"){if(this[r]!==null){e[r]=this[r]==Infinity||this[r]==-Infinity?this[r].toString():this[r]}}else{if(this[r]!==Cookie.prototype[r]){e[r]=this[r]}}}return e};Cookie.prototype.clone=function(){return fromJSON(this.toJSON())};Cookie.prototype.validate=function validate(){if(!p.test(this.value)){return false}if(this.expires!=Infinity&&!(this.expires instanceof Date)&&!parseDate(this.expires)){return false}if(this.maxAge!=null&&this.maxAge<=0){return false}if(this.path!=null&&!m.test(this.path)){return false}var e=this.cdomain();if(e){if(e.match(/\.$/)){return false}var t=a.getPublicSuffix(e);if(t==null){return false}}return true};Cookie.prototype.setExpires=function setExpires(e){if(e instanceof Date){this.expires=e}else{this.expires=parseDate(e)||"Infinity"}};Cookie.prototype.setMaxAge=function setMaxAge(e){if(e===Infinity||e===-Infinity){this.maxAge=e.toString()}else{this.maxAge=e}};Cookie.prototype.cookieString=function cookieString(){var e=this.value;if(e==null){e=""}if(this.key===""){return e}return this.key+"="+e};Cookie.prototype.toString=function toString(){var e=this.cookieString();if(this.expires!=Infinity){if(this.expires instanceof Date){e+="; Expires="+formatDate(this.expires)}else{e+="; Expires="+this.expires}}if(this.maxAge!=null&&this.maxAge!=Infinity){e+="; Max-Age="+this.maxAge}if(this.domain&&!this.hostOnly){e+="; Domain="+this.domain}if(this.path){e+="; Path="+this.path}if(this.secure){e+="; Secure"}if(this.httpOnly){e+="; HttpOnly"}if(this.extensions){this.extensions.forEach(function(t){e+="; "+t})}return e};Cookie.prototype.TTL=function TTL(e){if(this.maxAge!=null){return this.maxAge<=0?0:this.maxAge*1e3}var t=this.expires;if(t!=Infinity){if(!(t instanceof Date)){t=parseDate(t)||Infinity}if(t==Infinity){return Infinity}return t.getTime()-(e||Date.now())}return Infinity};Cookie.prototype.expiryTime=function expiryTime(e){if(this.maxAge!=null){var t=e||this.creation||new Date;var n=this.maxAge<=0?-Infinity:this.maxAge*1e3;return t.getTime()+n}if(this.expires==Infinity){return Infinity}return this.expires.getTime()};Cookie.prototype.expiryDate=function expiryDate(e){var t=this.expiryTime(e);if(t==Infinity){return new Date(w)}else if(t==-Infinity){return new Date(x)}else{return new Date(t)}};Cookie.prototype.isPersistent=function isPersistent(){return this.maxAge!=null||this.expires!=Infinity};Cookie.prototype.cdomain=Cookie.prototype.canonicalizedDomain=function canonicalizedDomain(){if(this.domain==null){return null}return canonicalDomain(this.domain)};function CookieJar(e,t){if(typeof t==="boolean"){t={rejectPublicSuffixes:t}}else if(t==null){t={}}if(t.rejectPublicSuffixes!=null){this.rejectPublicSuffixes=t.rejectPublicSuffixes}if(t.looseMode!=null){this.enableLooseMode=t.looseMode}if(!e){e=new c}this.store=e}CookieJar.prototype.store=null;CookieJar.prototype.rejectPublicSuffixes=true;CookieJar.prototype.enableLooseMode=false;var k=[];k.push("setCookie");CookieJar.prototype.setCookie=function(e,t,n,r){var i;var o=getCookieContext(t);if(n instanceof Function){r=n;n={}}var s=canonicalDomain(o.hostname);var c=this.enableLooseMode;if(n.loose!=null){c=n.loose}if(!(e instanceof Cookie)){e=Cookie.parse(e,{loose:c})}if(!e){i=new Error("Cookie failed to parse");return r(n.ignoreError?null:i)}var u=n.now||new Date;if(this.rejectPublicSuffixes&&e.domain){var l=a.getPublicSuffix(e.cdomain());if(l==null){i=new Error("Cookie has domain set to a public suffix");return r(n.ignoreError?null:i)}}if(e.domain){if(!domainMatch(s,e.cdomain(),false)){i=new Error("Cookie not in this host's domain. Cookie:"+e.cdomain()+" Request:"+s);return r(n.ignoreError?null:i)}if(e.hostOnly==null){e.hostOnly=false}}else{e.hostOnly=true;e.domain=s}if(!e.path||e.path[0]!=="/"){e.path=defaultPath(o.pathname);e.pathIsDefault=true}if(n.http===false&&e.httpOnly){i=new Error("Cookie is HttpOnly and this isn't an HTTP API");return r(n.ignoreError?null:i)}var f=this.store;if(!f.updateCookie){f.updateCookie=function(e,t,n){this.putCookie(t,n)}}function withCookie(t,i){if(t){return r(t)}var o=function(t){if(t){return r(t)}else{r(null,e)}};if(i){if(n.http===false&&i.httpOnly){t=new Error("old Cookie is HttpOnly and this isn't an HTTP API");return r(n.ignoreError?null:t)}e.creation=i.creation;e.creationIndex=i.creationIndex;e.lastAccessed=u;f.updateCookie(i,e,o)}else{e.creation=e.lastAccessed=u;f.putCookie(e,o)}}f.findCookie(e.domain,e.path,e.key,withCookie)};k.push("getCookies");CookieJar.prototype.getCookies=function(e,t,n){var r=getCookieContext(e);if(t instanceof Function){n=t;t={}}var i=canonicalDomain(r.hostname);var o=r.pathname||"/";var a=t.secure;if(a==null&&r.protocol&&(r.protocol=="https:"||r.protocol=="wss:")){a=true}var s=t.http;if(s==null){s=true}var c=t.now||Date.now();var l=t.expire!==false;var f=!!t.allPaths;var p=this.store;function matchingCookie(e){if(e.hostOnly){if(e.domain!=i){return false}}else{if(!domainMatch(i,e.domain,false)){return false}}if(!f&&!u(o,e.path)){return false}if(e.secure&&!a){return false}if(e.httpOnly&&!s){return false}if(l&&e.expiryTime()<=c){p.removeCookie(e.domain,e.path,e.key,function(){});return false}return true}p.findCookies(i,f?null:o,function(e,r){if(e){return n(e)}r=r.filter(matchingCookie);if(t.sort!==false){r=r.sort(cookieCompare)}var i=new Date;r.forEach(function(e){e.lastAccessed=i});n(null,r)})};k.push("getCookieString");CookieJar.prototype.getCookieString=function(){var e=Array.prototype.slice.call(arguments,0);var t=e.pop();var n=function(e,n){if(e){t(e)}else{t(null,n.sort(cookieCompare).map(function(e){return e.cookieString()}).join("; "))}};e.push(n);this.getCookies.apply(this,e)};k.push("getSetCookieStrings");CookieJar.prototype.getSetCookieStrings=function(){var e=Array.prototype.slice.call(arguments,0);var t=e.pop();var n=function(e,n){if(e){t(e)}else{t(null,n.map(function(e){return e.toString()}))}};e.push(n);this.getCookies.apply(this,e)};k.push("serialize");CookieJar.prototype.serialize=function(e){var t=this.store.constructor.name;if(t==="Object"){t=null}var n={version:"tough-cookie@"+l,storeType:t,rejectPublicSuffixes:!!this.rejectPublicSuffixes,cookies:[]};if(!(this.store.getAllCookies&&typeof this.store.getAllCookies==="function")){return e(new Error("store does not support getAllCookies and cannot be serialized"))}this.store.getAllCookies(function(t,r){if(t){return e(t)}n.cookies=r.map(function(e){e=e instanceof Cookie?e.toJSON():e;delete e.creationIndex;return e});return e(null,n)})};CookieJar.prototype.toJSON=function(){return this.serializeSync()};k.push("_importCookies");CookieJar.prototype._importCookies=function(e,t){var n=this;var r=e.cookies;if(!r||!Array.isArray(r)){return t(new Error("serialized jar has no cookies array"))}r=r.slice();function putNext(e){if(e){return t(e)}if(!r.length){return t(e,n)}var i;try{i=fromJSON(r.shift())}catch(e){return t(e)}if(i===null){return putNext(null)}n.store.putCookie(i,putNext)}putNext()};CookieJar.deserialize=function(e,t,n){if(arguments.length!==3){n=t;t=null}var r;if(typeof e==="string"){r=jsonParse(e);if(r instanceof Error){return n(r)}}else{r=e}var i=new CookieJar(t,r.rejectPublicSuffixes);i._importCookies(r,function(e){if(e){return n(e)}n(null,i)})};CookieJar.deserializeSync=function(e,t){var n=typeof e==="string"?JSON.parse(e):e;var r=new CookieJar(t,n.rejectPublicSuffixes);if(!r.store.synchronous){throw new Error("CookieJar store is not synchronous; use async API instead.")}r._importCookiesSync(n);return r};CookieJar.fromJSON=CookieJar.deserializeSync;k.push("clone");CookieJar.prototype.clone=function(e,t){if(arguments.length===1){t=e;e=null}this.serialize(function(n,r){if(n){return t(n)}CookieJar.deserialize(e,r,t)})};function syncWrap(e){return function(){if(!this.store.synchronous){throw new Error("CookieJar store is not synchronous; use async API instead.")}var t=Array.prototype.slice.call(arguments);var n,r;t.push(function syncCb(e,t){n=e;r=t});this[e].apply(this,t);if(n){throw n}return r}}k.forEach(function(e){CookieJar.prototype[e+"Sync"]=syncWrap(e)});t.CookieJar=CookieJar;t.Cookie=Cookie;t.Store=s;t.MemoryCookieStore=c;t.parseDate=parseDate;t.formatDate=formatDate;t.parse=parse;t.fromJSON=fromJSON;t.domainMatch=domainMatch;t.defaultPath=defaultPath;t.pathMatch=u;t.getPublicSuffix=a.getPublicSuffix;t.cookieCompare=cookieCompare;t.permuteDomain=n(6708).permuteDomain;t.permutePath=permutePath;t.canonicalDomain=canonicalDomain},1840:function(e,t,n){var r=n(2628);t.operation=function(e){var n=t.timeouts(e);return new r(n,{forever:e&&e.forever,unref:e&&e.unref,maxRetryTime:e&&e.maxRetryTime})};t.timeouts=function(e){if(e instanceof Array){return[].concat(e)}var t={retries:10,factor:2,minTimeout:1*1e3,maxTimeout:Infinity,randomize:false};for(var n in e){t[n]=e[n]}if(t.minTimeout>t.maxTimeout){throw new Error("minTimeout is greater than maxTimeout")}var r=[];for(var i=0;i<t.retries;i++){r.push(this.createTimeout(i,t))}if(e&&e.forever&&!r.length){r.push(this.createTimeout(i,t))}r.sort(function(e,t){return e-t});return r};t.createTimeout=function(e,t){var n=t.randomize?Math.random()+1:1;var r=Math.round(n*t.minTimeout*Math.pow(t.factor,e));r=Math.min(r,t.maxTimeout);return r};t.wrap=function(e,n,r){if(n instanceof Array){r=n;n=null}if(!r){r=[];for(var i in e){if(typeof e[i]==="function"){r.push(i)}}}for(var o=0;o<r.length;o++){var a=r[o];var s=e[a];e[a]=function retryWrapper(r){var i=t.operation(n);var o=Array.prototype.slice.call(arguments,1);var a=o.pop();o.push(function(e){if(i.retry(e)){return}if(e){arguments[0]=i.mainError()}a.apply(this,arguments)});i.attempt(function(){r.apply(e,o)})}.bind(e,s);e[a].options=n}}},1852:function(e){var t=e.exports=typeof window!="undefined"&&window.Math==Math?window:typeof self!="undefined"&&self.Math==Math?self:Function("return this")();if(typeof __g=="number")__g=t},1871:function(e,t,n){var r=n(6017);var i=n(5774);var o=n(5994);var a=n(1485);var s=n(7322);var c=n(6180);function format(e,t,n){var r=t?String(t):"YYYY-MM-DDTHH:mm:ss.SSSZ";var i=n||{};var o=i.locale;var u=c.format.formatters;var l=c.format.formattingTokensRegExp;if(o&&o.format&&o.format.formatters){u=o.format.formatters;if(o.format.formattingTokensRegExp){l=o.format.formattingTokensRegExp}}var f=a(e);if(!s(f)){return"Invalid Date"}var p=buildFormatFn(r,u,l);return p(f)}var u={M:function(e){return e.getMonth()+1},MM:function(e){return addLeadingZeros(e.getMonth()+1,2)},Q:function(e){return Math.ceil((e.getMonth()+1)/3)},D:function(e){return e.getDate()},DD:function(e){return addLeadingZeros(e.getDate(),2)},DDD:function(e){return r(e)},DDDD:function(e){return addLeadingZeros(r(e),3)},d:function(e){return e.getDay()},E:function(e){return e.getDay()||7},W:function(e){return i(e)},WW:function(e){return addLeadingZeros(i(e),2)},YY:function(e){return addLeadingZeros(e.getFullYear(),4).substr(2)},YYYY:function(e){return addLeadingZeros(e.getFullYear(),4)},GG:function(e){return String(o(e)).substr(2)},GGGG:function(e){return o(e)},H:function(e){return e.getHours()},HH:function(e){return addLeadingZeros(e.getHours(),2)},h:function(e){var t=e.getHours();if(t===0){return 12}else if(t>12){return t%12}else{return t}},hh:function(e){return addLeadingZeros(u["h"](e),2)},m:function(e){return e.getMinutes()},mm:function(e){return addLeadingZeros(e.getMinutes(),2)},s:function(e){return e.getSeconds()},ss:function(e){return addLeadingZeros(e.getSeconds(),2)},S:function(e){return Math.floor(e.getMilliseconds()/100)},SS:function(e){return addLeadingZeros(Math.floor(e.getMilliseconds()/10),2)},SSS:function(e){return addLeadingZeros(e.getMilliseconds(),3)},Z:function(e){return formatTimezone(e.getTimezoneOffset(),":")},ZZ:function(e){return formatTimezone(e.getTimezoneOffset())},X:function(e){return Math.floor(e.getTime()/1e3)},x:function(e){return e.getTime()}};function buildFormatFn(e,t,n){var r=e.match(n);var i=r.length;var o;var a;for(o=0;o<i;o++){a=t[r[o]]||u[r[o]];if(a){r[o]=a}else{r[o]=removeFormattingTokens(r[o])}}return function(e){var t="";for(var n=0;n<i;n++){if(r[n]instanceof Function){t+=r[n](e,u)}else{t+=r[n]}}return t}}function removeFormattingTokens(e){if(e.match(/\[[\s\S]/)){return e.replace(/^\[|]$/g,"")}return e.replace(/\\/g,"")}function formatTimezone(e,t){t=t||"";var n=e>0?"-":"+";var r=Math.abs(e);var i=Math.floor(r/60);var o=r%60;return n+addLeadingZeros(i,2)+t+addLeadingZeros(o,2)}function addLeadingZeros(e,t){var n=Math.abs(e).toString();while(n.length<t){n="0"+n}return n}e.exports=format},1875:function(e){e.exports=["ac","com.ac","edu.ac","gov.ac","net.ac","mil.ac","org.ac","ad","nom.ad","ae","co.ae","net.ae","org.ae","sch.ae","ac.ae","gov.ae","mil.ae","aero","accident-investigation.aero","accident-prevention.aero","aerobatic.aero","aeroclub.aero","aerodrome.aero","agents.aero","aircraft.aero","airline.aero","airport.aero","air-surveillance.aero","airtraffic.aero","air-traffic-control.aero","ambulance.aero","amusement.aero","association.aero","author.aero","ballooning.aero","broker.aero","caa.aero","cargo.aero","catering.aero","certification.aero","championship.aero","charter.aero","civilaviation.aero","club.aero","conference.aero","consultant.aero","consulting.aero","control.aero","council.aero","crew.aero","design.aero","dgca.aero","educator.aero","emergency.aero","engine.aero","engineer.aero","entertainment.aero","equipment.aero","exchange.aero","express.aero","federation.aero","flight.aero","freight.aero","fuel.aero","gliding.aero","government.aero","groundhandling.aero","group.aero","hanggliding.aero","homebuilt.aero","insurance.aero","journal.aero","journalist.aero","leasing.aero","logistics.aero","magazine.aero","maintenance.aero","media.aero","microlight.aero","modelling.aero","navigation.aero","parachuting.aero","paragliding.aero","passenger-association.aero","pilot.aero","press.aero","production.aero","recreation.aero","repbody.aero","res.aero","research.aero","rotorcraft.aero","safety.aero","scientist.aero","services.aero","show.aero","skydiving.aero","software.aero","student.aero","trader.aero","trading.aero","trainer.aero","union.aero","workinggroup.aero","works.aero","af","gov.af","com.af","org.af","net.af","edu.af","ag","com.ag","org.ag","net.ag","co.ag","nom.ag","ai","off.ai","com.ai","net.ai","org.ai","al","com.al","edu.al","gov.al","mil.al","net.al","org.al","am","co.am","com.am","commune.am","net.am","org.am","ao","ed.ao","gv.ao","og.ao","co.ao","pb.ao","it.ao","aq","ar","com.ar","edu.ar","gob.ar","gov.ar","int.ar","mil.ar","musica.ar","net.ar","org.ar","tur.ar","arpa","e164.arpa","in-addr.arpa","ip6.arpa","iris.arpa","uri.arpa","urn.arpa","as","gov.as","asia","at","ac.at","co.at","gv.at","or.at","au","com.au","net.au","org.au","edu.au","gov.au","asn.au","id.au","info.au","conf.au","oz.au","act.au","nsw.au","nt.au","qld.au","sa.au","tas.au","vic.au","wa.au","act.edu.au","catholic.edu.au","eq.edu.au","nsw.edu.au","nt.edu.au","qld.edu.au","sa.edu.au","tas.edu.au","vic.edu.au","wa.edu.au","qld.gov.au","sa.gov.au","tas.gov.au","vic.gov.au","wa.gov.au","education.tas.edu.au","schools.nsw.edu.au","aw","com.aw","ax","az","com.az","net.az","int.az","gov.az","org.az","edu.az","info.az","pp.az","mil.az","name.az","pro.az","biz.az","ba","com.ba","edu.ba","gov.ba","mil.ba","net.ba","org.ba","bb","biz.bb","co.bb","com.bb","edu.bb","gov.bb","info.bb","net.bb","org.bb","store.bb","tv.bb","*.bd","be","ac.be","bf","gov.bf","bg","a.bg","b.bg","c.bg","d.bg","e.bg","f.bg","g.bg","h.bg","i.bg","j.bg","k.bg","l.bg","m.bg","n.bg","o.bg","p.bg","q.bg","r.bg","s.bg","t.bg","u.bg","v.bg","w.bg","x.bg","y.bg","z.bg","0.bg","1.bg","2.bg","3.bg","4.bg","5.bg","6.bg","7.bg","8.bg","9.bg","bh","com.bh","edu.bh","net.bh","org.bh","gov.bh","bi","co.bi","com.bi","edu.bi","or.bi","org.bi","biz","bj","asso.bj","barreau.bj","gouv.bj","bm","com.bm","edu.bm","gov.bm","net.bm","org.bm","bn","com.bn","edu.bn","gov.bn","net.bn","org.bn","bo","com.bo","edu.bo","gob.bo","int.bo","org.bo","net.bo","mil.bo","tv.bo","web.bo","academia.bo","agro.bo","arte.bo","blog.bo","bolivia.bo","ciencia.bo","cooperativa.bo","democracia.bo","deporte.bo","ecologia.bo","economia.bo","empresa.bo","indigena.bo","industria.bo","info.bo","medicina.bo","movimiento.bo","musica.bo","natural.bo","nombre.bo","noticias.bo","patria.bo","politica.bo","profesional.bo","plurinacional.bo","pueblo.bo","revista.bo","salud.bo","tecnologia.bo","tksat.bo","transporte.bo","wiki.bo","br","9guacu.br","abc.br","adm.br","adv.br","agr.br","aju.br","am.br","anani.br","aparecida.br","arq.br","art.br","ato.br","b.br","barueri.br","belem.br","bhz.br","bio.br","blog.br","bmd.br","boavista.br","bsb.br","campinagrande.br","campinas.br","caxias.br","cim.br","cng.br","cnt.br","com.br","contagem.br","coop.br","cri.br","cuiaba.br","curitiba.br","def.br","ecn.br","eco.br","edu.br","emp.br","eng.br","esp.br","etc.br","eti.br","far.br","feira.br","flog.br","floripa.br","fm.br","fnd.br","fortal.br","fot.br","foz.br","fst.br","g12.br","ggf.br","goiania.br","gov.br","ac.gov.br","al.gov.br","am.gov.br","ap.gov.br","ba.gov.br","ce.gov.br","df.gov.br","es.gov.br","go.gov.br","ma.gov.br","mg.gov.br","ms.gov.br","mt.gov.br","pa.gov.br","pb.gov.br","pe.gov.br","pi.gov.br","pr.gov.br","rj.gov.br","rn.gov.br","ro.gov.br","rr.gov.br","rs.gov.br","sc.gov.br","se.gov.br","sp.gov.br","to.gov.br","gru.br","imb.br","ind.br","inf.br","jab.br","jampa.br","jdf.br","joinville.br","jor.br","jus.br","leg.br","lel.br","londrina.br","macapa.br","maceio.br","manaus.br","maringa.br","mat.br","med.br","mil.br","morena.br","mp.br","mus.br","natal.br","net.br","niteroi.br","*.nom.br","not.br","ntr.br","odo.br","ong.br","org.br","osasco.br","palmas.br","poa.br","ppg.br","pro.br","psc.br","psi.br","pvh.br","qsl.br","radio.br","rec.br","recife.br","ribeirao.br","rio.br","riobranco.br","riopreto.br","salvador.br","sampa.br","santamaria.br","santoandre.br","saobernardo.br","saogonca.br","sjc.br","slg.br","slz.br","sorocaba.br","srv.br","taxi.br","tc.br","teo.br","the.br","tmp.br","trd.br","tur.br","tv.br","udi.br","vet.br","vix.br","vlog.br","wiki.br","zlg.br","bs","com.bs","net.bs","org.bs","edu.bs","gov.bs","bt","com.bt","edu.bt","gov.bt","net.bt","org.bt","bv","bw","co.bw","org.bw","by","gov.by","mil.by","com.by","of.by","bz","com.bz","net.bz","org.bz","edu.bz","gov.bz","ca","ab.ca","bc.ca","mb.ca","nb.ca","nf.ca","nl.ca","ns.ca","nt.ca","nu.ca","on.ca","pe.ca","qc.ca","sk.ca","yk.ca","gc.ca","cat","cc","cd","gov.cd","cf","cg","ch","ci","org.ci","or.ci","com.ci","co.ci","edu.ci","ed.ci","ac.ci","net.ci","go.ci","asso.ci","aéroport.ci","int.ci","presse.ci","md.ci","gouv.ci","*.ck","!www.ck","cl","gov.cl","gob.cl","co.cl","mil.cl","cm","co.cm","com.cm","gov.cm","net.cm","cn","ac.cn","com.cn","edu.cn","gov.cn","net.cn","org.cn","mil.cn","公司.cn","网络.cn","網絡.cn","ah.cn","bj.cn","cq.cn","fj.cn","gd.cn","gs.cn","gz.cn","gx.cn","ha.cn","hb.cn","he.cn","hi.cn","hl.cn","hn.cn","jl.cn","js.cn","jx.cn","ln.cn","nm.cn","nx.cn","qh.cn","sc.cn","sd.cn","sh.cn","sn.cn","sx.cn","tj.cn","xj.cn","xz.cn","yn.cn","zj.cn","hk.cn","mo.cn","tw.cn","co","arts.co","com.co","edu.co","firm.co","gov.co","info.co","int.co","mil.co","net.co","nom.co","org.co","rec.co","web.co","com","coop","cr","ac.cr","co.cr","ed.cr","fi.cr","go.cr","or.cr","sa.cr","cu","com.cu","edu.cu","org.cu","net.cu","gov.cu","inf.cu","cv","cw","com.cw","edu.cw","net.cw","org.cw","cx","gov.cx","cy","ac.cy","biz.cy","com.cy","ekloges.cy","gov.cy","ltd.cy","name.cy","net.cy","org.cy","parliament.cy","press.cy","pro.cy","tm.cy","cz","de","dj","dk","dm","com.dm","net.dm","org.dm","edu.dm","gov.dm","do","art.do","com.do","edu.do","gob.do","gov.do","mil.do","net.do","org.do","sld.do","web.do","dz","com.dz","org.dz","net.dz","gov.dz","edu.dz","asso.dz","pol.dz","art.dz","ec","com.ec","info.ec","net.ec","fin.ec","k12.ec","med.ec","pro.ec","org.ec","edu.ec","gov.ec","gob.ec","mil.ec","edu","ee","edu.ee","gov.ee","riik.ee","lib.ee","med.ee","com.ee","pri.ee","aip.ee","org.ee","fie.ee","eg","com.eg","edu.eg","eun.eg","gov.eg","mil.eg","name.eg","net.eg","org.eg","sci.eg","*.er","es","com.es","nom.es","org.es","gob.es","edu.es","et","com.et","gov.et","org.et","edu.et","biz.et","name.et","info.et","net.et","eu","fi","aland.fi","*.fj","*.fk","fm","fo","fr","asso.fr","com.fr","gouv.fr","nom.fr","prd.fr","tm.fr","aeroport.fr","avocat.fr","avoues.fr","cci.fr","chambagri.fr","chirurgiens-dentistes.fr","experts-comptables.fr","geometre-expert.fr","greta.fr","huissier-justice.fr","medecin.fr","notaires.fr","pharmacien.fr","port.fr","veterinaire.fr","ga","gb","gd","ge","com.ge","edu.ge","gov.ge","org.ge","mil.ge","net.ge","pvt.ge","gf","gg","co.gg","net.gg","org.gg","gh","com.gh","edu.gh","gov.gh","org.gh","mil.gh","gi","com.gi","ltd.gi","gov.gi","mod.gi","edu.gi","org.gi","gl","co.gl","com.gl","edu.gl","net.gl","org.gl","gm","gn","ac.gn","com.gn","edu.gn","gov.gn","org.gn","net.gn","gov","gp","com.gp","net.gp","mobi.gp","edu.gp","org.gp","asso.gp","gq","gr","com.gr","edu.gr","net.gr","org.gr","gov.gr","gs","gt","com.gt","edu.gt","gob.gt","ind.gt","mil.gt","net.gt","org.gt","gu","com.gu","edu.gu","gov.gu","guam.gu","info.gu","net.gu","org.gu","web.gu","gw","gy","co.gy","com.gy","edu.gy","gov.gy","net.gy","org.gy","hk","com.hk","edu.hk","gov.hk","idv.hk","net.hk","org.hk","公司.hk","教育.hk","敎育.hk","政府.hk","個人.hk","个人.hk","箇人.hk","網络.hk","网络.hk","组織.hk","網絡.hk","网絡.hk","组织.hk","組織.hk","組织.hk","hm","hn","com.hn","edu.hn","org.hn","net.hn","mil.hn","gob.hn","hr","iz.hr","from.hr","name.hr","com.hr","ht","com.ht","shop.ht","firm.ht","info.ht","adult.ht","net.ht","pro.ht","org.ht","med.ht","art.ht","coop.ht","pol.ht","asso.ht","edu.ht","rel.ht","gouv.ht","perso.ht","hu","co.hu","info.hu","org.hu","priv.hu","sport.hu","tm.hu","2000.hu","agrar.hu","bolt.hu","casino.hu","city.hu","erotica.hu","erotika.hu","film.hu","forum.hu","games.hu","hotel.hu","ingatlan.hu","jogasz.hu","konyvelo.hu","lakas.hu","media.hu","news.hu","reklam.hu","sex.hu","shop.hu","suli.hu","szex.hu","tozsde.hu","utazas.hu","video.hu","id","ac.id","biz.id","co.id","desa.id","go.id","mil.id","my.id","net.id","or.id","ponpes.id","sch.id","web.id","ie","gov.ie","il","ac.il","co.il","gov.il","idf.il","k12.il","muni.il","net.il","org.il","im","ac.im","co.im","com.im","ltd.co.im","net.im","org.im","plc.co.im","tt.im","tv.im","in","co.in","firm.in","net.in","org.in","gen.in","ind.in","nic.in","ac.in","edu.in","res.in","gov.in","mil.in","info","int","eu.int","io","com.io","iq","gov.iq","edu.iq","mil.iq","com.iq","org.iq","net.iq","ir","ac.ir","co.ir","gov.ir","id.ir","net.ir","org.ir","sch.ir","ایران.ir","ايران.ir","is","net.is","com.is","edu.is","gov.is","org.is","int.is","it","gov.it","edu.it","abr.it","abruzzo.it","aosta-valley.it","aostavalley.it","bas.it","basilicata.it","cal.it","calabria.it","cam.it","campania.it","emilia-romagna.it","emiliaromagna.it","emr.it","friuli-v-giulia.it","friuli-ve-giulia.it","friuli-vegiulia.it","friuli-venezia-giulia.it","friuli-veneziagiulia.it","friuli-vgiulia.it","friuliv-giulia.it","friulive-giulia.it","friulivegiulia.it","friulivenezia-giulia.it","friuliveneziagiulia.it","friulivgiulia.it","fvg.it","laz.it","lazio.it","lig.it","liguria.it","lom.it","lombardia.it","lombardy.it","lucania.it","mar.it","marche.it","mol.it","molise.it","piedmont.it","piemonte.it","pmn.it","pug.it","puglia.it","sar.it","sardegna.it","sardinia.it","sic.it","sicilia.it","sicily.it","taa.it","tos.it","toscana.it","trentin-sud-tirol.it","trentin-süd-tirol.it","trentin-sudtirol.it","trentin-südtirol.it","trentin-sued-tirol.it","trentin-suedtirol.it","trentino-a-adige.it","trentino-aadige.it","trentino-alto-adige.it","trentino-altoadige.it","trentino-s-tirol.it","trentino-stirol.it","trentino-sud-tirol.it","trentino-süd-tirol.it","trentino-sudtirol.it","trentino-südtirol.it","trentino-sued-tirol.it","trentino-suedtirol.it","trentino.it","trentinoa-adige.it","trentinoaadige.it","trentinoalto-adige.it","trentinoaltoadige.it","trentinos-tirol.it","trentinostirol.it","trentinosud-tirol.it","trentinosüd-tirol.it","trentinosudtirol.it","trentinosüdtirol.it","trentinosued-tirol.it","trentinosuedtirol.it","trentinsud-tirol.it","trentinsüd-tirol.it","trentinsudtirol.it","trentinsüdtirol.it","trentinsued-tirol.it","trentinsuedtirol.it","tuscany.it","umb.it","umbria.it","val-d-aosta.it","val-daosta.it","vald-aosta.it","valdaosta.it","valle-aosta.it","valle-d-aosta.it","valle-daosta.it","valleaosta.it","valled-aosta.it","valledaosta.it","vallee-aoste.it","vallée-aoste.it","vallee-d-aoste.it","vallée-d-aoste.it","valleeaoste.it","valléeaoste.it","valleedaoste.it","valléedaoste.it","vao.it","vda.it","ven.it","veneto.it","ag.it","agrigento.it","al.it","alessandria.it","alto-adige.it","altoadige.it","an.it","ancona.it","andria-barletta-trani.it","andria-trani-barletta.it","andriabarlettatrani.it","andriatranibarletta.it","ao.it","aosta.it","aoste.it","ap.it","aq.it","aquila.it","ar.it","arezzo.it","ascoli-piceno.it","ascolipiceno.it","asti.it","at.it","av.it","avellino.it","ba.it","balsan-sudtirol.it","balsan-südtirol.it","balsan-suedtirol.it","balsan.it","bari.it","barletta-trani-andria.it","barlettatraniandria.it","belluno.it","benevento.it","bergamo.it","bg.it","bi.it","biella.it","bl.it","bn.it","bo.it","bologna.it","bolzano-altoadige.it","bolzano.it","bozen-sudtirol.it","bozen-südtirol.it","bozen-suedtirol.it","bozen.it","br.it","brescia.it","brindisi.it","bs.it","bt.it","bulsan-sudtirol.it","bulsan-südtirol.it","bulsan-suedtirol.it","bulsan.it","bz.it","ca.it","cagliari.it","caltanissetta.it","campidano-medio.it","campidanomedio.it","campobasso.it","carbonia-iglesias.it","carboniaiglesias.it","carrara-massa.it","carraramassa.it","caserta.it","catania.it","catanzaro.it","cb.it","ce.it","cesena-forli.it","cesena-forlì.it","cesenaforli.it","cesenaforlì.it","ch.it","chieti.it","ci.it","cl.it","cn.it","co.it","como.it","cosenza.it","cr.it","cremona.it","crotone.it","cs.it","ct.it","cuneo.it","cz.it","dell-ogliastra.it","dellogliastra.it","en.it","enna.it","fc.it","fe.it","fermo.it","ferrara.it","fg.it","fi.it","firenze.it","florence.it","fm.it","foggia.it","forli-cesena.it","forlì-cesena.it","forlicesena.it","forlìcesena.it","fr.it","frosinone.it","ge.it","genoa.it","genova.it","go.it","gorizia.it","gr.it","grosseto.it","iglesias-carbonia.it","iglesiascarbonia.it","im.it","imperia.it","is.it","isernia.it","kr.it","la-spezia.it","laquila.it","laspezia.it","latina.it","lc.it","le.it","lecce.it","lecco.it","li.it","livorno.it","lo.it","lodi.it","lt.it","lu.it","lucca.it","macerata.it","mantova.it","massa-carrara.it","massacarrara.it","matera.it","mb.it","mc.it","me.it","medio-campidano.it","mediocampidano.it","messina.it","mi.it","milan.it","milano.it","mn.it","mo.it","modena.it","monza-brianza.it","monza-e-della-brianza.it","monza.it","monzabrianza.it","monzaebrianza.it","monzaedellabrianza.it","ms.it","mt.it","na.it","naples.it","napoli.it","no.it","novara.it","nu.it","nuoro.it","og.it","ogliastra.it","olbia-tempio.it","olbiatempio.it","or.it","oristano.it","ot.it","pa.it","padova.it","padua.it","palermo.it","parma.it","pavia.it","pc.it","pd.it","pe.it","perugia.it","pesaro-urbino.it","pesarourbino.it","pescara.it","pg.it","pi.it","piacenza.it","pisa.it","pistoia.it","pn.it","po.it","pordenone.it","potenza.it","pr.it","prato.it","pt.it","pu.it","pv.it","pz.it","ra.it","ragusa.it","ravenna.it","rc.it","re.it","reggio-calabria.it","reggio-emilia.it","reggiocalabria.it","reggioemilia.it","rg.it","ri.it","rieti.it","rimini.it","rm.it","rn.it","ro.it","roma.it","rome.it","rovigo.it","sa.it","salerno.it","sassari.it","savona.it","si.it","siena.it","siracusa.it","so.it","sondrio.it","sp.it","sr.it","ss.it","suedtirol.it","südtirol.it","sv.it","ta.it","taranto.it","te.it","tempio-olbia.it","tempioolbia.it","teramo.it","terni.it","tn.it","to.it","torino.it","tp.it","tr.it","trani-andria-barletta.it","trani-barletta-andria.it","traniandriabarletta.it","tranibarlettaandria.it","trapani.it","trento.it","treviso.it","trieste.it","ts.it","turin.it","tv.it","ud.it","udine.it","urbino-pesaro.it","urbinopesaro.it","va.it","varese.it","vb.it","vc.it","ve.it","venezia.it","venice.it","verbania.it","vercelli.it","verona.it","vi.it","vibo-valentia.it","vibovalentia.it","vicenza.it","viterbo.it","vr.it","vs.it","vt.it","vv.it","je","co.je","net.je","org.je","*.jm","jo","com.jo","org.jo","net.jo","edu.jo","sch.jo","gov.jo","mil.jo","name.jo","jobs","jp","ac.jp","ad.jp","co.jp","ed.jp","go.jp","gr.jp","lg.jp","ne.jp","or.jp","aichi.jp","akita.jp","aomori.jp","chiba.jp","ehime.jp","fukui.jp","fukuoka.jp","fukushima.jp","gifu.jp","gunma.jp","hiroshima.jp","hokkaido.jp","hyogo.jp","ibaraki.jp","ishikawa.jp","iwate.jp","kagawa.jp","kagoshima.jp","kanagawa.jp","kochi.jp","kumamoto.jp","kyoto.jp","mie.jp","miyagi.jp","miyazaki.jp","nagano.jp","nagasaki.jp","nara.jp","niigata.jp","oita.jp","okayama.jp","okinawa.jp","osaka.jp","saga.jp","saitama.jp","shiga.jp","shimane.jp","shizuoka.jp","tochigi.jp","tokushima.jp","tokyo.jp","tottori.jp","toyama.jp","wakayama.jp","yamagata.jp","yamaguchi.jp","yamanashi.jp","栃木.jp","愛知.jp","愛媛.jp","兵庫.jp","熊本.jp","茨城.jp","北海道.jp","千葉.jp","和歌山.jp","長崎.jp","長野.jp","新潟.jp","青森.jp","静岡.jp","東京.jp","石川.jp","埼玉.jp","三重.jp","京都.jp","佐賀.jp","大分.jp","大阪.jp","奈良.jp","宮城.jp","宮崎.jp","富山.jp","山口.jp","山形.jp","山梨.jp","岩手.jp","岐阜.jp","岡山.jp","島根.jp","広島.jp","徳島.jp","沖縄.jp","滋賀.jp","神奈川.jp","福井.jp","福岡.jp","福島.jp","秋田.jp","群馬.jp","香川.jp","高知.jp","鳥取.jp","鹿児島.jp","*.kawasaki.jp","*.kitakyushu.jp","*.kobe.jp","*.nagoya.jp","*.sapporo.jp","*.sendai.jp","*.yokohama.jp","!city.kawasaki.jp","!city.kitakyushu.jp","!city.kobe.jp","!city.nagoya.jp","!city.sapporo.jp","!city.sendai.jp","!city.yokohama.jp","aisai.aichi.jp","ama.aichi.jp","anjo.aichi.jp","asuke.aichi.jp","chiryu.aichi.jp","chita.aichi.jp","fuso.aichi.jp","gamagori.aichi.jp","handa.aichi.jp","hazu.aichi.jp","hekinan.aichi.jp","higashiura.aichi.jp","ichinomiya.aichi.jp","inazawa.aichi.jp","inuyama.aichi.jp","isshiki.aichi.jp","iwakura.aichi.jp","kanie.aichi.jp","kariya.aichi.jp","kasugai.aichi.jp","kira.aichi.jp","kiyosu.aichi.jp","komaki.aichi.jp","konan.aichi.jp","kota.aichi.jp","mihama.aichi.jp","miyoshi.aichi.jp","nishio.aichi.jp","nisshin.aichi.jp","obu.aichi.jp","oguchi.aichi.jp","oharu.aichi.jp","okazaki.aichi.jp","owariasahi.aichi.jp","seto.aichi.jp","shikatsu.aichi.jp","shinshiro.aichi.jp","shitara.aichi.jp","tahara.aichi.jp","takahama.aichi.jp","tobishima.aichi.jp","toei.aichi.jp","togo.aichi.jp","tokai.aichi.jp","tokoname.aichi.jp","toyoake.aichi.jp","toyohashi.aichi.jp","toyokawa.aichi.jp","toyone.aichi.jp","toyota.aichi.jp","tsushima.aichi.jp","yatomi.aichi.jp","akita.akita.jp","daisen.akita.jp","fujisato.akita.jp","gojome.akita.jp","hachirogata.akita.jp","happou.akita.jp","higashinaruse.akita.jp","honjo.akita.jp","honjyo.akita.jp","ikawa.akita.jp","kamikoani.akita.jp","kamioka.akita.jp","katagami.akita.jp","kazuno.akita.jp","kitaakita.akita.jp","kosaka.akita.jp","kyowa.akita.jp","misato.akita.jp","mitane.akita.jp","moriyoshi.akita.jp","nikaho.akita.jp","noshiro.akita.jp","odate.akita.jp","oga.akita.jp","ogata.akita.jp","semboku.akita.jp","yokote.akita.jp","yurihonjo.akita.jp","aomori.aomori.jp","gonohe.aomori.jp","hachinohe.aomori.jp","hashikami.aomori.jp","hiranai.aomori.jp","hirosaki.aomori.jp","itayanagi.aomori.jp","kuroishi.aomori.jp","misawa.aomori.jp","mutsu.aomori.jp","nakadomari.aomori.jp","noheji.aomori.jp","oirase.aomori.jp","owani.aomori.jp","rokunohe.aomori.jp","sannohe.aomori.jp","shichinohe.aomori.jp","shingo.aomori.jp","takko.aomori.jp","towada.aomori.jp","tsugaru.aomori.jp","tsuruta.aomori.jp","abiko.chiba.jp","asahi.chiba.jp","chonan.chiba.jp","chosei.chiba.jp","choshi.chiba.jp","chuo.chiba.jp","funabashi.chiba.jp","futtsu.chiba.jp","hanamigawa.chiba.jp","ichihara.chiba.jp","ichikawa.chiba.jp","ichinomiya.chiba.jp","inzai.chiba.jp","isumi.chiba.jp","kamagaya.chiba.jp","kamogawa.chiba.jp","kashiwa.chiba.jp","katori.chiba.jp","katsuura.chiba.jp","kimitsu.chiba.jp","kisarazu.chiba.jp","kozaki.chiba.jp","kujukuri.chiba.jp","kyonan.chiba.jp","matsudo.chiba.jp","midori.chiba.jp","mihama.chiba.jp","minamiboso.chiba.jp","mobara.chiba.jp","mutsuzawa.chiba.jp","nagara.chiba.jp","nagareyama.chiba.jp","narashino.chiba.jp","narita.chiba.jp","noda.chiba.jp","oamishirasato.chiba.jp","omigawa.chiba.jp","onjuku.chiba.jp","otaki.chiba.jp","sakae.chiba.jp","sakura.chiba.jp","shimofusa.chiba.jp","shirako.chiba.jp","shiroi.chiba.jp","shisui.chiba.jp","sodegaura.chiba.jp","sosa.chiba.jp","tako.chiba.jp","tateyama.chiba.jp","togane.chiba.jp","tohnosho.chiba.jp","tomisato.chiba.jp","urayasu.chiba.jp","yachimata.chiba.jp","yachiyo.chiba.jp","yokaichiba.chiba.jp","yokoshibahikari.chiba.jp","yotsukaido.chiba.jp","ainan.ehime.jp","honai.ehime.jp","ikata.ehime.jp","imabari.ehime.jp","iyo.ehime.jp","kamijima.ehime.jp","kihoku.ehime.jp","kumakogen.ehime.jp","masaki.ehime.jp","matsuno.ehime.jp","matsuyama.ehime.jp","namikata.ehime.jp","niihama.ehime.jp","ozu.ehime.jp","saijo.ehime.jp","seiyo.ehime.jp","shikokuchuo.ehime.jp","tobe.ehime.jp","toon.ehime.jp","uchiko.ehime.jp","uwajima.ehime.jp","yawatahama.ehime.jp","echizen.fukui.jp","eiheiji.fukui.jp","fukui.fukui.jp","ikeda.fukui.jp","katsuyama.fukui.jp","mihama.fukui.jp","minamiechizen.fukui.jp","obama.fukui.jp","ohi.fukui.jp","ono.fukui.jp","sabae.fukui.jp","sakai.fukui.jp","takahama.fukui.jp","tsuruga.fukui.jp","wakasa.fukui.jp","ashiya.fukuoka.jp","buzen.fukuoka.jp","chikugo.fukuoka.jp","chikuho.fukuoka.jp","chikujo.fukuoka.jp","chikushino.fukuoka.jp","chikuzen.fukuoka.jp","chuo.fukuoka.jp","dazaifu.fukuoka.jp","fukuchi.fukuoka.jp","hakata.fukuoka.jp","higashi.fukuoka.jp","hirokawa.fukuoka.jp","hisayama.fukuoka.jp","iizuka.fukuoka.jp","inatsuki.fukuoka.jp","kaho.fukuoka.jp","kasuga.fukuoka.jp","kasuya.fukuoka.jp","kawara.fukuoka.jp","keisen.fukuoka.jp","koga.fukuoka.jp","kurate.fukuoka.jp","kurogi.fukuoka.jp","kurume.fukuoka.jp","minami.fukuoka.jp","miyako.fukuoka.jp","miyama.fukuoka.jp","miyawaka.fukuoka.jp","mizumaki.fukuoka.jp","munakata.fukuoka.jp","nakagawa.fukuoka.jp","nakama.fukuoka.jp","nishi.fukuoka.jp","nogata.fukuoka.jp","ogori.fukuoka.jp","okagaki.fukuoka.jp","okawa.fukuoka.jp","oki.fukuoka.jp","omuta.fukuoka.jp","onga.fukuoka.jp","onojo.fukuoka.jp","oto.fukuoka.jp","saigawa.fukuoka.jp","sasaguri.fukuoka.jp","shingu.fukuoka.jp","shinyoshitomi.fukuoka.jp","shonai.fukuoka.jp","soeda.fukuoka.jp","sue.fukuoka.jp","tachiarai.fukuoka.jp","tagawa.fukuoka.jp","takata.fukuoka.jp","toho.fukuoka.jp","toyotsu.fukuoka.jp","tsuiki.fukuoka.jp","ukiha.fukuoka.jp","umi.fukuoka.jp","usui.fukuoka.jp","yamada.fukuoka.jp","yame.fukuoka.jp","yanagawa.fukuoka.jp","yukuhashi.fukuoka.jp","aizubange.fukushima.jp","aizumisato.fukushima.jp","aizuwakamatsu.fukushima.jp","asakawa.fukushima.jp","bandai.fukushima.jp","date.fukushima.jp","fukushima.fukushima.jp","furudono.fukushima.jp","futaba.fukushima.jp","hanawa.fukushima.jp","higashi.fukushima.jp","hirata.fukushima.jp","hirono.fukushima.jp","iitate.fukushima.jp","inawashiro.fukushima.jp","ishikawa.fukushima.jp","iwaki.fukushima.jp","izumizaki.fukushima.jp","kagamiishi.fukushima.jp","kaneyama.fukushima.jp","kawamata.fukushima.jp","kitakata.fukushima.jp","kitashiobara.fukushima.jp","koori.fukushima.jp","koriyama.fukushima.jp","kunimi.fukushima.jp","miharu.fukushima.jp","mishima.fukushima.jp","namie.fukushima.jp","nango.fukushima.jp","nishiaizu.fukushima.jp","nishigo.fukushima.jp","okuma.fukushima.jp","omotego.fukushima.jp","ono.fukushima.jp","otama.fukushima.jp","samegawa.fukushima.jp","shimogo.fukushima.jp","shirakawa.fukushima.jp","showa.fukushima.jp","soma.fukushima.jp","sukagawa.fukushima.jp","taishin.fukushima.jp","tamakawa.fukushima.jp","tanagura.fukushima.jp","tenei.fukushima.jp","yabuki.fukushima.jp","yamato.fukushima.jp","yamatsuri.fukushima.jp","yanaizu.fukushima.jp","yugawa.fukushima.jp","anpachi.gifu.jp","ena.gifu.jp","gifu.gifu.jp","ginan.gifu.jp","godo.gifu.jp","gujo.gifu.jp","hashima.gifu.jp","hichiso.gifu.jp","hida.gifu.jp","higashishirakawa.gifu.jp","ibigawa.gifu.jp","ikeda.gifu.jp","kakamigahara.gifu.jp","kani.gifu.jp","kasahara.gifu.jp","kasamatsu.gifu.jp","kawaue.gifu.jp","kitagata.gifu.jp","mino.gifu.jp","minokamo.gifu.jp","mitake.gifu.jp","mizunami.gifu.jp","motosu.gifu.jp","nakatsugawa.gifu.jp","ogaki.gifu.jp","sakahogi.gifu.jp","seki.gifu.jp","sekigahara.gifu.jp","shirakawa.gifu.jp","tajimi.gifu.jp","takayama.gifu.jp","tarui.gifu.jp","toki.gifu.jp","tomika.gifu.jp","wanouchi.gifu.jp","yamagata.gifu.jp","yaotsu.gifu.jp","yoro.gifu.jp","annaka.gunma.jp","chiyoda.gunma.jp","fujioka.gunma.jp","higashiagatsuma.gunma.jp","isesaki.gunma.jp","itakura.gunma.jp","kanna.gunma.jp","kanra.gunma.jp","katashina.gunma.jp","kawaba.gunma.jp","kiryu.gunma.jp","kusatsu.gunma.jp","maebashi.gunma.jp","meiwa.gunma.jp","midori.gunma.jp","minakami.gunma.jp","naganohara.gunma.jp","nakanojo.gunma.jp","nanmoku.gunma.jp","numata.gunma.jp","oizumi.gunma.jp","ora.gunma.jp","ota.gunma.jp","shibukawa.gunma.jp","shimonita.gunma.jp","shinto.gunma.jp","showa.gunma.jp","takasaki.gunma.jp","takayama.gunma.jp","tamamura.gunma.jp","tatebayashi.gunma.jp","tomioka.gunma.jp","tsukiyono.gunma.jp","tsumagoi.gunma.jp","ueno.gunma.jp","yoshioka.gunma.jp","asaminami.hiroshima.jp","daiwa.hiroshima.jp","etajima.hiroshima.jp","fuchu.hiroshima.jp","fukuyama.hiroshima.jp","hatsukaichi.hiroshima.jp","higashihiroshima.hiroshima.jp","hongo.hiroshima.jp","jinsekikogen.hiroshima.jp","kaita.hiroshima.jp","kui.hiroshima.jp","kumano.hiroshima.jp","kure.hiroshima.jp","mihara.hiroshima.jp","miyoshi.hiroshima.jp","naka.hiroshima.jp","onomichi.hiroshima.jp","osakikamijima.hiroshima.jp","otake.hiroshima.jp","saka.hiroshima.jp","sera.hiroshima.jp","seranishi.hiroshima.jp","shinichi.hiroshima.jp","shobara.hiroshima.jp","takehara.hiroshima.jp","abashiri.hokkaido.jp","abira.hokkaido.jp","aibetsu.hokkaido.jp","akabira.hokkaido.jp","akkeshi.hokkaido.jp","asahikawa.hokkaido.jp","ashibetsu.hokkaido.jp","ashoro.hokkaido.jp","assabu.hokkaido.jp","atsuma.hokkaido.jp","bibai.hokkaido.jp","biei.hokkaido.jp","bifuka.hokkaido.jp","bihoro.hokkaido.jp","biratori.hokkaido.jp","chippubetsu.hokkaido.jp","chitose.hokkaido.jp","date.hokkaido.jp","ebetsu.hokkaido.jp","embetsu.hokkaido.jp","eniwa.hokkaido.jp","erimo.hokkaido.jp","esan.hokkaido.jp","esashi.hokkaido.jp","fukagawa.hokkaido.jp","fukushima.hokkaido.jp","furano.hokkaido.jp","furubira.hokkaido.jp","haboro.hokkaido.jp","hakodate.hokkaido.jp","hamatonbetsu.hokkaido.jp","hidaka.hokkaido.jp","higashikagura.hokkaido.jp","higashikawa.hokkaido.jp","hiroo.hokkaido.jp","hokuryu.hokkaido.jp","hokuto.hokkaido.jp","honbetsu.hokkaido.jp","horokanai.hokkaido.jp","horonobe.hokkaido.jp","ikeda.hokkaido.jp","imakane.hokkaido.jp","ishikari.hokkaido.jp","iwamizawa.hokkaido.jp","iwanai.hokkaido.jp","kamifurano.hokkaido.jp","kamikawa.hokkaido.jp","kamishihoro.hokkaido.jp","kamisunagawa.hokkaido.jp","kamoenai.hokkaido.jp","kayabe.hokkaido.jp","kembuchi.hokkaido.jp","kikonai.hokkaido.jp","kimobetsu.hokkaido.jp","kitahiroshima.hokkaido.jp","kitami.hokkaido.jp","kiyosato.hokkaido.jp","koshimizu.hokkaido.jp","kunneppu.hokkaido.jp","kuriyama.hokkaido.jp","kuromatsunai.hokkaido.jp","kushiro.hokkaido.jp","kutchan.hokkaido.jp","kyowa.hokkaido.jp","mashike.hokkaido.jp","matsumae.hokkaido.jp","mikasa.hokkaido.jp","minamifurano.hokkaido.jp","mombetsu.hokkaido.jp","moseushi.hokkaido.jp","mukawa.hokkaido.jp","muroran.hokkaido.jp","naie.hokkaido.jp","nakagawa.hokkaido.jp","nakasatsunai.hokkaido.jp","nakatombetsu.hokkaido.jp","nanae.hokkaido.jp","nanporo.hokkaido.jp","nayoro.hokkaido.jp","nemuro.hokkaido.jp","niikappu.hokkaido.jp","niki.hokkaido.jp","nishiokoppe.hokkaido.jp","noboribetsu.hokkaido.jp","numata.hokkaido.jp","obihiro.hokkaido.jp","obira.hokkaido.jp","oketo.hokkaido.jp","okoppe.hokkaido.jp","otaru.hokkaido.jp","otobe.hokkaido.jp","otofuke.hokkaido.jp","otoineppu.hokkaido.jp","oumu.hokkaido.jp","ozora.hokkaido.jp","pippu.hokkaido.jp","rankoshi.hokkaido.jp","rebun.hokkaido.jp","rikubetsu.hokkaido.jp","rishiri.hokkaido.jp","rishirifuji.hokkaido.jp","saroma.hokkaido.jp","sarufutsu.hokkaido.jp","shakotan.hokkaido.jp","shari.hokkaido.jp","shibecha.hokkaido.jp","shibetsu.hokkaido.jp","shikabe.hokkaido.jp","shikaoi.hokkaido.jp","shimamaki.hokkaido.jp","shimizu.hokkaido.jp","shimokawa.hokkaido.jp","shinshinotsu.hokkaido.jp","shintoku.hokkaido.jp","shiranuka.hokkaido.jp","shiraoi.hokkaido.jp","shiriuchi.hokkaido.jp","sobetsu.hokkaido.jp","sunagawa.hokkaido.jp","taiki.hokkaido.jp","takasu.hokkaido.jp","takikawa.hokkaido.jp","takinoue.hokkaido.jp","teshikaga.hokkaido.jp","tobetsu.hokkaido.jp","tohma.hokkaido.jp","tomakomai.hokkaido.jp","tomari.hokkaido.jp","toya.hokkaido.jp","toyako.hokkaido.jp","toyotomi.hokkaido.jp","toyoura.hokkaido.jp","tsubetsu.hokkaido.jp","tsukigata.hokkaido.jp","urakawa.hokkaido.jp","urausu.hokkaido.jp","uryu.hokkaido.jp","utashinai.hokkaido.jp","wakkanai.hokkaido.jp","wassamu.hokkaido.jp","yakumo.hokkaido.jp","yoichi.hokkaido.jp","aioi.hyogo.jp","akashi.hyogo.jp","ako.hyogo.jp","amagasaki.hyogo.jp","aogaki.hyogo.jp","asago.hyogo.jp","ashiya.hyogo.jp","awaji.hyogo.jp","fukusaki.hyogo.jp","goshiki.hyogo.jp","harima.hyogo.jp","himeji.hyogo.jp","ichikawa.hyogo.jp","inagawa.hyogo.jp","itami.hyogo.jp","kakogawa.hyogo.jp","kamigori.hyogo.jp","kamikawa.hyogo.jp","kasai.hyogo.jp","kasuga.hyogo.jp","kawanishi.hyogo.jp","miki.hyogo.jp","minamiawaji.hyogo.jp","nishinomiya.hyogo.jp","nishiwaki.hyogo.jp","ono.hyogo.jp","sanda.hyogo.jp","sannan.hyogo.jp","sasayama.hyogo.jp","sayo.hyogo.jp","shingu.hyogo.jp","shinonsen.hyogo.jp","shiso.hyogo.jp","sumoto.hyogo.jp","taishi.hyogo.jp","taka.hyogo.jp","takarazuka.hyogo.jp","takasago.hyogo.jp","takino.hyogo.jp","tamba.hyogo.jp","tatsuno.hyogo.jp","toyooka.hyogo.jp","yabu.hyogo.jp","yashiro.hyogo.jp","yoka.hyogo.jp","yokawa.hyogo.jp","ami.ibaraki.jp","asahi.ibaraki.jp","bando.ibaraki.jp","chikusei.ibaraki.jp","daigo.ibaraki.jp","fujishiro.ibaraki.jp","hitachi.ibaraki.jp","hitachinaka.ibaraki.jp","hitachiomiya.ibaraki.jp","hitachiota.ibaraki.jp","ibaraki.ibaraki.jp","ina.ibaraki.jp","inashiki.ibaraki.jp","itako.ibaraki.jp","iwama.ibaraki.jp","joso.ibaraki.jp","kamisu.ibaraki.jp","kasama.ibaraki.jp","kashima.ibaraki.jp","kasumigaura.ibaraki.jp","koga.ibaraki.jp","miho.ibaraki.jp","mito.ibaraki.jp","moriya.ibaraki.jp","naka.ibaraki.jp","namegata.ibaraki.jp","oarai.ibaraki.jp","ogawa.ibaraki.jp","omitama.ibaraki.jp","ryugasaki.ibaraki.jp","sakai.ibaraki.jp","sakuragawa.ibaraki.jp","shimodate.ibaraki.jp","shimotsuma.ibaraki.jp","shirosato.ibaraki.jp","sowa.ibaraki.jp","suifu.ibaraki.jp","takahagi.ibaraki.jp","tamatsukuri.ibaraki.jp","tokai.ibaraki.jp","tomobe.ibaraki.jp","tone.ibaraki.jp","toride.ibaraki.jp","tsuchiura.ibaraki.jp","tsukuba.ibaraki.jp","uchihara.ibaraki.jp","ushiku.ibaraki.jp","yachiyo.ibaraki.jp","yamagata.ibaraki.jp","yawara.ibaraki.jp","yuki.ibaraki.jp","anamizu.ishikawa.jp","hakui.ishikawa.jp","hakusan.ishikawa.jp","kaga.ishikawa.jp","kahoku.ishikawa.jp","kanazawa.ishikawa.jp","kawakita.ishikawa.jp","komatsu.ishikawa.jp","nakanoto.ishikawa.jp","nanao.ishikawa.jp","nomi.ishikawa.jp","nonoichi.ishikawa.jp","noto.ishikawa.jp","shika.ishikawa.jp","suzu.ishikawa.jp","tsubata.ishikawa.jp","tsurugi.ishikawa.jp","uchinada.ishikawa.jp","wajima.ishikawa.jp","fudai.iwate.jp","fujisawa.iwate.jp","hanamaki.iwate.jp","hiraizumi.iwate.jp","hirono.iwate.jp","ichinohe.iwate.jp","ichinoseki.iwate.jp","iwaizumi.iwate.jp","iwate.iwate.jp","joboji.iwate.jp","kamaishi.iwate.jp","kanegasaki.iwate.jp","karumai.iwate.jp","kawai.iwate.jp","kitakami.iwate.jp","kuji.iwate.jp","kunohe.iwate.jp","kuzumaki.iwate.jp","miyako.iwate.jp","mizusawa.iwate.jp","morioka.iwate.jp","ninohe.iwate.jp","noda.iwate.jp","ofunato.iwate.jp","oshu.iwate.jp","otsuchi.iwate.jp","rikuzentakata.iwate.jp","shiwa.iwate.jp","shizukuishi.iwate.jp","sumita.iwate.jp","tanohata.iwate.jp","tono.iwate.jp","yahaba.iwate.jp","yamada.iwate.jp","ayagawa.kagawa.jp","higashikagawa.kagawa.jp","kanonji.kagawa.jp","kotohira.kagawa.jp","manno.kagawa.jp","marugame.kagawa.jp","mitoyo.kagawa.jp","naoshima.kagawa.jp","sanuki.kagawa.jp","tadotsu.kagawa.jp","takamatsu.kagawa.jp","tonosho.kagawa.jp","uchinomi.kagawa.jp","utazu.kagawa.jp","zentsuji.kagawa.jp","akune.kagoshima.jp","amami.kagoshima.jp","hioki.kagoshima.jp","isa.kagoshima.jp","isen.kagoshima.jp","izumi.kagoshima.jp","kagoshima.kagoshima.jp","kanoya.kagoshima.jp","kawanabe.kagoshima.jp","kinko.kagoshima.jp","kouyama.kagoshima.jp","makurazaki.kagoshima.jp","matsumoto.kagoshima.jp","minamitane.kagoshima.jp","nakatane.kagoshima.jp","nishinoomote.kagoshima.jp","satsumasendai.kagoshima.jp","soo.kagoshima.jp","tarumizu.kagoshima.jp","yusui.kagoshima.jp","aikawa.kanagawa.jp","atsugi.kanagawa.jp","ayase.kanagawa.jp","chigasaki.kanagawa.jp","ebina.kanagawa.jp","fujisawa.kanagawa.jp","hadano.kanagawa.jp","hakone.kanagawa.jp","hiratsuka.kanagawa.jp","isehara.kanagawa.jp","kaisei.kanagawa.jp","kamakura.kanagawa.jp","kiyokawa.kanagawa.jp","matsuda.kanagawa.jp","minamiashigara.kanagawa.jp","miura.kanagawa.jp","nakai.kanagawa.jp","ninomiya.kanagawa.jp","odawara.kanagawa.jp","oi.kanagawa.jp","oiso.kanagawa.jp","sagamihara.kanagawa.jp","samukawa.kanagawa.jp","tsukui.kanagawa.jp","yamakita.kanagawa.jp","yamato.kanagawa.jp","yokosuka.kanagawa.jp","yugawara.kanagawa.jp","zama.kanagawa.jp","zushi.kanagawa.jp","aki.kochi.jp","geisei.kochi.jp","hidaka.kochi.jp","higashitsuno.kochi.jp","ino.kochi.jp","kagami.kochi.jp","kami.kochi.jp","kitagawa.kochi.jp","kochi.kochi.jp","mihara.kochi.jp","motoyama.kochi.jp","muroto.kochi.jp","nahari.kochi.jp","nakamura.kochi.jp","nankoku.kochi.jp","nishitosa.kochi.jp","niyodogawa.kochi.jp","ochi.kochi.jp","okawa.kochi.jp","otoyo.kochi.jp","otsuki.kochi.jp","sakawa.kochi.jp","sukumo.kochi.jp","susaki.kochi.jp","tosa.kochi.jp","tosashimizu.kochi.jp","toyo.kochi.jp","tsuno.kochi.jp","umaji.kochi.jp","yasuda.kochi.jp","yusuhara.kochi.jp","amakusa.kumamoto.jp","arao.kumamoto.jp","aso.kumamoto.jp","choyo.kumamoto.jp","gyokuto.kumamoto.jp","kamiamakusa.kumamoto.jp","kikuchi.kumamoto.jp","kumamoto.kumamoto.jp","mashiki.kumamoto.jp","mifune.kumamoto.jp","minamata.kumamoto.jp","minamioguni.kumamoto.jp","nagasu.kumamoto.jp","nishihara.kumamoto.jp","oguni.kumamoto.jp","ozu.kumamoto.jp","sumoto.kumamoto.jp","takamori.kumamoto.jp","uki.kumamoto.jp","uto.kumamoto.jp","yamaga.kumamoto.jp","yamato.kumamoto.jp","yatsushiro.kumamoto.jp","ayabe.kyoto.jp","fukuchiyama.kyoto.jp","higashiyama.kyoto.jp","ide.kyoto.jp","ine.kyoto.jp","joyo.kyoto.jp","kameoka.kyoto.jp","kamo.kyoto.jp","kita.kyoto.jp","kizu.kyoto.jp","kumiyama.kyoto.jp","kyotamba.kyoto.jp","kyotanabe.kyoto.jp","kyotango.kyoto.jp","maizuru.kyoto.jp","minami.kyoto.jp","minamiyamashiro.kyoto.jp","miyazu.kyoto.jp","muko.kyoto.jp","nagaokakyo.kyoto.jp","nakagyo.kyoto.jp","nantan.kyoto.jp","oyamazaki.kyoto.jp","sakyo.kyoto.jp","seika.kyoto.jp","tanabe.kyoto.jp","uji.kyoto.jp","ujitawara.kyoto.jp","wazuka.kyoto.jp","yamashina.kyoto.jp","yawata.kyoto.jp","asahi.mie.jp","inabe.mie.jp","ise.mie.jp","kameyama.mie.jp","kawagoe.mie.jp","kiho.mie.jp","kisosaki.mie.jp","kiwa.mie.jp","komono.mie.jp","kumano.mie.jp","kuwana.mie.jp","matsusaka.mie.jp","meiwa.mie.jp","mihama.mie.jp","minamiise.mie.jp","misugi.mie.jp","miyama.mie.jp","nabari.mie.jp","shima.mie.jp","suzuka.mie.jp","tado.mie.jp","taiki.mie.jp","taki.mie.jp","tamaki.mie.jp","toba.mie.jp","tsu.mie.jp","udono.mie.jp","ureshino.mie.jp","watarai.mie.jp","yokkaichi.mie.jp","furukawa.miyagi.jp","higashimatsushima.miyagi.jp","ishinomaki.miyagi.jp","iwanuma.miyagi.jp","kakuda.miyagi.jp","kami.miyagi.jp","kawasaki.miyagi.jp","marumori.miyagi.jp","matsushima.miyagi.jp","minamisanriku.miyagi.jp","misato.miyagi.jp","murata.miyagi.jp","natori.miyagi.jp","ogawara.miyagi.jp","ohira.miyagi.jp","onagawa.miyagi.jp","osaki.miyagi.jp","rifu.miyagi.jp","semine.miyagi.jp","shibata.miyagi.jp","shichikashuku.miyagi.jp","shikama.miyagi.jp","shiogama.miyagi.jp","shiroishi.miyagi.jp","tagajo.miyagi.jp","taiwa.miyagi.jp","tome.miyagi.jp","tomiya.miyagi.jp","wakuya.miyagi.jp","watari.miyagi.jp","yamamoto.miyagi.jp","zao.miyagi.jp","aya.miyazaki.jp","ebino.miyazaki.jp","gokase.miyazaki.jp","hyuga.miyazaki.jp","kadogawa.miyazaki.jp","kawaminami.miyazaki.jp","kijo.miyazaki.jp","kitagawa.miyazaki.jp","kitakata.miyazaki.jp","kitaura.miyazaki.jp","kobayashi.miyazaki.jp","kunitomi.miyazaki.jp","kushima.miyazaki.jp","mimata.miyazaki.jp","miyakonojo.miyazaki.jp","miyazaki.miyazaki.jp","morotsuka.miyazaki.jp","nichinan.miyazaki.jp","nishimera.miyazaki.jp","nobeoka.miyazaki.jp","saito.miyazaki.jp","shiiba.miyazaki.jp","shintomi.miyazaki.jp","takaharu.miyazaki.jp","takanabe.miyazaki.jp","takazaki.miyazaki.jp","tsuno.miyazaki.jp","achi.nagano.jp","agematsu.nagano.jp","anan.nagano.jp","aoki.nagano.jp","asahi.nagano.jp","azumino.nagano.jp","chikuhoku.nagano.jp","chikuma.nagano.jp","chino.nagano.jp","fujimi.nagano.jp","hakuba.nagano.jp","hara.nagano.jp","hiraya.nagano.jp","iida.nagano.jp","iijima.nagano.jp","iiyama.nagano.jp","iizuna.nagano.jp","ikeda.nagano.jp","ikusaka.nagano.jp","ina.nagano.jp","karuizawa.nagano.jp","kawakami.nagano.jp","kiso.nagano.jp","kisofukushima.nagano.jp","kitaaiki.nagano.jp","komagane.nagano.jp","komoro.nagano.jp","matsukawa.nagano.jp","matsumoto.nagano.jp","miasa.nagano.jp","minamiaiki.nagano.jp","minamimaki.nagano.jp","minamiminowa.nagano.jp","minowa.nagano.jp","miyada.nagano.jp","miyota.nagano.jp","mochizuki.nagano.jp","nagano.nagano.jp","nagawa.nagano.jp","nagiso.nagano.jp","nakagawa.nagano.jp","nakano.nagano.jp","nozawaonsen.nagano.jp","obuse.nagano.jp","ogawa.nagano.jp","okaya.nagano.jp","omachi.nagano.jp","omi.nagano.jp","ookuwa.nagano.jp","ooshika.nagano.jp","otaki.nagano.jp","otari.nagano.jp","sakae.nagano.jp","sakaki.nagano.jp","saku.nagano.jp","sakuho.nagano.jp","shimosuwa.nagano.jp","shinanomachi.nagano.jp","shiojiri.nagano.jp","suwa.nagano.jp","suzaka.nagano.jp","takagi.nagano.jp","takamori.nagano.jp","takayama.nagano.jp","tateshina.nagano.jp","tatsuno.nagano.jp","togakushi.nagano.jp","togura.nagano.jp","tomi.nagano.jp","ueda.nagano.jp","wada.nagano.jp","yamagata.nagano.jp","yamanouchi.nagano.jp","yasaka.nagano.jp","yasuoka.nagano.jp","chijiwa.nagasaki.jp","futsu.nagasaki.jp","goto.nagasaki.jp","hasami.nagasaki.jp","hirado.nagasaki.jp","iki.nagasaki.jp","isahaya.nagasaki.jp","kawatana.nagasaki.jp","kuchinotsu.nagasaki.jp","matsuura.nagasaki.jp","nagasaki.nagasaki.jp","obama.nagasaki.jp","omura.nagasaki.jp","oseto.nagasaki.jp","saikai.nagasaki.jp","sasebo.nagasaki.jp","seihi.nagasaki.jp","shimabara.nagasaki.jp","shinkamigoto.nagasaki.jp","togitsu.nagasaki.jp","tsushima.nagasaki.jp","unzen.nagasaki.jp","ando.nara.jp","gose.nara.jp","heguri.nara.jp","higashiyoshino.nara.jp","ikaruga.nara.jp","ikoma.nara.jp","kamikitayama.nara.jp","kanmaki.nara.jp","kashiba.nara.jp","kashihara.nara.jp","katsuragi.nara.jp","kawai.nara.jp","kawakami.nara.jp","kawanishi.nara.jp","koryo.nara.jp","kurotaki.nara.jp","mitsue.nara.jp","miyake.nara.jp","nara.nara.jp","nosegawa.nara.jp","oji.nara.jp","ouda.nara.jp","oyodo.nara.jp","sakurai.nara.jp","sango.nara.jp","shimoichi.nara.jp","shimokitayama.nara.jp","shinjo.nara.jp","soni.nara.jp","takatori.nara.jp","tawaramoto.nara.jp","tenkawa.nara.jp","tenri.nara.jp","uda.nara.jp","yamatokoriyama.nara.jp","yamatotakada.nara.jp","yamazoe.nara.jp","yoshino.nara.jp","aga.niigata.jp","agano.niigata.jp","gosen.niigata.jp","itoigawa.niigata.jp","izumozaki.niigata.jp","joetsu.niigata.jp","kamo.niigata.jp","kariwa.niigata.jp","kashiwazaki.niigata.jp","minamiuonuma.niigata.jp","mitsuke.niigata.jp","muika.niigata.jp","murakami.niigata.jp","myoko.niigata.jp","nagaoka.niigata.jp","niigata.niigata.jp","ojiya.niigata.jp","omi.niigata.jp","sado.niigata.jp","sanjo.niigata.jp","seiro.niigata.jp","seirou.niigata.jp","sekikawa.niigata.jp","shibata.niigata.jp","tagami.niigata.jp","tainai.niigata.jp","tochio.niigata.jp","tokamachi.niigata.jp","tsubame.niigata.jp","tsunan.niigata.jp","uonuma.niigata.jp","yahiko.niigata.jp","yoita.niigata.jp","yuzawa.niigata.jp","beppu.oita.jp","bungoono.oita.jp","bungotakada.oita.jp","hasama.oita.jp","hiji.oita.jp","himeshima.oita.jp","hita.oita.jp","kamitsue.oita.jp","kokonoe.oita.jp","kuju.oita.jp","kunisaki.oita.jp","kusu.oita.jp","oita.oita.jp","saiki.oita.jp","taketa.oita.jp","tsukumi.oita.jp","usa.oita.jp","usuki.oita.jp","yufu.oita.jp","akaiwa.okayama.jp","asakuchi.okayama.jp","bizen.okayama.jp","hayashima.okayama.jp","ibara.okayama.jp","kagamino.okayama.jp","kasaoka.okayama.jp","kibichuo.okayama.jp","kumenan.okayama.jp","kurashiki.okayama.jp","maniwa.okayama.jp","misaki.okayama.jp","nagi.okayama.jp","niimi.okayama.jp","nishiawakura.okayama.jp","okayama.okayama.jp","satosho.okayama.jp","setouchi.okayama.jp","shinjo.okayama.jp","shoo.okayama.jp","soja.okayama.jp","takahashi.okayama.jp","tamano.okayama.jp","tsuyama.okayama.jp","wake.okayama.jp","yakage.okayama.jp","aguni.okinawa.jp","ginowan.okinawa.jp","ginoza.okinawa.jp","gushikami.okinawa.jp","haebaru.okinawa.jp","higashi.okinawa.jp","hirara.okinawa.jp","iheya.okinawa.jp","ishigaki.okinawa.jp","ishikawa.okinawa.jp","itoman.okinawa.jp","izena.okinawa.jp","kadena.okinawa.jp","kin.okinawa.jp","kitadaito.okinawa.jp","kitanakagusuku.okinawa.jp","kumejima.okinawa.jp","kunigami.okinawa.jp","minamidaito.okinawa.jp","motobu.okinawa.jp","nago.okinawa.jp","naha.okinawa.jp","nakagusuku.okinawa.jp","nakijin.okinawa.jp","nanjo.okinawa.jp","nishihara.okinawa.jp","ogimi.okinawa.jp","okinawa.okinawa.jp","onna.okinawa.jp","shimoji.okinawa.jp","taketomi.okinawa.jp","tarama.okinawa.jp","tokashiki.okinawa.jp","tomigusuku.okinawa.jp","tonaki.okinawa.jp","urasoe.okinawa.jp","uruma.okinawa.jp","yaese.okinawa.jp","yomitan.okinawa.jp","yonabaru.okinawa.jp","yonaguni.okinawa.jp","zamami.okinawa.jp","abeno.osaka.jp","chihayaakasaka.osaka.jp","chuo.osaka.jp","daito.osaka.jp","fujiidera.osaka.jp","habikino.osaka.jp","hannan.osaka.jp","higashiosaka.osaka.jp","higashisumiyoshi.osaka.jp","higashiyodogawa.osaka.jp","hirakata.osaka.jp","ibaraki.osaka.jp","ikeda.osaka.jp","izumi.osaka.jp","izumiotsu.osaka.jp","izumisano.osaka.jp","kadoma.osaka.jp","kaizuka.osaka.jp","kanan.osaka.jp","kashiwara.osaka.jp","katano.osaka.jp","kawachinagano.osaka.jp","kishiwada.osaka.jp","kita.osaka.jp","kumatori.osaka.jp","matsubara.osaka.jp","minato.osaka.jp","minoh.osaka.jp","misaki.osaka.jp","moriguchi.osaka.jp","neyagawa.osaka.jp","nishi.osaka.jp","nose.osaka.jp","osakasayama.osaka.jp","sakai.osaka.jp","sayama.osaka.jp","sennan.osaka.jp","settsu.osaka.jp","shijonawate.osaka.jp","shimamoto.osaka.jp","suita.osaka.jp","tadaoka.osaka.jp","taishi.osaka.jp","tajiri.osaka.jp","takaishi.osaka.jp","takatsuki.osaka.jp","tondabayashi.osaka.jp","toyonaka.osaka.jp","toyono.osaka.jp","yao.osaka.jp","ariake.saga.jp","arita.saga.jp","fukudomi.saga.jp","genkai.saga.jp","hamatama.saga.jp","hizen.saga.jp","imari.saga.jp","kamimine.saga.jp","kanzaki.saga.jp","karatsu.saga.jp","kashima.saga.jp","kitagata.saga.jp","kitahata.saga.jp","kiyama.saga.jp","kouhoku.saga.jp","kyuragi.saga.jp","nishiarita.saga.jp","ogi.saga.jp","omachi.saga.jp","ouchi.saga.jp","saga.saga.jp","shiroishi.saga.jp","taku.saga.jp","tara.saga.jp","tosu.saga.jp","yoshinogari.saga.jp","arakawa.saitama.jp","asaka.saitama.jp","chichibu.saitama.jp","fujimi.saitama.jp","fujimino.saitama.jp","fukaya.saitama.jp","hanno.saitama.jp","hanyu.saitama.jp","hasuda.saitama.jp","hatogaya.saitama.jp","hatoyama.saitama.jp","hidaka.saitama.jp","higashichichibu.saitama.jp","higashimatsuyama.saitama.jp","honjo.saitama.jp","ina.saitama.jp","iruma.saitama.jp","iwatsuki.saitama.jp","kamiizumi.saitama.jp","kamikawa.saitama.jp","kamisato.saitama.jp","kasukabe.saitama.jp","kawagoe.saitama.jp","kawaguchi.saitama.jp","kawajima.saitama.jp","kazo.saitama.jp","kitamoto.saitama.jp","koshigaya.saitama.jp","kounosu.saitama.jp","kuki.saitama.jp","kumagaya.saitama.jp","matsubushi.saitama.jp","minano.saitama.jp","misato.saitama.jp","miyashiro.saitama.jp","miyoshi.saitama.jp","moroyama.saitama.jp","nagatoro.saitama.jp","namegawa.saitama.jp","niiza.saitama.jp","ogano.saitama.jp","ogawa.saitama.jp","ogose.saitama.jp","okegawa.saitama.jp","omiya.saitama.jp","otaki.saitama.jp","ranzan.saitama.jp","ryokami.saitama.jp","saitama.saitama.jp","sakado.saitama.jp","satte.saitama.jp","sayama.saitama.jp","shiki.saitama.jp","shiraoka.saitama.jp","soka.saitama.jp","sugito.saitama.jp","toda.saitama.jp","tokigawa.saitama.jp","tokorozawa.saitama.jp","tsurugashima.saitama.jp","urawa.saitama.jp","warabi.saitama.jp","yashio.saitama.jp","yokoze.saitama.jp","yono.saitama.jp","yorii.saitama.jp","yoshida.saitama.jp","yoshikawa.saitama.jp","yoshimi.saitama.jp","aisho.shiga.jp","gamo.shiga.jp","higashiomi.shiga.jp","hikone.shiga.jp","koka.shiga.jp","konan.shiga.jp","kosei.shiga.jp","koto.shiga.jp","kusatsu.shiga.jp","maibara.shiga.jp","moriyama.shiga.jp","nagahama.shiga.jp","nishiazai.shiga.jp","notogawa.shiga.jp","omihachiman.shiga.jp","otsu.shiga.jp","ritto.shiga.jp","ryuoh.shiga.jp","takashima.shiga.jp","takatsuki.shiga.jp","torahime.shiga.jp","toyosato.shiga.jp","yasu.shiga.jp","akagi.shimane.jp","ama.shimane.jp","gotsu.shimane.jp","hamada.shimane.jp","higashiizumo.shimane.jp","hikawa.shimane.jp","hikimi.shimane.jp","izumo.shimane.jp","kakinoki.shimane.jp","masuda.shimane.jp","matsue.shimane.jp","misato.shimane.jp","nishinoshima.shimane.jp","ohda.shimane.jp","okinoshima.shimane.jp","okuizumo.shimane.jp","shimane.shimane.jp","tamayu.shimane.jp","tsuwano.shimane.jp","unnan.shimane.jp","yakumo.shimane.jp","yasugi.shimane.jp","yatsuka.shimane.jp","arai.shizuoka.jp","atami.shizuoka.jp","fuji.shizuoka.jp","fujieda.shizuoka.jp","fujikawa.shizuoka.jp","fujinomiya.shizuoka.jp","fukuroi.shizuoka.jp","gotemba.shizuoka.jp","haibara.shizuoka.jp","hamamatsu.shizuoka.jp","higashiizu.shizuoka.jp","ito.shizuoka.jp","iwata.shizuoka.jp","izu.shizuoka.jp","izunokuni.shizuoka.jp","kakegawa.shizuoka.jp","kannami.shizuoka.jp","kawanehon.shizuoka.jp","kawazu.shizuoka.jp","kikugawa.shizuoka.jp","kosai.shizuoka.jp","makinohara.shizuoka.jp","matsuzaki.shizuoka.jp","minamiizu.shizuoka.jp","mishima.shizuoka.jp","morimachi.shizuoka.jp","nishiizu.shizuoka.jp","numazu.shizuoka.jp","omaezaki.shizuoka.jp","shimada.shizuoka.jp","shimizu.shizuoka.jp","shimoda.shizuoka.jp","shizuoka.shizuoka.jp","susono.shizuoka.jp","yaizu.shizuoka.jp","yoshida.shizuoka.jp","ashikaga.tochigi.jp","bato.tochigi.jp","haga.tochigi.jp","ichikai.tochigi.jp","iwafune.tochigi.jp","kaminokawa.tochigi.jp","kanuma.tochigi.jp","karasuyama.tochigi.jp","kuroiso.tochigi.jp","mashiko.tochigi.jp","mibu.tochigi.jp","moka.tochigi.jp","motegi.tochigi.jp","nasu.tochigi.jp","nasushiobara.tochigi.jp","nikko.tochigi.jp","nishikata.tochigi.jp","nogi.tochigi.jp","ohira.tochigi.jp","ohtawara.tochigi.jp","oyama.tochigi.jp","sakura.tochigi.jp","sano.tochigi.jp","shimotsuke.tochigi.jp","shioya.tochigi.jp","takanezawa.tochigi.jp","tochigi.tochigi.jp","tsuga.tochigi.jp","ujiie.tochigi.jp","utsunomiya.tochigi.jp","yaita.tochigi.jp","aizumi.tokushima.jp","anan.tokushima.jp","ichiba.tokushima.jp","itano.tokushima.jp","kainan.tokushima.jp","komatsushima.tokushima.jp","matsushige.tokushima.jp","mima.tokushima.jp","minami.tokushima.jp","miyoshi.tokushima.jp","mugi.tokushima.jp","nakagawa.tokushima.jp","naruto.tokushima.jp","sanagochi.tokushima.jp","shishikui.tokushima.jp","tokushima.tokushima.jp","wajiki.tokushima.jp","adachi.tokyo.jp","akiruno.tokyo.jp","akishima.tokyo.jp","aogashima.tokyo.jp","arakawa.tokyo.jp","bunkyo.tokyo.jp","chiyoda.tokyo.jp","chofu.tokyo.jp","chuo.tokyo.jp","edogawa.tokyo.jp","fuchu.tokyo.jp","fussa.tokyo.jp","hachijo.tokyo.jp","hachioji.tokyo.jp","hamura.tokyo.jp","higashikurume.tokyo.jp","higashimurayama.tokyo.jp","higashiyamato.tokyo.jp","hino.tokyo.jp","hinode.tokyo.jp","hinohara.tokyo.jp","inagi.tokyo.jp","itabashi.tokyo.jp","katsushika.tokyo.jp","kita.tokyo.jp","kiyose.tokyo.jp","kodaira.tokyo.jp","koganei.tokyo.jp","kokubunji.tokyo.jp","komae.tokyo.jp","koto.tokyo.jp","kouzushima.tokyo.jp","kunitachi.tokyo.jp","machida.tokyo.jp","meguro.tokyo.jp","minato.tokyo.jp","mitaka.tokyo.jp","mizuho.tokyo.jp","musashimurayama.tokyo.jp","musashino.tokyo.jp","nakano.tokyo.jp","nerima.tokyo.jp","ogasawara.tokyo.jp","okutama.tokyo.jp","ome.tokyo.jp","oshima.tokyo.jp","ota.tokyo.jp","setagaya.tokyo.jp","shibuya.tokyo.jp","shinagawa.tokyo.jp","shinjuku.tokyo.jp","suginami.tokyo.jp","sumida.tokyo.jp","tachikawa.tokyo.jp","taito.tokyo.jp","tama.tokyo.jp","toshima.tokyo.jp","chizu.tottori.jp","hino.tottori.jp","kawahara.tottori.jp","koge.tottori.jp","kotoura.tottori.jp","misasa.tottori.jp","nanbu.tottori.jp","nichinan.tottori.jp","sakaiminato.tottori.jp","tottori.tottori.jp","wakasa.tottori.jp","yazu.tottori.jp","yonago.tottori.jp","asahi.toyama.jp","fuchu.toyama.jp","fukumitsu.toyama.jp","funahashi.toyama.jp","himi.toyama.jp","imizu.toyama.jp","inami.toyama.jp","johana.toyama.jp","kamiichi.toyama.jp","kurobe.toyama.jp","nakaniikawa.toyama.jp","namerikawa.toyama.jp","nanto.toyama.jp","nyuzen.toyama.jp","oyabe.toyama.jp","taira.toyama.jp","takaoka.toyama.jp","tateyama.toyama.jp","toga.toyama.jp","tonami.toyama.jp","toyama.toyama.jp","unazuki.toyama.jp","uozu.toyama.jp","yamada.toyama.jp","arida.wakayama.jp","aridagawa.wakayama.jp","gobo.wakayama.jp","hashimoto.wakayama.jp","hidaka.wakayama.jp","hirogawa.wakayama.jp","inami.wakayama.jp","iwade.wakayama.jp","kainan.wakayama.jp","kamitonda.wakayama.jp","katsuragi.wakayama.jp","kimino.wakayama.jp","kinokawa.wakayama.jp","kitayama.wakayama.jp","koya.wakayama.jp","koza.wakayama.jp","kozagawa.wakayama.jp","kudoyama.wakayama.jp","kushimoto.wakayama.jp","mihama.wakayama.jp","misato.wakayama.jp","nachikatsuura.wakayama.jp","shingu.wakayama.jp","shirahama.wakayama.jp","taiji.wakayama.jp","tanabe.wakayama.jp","wakayama.wakayama.jp","yuasa.wakayama.jp","yura.wakayama.jp","asahi.yamagata.jp","funagata.yamagata.jp","higashine.yamagata.jp","iide.yamagata.jp","kahoku.yamagata.jp","kaminoyama.yamagata.jp","kaneyama.yamagata.jp","kawanishi.yamagata.jp","mamurogawa.yamagata.jp","mikawa.yamagata.jp","murayama.yamagata.jp","nagai.yamagata.jp","nakayama.yamagata.jp","nanyo.yamagata.jp","nishikawa.yamagata.jp","obanazawa.yamagata.jp","oe.yamagata.jp","oguni.yamagata.jp","ohkura.yamagata.jp","oishida.yamagata.jp","sagae.yamagata.jp","sakata.yamagata.jp","sakegawa.yamagata.jp","shinjo.yamagata.jp","shirataka.yamagata.jp","shonai.yamagata.jp","takahata.yamagata.jp","tendo.yamagata.jp","tozawa.yamagata.jp","tsuruoka.yamagata.jp","yamagata.yamagata.jp","yamanobe.yamagata.jp","yonezawa.yamagata.jp","yuza.yamagata.jp","abu.yamaguchi.jp","hagi.yamaguchi.jp","hikari.yamaguchi.jp","hofu.yamaguchi.jp","iwakuni.yamaguchi.jp","kudamatsu.yamaguchi.jp","mitou.yamaguchi.jp","nagato.yamaguchi.jp","oshima.yamaguchi.jp","shimonoseki.yamaguchi.jp","shunan.yamaguchi.jp","tabuse.yamaguchi.jp","tokuyama.yamaguchi.jp","toyota.yamaguchi.jp","ube.yamaguchi.jp","yuu.yamaguchi.jp","chuo.yamanashi.jp","doshi.yamanashi.jp","fuefuki.yamanashi.jp","fujikawa.yamanashi.jp","fujikawaguchiko.yamanashi.jp","fujiyoshida.yamanashi.jp","hayakawa.yamanashi.jp","hokuto.yamanashi.jp","ichikawamisato.yamanashi.jp","kai.yamanashi.jp","kofu.yamanashi.jp","koshu.yamanashi.jp","kosuge.yamanashi.jp","minami-alps.yamanashi.jp","minobu.yamanashi.jp","nakamichi.yamanashi.jp","nanbu.yamanashi.jp","narusawa.yamanashi.jp","nirasaki.yamanashi.jp","nishikatsura.yamanashi.jp","oshino.yamanashi.jp","otsuki.yamanashi.jp","showa.yamanashi.jp","tabayama.yamanashi.jp","tsuru.yamanashi.jp","uenohara.yamanashi.jp","yamanakako.yamanashi.jp","yamanashi.yamanashi.jp","ke","ac.ke","co.ke","go.ke","info.ke","me.ke","mobi.ke","ne.ke","or.ke","sc.ke","kg","org.kg","net.kg","com.kg","edu.kg","gov.kg","mil.kg","*.kh","ki","edu.ki","biz.ki","net.ki","org.ki","gov.ki","info.ki","com.ki","km","org.km","nom.km","gov.km","prd.km","tm.km","edu.km","mil.km","ass.km","com.km","coop.km","asso.km","presse.km","medecin.km","notaires.km","pharmaciens.km","veterinaire.km","gouv.km","kn","net.kn","org.kn","edu.kn","gov.kn","kp","com.kp","edu.kp","gov.kp","org.kp","rep.kp","tra.kp","kr","ac.kr","co.kr","es.kr","go.kr","hs.kr","kg.kr","mil.kr","ms.kr","ne.kr","or.kr","pe.kr","re.kr","sc.kr","busan.kr","chungbuk.kr","chungnam.kr","daegu.kr","daejeon.kr","gangwon.kr","gwangju.kr","gyeongbuk.kr","gyeonggi.kr","gyeongnam.kr","incheon.kr","jeju.kr","jeonbuk.kr","jeonnam.kr","seoul.kr","ulsan.kr","kw","com.kw","edu.kw","emb.kw","gov.kw","ind.kw","net.kw","org.kw","ky","edu.ky","gov.ky","com.ky","org.ky","net.ky","kz","org.kz","edu.kz","net.kz","gov.kz","mil.kz","com.kz","la","int.la","net.la","info.la","edu.la","gov.la","per.la","com.la","org.la","lb","com.lb","edu.lb","gov.lb","net.lb","org.lb","lc","com.lc","net.lc","co.lc","org.lc","edu.lc","gov.lc","li","lk","gov.lk","sch.lk","net.lk","int.lk","com.lk","org.lk","edu.lk","ngo.lk","soc.lk","web.lk","ltd.lk","assn.lk","grp.lk","hotel.lk","ac.lk","lr","com.lr","edu.lr","gov.lr","org.lr","net.lr","ls","ac.ls","biz.ls","co.ls","edu.ls","gov.ls","info.ls","net.ls","org.ls","sc.ls","lt","gov.lt","lu","lv","com.lv","edu.lv","gov.lv","org.lv","mil.lv","id.lv","net.lv","asn.lv","conf.lv","ly","com.ly","net.ly","gov.ly","plc.ly","edu.ly","sch.ly","med.ly","org.ly","id.ly","ma","co.ma","net.ma","gov.ma","org.ma","ac.ma","press.ma","mc","tm.mc","asso.mc","md","me","co.me","net.me","org.me","edu.me","ac.me","gov.me","its.me","priv.me","mg","org.mg","nom.mg","gov.mg","prd.mg","tm.mg","edu.mg","mil.mg","com.mg","co.mg","mh","mil","mk","com.mk","org.mk","net.mk","edu.mk","gov.mk","inf.mk","name.mk","ml","com.ml","edu.ml","gouv.ml","gov.ml","net.ml","org.ml","presse.ml","*.mm","mn","gov.mn","edu.mn","org.mn","mo","com.mo","net.mo","org.mo","edu.mo","gov.mo","mobi","mp","mq","mr","gov.mr","ms","com.ms","edu.ms","gov.ms","net.ms","org.ms","mt","com.mt","edu.mt","net.mt","org.mt","mu","com.mu","net.mu","org.mu","gov.mu","ac.mu","co.mu","or.mu","museum","academy.museum","agriculture.museum","air.museum","airguard.museum","alabama.museum","alaska.museum","amber.museum","ambulance.museum","american.museum","americana.museum","americanantiques.museum","americanart.museum","amsterdam.museum","and.museum","annefrank.museum","anthro.museum","anthropology.museum","antiques.museum","aquarium.museum","arboretum.museum","archaeological.museum","archaeology.museum","architecture.museum","art.museum","artanddesign.museum","artcenter.museum","artdeco.museum","arteducation.museum","artgallery.museum","arts.museum","artsandcrafts.museum","asmatart.museum","assassination.museum","assisi.museum","association.museum","astronomy.museum","atlanta.museum","austin.museum","australia.museum","automotive.museum","aviation.museum","axis.museum","badajoz.museum","baghdad.museum","bahn.museum","bale.museum","baltimore.museum","barcelona.museum","baseball.museum","basel.museum","baths.museum","bauern.museum","beauxarts.museum","beeldengeluid.museum","bellevue.museum","bergbau.museum","berkeley.museum","berlin.museum","bern.museum","bible.museum","bilbao.museum","bill.museum","birdart.museum","birthplace.museum","bonn.museum","boston.museum","botanical.museum","botanicalgarden.museum","botanicgarden.museum","botany.museum","brandywinevalley.museum","brasil.museum","bristol.museum","british.museum","britishcolumbia.museum","broadcast.museum","brunel.museum","brussel.museum","brussels.museum","bruxelles.museum","building.museum","burghof.museum","bus.museum","bushey.museum","cadaques.museum","california.museum","cambridge.museum","can.museum","canada.museum","capebreton.museum","carrier.museum","cartoonart.museum","casadelamoneda.museum","castle.museum","castres.museum","celtic.museum","center.museum","chattanooga.museum","cheltenham.museum","chesapeakebay.museum","chicago.museum","children.museum","childrens.museum","childrensgarden.museum","chiropractic.museum","chocolate.museum","christiansburg.museum","cincinnati.museum","cinema.museum","circus.museum","civilisation.museum","civilization.museum","civilwar.museum","clinton.museum","clock.museum","coal.museum","coastaldefence.museum","cody.museum","coldwar.museum","collection.museum","colonialwilliamsburg.museum","coloradoplateau.museum","columbia.museum","columbus.museum","communication.museum","communications.museum","community.museum","computer.museum","computerhistory.museum","comunicações.museum","contemporary.museum","contemporaryart.museum","convent.museum","copenhagen.museum","corporation.museum","correios-e-telecomunicações.museum","corvette.museum","costume.museum","countryestate.museum","county.museum","crafts.museum","cranbrook.museum","creation.museum","cultural.museum","culturalcenter.museum","culture.museum","cyber.museum","cymru.museum","dali.museum","dallas.museum","database.museum","ddr.museum","decorativearts.museum","delaware.museum","delmenhorst.museum","denmark.museum","depot.museum","design.museum","detroit.museum","dinosaur.museum","discovery.museum","dolls.museum","donostia.museum","durham.museum","eastafrica.museum","eastcoast.museum","education.museum","educational.museum","egyptian.museum","eisenbahn.museum","elburg.museum","elvendrell.museum","embroidery.museum","encyclopedic.museum","england.museum","entomology.museum","environment.museum","environmentalconservation.museum","epilepsy.museum","essex.museum","estate.museum","ethnology.museum","exeter.museum","exhibition.museum","family.museum","farm.museum","farmequipment.museum","farmers.museum","farmstead.museum","field.museum","figueres.museum","filatelia.museum","film.museum","fineart.museum","finearts.museum","finland.museum","flanders.museum","florida.museum","force.museum","fortmissoula.museum","fortworth.museum","foundation.museum","francaise.museum","frankfurt.museum","franziskaner.museum","freemasonry.museum","freiburg.museum","fribourg.museum","frog.museum","fundacio.museum","furniture.museum","gallery.museum","garden.museum","gateway.museum","geelvinck.museum","gemological.museum","geology.museum","georgia.museum","giessen.museum","glas.museum","glass.museum","gorge.museum","grandrapids.museum","graz.museum","guernsey.museum","halloffame.museum","hamburg.museum","handson.museum","harvestcelebration.museum","hawaii.museum","health.museum","heimatunduhren.museum","hellas.museum","helsinki.museum","hembygdsforbund.museum","heritage.museum","histoire.museum","historical.museum","historicalsociety.museum","historichouses.museum","historisch.museum","historisches.museum","history.museum","historyofscience.museum","horology.museum","house.museum","humanities.museum","illustration.museum","imageandsound.museum","indian.museum","indiana.museum","indianapolis.museum","indianmarket.museum","intelligence.museum","interactive.museum","iraq.museum","iron.museum","isleofman.museum","jamison.museum","jefferson.museum","jerusalem.museum","jewelry.museum","jewish.museum","jewishart.museum","jfk.museum","journalism.museum","judaica.museum","judygarland.museum","juedisches.museum","juif.museum","karate.museum","karikatur.museum","kids.museum","koebenhavn.museum","koeln.museum","kunst.museum","kunstsammlung.museum","kunstunddesign.museum","labor.museum","labour.museum","lajolla.museum","lancashire.museum","landes.museum","lans.museum","läns.museum","larsson.museum","lewismiller.museum","lincoln.museum","linz.museum","living.museum","livinghistory.museum","localhistory.museum","london.museum","losangeles.museum","louvre.museum","loyalist.museum","lucerne.museum","luxembourg.museum","luzern.museum","mad.museum","madrid.museum","mallorca.museum","manchester.museum","mansion.museum","mansions.museum","manx.museum","marburg.museum","maritime.museum","maritimo.museum","maryland.museum","marylhurst.museum","media.museum","medical.museum","medizinhistorisches.museum","meeres.museum","memorial.museum","mesaverde.museum","michigan.museum","midatlantic.museum","military.museum","mill.museum","miners.museum","mining.museum","minnesota.museum","missile.museum","missoula.museum","modern.museum","moma.museum","money.museum","monmouth.museum","monticello.museum","montreal.museum","moscow.museum","motorcycle.museum","muenchen.museum","muenster.museum","mulhouse.museum","muncie.museum","museet.museum","museumcenter.museum","museumvereniging.museum","music.museum","national.museum","nationalfirearms.museum","nationalheritage.museum","nativeamerican.museum","naturalhistory.museum","naturalhistorymuseum.museum","naturalsciences.museum","nature.museum","naturhistorisches.museum","natuurwetenschappen.museum","naumburg.museum","naval.museum","nebraska.museum","neues.museum","newhampshire.museum","newjersey.museum","newmexico.museum","newport.museum","newspaper.museum","newyork.museum","niepce.museum","norfolk.museum","north.museum","nrw.museum","nuernberg.museum","nuremberg.museum","nyc.museum","nyny.museum","oceanographic.museum","oceanographique.museum","omaha.museum","online.museum","ontario.museum","openair.museum","oregon.museum","oregontrail.museum","otago.museum","oxford.museum","pacific.museum","paderborn.museum","palace.museum","paleo.museum","palmsprings.museum","panama.museum","paris.museum","pasadena.museum","pharmacy.museum","philadelphia.museum","philadelphiaarea.museum","philately.museum","phoenix.museum","photography.museum","pilots.museum","pittsburgh.museum","planetarium.museum","plantation.museum","plants.museum","plaza.museum","portal.museum","portland.museum","portlligat.museum","posts-and-telecommunications.museum","preservation.museum","presidio.museum","press.museum","project.museum","public.museum","pubol.museum","quebec.museum","railroad.museum","railway.museum","research.museum","resistance.museum","riodejaneiro.museum","rochester.museum","rockart.museum","roma.museum","russia.museum","saintlouis.museum","salem.museum","salvadordali.museum","salzburg.museum","sandiego.museum","sanfrancisco.museum","santabarbara.museum","santacruz.museum","santafe.museum","saskatchewan.museum","satx.museum","savannahga.museum","schlesisches.museum","schoenbrunn.museum","schokoladen.museum","school.museum","schweiz.museum","science.museum","scienceandhistory.museum","scienceandindustry.museum","sciencecenter.museum","sciencecenters.museum","science-fiction.museum","sciencehistory.museum","sciences.museum","sciencesnaturelles.museum","scotland.museum","seaport.museum","settlement.museum","settlers.museum","shell.museum","sherbrooke.museum","sibenik.museum","silk.museum","ski.museum","skole.museum","society.museum","sologne.museum","soundandvision.museum","southcarolina.museum","southwest.museum","space.museum","spy.museum","square.museum","stadt.museum","stalbans.museum","starnberg.museum","state.museum","stateofdelaware.museum","station.museum","steam.museum","steiermark.museum","stjohn.museum","stockholm.museum","stpetersburg.museum","stuttgart.museum","suisse.museum","surgeonshall.museum","surrey.museum","svizzera.museum","sweden.museum","sydney.museum","tank.museum","tcm.museum","technology.museum","telekommunikation.museum","television.museum","texas.museum","textile.museum","theater.museum","time.museum","timekeeping.museum","topology.museum","torino.museum","touch.museum","town.museum","transport.museum","tree.museum","trolley.museum","trust.museum","trustee.museum","uhren.museum","ulm.museum","undersea.museum","university.museum","usa.museum","usantiques.museum","usarts.museum","uscountryestate.museum","usculture.museum","usdecorativearts.museum","usgarden.museum","ushistory.museum","ushuaia.museum","uslivinghistory.museum","utah.museum","uvic.museum","valley.museum","vantaa.museum","versailles.museum","viking.museum","village.museum","virginia.museum","virtual.museum","virtuel.museum","vlaanderen.museum","volkenkunde.museum","wales.museum","wallonie.museum","war.museum","washingtondc.museum","watchandclock.museum","watch-and-clock.museum","western.museum","westfalen.museum","whaling.museum","wildlife.museum","williamsburg.museum","windmill.museum","workshop.museum","york.museum","yorkshire.museum","yosemite.museum","youth.museum","zoological.museum","zoology.museum","ירושלים.museum","иком.museum","mv","aero.mv","biz.mv","com.mv","coop.mv","edu.mv","gov.mv","info.mv","int.mv","mil.mv","museum.mv","name.mv","net.mv","org.mv","pro.mv","mw","ac.mw","biz.mw","co.mw","com.mw","coop.mw","edu.mw","gov.mw","int.mw","museum.mw","net.mw","org.mw","mx","com.mx","org.mx","gob.mx","edu.mx","net.mx","my","com.my","net.my","org.my","gov.my","edu.my","mil.my","name.my","mz","ac.mz","adv.mz","co.mz","edu.mz","gov.mz","mil.mz","net.mz","org.mz","na","info.na","pro.na","name.na","school.na","or.na","dr.na","us.na","mx.na","ca.na","in.na","cc.na","tv.na","ws.na","mobi.na","co.na","com.na","org.na","name","nc","asso.nc","nom.nc","ne","net","nf","com.nf","net.nf","per.nf","rec.nf","web.nf","arts.nf","firm.nf","info.nf","other.nf","store.nf","ng","com.ng","edu.ng","gov.ng","i.ng","mil.ng","mobi.ng","name.ng","net.ng","org.ng","sch.ng","ni","ac.ni","biz.ni","co.ni","com.ni","edu.ni","gob.ni","in.ni","info.ni","int.ni","mil.ni","net.ni","nom.ni","org.ni","web.ni","nl","no","fhs.no","vgs.no","fylkesbibl.no","folkebibl.no","museum.no","idrett.no","priv.no","mil.no","stat.no","dep.no","kommune.no","herad.no","aa.no","ah.no","bu.no","fm.no","hl.no","hm.no","jan-mayen.no","mr.no","nl.no","nt.no","of.no","ol.no","oslo.no","rl.no","sf.no","st.no","svalbard.no","tm.no","tr.no","va.no","vf.no","gs.aa.no","gs.ah.no","gs.bu.no","gs.fm.no","gs.hl.no","gs.hm.no","gs.jan-mayen.no","gs.mr.no","gs.nl.no","gs.nt.no","gs.of.no","gs.ol.no","gs.oslo.no","gs.rl.no","gs.sf.no","gs.st.no","gs.svalbard.no","gs.tm.no","gs.tr.no","gs.va.no","gs.vf.no","akrehamn.no","åkrehamn.no","algard.no","ålgård.no","arna.no","brumunddal.no","bryne.no","bronnoysund.no","brønnøysund.no","drobak.no","drøbak.no","egersund.no","fetsund.no","floro.no","florø.no","fredrikstad.no","hokksund.no","honefoss.no","hønefoss.no","jessheim.no","jorpeland.no","jørpeland.no","kirkenes.no","kopervik.no","krokstadelva.no","langevag.no","langevåg.no","leirvik.no","mjondalen.no","mjøndalen.no","mo-i-rana.no","mosjoen.no","mosjøen.no","nesoddtangen.no","orkanger.no","osoyro.no","osøyro.no","raholt.no","råholt.no","sandnessjoen.no","sandnessjøen.no","skedsmokorset.no","slattum.no","spjelkavik.no","stathelle.no","stavern.no","stjordalshalsen.no","stjørdalshalsen.no","tananger.no","tranby.no","vossevangen.no","afjord.no","åfjord.no","agdenes.no","al.no","ål.no","alesund.no","ålesund.no","alstahaug.no","alta.no","áltá.no","alaheadju.no","álaheadju.no","alvdal.no","amli.no","åmli.no","amot.no","åmot.no","andebu.no","andoy.no","andøy.no","andasuolo.no","ardal.no","årdal.no","aremark.no","arendal.no","ås.no","aseral.no","åseral.no","asker.no","askim.no","askvoll.no","askoy.no","askøy.no","asnes.no","åsnes.no","audnedaln.no","aukra.no","aure.no","aurland.no","aurskog-holand.no","aurskog-høland.no","austevoll.no","austrheim.no","averoy.no","averøy.no","balestrand.no","ballangen.no","balat.no","bálát.no","balsfjord.no","bahccavuotna.no","báhccavuotna.no","bamble.no","bardu.no","beardu.no","beiarn.no","bajddar.no","bájddar.no","baidar.no","báidár.no","berg.no","bergen.no","berlevag.no","berlevåg.no","bearalvahki.no","bearalváhki.no","bindal.no","birkenes.no","bjarkoy.no","bjarkøy.no","bjerkreim.no","bjugn.no","bodo.no","bodø.no","badaddja.no","bådåddjå.no","budejju.no","bokn.no","bremanger.no","bronnoy.no","brønnøy.no","bygland.no","bykle.no","barum.no","bærum.no","bo.telemark.no","bø.telemark.no","bo.nordland.no","bø.nordland.no","bievat.no","bievát.no","bomlo.no","bømlo.no","batsfjord.no","båtsfjord.no","bahcavuotna.no","báhcavuotna.no","dovre.no","drammen.no","drangedal.no","dyroy.no","dyrøy.no","donna.no","dønna.no","eid.no","eidfjord.no","eidsberg.no","eidskog.no","eidsvoll.no","eigersund.no","elverum.no","enebakk.no","engerdal.no","etne.no","etnedal.no","evenes.no","evenassi.no","evenášši.no","evje-og-hornnes.no","farsund.no","fauske.no","fuossko.no","fuoisku.no","fedje.no","fet.no","finnoy.no","finnøy.no","fitjar.no","fjaler.no","fjell.no","flakstad.no","flatanger.no","flekkefjord.no","flesberg.no","flora.no","fla.no","flå.no","folldal.no","forsand.no","fosnes.no","frei.no","frogn.no","froland.no","frosta.no","frana.no","fræna.no","froya.no","frøya.no","fusa.no","fyresdal.no","forde.no","førde.no","gamvik.no","gangaviika.no","gáŋgaviika.no","gaular.no","gausdal.no","gildeskal.no","gildeskål.no","giske.no","gjemnes.no","gjerdrum.no","gjerstad.no","gjesdal.no","gjovik.no","gjøvik.no","gloppen.no","gol.no","gran.no","grane.no","granvin.no","gratangen.no","grimstad.no","grong.no","kraanghke.no","kråanghke.no","grue.no","gulen.no","hadsel.no","halden.no","halsa.no","hamar.no","hamaroy.no","habmer.no","hábmer.no","hapmir.no","hápmir.no","hammerfest.no","hammarfeasta.no","hámmárfeasta.no","haram.no","hareid.no","harstad.no","hasvik.no","aknoluokta.no","ákŋoluokta.no","hattfjelldal.no","aarborte.no","haugesund.no","hemne.no","hemnes.no","hemsedal.no","heroy.more-og-romsdal.no","herøy.møre-og-romsdal.no","heroy.nordland.no","herøy.nordland.no","hitra.no","hjartdal.no","hjelmeland.no","hobol.no","hobøl.no","hof.no","hol.no","hole.no","holmestrand.no","holtalen.no","holtålen.no","hornindal.no","horten.no","hurdal.no","hurum.no","hvaler.no","hyllestad.no","hagebostad.no","hægebostad.no","hoyanger.no","høyanger.no","hoylandet.no","høylandet.no","ha.no","hå.no","ibestad.no","inderoy.no","inderøy.no","iveland.no","jevnaker.no","jondal.no","jolster.no","jølster.no","karasjok.no","karasjohka.no","kárášjohka.no","karlsoy.no","galsa.no","gálsá.no","karmoy.no","karmøy.no","kautokeino.no","guovdageaidnu.no","klepp.no","klabu.no","klæbu.no","kongsberg.no","kongsvinger.no","kragero.no","kragerø.no","kristiansand.no","kristiansund.no","krodsherad.no","krødsherad.no","kvalsund.no","rahkkeravju.no","ráhkkerávju.no","kvam.no","kvinesdal.no","kvinnherad.no","kviteseid.no","kvitsoy.no","kvitsøy.no","kvafjord.no","kvæfjord.no","giehtavuoatna.no","kvanangen.no","kvænangen.no","navuotna.no","návuotna.no","kafjord.no","kåfjord.no","gaivuotna.no","gáivuotna.no","larvik.no","lavangen.no","lavagis.no","loabat.no","loabát.no","lebesby.no","davvesiida.no","leikanger.no","leirfjord.no","leka.no","leksvik.no","lenvik.no","leangaviika.no","leaŋgaviika.no","lesja.no","levanger.no","lier.no","lierne.no","lillehammer.no","lillesand.no","lindesnes.no","lindas.no","lindås.no","lom.no","loppa.no","lahppi.no","láhppi.no","lund.no","lunner.no","luroy.no","lurøy.no","luster.no","lyngdal.no","lyngen.no","ivgu.no","lardal.no","lerdal.no","lærdal.no","lodingen.no","lødingen.no","lorenskog.no","lørenskog.no","loten.no","løten.no","malvik.no","masoy.no","måsøy.no","muosat.no","muosát.no","mandal.no","marker.no","marnardal.no","masfjorden.no","meland.no","meldal.no","melhus.no","meloy.no","meløy.no","meraker.no","meråker.no","moareke.no","moåreke.no","midsund.no","midtre-gauldal.no","modalen.no","modum.no","molde.no","moskenes.no","moss.no","mosvik.no","malselv.no","målselv.no","malatvuopmi.no","málatvuopmi.no","namdalseid.no","aejrie.no","namsos.no","namsskogan.no","naamesjevuemie.no","nååmesjevuemie.no","laakesvuemie.no","nannestad.no","narvik.no","narviika.no","naustdal.no","nedre-eiker.no","nes.akershus.no","nes.buskerud.no","nesna.no","nesodden.no","nesseby.no","unjarga.no","unjárga.no","nesset.no","nissedal.no","nittedal.no","nord-aurdal.no","nord-fron.no","nord-odal.no","norddal.no","nordkapp.no","davvenjarga.no","davvenjárga.no","nordre-land.no","nordreisa.no","raisa.no","ráisa.no","nore-og-uvdal.no","notodden.no","naroy.no","nærøy.no","notteroy.no","nøtterøy.no","odda.no","oksnes.no","øksnes.no","oppdal.no","oppegard.no","oppegård.no","orkdal.no","orland.no","ørland.no","orskog.no","ørskog.no","orsta.no","ørsta.no","os.hedmark.no","os.hordaland.no","osen.no","osteroy.no","osterøy.no","ostre-toten.no","østre-toten.no","overhalla.no","ovre-eiker.no","øvre-eiker.no","oyer.no","øyer.no","oygarden.no","øygarden.no","oystre-slidre.no","øystre-slidre.no","porsanger.no","porsangu.no","porsáŋgu.no","porsgrunn.no","radoy.no","radøy.no","rakkestad.no","rana.no","ruovat.no","randaberg.no","rauma.no","rendalen.no","rennebu.no","rennesoy.no","rennesøy.no","rindal.no","ringebu.no","ringerike.no","ringsaker.no","rissa.no","risor.no","risør.no","roan.no","rollag.no","rygge.no","ralingen.no","rælingen.no","rodoy.no","rødøy.no","romskog.no","rømskog.no","roros.no","røros.no","rost.no","røst.no","royken.no","røyken.no","royrvik.no","røyrvik.no","rade.no","råde.no","salangen.no","siellak.no","saltdal.no","salat.no","sálát.no","sálat.no","samnanger.no","sande.more-og-romsdal.no","sande.møre-og-romsdal.no","sande.vestfold.no","sandefjord.no","sandnes.no","sandoy.no","sandøy.no","sarpsborg.no","sauda.no","sauherad.no","sel.no","selbu.no","selje.no","seljord.no","sigdal.no","siljan.no","sirdal.no","skaun.no","skedsmo.no","ski.no","skien.no","skiptvet.no","skjervoy.no","skjervøy.no","skierva.no","skiervá.no","skjak.no","skjåk.no","skodje.no","skanland.no","skånland.no","skanit.no","skánit.no","smola.no","smøla.no","snillfjord.no","snasa.no","snåsa.no","snoasa.no","snaase.no","snåase.no","sogndal.no","sokndal.no","sola.no","solund.no","songdalen.no","sortland.no","spydeberg.no","stange.no","stavanger.no","steigen.no","steinkjer.no","stjordal.no","stjørdal.no","stokke.no","stor-elvdal.no","stord.no","stordal.no","storfjord.no","omasvuotna.no","strand.no","stranda.no","stryn.no","sula.no","suldal.no","sund.no","sunndal.no","surnadal.no","sveio.no","svelvik.no","sykkylven.no","sogne.no","søgne.no","somna.no","sømna.no","sondre-land.no","søndre-land.no","sor-aurdal.no","sør-aurdal.no","sor-fron.no","sør-fron.no","sor-odal.no","sør-odal.no","sor-varanger.no","sør-varanger.no","matta-varjjat.no","mátta-várjjat.no","sorfold.no","sørfold.no","sorreisa.no","sørreisa.no","sorum.no","sørum.no","tana.no","deatnu.no","time.no","tingvoll.no","tinn.no","tjeldsund.no","dielddanuorri.no","tjome.no","tjøme.no","tokke.no","tolga.no","torsken.no","tranoy.no","tranøy.no","tromso.no","tromsø.no","tromsa.no","romsa.no","trondheim.no","troandin.no","trysil.no","trana.no","træna.no","trogstad.no","trøgstad.no","tvedestrand.no","tydal.no","tynset.no","tysfjord.no","divtasvuodna.no","divttasvuotna.no","tysnes.no","tysvar.no","tysvær.no","tonsberg.no","tønsberg.no","ullensaker.no","ullensvang.no","ulvik.no","utsira.no","vadso.no","vadsø.no","cahcesuolo.no","čáhcesuolo.no","vaksdal.no","valle.no","vang.no","vanylven.no","vardo.no","vardø.no","varggat.no","várggát.no","vefsn.no","vaapste.no","vega.no","vegarshei.no","vegårshei.no","vennesla.no","verdal.no","verran.no","vestby.no","vestnes.no","vestre-slidre.no","vestre-toten.no","vestvagoy.no","vestvågøy.no","vevelstad.no","vik.no","vikna.no","vindafjord.no","volda.no","voss.no","varoy.no","værøy.no","vagan.no","vågan.no","voagat.no","vagsoy.no","vågsøy.no","vaga.no","vågå.no","valer.ostfold.no","våler.østfold.no","valer.hedmark.no","våler.hedmark.no","*.np","nr","biz.nr","info.nr","gov.nr","edu.nr","org.nr","net.nr","com.nr","nu","nz","ac.nz","co.nz","cri.nz","geek.nz","gen.nz","govt.nz","health.nz","iwi.nz","kiwi.nz","maori.nz","mil.nz","māori.nz","net.nz","org.nz","parliament.nz","school.nz","om","co.om","com.om","edu.om","gov.om","med.om","museum.om","net.om","org.om","pro.om","onion","org","pa","ac.pa","gob.pa","com.pa","org.pa","sld.pa","edu.pa","net.pa","ing.pa","abo.pa","med.pa","nom.pa","pe","edu.pe","gob.pe","nom.pe","mil.pe","org.pe","com.pe","net.pe","pf","com.pf","org.pf","edu.pf","*.pg","ph","com.ph","net.ph","org.ph","gov.ph","edu.ph","ngo.ph","mil.ph","i.ph","pk","com.pk","net.pk","edu.pk","org.pk","fam.pk","biz.pk","web.pk","gov.pk","gob.pk","gok.pk","gon.pk","gop.pk","gos.pk","info.pk","pl","com.pl","net.pl","org.pl","aid.pl","agro.pl","atm.pl","auto.pl","biz.pl","edu.pl","gmina.pl","gsm.pl","info.pl","mail.pl","miasta.pl","media.pl","mil.pl","nieruchomosci.pl","nom.pl","pc.pl","powiat.pl","priv.pl","realestate.pl","rel.pl","sex.pl","shop.pl","sklep.pl","sos.pl","szkola.pl","targi.pl","tm.pl","tourism.pl","travel.pl","turystyka.pl","gov.pl","ap.gov.pl","ic.gov.pl","is.gov.pl","us.gov.pl","kmpsp.gov.pl","kppsp.gov.pl","kwpsp.gov.pl","psp.gov.pl","wskr.gov.pl","kwp.gov.pl","mw.gov.pl","ug.gov.pl","um.gov.pl","umig.gov.pl","ugim.gov.pl","upow.gov.pl","uw.gov.pl","starostwo.gov.pl","pa.gov.pl","po.gov.pl","psse.gov.pl","pup.gov.pl","rzgw.gov.pl","sa.gov.pl","so.gov.pl","sr.gov.pl","wsa.gov.pl","sko.gov.pl","uzs.gov.pl","wiih.gov.pl","winb.gov.pl","pinb.gov.pl","wios.gov.pl","witd.gov.pl","wzmiuw.gov.pl","piw.gov.pl","wiw.gov.pl","griw.gov.pl","wif.gov.pl","oum.gov.pl","sdn.gov.pl","zp.gov.pl","uppo.gov.pl","mup.gov.pl","wuoz.gov.pl","konsulat.gov.pl","oirm.gov.pl","augustow.pl","babia-gora.pl","bedzin.pl","beskidy.pl","bialowieza.pl","bialystok.pl","bielawa.pl","bieszczady.pl","boleslawiec.pl","bydgoszcz.pl","bytom.pl","cieszyn.pl","czeladz.pl","czest.pl","dlugoleka.pl","elblag.pl","elk.pl","glogow.pl","gniezno.pl","gorlice.pl","grajewo.pl","ilawa.pl","jaworzno.pl","jelenia-gora.pl","jgora.pl","kalisz.pl","kazimierz-dolny.pl","karpacz.pl","kartuzy.pl","kaszuby.pl","katowice.pl","kepno.pl","ketrzyn.pl","klodzko.pl","kobierzyce.pl","kolobrzeg.pl","konin.pl","konskowola.pl","kutno.pl","lapy.pl","lebork.pl","legnica.pl","lezajsk.pl","limanowa.pl","lomza.pl","lowicz.pl","lubin.pl","lukow.pl","malbork.pl","malopolska.pl","mazowsze.pl","mazury.pl","mielec.pl","mielno.pl","mragowo.pl","naklo.pl","nowaruda.pl","nysa.pl","olawa.pl","olecko.pl","olkusz.pl","olsztyn.pl","opoczno.pl","opole.pl","ostroda.pl","ostroleka.pl","ostrowiec.pl","ostrowwlkp.pl","pila.pl","pisz.pl","podhale.pl","podlasie.pl","polkowice.pl","pomorze.pl","pomorskie.pl","prochowice.pl","pruszkow.pl","przeworsk.pl","pulawy.pl","radom.pl","rawa-maz.pl","rybnik.pl","rzeszow.pl","sanok.pl","sejny.pl","slask.pl","slupsk.pl","sosnowiec.pl","stalowa-wola.pl","skoczow.pl","starachowice.pl","stargard.pl","suwalki.pl","swidnica.pl","swiebodzin.pl","swinoujscie.pl","szczecin.pl","szczytno.pl","tarnobrzeg.pl","tgory.pl","turek.pl","tychy.pl","ustka.pl","walbrzych.pl","warmia.pl","warszawa.pl","waw.pl","wegrow.pl","wielun.pl","wlocl.pl","wloclawek.pl","wodzislaw.pl","wolomin.pl","wroclaw.pl","zachpomor.pl","zagan.pl","zarow.pl","zgora.pl","zgorzelec.pl","pm","pn","gov.pn","co.pn","org.pn","edu.pn","net.pn","post","pr","com.pr","net.pr","org.pr","gov.pr","edu.pr","isla.pr","pro.pr","biz.pr","info.pr","name.pr","est.pr","prof.pr","ac.pr","pro","aaa.pro","aca.pro","acct.pro","avocat.pro","bar.pro","cpa.pro","eng.pro","jur.pro","law.pro","med.pro","recht.pro","ps","edu.ps","gov.ps","sec.ps","plo.ps","com.ps","org.ps","net.ps","pt","net.pt","gov.pt","org.pt","edu.pt","int.pt","publ.pt","com.pt","nome.pt","pw","co.pw","ne.pw","or.pw","ed.pw","go.pw","belau.pw","py","com.py","coop.py","edu.py","gov.py","mil.py","net.py","org.py","qa","com.qa","edu.qa","gov.qa","mil.qa","name.qa","net.qa","org.qa","sch.qa","re","asso.re","com.re","nom.re","ro","arts.ro","com.ro","firm.ro","info.ro","nom.ro","nt.ro","org.ro","rec.ro","store.ro","tm.ro","www.ro","rs","ac.rs","co.rs","edu.rs","gov.rs","in.rs","org.rs","ru","ac.ru","edu.ru","gov.ru","int.ru","mil.ru","test.ru","rw","ac.rw","co.rw","coop.rw","gov.rw","mil.rw","net.rw","org.rw","sa","com.sa","net.sa","org.sa","gov.sa","med.sa","pub.sa","edu.sa","sch.sa","sb","com.sb","edu.sb","gov.sb","net.sb","org.sb","sc","com.sc","gov.sc","net.sc","org.sc","edu.sc","sd","com.sd","net.sd","org.sd","edu.sd","med.sd","tv.sd","gov.sd","info.sd","se","a.se","ac.se","b.se","bd.se","brand.se","c.se","d.se","e.se","f.se","fh.se","fhsk.se","fhv.se","g.se","h.se","i.se","k.se","komforb.se","kommunalforbund.se","komvux.se","l.se","lanbib.se","m.se","n.se","naturbruksgymn.se","o.se","org.se","p.se","parti.se","pp.se","press.se","r.se","s.se","t.se","tm.se","u.se","w.se","x.se","y.se","z.se","sg","com.sg","net.sg","org.sg","gov.sg","edu.sg","per.sg","sh","com.sh","net.sh","gov.sh","org.sh","mil.sh","si","sj","sk","sl","com.sl","net.sl","edu.sl","gov.sl","org.sl","sm","sn","art.sn","com.sn","edu.sn","gouv.sn","org.sn","perso.sn","univ.sn","so","com.so","net.so","org.so","sr","st","co.st","com.st","consulado.st","edu.st","embaixada.st","gov.st","mil.st","net.st","org.st","principe.st","saotome.st","store.st","su","sv","com.sv","edu.sv","gob.sv","org.sv","red.sv","sx","gov.sx","sy","edu.sy","gov.sy","net.sy","mil.sy","com.sy","org.sy","sz","co.sz","ac.sz","org.sz","tc","td","tel","tf","tg","th","ac.th","co.th","go.th","in.th","mi.th","net.th","or.th","tj","ac.tj","biz.tj","co.tj","com.tj","edu.tj","go.tj","gov.tj","int.tj","mil.tj","name.tj","net.tj","nic.tj","org.tj","test.tj","web.tj","tk","tl","gov.tl","tm","com.tm","co.tm","org.tm","net.tm","nom.tm","gov.tm","mil.tm","edu.tm","tn","com.tn","ens.tn","fin.tn","gov.tn","ind.tn","intl.tn","nat.tn","net.tn","org.tn","info.tn","perso.tn","tourism.tn","edunet.tn","rnrt.tn","rns.tn","rnu.tn","mincom.tn","agrinet.tn","defense.tn","turen.tn","to","com.to","gov.to","net.to","org.to","edu.to","mil.to","tr","av.tr","bbs.tr","bel.tr","biz.tr","com.tr","dr.tr","edu.tr","gen.tr","gov.tr","info.tr","mil.tr","k12.tr","kep.tr","name.tr","net.tr","org.tr","pol.tr","tel.tr","tsk.tr","tv.tr","web.tr","nc.tr","gov.nc.tr","tt","co.tt","com.tt","org.tt","net.tt","biz.tt","info.tt","pro.tt","int.tt","coop.tt","jobs.tt","mobi.tt","travel.tt","museum.tt","aero.tt","name.tt","gov.tt","edu.tt","tv","tw","edu.tw","gov.tw","mil.tw","com.tw","net.tw","org.tw","idv.tw","game.tw","ebiz.tw","club.tw","網路.tw","組織.tw","商業.tw","tz","ac.tz","co.tz","go.tz","hotel.tz","info.tz","me.tz","mil.tz","mobi.tz","ne.tz","or.tz","sc.tz","tv.tz","ua","com.ua","edu.ua","gov.ua","in.ua","net.ua","org.ua","cherkassy.ua","cherkasy.ua","chernigov.ua","chernihiv.ua","chernivtsi.ua","chernovtsy.ua","ck.ua","cn.ua","cr.ua","crimea.ua","cv.ua","dn.ua","dnepropetrovsk.ua","dnipropetrovsk.ua","dominic.ua","donetsk.ua","dp.ua","if.ua","ivano-frankivsk.ua","kh.ua","kharkiv.ua","kharkov.ua","kherson.ua","khmelnitskiy.ua","khmelnytskyi.ua","kiev.ua","kirovograd.ua","km.ua","kr.ua","krym.ua","ks.ua","kv.ua","kyiv.ua","lg.ua","lt.ua","lugansk.ua","lutsk.ua","lv.ua","lviv.ua","mk.ua","mykolaiv.ua","nikolaev.ua","od.ua","odesa.ua","odessa.ua","pl.ua","poltava.ua","rivne.ua","rovno.ua","rv.ua","sb.ua","sebastopol.ua","sevastopol.ua","sm.ua","sumy.ua","te.ua","ternopil.ua","uz.ua","uzhgorod.ua","vinnica.ua","vinnytsia.ua","vn.ua","volyn.ua","yalta.ua","zaporizhzhe.ua","zaporizhzhia.ua","zhitomir.ua","zhytomyr.ua","zp.ua","zt.ua","ug","co.ug","or.ug","ac.ug","sc.ug","go.ug","ne.ug","com.ug","org.ug","uk","ac.uk","co.uk","gov.uk","ltd.uk","me.uk","net.uk","nhs.uk","org.uk","plc.uk","police.uk","*.sch.uk","us","dni.us","fed.us","isa.us","kids.us","nsn.us","ak.us","al.us","ar.us","as.us","az.us","ca.us","co.us","ct.us","dc.us","de.us","fl.us","ga.us","gu.us","hi.us","ia.us","id.us","il.us","in.us","ks.us","ky.us","la.us","ma.us","md.us","me.us","mi.us","mn.us","mo.us","ms.us","mt.us","nc.us","nd.us","ne.us","nh.us","nj.us","nm.us","nv.us","ny.us","oh.us","ok.us","or.us","pa.us","pr.us","ri.us","sc.us","sd.us","tn.us","tx.us","ut.us","vi.us","vt.us","va.us","wa.us","wi.us","wv.us","wy.us","k12.ak.us","k12.al.us","k12.ar.us","k12.as.us","k12.az.us","k12.ca.us","k12.co.us","k12.ct.us","k12.dc.us","k12.de.us","k12.fl.us","k12.ga.us","k12.gu.us","k12.ia.us","k12.id.us","k12.il.us","k12.in.us","k12.ks.us","k12.ky.us","k12.la.us","k12.ma.us","k12.md.us","k12.me.us","k12.mi.us","k12.mn.us","k12.mo.us","k12.ms.us","k12.mt.us","k12.nc.us","k12.ne.us","k12.nh.us","k12.nj.us","k12.nm.us","k12.nv.us","k12.ny.us","k12.oh.us","k12.ok.us","k12.or.us","k12.pa.us","k12.pr.us","k12.ri.us","k12.sc.us","k12.tn.us","k12.tx.us","k12.ut.us","k12.vi.us","k12.vt.us","k12.va.us","k12.wa.us","k12.wi.us","k12.wy.us","cc.ak.us","cc.al.us","cc.ar.us","cc.as.us","cc.az.us","cc.ca.us","cc.co.us","cc.ct.us","cc.dc.us","cc.de.us","cc.fl.us","cc.ga.us","cc.gu.us","cc.hi.us","cc.ia.us","cc.id.us","cc.il.us","cc.in.us","cc.ks.us","cc.ky.us","cc.la.us","cc.ma.us","cc.md.us","cc.me.us","cc.mi.us","cc.mn.us","cc.mo.us","cc.ms.us","cc.mt.us","cc.nc.us","cc.nd.us","cc.ne.us","cc.nh.us","cc.nj.us","cc.nm.us","cc.nv.us","cc.ny.us","cc.oh.us","cc.ok.us","cc.or.us","cc.pa.us","cc.pr.us","cc.ri.us","cc.sc.us","cc.sd.us","cc.tn.us","cc.tx.us","cc.ut.us","cc.vi.us","cc.vt.us","cc.va.us","cc.wa.us","cc.wi.us","cc.wv.us","cc.wy.us","lib.ak.us","lib.al.us","lib.ar.us","lib.as.us","lib.az.us","lib.ca.us","lib.co.us","lib.ct.us","lib.dc.us","lib.fl.us","lib.ga.us","lib.gu.us","lib.hi.us","lib.ia.us","lib.id.us","lib.il.us","lib.in.us","lib.ks.us","lib.ky.us","lib.la.us","lib.ma.us","lib.md.us","lib.me.us","lib.mi.us","lib.mn.us","lib.mo.us","lib.ms.us","lib.mt.us","lib.nc.us","lib.nd.us","lib.ne.us","lib.nh.us","lib.nj.us","lib.nm.us","lib.nv.us","lib.ny.us","lib.oh.us","lib.ok.us","lib.or.us","lib.pa.us","lib.pr.us","lib.ri.us","lib.sc.us","lib.sd.us","lib.tn.us","lib.tx.us","lib.ut.us","lib.vi.us","lib.vt.us","lib.va.us","lib.wa.us","lib.wi.us","lib.wy.us","pvt.k12.ma.us","chtr.k12.ma.us","paroch.k12.ma.us","ann-arbor.mi.us","cog.mi.us","dst.mi.us","eaton.mi.us","gen.mi.us","mus.mi.us","tec.mi.us","washtenaw.mi.us","uy","com.uy","edu.uy","gub.uy","mil.uy","net.uy","org.uy","uz","co.uz","com.uz","net.uz","org.uz","va","vc","com.vc","net.vc","org.vc","gov.vc","mil.vc","edu.vc","ve","arts.ve","co.ve","com.ve","e12.ve","edu.ve","firm.ve","gob.ve","gov.ve","info.ve","int.ve","mil.ve","net.ve","org.ve","rec.ve","store.ve","tec.ve","web.ve","vg","vi","co.vi","com.vi","k12.vi","net.vi","org.vi","vn","com.vn","net.vn","org.vn","edu.vn","gov.vn","int.vn","ac.vn","biz.vn","info.vn","name.vn","pro.vn","health.vn","vu","com.vu","edu.vu","net.vu","org.vu","wf","ws","com.ws","net.ws","org.ws","gov.ws","edu.ws","yt","امارات","հայ","বাংলা","бг","бел","中国","中國","الجزائر","مصر","ею","გე","ελ","香港","公司.香港","教育.香港","政府.香港","個人.香港","網絡.香港","組織.香港","ಭಾರತ","ଭାରତ","ভাৰত","भारतम्","भारोत","ڀارت","ഭാരതം","भारत","بارت","بھارت","భారత్","ભારત","ਭਾਰਤ","ভারত","இந்தியா","ایران","ايران","عراق","الاردن","한국","қаз","ලංකා","இலங்கை","المغرب","мкд","мон","澳門","澳门","مليسيا","عمان","پاکستان","پاكستان","فلسطين","срб","пр.срб","орг.срб","обр.срб","од.срб","упр.срб","ак.срб","рф","قطر","السعودية","السعودیة","السعودیۃ","السعوديه","سودان","新加坡","சிங்கப்பூர்","سورية","سوريا","ไทย","ศึกษา.ไทย","ธุรกิจ.ไทย","รัฐบาล.ไทย","ทหาร.ไทย","เน็ต.ไทย","องค์กร.ไทย","تونس","台灣","台湾","臺灣","укр","اليمن","xxx","*.ye","ac.za","agric.za","alt.za","co.za","edu.za","gov.za","grondar.za","law.za","mil.za","net.za","ngo.za","nic.za","nis.za","nom.za","org.za","school.za","tm.za","web.za","zm","ac.zm","biz.zm","co.zm","com.zm","edu.zm","gov.zm","info.zm","mil.zm","net.zm","org.zm","sch.zm","zw","ac.zw","co.zw","gov.zw","mil.zw","org.zw","aaa","aarp","abarth","abb","abbott","abbvie","abc","able","abogado","abudhabi","academy","accenture","accountant","accountants","aco","actor","adac","ads","adult","aeg","aetna","afamilycompany","afl","africa","agakhan","agency","aig","aigo","airbus","airforce","airtel","akdn","alfaromeo","alibaba","alipay","allfinanz","allstate","ally","alsace","alstom","americanexpress","americanfamily","amex","amfam","amica","amsterdam","analytics","android","anquan","anz","aol","apartments","app","apple","aquarelle","arab","aramco","archi","army","art","arte","asda","associates","athleta","attorney","auction","audi","audible","audio","auspost","author","auto","autos","avianca","aws","axa","azure","baby","baidu","banamex","bananarepublic","band","bank","bar","barcelona","barclaycard","barclays","barefoot","bargains","baseball","basketball","bauhaus","bayern","bbc","bbt","bbva","bcg","bcn","beats","beauty","beer","bentley","berlin","best","bestbuy","bet","bharti","bible","bid","bike","bing","bingo","bio","black","blackfriday","blockbuster","blog","bloomberg","blue","bms","bmw","bnl","bnpparibas","boats","boehringer","bofa","bom","bond","boo","book","booking","bosch","bostik","boston","bot","boutique","box","bradesco","bridgestone","broadway","broker","brother","brussels","budapest","bugatti","build","builders","business","buy","buzz","bzh","cab","cafe","cal","call","calvinklein","cam","camera","camp","cancerresearch","canon","capetown","capital","capitalone","car","caravan","cards","care","career","careers","cars","cartier","casa","case","caseih","cash","casino","catering","catholic","cba","cbn","cbre","cbs","ceb","center","ceo","cern","cfa","cfd","chanel","channel","charity","chase","chat","cheap","chintai","christmas","chrome","chrysler","church","cipriani","circle","cisco","citadel","citi","citic","city","cityeats","claims","cleaning","click","clinic","clinique","clothing","cloud","club","clubmed","coach","codes","coffee","college","cologne","comcast","commbank","community","company","compare","computer","comsec","condos","construction","consulting","contact","contractors","cooking","cookingchannel","cool","corsica","country","coupon","coupons","courses","cpa","credit","creditcard","creditunion","cricket","crown","crs","cruise","cruises","csc","cuisinella","cymru","cyou","dabur","dad","dance","data","date","dating","datsun","day","dclk","dds","deal","dealer","deals","degree","delivery","dell","deloitte","delta","democrat","dental","dentist","desi","design","dev","dhl","diamonds","diet","digital","direct","directory","discount","discover","dish","diy","dnp","docs","doctor","dodge","dog","domains","dot","download","drive","dtv","dubai","duck","dunlop","duns","dupont","durban","dvag","dvr","earth","eat","eco","edeka","education","email","emerck","energy","engineer","engineering","enterprises","epson","equipment","ericsson","erni","esq","estate","esurance","etisalat","eurovision","eus","events","everbank","exchange","expert","exposed","express","extraspace","fage","fail","fairwinds","faith","family","fan","fans","farm","farmers","fashion","fast","fedex","feedback","ferrari","ferrero","fiat","fidelity","fido","film","final","finance","financial","fire","firestone","firmdale","fish","fishing","fit","fitness","flickr","flights","flir","florist","flowers","fly","foo","food","foodnetwork","football","ford","forex","forsale","forum","foundation","fox","free","fresenius","frl","frogans","frontdoor","frontier","ftr","fujitsu","fujixerox","fun","fund","furniture","futbol","fyi","gal","gallery","gallo","gallup","game","games","gap","garden","gay","gbiz","gdn","gea","gent","genting","george","ggee","gift","gifts","gives","giving","glade","glass","gle","global","globo","gmail","gmbh","gmo","gmx","godaddy","gold","goldpoint","golf","goo","goodyear","goog","google","gop","got","grainger","graphics","gratis","green","gripe","grocery","group","guardian","gucci","guge","guide","guitars","guru","hair","hamburg","hangout","haus","hbo","hdfc","hdfcbank","health","healthcare","help","helsinki","here","hermes","hgtv","hiphop","hisamitsu","hitachi","hiv","hkt","hockey","holdings","holiday","homedepot","homegoods","homes","homesense","honda","honeywell","horse","hospital","host","hosting","hot","hoteles","hotels","hotmail","house","how","hsbc","hughes","hyatt","hyundai","ibm","icbc","ice","icu","ieee","ifm","ikano","imamat","imdb","immo","immobilien","inc","industries","infiniti","ing","ink","institute","insurance","insure","intel","international","intuit","investments","ipiranga","irish","iselect","ismaili","ist","istanbul","itau","itv","iveco","jaguar","java","jcb","jcp","jeep","jetzt","jewelry","jio","jll","jmp","jnj","joburg","jot","joy","jpmorgan","jprs","juegos","juniper","kaufen","kddi","kerryhotels","kerrylogistics","kerryproperties","kfh","kia","kim","kinder","kindle","kitchen","kiwi","koeln","komatsu","kosher","kpmg","kpn","krd","kred","kuokgroup","kyoto","lacaixa","ladbrokes","lamborghini","lamer","lancaster","lancia","lancome","land","landrover","lanxess","lasalle","lat","latino","latrobe","law","lawyer","lds","lease","leclerc","lefrak","legal","lego","lexus","lgbt","liaison","lidl","life","lifeinsurance","lifestyle","lighting","like","lilly","limited","limo","lincoln","linde","link","lipsy","live","living","lixil","llc","loan","loans","locker","locus","loft","lol","london","lotte","lotto","love","lpl","lplfinancial","ltd","ltda","lundbeck","lupin","luxe","luxury","macys","madrid","maif","maison","makeup","man","management","mango","map","market","marketing","markets","marriott","marshalls","maserati","mattel","mba","mckinsey","med","media","meet","melbourne","meme","memorial","men","menu","merckmsd","metlife","miami","microsoft","mini","mint","mit","mitsubishi","mlb","mls","mma","mobile","mobily","moda","moe","moi","mom","monash","money","monster","mopar","mormon","mortgage","moscow","moto","motorcycles","mov","movie","movistar","msd","mtn","mtr","mutual","nab","nadex","nagoya","nationwide","natura","navy","nba","nec","netbank","netflix","network","neustar","new","newholland","news","next","nextdirect","nexus","nfl","ngo","nhk","nico","nike","nikon","ninja","nissan","nissay","nokia","northwesternmutual","norton","now","nowruz","nowtv","nra","nrw","ntt","nyc","obi","observer","off","office","okinawa","olayan","olayangroup","oldnavy","ollo","omega","one","ong","onl","online","onyourside","ooo","open","oracle","orange","organic","origins","osaka","otsuka","ott","ovh","page","panasonic","paris","pars","partners","parts","party","passagens","pay","pccw","pet","pfizer","pharmacy","phd","philips","phone","photo","photography","photos","physio","piaget","pics","pictet","pictures","pid","pin","ping","pink","pioneer","pizza","place","play","playstation","plumbing","plus","pnc","pohl","poker","politie","porn","pramerica","praxi","press","prime","prod","productions","prof","progressive","promo","properties","property","protection","pru","prudential","pub","pwc","qpon","quebec","quest","qvc","racing","radio","raid","read","realestate","realtor","realty","recipes","red","redstone","redumbrella","rehab","reise","reisen","reit","reliance","ren","rent","rentals","repair","report","republican","rest","restaurant","review","reviews","rexroth","rich","richardli","ricoh","rightathome","ril","rio","rip","rmit","rocher","rocks","rodeo","rogers","room","rsvp","rugby","ruhr","run","rwe","ryukyu","saarland","safe","safety","sakura","sale","salon","samsclub","samsung","sandvik","sandvikcoromant","sanofi","sap","sarl","sas","save","saxo","sbi","sbs","sca","scb","schaeffler","schmidt","scholarships","school","schule","schwarz","science","scjohnson","scor","scot","search","seat","secure","security","seek","select","sener","services","ses","seven","sew","sex","sexy","sfr","shangrila","sharp","shaw","shell","shia","shiksha","shoes","shop","shopping","shouji","show","showtime","shriram","silk","sina","singles","site","ski","skin","sky","skype","sling","smart","smile","sncf","soccer","social","softbank","software","sohu","solar","solutions","song","sony","soy","space","sport","spot","spreadbetting","srl","srt","stada","staples","star","starhub","statebank","statefarm","stc","stcgroup","stockholm","storage","store","stream","studio","study","style","sucks","supplies","supply","support","surf","surgery","suzuki","swatch","swiftcover","swiss","sydney","symantec","systems","tab","taipei","talk","taobao","target","tatamotors","tatar","tattoo","tax","taxi","tci","tdk","team","tech","technology","telefonica","temasek","tennis","teva","thd","theater","theatre","tiaa","tickets","tienda","tiffany","tips","tires","tirol","tjmaxx","tjx","tkmaxx","tmall","today","tokyo","tools","top","toray","toshiba","total","tours","town","toyota","toys","trade","trading","training","travel","travelchannel","travelers","travelersinsurance","trust","trv","tube","tui","tunes","tushu","tvs","ubank","ubs","uconnect","unicom","university","uno","uol","ups","vacations","vana","vanguard","vegas","ventures","verisign","versicherung","vet","viajes","video","vig","viking","villas","vin","vip","virgin","visa","vision","vistaprint","viva","vivo","vlaanderen","vodka","volkswagen","volvo","vote","voting","voto","voyage","vuelos","wales","walmart","walter","wang","wanggou","warman","watch","watches","weather","weatherchannel","webcam","weber","website","wed","wedding","weibo","weir","whoswho","wien","wiki","williamhill","win","windows","wine","winners","wme","wolterskluwer","woodside","work","works","world","wow","wtc","wtf","xbox","xerox","xfinity","xihuan","xin","कॉम","セール","佛山","慈善","集团","在线","大众汽车","点看","คอม","八卦","موقع","公益","公司","香格里拉","网站","移动","我爱你","москва","католик","онлайн","сайт","联通","קום","时尚","微博","淡马锡","ファッション","орг","नेट","ストア","삼성","商标","商店","商城","дети","ポイント","新闻","工行","家電","كوم","中文网","中信","娱乐","谷歌","電訊盈科","购物","クラウド","通販","网店","संगठन","餐厅","网络","ком","诺基亚","食品","飞利浦","手表","手机","ارامكو","العليان","اتصالات","بازار","موبايلي","ابوظبي","كاثوليك","همراه","닷컴","政府","شبكة","بيتك","عرب","机构","组织机构","健康","招聘","рус","珠宝","大拿","みんな","グーグル","世界","書籍","网址","닷넷","コム","天主教","游戏","vermögensberater","vermögensberatung","企业","信息","嘉里大酒店","嘉里","广东","政务","xyz","yachts","yahoo","yamaxun","yandex","yodobashi","yoga","yokohama","you","youtube","yun","zappos","zara","zero","zip","zone","zuerich","cc.ua","inf.ua","ltd.ua","beep.pl","barsy.ca","*.compute.estate","*.alces.network","alwaysdata.net","cloudfront.net","*.compute.amazonaws.com","*.compute-1.amazonaws.com","*.compute.amazonaws.com.cn","us-east-1.amazonaws.com","cn-north-1.eb.amazonaws.com.cn","cn-northwest-1.eb.amazonaws.com.cn","elasticbeanstalk.com","ap-northeast-1.elasticbeanstalk.com","ap-northeast-2.elasticbeanstalk.com","ap-northeast-3.elasticbeanstalk.com","ap-south-1.elasticbeanstalk.com","ap-southeast-1.elasticbeanstalk.com","ap-southeast-2.elasticbeanstalk.com","ca-central-1.elasticbeanstalk.com","eu-central-1.elasticbeanstalk.com","eu-west-1.elasticbeanstalk.com","eu-west-2.elasticbeanstalk.com","eu-west-3.elasticbeanstalk.com","sa-east-1.elasticbeanstalk.com","us-east-1.elasticbeanstalk.com","us-east-2.elasticbeanstalk.com","us-gov-west-1.elasticbeanstalk.com","us-west-1.elasticbeanstalk.com","us-west-2.elasticbeanstalk.com","*.elb.amazonaws.com","*.elb.amazonaws.com.cn","s3.amazonaws.com","s3-ap-northeast-1.amazonaws.com","s3-ap-northeast-2.amazonaws.com","s3-ap-south-1.amazonaws.com","s3-ap-southeast-1.amazonaws.com","s3-ap-southeast-2.amazonaws.com","s3-ca-central-1.amazonaws.com","s3-eu-central-1.amazonaws.com","s3-eu-west-1.amazonaws.com","s3-eu-west-2.amazonaws.com","s3-eu-west-3.amazonaws.com","s3-external-1.amazonaws.com","s3-fips-us-gov-west-1.amazonaws.com","s3-sa-east-1.amazonaws.com","s3-us-gov-west-1.amazonaws.com","s3-us-east-2.amazonaws.com","s3-us-west-1.amazonaws.com","s3-us-west-2.amazonaws.com","s3.ap-northeast-2.amazonaws.com","s3.ap-south-1.amazonaws.com","s3.cn-north-1.amazonaws.com.cn","s3.ca-central-1.amazonaws.com","s3.eu-central-1.amazonaws.com","s3.eu-west-2.amazonaws.com","s3.eu-west-3.amazonaws.com","s3.us-east-2.amazonaws.com","s3.dualstack.ap-northeast-1.amazonaws.com","s3.dualstack.ap-northeast-2.amazonaws.com","s3.dualstack.ap-south-1.amazonaws.com","s3.dualstack.ap-southeast-1.amazonaws.com","s3.dualstack.ap-southeast-2.amazonaws.com","s3.dualstack.ca-central-1.amazonaws.com","s3.dualstack.eu-central-1.amazonaws.com","s3.dualstack.eu-west-1.amazonaws.com","s3.dualstack.eu-west-2.amazonaws.com","s3.dualstack.eu-west-3.amazonaws.com","s3.dualstack.sa-east-1.amazonaws.com","s3.dualstack.us-east-1.amazonaws.com","s3.dualstack.us-east-2.amazonaws.com","s3-website-us-east-1.amazonaws.com","s3-website-us-west-1.amazonaws.com","s3-website-us-west-2.amazonaws.com","s3-website-ap-northeast-1.amazonaws.com","s3-website-ap-southeast-1.amazonaws.com","s3-website-ap-southeast-2.amazonaws.com","s3-website-eu-west-1.amazonaws.com","s3-website-sa-east-1.amazonaws.com","s3-website.ap-northeast-2.amazonaws.com","s3-website.ap-south-1.amazonaws.com","s3-website.ca-central-1.amazonaws.com","s3-website.eu-central-1.amazonaws.com","s3-website.eu-west-2.amazonaws.com","s3-website.eu-west-3.amazonaws.com","s3-website.us-east-2.amazonaws.com","t3l3p0rt.net","tele.amune.org","apigee.io","on-aptible.com","user.aseinet.ne.jp","gv.vc","d.gv.vc","user.party.eus","pimienta.org","poivron.org","potager.org","sweetpepper.org","myasustor.com","go-vip.co","go-vip.net","wpcomstaging.com","myfritz.net","*.awdev.ca","*.advisor.ws","b-data.io","backplaneapp.io","balena-devices.com","app.banzaicloud.io","betainabox.com","bnr.la","blackbaudcdn.net","boomla.net","boxfuse.io","square7.ch","bplaced.com","bplaced.de","square7.de","bplaced.net","square7.net","browsersafetymark.io","uk0.bigv.io","dh.bytemark.co.uk","vm.bytemark.co.uk","mycd.eu","carrd.co","crd.co","uwu.ai","ae.org","ar.com","br.com","cn.com","com.de","com.se","de.com","eu.com","gb.com","gb.net","hu.com","hu.net","jp.net","jpn.com","kr.com","mex.com","no.com","qc.com","ru.com","sa.com","se.net","uk.com","uk.net","us.com","uy.com","za.bz","za.com","africa.com","gr.com","in.net","us.org","co.com","c.la","certmgr.org","xenapponazure.com","discourse.group","virtueeldomein.nl","cleverapps.io","*.lcl.dev","*.stg.dev","c66.me","cloud66.ws","cloud66.zone","jdevcloud.com","wpdevcloud.com","cloudaccess.host","freesite.host","cloudaccess.net","cloudcontrolled.com","cloudcontrolapp.com","cloudera.site","trycloudflare.com","workers.dev","wnext.app","co.ca","*.otap.co","co.cz","c.cdn77.org","cdn77-ssl.net","r.cdn77.net","rsc.cdn77.org","ssl.origin.cdn77-secure.org","cloudns.asia","cloudns.biz","cloudns.club","cloudns.cc","cloudns.eu","cloudns.in","cloudns.info","cloudns.org","cloudns.pro","cloudns.pw","cloudns.us","cloudeity.net","cnpy.gdn","co.nl","co.no","webhosting.be","hosting-cluster.nl","dyn.cosidns.de","dynamisches-dns.de","dnsupdater.de","internet-dns.de","l-o-g-i-n.de","dynamic-dns.info","feste-ip.net","knx-server.net","static-access.net","realm.cz","*.cryptonomic.net","cupcake.is","cyon.link","cyon.site","daplie.me","localhost.daplie.me","dattolocal.com","dattorelay.com","dattoweb.com","mydatto.com","dattolocal.net","mydatto.net","biz.dk","co.dk","firm.dk","reg.dk","store.dk","*.dapps.earth","*.bzz.dapps.earth","debian.net","dedyn.io","dnshome.de","online.th","shop.th","drayddns.com","dreamhosters.com","mydrobo.com","drud.io","drud.us","duckdns.org","dy.fi","tunk.org","dyndns-at-home.com","dyndns-at-work.com","dyndns-blog.com","dyndns-free.com","dyndns-home.com","dyndns-ip.com","dyndns-mail.com","dyndns-office.com","dyndns-pics.com","dyndns-remote.com","dyndns-server.com","dyndns-web.com","dyndns-wiki.com","dyndns-work.com","dyndns.biz","dyndns.info","dyndns.org","dyndns.tv","at-band-camp.net","ath.cx","barrel-of-knowledge.info","barrell-of-knowledge.info","better-than.tv","blogdns.com","blogdns.net","blogdns.org","blogsite.org","boldlygoingnowhere.org","broke-it.net","buyshouses.net","cechire.com","dnsalias.com","dnsalias.net","dnsalias.org","dnsdojo.com","dnsdojo.net","dnsdojo.org","does-it.net","doesntexist.com","doesntexist.org","dontexist.com","dontexist.net","dontexist.org","doomdns.com","doomdns.org","dvrdns.org","dyn-o-saur.com","dynalias.com","dynalias.net","dynalias.org","dynathome.net","dyndns.ws","endofinternet.net","endofinternet.org","endoftheinternet.org","est-a-la-maison.com","est-a-la-masion.com","est-le-patron.com","est-mon-blogueur.com","for-better.biz","for-more.biz","for-our.info","for-some.biz","for-the.biz","forgot.her.name","forgot.his.name","from-ak.com","from-al.com","from-ar.com","from-az.net","from-ca.com","from-co.net","from-ct.com","from-dc.com","from-de.com","from-fl.com","from-ga.com","from-hi.com","from-ia.com","from-id.com","from-il.com","from-in.com","from-ks.com","from-ky.com","from-la.net","from-ma.com","from-md.com","from-me.org","from-mi.com","from-mn.com","from-mo.com","from-ms.com","from-mt.com","from-nc.com","from-nd.com","from-ne.com","from-nh.com","from-nj.com","from-nm.com","from-nv.com","from-ny.net","from-oh.com","from-ok.com","from-or.com","from-pa.com","from-pr.com","from-ri.com","from-sc.com","from-sd.com","from-tn.com","from-tx.com","from-ut.com","from-va.com","from-vt.com","from-wa.com","from-wi.com","from-wv.com","from-wy.com","ftpaccess.cc","fuettertdasnetz.de","game-host.org","game-server.cc","getmyip.com","gets-it.net","go.dyndns.org","gotdns.com","gotdns.org","groks-the.info","groks-this.info","ham-radio-op.net","here-for-more.info","hobby-site.com","hobby-site.org","home.dyndns.org","homedns.org","homeftp.net","homeftp.org","homeip.net","homelinux.com","homelinux.net","homelinux.org","homeunix.com","homeunix.net","homeunix.org","iamallama.com","in-the-band.net","is-a-anarchist.com","is-a-blogger.com","is-a-bookkeeper.com","is-a-bruinsfan.org","is-a-bulls-fan.com","is-a-candidate.org","is-a-caterer.com","is-a-celticsfan.org","is-a-chef.com","is-a-chef.net","is-a-chef.org","is-a-conservative.com","is-a-cpa.com","is-a-cubicle-slave.com","is-a-democrat.com","is-a-designer.com","is-a-doctor.com","is-a-financialadvisor.com","is-a-geek.com","is-a-geek.net","is-a-geek.org","is-a-green.com","is-a-guru.com","is-a-hard-worker.com","is-a-hunter.com","is-a-knight.org","is-a-landscaper.com","is-a-lawyer.com","is-a-liberal.com","is-a-libertarian.com","is-a-linux-user.org","is-a-llama.com","is-a-musician.com","is-a-nascarfan.com","is-a-nurse.com","is-a-painter.com","is-a-patsfan.org","is-a-personaltrainer.com","is-a-photographer.com","is-a-player.com","is-a-republican.com","is-a-rockstar.com","is-a-socialist.com","is-a-soxfan.org","is-a-student.com","is-a-teacher.com","is-a-techie.com","is-a-therapist.com","is-an-accountant.com","is-an-actor.com","is-an-actress.com","is-an-anarchist.com","is-an-artist.com","is-an-engineer.com","is-an-entertainer.com","is-by.us","is-certified.com","is-found.org","is-gone.com","is-into-anime.com","is-into-cars.com","is-into-cartoons.com","is-into-games.com","is-leet.com","is-lost.org","is-not-certified.com","is-saved.org","is-slick.com","is-uberleet.com","is-very-bad.org","is-very-evil.org","is-very-good.org","is-very-nice.org","is-very-sweet.org","is-with-theband.com","isa-geek.com","isa-geek.net","isa-geek.org","isa-hockeynut.com","issmarterthanyou.com","isteingeek.de","istmein.de","kicks-ass.net","kicks-ass.org","knowsitall.info","land-4-sale.us","lebtimnetz.de","leitungsen.de","likes-pie.com","likescandy.com","merseine.nu","mine.nu","misconfused.org","mypets.ws","myphotos.cc","neat-url.com","office-on-the.net","on-the-web.tv","podzone.net","podzone.org","readmyblog.org","saves-the-whales.com","scrapper-site.net","scrapping.cc","selfip.biz","selfip.com","selfip.info","selfip.net","selfip.org","sells-for-less.com","sells-for-u.com","sells-it.net","sellsyourhome.org","servebbs.com","servebbs.net","servebbs.org","serveftp.net","serveftp.org","servegame.org","shacknet.nu","simple-url.com","space-to-rent.com","stuff-4-sale.org","stuff-4-sale.us","teaches-yoga.com","thruhere.net","traeumtgerade.de","webhop.biz","webhop.info","webhop.net","webhop.org","worse-than.tv","writesthisblog.com","ddnss.de","dyn.ddnss.de","dyndns.ddnss.de","dyndns1.de","dyn-ip24.de","home-webserver.de","dyn.home-webserver.de","myhome-server.de","ddnss.org","definima.net","definima.io","bci.dnstrace.pro","ddnsfree.com","ddnsgeek.com","giize.com","gleeze.com","kozow.com","loseyourip.com","ooguy.com","theworkpc.com","casacam.net","dynu.net","accesscam.org","camdvr.org","freeddns.org","mywire.org","webredirect.org","myddns.rocks","blogsite.xyz","dynv6.net","e4.cz","mytuleap.com","onred.one","staging.onred.one","enonic.io","customer.enonic.io","eu.org","al.eu.org","asso.eu.org","at.eu.org","au.eu.org","be.eu.org","bg.eu.org","ca.eu.org","cd.eu.org","ch.eu.org","cn.eu.org","cy.eu.org","cz.eu.org","de.eu.org","dk.eu.org","edu.eu.org","ee.eu.org","es.eu.org","fi.eu.org","fr.eu.org","gr.eu.org","hr.eu.org","hu.eu.org","ie.eu.org","il.eu.org","in.eu.org","int.eu.org","is.eu.org","it.eu.org","jp.eu.org","kr.eu.org","lt.eu.org","lu.eu.org","lv.eu.org","mc.eu.org","me.eu.org","mk.eu.org","mt.eu.org","my.eu.org","net.eu.org","ng.eu.org","nl.eu.org","no.eu.org","nz.eu.org","paris.eu.org","pl.eu.org","pt.eu.org","q-a.eu.org","ro.eu.org","ru.eu.org","se.eu.org","si.eu.org","sk.eu.org","tr.eu.org","uk.eu.org","us.eu.org","eu-1.evennode.com","eu-2.evennode.com","eu-3.evennode.com","eu-4.evennode.com","us-1.evennode.com","us-2.evennode.com","us-3.evennode.com","us-4.evennode.com","twmail.cc","twmail.net","twmail.org","mymailer.com.tw","url.tw","apps.fbsbx.com","ru.net","adygeya.ru","bashkiria.ru","bir.ru","cbg.ru","com.ru","dagestan.ru","grozny.ru","kalmykia.ru","kustanai.ru","marine.ru","mordovia.ru","msk.ru","mytis.ru","nalchik.ru","nov.ru","pyatigorsk.ru","spb.ru","vladikavkaz.ru","vladimir.ru","abkhazia.su","adygeya.su","aktyubinsk.su","arkhangelsk.su","armenia.su","ashgabad.su","azerbaijan.su","balashov.su","bashkiria.su","bryansk.su","bukhara.su","chimkent.su","dagestan.su","east-kazakhstan.su","exnet.su","georgia.su","grozny.su","ivanovo.su","jambyl.su","kalmykia.su","kaluga.su","karacol.su","karaganda.su","karelia.su","khakassia.su","krasnodar.su","kurgan.su","kustanai.su","lenug.su","mangyshlak.su","mordovia.su","msk.su","murmansk.su","nalchik.su","navoi.su","north-kazakhstan.su","nov.su","obninsk.su","penza.su","pokrovsk.su","sochi.su","spb.su","tashkent.su","termez.su","togliatti.su","troitsk.su","tselinograd.su","tula.su","tuva.su","vladikavkaz.su","vladimir.su","vologda.su","channelsdvr.net","fastly-terrarium.com","fastlylb.net","map.fastlylb.net","freetls.fastly.net","map.fastly.net","a.prod.fastly.net","global.prod.fastly.net","a.ssl.fastly.net","b.ssl.fastly.net","global.ssl.fastly.net","fastpanel.direct","fastvps-server.com","fhapp.xyz","fedorainfracloud.org","fedorapeople.org","cloud.fedoraproject.org","app.os.fedoraproject.org","app.os.stg.fedoraproject.org","mydobiss.com","filegear.me","filegear-au.me","filegear-de.me","filegear-gb.me","filegear-ie.me","filegear-jp.me","filegear-sg.me","firebaseapp.com","flynnhub.com","flynnhosting.net","freebox-os.com","freeboxos.com","fbx-os.fr","fbxos.fr","freebox-os.fr","freeboxos.fr","freedesktop.org","*.futurecms.at","*.ex.futurecms.at","*.in.futurecms.at","futurehosting.at","futuremailing.at","*.ex.ortsinfo.at","*.kunden.ortsinfo.at","*.statics.cloud","service.gov.uk","gehirn.ne.jp","usercontent.jp","lab.ms","github.io","githubusercontent.com","gitlab.io","glitch.me","cloudapps.digital","london.cloudapps.digital","homeoffice.gov.uk","ro.im","shop.ro","goip.de","run.app","a.run.app","web.app","*.0emm.com","appspot.com","blogspot.ae","blogspot.al","blogspot.am","blogspot.ba","blogspot.be","blogspot.bg","blogspot.bj","blogspot.ca","blogspot.cf","blogspot.ch","blogspot.cl","blogspot.co.at","blogspot.co.id","blogspot.co.il","blogspot.co.ke","blogspot.co.nz","blogspot.co.uk","blogspot.co.za","blogspot.com","blogspot.com.ar","blogspot.com.au","blogspot.com.br","blogspot.com.by","blogspot.com.co","blogspot.com.cy","blogspot.com.ee","blogspot.com.eg","blogspot.com.es","blogspot.com.mt","blogspot.com.ng","blogspot.com.tr","blogspot.com.uy","blogspot.cv","blogspot.cz","blogspot.de","blogspot.dk","blogspot.fi","blogspot.fr","blogspot.gr","blogspot.hk","blogspot.hr","blogspot.hu","blogspot.ie","blogspot.in","blogspot.is","blogspot.it","blogspot.jp","blogspot.kr","blogspot.li","blogspot.lt","blogspot.lu","blogspot.md","blogspot.mk","blogspot.mr","blogspot.mx","blogspot.my","blogspot.nl","blogspot.no","blogspot.pe","blogspot.pt","blogspot.qa","blogspot.re","blogspot.ro","blogspot.rs","blogspot.ru","blogspot.se","blogspot.sg","blogspot.si","blogspot.sk","blogspot.sn","blogspot.td","blogspot.tw","blogspot.ug","blogspot.vn","cloudfunctions.net","cloud.goog","codespot.com","googleapis.com","googlecode.com","pagespeedmobilizer.com","publishproxy.com","withgoogle.com","withyoutube.com","fin.ci","free.hr","caa.li","ua.rs","conf.se","hs.zone","hs.run","hashbang.sh","hasura.app","hasura-app.io","hepforge.org","herokuapp.com","herokussl.com","myravendb.com","ravendb.community","ravendb.me","development.run","ravendb.run","bpl.biz","orx.biz","ng.city","biz.gl","ng.ink","col.ng","firm.ng","gen.ng","ltd.ng","ng.school","sch.so","häkkinen.fi","*.moonscale.io","moonscale.net","iki.fi","dyn-berlin.de","in-berlin.de","in-brb.de","in-butter.de","in-dsl.de","in-dsl.net","in-dsl.org","in-vpn.de","in-vpn.net","in-vpn.org","biz.at","info.at","info.cx","ac.leg.br","al.leg.br","am.leg.br","ap.leg.br","ba.leg.br","ce.leg.br","df.leg.br","es.leg.br","go.leg.br","ma.leg.br","mg.leg.br","ms.leg.br","mt.leg.br","pa.leg.br","pb.leg.br","pe.leg.br","pi.leg.br","pr.leg.br","rj.leg.br","rn.leg.br","ro.leg.br","rr.leg.br","rs.leg.br","sc.leg.br","se.leg.br","sp.leg.br","to.leg.br","pixolino.com","ipifony.net","mein-iserv.de","test-iserv.de","iserv.dev","iobb.net","myjino.ru","*.hosting.myjino.ru","*.landing.myjino.ru","*.spectrum.myjino.ru","*.vps.myjino.ru","*.triton.zone","*.cns.joyent.com","js.org","kaas.gg","khplay.nl","keymachine.de","kinghost.net","uni5.net","knightpoint.systems","co.krd","edu.krd","git-repos.de","lcube-server.de","svn-repos.de","leadpages.co","lpages.co","lpusercontent.com","lelux.site","co.business","co.education","co.events","co.financial","co.network","co.place","co.technology","app.lmpm.com","linkitools.space","linkyard.cloud","linkyard-cloud.ch","members.linode.com","nodebalancer.linode.com","we.bs","loginline.app","loginline.dev","loginline.io","loginline.services","loginline.site","krasnik.pl","leczna.pl","lubartow.pl","lublin.pl","poniatowa.pl","swidnik.pl","uklugs.org","glug.org.uk","lug.org.uk","lugs.org.uk","barsy.bg","barsy.co.uk","barsyonline.co.uk","barsycenter.com","barsyonline.com","barsy.club","barsy.de","barsy.eu","barsy.in","barsy.info","barsy.io","barsy.me","barsy.menu","barsy.mobi","barsy.net","barsy.online","barsy.org","barsy.pro","barsy.pub","barsy.shop","barsy.site","barsy.support","barsy.uk","*.magentosite.cloud","mayfirst.info","mayfirst.org","hb.cldmail.ru","miniserver.com","memset.net","cloud.metacentrum.cz","custom.metacentrum.cz","flt.cloud.muni.cz","usr.cloud.muni.cz","meteorapp.com","eu.meteorapp.com","co.pl","azurecontainer.io","azurewebsites.net","azure-mobile.net","cloudapp.net","mozilla-iot.org","bmoattachments.org","net.ru","org.ru","pp.ru","ui.nabu.casa","pony.club","of.fashion","on.fashion","of.football","in.london","of.london","for.men","and.mom","for.mom","for.one","for.sale","of.work","to.work","nctu.me","bitballoon.com","netlify.com","4u.com","ngrok.io","nh-serv.co.uk","nfshost.com","dnsking.ch","mypi.co","n4t.co","001www.com","ddnslive.com","myiphost.com","forumz.info","16-b.it","32-b.it","64-b.it","soundcast.me","tcp4.me","dnsup.net","hicam.net","now-dns.net","ownip.net","vpndns.net","dynserv.org","now-dns.org","x443.pw","now-dns.top","ntdll.top","freeddns.us","crafting.xyz","zapto.xyz","nsupdate.info","nerdpol.ovh","blogsyte.com","brasilia.me","cable-modem.org","ciscofreak.com","collegefan.org","couchpotatofries.org","damnserver.com","ddns.me","ditchyourip.com","dnsfor.me","dnsiskinky.com","dvrcam.info","dynns.com","eating-organic.net","fantasyleague.cc","geekgalaxy.com","golffan.us","health-carereform.com","homesecuritymac.com","homesecuritypc.com","hopto.me","ilovecollege.info","loginto.me","mlbfan.org","mmafan.biz","myactivedirectory.com","mydissent.net","myeffect.net","mymediapc.net","mypsx.net","mysecuritycamera.com","mysecuritycamera.net","mysecuritycamera.org","net-freaks.com","nflfan.org","nhlfan.net","no-ip.ca","no-ip.co.uk","no-ip.net","noip.us","onthewifi.com","pgafan.net","point2this.com","pointto.us","privatizehealthinsurance.net","quicksytes.com","read-books.org","securitytactics.com","serveexchange.com","servehumour.com","servep2p.com","servesarcasm.com","stufftoread.com","ufcfan.org","unusualperson.com","workisboring.com","3utilities.com","bounceme.net","ddns.net","ddnsking.com","gotdns.ch","hopto.org","myftp.biz","myftp.org","myvnc.com","no-ip.biz","no-ip.info","no-ip.org","noip.me","redirectme.net","servebeer.com","serveblog.net","servecounterstrike.com","serveftp.com","servegame.com","servehalflife.com","servehttp.com","serveirc.com","serveminecraft.net","servemp3.com","servepics.com","servequake.com","sytes.net","webhop.me","zapto.org","stage.nodeart.io","nodum.co","nodum.io","pcloud.host","nyc.mn","nom.ae","nom.af","nom.ai","nom.al","nym.by","nym.bz","nom.cl","nym.ec","nom.gd","nom.ge","nom.gl","nym.gr","nom.gt","nym.gy","nym.hk","nom.hn","nym.ie","nom.im","nom.ke","nym.kz","nym.la","nym.lc","nom.li","nym.li","nym.lt","nym.lu","nym.me","nom.mk","nym.mn","nym.mx","nom.nu","nym.nz","nym.pe","nym.pt","nom.pw","nom.qa","nym.ro","nom.rs","nom.si","nym.sk","nom.st","nym.su","nym.sx","nom.tj","nym.tw","nom.ug","nom.uy","nom.vc","nom.vg","cya.gg","cloudycluster.net","nid.io","opencraft.hosting","operaunite.com","outsystemscloud.com","ownprovider.com","own.pm","ox.rs","oy.lc","pgfog.com","pagefrontapp.com","art.pl","gliwice.pl","krakow.pl","poznan.pl","wroc.pl","zakopane.pl","pantheonsite.io","gotpantheon.com","mypep.link","on-web.fr","*.platform.sh","*.platformsh.site","dyn53.io","co.bn","xen.prgmr.com","priv.at","prvcy.page","*.dweb.link","protonet.io","chirurgiens-dentistes-en-france.fr","byen.site","pubtls.org","qualifioapp.com","instantcloud.cn","ras.ru","qa2.com","dev-myqnapcloud.com","alpha-myqnapcloud.com","myqnapcloud.com","*.quipelements.com","vapor.cloud","vaporcloud.io","rackmaze.com","rackmaze.net","*.on-rancher.cloud","*.on-rio.io","readthedocs.io","rhcloud.com","app.render.com","onrender.com","repl.co","repl.run","resindevice.io","devices.resinstaging.io","hzc.io","wellbeingzone.eu","ptplus.fit","wellbeingzone.co.uk","git-pages.rit.edu","sandcats.io","logoip.de","logoip.com","schokokeks.net","scrysec.com","firewall-gateway.com","firewall-gateway.de","my-gateway.de","my-router.de","spdns.de","spdns.eu","firewall-gateway.net","my-firewall.org","myfirewall.org","spdns.org","biz.ua","co.ua","pp.ua","shiftedit.io","myshopblocks.com","shopitsite.com","mo-siemens.io","1kapp.com","appchizi.com","applinzi.com","sinaapp.com","vipsinaapp.com","siteleaf.net","bounty-full.com","alpha.bounty-full.com","beta.bounty-full.com","stackhero-network.com","static.land","dev.static.land","sites.static.land","apps.lair.io","*.stolos.io","spacekit.io","customer.speedpartner.de","api.stdlib.com","storj.farm","utwente.io","soc.srcf.net","user.srcf.net","temp-dns.com","applicationcloud.io","scapp.io","*.s5y.io","*.sensiosite.cloud","syncloud.it","diskstation.me","dscloud.biz","dscloud.me","dscloud.mobi","dsmynas.com","dsmynas.net","dsmynas.org","familyds.com","familyds.net","familyds.org","i234.me","myds.me","synology.me","vpnplus.to","taifun-dns.de","gda.pl","gdansk.pl","gdynia.pl","med.pl","sopot.pl","edugit.org","telebit.app","telebit.io","*.telebit.xyz","gwiddle.co.uk","thingdustdata.com","cust.dev.thingdust.io","cust.disrec.thingdust.io","cust.prod.thingdust.io","cust.testing.thingdust.io","arvo.network","azimuth.network","bloxcms.com","townnews-staging.com","12hp.at","2ix.at","4lima.at","lima-city.at","12hp.ch","2ix.ch","4lima.ch","lima-city.ch","trafficplex.cloud","de.cool","12hp.de","2ix.de","4lima.de","lima-city.de","1337.pictures","clan.rip","lima-city.rocks","webspace.rocks","lima.zone","*.transurl.be","*.transurl.eu","*.transurl.nl","tuxfamily.org","dd-dns.de","diskstation.eu","diskstation.org","dray-dns.de","draydns.de","dyn-vpn.de","dynvpn.de","mein-vigor.de","my-vigor.de","my-wan.de","syno-ds.de","synology-diskstation.de","synology-ds.de","uber.space","*.uberspace.de","hk.com","hk.org","ltd.hk","inc.hk","virtualuser.de","virtual-user.de","lib.de.us","2038.io","router.management","v-info.info","voorloper.cloud","wafflecell.com","*.webhare.dev","wedeploy.io","wedeploy.me","wedeploy.sh","remotewd.com","wmflabs.org","half.host","xnbay.com","u2.xnbay.com","u2-local.xnbay.com","cistron.nl","demon.nl","xs4all.space","yandexcloud.net","storage.yandexcloud.net","website.yandexcloud.net","official.academy","yolasite.com","ybo.faith","yombo.me","homelink.one","ybo.party","ybo.review","ybo.science","ybo.trade","nohost.me","noho.st","za.net","za.org","now.sh","bss.design","basicserver.io","virtualserver.io","site.builder.nu","enterprisecloud.nu","zone.id"]},1878:function(e,t,n){"use strict";var r=n(333);e.exports=function isDataDescriptor(e,t){var n={configurable:"boolean",enumerable:"boolean",writable:"boolean"};if(r(e)!=="object"){return false}if(typeof t==="string"){var i=Object.getOwnPropertyDescriptor(e,t);return typeof i!=="undefined"}if(!("value"in e)&&!("writable"in e)){return false}for(var o in e){if(o==="value")continue;if(!n.hasOwnProperty(o)){continue}if(r(e[o])===n[o]){continue}if(typeof e[o]!=="undefined"){return false}}return true}},1889:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(2970));function fetchDeploymentFromAlias(e,t,n,i){return r(this,void 0,void 0,function*(){return n&&n.deploymentId&&n.deploymentId!==i.uid?o.default(e,t,n.deploymentId):null})}t.default=fetchDeploymentFromAlias},1890:function(e,t,n){"use strict";var r=n(3062).Buffer;t._sbcs=SBCSCodec;function SBCSCodec(e,t){if(!e)throw new Error("SBCS codec is called without the data.");if(!e.chars||e.chars.length!==128&&e.chars.length!==256)throw new Error("Encoding '"+e.type+"' has incorrect 'chars' (must be of len 128 or 256)");if(e.chars.length===128){var n="";for(var i=0;i<128;i++)n+=String.fromCharCode(i);e.chars=n+e.chars}this.decodeBuf=r.from(e.chars,"ucs2");var o=r.alloc(65536,t.defaultCharSingleByte.charCodeAt(0));for(var i=0;i<e.chars.length;i++)o[e.chars.charCodeAt(i)]=i;this.encodeBuf=o}SBCSCodec.prototype.encoder=SBCSEncoder;SBCSCodec.prototype.decoder=SBCSDecoder;function SBCSEncoder(e,t){this.encodeBuf=t.encodeBuf}SBCSEncoder.prototype.write=function(e){var t=r.alloc(e.length);for(var n=0;n<e.length;n++)t[n]=this.encodeBuf[e.charCodeAt(n)];return t};SBCSEncoder.prototype.end=function(){};function SBCSDecoder(e,t){this.decodeBuf=t.decodeBuf}SBCSDecoder.prototype.write=function(e){var t=this.decodeBuf;var n=r.alloc(e.length*2);var i=0,o=0;for(var a=0;a<e.length;a++){i=e[a]*2;o=a*2;n[o]=t[i];n[o+1]=t[i+1]}return n.toString("ucs2")};SBCSDecoder.prototype.end=function(){}},1891:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=i(n(3759));const c=i(n(4680));const u=i(n(3623));const l=i(n(4336));const f=i(n(3266));const p=i(n(499));const d=i(n(586));const h=i(n(8950));const m=o(n(8715));const v=process.stdout.isTTY;function purchaseDomainIfAvailable(e,t,n,i){return r(this,void 0,void 0,function*(){const r=h.default(`Checking status of ${a.default.bold(n)}`);const o=d.default();const{available:g}=yield l.default(t,n);if(g){if(!v){return new m.DomainNotFound(n)}e.debug(`Domain ${n} is available to be purchased`);const l=yield u.default(t,n);r();if(l instanceof m.UnsupportedTLD){return l}const{price:d,period:h}=l;e.log(`Domain not found, but you can buy it under ${a.default.bold(i)}! ${o()}`);if(!(yield f.default(`Buy ${a.default.underline(n)} for ${a.default.bold(`$${d}`)} (${s.default("yr",h,true)})?`))){e.print(c.default(1));return new m.UserAborted}e.print(c.default(1));const g=yield p.default(t,n,d);if(g instanceof Error){return g}if(g.pending){return new m.DomainPurchasePending(n)}return true}e.debug(`Domain ${n} is not available to be purchased`);r();return false})}t.default=purchaseDomainIfAvailable},1908:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=r(n(8277));const o=n(9665);e.exports={mkdirs:i,mkdirsSync:o,mkdirp:i,mkdirpSync:o,ensureDir:i,ensureDirSync:o}},1931:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(1390);var o=n(2307);var a=n(7552);var s=n(5133);var c=function(e){r.__extends(HTTPSTransport,e);function HTTPSTransport(t){var n=e.call(this,t)||this;n.options=t;n.module=o;var r=t.httpsProxy||t.httpProxy||process.env.https_proxy||process.env.http_proxy;n.client=r?new a(r):new o.Agent({keepAlive:false,maxSockets:30,timeout:2e3});return n}HTTPSTransport.prototype.sendEvent=function(e){if(!this.module){throw new i.SentryError("No module available in HTTPSTransport")}return this._sendWithModule(this.module,e)};return HTTPSTransport}(s.BaseTransport);t.HTTPSTransport=c},1939:function(e){e.exports=require("net")},1940:function(e,t,n){"use strict";var r=n(5325);var i=n(7400);e.exports=function unset(e,t){if(!r(e)){throw new TypeError("expected an object.")}if(e.hasOwnProperty(t)){delete e[t];return true}if(i(e,t)){var n=t.split(".");var o=n.pop();while(n.length&&n[n.length-1].slice(-1)==="\\"){o=n.pop().slice(0,-1)+"."+o}while(n.length)e=e[t=n.shift()];return delete e[o]}return true}},1943:function(e){e.exports=["SIGABRT","SIGALRM","SIGHUP","SIGINT","SIGTERM"];if(process.platform!=="win32"){e.exports.push("SIGVTALRM","SIGXCPU","SIGXFSZ","SIGUSR2","SIGTRAP","SIGSYS","SIGQUIT","SIGIOT")}if(process.platform==="linux"){e.exports.push("SIGIO","SIGPOLL","SIGPWR","SIGSTKFLT","SIGUNUSED")}},1946:function(e,t,n){e.exports=PrivateKey;var r=n(9261);var i=n(3062).Buffer;var o=n(6977);var a=n(2984);var s=n(3941);var c=n(5511);var u=n(7825);var l=n(649);var f=n(5271);var p=n(3252);var d=p.generateECDSA;var h=p.generateED25519;var m=n(1405);var v=n(1449);var g=n(120);var y=u.InvalidAlgorithmError;var b=u.KeyParseError;var w=u.KeyEncryptedError;var x={};x["auto"]=n(8610);x["pem"]=n(5302);x["pkcs1"]=n(2292);x["pkcs8"]=n(6109);x["rfc4253"]=n(2046);x["ssh-private"]=n(9755);x["openssh"]=x["ssh-private"];x["ssh"]=x["ssh-private"];x["dnssec"]=n(8051);function PrivateKey(e){r.object(e,"options");g.call(this,e);this._pubCache=undefined}l.inherits(PrivateKey,g);PrivateKey.formats=x;PrivateKey.prototype.toBuffer=function(e,t){if(e===undefined)e="pkcs1";r.string(e,"format");r.object(x[e],"formats[format]");r.optionalObject(t,"options");return x[e].write(this,t)};PrivateKey.prototype.hash=function(e,t){return this.toPublic().hash(e,t)};PrivateKey.prototype.fingerprint=function(e,t){return this.toPublic().fingerprint(e,t)};PrivateKey.prototype.toPublic=function(){if(this._pubCache)return this._pubCache;var e=o.info[this.type];var t=[];for(var n=0;n<e.parts.length;++n){var r=e.parts[n];t.push(this.part[r])}this._pubCache=new g({type:this.type,source:this,parts:t});if(this.comment)this._pubCache.comment=this.comment;return this._pubCache};PrivateKey.prototype.derive=function(e){r.string(e,"type");var t,n,o;if(this.type==="ed25519"&&e==="curve25519"){t=this.part.k.data;if(t[0]===0)t=t.slice(1);o=v.box.keyPair.fromSecretKey(new Uint8Array(t));n=i.from(o.publicKey);return new PrivateKey({type:"curve25519",parts:[{name:"A",data:f.mpNormalize(n)},{name:"k",data:f.mpNormalize(t)}]})}else if(this.type==="curve25519"&&e==="ed25519"){t=this.part.k.data;if(t[0]===0)t=t.slice(1);o=v.sign.keyPair.fromSeed(new Uint8Array(t));n=i.from(o.publicKey);return new PrivateKey({type:"ed25519",parts:[{name:"A",data:f.mpNormalize(n)},{name:"k",data:f.mpNormalize(t)}]})}throw new Error("Key derivation not supported from "+this.type+" to "+e)};PrivateKey.prototype.createVerify=function(e){return this.toPublic().createVerify(e)};PrivateKey.prototype.createSign=function(e){if(e===undefined)e=this.defaultHashAlgorithm();r.string(e,"hash algorithm");if(this.type==="ed25519"&&m!==undefined)return new m.Signer(this,e);if(this.type==="curve25519")throw new Error("Curve25519 keys are not suitable for "+"signing or verification");var t,n,o;try{n=e.toUpperCase();t=a.createSign(n)}catch(e){o=e}if(t===undefined||o instanceof Error&&o.message.match(/Unknown message digest/)){n="RSA-";n+=e.toUpperCase();t=a.createSign(n)}r.ok(t,"failed to create verifier");var s=t.sign.bind(t);var u=this.toBuffer("pkcs1");var l=this.type;var f=this.curve;t.sign=function(){var t=s(u);if(typeof t==="string")t=i.from(t,"binary");t=c.parse(t,l,"asn1");t.hashAlgorithm=e;t.curve=f;return t};return t};PrivateKey.parse=function(e,t,n){if(typeof e!=="string")r.buffer(e,"data");if(t===undefined)t="auto";r.string(t,"format");if(typeof n==="string")n={filename:n};r.optionalObject(n,"options");if(n===undefined)n={};r.optionalString(n.filename,"options.filename");if(n.filename===undefined)n.filename="(unnamed)";r.object(x[t],"formats[format]");try{var i=x[t].read(e,n);r.ok(i instanceof PrivateKey,"key is not a private key");if(!i.comment)i.comment=n.filename;return i}catch(e){if(e.name==="KeyEncryptedError")throw e;throw new b(n.filename,t,e)}};PrivateKey.isPrivateKey=function(e,t){return f.isCompatible(e,PrivateKey,t)};PrivateKey.generate=function(e,t){if(t===undefined)t={};r.object(t,"options");switch(e){case"ecdsa":if(t.curve===undefined)t.curve="nistp256";r.string(t.curve,"options.curve");return d(t.curve);case"ed25519":return h();default:throw new Error("Key generation not supported with key "+'type "'+e+'"')}};PrivateKey.prototype._sshpkApiVersion=[1,6];PrivateKey._oldVersionDetect=function(e){r.func(e.toPublic);r.func(e.createSign);if(e.derive)return[1,3];if(e.defaultHashAlgorithm)return[1,2];if(e.formats["auto"])return[1,1];return[1,0]}},1953:function(e){e.exports=[["a140","",62],["a180","",32],["a240","",62],["a280","",32],["a2ab","",5],["a2e3","€"],["a2ef",""],["a2fd",""],["a340","",62],["a380","",31," "],["a440","",62],["a480","",32],["a4f4","",10],["a540","",62],["a580","",32],["a5f7","",7],["a640","",62],["a680","",32],["a6b9","",7],["a6d9","",6],["a6ec",""],["a6f3",""],["a6f6","",8],["a740","",62],["a780","",32],["a7c2","",14],["a7f2","",12],["a896","",10],["a8bc",""],["a8bf","ǹ"],["a8c1",""],["a8ea","",20],["a958",""],["a95b",""],["a95d",""],["a989","〾⿰",11],["a997","",12],["a9f0","",14],["aaa1","",93],["aba1","",93],["aca1","",93],["ada1","",93],["aea1","",93],["afa1","",93],["d7fa","",4],["f8a1","",93],["f9a1","",93],["faa1","",93],["fba1","",93],["fca1","",93],["fda1","",93],["fe50","⺁⺄㑳㑇⺈⺋㖞㘚㘎⺌⺗㥮㤘㧏㧟㩳㧐㭎㱮㳠⺧⺪䁖䅟⺮䌷⺳⺶⺷䎱䎬⺻䏝䓖䙡䙌"],["fe80","䜣䜩䝼䞍⻊䥇䥺䥽䦂䦃䦅䦆䦟䦛䦷䦶䲣䲟䲠䲡䱷䲢䴓",6,"䶮",93]]},1954:function(e,t,n){const r=n(2255).fromCallback;e.exports={copy:r(n(3100))}},1960:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(5032));const s=i(n(3266));const c=["A","AAAA","ALIAS","CAA","CNAME","MX","SRV","TXT"];function getDNSData(e,t){return r(this,void 0,void 0,function*(){if(t){return t}try{const t=new Set(c);const n=(yield a.default({label:`- Record type (${c.join(", ")}): `,validateValue:e=>Boolean(e&&t.has(e.trim().toUpperCase()))})).trim().toUpperCase();const r=yield getRecordName(n);if(n==="SRV"){const t=yield getNumber(`- ${n} priority: `);const i=yield getNumber(`- ${n} weight: `);const a=yield getNumber(`- ${n} port: `);const s=yield getTrimmedString(`- ${n} target: `);e.log(`${o.default.cyan(r)} ${o.default.bold(n)} ${o.default.cyan(`${t}`)} ${o.default.cyan(`${i}`)} ${o.default.cyan(`${a}`)} ${o.default.cyan(s)}.`);return(yield verifyData())?{name:r,type:n,srv:{priority:t,weight:i,port:a,target:s}}:null}if(n==="MX"){const t=yield getNumber(`- ${n} priority: `);const i=yield getTrimmedString(`- ${n} host: `);e.log(`${o.default.cyan(r)} ${o.default.bold(n)} ${o.default.cyan(`${t}`)} ${o.default.cyan(i)}`);return(yield verifyData())?{name:r,type:n,value:i,mxPriority:t}:null}const i=yield getTrimmedString(`- ${n} value: `);e.log(`${o.default.cyan(r)} ${o.default.bold(n)} ${o.default.cyan(i)}`);return(yield verifyData())?{name:r,type:n,value:i}:null}catch(e){return null}})}t.default=getDNSData;function verifyData(){return r(this,void 0,void 0,function*(){return s.default("Is this correct?")})}function getRecordName(e){return r(this,void 0,void 0,function*(){const t=yield a.default({label:`- ${e} name: `});return t==="@"?"":t})}function getNumber(e){return r(this,void 0,void 0,function*(){return Number(yield a.default({label:e,validateValue:e=>Boolean(e&&Number(e))}))})}function getTrimmedString(e){return r(this,void 0,void 0,function*(){const t=yield a.default({label:e,validateValue:e=>Boolean(e&&e.trim().length>0)});return t.trim()})}},1964:function(e){"use strict";var t=/[|\\{}()[\]^$+*?.]/g;e.exports=function(e){if(typeof e!=="string"){throw new TypeError("Expected a string")}return e.replace(t,"\\$&")}},1973:function(e,t,n){var r=n(774).parse;var i=n(774).resolve;var o=n(4219);var a=n(2307);var s=n(2673);var c=n(6886);var u=n(3132);var l=n(2680);var f=n(1153);var p=n(34);var d=n(6612);e.exports=Fetch;e.exports.default=e.exports;function Fetch(e,t){if(!(this instanceof Fetch))return new Fetch(e,t);if(!Fetch.Promise){throw new Error("native promise missing, set Fetch.Promise to your favorite alternative")}u.Promise=Fetch.Promise;var n=this;return new Fetch.Promise(function(r,u){var h=new p(e,t);if(!h.protocol||!h.hostname){throw new Error("only absolute urls are supported")}if(h.protocol!=="http:"&&h.protocol!=="https:"){throw new Error("only http(s) protocols are supported")}var m;if(h.protocol==="https:"){m=a.request}else{m=o.request}var v=new f(h.headers);if(h.compress){v.set("accept-encoding","gzip,deflate")}if(!v.has("user-agent")){v.set("user-agent","node-fetch/1.0 (+https://github.com/bitinn/node-fetch)")}if(!v.has("connection")&&!h.agent){v.set("connection","close")}if(!v.has("accept")){v.set("accept","*/*")}if(!v.has("content-type")&&h.body&&typeof h.body.getBoundary==="function"){v.set("content-type","multipart/form-data; boundary="+h.body.getBoundary())}if(!v.has("content-length")&&/post|put|patch|delete/i.test(h.method)){if(typeof h.body==="string"){v.set("content-length",Buffer.byteLength(h.body))}else if(h.body&&typeof h.body.getLengthSync==="function"){if(h.body._lengthRetrievers&&h.body._lengthRetrievers.length==0){v.set("content-length",h.body.getLengthSync().toString())}else if(h.body.hasKnownLength&&h.body.hasKnownLength()){v.set("content-length",h.body.getLengthSync().toString())}}else if(h.body===undefined||h.body===null){v.set("content-length","0")}}h.headers=v.raw();if(h.headers.host){h.headers.host=h.headers.host[0]}var g=m(h);var y;if(h.timeout){g.once("socket",function(e){y=setTimeout(function(){g.abort();u(new d("network timeout at: "+h.url,"request-timeout"))},h.timeout)})}g.on("error",function(e){clearTimeout(y);u(new d("request to "+h.url+" failed, reason: "+e.message,"system",e))});g.on("response",function(e){clearTimeout(y);if(n.isRedirect(e.statusCode)&&h.redirect!=="manual"){if(h.redirect==="error"){u(new d("redirect mode is set to error: "+h.url,"no-redirect"));return}if(h.counter>=h.follow){u(new d("maximum redirect reached at: "+h.url,"max-redirect"));return}if(!e.headers.location){u(new d("redirect location header missing at: "+h.url,"invalid-redirect"));return}if(e.statusCode===303||(e.statusCode===301||e.statusCode===302)&&h.method==="POST"){h.method="GET";delete h.body;delete h.headers["content-length"]}h.counter++;r(Fetch(i(h.url,e.headers.location),h));return}var t=new f(e.headers);if(h.redirect==="manual"&&t.has("location")){t.set("location",i(h.url,t.get("location")))}var o=e.pipe(new c.PassThrough);var a={url:h.url,status:e.statusCode,statusText:e.statusMessage,headers:t,size:h.size,timeout:h.timeout};var p;if(!h.compress||h.method==="HEAD"||!t.has("content-encoding")||e.statusCode===204||e.statusCode===304){p=new l(o,a);r(p);return}var m=t.get("content-encoding");if(m=="gzip"||m=="x-gzip"){o=o.pipe(s.createGunzip());p=new l(o,a);r(p);return}else if(m=="deflate"||m=="x-deflate"){var v=e.pipe(new c.PassThrough);v.once("data",function(e){if((e[0]&15)===8){o=o.pipe(s.createInflate())}else{o=o.pipe(s.createInflateRaw())}p=new l(o,a);r(p)});return}p=new l(o,a);r(p);return});if(typeof h.body==="string"){g.write(h.body);g.end()}else if(h.body instanceof Buffer){g.write(h.body);g.end()}else if(typeof h.body==="object"&&h.body.pipe){h.body.pipe(g)}else if(typeof h.body==="object"){g.write(h.body.toString());g.end()}else{g.end()}})}Fetch.prototype.isRedirect=function(e){return e===301||e===302||e===303||e===307||e===308};Fetch.Promise=global.Promise;Fetch.Response=l;Fetch.Headers=f;Fetch.Request=p},1974:function(e,t,n){"use strict";var r=n(2551);var i=n(6488);var o=n(2225);var a=n(5474);var s=1024*64;var c={};e.exports=function(e,t){if(!Array.isArray(e)){return makeRe(e,t)}return makeRe(e.join("|"),t)};function makeRe(e,t){if(e instanceof RegExp){return e}if(typeof e!=="string"){throw new TypeError("expected a string")}if(e.length>s){throw new Error("expected pattern to be less than "+s+" characters")}var n=e;if(!t||t&&t.cache!==false){n=createKey(e,t);if(c.hasOwnProperty(n)){return c[n]}}var i=o({},t);if(i.contains===true){if(i.negate===true){i.strictNegate=false}else{i.strict=false}}if(i.strict===false){i.strictOpen=false;i.strictClose=false}var u=i.strictOpen!==false?"^":"";var l=i.strictClose!==false?"$":"";var f=i.flags||"";var p;if(i.nocase===true&&!/i/.test(f)){f+="i"}try{if(i.negate||typeof i.strictNegate==="boolean"){e=a.create(e,i)}var d=u+"(?:"+e+")"+l;p=new RegExp(d,f);if(i.safe===true&&r(p)===false){throw new Error("potentially unsafe regular expression: "+p.source)}}catch(r){if(i.strictErrors===true||i.safe===true){r.key=n;r.pattern=e;r.originalOptions=t;r.createdOptions=i;throw r}try{p=new RegExp("^"+e.replace(/(\W)/g,"\\$1")+"$")}catch(e){p=/.^/}}if(i.cache!==false){memoize(p,n,e,i)}return p}function memoize(e,t,n,r){i(e,"cached",true);i(e,"pattern",n);i(e,"options",r);i(e,"key",t);c[t]=e}function createKey(e,t){if(!t)return e;var n=e;for(var r in t){if(t.hasOwnProperty(r)){n+=";"+r+"="+String(t[r])}}return n}e.exports.makeRe=makeRe},1989:function(e,t,n){"use strict";var r=n(3332);var i=n(2286);var o=n(5474);var a=n(1974);var s;var c="([!@*?+]?\\(|\\)|\\[:?(?=.*?:?\\])|:?\\]|[*+?!^$.\\\\/])+";var u=function(e){return s||(s=textRegex(c))};e.exports=function(e){var t=e.parser.parsers;e.use(i.parsers);var n=t.escape;var o=t.slash;var a=t.qmark;var s=t.plus;var c=t.star;var l=t.dot;e.use(r.parsers);e.parser.use(function(){this.notRegex=/^\!+(?!\()/}).capture("escape",n).capture("slash",o).capture("qmark",a).capture("star",c).capture("plus",s).capture("dot",l).capture("text",function(){if(this.isInside("bracket"))return;var e=this.position();var t=this.match(u(this.options));if(!t||!t[0])return;var n=t[0].replace(/([[\]^$])/g,"\\$1");return e({type:"text",val:n})})};function textRegex(e){var t=o.create(e,{contains:true,strictClose:false});var n="(?:[\\^]|\\\\|";return a(n+t+")",{strictClose:false})}},1991:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};var o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(8715));const s=o(n(8685));function getInferredTargets(e,t){return r(this,void 0,void 0,function*(){e.warn(`The ${s.default("now alias")} command (no arguments) was deprecated in favor of ${s.default("now --prod")}.`);if(t.aliases){e.warn("The `aliases` field has been deprecated in favor of `alias`")}const n=t.aliases||t.alias;if(!n){return new a.NoAliasInConfig}if(typeof n!=="string"&&!Array.isArray(n)){return new a.InvalidAliasInConfig(n)}return typeof n==="string"?[n]:n})}t.default=getInferredTargets},1994:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(635);var o=n(4580);var a=n(1390);var s=n(649);var c=function(){function Console(){this.name=Console.id}Console.prototype.setupOnce=function(){var e=n(7786);a.fill(e,"_load",loadWrapper(e));n(8546)};Console.id="Console";return Console}();t.Console=c;function loadWrapper(e){return function(t){return function(n){var r=t.apply(e,arguments);if(n!=="console"||r.__sentry__){return r}["debug","info","warn","error","log"].forEach(consoleWrapper(r));r.__sentry__=true;return r}}}function consoleWrapper(e){return function(t){if(!(t in e)){return}a.fill(e,t,function(n){var a;switch(t){case"debug":a=o.Severity.Debug;break;case"error":a=o.Severity.Error;break;case"info":a=o.Severity.Info;break;case"warn":a=o.Severity.Warning;break;default:a=o.Severity.Log}return function(){if(i.getCurrentHub().getIntegration(c)){i.getCurrentHub().addBreadcrumb({category:"console",level:a,message:s.format.apply(undefined,arguments)},{input:r.__spread(arguments),level:t})}n.apply(e,arguments)}})}}},2011:function(e){"use strict";e.exports=function(e,t,n,r){var i=false;var o=function(e,t){this._reject(t)};var a=function(e,t){t.promiseRejectionQueued=true;t.bindingPromise._then(o,o,null,this,e)};var s=function(e,t){if((this._bitField&50397184)===0){this._resolveCallback(t.target)}};var c=function(e,t){if(!t.promiseRejectionQueued)this._reject(e)};e.prototype.bind=function(o){if(!i){i=true;e.prototype._propagateFrom=r.propagateFromFunction();e.prototype._boundValue=r.boundValueFunction()}var u=n(o);var l=new e(t);l._propagateFrom(this,1);var f=this._target();l._setBoundTo(u);if(u instanceof e){var p={promiseRejectionQueued:false,promise:l,target:f,bindingPromise:u};f._then(t,a,undefined,l,p);u._then(s,c,undefined,l,p);l._setOnCancel(u)}else{l._resolveCallback(f)}return l};e.prototype._setBoundTo=function(e){if(e!==undefined){this._bitField=this._bitField|2097152;this._boundTo=e}else{this._bitField=this._bitField&~2097152}};e.prototype._isBound=function(){return(this._bitField&2097152)===2097152};e.bind=function(t,n){return e.resolve(n).bind(t)}}},2012:function(e,t,n){"use strict";e.exports=function(){"use strict";var e=n(5902);function thatLooksLikeAPromiseToMe(e){return e&&typeof e.then==="function"&&typeof e.catch==="function"}return function promisify(t,n){return function(){for(var r=arguments.length,i=Array(r),o=0;o<r;o++){i[o]=arguments[o]}var a=n&&n.multiArgs;var s=void 0;if(n&&n.thisArg){s=n.thisArg}else if(n){s=n}return new e(function(e,n){i.push(function callback(t){if(t){return n(t)}for(var r=arguments.length,i=Array(r>1?r-1:0),o=1;o<r;o++){i[o-1]=arguments[o]}if(false===!!a){return e(i[0])}e(i)});var r=t.apply(s,i);if(thatLooksLikeAPromiseToMe(r)){e(r)}})}}}()},2023:function(e){"use strict";e.exports=function generate_custom(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l;var f="data"+(o||"");var p="valid"+i;var d="errs__"+i;var h=e.opts.$data&&a&&a.$data,m;if(h){r+=" var schema"+i+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ";m="schema"+i}else{m=a}var v=this,g="definition"+i,y=v.definition,b="";var w,x,k,j,S;if(h&&y.$data){S="keywordValidate"+i;var E=y.validateSchema;r+=" var "+g+" = RULES.custom['"+t+"'].definition; var "+S+" = "+g+".validate;"}else{j=e.useCustomRule(v,a,e.schema,e);if(!j)return;m="validate.schema"+s;S=j.code;w=y.compile;x=y.inline;k=y.macro}var _=S+".errors",C="i"+i,A="ruleErr"+i,O=y.async;if(O&&!e.async)throw new Error("async keyword in sync schema");if(!(x||k)){r+=""+_+" = null;"}r+="var "+d+" = errors;var "+p+";";if(h&&y.$data){b+="}";r+=" if ("+m+" === undefined) { "+p+" = true; } else { ";if(E){b+="}";r+=" "+p+" = "+g+".validateSchema("+m+"); if ("+p+") { "}}if(x){if(y.statements){r+=" "+j.validate+" "}else{r+=" "+p+" = "+j.validate+"; "}}else if(k){var F=e.util.copy(e);var b="";F.level++;var D="valid"+F.level;F.schema=j.validate;F.schemaPath="";var T=e.compositeRule;e.compositeRule=F.compositeRule=true;var I=e.validate(F).replace(/validate\.schema/g,S);e.compositeRule=F.compositeRule=T;r+=" "+I}else{var R=R||[];R.push(r);r="";r+=" "+S+".call( ";if(e.opts.passContext){r+="this"}else{r+="self"}if(w||y.schema===false){r+=" , "+f+" "}else{r+=" , "+m+" , "+f+" , validate.schema"+e.schemaPath+" "}r+=" , (dataPath || '')";if(e.errorPath!='""'){r+=" + "+e.errorPath}var P=o?"data"+(o-1||""):"parentData",B=o?e.dataPathArr[o]:"parentDataProperty";r+=" , "+P+" , "+B+" , rootData ) ";var N=r;r=R.pop();if(y.errors===false){r+=" "+p+" = ";if(O){r+="await "}r+=""+N+"; "}else{if(O){_="customErrors"+i;r+=" var "+_+" = null; try { "+p+" = await "+N+"; } catch (e) { "+p+" = false; if (e instanceof ValidationError) "+_+" = e.errors; else throw e; } "}else{r+=" "+_+" = null; "+p+" = "+N+"; "}}}if(y.modifying){r+=" if ("+P+") "+f+" = "+P+"["+B+"];"}r+=""+b;if(y.valid){if(u){r+=" if (true) { "}}else{r+=" if ( ";if(y.valid===undefined){r+=" !";if(k){r+=""+D}else{r+=""+p}}else{r+=" "+!y.valid+" "}r+=") { ";l=v.keyword;var R=R||[];R.push(r);r="";var R=R||[];R.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+(l||"custom")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { keyword: '"+v.keyword+"' } ";if(e.opts.messages!==false){r+=" , message: 'should pass \""+v.keyword+"\" keyword validation' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+f+" "}r+=" } "}else{r+=" {} "}var z=r;r=R.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+z+"]); "}else{r+=" validate.errors = ["+z+"]; return false; "}}else{r+=" var err = "+z+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}var L=r;r=R.pop();if(x){if(y.errors){if(y.errors!="full"){r+=" for (var "+C+"="+d+"; "+C+"<errors; "+C+"++) { var "+A+" = vErrors["+C+"]; if ("+A+".dataPath === undefined) "+A+".dataPath = (dataPath || '') + "+e.errorPath+"; if ("+A+".schemaPath === undefined) { "+A+'.schemaPath = "'+c+'"; } ';if(e.opts.verbose){r+=" "+A+".schema = "+m+"; "+A+".data = "+f+"; "}r+=" } "}}else{if(y.errors===false){r+=" "+L+" "}else{r+=" if ("+d+" == errors) { "+L+" } else { for (var "+C+"="+d+"; "+C+"<errors; "+C+"++) { var "+A+" = vErrors["+C+"]; if ("+A+".dataPath === undefined) "+A+".dataPath = (dataPath || '') + "+e.errorPath+"; if ("+A+".schemaPath === undefined) { "+A+'.schemaPath = "'+c+'"; } ';if(e.opts.verbose){r+=" "+A+".schema = "+m+"; "+A+".data = "+f+"; "}r+=" } } "}}}else if(k){r+=" var err = ";if(e.createErrors!==false){r+=" { keyword: '"+(l||"custom")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { keyword: '"+v.keyword+"' } ";if(e.opts.messages!==false){r+=" , message: 'should pass \""+v.keyword+"\" keyword validation' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+f+" "}r+=" } "}else{r+=" {} "}r+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ";if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(vErrors); "}else{r+=" validate.errors = vErrors; return false; "}}}else{if(y.errors===false){r+=" "+L+" "}else{r+=" if (Array.isArray("+_+")) { if (vErrors === null) vErrors = "+_+"; else vErrors = vErrors.concat("+_+"); errors = vErrors.length; for (var "+C+"="+d+"; "+C+"<errors; "+C+"++) { var "+A+" = vErrors["+C+"]; if ("+A+".dataPath === undefined) "+A+".dataPath = (dataPath || '') + "+e.errorPath+"; "+A+'.schemaPath = "'+c+'"; ';if(e.opts.verbose){r+=" "+A+".schema = "+m+"; "+A+".data = "+f+"; "}r+=" } } else { "+L+" } "}}r+=" } ";if(u){r+=" else { "}}return r}},2024:function(e,t,n){"use strict";var r=n(5325);var i=n(7547);var o=typeof Reflect!=="undefined"&&Reflect.defineProperty?Reflect.defineProperty:Object.defineProperty;e.exports=function defineProperty(e,t,n){if(!r(e)&&typeof e!=="function"&&!Array.isArray(e)){throw new TypeError("expected an object, function, or array")}if(typeof t!=="string"){throw new TypeError('expected "key" to be a string')}if(i(n)){o(e,t,n);return e}o(e,t,{configurable:true,enumerable:false,writable:true,value:n});return e}},2034:function(e,t,n){var r=n(9261);var i=n(649);var o=n(6487);var a=n(8107).isError;var s=o.sprintf;e.exports=VError;VError.VError=VError;VError.SError=SError;VError.WError=WError;VError.MultiError=MultiError;function parseConstructorArguments(e){var t,n,i,o,c;r.object(e,"args");r.bool(e.strict,"args.strict");r.array(e.argv,"args.argv");t=e.argv;if(t.length===0){n={};i=[]}else if(a(t[0])){n={cause:t[0]};i=t.slice(1)}else if(typeof t[0]==="object"){n={};for(c in t[0]){n[c]=t[0][c]}i=t.slice(1)}else{r.string(t[0],"first argument to VError, SError, or WError "+"constructor must be a string, object, or Error");n={};i=t}r.object(n);if(!n.strict&&!e.strict){i=i.map(function(e){return e===null?"null":e===undefined?"undefined":e})}if(i.length===0){o=""}else{o=s.apply(null,i)}return{options:n,shortmessage:o}}function VError(){var e,t,n,i,o,s,c;e=Array.prototype.slice.call(arguments,0);if(!(this instanceof VError)){t=Object.create(VError.prototype);VError.apply(t,arguments);return t}n=parseConstructorArguments({argv:e,strict:false});if(n.options.name){r.string(n.options.name,'error\'s "name" must be a string');this.name=n.options.name}this.jse_shortmsg=n.shortmessage;s=n.shortmessage;i=n.options.cause;if(i){r.ok(a(i),"cause is not an Error");this.jse_cause=i;if(!n.options.skipCauseMessage){s+=": "+i.message}}this.jse_info={};if(n.options.info){for(c in n.options.info){this.jse_info[c]=n.options.info[c]}}this.message=s;Error.call(this,s);if(Error.captureStackTrace){o=n.options.constructorOpt||this.constructor;Error.captureStackTrace(this,o)}return this}i.inherits(VError,Error);VError.prototype.name="VError";VError.prototype.toString=function ve_toString(){var e=this.hasOwnProperty("name")&&this.name||this.constructor.name||this.constructor.prototype.name;if(this.message)e+=": "+this.message;return e};VError.prototype.cause=function ve_cause(){var e=VError.cause(this);return e===null?undefined:e};VError.cause=function(e){r.ok(a(e),"err must be an Error");return a(e.jse_cause)?e.jse_cause:null};VError.info=function(e){var t,n,i;r.ok(a(e),"err must be an Error");n=VError.cause(e);if(n!==null){t=VError.info(n)}else{t={}}if(typeof e.jse_info=="object"&&e.jse_info!==null){for(i in e.jse_info){t[i]=e.jse_info[i]}}return t};VError.findCauseByName=function(e,t){var n;r.ok(a(e),"err must be an Error");r.string(t,"name");r.ok(t.length>0,"name cannot be empty");for(n=e;n!==null;n=VError.cause(n)){r.ok(a(n));if(n.name==t){return n}}return null};VError.hasCauseWithName=function(e,t){return VError.findCauseByName(e,t)!==null};VError.fullStack=function(e){r.ok(a(e),"err must be an Error");var t=VError.cause(e);if(t){return e.stack+"\ncaused by: "+VError.fullStack(t)}return e.stack};VError.errorFromList=function(e){r.arrayOfObject(e,"errors");if(e.length===0){return null}e.forEach(function(e){r.ok(a(e))});if(e.length==1){return e[0]}return new MultiError(e)};VError.errorForEach=function(e,t){r.ok(a(e),"err must be an Error");r.func(t,"func");if(e instanceof MultiError){e.errors().forEach(function iterError(e){t(e)})}else{t(e)}};function SError(){var e,t,n,r;e=Array.prototype.slice.call(arguments,0);if(!(this instanceof SError)){t=Object.create(SError.prototype);SError.apply(t,arguments);return t}n=parseConstructorArguments({argv:e,strict:true});r=n.options;VError.call(this,r,"%s",n.shortmessage);return this}i.inherits(SError,VError);function MultiError(e){r.array(e,"list of errors");r.ok(e.length>0,"must be at least one error");this.ase_errors=e;VError.call(this,{cause:e[0]},"first of %d error%s",e.length,e.length==1?"":"s")}i.inherits(MultiError,VError);MultiError.prototype.name="MultiError";MultiError.prototype.errors=function me_errors(){return this.ase_errors.slice(0)};function WError(){var e,t,n,r;e=Array.prototype.slice.call(arguments,0);if(!(this instanceof WError)){t=Object.create(WError.prototype);WError.apply(t,e);return t}n=parseConstructorArguments({argv:e,strict:false});r=n.options;r["skipCauseMessage"]=true;VError.call(this,r,"%s",n.shortmessage);return this}i.inherits(WError,VError);WError.prototype.name="WError";WError.prototype.toString=function we_toString(){var e=this.hasOwnProperty("name")&&this.name||this.constructor.name||this.constructor.prototype.name;if(this.message)e+=": "+this.message;if(this.jse_cause&&this.jse_cause.message)e+="; caused by "+this.jse_cause.toString();return e};WError.prototype.cause=function we_cause(e){if(a(e))this.jse_cause=e;return this.jse_cause}},2038:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(635);var o=n(9726);var a=n(1390);var s=n(51);var c=n(3542);var u=n(5862);t.defaultIntegrations=[new i.Integrations.InboundFilters,new i.Integrations.FunctionToString,new u.Console,new u.Http,new u.OnUncaughtException,new u.OnUnhandledRejection,new u.LinkedErrors];function init(e){if(e===void 0){e={}}if(e.defaultIntegrations===undefined){e.defaultIntegrations=t.defaultIntegrations}if(e.dsn===undefined&&process.env.SENTRY_DSN){e.dsn=process.env.SENTRY_DSN}if(e.release===undefined){var n=a.getGlobalObject();if(process.env.SENTRY_RELEASE){e.release=process.env.SENTRY_RELEASE}else if(n.SENTRY_RELEASE&&n.SENTRY_RELEASE.id){e.release=n.SENTRY_RELEASE.id}}if(e.environment===undefined&&process.env.SENTRY_ENVIRONMENT){e.environment=process.env.SENTRY_ENVIRONMENT}if(s.active){o.setHubOnCarrier(o.getMainCarrier(),i.getCurrentHub())}i.initAndBind(c.NodeClient,e)}t.init=init;function lastEventId(){return i.getCurrentHub().lastEventId()}t.lastEventId=lastEventId;function flush(e){return r.__awaiter(this,void 0,void 0,function(){var t;return r.__generator(this,function(n){t=i.getCurrentHub().getClient();if(t){return[2,t.flush(e)]}return[2,Promise.reject(false)]})})}t.flush=flush;function close(e){return r.__awaiter(this,void 0,void 0,function(){var t;return r.__generator(this,function(n){t=i.getCurrentHub().getClient();if(t){return[2,t.close(e)]}return[2,Promise.reject(false)]})})}t.close=close},2040:function(e,t,n){"use strict";const r=n(192);const i=n(4666);const o=n(342);const a=n(2052);const s=n(662);const c=n(4594);const u=n(4787);const l=n(5897);const f=n(7044);const p=e.exports=((e,t,n)=>{const r=i(e);if(!r.file)throw new TypeError("file is required");if(r.gzip)throw new TypeError("cannot append to compressed archives");if(!t||!Array.isArray(t)||!t.length)throw new TypeError("no files or directories specified");t=Array.from(t);return r.sync?d(r,t):m(r,t,n)});const d=(e,t)=>{const n=new o.Sync(e);let i=true;let a;let c;try{try{a=s.openSync(e.file,"r+")}catch(t){if(t.code==="ENOENT")a=s.openSync(e.file,"w+");else throw t}const o=s.fstatSync(a);const u=r.alloc(512);e:for(c=0;c<o.size;c+=512){for(let e=0,t=0;e<512;e+=t){t=s.readSync(a,u,e,u.length-e,c+e);if(c===0&&u[0]===31&&u[1]===139)throw new Error("cannot append to compressed archives");if(!t)break e}let t=new f(u);if(!t.cksumValid)break;let n=512*Math.ceil(t.size/512);if(c+n+512>o.size)break;c+=n;if(e.mtimeCache)e.mtimeCache.set(t.path,t.mtime)}i=false;h(e,n,c,a,t)}finally{if(i)try{s.closeSync(a)}catch(e){}}};const h=(e,t,n,r,i)=>{const o=new c.WriteStreamSync(e.file,{fd:r,start:n});t.pipe(o);v(t,i)};const m=(e,t,n)=>{t=Array.from(t);const i=new o(e);const a=(t,n,i)=>{const o=(e,n)=>{if(e)s.close(t,t=>i(e));else i(null,n)};let a=0;if(n===0)return o(null,0);let c=0;const u=r.alloc(512);const l=(r,i)=>{if(r)return o(r);c+=i;if(c<512&&i)return s.read(t,u,c,u.length-c,a+c,l);if(a===0&&u[0]===31&&u[1]===139)return o(new Error("cannot append to compressed archives"));if(c<512)return o(null,a);const p=new f(u);if(!p.cksumValid)return o(null,a);const d=512*Math.ceil(p.size/512);if(a+d+512>n)return o(null,a);a+=d+512;if(a>=n)return o(null,a);if(e.mtimeCache)e.mtimeCache.set(p.path,p.mtime);c=0;s.read(t,u,0,512,a,l)};s.read(t,u,0,512,a,l)};const u=new Promise((n,r)=>{i.on("error",r);let o="r+";const u=(l,f)=>{if(l&&l.code==="ENOENT"&&o==="r+"){o="w+";return s.open(e.file,o,u)}if(l)return r(l);s.fstat(f,(o,s)=>{if(o)return r(o);a(f,s.size,(o,a)=>{if(o)return r(o);const s=new c.WriteStream(e.file,{fd:f,start:a});i.pipe(s);s.on("error",r);s.on("close",n);g(i,t)})})};s.open(e.file,o,u)});return n?u.then(n,n):u};const v=(e,t)=>{t.forEach(t=>{if(t.charAt(0)==="@")u({file:l.resolve(e.cwd,t.substr(1)),sync:true,noResume:true,onentry:t=>e.add(t)});else e.add(t)});e.end()};const g=(e,t)=>{while(t.length){const n=t.shift();if(n.charAt(0)==="@")return u({file:l.resolve(e.cwd,n.substr(1)),noResume:true,onentry:t=>e.add(t)}).then(n=>g(e,t));else e.add(n)}e.end()}},2041:function(e){e.exports=require("child_process")},2046:function(e,t,n){e.exports={read:read.bind(undefined,false,undefined),readType:read.bind(undefined,false),write:write,readPartial:read.bind(undefined,true),readInternal:read,keyTypeToAlg:keyTypeToAlg,algToKeyType:algToKeyType};var r=n(9261);var i=n(3062).Buffer;var o=n(6977);var a=n(5271);var s=n(120);var c=n(1946);var u=n(4550);function algToKeyType(e){r.string(e);if(e==="ssh-dss")return"dsa";else if(e==="ssh-rsa")return"rsa";else if(e==="ssh-ed25519")return"ed25519";else if(e==="ssh-curve25519")return"curve25519";else if(e.match(/^ecdsa-sha2-/))return"ecdsa";else throw new Error("Unknown algorithm "+e)}function keyTypeToAlg(e){r.object(e);if(e.type==="dsa")return"ssh-dss";else if(e.type==="rsa")return"ssh-rsa";else if(e.type==="ed25519")return"ssh-ed25519";else if(e.type==="curve25519")return"ssh-curve25519";else if(e.type==="ecdsa")return"ecdsa-sha2-"+e.part.curve.data.toString();else throw new Error("Unknown key type "+e.type)}function read(e,t,n,l){if(typeof n==="string")n=i.from(n);r.buffer(n,"buf");var f={};var p=f.parts=[];var d=new u({buffer:n});var h=d.readString();r.ok(!d.atEnd(),"key must have at least one part");f.type=algToKeyType(h);var m=o.info[f.type].parts.length;if(t&&t==="private")m=o.privInfo[f.type].parts.length;while(!d.atEnd()&&p.length<m)p.push(d.readPart());while(!e&&!d.atEnd())p.push(d.readPart());r.ok(p.length>=1,"key must have at least one part");r.ok(e||d.atEnd(),"leftover bytes at end of key");var v=s;var g=o.info[f.type];if(t==="private"||g.parts.length!==p.length){g=o.privInfo[f.type];v=c}r.strictEqual(g.parts.length,p.length);if(f.type==="ecdsa"){var y=/^ecdsa-sha2-(.+)$/.exec(h);r.ok(y!==null);r.strictEqual(y[1],p[0].data.toString())}var b=true;for(var w=0;w<g.parts.length;++w){var x=p[w];x.name=g.parts[w];if(f.type==="ed25519"&&x.name==="k")x.data=x.data.slice(0,32);if(x.name!=="curve"&&g.normalize!==false){var k;if(f.type==="ed25519"){k=a.zeroPadToLength(x.data,32)}else{k=a.mpNormalize(x.data)}if(k.toString("binary")!==x.data.toString("binary")){x.data=k;b=false}}}if(b)f._rfc4253Cache=d.toBuffer();if(e&&typeof e==="object"){e.remainder=d.remainder();e.consumed=d._offset}return new v(f)}function write(e,t){r.object(e);var n=keyTypeToAlg(e);var s;var l=o.info[e.type];if(c.isPrivateKey(e))l=o.privInfo[e.type];var f=l.parts;var p=new u({});p.writeString(n);for(s=0;s<f.length;++s){var d=e.part[f[s]].data;if(l.normalize!==false){if(e.type==="ed25519")d=a.zeroPadToLength(d,32);else d=a.mpNormalize(d)}if(e.type==="ed25519"&&f[s]==="k")d=i.concat([d,e.part.A.data]);p.writeBuffer(d)}return p.toBuffer()}},2052:function(e,t,n){"use strict";const r=n(2247);const i=n(5897);const o=n(7044);const a=n(4859);const s=n(5094);const c=1024*1024;const u=n(6695);const l=n(4457);const f=n(2101);const p=n(192);const d=p.from([31,139]);const h=Symbol("state");const m=Symbol("writeEntry");const v=Symbol("readEntry");const g=Symbol("nextEntry");const y=Symbol("processEntry");const b=Symbol("extendedHeader");const w=Symbol("globalExtendedHeader");const x=Symbol("meta");const k=Symbol("emitMeta");const j=Symbol("buffer");const S=Symbol("queue");const E=Symbol("ended");const _=Symbol("emittedEnd");const C=Symbol("emit");const A=Symbol("unzip");const O=Symbol("consumeChunk");const F=Symbol("consumeChunkSub");const D=Symbol("consumeBody");const T=Symbol("consumeMeta");const I=Symbol("consumeHeader");const R=Symbol("consuming");const P=Symbol("bufferConcat");const B=Symbol("maybeEnd");const N=Symbol("writing");const z=Symbol("aborted");const L=Symbol("onDone");const M=e=>true;e.exports=r(class Parser extends a{constructor(e){e=e||{};super(e);if(e.ondone)this.on(L,e.ondone);else this.on(L,e=>{this.emit("prefinish");this.emit("finish");this.emit("end");this.emit("close")});this.strict=!!e.strict;this.maxMetaEntrySize=e.maxMetaEntrySize||c;this.filter=typeof e.filter==="function"?e.filter:M;this.writable=true;this.readable=false;this[S]=new s;this[j]=null;this[v]=null;this[m]=null;this[h]="begin";this[x]="";this[b]=null;this[w]=null;this[E]=false;this[A]=null;this[z]=false;if(typeof e.onwarn==="function")this.on("warn",e.onwarn);if(typeof e.onentry==="function")this.on("entry",e.onentry)}[I](e,t){const n=new o(e,t,this[b],this[w]);if(n.nullBlock)this[C]("nullBlock");else if(!n.cksumValid)this.warn("invalid entry",n);else if(!n.path)this.warn("invalid: path is required",n);else{const e=n.type;if(/^(Symbolic)?Link$/.test(e)&&!n.linkpath)this.warn("invalid: linkpath required",n);else if(!/^(Symbolic)?Link$/.test(e)&&n.linkpath)this.warn("invalid: linkpath forbidden",n);else{const e=this[m]=new u(n,this[b],this[w]);if(e.meta){if(e.size>this.maxMetaEntrySize){e.ignore=true;this[C]("ignoredEntry",e);this[h]="ignore"}else if(e.size>0){this[x]="";e.on("data",e=>this[x]+=e);this[h]="meta"}}else{this[b]=null;e.ignore=e.ignore||!this.filter(e.path,e);if(e.ignore){this[C]("ignoredEntry",e);this[h]=e.remain?"ignore":"begin"}else{if(e.remain)this[h]="body";else{this[h]="begin";e.end()}if(!this[v]){this[S].push(e);this[g]()}else this[S].push(e)}}}}}[y](e){let t=true;if(!e){this[v]=null;t=false}else if(Array.isArray(e))this.emit.apply(this,e);else{this[v]=e;this.emit("entry",e);if(!e.emittedEnd){e.on("end",e=>this[g]());t=false}}return t}[g](){do{}while(this[y](this[S].shift()));if(!this[S].length){const e=this[v];const t=!e||e.flowing||e.size===e.remain;if(t){if(!this[N])this.emit("drain")}else e.once("drain",e=>this.emit("drain"))}}[D](e,t){const n=this[m];const r=n.blockRemain;const i=r>=e.length&&t===0?e:e.slice(t,t+r);n.write(i);if(!n.blockRemain){this[h]="begin";this[m]=null;n.end()}return i.length}[T](e,t){const n=this[m];const r=this[D](e,t);if(!this[m])this[k](n);return r}[C](e,t,n){if(!this[S].length&&!this[v])this.emit(e,t,n);else this[S].push([e,t,n])}[k](e){this[C]("meta",this[x]);switch(e.type){case"ExtendedHeader":case"OldExtendedHeader":this[b]=l.parse(this[x],this[b],false);break;case"GlobalExtendedHeader":this[w]=l.parse(this[x],this[w],true);break;case"NextFileHasLongPath":case"OldGnuLongPath":this[b]=this[b]||Object.create(null);this[b].path=this[x].replace(/\0.*/,"");break;case"NextFileHasLongLinkpath":this[b]=this[b]||Object.create(null);this[b].linkpath=this[x].replace(/\0.*/,"");break;default:throw new Error("unknown meta: "+e.type)}}abort(e,t){this[z]=true;this.warn(e,t);this.emit("abort",t);this.emit("error",t)}write(e){if(this[z])return;if(this[A]===null&&e){if(this[j]){e=p.concat([this[j],e]);this[j]=null}if(e.length<d.length){this[j]=e;return true}for(let t=0;this[A]===null&&t<d.length;t++){if(e[t]!==d[t])this[A]=false}if(this[A]===null){const t=this[E];this[E]=false;this[A]=new f.Unzip;this[A].on("data",e=>this[O](e));this[A].on("error",e=>this.abort(e.message,e));this[A].on("end",e=>{this[E]=true;this[O]()});this[N]=true;const n=this[A][t?"end":"write"](e);this[N]=false;return n}}this[N]=true;if(this[A])this[A].write(e);else this[O](e);this[N]=false;const t=this[S].length?false:this[v]?this[v].flowing:true;if(!t&&!this[S].length)this[v].once("drain",e=>this.emit("drain"));return t}[P](e){if(e&&!this[z])this[j]=this[j]?p.concat([this[j],e]):e}[B](){if(this[E]&&!this[_]&&!this[z]&&!this[R]){this[_]=true;const e=this[m];if(e&&e.blockRemain){const t=this[j]?this[j].length:0;this.warn("Truncated input (needed "+e.blockRemain+" more bytes, only "+t+" available)",e);if(this[j])e.write(this[j]);e.end()}this[C](L)}}[O](e){if(this[R]){this[P](e)}else if(!e&&!this[j]){this[B]()}else{this[R]=true;if(this[j]){this[P](e);const t=this[j];this[j]=null;this[F](t)}else{this[F](e)}while(this[j]&&this[j].length>=512&&!this[z]){const e=this[j];this[j]=null;this[F](e)}this[R]=false}if(!this[j]||this[E])this[B]()}[F](e){let t=0;let n=e.length;while(t+512<=n&&!this[z]){switch(this[h]){case"begin":this[I](e,t);t+=512;break;case"ignore":case"body":t+=this[D](e,t);break;case"meta":t+=this[T](e,t);break;default:throw new Error("invalid state: "+this[h])}}if(t<n){if(this[j])this[j]=p.concat([e.slice(t),this[j]]);else this[j]=e.slice(t)}}end(e){if(!this[z]){if(this[A])this[A].end(e);else{this[E]=true;this.write(e)}}}})},2054:function(e,t,n){var r=n(7313);function customDecodeUriComponent(e){return r(e.replace(/\+/g,"%2B"))}e.exports=customDecodeUriComponent},2057:function(e,t,n){var r=n(3930);var i=n(3062).Buffer;var o=n(4337);var a=n(3251);var s=a.newInvalidAsn1Error;function Reader(e){if(!e||!i.isBuffer(e))throw new TypeError("data must be a node Buffer");this._buf=e;this._size=e.length;this._len=0;this._offset=0}Object.defineProperty(Reader.prototype,"length",{enumerable:true,get:function(){return this._len}});Object.defineProperty(Reader.prototype,"offset",{enumerable:true,get:function(){return this._offset}});Object.defineProperty(Reader.prototype,"remain",{get:function(){return this._size-this._offset}});Object.defineProperty(Reader.prototype,"buffer",{get:function(){return this._buf.slice(this._offset)}});Reader.prototype.readByte=function(e){if(this._size-this._offset<1)return null;var t=this._buf[this._offset]&255;if(!e)this._offset+=1;return t};Reader.prototype.peek=function(){return this.readByte(true)};Reader.prototype.readLength=function(e){if(e===undefined)e=this._offset;if(e>=this._size)return null;var t=this._buf[e++]&255;if(t===null)return null;if((t&128)===128){t&=127;if(t===0)throw s("Indefinite length not supported");if(t>4)throw s("encoding too long");if(this._size-e<t)return null;this._len=0;for(var n=0;n<t;n++)this._len=(this._len<<8)+(this._buf[e++]&255)}else{this._len=t}return e};Reader.prototype.readSequence=function(e){var t=this.peek();if(t===null)return null;if(e!==undefined&&e!==t)throw s("Expected 0x"+e.toString(16)+": got 0x"+t.toString(16));var n=this.readLength(this._offset+1);if(n===null)return null;this._offset=n;return t};Reader.prototype.readInt=function(){return this._readTag(o.Integer)};Reader.prototype.readBoolean=function(){return this._readTag(o.Boolean)===0?false:true};Reader.prototype.readEnumeration=function(){return this._readTag(o.Enumeration)};Reader.prototype.readString=function(e,t){if(!e)e=o.OctetString;var n=this.peek();if(n===null)return null;if(n!==e)throw s("Expected 0x"+e.toString(16)+": got 0x"+n.toString(16));var r=this.readLength(this._offset+1);if(r===null)return null;if(this.length>this._size-r)return null;this._offset=r;if(this.length===0)return t?i.alloc(0):"";var a=this._buf.slice(this._offset,this._offset+this.length);this._offset+=this.length;return t?a:a.toString("utf8")};Reader.prototype.readOID=function(e){if(!e)e=o.OID;var t=this.readString(e,true);if(t===null)return null;var n=[];var r=0;for(var i=0;i<t.length;i++){var a=t[i]&255;r<<=7;r+=a&127;if((a&128)===0){n.push(r);r=0}}r=n.shift();n.unshift(r%40);n.unshift(r/40>>0);return n.join(".")};Reader.prototype._readTag=function(e){r.ok(e!==undefined);var t=this.peek();if(t===null)return null;if(t!==e)throw s("Expected 0x"+e.toString(16)+": got 0x"+t.toString(16));var n=this.readLength(this._offset+1);if(n===null)return null;if(this.length>4)throw s("Integer too long: "+this.length);if(this.length>this._size-n)return null;this._offset=n;var i=this._buf[this._offset];var o=0;for(var a=0;a<this.length;a++){o<<=8;o|=this._buf[this._offset++]&255}if((i&128)===128&&a!==4)o-=1<<a*8;return o>>0};e.exports=Reader},2058:function(e){"use strict";e.exports=(e=>{if(typeof e!=="string"){throw new TypeError("Expected a string, got "+typeof e)}if(e.charCodeAt(0)===65279){return e.slice(1)}return e})},2090:function(e,t,n){"use strict";var r=n(7409);var i=n(1249);var o=r.method;e.exports=r.extend({path:"customers",includeBasic:["create","list","retrieve","update","del","setMetadata","getMetadata"],_legacyUpdateSubscription:o({method:"POST",path:"{customerId}/subscription",urlParams:["customerId"]}),_newstyleUpdateSubscription:o({method:"POST",path:"/{customerId}/subscriptions/{subscriptionId}",urlParams:["customerId","subscriptionId"]}),_legacyCancelSubscription:o({method:"DELETE",path:"{customerId}/subscription",urlParams:["customerId"]}),_newstyleCancelSubscription:o({method:"DELETE",path:"/{customerId}/subscriptions/{subscriptionId}",urlParams:["customerId","subscriptionId"]}),createSubscription:o({method:"POST",path:"/{customerId}/subscriptions",urlParams:["customerId"]}),listSubscriptions:o({method:"GET",path:"/{customerId}/subscriptions",urlParams:["customerId"]}),retrieveSubscription:o({method:"GET",path:"/{customerId}/subscriptions/{subscriptionId}",urlParams:["customerId","subscriptionId"]}),updateSubscription:function(e,t){if(typeof t=="string"){return this._newstyleUpdateSubscription.apply(this,arguments)}else{return this._legacyUpdateSubscription.apply(this,arguments)}},cancelSubscription:function(e,t){if(typeof t=="string"&&!i.isAuthKey(t)){return this._newstyleCancelSubscription.apply(this,arguments)}else{return this._legacyCancelSubscription.apply(this,arguments)}},createCard:o({method:"POST",path:"/{customerId}/cards",urlParams:["customerId"]}),listCards:o({method:"GET",path:"/{customerId}/cards",urlParams:["customerId"]}),retrieveCard:o({method:"GET",path:"/{customerId}/cards/{cardId}",urlParams:["customerId","cardId"]}),updateCard:o({method:"POST",path:"/{customerId}/cards/{cardId}",urlParams:["customerId","cardId"]}),deleteCard:o({method:"DELETE",path:"/{customerId}/cards/{cardId}",urlParams:["customerId","cardId"]}),createSource:o({method:"POST",path:"/{customerId}/sources",urlParams:["customerId"]}),listSources:o({method:"GET",path:"/{customerId}/sources",urlParams:["customerId"]}),retrieveSource:o({method:"GET",path:"/{customerId}/sources/{sourceId}",urlParams:["customerId","sourceId"]}),updateSource:o({method:"POST",path:"/{customerId}/sources/{sourceId}",urlParams:["customerId","sourceId"]}),deleteSource:o({method:"DELETE",path:"/{customerId}/sources/{sourceId}",urlParams:["customerId","sourceId"]}),verifySource:o({method:"POST",path:"/{customerId}/sources/{sourceId}/verify",urlParams:["customerId","sourceId"]}),deleteDiscount:o({method:"DELETE",path:"/{customerId}/discount",urlParams:["customerId"]}),deleteSubscriptionDiscount:o({method:"DELETE",path:"/{customerId}/subscriptions/{subscriptionId}/discount",urlParams:["customerId","subscriptionId"]})})},2094:function(e,t,n){t=e.exports=createDebug.debug=createDebug["default"]=createDebug;t.coerce=coerce;t.disable=disable;t.enable=enable;t.enabled=enabled;t.humanize=n(1273);t.names=[];t.skips=[];t.formatters={};var r;function selectColor(e){var n=0,r;for(r in e){n=(n<<5)-n+e.charCodeAt(r);n|=0}return t.colors[Math.abs(n)%t.colors.length]}function createDebug(e){function debug(){if(!debug.enabled)return;var e=debug;var n=+new Date;var i=n-(r||n);e.diff=i;e.prev=r;e.curr=n;r=n;var o=new Array(arguments.length);for(var a=0;a<o.length;a++){o[a]=arguments[a]}o[0]=t.coerce(o[0]);if("string"!==typeof o[0]){o.unshift("%O")}var s=0;o[0]=o[0].replace(/%([a-zA-Z%])/g,function(n,r){if(n==="%%")return n;s++;var i=t.formatters[r];if("function"===typeof i){var a=o[s];n=i.call(e,a);o.splice(s,1);s--}return n});t.formatArgs.call(e,o);var c=debug.log||t.log||console.log.bind(console);c.apply(e,o)}debug.namespace=e;debug.enabled=t.enabled(e);debug.useColors=t.useColors();debug.color=selectColor(e);if("function"===typeof t.init){t.init(debug)}return debug}function enable(e){t.save(e);t.names=[];t.skips=[];var n=(typeof e==="string"?e:"").split(/[\s,]+/);var r=n.length;for(var i=0;i<r;i++){if(!n[i])continue;e=n[i].replace(/\*/g,".*?");if(e[0]==="-"){t.skips.push(new RegExp("^"+e.substr(1)+"$"))}else{t.names.push(new RegExp("^"+e+"$"))}}}function disable(){t.enable("")}function enabled(e){var n,r;for(n=0,r=t.skips.length;n<r;n++){if(t.skips[n].test(e)){return false}}for(n=0,r=t.names.length;n<r;n++){if(t.names[n].test(e)){return true}}return false}function coerce(e){if(e instanceof Error)return e.stack||e.message;return e}},2101:function(e,t,n){"use strict";const r=n(3930);const i=n(9423).Buffer;const o=n(2673);const a=t.constants=n(3156);const s=n(136);const c=i.concat;class ZlibError extends Error{constructor(e,t){super("zlib: "+e);this.errno=t;this.code=u.get(t)}get name(){return"ZlibError"}}const u=new Map([[a.Z_OK,"Z_OK"],[a.Z_STREAM_END,"Z_STREAM_END"],[a.Z_NEED_DICT,"Z_NEED_DICT"],[a.Z_ERRNO,"Z_ERRNO"],[a.Z_STREAM_ERROR,"Z_STREAM_ERROR"],[a.Z_DATA_ERROR,"Z_DATA_ERROR"],[a.Z_MEM_ERROR,"Z_MEM_ERROR"],[a.Z_BUF_ERROR,"Z_BUF_ERROR"],[a.Z_VERSION_ERROR,"Z_VERSION_ERROR"]]);const l=new Set([a.Z_NO_FLUSH,a.Z_PARTIAL_FLUSH,a.Z_SYNC_FLUSH,a.Z_FULL_FLUSH,a.Z_FINISH,a.Z_BLOCK]);const f=new Set([a.Z_FILTERED,a.Z_HUFFMAN_ONLY,a.Z_RLE,a.Z_FIXED,a.Z_DEFAULT_STRATEGY]);const p=Symbol("opts");const d=Symbol("flushFlag");const h=Symbol("finishFlush");const m=Symbol("handle");const v=Symbol("onError");const g=Symbol("level");const y=Symbol("strategy");const b=Symbol("ended");class Zlib extends s{constructor(e,t){super(e);this[b]=false;this[p]=e=e||{};if(e.flush&&!l.has(e.flush)){throw new TypeError("Invalid flush flag: "+e.flush)}if(e.finishFlush&&!l.has(e.finishFlush)){throw new TypeError("Invalid flush flag: "+e.finishFlush)}this[d]=e.flush||a.Z_NO_FLUSH;this[h]=typeof e.finishFlush!=="undefined"?e.finishFlush:a.Z_FINISH;if(e.chunkSize){if(e.chunkSize<a.Z_MIN_CHUNK){throw new RangeError("Invalid chunk size: "+e.chunkSize)}}if(e.windowBits){if(e.windowBits<a.Z_MIN_WINDOWBITS||e.windowBits>a.Z_MAX_WINDOWBITS){throw new RangeError("Invalid windowBits: "+e.windowBits)}}if(e.level){if(e.level<a.Z_MIN_LEVEL||e.level>a.Z_MAX_LEVEL){throw new RangeError("Invalid compression level: "+e.level)}}if(e.memLevel){if(e.memLevel<a.Z_MIN_MEMLEVEL||e.memLevel>a.Z_MAX_MEMLEVEL){throw new RangeError("Invalid memLevel: "+e.memLevel)}}if(e.strategy&&!f.has(e.strategy))throw new TypeError("Invalid strategy: "+e.strategy);if(e.dictionary){if(!(e.dictionary instanceof i)){throw new TypeError("Invalid dictionary: it should be a Buffer instance")}}this[m]=new o[t](e);this[v]=(e=>{this.close();const t=new ZlibError(e.message,e.errno);this.emit("error",t)});this[m].on("error",this[v]);const n=typeof e.level==="number"?e.level:a.Z_DEFAULT_COMPRESSION;var r=typeof e.strategy==="number"?e.strategy:a.Z_DEFAULT_STRATEGY;this[g]=n;this[y]=r;this.once("end",this.close)}close(){if(this[m]){this[m].close();this[m]=null;this.emit("close")}}params(e,t){if(!this[m])throw new Error("cannot switch params when binding is closed");if(!this[m].params)throw new Error("not supported in this implementation");if(e<a.Z_MIN_LEVEL||e>a.Z_MAX_LEVEL){throw new RangeError("Invalid compression level: "+e)}if(!f.has(t))throw new TypeError("Invalid strategy: "+t);if(this[g]!==e||this[y]!==t){this.flush(a.Z_SYNC_FLUSH);r(this[m],"zlib binding closed");const n=this[m].flush;this[m].flush=((e,t)=>{this[m].flush=n;this.flush(e);t()});this[m].params(e,t);if(this[m]){this[g]=e;this[y]=t}}}reset(){r(this[m],"zlib binding closed");return this[m].reset()}flush(e){if(e===undefined)e=a.Z_FULL_FLUSH;if(this.ended)return;const t=this[d];this[d]=e;this.write(i.alloc(0));this[d]=t}end(e,t,n){if(e)this.write(e,t);this.flush(this[h]);this[b]=true;return super.end(null,null,n)}get ended(){return this[b]}write(e,t,n){if(typeof t==="function")n=t,t="utf8";if(typeof e==="string")e=i.from(e,t);r(this[m],"zlib binding closed");const o=this[m]._handle;const a=o.close;o.close=(()=>{});const s=this[m].close;this[m].close=(()=>{});i.concat=(e=>e);let u;try{u=this[m]._processChunk(e,this[d])}catch(e){this[v](e)}finally{i.concat=c;if(this[m]){this[m]._handle=o;o.close=a;this[m].close=s;this[m].removeAllListeners("error")}}let l;if(u){if(Array.isArray(u)&&u.length>0){l=super.write(i.from(u[0]));for(let e=1;e<u.length;e++){l=super.write(u[e])}}else{l=super.write(i.from(u))}}if(n)n();return l}}class Deflate extends Zlib{constructor(e){super(e,"Deflate")}}class Inflate extends Zlib{constructor(e){super(e,"Inflate")}}class Gzip extends Zlib{constructor(e){super(e,"Gzip")}}class Gunzip extends Zlib{constructor(e){super(e,"Gunzip")}}class DeflateRaw extends Zlib{constructor(e){super(e,"DeflateRaw")}}class InflateRaw extends Zlib{constructor(e){super(e,"InflateRaw")}}class Unzip extends Zlib{constructor(e){super(e,"Unzip")}}t.Deflate=Deflate;t.Inflate=Inflate;t.Gzip=Gzip;t.Gunzip=Gunzip;t.DeflateRaw=DeflateRaw;t.InflateRaw=InflateRaw;t.Unzip=Unzip},2104:function(e){if(true){e.exports=Emitter}function Emitter(e){if(e)return mixin(e)}function mixin(e){for(var t in Emitter.prototype){e[t]=Emitter.prototype[t]}return e}Emitter.prototype.on=Emitter.prototype.addEventListener=function(e,t){this._callbacks=this._callbacks||{};(this._callbacks["$"+e]=this._callbacks["$"+e]||[]).push(t);return this};Emitter.prototype.once=function(e,t){function on(){this.off(e,on);t.apply(this,arguments)}on.fn=t;this.on(e,on);return this};Emitter.prototype.off=Emitter.prototype.removeListener=Emitter.prototype.removeAllListeners=Emitter.prototype.removeEventListener=function(e,t){this._callbacks=this._callbacks||{};if(0==arguments.length){this._callbacks={};return this}var n=this._callbacks["$"+e];if(!n)return this;if(1==arguments.length){delete this._callbacks["$"+e];return this}var r;for(var i=0;i<n.length;i++){r=n[i];if(r===t||r.fn===t){n.splice(i,1);break}}if(n.length===0){delete this._callbacks["$"+e]}return this};Emitter.prototype.emit=function(e){this._callbacks=this._callbacks||{};var t=new Array(arguments.length-1),n=this._callbacks["$"+e];for(var r=1;r<arguments.length;r++){t[r-1]=arguments[r]}if(n){n=n.slice(0);for(var r=0,i=n.length;r<i;++r){n[r].apply(this,t)}}return this};Emitter.prototype.listeners=function(e){this._callbacks=this._callbacks||{};return this._callbacks["$"+e]||[]};Emitter.prototype.hasListeners=function(e){return!!this.listeners(e).length}},2105:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(8950));function withSpinner(e,t){return r(this,void 0,void 0,function*(){const n=o.default(e);try{const e=yield t();n();return e}catch(e){n();throw e}})}t.default=withSpinner},2108:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(5242));const s=i(n(5580));const c=i(n(8742));const u=i(n(8501));const l=i(n(4999));const f=i(n(1318));const p=i(n(5775));const d=i(n(8075));const h=i(n(7592));const m=()=>{console.log(`\n ${o.default.bold(`${l.default} now dns`)} [options] <command>\n\n ${o.default.dim("Commands:")}\n\n add [details] Add a new DNS entry (see below for examples)\n import [domain] [zonefile] Import a DNS zone file (see below for examples)\n rm [id] Remove a DNS entry using its ID\n ls [domain] List all DNS entries for a domain\n\n ${o.default.dim("Options:")}\n\n -h, --help Output usage information\n -A ${o.default.bold.underline("FILE")}, --local-config=${o.default.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${o.default.bold.underline("DIR")}, --global-config=${o.default.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -d, --debug Debug mode [off]\n -t ${o.default.bold.underline("TOKEN")}, --token=${o.default.bold.underline("TOKEN")} Login token\n -S, --scope Set a custom scope\n\n ${o.default.dim("Examples:")}\n\n ${o.default.gray("")} Add an A record for a subdomain\n\n ${o.default.cyan("$ now dns add <DOMAIN> <SUBDOMAIN> <A | AAAA | ALIAS | CNAME | TXT> <VALUE>")}\n ${o.default.cyan("$ now dns add zeit.rocks api A 198.51.100.100")}\n\n ${o.default.gray("")} Add an MX record (@ as a name refers to the domain)\n\n ${o.default.cyan(`$ now dns add <DOMAIN> '@' MX <RECORD VALUE> <PRIORITY>`)}\n ${o.default.cyan(`$ now dns add zeit.rocks '@' MX mail.zeit.rocks 10`)}\n\n ${o.default.gray("")} Add an SRV record\n\n ${o.default.cyan("$ now dns add <DOMAIN> <NAME> SRV <PRIORITY> <WEIGHT> <PORT> <TARGET>")}\n ${o.default.cyan(`$ now dns add zeit.rocks '@' SRV 10 0 389 zeit.party`)}\n\n ${o.default.gray("")} Add a CAA record\n\n ${o.default.cyan(`$ now dns add <DOMAIN> <NAME> CAA '<FLAGS> <TAG> "<VALUE>"'`)}\n ${o.default.cyan(`$ now dns add zeit.rocks '@' CAA '0 issue "zeit.co"'`)}\n\n ${o.default.gray("")} Import a Zone file\n\n ${o.default.cyan("$ now dns import <DOMAIN> <FILE>")}\n ${o.default.cyan(`$ now dns import zeit.rocks ./zonefile.txt`)}\n\n\n`)};const v={add:["add"],import:["import"],ls:["ls","list"],rm:["rm","remove"]};function main(e){return r(this,void 0,void 0,function*(){let t;try{t=s.default(e.argv.slice(2),{})}catch(e){u.default(e);return 1}if(t["--help"]){m();return 2}const n=a.default({debug:t["--debug"]});const{subcommand:r,args:i}=c.default(t._.slice(1),v);switch(r){case"add":return f.default(e,t,i,n);case"import":return p.default(e,t,i,n);case"rm":return h.default(e,t,i,n);default:return d.default(e,t,i,n)}})}t.default=main},2119:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(5580));const s=i(n(8742));const c=i(n(8501));const u=i(n(8573));const l=i(n(4999));const f=i(n(541));const p=i(n(7037));const d={init:["init"]};const h=()=>{console.log(`\n ${o.default.bold(`${l.default} now init`)} [example] [dir] [-f | --force]\n\n ${o.default.dim("Options:")}\n\n -h, --help Output usage information\n -d, --debug Debug mode [off]\n -f, --force Overwrite destination directory if exists [off]\n\n ${o.default.dim("Examples:")}\n\n ${o.default.gray("")} Choose from all available examples\n\n ${o.default.cyan(`$ now init`)}\n\n ${o.default.gray("")} Initialize example project into a new directory\n\n ${o.default.cyan(`$ now init <example>`)}\n\n ${o.default.gray("")} Initialize example project into specified directory\n\n ${o.default.cyan(`$ now init <example> <dir>`)}\n\n ${o.default.gray("")} Initialize example project without checking\n\n ${o.default.cyan(`$ now init <example> --force`)}\n `)};function main(e){return r(this,void 0,void 0,function*(){let t;let n;let r;try{t=a.default(e.argv.slice(2),{"--force":Boolean,"-f":Boolean});n=s.default(t._.slice(1),d).args;r=u.default({debug:t["--debug"]})}catch(e){c.default(e);return 1}if(t["--help"]){h();return 2}if(t._.length>3){r.error("Too much arguments.");return 1}try{return yield p.default(e,t,n,r)}catch(e){console.log(f.default(e.message));r.debug(e.stack);return 1}})}t.default=main},2122:function(e,t,n){"use strict";n.r(t);n.d(t,"isReady",function(){return r});n.d(t,"isFailed",function(){return i});n.d(t,"isDone",function(){return o});const r=({readyState:e})=>e==="READY";const i=({readyState:e})=>e.endsWith("_ERROR")||e==="ERROR";const o=({readyState:e})=>r({readyState:e})||i({readyState:e})},2138:function(e,t,n){var r=n(2984);e.exports=function nodeRNG(){return r.randomBytes(16)}},2155:function(e,t,n){"use strict";var r=n(662);var i=n(5897);var o=n(8785);var a=n(8967);var s=Object.create(null);function createFsWatchInstance(e,t,n,o,a){var s=function(t,r){n(e);a(t,r,{watchedPath:e});if(r&&e!==r){fsWatchBroadcast(i.resolve(e,r),"listeners",i.join(e,r))}};try{return r.watch(e,t,s)}catch(e){o(e)}}function fsWatchBroadcast(e,t,n,r,i){if(!s[e])return;s[e][t].forEach(function(e){e(n,r,i)})}function setFsWatchListener(e,t,n,i){var o=i.listener;var a=i.errHandler;var c=i.rawEmitter;var u=s[t];var l;if(!n.persistent){l=createFsWatchInstance(e,n,o,a,c);return l.close.bind(l)}if(!u){l=createFsWatchInstance(e,n,fsWatchBroadcast.bind(null,t,"listeners"),a,fsWatchBroadcast.bind(null,t,"rawEmitters"));if(!l)return;var f=fsWatchBroadcast.bind(null,t,"errHandlers");l.on("error",function(t){u.watcherUnusable=true;if(process.platform==="win32"&&t.code==="EPERM"){r.open(e,"r",function(e,n){if(!e)r.close(n,function(e){if(!e)f(t)})})}else{f(t)}});u=s[t]={listeners:[o],errHandlers:[a],rawEmitters:[c],watcher:l}}else{u.listeners.push(o);u.errHandlers.push(a);u.rawEmitters.push(c)}var p=u.listeners.length-1;return function close(){delete u.listeners[p];delete u.errHandlers[p];delete u.rawEmitters[p];if(!Object.keys(u.listeners).length){if(!u.watcherUnusable){u.watcher.close()}delete s[t]}}}var c=Object.create(null);function setFsWatchFileListener(e,t,n,i){var o=i.listener;var a=i.rawEmitter;var s=c[t];var u=[];var l=[];if(s&&(s.options.persistent<n.persistent||s.options.interval>n.interval)){u=s.listeners;l=s.rawEmitters;r.unwatchFile(t);s=false}if(!s){u.push(o);l.push(a);s=c[t]={listeners:u,rawEmitters:l,options:n,watcher:r.watchFile(t,n,function(n,r){s.rawEmitters.forEach(function(e){e("change",t,{curr:n,prev:r})});var i=n.mtime.getTime();if(n.size!==r.size||i>r.mtime.getTime()||i===0){s.listeners.forEach(function(t){t(e,n)})}})}}else{s.listeners.push(o);s.rawEmitters.push(a)}var f=s.listeners.length-1;return function close(){delete s.listeners[f];delete s.rawEmitters[f];if(!Object.keys(s.listeners).length){r.unwatchFile(t);delete c[t]}}}function NodeFsHandler(){}NodeFsHandler.prototype._watchWithNodeFs=function(e,t){var n=i.dirname(e);var r=i.basename(e);var o=this._getWatchedDir(n);o.add(r);var s=i.resolve(e);var c={persistent:this.options.persistent};if(!t)t=Function.prototype;var u;if(this.options.usePolling){c.interval=this.enableBinaryInterval&&a(r)?this.options.binaryInterval:this.options.interval;u=setFsWatchFileListener(e,s,c,{listener:t,rawEmitter:this.emit.bind(this,"raw")})}else{u=setFsWatchListener(e,s,c,{listener:t,errHandler:this._handleError.bind(this),rawEmitter:this.emit.bind(this,"raw")})}return u};NodeFsHandler.prototype._handleFile=function(e,t,n,o){var a=i.dirname(e);var s=i.basename(e);var c=this._getWatchedDir(a);var u=t;if(c.has(s))return o();var l=this._watchWithNodeFs(e,function(t,n){if(!this._throttle("watch",e,5))return;if(!n||n&&n.mtime.getTime()===0){r.stat(e,function(t,n){if(t){this._remove(a,s)}else{var r=n.atime.getTime();var i=n.mtime.getTime();if(!r||r<=i||i!==u.mtime.getTime()){this._emit("change",e,n)}u=n}}.bind(this))}else if(c.has(s)){var i=n.atime.getTime();var o=n.mtime.getTime();if(!i||i<=o||o!==u.mtime.getTime()){this._emit("change",e,n)}u=n}}.bind(this));if(!(n&&this.options.ignoreInitial)){if(!this._throttle("add",e,0))return;this._emit("add",e,t)}if(o)o();return l};NodeFsHandler.prototype._handleSymlink=function(e,t,n,i){var o=e.fullPath;var a=this._getWatchedDir(t);if(!this.options.followSymlinks){this._readyCount++;r.realpath(n,function(t,r){if(a.has(i)){if(this._symlinkPaths[o]!==r){this._symlinkPaths[o]=r;this._emit("change",n,e.stat)}}else{a.add(i);this._symlinkPaths[o]=r;this._emit("add",n,e.stat)}this._emitReady()}.bind(this));return true}if(this._symlinkPaths[o])return true;else this._symlinkPaths[o]=true};NodeFsHandler.prototype._handleDir=function(e,t,n,r,a,s,c){var u=this._getWatchedDir(i.dirname(e));var l=u.has(i.basename(e));if(!(n&&this.options.ignoreInitial)&&!a&&!l){if(!s.hasGlob||s.globFilter(e))this._emit("addDir",e,t)}u.add(i.basename(e));this._getWatchedDir(e);var f=function(t,n,c){t=i.join(t,"");if(!s.hasGlob){var u=this._throttle("readdir",t,1e3);if(!u)return}var l=this._getWatchedDir(s.path);var p=[];o({root:t,entryType:"all",fileFilter:s.filterPath,directoryFilter:s.filterDir,depth:0,lstat:true}).on("data",function(o){var c=o.path;var u=i.join(t,c);p.push(c);if(o.stat.isSymbolicLink()&&this._handleSymlink(o,t,u,c))return;if(c===a||!a&&!l.has(c)){this._readyCount++;u=i.join(e,i.relative(e,u));this._addToNodeFs(u,n,s,r+1)}}.bind(this)).on("end",function(){var e=u?u.clear():false;if(c)c();l.children().filter(function(e){return e!==t&&p.indexOf(e)===-1&&(!s.hasGlob||s.filterPath({fullPath:i.resolve(t,e)}))}).forEach(function(e){this._remove(t,e)},this);if(e)f(t,false)}.bind(this)).on("error",this._handleError.bind(this))}.bind(this);var p;if(this.options.depth==null||r<=this.options.depth){if(!a)f(e,n,c);p=this._watchWithNodeFs(e,function(e,t){if(t&&t.mtime.getTime()===0)return;f(e,false)})}else{c()}return p};NodeFsHandler.prototype._addToNodeFs=function(e,t,n,o,a,s){if(!s)s=Function.prototype;var c=this._emitReady;if(this._isIgnored(e)||this.closed){c();return s(null,false)}var u=this._getWatchHelpers(e,o);if(!u.hasGlob&&n){u.hasGlob=n.hasGlob;u.globFilter=n.globFilter;u.filterPath=n.filterPath;u.filterDir=n.filterDir}r[u.statMethod](u.watchPath,function(n,l){if(this._handleError(n))return s(null,e);if(this._isIgnored(u.watchPath,l)){c();return s(null,false)}var f=function(e,n){return this._handleDir(e,l,t,o,n,u,c)}.bind(this);var p;if(l.isDirectory()){p=f(u.watchPath,a)}else if(l.isSymbolicLink()){var d=i.dirname(u.watchPath);this._getWatchedDir(d).add(u.watchPath);this._emit("add",u.watchPath,l);p=f(d,e);r.realpath(e,function(t,n){this._symlinkPaths[i.resolve(e)]=n;c()}.bind(this))}else{p=this._handleFile(u.watchPath,l,t,c)}if(p){this._closers[e]=this._closers[e]||[];this._closers[e].push(p)}s(null,false)}.bind(this))};e.exports=NodeFsHandler},2165:function(e,t,n){"use strict";e.exports=function(e,t){var r=e._getDomain;var i=e._async;var o=n(2659).Warning;var a=n(4730);var s=n(5467);var c=a.canAttachTrace;var u;var l;var f=/[\\\/]bluebird[\\\/]js[\\\/](release|debug|instrumented)/;var p=/\((?:timers\.js):\d+:\d+\)/;var d=/[\/<\(](.+?):(\d+):(\d+)\)?\s*$/;var h=null;var m=null;var v=false;var g;var y=!!(a.env("BLUEBIRD_DEBUG")!=0&&(false||a.env("BLUEBIRD_DEBUG")||a.env("NODE_ENV")==="development"));var b=!!(a.env("BLUEBIRD_WARNINGS")!=0&&(y||a.env("BLUEBIRD_WARNINGS")));var w=!!(a.env("BLUEBIRD_LONG_STACK_TRACES")!=0&&(y||a.env("BLUEBIRD_LONG_STACK_TRACES")));var x=a.env("BLUEBIRD_W_FORGOTTEN_RETURN")!=0&&(b||!!a.env("BLUEBIRD_W_FORGOTTEN_RETURN"));e.prototype.suppressUnhandledRejections=function(){var e=this._target();e._bitField=e._bitField&~1048576|524288};e.prototype._ensurePossibleRejectionHandled=function(){if((this._bitField&524288)!==0)return;this._setRejectionIsUnhandled();var e=this;setTimeout(function(){e._notifyUnhandledRejection()},1)};e.prototype._notifyUnhandledRejectionIsHandled=function(){fireRejectionEvent("rejectionHandled",u,undefined,this)};e.prototype._setReturnedNonUndefined=function(){this._bitField=this._bitField|268435456};e.prototype._returnedNonUndefined=function(){return(this._bitField&268435456)!==0};e.prototype._notifyUnhandledRejection=function(){if(this._isRejectionUnhandled()){var e=this._settledValue();this._setUnhandledRejectionIsNotified();fireRejectionEvent("unhandledRejection",l,e,this)}};e.prototype._setUnhandledRejectionIsNotified=function(){this._bitField=this._bitField|262144};e.prototype._unsetUnhandledRejectionIsNotified=function(){this._bitField=this._bitField&~262144};e.prototype._isUnhandledRejectionNotified=function(){return(this._bitField&262144)>0};e.prototype._setRejectionIsUnhandled=function(){this._bitField=this._bitField|1048576};e.prototype._unsetRejectionIsUnhandled=function(){this._bitField=this._bitField&~1048576;if(this._isUnhandledRejectionNotified()){this._unsetUnhandledRejectionIsNotified();this._notifyUnhandledRejectionIsHandled()}};e.prototype._isRejectionUnhandled=function(){return(this._bitField&1048576)>0};e.prototype._warn=function(e,t,n){return warn(e,t,n||this)};e.onPossiblyUnhandledRejection=function(e){var t=r();l=typeof e==="function"?t===null?e:a.domainBind(t,e):undefined};e.onUnhandledRejectionHandled=function(e){var t=r();u=typeof e==="function"?t===null?e:a.domainBind(t,e):undefined};var k=function(){};e.longStackTraces=function(){if(i.haveItemsQueued()&&!D.longStackTraces){throw new Error("cannot enable long stack traces after promises have been created\n\n See http://goo.gl/MqrFmX\n")}if(!D.longStackTraces&&longStackTracesIsSupported()){var n=e.prototype._captureStackTrace;var r=e.prototype._attachExtraTrace;var o=e.prototype._dereferenceTrace;D.longStackTraces=true;k=function(){if(i.haveItemsQueued()&&!D.longStackTraces){throw new Error("cannot enable long stack traces after promises have been created\n\n See http://goo.gl/MqrFmX\n")}e.prototype._captureStackTrace=n;e.prototype._attachExtraTrace=r;e.prototype._dereferenceTrace=o;t.deactivateLongStackTraces();i.enableTrampoline();D.longStackTraces=false};e.prototype._captureStackTrace=longStackTracesCaptureStackTrace;e.prototype._attachExtraTrace=longStackTracesAttachExtraTrace;e.prototype._dereferenceTrace=longStackTracesDereferenceTrace;t.activateLongStackTraces();i.disableTrampolineIfNecessary()}};e.hasLongStackTraces=function(){return D.longStackTraces&&longStackTracesIsSupported()};var j=function(){try{if(typeof CustomEvent==="function"){var e=new CustomEvent("CustomEvent");a.global.dispatchEvent(e);return function(e,t){var n={detail:t,cancelable:true};s.defineProperty(n,"promise",{value:t.promise});s.defineProperty(n,"reason",{value:t.reason});var r=new CustomEvent(e.toLowerCase(),n);return!a.global.dispatchEvent(r)}}else if(typeof Event==="function"){var e=new Event("CustomEvent");a.global.dispatchEvent(e);return function(e,t){var n=new Event(e.toLowerCase(),{cancelable:true});n.detail=t;s.defineProperty(n,"promise",{value:t.promise});s.defineProperty(n,"reason",{value:t.reason});return!a.global.dispatchEvent(n)}}else{var e=document.createEvent("CustomEvent");e.initCustomEvent("testingtheevent",false,true,{});a.global.dispatchEvent(e);return function(e,t){var n=document.createEvent("CustomEvent");n.initCustomEvent(e.toLowerCase(),false,true,t);return!a.global.dispatchEvent(n)}}}catch(e){}return function(){return false}}();var S=function(){if(a.isNode){return function(){return process.emit.apply(process,arguments)}}else{if(!a.global){return function(){return false}}return function(e){var t="on"+e.toLowerCase();var n=a.global[t];if(!n)return false;n.apply(a.global,[].slice.call(arguments,1));return true}}}();function generatePromiseLifecycleEventObject(e,t){return{promise:t}}var E={promiseCreated:generatePromiseLifecycleEventObject,promiseFulfilled:generatePromiseLifecycleEventObject,promiseRejected:generatePromiseLifecycleEventObject,promiseResolved:generatePromiseLifecycleEventObject,promiseCancelled:generatePromiseLifecycleEventObject,promiseChained:function(e,t,n){return{promise:t,child:n}},warning:function(e,t){return{warning:t}},unhandledRejection:function(e,t,n){return{reason:t,promise:n}},rejectionHandled:generatePromiseLifecycleEventObject};var _=function(e){var t=false;try{t=S.apply(null,arguments)}catch(e){i.throwLater(e);t=true}var n=false;try{n=j(e,E[e].apply(null,arguments))}catch(e){i.throwLater(e);n=true}return n||t};e.config=function(t){t=Object(t);if("longStackTraces"in t){if(t.longStackTraces){e.longStackTraces()}else if(!t.longStackTraces&&e.hasLongStackTraces()){k()}}if("warnings"in t){var n=t.warnings;D.warnings=!!n;x=D.warnings;if(a.isObject(n)){if("wForgottenReturn"in n){x=!!n.wForgottenReturn}}}if("cancellation"in t&&t.cancellation&&!D.cancellation){if(i.haveItemsQueued()){throw new Error("cannot enable cancellation after promises are in use")}e.prototype._clearCancellationData=cancellationClearCancellationData;e.prototype._propagateFrom=cancellationPropagateFrom;e.prototype._onCancel=cancellationOnCancel;e.prototype._setOnCancel=cancellationSetOnCancel;e.prototype._attachCancellationCallback=cancellationAttachCancellationCallback;e.prototype._execute=cancellationExecute;C=cancellationPropagateFrom;D.cancellation=true}if("monitoring"in t){if(t.monitoring&&!D.monitoring){D.monitoring=true;e.prototype._fireEvent=_}else if(!t.monitoring&&D.monitoring){D.monitoring=false;e.prototype._fireEvent=defaultFireEvent}}return e};function defaultFireEvent(){return false}e.prototype._fireEvent=defaultFireEvent;e.prototype._execute=function(e,t,n){try{e(t,n)}catch(e){return e}};e.prototype._onCancel=function(){};e.prototype._setOnCancel=function(e){};e.prototype._attachCancellationCallback=function(e){};e.prototype._captureStackTrace=function(){};e.prototype._attachExtraTrace=function(){};e.prototype._dereferenceTrace=function(){};e.prototype._clearCancellationData=function(){};e.prototype._propagateFrom=function(e,t){};function cancellationExecute(e,t,n){var r=this;try{e(t,n,function(e){if(typeof e!=="function"){throw new TypeError("onCancel must be a function, got: "+a.toString(e))}r._attachCancellationCallback(e)})}catch(e){return e}}function cancellationAttachCancellationCallback(e){if(!this._isCancellable())return this;var t=this._onCancel();if(t!==undefined){if(a.isArray(t)){t.push(e)}else{this._setOnCancel([t,e])}}else{this._setOnCancel(e)}}function cancellationOnCancel(){return this._onCancelField}function cancellationSetOnCancel(e){this._onCancelField=e}function cancellationClearCancellationData(){this._cancellationParent=undefined;this._onCancelField=undefined}function cancellationPropagateFrom(e,t){if((t&1)!==0){this._cancellationParent=e;var n=e._branchesRemainingToCancel;if(n===undefined){n=0}e._branchesRemainingToCancel=n+1}if((t&2)!==0&&e._isBound()){this._setBoundTo(e._boundTo)}}function bindingPropagateFrom(e,t){if((t&2)!==0&&e._isBound()){this._setBoundTo(e._boundTo)}}var C=bindingPropagateFrom;function boundValueFunction(){var t=this._boundTo;if(t!==undefined){if(t instanceof e){if(t.isFulfilled()){return t.value()}else{return undefined}}}return t}function longStackTracesCaptureStackTrace(){this._trace=new CapturedTrace(this._peekContext())}function longStackTracesAttachExtraTrace(e,t){if(c(e)){var n=this._trace;if(n!==undefined){if(t)n=n._parent}if(n!==undefined){n.attachExtraTrace(e)}else if(!e.__stackCleaned__){var r=parseStackAndMessage(e);a.notEnumerableProp(e,"stack",r.message+"\n"+r.stack.join("\n"));a.notEnumerableProp(e,"__stackCleaned__",true)}}}function longStackTracesDereferenceTrace(){this._trace=undefined}function checkForgottenReturns(e,t,n,r,i){if(e===undefined&&t!==null&&x){if(i!==undefined&&i._returnedNonUndefined())return;if((r._bitField&65535)===0)return;if(n)n=n+" ";var o="";var a="";if(t._trace){var s=t._trace.stack.split("\n");var c=cleanStack(s);for(var u=c.length-1;u>=0;--u){var l=c[u];if(!p.test(l)){var f=l.match(d);if(f){o="at "+f[1]+":"+f[2]+":"+f[3]+" "}break}}if(c.length>0){var h=c[0];for(var u=0;u<s.length;++u){if(s[u]===h){if(u>0){a="\n"+s[u-1]}break}}}}var m="a promise was created in a "+n+"handler "+o+"but was not returned from it, "+"see http://goo.gl/rRqMUw"+a;r._warn(m,true,t)}}function deprecated(e,t){var n=e+" is deprecated and will be removed in a future version.";if(t)n+=" Use "+t+" instead.";return warn(n)}function warn(t,n,r){if(!D.warnings)return;var i=new o(t);var a;if(n){r._attachExtraTrace(i)}else if(D.longStackTraces&&(a=e._peekContext())){a.attachExtraTrace(i)}else{var s=parseStackAndMessage(i);i.stack=s.message+"\n"+s.stack.join("\n")}if(!_("warning",i)){formatAndLogError(i,"",true)}}function reconstructStack(e,t){for(var n=0;n<t.length-1;++n){t[n].push("From previous event:");t[n]=t[n].join("\n")}if(n<t.length){t[n]=t[n].join("\n")}return e+"\n"+t.join("\n")}function removeDuplicateOrEmptyJumps(e){for(var t=0;t<e.length;++t){if(e[t].length===0||t+1<e.length&&e[t][0]===e[t+1][0]){e.splice(t,1);t--}}}function removeCommonRoots(e){var t=e[0];for(var n=1;n<e.length;++n){var r=e[n];var i=t.length-1;var o=t[i];var a=-1;for(var s=r.length-1;s>=0;--s){if(r[s]===o){a=s;break}}for(var s=a;s>=0;--s){var c=r[s];if(t[i]===c){t.pop();i--}else{break}}t=r}}function cleanStack(e){var t=[];for(var n=0;n<e.length;++n){var r=e[n];var i=" (No stack trace)"===r||h.test(r);var o=i&&A(r);if(i&&!o){if(v&&r.charAt(0)!==" "){r=" "+r}t.push(r)}}return t}function stackFramesAsArray(e){var t=e.stack.replace(/\s+$/g,"").split("\n");for(var n=0;n<t.length;++n){var r=t[n];if(" (No stack trace)"===r||h.test(r)){break}}if(n>0&&e.name!="SyntaxError"){t=t.slice(n)}return t}function parseStackAndMessage(e){var t=e.stack;var n=e.toString();t=typeof t==="string"&&t.length>0?stackFramesAsArray(e):[" (No stack trace)"];return{message:n,stack:e.name=="SyntaxError"?t:cleanStack(t)}}function formatAndLogError(e,t,n){if(typeof console!=="undefined"){var r;if(a.isObject(e)){var i=e.stack;r=t+m(i,e)}else{r=t+String(e)}if(typeof g==="function"){g(r,n)}else if(typeof console.log==="function"||typeof console.log==="object"){console.log(r)}}}function fireRejectionEvent(e,t,n,r){var o=false;try{if(typeof t==="function"){o=true;if(e==="rejectionHandled"){t(r)}else{t(n,r)}}}catch(e){i.throwLater(e)}if(e==="unhandledRejection"){if(!_(e,n,r)&&!o){formatAndLogError(n,"Unhandled rejection ")}}else{_(e,r)}}function formatNonError(e){var t;if(typeof e==="function"){t="[function "+(e.name||"anonymous")+"]"}else{t=e&&typeof e.toString==="function"?e.toString():a.toString(e);var n=/\[object [a-zA-Z0-9$_]+\]/;if(n.test(t)){try{var r=JSON.stringify(e);t=r}catch(e){}}if(t.length===0){t="(empty array)"}}return"(<"+snip(t)+">, no stack trace)"}function snip(e){var t=41;if(e.length<t){return e}return e.substr(0,t-3)+"..."}function longStackTracesIsSupported(){return typeof F==="function"}var A=function(){return false};var O=/[\/<\(]([^:\/]+):(\d+):(?:\d+)\)?\s*$/;function parseLineInfo(e){var t=e.match(O);if(t){return{fileName:t[1],line:parseInt(t[2],10)}}}function setBounds(e,t){if(!longStackTracesIsSupported())return;var n=(e.stack||"").split("\n");var r=(t.stack||"").split("\n");var i=-1;var o=-1;var a;var s;for(var c=0;c<n.length;++c){var u=parseLineInfo(n[c]);if(u){a=u.fileName;i=u.line;break}}for(var c=0;c<r.length;++c){var u=parseLineInfo(r[c]);if(u){s=u.fileName;o=u.line;break}}if(i<0||o<0||!a||!s||a!==s||i>=o){return}A=function(e){if(f.test(e))return true;var t=parseLineInfo(e);if(t){if(t.fileName===a&&(i<=t.line&&t.line<=o)){return true}}return false}}function CapturedTrace(e){this._parent=e;this._promisesCreated=0;var t=this._length=1+(e===undefined?0:e._length);F(this,CapturedTrace);if(t>32)this.uncycle()}a.inherits(CapturedTrace,Error);t.CapturedTrace=CapturedTrace;CapturedTrace.prototype.uncycle=function(){var e=this._length;if(e<2)return;var t=[];var n={};for(var r=0,i=this;i!==undefined;++r){t.push(i);i=i._parent}e=this._length=r;for(var r=e-1;r>=0;--r){var o=t[r].stack;if(n[o]===undefined){n[o]=r}}for(var r=0;r<e;++r){var a=t[r].stack;var s=n[a];if(s!==undefined&&s!==r){if(s>0){t[s-1]._parent=undefined;t[s-1]._length=1}t[r]._parent=undefined;t[r]._length=1;var c=r>0?t[r-1]:this;if(s<e-1){c._parent=t[s+1];c._parent.uncycle();c._length=c._parent._length+1}else{c._parent=undefined;c._length=1}var u=c._length+1;for(var l=r-2;l>=0;--l){t[l]._length=u;u++}return}}};CapturedTrace.prototype.attachExtraTrace=function(e){if(e.__stackCleaned__)return;this.uncycle();var t=parseStackAndMessage(e);var n=t.message;var r=[t.stack];var i=this;while(i!==undefined){r.push(cleanStack(i.stack.split("\n")));i=i._parent}removeCommonRoots(r);removeDuplicateOrEmptyJumps(r);a.notEnumerableProp(e,"stack",reconstructStack(n,r));a.notEnumerableProp(e,"__stackCleaned__",true)};var F=function stackDetection(){var e=/^\s*at\s*/;var t=function(e,t){if(typeof e==="string")return e;if(t.name!==undefined&&t.message!==undefined){return t.toString()}return formatNonError(t)};if(typeof Error.stackTraceLimit==="number"&&typeof Error.captureStackTrace==="function"){Error.stackTraceLimit+=6;h=e;m=t;var n=Error.captureStackTrace;A=function(e){return f.test(e)};return function(e,t){Error.stackTraceLimit+=6;n(e,t);Error.stackTraceLimit-=6}}var r=new Error;if(typeof r.stack==="string"&&r.stack.split("\n")[0].indexOf("stackDetection@")>=0){h=/@/;m=t;v=true;return function captureStackTrace(e){e.stack=(new Error).stack}}var i;try{throw new Error}catch(e){i="stack"in e}if(!("stack"in r)&&i&&typeof Error.stackTraceLimit==="number"){h=e;m=t;return function captureStackTrace(e){Error.stackTraceLimit+=6;try{throw new Error}catch(t){e.stack=t.stack}Error.stackTraceLimit-=6}}m=function(e,t){if(typeof e==="string")return e;if((typeof t==="object"||typeof t==="function")&&t.name!==undefined&&t.message!==undefined){return t.toString()}return formatNonError(t)};return null}([]);if(typeof console!=="undefined"&&typeof console.warn!=="undefined"){g=function(e){console.warn(e)};if(a.isNode&&process.stderr.isTTY){g=function(e,t){var n=t?"":"";console.warn(n+e+"\n")}}else if(!a.isNode&&typeof(new Error).stack==="string"){g=function(e,t){console.warn("%c"+e,t?"color: darkorange":"color: red")}}}var D={warnings:b,longStackTraces:false,cancellation:false,monitoring:false};if(w)e.longStackTraces();return{longStackTraces:function(){return D.longStackTraces},warnings:function(){return D.warnings},cancellation:function(){return D.cancellation},monitoring:function(){return D.monitoring},propagateFromFunction:function(){return C},boundValueFunction:function(){return boundValueFunction},checkForgottenReturns:checkForgottenReturns,setBounds:setBounds,warn:warn,deprecated:deprecated,CapturedTrace:CapturedTrace,fireDomEvent:j,fireGlobalEvent:S}}},2166:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({create:i({method:"POST",path:"accounts"}),list:i({method:"GET",path:"accounts"}),update:i({method:"POST",path:"accounts/{id}",urlParams:["id"]}),del:i({method:"DELETE",path:"accounts/{id}",urlParams:["id"]}),reject:i({method:"POST",path:"accounts/{id}/reject",urlParams:["id"]}),retrieve:function(e){if(typeof e==="string"){return i({method:"GET",path:"accounts/{id}",urlParams:["id"]}).apply(this,arguments)}else{if(e===null||e===undefined){[].shift.apply(arguments)}return i({method:"GET",path:"account"}).apply(this,arguments)}},createExternalAccount:i({method:"POST",path:"accounts/{accountId}/external_accounts",urlParams:["accountId"]}),listExternalAccounts:i({method:"GET",path:"accounts/{accountId}/external_accounts",urlParams:["accountId"]}),retrieveExternalAccount:i({method:"GET",path:"accounts/{accountId}/external_accounts/{externalAccountId}",urlParams:["accountId","externalAccountId"]}),updateExternalAccount:i({method:"POST",path:"accounts/{accountId}/external_accounts/{externalAccountId}",urlParams:["accountId","externalAccountId"]}),deleteExternalAccount:i({method:"DELETE",path:"accounts/{accountId}/external_accounts/{externalAccountId}",urlParams:["accountId","externalAccountId"]}),createLoginLink:i({method:"POST",path:"accounts/{accountId}/login_links",urlParams:["accountId"]})})},2168:function(e){"use strict";e.exports=function generate_allOf(e,t,n){var r=" ";var i=e.schema[t];var o=e.schemaPath+e.util.getProperty(t);var a=e.errSchemaPath+"/"+t;var s=!e.opts.allErrors;var c=e.util.copy(e);var u="";c.level++;var l="valid"+c.level;var f=c.baseId,p=true;var d=i;if(d){var h,m=-1,v=d.length-1;while(m<v){h=d[m+=1];if(e.opts.strictKeywords?typeof h=="object"&&Object.keys(h).length>0:e.util.schemaHasRules(h,e.RULES.all)){p=false;c.schema=h;c.schemaPath=o+"["+m+"]";c.errSchemaPath=a+"/"+m;r+=" "+e.validate(c)+" ";c.baseId=f;if(s){r+=" if ("+l+") { ";u+="}"}}}}if(s){if(p){r+=" if (true) { "}else{r+=" "+u.slice(0,-1)+" "}}r=e.util.cleanUpCode(r);return r}},2175:function(e,t,n){var r=n(7774);t.wordBoundary=function(){return{type:r.POSITION,value:"b"}};t.nonWordBoundary=function(){return{type:r.POSITION,value:"B"}};t.begin=function(){return{type:r.POSITION,value:"^"}};t.end=function(){return{type:r.POSITION,value:"$"}}},2176:function(e){e.exports={$id:"cache.json#",$schema:"http://json-schema.org/draft-06/schema#",properties:{beforeRequest:{oneOf:[{type:"null"},{$ref:"beforeRequest.json#"}]},afterRequest:{oneOf:[{type:"null"},{$ref:"afterRequest.json#"}]},comment:{type:"string"}}}},2197:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=n(2385);const s=i(n(5242));const c=i(n(5580));const u=i(n(8742));const l=i(n(4999));const f=i(n(991));const p=i(n(6745));const d=i(n(8794));const h=i(n(1548));const m=()=>{console.log(`\n ${o.default.bold(`${l.default} now certs`)} [options] <command>\n\n ${o.default.yellow("NOTE:")} This command is intended for advanced use only.\n By default, Now manages your certificates automatically.\n\n ${o.default.dim("Commands:")}\n\n ls Show all available certificates\n issue <cn> [<cn>] Issue a new certificate for a domain\n rm <id> Remove a certificate by id\n\n ${o.default.dim("Options:")}\n\n -h, --help Output usage information\n -A ${o.default.bold.underline("FILE")}, --local-config=${o.default.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${o.default.bold.underline("DIR")}, --global-config=${o.default.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -d, --debug Debug mode [off]\n -t ${o.default.bold.underline("TOKEN")}, --token=${o.default.bold.underline("TOKEN")} Login token\n -S, --scope Set a custom scope\n --challenge-only Only show challenges needed to issue a cert\n --crt ${o.default.bold.underline("FILE")} Certificate file\n --key ${o.default.bold.underline("FILE")} Certificate key file\n --ca ${o.default.bold.underline("FILE")} CA certificate chain file\n\n ${o.default.dim("Examples:")}\n\n ${o.default.gray("")} Generate a certificate with the cnames "acme.com" and "www.acme.com"\n\n ${o.default.cyan("$ now certs issue acme.com www.acme.com")}\n\n ${o.default.gray("")} Remove a certificate\n\n ${o.default.cyan("$ now certs rm id")}\n `)};const v={add:["add"],issue:["issue"],ls:["ls","list"],renew:["renew"],rm:["rm","remove"]};function main(e){return r(this,void 0,void 0,function*(){let t;try{t=c.default(e.argv.slice(2),{"--challenge-only":Boolean,"--overwrite":Boolean,"--output":String,"--after":String,"--crt":String,"--key":String,"--ca":String})}catch(e){a.handleError(e);return 1}if(t["--help"]){m();return 0}const n=s.default({debug:t["--debug"]});const{subcommand:r,args:i}=u.default(t._.slice(1),v);switch(r){case"issue":return p.default(e,t,i,n);case"ls":return d.default(e,t,i,n);case"rm":return h.default(e,t,i,n);case"add":return f.default(e,t,i,n);case"renew":n.error("Renewing certificates is deprecated, issue a new one.");return 1;default:n.error("Please specify a valid subcommand: ls | issue | rm");m();return 2}})}t.default=main},2205:function(e){"use strict";var t=Object.getOwnPropertySymbols;var n=Object.prototype.hasOwnProperty;var r=Object.prototype.propertyIsEnumerable;function toObject(e){if(e===null||e===undefined){throw new TypeError("Object.assign cannot be called with null or undefined")}return Object(e)}function shouldUseNative(){try{if(!Object.assign){return false}var e=new String("abc");e[5]="de";if(Object.getOwnPropertyNames(e)[0]==="5"){return false}var t={};for(var n=0;n<10;n++){t["_"+String.fromCharCode(n)]=n}var r=Object.getOwnPropertyNames(t).map(function(e){return t[e]});if(r.join("")!=="0123456789"){return false}var i={};"abcdefghijklmnopqrst".split("").forEach(function(e){i[e]=e});if(Object.keys(Object.assign({},i)).join("")!=="abcdefghijklmnopqrst"){return false}return true}catch(e){return false}}e.exports=shouldUseNative()?Object.assign:function(e,i){var o;var a=toObject(e);var s;for(var c=1;c<arguments.length;c++){o=Object(arguments[c]);for(var u in o){if(n.call(o,u)){a[u]=o[u]}}if(t){s=t(o);for(var l=0;l<s.length;l++){if(r.call(o,s[l])){a[s[l]]=o[s[l]]}}}}return a}},2208:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(662);const o=n(5897);const a=n(7184);const s=n(5012);const c=r(function emptyDir(e,t){t=t||function(){};i.readdir(e,(n,r)=>{if(n)return a.mkdirs(e,t);r=r.map(t=>o.join(e,t));deleteItem();function deleteItem(){const e=r.pop();if(!e)return t();s.remove(e,e=>{if(e)return t(e);deleteItem()})}})});function emptyDirSync(e){let t;try{t=i.readdirSync(e)}catch(t){return a.mkdirsSync(e)}t.forEach(t=>{t=o.join(e,t);s.removeSync(t)})}e.exports={emptyDirSync:emptyDirSync,emptydirSync:emptyDirSync,emptyDir:c,emptydir:c}},2214:function(e,t,n){"use strict";n.r(t);t["default"]=((e,t)=>{const n=" ".repeat(t);return`${n}${e.replace(/\n/g,`\n${n}`)}`})},2225:function(e,t,n){"use strict";var r=n(297);var i=n(6207);e.exports=Object.assign||function(e){if(e===null||typeof e==="undefined"){throw new TypeError("Cannot convert undefined or null to object")}if(!isObject(e)){e={}}for(var t=1;t<arguments.length;t++){var n=arguments[t];if(isString(n)){n=toObject(n)}if(isObject(n)){assign(e,n);i(e,n)}}return e};function assign(e,t){for(var n in t){if(hasOwn(t,n)){e[n]=t[n]}}}function isString(e){return e&&typeof e==="string"}function toObject(e){var t={};for(var n in e){t[n]=e[n]}return t}function isObject(e){return e&&typeof e==="object"||r(e)}function hasOwn(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function isEnum(e,t){return Object.prototype.propertyIsEnumerable.call(e,t)}},2229:function(e){var t=1e3;var n=t*60;var r=n*60;var i=r*24;var o=i*7;var a=i*365.25;e.exports=function(e,t){t=t||{};var n=typeof e;if(n==="string"&&e.length>0){return parse(e)}else if(n==="number"&&isFinite(e)){return t.long?fmtLong(e):fmtShort(e)}throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))};function parse(e){e=String(e);if(e.length>100){return}var s=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(!s){return}var c=parseFloat(s[1]);var u=(s[2]||"ms").toLowerCase();switch(u){case"years":case"year":case"yrs":case"yr":case"y":return c*a;case"weeks":case"week":case"w":return c*o;case"days":case"day":case"d":return c*i;case"hours":case"hour":case"hrs":case"hr":case"h":return c*r;case"minutes":case"minute":case"mins":case"min":case"m":return c*n;case"seconds":case"second":case"secs":case"sec":case"s":return c*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return c;default:return undefined}}function fmtShort(e){var o=Math.abs(e);if(o>=i){return Math.round(e/i)+"d"}if(o>=r){return Math.round(e/r)+"h"}if(o>=n){return Math.round(e/n)+"m"}if(o>=t){return Math.round(e/t)+"s"}return e+"ms"}function fmtLong(e){var o=Math.abs(e);if(o>=i){return plural(e,o,i,"day")}if(o>=r){return plural(e,o,r,"hour")}if(o>=n){return plural(e,o,n,"minute")}if(o>=t){return plural(e,o,t,"second")}return e+" ms"}function plural(e,t,n,r){var i=t>=n*1.5;return Math.round(e/n)+" "+r+(i?"s":"")}},2237:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(5897));const s=o(n(8715));const c=i(n(7905));const u=i(n(1146));const l=i(n(8964));function getRulesFromFile(e){return r(this,void 0,void 0,function*(){return typeof e==="string"?readRulesFile(e):null})}t.default=getRulesFromFile;function readRulesFile(e){return r(this,void 0,void 0,function*(){const t=a.default.resolve(process.cwd(),e);const n=yield u.default(t);if(n instanceof s.CantParseJSONFile){return n}if(n===null){return new s.FileNotFound(t)}if(!n.rules){return new s.RulesFileValidationError(c.default(t),"Your rules file must include a rules field")}const r=n.rules;const i=l.default(c.default(t),r);if(i instanceof s.RulesFileValidationError){return i}return r})}},2247:function(e){"use strict";e.exports=(e=>(class extends e{warn(e,t){if(!this.strict)this.emit("warn",e,t);else if(t instanceof Error)this.emit("error",t);else{const n=new Error(e);n.data=t;this.emit("error",n)}}}))},2250:function(e){var t=[];for(var n=0;n<256;++n){t[n]=(n+256).toString(16).substr(1)}function bytesToUuid(e,n){var r=n||0;var i=t;return[i[e[r++]],i[e[r++]],i[e[r++]],i[e[r++]],"-",i[e[r++]],i[e[r++]],"-",i[e[r++]],i[e[r++]],"-",i[e[r++]],i[e[r++]],"-",i[e[r++]],i[e[r++]],i[e[r++]],i[e[r++]],i[e[r++]],i[e[r++]]].join("")}e.exports=bytesToUuid},2255:function(e,t){"use strict";t.fromCallback=function(e){return Object.defineProperty(function(){if(typeof arguments[arguments.length-1]==="function")e.apply(this,arguments);else{return new Promise((t,n)=>{arguments[arguments.length]=((e,r)=>{if(e)return n(e);t(r)});arguments.length++;e.apply(this,arguments)})}},"name",{value:e.name})};t.fromPromise=function(e){return Object.defineProperty(function(){const t=arguments[arguments.length-1];if(typeof t!=="function")return e.apply(this,arguments);else e.apply(this,arguments).then(e=>t(null,e),t)},"name",{value:e.name})}},2258:function(e,t,n){var r=n(4491);e.exports=pathToRegexp;e.exports.parse=parse;e.exports.compile=compile;e.exports.tokensToFunction=tokensToFunction;e.exports.tokensToRegExp=tokensToRegExp;var i=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function parse(e,t){var n=[];var r=0;var o=0;var a="";var s=t&&t.delimiter||"/";var c;while((c=i.exec(e))!=null){var u=c[0];var l=c[1];var f=c.index;a+=e.slice(o,f);o=f+u.length;if(l){a+=l[1];continue}var p=e[o];var d=c[2];var h=c[3];var m=c[4];var v=c[5];var g=c[6];var y=c[7];if(a){n.push(a);a=""}var b=d!=null&&p!=null&&p!==d;var w=g==="+"||g==="*";var x=g==="?"||g==="*";var k=c[2]||s;var j=m||v;n.push({name:h||r++,prefix:d||"",delimiter:k,optional:x,repeat:w,partial:b,asterisk:!!y,pattern:j?escapeGroup(j):y?".*":"[^"+escapeString(k)+"]+?"})}if(o<e.length){a+=e.substr(o)}if(a){n.push(a)}return n}function compile(e,t){return tokensToFunction(parse(e,t))}function encodeURIComponentPretty(e){return encodeURI(e).replace(/[\/?#]/g,function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})}function encodeAsterisk(e){return encodeURI(e).replace(/[?#]/g,function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})}function tokensToFunction(e){var t=new Array(e.length);for(var n=0;n<e.length;n++){if(typeof e[n]==="object"){t[n]=new RegExp("^(?:"+e[n].pattern+")$")}}return function(n,i){var o="";var a=n||{};var s=i||{};var c=s.pretty?encodeURIComponentPretty:encodeURIComponent;for(var u=0;u<e.length;u++){var l=e[u];if(typeof l==="string"){o+=l;continue}var f=a[l.name];var p;if(f==null){if(l.optional){if(l.partial){o+=l.prefix}continue}else{throw new TypeError('Expected "'+l.name+'" to be defined')}}if(r(f)){if(!l.repeat){throw new TypeError('Expected "'+l.name+'" to not repeat, but received `'+JSON.stringify(f)+"`")}if(f.length===0){if(l.optional){continue}else{throw new TypeError('Expected "'+l.name+'" to not be empty')}}for(var d=0;d<f.length;d++){p=c(f[d]);if(!t[u].test(p)){throw new TypeError('Expected all "'+l.name+'" to match "'+l.pattern+'", but received `'+JSON.stringify(p)+"`")}o+=(d===0?l.prefix:l.delimiter)+p}continue}p=l.asterisk?encodeAsterisk(f):c(f);if(!t[u].test(p)){throw new TypeError('Expected "'+l.name+'" to match "'+l.pattern+'", but received "'+p+'"')}o+=l.prefix+p}return o}}function escapeString(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function escapeGroup(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function attachKeys(e,t){e.keys=t;return e}function flags(e){return e.sensitive?"":"i"}function regexpToRegexp(e,t){var n=e.source.match(/\((?!\?)/g);if(n){for(var r=0;r<n.length;r++){t.push({name:r,prefix:null,delimiter:null,optional:false,repeat:false,partial:false,asterisk:false,pattern:null})}}return attachKeys(e,t)}function arrayToRegexp(e,t,n){var r=[];for(var i=0;i<e.length;i++){r.push(pathToRegexp(e[i],t,n).source)}var o=new RegExp("(?:"+r.join("|")+")",flags(n));return attachKeys(o,t)}function stringToRegexp(e,t,n){return tokensToRegExp(parse(e,n),t,n)}function tokensToRegExp(e,t,n){if(!r(t)){n=t||n;t=[]}n=n||{};var i=n.strict;var o=n.end!==false;var a="";for(var s=0;s<e.length;s++){var c=e[s];if(typeof c==="string"){a+=escapeString(c)}else{var u=escapeString(c.prefix);var l="(?:"+c.pattern+")";t.push(c);if(c.repeat){l+="(?:"+u+l+")*"}if(c.optional){if(!c.partial){l="(?:"+u+"("+l+"))?"}else{l=u+"("+l+")?"}}else{l=u+"("+l+")"}a+=l}}var f=escapeString(n.delimiter||"/");var p=a.slice(-f.length)===f;if(!i){a=(p?a.slice(0,-f.length):a)+"(?:"+f+"(?=$))?"}if(o){a+="$"}else{a+=i&&p?"":"(?="+f+"|$)"}return attachKeys(new RegExp("^"+a,flags(n)),t)}function pathToRegexp(e,t,n){if(!r(t)){n=t||n;t=[]}n=n||{};if(e instanceof RegExp){return regexpToRegexp(e,t)}if(r(e)){return arrayToRegexp(e,t,n)}return stringToRegexp(e,t,n)}},2267:function(e,t,n){var r=n(9175);var i=n(9222);var o=n(6365).ArraySet;var a=n(6594);var s=n(4068).quickSort;function SourceMapConsumer(e){var t=e;if(typeof e==="string"){t=JSON.parse(e.replace(/^\)\]\}'/,""))}return t.sections!=null?new IndexedSourceMapConsumer(t):new BasicSourceMapConsumer(t)}SourceMapConsumer.fromSourceMap=function(e){return BasicSourceMapConsumer.fromSourceMap(e)};SourceMapConsumer.prototype._version=3;SourceMapConsumer.prototype.__generatedMappings=null;Object.defineProperty(SourceMapConsumer.prototype,"_generatedMappings",{get:function(){if(!this.__generatedMappings){this._parseMappings(this._mappings,this.sourceRoot)}return this.__generatedMappings}});SourceMapConsumer.prototype.__originalMappings=null;Object.defineProperty(SourceMapConsumer.prototype,"_originalMappings",{get:function(){if(!this.__originalMappings){this._parseMappings(this._mappings,this.sourceRoot)}return this.__originalMappings}});SourceMapConsumer.prototype._charIsMappingSeparator=function SourceMapConsumer_charIsMappingSeparator(e,t){var n=e.charAt(t);return n===";"||n===","};SourceMapConsumer.prototype._parseMappings=function SourceMapConsumer_parseMappings(e,t){throw new Error("Subclasses must implement _parseMappings")};SourceMapConsumer.GENERATED_ORDER=1;SourceMapConsumer.ORIGINAL_ORDER=2;SourceMapConsumer.GREATEST_LOWER_BOUND=1;SourceMapConsumer.LEAST_UPPER_BOUND=2;SourceMapConsumer.prototype.eachMapping=function SourceMapConsumer_eachMapping(e,t,n){var i=t||null;var o=n||SourceMapConsumer.GENERATED_ORDER;var a;switch(o){case SourceMapConsumer.GENERATED_ORDER:a=this._generatedMappings;break;case SourceMapConsumer.ORIGINAL_ORDER:a=this._originalMappings;break;default:throw new Error("Unknown order of iteration.")}var s=this.sourceRoot;a.map(function(e){var t=e.source===null?null:this._sources.at(e.source);if(t!=null&&s!=null){t=r.join(s,t)}return{source:t,generatedLine:e.generatedLine,generatedColumn:e.generatedColumn,originalLine:e.originalLine,originalColumn:e.originalColumn,name:e.name===null?null:this._names.at(e.name)}},this).forEach(e,i)};SourceMapConsumer.prototype.allGeneratedPositionsFor=function SourceMapConsumer_allGeneratedPositionsFor(e){var t=r.getArg(e,"line");var n={source:r.getArg(e,"source"),originalLine:t,originalColumn:r.getArg(e,"column",0)};if(this.sourceRoot!=null){n.source=r.relative(this.sourceRoot,n.source)}if(!this._sources.has(n.source)){return[]}n.source=this._sources.indexOf(n.source);var o=[];var a=this._findMapping(n,this._originalMappings,"originalLine","originalColumn",r.compareByOriginalPositions,i.LEAST_UPPER_BOUND);if(a>=0){var s=this._originalMappings[a];if(e.column===undefined){var c=s.originalLine;while(s&&s.originalLine===c){o.push({line:r.getArg(s,"generatedLine",null),column:r.getArg(s,"generatedColumn",null),lastColumn:r.getArg(s,"lastGeneratedColumn",null)});s=this._originalMappings[++a]}}else{var u=s.originalColumn;while(s&&s.originalLine===t&&s.originalColumn==u){o.push({line:r.getArg(s,"generatedLine",null),column:r.getArg(s,"generatedColumn",null),lastColumn:r.getArg(s,"lastGeneratedColumn",null)});s=this._originalMappings[++a]}}}return o};t.SourceMapConsumer=SourceMapConsumer;function BasicSourceMapConsumer(e){var t=e;if(typeof e==="string"){t=JSON.parse(e.replace(/^\)\]\}'/,""))}var n=r.getArg(t,"version");var i=r.getArg(t,"sources");var a=r.getArg(t,"names",[]);var s=r.getArg(t,"sourceRoot",null);var c=r.getArg(t,"sourcesContent",null);var u=r.getArg(t,"mappings");var l=r.getArg(t,"file",null);if(n!=this._version){throw new Error("Unsupported version: "+n)}i=i.map(String).map(r.normalize).map(function(e){return s&&r.isAbsolute(s)&&r.isAbsolute(e)?r.relative(s,e):e});this._names=o.fromArray(a.map(String),true);this._sources=o.fromArray(i,true);this.sourceRoot=s;this.sourcesContent=c;this._mappings=u;this.file=l}BasicSourceMapConsumer.prototype=Object.create(SourceMapConsumer.prototype);BasicSourceMapConsumer.prototype.consumer=SourceMapConsumer;BasicSourceMapConsumer.fromSourceMap=function SourceMapConsumer_fromSourceMap(e){var t=Object.create(BasicSourceMapConsumer.prototype);var n=t._names=o.fromArray(e._names.toArray(),true);var i=t._sources=o.fromArray(e._sources.toArray(),true);t.sourceRoot=e._sourceRoot;t.sourcesContent=e._generateSourcesContent(t._sources.toArray(),t.sourceRoot);t.file=e._file;var a=e._mappings.toArray().slice();var c=t.__generatedMappings=[];var u=t.__originalMappings=[];for(var l=0,f=a.length;l<f;l++){var p=a[l];var d=new Mapping;d.generatedLine=p.generatedLine;d.generatedColumn=p.generatedColumn;if(p.source){d.source=i.indexOf(p.source);d.originalLine=p.originalLine;d.originalColumn=p.originalColumn;if(p.name){d.name=n.indexOf(p.name)}u.push(d)}c.push(d)}s(t.__originalMappings,r.compareByOriginalPositions);return t};BasicSourceMapConsumer.prototype._version=3;Object.defineProperty(BasicSourceMapConsumer.prototype,"sources",{get:function(){return this._sources.toArray().map(function(e){return this.sourceRoot!=null?r.join(this.sourceRoot,e):e},this)}});function Mapping(){this.generatedLine=0;this.generatedColumn=0;this.source=null;this.originalLine=null;this.originalColumn=null;this.name=null}BasicSourceMapConsumer.prototype._parseMappings=function SourceMapConsumer_parseMappings(e,t){var n=1;var i=0;var o=0;var c=0;var u=0;var l=0;var f=e.length;var p=0;var d={};var h={};var m=[];var v=[];var g,y,b,w,x;while(p<f){if(e.charAt(p)===";"){n++;p++;i=0}else if(e.charAt(p)===","){p++}else{g=new Mapping;g.generatedLine=n;for(w=p;w<f;w++){if(this._charIsMappingSeparator(e,w)){break}}y=e.slice(p,w);b=d[y];if(b){p+=y.length}else{b=[];while(p<w){a.decode(e,p,h);x=h.value;p=h.rest;b.push(x)}if(b.length===2){throw new Error("Found a source, but no line and column")}if(b.length===3){throw new Error("Found a source and line, but no column")}d[y]=b}g.generatedColumn=i+b[0];i=g.generatedColumn;if(b.length>1){g.source=u+b[1];u+=b[1];g.originalLine=o+b[2];o=g.originalLine;g.originalLine+=1;g.originalColumn=c+b[3];c=g.originalColumn;if(b.length>4){g.name=l+b[4];l+=b[4]}}v.push(g);if(typeof g.originalLine==="number"){m.push(g)}}}s(v,r.compareByGeneratedPositionsDeflated);this.__generatedMappings=v;s(m,r.compareByOriginalPositions);this.__originalMappings=m};BasicSourceMapConsumer.prototype._findMapping=function SourceMapConsumer_findMapping(e,t,n,r,o,a){if(e[n]<=0){throw new TypeError("Line must be greater than or equal to 1, got "+e[n])}if(e[r]<0){throw new TypeError("Column must be greater than or equal to 0, got "+e[r])}return i.search(e,t,o,a)};BasicSourceMapConsumer.prototype.computeColumnSpans=function SourceMapConsumer_computeColumnSpans(){for(var e=0;e<this._generatedMappings.length;++e){var t=this._generatedMappings[e];if(e+1<this._generatedMappings.length){var n=this._generatedMappings[e+1];if(t.generatedLine===n.generatedLine){t.lastGeneratedColumn=n.generatedColumn-1;continue}}t.lastGeneratedColumn=Infinity}};BasicSourceMapConsumer.prototype.originalPositionFor=function SourceMapConsumer_originalPositionFor(e){var t={generatedLine:r.getArg(e,"line"),generatedColumn:r.getArg(e,"column")};var n=this._findMapping(t,this._generatedMappings,"generatedLine","generatedColumn",r.compareByGeneratedPositionsDeflated,r.getArg(e,"bias",SourceMapConsumer.GREATEST_LOWER_BOUND));if(n>=0){var i=this._generatedMappings[n];if(i.generatedLine===t.generatedLine){var o=r.getArg(i,"source",null);if(o!==null){o=this._sources.at(o);if(this.sourceRoot!=null){o=r.join(this.sourceRoot,o)}}var a=r.getArg(i,"name",null);if(a!==null){a=this._names.at(a)}return{source:o,line:r.getArg(i,"originalLine",null),column:r.getArg(i,"originalColumn",null),name:a}}}return{source:null,line:null,column:null,name:null}};BasicSourceMapConsumer.prototype.hasContentsOfAllSources=function BasicSourceMapConsumer_hasContentsOfAllSources(){if(!this.sourcesContent){return false}return this.sourcesContent.length>=this._sources.size()&&!this.sourcesContent.some(function(e){return e==null})};BasicSourceMapConsumer.prototype.sourceContentFor=function SourceMapConsumer_sourceContentFor(e,t){if(!this.sourcesContent){return null}if(this.sourceRoot!=null){e=r.relative(this.sourceRoot,e)}if(this._sources.has(e)){return this.sourcesContent[this._sources.indexOf(e)]}var n;if(this.sourceRoot!=null&&(n=r.urlParse(this.sourceRoot))){var i=e.replace(/^file:\/\//,"");if(n.scheme=="file"&&this._sources.has(i)){return this.sourcesContent[this._sources.indexOf(i)]}if((!n.path||n.path=="/")&&this._sources.has("/"+e)){return this.sourcesContent[this._sources.indexOf("/"+e)]}}if(t){return null}else{throw new Error('"'+e+'" is not in the SourceMap.')}};BasicSourceMapConsumer.prototype.generatedPositionFor=function SourceMapConsumer_generatedPositionFor(e){var t=r.getArg(e,"source");if(this.sourceRoot!=null){t=r.relative(this.sourceRoot,t)}if(!this._sources.has(t)){return{line:null,column:null,lastColumn:null}}t=this._sources.indexOf(t);var n={source:t,originalLine:r.getArg(e,"line"),originalColumn:r.getArg(e,"column")};var i=this._findMapping(n,this._originalMappings,"originalLine","originalColumn",r.compareByOriginalPositions,r.getArg(e,"bias",SourceMapConsumer.GREATEST_LOWER_BOUND));if(i>=0){var o=this._originalMappings[i];if(o.source===n.source){return{line:r.getArg(o,"generatedLine",null),column:r.getArg(o,"generatedColumn",null),lastColumn:r.getArg(o,"lastGeneratedColumn",null)}}}return{line:null,column:null,lastColumn:null}};t.BasicSourceMapConsumer=BasicSourceMapConsumer;function IndexedSourceMapConsumer(e){var t=e;if(typeof e==="string"){t=JSON.parse(e.replace(/^\)\]\}'/,""))}var n=r.getArg(t,"version");var i=r.getArg(t,"sections");if(n!=this._version){throw new Error("Unsupported version: "+n)}this._sources=new o;this._names=new o;var a={line:-1,column:0};this._sections=i.map(function(e){if(e.url){throw new Error("Support for url field in sections not implemented.")}var t=r.getArg(e,"offset");var n=r.getArg(t,"line");var i=r.getArg(t,"column");if(n<a.line||n===a.line&&i<a.column){throw new Error("Section offsets must be ordered and non-overlapping.")}a=t;return{generatedOffset:{generatedLine:n+1,generatedColumn:i+1},consumer:new SourceMapConsumer(r.getArg(e,"map"))}})}IndexedSourceMapConsumer.prototype=Object.create(SourceMapConsumer.prototype);IndexedSourceMapConsumer.prototype.constructor=SourceMapConsumer;IndexedSourceMapConsumer.prototype._version=3;Object.defineProperty(IndexedSourceMapConsumer.prototype,"sources",{get:function(){var e=[];for(var t=0;t<this._sections.length;t++){for(var n=0;n<this._sections[t].consumer.sources.length;n++){e.push(this._sections[t].consumer.sources[n])}}return e}});IndexedSourceMapConsumer.prototype.originalPositionFor=function IndexedSourceMapConsumer_originalPositionFor(e){var t={generatedLine:r.getArg(e,"line"),generatedColumn:r.getArg(e,"column")};var n=i.search(t,this._sections,function(e,t){var n=e.generatedLine-t.generatedOffset.generatedLine;if(n){return n}return e.generatedColumn-t.generatedOffset.generatedColumn});var o=this._sections[n];if(!o){return{source:null,line:null,column:null,name:null}}return o.consumer.originalPositionFor({line:t.generatedLine-(o.generatedOffset.generatedLine-1),column:t.generatedColumn-(o.generatedOffset.generatedLine===t.generatedLine?o.generatedOffset.generatedColumn-1:0),bias:e.bias})};IndexedSourceMapConsumer.prototype.hasContentsOfAllSources=function IndexedSourceMapConsumer_hasContentsOfAllSources(){return this._sections.every(function(e){return e.consumer.hasContentsOfAllSources()})};IndexedSourceMapConsumer.prototype.sourceContentFor=function IndexedSourceMapConsumer_sourceContentFor(e,t){for(var n=0;n<this._sections.length;n++){var r=this._sections[n];var i=r.consumer.sourceContentFor(e,true);if(i){return i}}if(t){return null}else{throw new Error('"'+e+'" is not in the SourceMap.')}};IndexedSourceMapConsumer.prototype.generatedPositionFor=function IndexedSourceMapConsumer_generatedPositionFor(e){for(var t=0;t<this._sections.length;t++){var n=this._sections[t];if(n.consumer.sources.indexOf(r.getArg(e,"source"))===-1){continue}var i=n.consumer.generatedPositionFor(e);if(i){var o={line:i.line+(n.generatedOffset.generatedLine-1),column:i.column+(n.generatedOffset.generatedLine===i.line?n.generatedOffset.generatedColumn-1:0)};return o}}return{line:null,column:null}};IndexedSourceMapConsumer.prototype._parseMappings=function IndexedSourceMapConsumer_parseMappings(e,t){this.__generatedMappings=[];this.__originalMappings=[];for(var n=0;n<this._sections.length;n++){var i=this._sections[n];var o=i.consumer._generatedMappings;for(var a=0;a<o.length;a++){var c=o[a];var u=i.consumer._sources.at(c.source);if(i.consumer.sourceRoot!==null){u=r.join(i.consumer.sourceRoot,u)}this._sources.add(u);u=this._sources.indexOf(u);var l=i.consumer._names.at(c.name);this._names.add(l);l=this._names.indexOf(l);var f={source:u,generatedLine:c.generatedLine+(i.generatedOffset.generatedLine-1),generatedColumn:c.generatedColumn+(i.generatedOffset.generatedLine===c.generatedLine?i.generatedOffset.generatedColumn-1:0),originalLine:c.originalLine,originalColumn:c.originalColumn,name:l};this.__generatedMappings.push(f);if(typeof f.originalLine==="number"){this.__originalMappings.push(f)}}}s(this.__generatedMappings,r.compareByGeneratedPositionsDeflated);s(this.__originalMappings,r.compareByOriginalPositions)};t.IndexedSourceMapConsumer=IndexedSourceMapConsumer},2269:function(e,t){"use strict";var n=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});function deleteCertById(e,t,r){return n(this,void 0,void 0,function*(){return t.fetch(`/v3/now/certs/${r}`,{method:"DELETE"})})}t.default=deleteCertById},2286:function(e,t,n){"use strict";var r=n(649);var i=n(1974);var o=n(4261);var a=n(3021);var s=n(4738);var c=n(8727);var u=n(5457);var l=1024*64;function nanomatch(e,t,n){t=u.arrayify(t);e=u.arrayify(e);var r=t.length;if(e.length===0||r===0){return[]}if(r===1){return nanomatch.match(e,t[0],n)}var i=false;var o=[];var a=[];var s=-1;while(++s<r){var c=t[s];if(typeof c==="string"&&c.charCodeAt(0)===33){o.push.apply(o,nanomatch.match(e,c.slice(1),n));i=true}else{a.push.apply(a,nanomatch.match(e,c,n))}}if(i&&a.length===0){if(n&&n.unixify===false){a=e.slice()}else{var l=u.unixify(n);for(var f=0;f<e.length;f++){a.push(l(e[f]))}}}var p=u.diff(a,o);if(!n||n.nodupes!==false){return u.unique(p)}return p}nanomatch.match=function(e,t,n){if(Array.isArray(t)){throw new TypeError("expected pattern to be a string")}var r=u.unixify(n);var i=memoize("match",t,n,nanomatch.matcher);var o=[];e=u.arrayify(e);var a=e.length;var s=-1;while(++s<a){var c=e[s];if(c===t||i(c)){o.push(u.value(c,r,n))}}if(typeof n==="undefined"){return u.unique(o)}if(o.length===0){if(n.failglob===true){throw new Error('no matches found for "'+t+'"')}if(n.nonull===true||n.nullglob===true){return[n.unescape?u.unescape(t):t]}}if(n.ignore){o=nanomatch.not(o,n.ignore,n)}return n.nodupes!==false?u.unique(o):o};nanomatch.isMatch=function(e,t,n){if(typeof e!=="string"){throw new TypeError('expected a string: "'+r.inspect(e)+'"')}if(u.isEmptyString(e)||u.isEmptyString(t)){return false}var i=u.equalsPattern(n);if(i(e)){return true}var o=memoize("isMatch",t,n,nanomatch.matcher);return o(e)};nanomatch.some=function(e,t,n){if(typeof e==="string"){e=[e]}for(var r=0;r<e.length;r++){if(nanomatch(e[r],t,n).length===1){return true}}return false};nanomatch.every=function(e,t,n){if(typeof e==="string"){e=[e]}for(var r=0;r<e.length;r++){if(nanomatch(e[r],t,n).length!==1){return false}}return true};nanomatch.any=function(e,t,n){if(typeof e!=="string"){throw new TypeError('expected a string: "'+r.inspect(e)+'"')}if(u.isEmptyString(e)||u.isEmptyString(t)){return false}if(typeof t==="string"){t=[t]}for(var i=0;i<t.length;i++){if(nanomatch.isMatch(e,t[i],n)){return true}}return false};nanomatch.all=function(e,t,n){if(typeof e!=="string"){throw new TypeError('expected a string: "'+r.inspect(e)+'"')}if(typeof t==="string"){t=[t]}for(var i=0;i<t.length;i++){if(!nanomatch.isMatch(e,t[i],n)){return false}}return true};nanomatch.not=function(e,t,n){var r=o({},n);var i=r.ignore;delete r.ignore;e=u.arrayify(e);var a=u.diff(e,nanomatch(e,t,r));if(i){a=u.diff(a,nanomatch(e,i))}return r.nodupes!==false?u.unique(a):a};nanomatch.contains=function(e,t,n){if(typeof e!=="string"){throw new TypeError('expected a string: "'+r.inspect(e)+'"')}if(typeof t==="string"){if(u.isEmptyString(e)||u.isEmptyString(t)){return false}var i=u.equalsPattern(t,n);if(i(e)){return true}var a=u.containsPattern(t,n);if(a(e)){return true}}var s=o({},n,{contains:true});return nanomatch.any(e,t,s)};nanomatch.matchBase=function(e,t){if(e&&e.indexOf("/")!==-1||!t)return false;return t.basename===true||t.matchBase===true};nanomatch.matchKeys=function(e,t,n){if(!u.isObject(e)){throw new TypeError("expected the first argument to be an object")}var r=nanomatch(Object.keys(e),t,n);return u.pick(e,r)};nanomatch.matcher=function matcher(e,t){if(u.isEmptyString(e)){return function(){return false}}if(Array.isArray(e)){return compose(e,t,matcher)}if(e instanceof RegExp){return test(e)}if(!u.isString(e)){throw new TypeError("expected pattern to be an array, string or regex")}if(!u.hasSpecialChars(e)){if(t&&t.nocase===true){e=e.toLowerCase()}return u.matchPath(e,t)}var n=nanomatch.makeRe(e,t);if(nanomatch.matchBase(e,t)){return u.matchBasename(n,t)}function test(e){var n=u.equalsPattern(t);var r=u.unixify(t);return function(t){if(n(t)){return true}if(e.test(r(t))){return true}return false}}var r=test(n);u.define(r,"result",n.result);return r};nanomatch.capture=function(e,t,n){var r=nanomatch.makeRe(e,o({capture:true},n));var i=u.unixify(n);function match(){return function(e){var t=r.exec(i(e));if(!t){return null}return t.slice(1)}}var a=memoize("capture",e,n,match);return a(t)};nanomatch.makeRe=function(e,t){if(e instanceof RegExp){return e}if(typeof e!=="string"){throw new TypeError("expected pattern to be a string")}if(e.length>l){throw new Error("expected pattern to be less than "+l+" characters")}function makeRe(){var n=u.extend({wrap:false},t);var r=nanomatch.create(e,n);var o=i(r.output,n);u.define(o,"result",r);return o}return memoize("makeRe",e,t,makeRe)};nanomatch.create=function(e,t){if(typeof e!=="string"){throw new TypeError("expected a string")}function create(){return nanomatch.compile(nanomatch.parse(e,t),t)}return memoize("create",e,t,create)};nanomatch.parse=function(e,t){if(typeof e!=="string"){throw new TypeError("expected a string")}function parse(){var n=u.instantiate(null,t);s(n,t);var r=n.parse(e,t);u.define(r,"snapdragon",n);r.input=e;return r}return memoize("parse",e,t,parse)};nanomatch.compile=function(e,t){if(typeof e==="string"){e=nanomatch.parse(e,t)}function compile(){var n=u.instantiate(e,t);a(n,t);return n.compile(e,t)}return memoize("compile",e.input,t,compile)};nanomatch.clearCache=function(){nanomatch.cache.__data__={}};function compose(e,t,n){var r;return memoize("compose",String(e),t,function(){return function(i){if(!r){r=[];for(var o=0;o<e.length;o++){r.push(n(e[o],t))}}var a=r.length;while(a--){if(r[a](i)===true){return true}}return false}})}function memoize(e,t,n,r){var i=u.createKey(e+"="+t,n);if(n&&n.cache===false){return r(t,n)}if(c.has(e,i)){return c.get(e,i)}var o=r(t,n);c.set(e,i,o);return o}nanomatch.compilers=a;nanomatch.parsers=s;nanomatch.cache=c;e.exports=nanomatch},2292:function(e,t,n){e.exports={read:read,readPkcs1:readPkcs1,write:write,writePkcs1:writePkcs1};var r=n(9261);var i=n(4833);var o=n(3062).Buffer;var a=n(6977);var s=n(5271);var c=n(120);var u=n(1946);var l=n(5302);var f=n(6109);var p=f.readECDSACurve;function read(e,t){return l.read(e,t,"pkcs1")}function write(e,t){return l.write(e,t,"pkcs1")}function readMPInt(e,t){r.strictEqual(e.peek(),i.Ber.Integer,t+" is not an Integer");return s.mpNormalize(e.readString(i.Ber.Integer,true))}function readPkcs1(e,t,n){switch(e){case"RSA":if(t==="public")return readPkcs1RSAPublic(n);else if(t==="private")return readPkcs1RSAPrivate(n);throw new Error("Unknown key type: "+t);case"DSA":if(t==="public")return readPkcs1DSAPublic(n);else if(t==="private")return readPkcs1DSAPrivate(n);throw new Error("Unknown key type: "+t);case"EC":case"ECDSA":if(t==="private")return readPkcs1ECDSAPrivate(n);else if(t==="public")return readPkcs1ECDSAPublic(n);throw new Error("Unknown key type: "+t);case"EDDSA":case"EdDSA":if(t==="private")return readPkcs1EdDSAPrivate(n);throw new Error(t+" keys not supported with EdDSA");default:throw new Error("Unknown key algo: "+e)}}function readPkcs1RSAPublic(e){var t=readMPInt(e,"modulus");var n=readMPInt(e,"exponent");var r={type:"rsa",parts:[{name:"e",data:n},{name:"n",data:t}]};return new c(r)}function readPkcs1RSAPrivate(e){var t=readMPInt(e,"version");r.strictEqual(t[0],0);var n=readMPInt(e,"modulus");var i=readMPInt(e,"public exponent");var o=readMPInt(e,"private exponent");var a=readMPInt(e,"prime1");var s=readMPInt(e,"prime2");var c=readMPInt(e,"exponent1");var l=readMPInt(e,"exponent2");var f=readMPInt(e,"iqmp");var p={type:"rsa",parts:[{name:"n",data:n},{name:"e",data:i},{name:"d",data:o},{name:"iqmp",data:f},{name:"p",data:a},{name:"q",data:s},{name:"dmodp",data:c},{name:"dmodq",data:l}]};return new u(p)}function readPkcs1DSAPrivate(e){var t=readMPInt(e,"version");r.strictEqual(t.readUInt8(0),0);var n=readMPInt(e,"p");var i=readMPInt(e,"q");var o=readMPInt(e,"g");var a=readMPInt(e,"y");var s=readMPInt(e,"x");var c={type:"dsa",parts:[{name:"p",data:n},{name:"q",data:i},{name:"g",data:o},{name:"y",data:a},{name:"x",data:s}]};return new u(c)}function readPkcs1EdDSAPrivate(e){var t=readMPInt(e,"version");r.strictEqual(t.readUInt8(0),1);var n=e.readString(i.Ber.OctetString,true);e.readSequence(160);var o=e.readOID();r.strictEqual(o,"1.3.101.112","the ed25519 curve identifier");e.readSequence(161);var a=s.readBitString(e);var c={type:"ed25519",parts:[{name:"A",data:s.zeroPadToLength(a,32)},{name:"k",data:n}]};return new u(c)}function readPkcs1DSAPublic(e){var t=readMPInt(e,"y");var n=readMPInt(e,"p");var r=readMPInt(e,"q");var i=readMPInt(e,"g");var o={type:"dsa",parts:[{name:"y",data:t},{name:"p",data:n},{name:"q",data:r},{name:"g",data:i}]};return new c(o)}function readPkcs1ECDSAPublic(e){e.readSequence();var t=e.readOID();r.strictEqual(t,"1.2.840.10045.2.1","must be ecPublicKey");var n=e.readOID();var u;var l=Object.keys(a.curves);for(var f=0;f<l.length;++f){var p=l[f];var d=a.curves[p];if(d.pkcs8oid===n){u=p;break}}r.string(u,"a known ECDSA named curve");var h=e.readString(i.Ber.BitString,true);h=s.ecNormalize(h);var m={type:"ecdsa",parts:[{name:"curve",data:o.from(u)},{name:"Q",data:h}]};return new c(m)}function readPkcs1ECDSAPrivate(e){var t=readMPInt(e,"version");r.strictEqual(t.readUInt8(0),1);var n=e.readString(i.Ber.OctetString,true);e.readSequence(160);var a=p(e);r.string(a,"a known elliptic curve");e.readSequence(161);var c=e.readString(i.Ber.BitString,true);c=s.ecNormalize(c);var l={type:"ecdsa",parts:[{name:"curve",data:o.from(a)},{name:"Q",data:c},{name:"d",data:n}]};return new u(l)}function writePkcs1(e,t){e.startSequence();switch(t.type){case"rsa":if(u.isPrivateKey(t))writePkcs1RSAPrivate(e,t);else writePkcs1RSAPublic(e,t);break;case"dsa":if(u.isPrivateKey(t))writePkcs1DSAPrivate(e,t);else writePkcs1DSAPublic(e,t);break;case"ecdsa":if(u.isPrivateKey(t))writePkcs1ECDSAPrivate(e,t);else writePkcs1ECDSAPublic(e,t);break;case"ed25519":if(u.isPrivateKey(t))writePkcs1EdDSAPrivate(e,t);else writePkcs1EdDSAPublic(e,t);break;default:throw new Error("Unknown key algo: "+t.type)}e.endSequence()}function writePkcs1RSAPublic(e,t){e.writeBuffer(t.part.n.data,i.Ber.Integer);e.writeBuffer(t.part.e.data,i.Ber.Integer)}function writePkcs1RSAPrivate(e,t){var n=o.from([0]);e.writeBuffer(n,i.Ber.Integer);e.writeBuffer(t.part.n.data,i.Ber.Integer);e.writeBuffer(t.part.e.data,i.Ber.Integer);e.writeBuffer(t.part.d.data,i.Ber.Integer);e.writeBuffer(t.part.p.data,i.Ber.Integer);e.writeBuffer(t.part.q.data,i.Ber.Integer);if(!t.part.dmodp||!t.part.dmodq)s.addRSAMissing(t);e.writeBuffer(t.part.dmodp.data,i.Ber.Integer);e.writeBuffer(t.part.dmodq.data,i.Ber.Integer);e.writeBuffer(t.part.iqmp.data,i.Ber.Integer)}function writePkcs1DSAPrivate(e,t){var n=o.from([0]);e.writeBuffer(n,i.Ber.Integer);e.writeBuffer(t.part.p.data,i.Ber.Integer);e.writeBuffer(t.part.q.data,i.Ber.Integer);e.writeBuffer(t.part.g.data,i.Ber.Integer);e.writeBuffer(t.part.y.data,i.Ber.Integer);e.writeBuffer(t.part.x.data,i.Ber.Integer)}function writePkcs1DSAPublic(e,t){e.writeBuffer(t.part.y.data,i.Ber.Integer);e.writeBuffer(t.part.p.data,i.Ber.Integer);e.writeBuffer(t.part.q.data,i.Ber.Integer);e.writeBuffer(t.part.g.data,i.Ber.Integer)}function writePkcs1ECDSAPublic(e,t){e.startSequence();e.writeOID("1.2.840.10045.2.1");var n=t.part.curve.data.toString();var o=a.curves[n].pkcs8oid;r.string(o,"a known ECDSA named curve");e.writeOID(o);e.endSequence();var c=s.ecNormalize(t.part.Q.data,true);e.writeBuffer(c,i.Ber.BitString)}function writePkcs1ECDSAPrivate(e,t){var n=o.from([1]);e.writeBuffer(n,i.Ber.Integer);e.writeBuffer(t.part.d.data,i.Ber.OctetString);e.startSequence(160);var c=t.part.curve.data.toString();var u=a.curves[c].pkcs8oid;r.string(u,"a known ECDSA named curve");e.writeOID(u);e.endSequence();e.startSequence(161);var l=s.ecNormalize(t.part.Q.data,true);e.writeBuffer(l,i.Ber.BitString);e.endSequence()}function writePkcs1EdDSAPrivate(e,t){var n=o.from([1]);e.writeBuffer(n,i.Ber.Integer);e.writeBuffer(t.part.k.data,i.Ber.OctetString);e.startSequence(160);e.writeOID("1.3.101.112");e.endSequence();e.startSequence(161);s.writeBitString(e,t.part.A.data);e.endSequence()}function writePkcs1EdDSAPublic(e,t){throw new Error("Public keys are not supported for EdDSA PKCS#1")}},2296:function(e,t,n){t=e.exports=n(6677);t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.storage="undefined"!=typeof chrome&&"undefined"!=typeof chrome.storage?chrome.storage.local:localstorage();t.colors=["lightseagreen","forestgreen","goldenrod","dodgerblue","darkorchid","crimson"];function useColors(){if(typeof window!=="undefined"&&window.process&&window.process.type==="renderer"){return true}return typeof document!=="undefined"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window!=="undefined"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}t.formatters.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}};function formatArgs(e){var n=this.useColors;e[0]=(n?"%c":"")+this.namespace+(n?" %c":" ")+e[0]+(n?"%c ":" ")+"+"+t.humanize(this.diff);if(!n)return;var r="color: "+this.color;e.splice(1,0,r,"color: inherit");var i=0;var o=0;e[0].replace(/%[a-zA-Z%]/g,function(e){if("%%"===e)return;i++;if("%c"===e){o=i}});e.splice(o,0,r)}function log(){return"object"===typeof console&&console.log&&Function.prototype.apply.call(console.log,console,arguments)}function save(e){try{if(null==e){t.storage.removeItem("debug")}else{t.storage.debug=e}}catch(e){}}function load(){var e;try{e=t.storage.debug}catch(e){}if(!e&&typeof process!=="undefined"&&"env"in process){e=process.env.DEBUG}return e}t.enable(load());function localstorage(){try{return window.localStorage}catch(e){}}},2297:function(e,t,n){"use strict";const r=n(5897);const i=n(4316);const o=n(8094);const a=/^win/i.test(process.platform);function _normalizeOptions(e,t){e=e||{};if(typeof e!=="object"){e={isolated:e}}e.isolated=e.isolated===undefined||e.isolated===null?t:e.isolated;if(typeof e.isolated!=="boolean"){throw new TypeError(`Expected boolean for "isolated" argument, got ${typeof e.isolated}`)}return e}const s=(e,t)=>{const n={};n.cache=((n={isolated:null})=>{n=_normalizeOptions(n,t);return r.join(o.cache(),n.isolated?e:"")});n.config=((n={isolated:null})=>{n=_normalizeOptions(n,t);return r.join(o.config(),n.isolated?e:"")});n.data=((n={isolated:null})=>{n=_normalizeOptions(n,t);return r.join(o.data(),n.isolated?e:"")});n.runtime=((n={isolated:null})=>{n=_normalizeOptions(n,t);return o.runtime()?r.join(o.runtime(),n.isolated?e:""):undefined});n.state=((n={isolated:null})=>{n=_normalizeOptions(n,t);return r.join(o.state(),n.isolated?e:"")});n.configDirs=((n={isolated:null})=>{n=_normalizeOptions(n,t);return o.configDirs().map(t=>r.join(t,n.isolated?e:""))});n.dataDirs=((n={isolated:null})=>{n=_normalizeOptions(n,t);return o.dataDirs().map(t=>r.join(t,n.isolated?e:""))});return n};const c=(e,t)=>{const{env:n}=process;const a=i.homedir();const s=i.tmpdir();const c=n.APPDATA||r.join(a||s,"AppData","Roaming");const u=n.LOCALAPPDATA||r.join(a||s,"AppData","Local");const l={};l.cache=((i={isolated:null})=>{i=_normalizeOptions(i,t);return!i.isolated||n.XDG_CACHE_HOME?r.join(o.cache(),i.isolated?e:""):r.join(u,i.isolated?e:"","Cache")});l.config=((i={isolated:null})=>{i=_normalizeOptions(i,t);const a=!i.isolated||n.XDG_CONFIG_HOME?r.join(o.config(),i.isolated?e:""):r.join(c,i.isolated?e:"","Config");return a});l.data=((i={isolated:null})=>{i=_normalizeOptions(i,t);const a=!i.isolated||n.XDG_DATA_HOME?r.join(o.data(),i.isolated?e:""):r.join(c,i.isolated?e:"","Data");return a});l.runtime=((n={isolated:null})=>{n=_normalizeOptions(n,t);return o.runtime()?r.join(o.runtime(),n.isolated?e:""):undefined});l.state=((i={isolated:null})=>{i=_normalizeOptions(i,t);return!i.isolated||n.XDG_STATE_HOME?r.join(o.state(),i.isolated?e:""):r.join(u,i.isolated?e:"","State")});l.configDirs=((i={isolated:null})=>{i=_normalizeOptions(i,t);const o=[l.config(i)];if(n.XDG_CONFIG_DIRS){o.push(...n.XDG_CONFIG_DIRS.split(r.delimiter).map(t=>r.join(t,i.isolated?e:"")))}return o});l.dataDirs=((i={isolated:null})=>{i=_normalizeOptions(i,t);const o=[l.data(i)];if(n.XDG_DATA_DIRS){o.push(...n.XDG_DATA_DIRS.split(r.delimiter).map(t=>r.join(t,i.isolated?e:"")))}return o});return l};class _XDGAppPaths{constructor(e={name:null,suffix:null,isolated:true}){const t=function(e={name:null,suffix:null,isolated:true}){return new _XDGAppPaths(e)};this._fn=t;e=e||{};if(typeof e!=="object"){e={name:e}}let n=e.name||"";if(typeof n!=="string"){throw new TypeError(`Expected string for "name" argument, got ${typeof n}`)}const i=e.suffix||"";if(typeof i!=="string"){throw new TypeError(`Expected string for "suffix" argument, got ${typeof i}`)}const o=e.isolated===undefined||e.isolated===null?true:e.isolated;if(typeof o!=="boolean"){throw new TypeError(`Expected boolean for "isolated" argument, got ${typeof o}`)}if(!n){n=r.parse(process.pkg?process.execPath:require.main?require.main.filename:process.argv[0]).name}if(i){n+=i}this._fn.$name=(()=>n);this._fn.$isolated=(()=>o);const u=a?c(n,o):s(n,o);Object.keys(u).forEach(e=>{this._fn[e]=u[e]});return this._fn}}e.exports=new _XDGAppPaths},2307:function(e){e.exports=require("https")},2316:function(e){e.exports=function isExtglob(e){if(typeof e!=="string"||e===""){return false}var t;while(t=/(\\).|([@?!+*]\(.*\))/g.exec(e)){if(t[2])return true;e=e.slice(t.index+t[0].length)}return false}},2320:function(e,t,n){var r=n(3930);var i=n(3062).Buffer;var o=n(4337);var a=n(3251);var s=a.newInvalidAsn1Error;var c={size:1024,growthFactor:8};function merge(e,t){r.ok(e);r.equal(typeof e,"object");r.ok(t);r.equal(typeof t,"object");var n=Object.getOwnPropertyNames(e);n.forEach(function(n){if(t[n])return;var r=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,r)});return t}function Writer(e){e=merge(c,e||{});this._buf=i.alloc(e.size||1024);this._size=this._buf.length;this._offset=0;this._options=e;this._seq=[]}Object.defineProperty(Writer.prototype,"buffer",{get:function(){if(this._seq.length)throw s(this._seq.length+" unended sequence(s)");return this._buf.slice(0,this._offset)}});Writer.prototype.writeByte=function(e){if(typeof e!=="number")throw new TypeError("argument must be a Number");this._ensure(1);this._buf[this._offset++]=e};Writer.prototype.writeInt=function(e,t){if(typeof e!=="number")throw new TypeError("argument must be a Number");if(typeof t!=="number")t=o.Integer;var n=4;while(((e&4286578688)===0||(e&4286578688)===4286578688>>0)&&n>1){n--;e<<=8}if(n>4)throw s("BER ints cannot be > 0xffffffff");this._ensure(2+n);this._buf[this._offset++]=t;this._buf[this._offset++]=n;while(n-- >0){this._buf[this._offset++]=(e&4278190080)>>>24;e<<=8}};Writer.prototype.writeNull=function(){this.writeByte(o.Null);this.writeByte(0)};Writer.prototype.writeEnumeration=function(e,t){if(typeof e!=="number")throw new TypeError("argument must be a Number");if(typeof t!=="number")t=o.Enumeration;return this.writeInt(e,t)};Writer.prototype.writeBoolean=function(e,t){if(typeof e!=="boolean")throw new TypeError("argument must be a Boolean");if(typeof t!=="number")t=o.Boolean;this._ensure(3);this._buf[this._offset++]=t;this._buf[this._offset++]=1;this._buf[this._offset++]=e?255:0};Writer.prototype.writeString=function(e,t){if(typeof e!=="string")throw new TypeError("argument must be a string (was: "+typeof e+")");if(typeof t!=="number")t=o.OctetString;var n=i.byteLength(e);this.writeByte(t);this.writeLength(n);if(n){this._ensure(n);this._buf.write(e,this._offset);this._offset+=n}};Writer.prototype.writeBuffer=function(e,t){if(typeof t!=="number")throw new TypeError("tag must be a number");if(!i.isBuffer(e))throw new TypeError("argument must be a buffer");this.writeByte(t);this.writeLength(e.length);this._ensure(e.length);e.copy(this._buf,this._offset,0,e.length);this._offset+=e.length};Writer.prototype.writeStringArray=function(e){if(!e instanceof Array)throw new TypeError("argument must be an Array[String]");var t=this;e.forEach(function(e){t.writeString(e)})};Writer.prototype.writeOID=function(e,t){if(typeof e!=="string")throw new TypeError("argument must be a string");if(typeof t!=="number")t=o.OID;if(!/^([0-9]+\.){3,}[0-9]+$/.test(e))throw new Error("argument is not a valid OID string");function encodeOctet(e,t){if(t<128){e.push(t)}else if(t<16384){e.push(t>>>7|128);e.push(t&127)}else if(t<2097152){e.push(t>>>14|128);e.push((t>>>7|128)&255);e.push(t&127)}else if(t<268435456){e.push(t>>>21|128);e.push((t>>>14|128)&255);e.push((t>>>7|128)&255);e.push(t&127)}else{e.push((t>>>28|128)&255);e.push((t>>>21|128)&255);e.push((t>>>14|128)&255);e.push((t>>>7|128)&255);e.push(t&127)}}var n=e.split(".");var r=[];r.push(parseInt(n[0],10)*40+parseInt(n[1],10));n.slice(2).forEach(function(e){encodeOctet(r,parseInt(e,10))});var i=this;this._ensure(2+r.length);this.writeByte(t);this.writeLength(r.length);r.forEach(function(e){i.writeByte(e)})};Writer.prototype.writeLength=function(e){if(typeof e!=="number")throw new TypeError("argument must be a Number");this._ensure(4);if(e<=127){this._buf[this._offset++]=e}else if(e<=255){this._buf[this._offset++]=129;this._buf[this._offset++]=e}else if(e<=65535){this._buf[this._offset++]=130;this._buf[this._offset++]=e>>8;this._buf[this._offset++]=e}else if(e<=16777215){this._buf[this._offset++]=131;this._buf[this._offset++]=e>>16;this._buf[this._offset++]=e>>8;this._buf[this._offset++]=e}else{throw s("Length too long (> 4 bytes)")}};Writer.prototype.startSequence=function(e){if(typeof e!=="number")e=o.Sequence|o.Constructor;this.writeByte(e);this._seq.push(this._offset);this._ensure(3);this._offset+=3};Writer.prototype.endSequence=function(){var e=this._seq.pop();var t=e+3;var n=this._offset-t;if(n<=127){this._shift(t,n,-2);this._buf[e]=n}else if(n<=255){this._shift(t,n,-1);this._buf[e]=129;this._buf[e+1]=n}else if(n<=65535){this._buf[e]=130;this._buf[e+1]=n>>8;this._buf[e+2]=n}else if(n<=16777215){this._shift(t,n,1);this._buf[e]=131;this._buf[e+1]=n>>16;this._buf[e+2]=n>>8;this._buf[e+3]=n}else{throw s("Sequence too long")}};Writer.prototype._shift=function(e,t,n){r.ok(e!==undefined);r.ok(t!==undefined);r.ok(n);this._buf.copy(this._buf,e+n,e,e+t);this._offset+=n};Writer.prototype._ensure=function(e){r.ok(e);if(this._size-this._offset<e){var t=this._size*this._options.growthFactor;if(t-this._offset<e)t+=e;var n=i.alloc(t);this._buf.copy(n,0,0,this._offset);this._buf=n;this._size=t}};e.exports=Writer},2325:function(e,t,n){var r=n(3936);var i=n(3492);t.parse=function parse(e){return new r(e)};t.stringify=function stringify(){return new i}},2342:function(e,t,n){var r=n(9423);var i=r.Buffer;function copyProps(e,t){for(var n in e){t[n]=e[n]}}if(i.from&&i.alloc&&i.allocUnsafe&&i.allocUnsafeSlow){e.exports=r}else{copyProps(r,t);t.Buffer=SafeBuffer}function SafeBuffer(e,t,n){return i(e,t,n)}copyProps(i,SafeBuffer);SafeBuffer.from=function(e,t,n){if(typeof e==="number"){throw new TypeError("Argument must not be a number")}return i(e,t,n)};SafeBuffer.alloc=function(e,t,n){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}var r=i(e);if(t!==undefined){if(typeof n==="string"){r.fill(t,n)}else{r.fill(t)}}else{r.fill(0)}return r};SafeBuffer.allocUnsafe=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return i(e)};SafeBuffer.allocUnsafeSlow=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return r.SlowBuffer(e)}},2346:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);t["default"]=(e=>i.a.gray(`(${e})`))},2347:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});class DeploymentError extends Error{constructor(e){super(e.message);this.code=e.code;this.name="DeploymentError"}}t.DeploymentError=DeploymentError},2348:function(e,t,n){var r=n(4219),i=n(2307),o=n(730),a=n(6881),s=n(5095);o=Object.keys(o).map(function(e){return o[e]});var c={http:r,https:i};e.exports={deleteLength:function deleteLength(e,t,n){if((e.method==="DELETE"||e.method==="OPTIONS")&&!e.headers["content-length"]){e.headers["content-length"]="0";delete e.headers["transfer-encoding"]}},timeout:function timeout(e,t,n){if(n.timeout){e.socket.setTimeout(n.timeout)}},XHeaders:function XHeaders(e,t,n){if(!n.xfwd)return;var r=e.isSpdy||a.hasEncryptedConnection(e);var i={for:e.connection.remoteAddress||e.socket.remoteAddress,port:a.getPort(e),proto:r?"https":"http"};["for","port","proto"].forEach(function(t){e.headers["x-forwarded-"+t]=(e.headers["x-forwarded-"+t]||"")+(e.headers["x-forwarded-"+t]?",":"")+i[t]});e.headers["x-forwarded-host"]=e.headers["host"]||""},stream:function stream(e,t,n,r,i,u){i.emit("start",e,t,n.target||n.forward);var l=n.followRedirects?s:c;var f=l.http;var p=l.https;if(n.forward){var d=(n.forward.protocol==="https:"?p:f).request(a.setupOutgoing(n.ssl||{},n,e,"forward"));var h=createErrorHandler(d,n.forward);e.on("error",h);d.on("error",h);(n.buffer||e).pipe(d);if(!n.target){return t.end()}}var m=(n.target.protocol==="https:"?p:f).request(a.setupOutgoing(n.ssl||{},n,e));m.on("socket",function(r){if(i){i.emit("proxyReq",m,e,t,n)}});if(n.proxyTimeout){m.setTimeout(n.proxyTimeout,function(){m.abort()})}e.on("aborted",function(){m.abort()});var v=createErrorHandler(m,n.target);e.on("error",v);m.on("error",v);function createErrorHandler(n,r){return function proxyError(o){if(e.socket.destroyed&&o.code==="ECONNRESET"){i.emit("econnreset",o,e,t,r);return n.abort()}if(u){u(o,e,t,r)}else{i.emit("error",o,e,t,r)}}}(n.buffer||e).pipe(m);m.on("response",function(r){if(i){i.emit("proxyRes",r,e,t)}if(!t.headersSent&&!n.selfHandleResponse){for(var a=0;a<o.length;a++){if(o[a](e,t,r,n)){break}}}if(!t.finished){r.on("end",function(){if(i)i.emit("end",e,t,r)});if(!n.selfHandleResponse)r.pipe(t)}else{if(i)i.emit("end",e,t,r)}})}}},2349:function(e,t,n){"use strict";const r=n(1721);const i=n(9097);const o=n(1417);e.exports={createFile:r.createFile,createFileSync:r.createFileSync,ensureFile:r.createFile,ensureFileSync:r.createFileSync,createLink:i.createLink,createLinkSync:i.createLinkSync,ensureLink:i.createLink,ensureLinkSync:i.createLinkSync,createSymlink:o.createSymlink,createSymlinkSync:o.createSymlinkSync,ensureSymlink:o.createSymlink,ensureSymlinkSync:o.createSymlinkSync}},2350:function(e,t,n){var r=n(2984);function sha(e,t,n){return r.createHmac(n,e).update(t).digest("base64")}function rsa(e,t){return r.createSign("RSA-SHA1").update(t).sign(e,"base64")}function rfc3986(e){return encodeURIComponent(e).replace(/!/g,"%21").replace(/\*/g,"%2A").replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/'/g,"%27")}function map(e){var t,n,r=[];for(t in e){n=e[t];if(Array.isArray(n))for(var i=0;i<n.length;i++)r.push([t,n[i]]);else if(typeof n==="object")for(var o in n)r.push([t+"["+o+"]",n[o]]);else r.push([t,n])}return r}function compare(e,t){return e>t?1:e<t?-1:0}function generateBase(e,t,n){var r=map(n).map(function(e){return[rfc3986(e[0]),rfc3986(e[1]||"")]}).sort(function(e,t){return compare(e[0],t[0])||compare(e[1],t[1])}).map(function(e){return e.join("=")}).join("&");var i=[rfc3986(e?e.toUpperCase():"GET"),rfc3986(t),rfc3986(r)].join("&");return i}function hmacsign(e,t,n,r,i){var o=generateBase(e,t,n);var a=[r||"",i||""].map(rfc3986).join("&");return sha(a,o,"sha1")}function hmacsign256(e,t,n,r,i){var o=generateBase(e,t,n);var a=[r||"",i||""].map(rfc3986).join("&");return sha(a,o,"sha256")}function rsasign(e,t,n,r,i){var o=generateBase(e,t,n);var a=r||"";return rsa(a,o)}function plaintext(e,t){var n=[e||"",t||""].map(rfc3986).join("&");return n}function sign(e,t,n,r,i,o){var a;var s=1;switch(e){case"RSA-SHA1":a=rsasign;break;case"HMAC-SHA1":a=hmacsign;break;case"HMAC-SHA256":a=hmacsign256;break;case"PLAINTEXT":a=plaintext;s=4;break;default:throw new Error("Signature method not supported: "+e)}return a.apply(null,[].slice.call(arguments,s))}t.hmacsign=hmacsign;t.hmacsign256=hmacsign256;t.rsasign=rsasign;t.plaintext=plaintext;t.sign=sign;t.rfc3986=rfc3986;t.generateBase=generateBase},2368:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(5242));const s=i(n(5580));const c=i(n(8742));const u=i(n(8501));const l=i(n(4999));const f=i(n(7022));const p=i(n(2418));const d=i(n(8391));const h=i(n(6720));const m=i(n(3357));const v=i(n(5996));const g=i(n(5819));const y=i(n(1654));const b=()=>{console.log(`\n ${o.default.bold(`${l.default} now domains`)} [options] <command>\n\n ${o.default.dim("Commands:")}\n\n ls Show all domains in a list\n inspect [name] Displays information related to a domain\n add [name] Add a new domain that you already own\n rm [name] Remove a domain\n buy [name] Buy a domain that you don't yet own\n move [name] [destination] Move a domain to another user or team.\n transfer-in [name] Transfer in a domain to Zeit\n verify [name] Run a verification for a domain\n\n ${o.default.dim("Options:")}\n\n -h, --help Output usage information\n -d, --debug Debug mode [off]\n -A ${o.default.bold.underline("FILE")}, --local-config=${o.default.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${o.default.bold.underline("DIR")}, --global-config=${o.default.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -t ${o.default.bold.underline("TOKEN")}, --token=${o.default.bold.underline("TOKEN")} Login token\n -S, --scope Set a custom scope\n\n ${o.default.dim("Examples:")}\n\n ${o.default.gray("")} Add a domain that you already own\n\n ${o.default.cyan(`$ now domains add ${o.default.underline("domain-name.com")}`)}\n\n Make sure the domain's DNS nameservers are at least 2 of the\n ones listed on ${o.default.underline("https://zeit.world")}.\n\n ${o.default.yellow("NOTE:")} Running ${o.default.dim("`now alias`")} will automatically register your domain\n if it's configured with these nameservers (no need to ${o.default.dim("`domain add`")}).\n`)};const w={add:["add"],buy:["buy"],inspect:["inspect"],ls:["ls","list"],move:["move"],rm:["rm","remove"],transferIn:["transfer-in"],verify:["verify"]};function main(e){return r(this,void 0,void 0,function*(){let t;try{t=s.default(e.argv.slice(2),{"--cdn":Boolean,"--code":String,"--no-cdn":Boolean,"--yes":Boolean})}catch(e){u.default(e);return 1}if(t["--help"]){b();return 2}const n=a.default({debug:t["--debug"]});const{subcommand:r,args:i}=c.default(t._.slice(1),w);switch(r){case"add":return f.default(e,t,i,n);case"inspect":return h.default(e,t,i,n);case"move":return y.default(e,t,i,n);case"buy":return p.default(e,t,i,n);case"rm":return v.default(e,t,i,n);case"transferIn":return d.default(e,t,i,n);case"verify":return g.default(e,t,i,n);default:return m.default(e,t,i,n)}})}t.default=main},2371:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(9726);var o=n(1390);t.installedIntegrations=[];function getIntegrationsToSetup(e){var t=e.defaultIntegrations&&r.__spread(e.defaultIntegrations)||[];var n=e.integrations;var i=[];if(Array.isArray(n)){var o=n.map(function(e){return e.name});var a=[];t.forEach(function(e){if(o.indexOf(e.name)===-1&&a.indexOf(e.name)===-1){i.push(e);a.push(e.name)}});n.forEach(function(e){if(a.indexOf(e.name)===-1){i.push(e);a.push(e.name)}})}else if(typeof n==="function"){i=n(t);i=Array.isArray(i)?i:[i]}else{return r.__spread(t)}return i}t.getIntegrationsToSetup=getIntegrationsToSetup;function setupIntegration(e){if(t.installedIntegrations.indexOf(e.name)!==-1){return}e.setupOnce(i.addGlobalEventProcessor,i.getCurrentHub);t.installedIntegrations.push(e.name);o.logger.log("Integration installed: "+e.name)}t.setupIntegration=setupIntegration;function setupIntegrations(e){var t={};getIntegrationsToSetup(e).forEach(function(e){t[e.name]=e;setupIntegration(e)});return t}t.setupIntegrations=setupIntegrations},2385:function(e,t,n){"use strict";n.r(t);n.d(t,"handleError",function(){return a.a});n.d(t,"error",function(){return s});n.d(t,"responseError",function(){return responseError});n.d(t,"responseErrorMessage",function(){return responseErrorMessage});var r=n(541);var i=n.n(r);var o=n(8501);var a=n.n(o);const s=i.a;async function responseError(e,t=null,n={}){let r;let i;if(e.status>=400&&e.status<500){let t;try{t=await e.json()}catch(o){t=n}i=t.error||t.err||{};r=i.message}if(r==null){r=t===null?"Response Error":t}const o=new Error(`${r} (${e.status})`);o.status=e.status;o.serverMessage=r;if(i){for(const e of Object.keys(i)){if(e!=="message"){o[e]=i[e]}}}if(e.status===429){const t=e.headers.get("Retry-After");if(t){o.retryAfter=parseInt(t,10)}}return o}async function responseErrorMessage(e,t=null){let n;if(e.status>=400&&e.status<500){let t;try{t=await e.json()}catch(e){t={}}n=(t.error||t.err||{}).message}if(n==null){n=t===null?"Response Error":t}return`${n} (${e.status})`}},2395:function(e,t,n){var r=n(9521);var i=n(4733);var o=n(649);var a=n(1164);var s=n(8394);var c=n(5951).Readable;var u=n(5951).Writable;var l=n(552).StringDecoder;var f=n(2917);var p=parseInt("755",8);var d=parseInt("644",8);var h=a(1024);var m=function(){};var v=function(e,t){t&=511;if(t)e.push(h.slice(0,512-t))};function modeToType(e){switch(e&r.S_IFMT){case r.S_IFBLK:return"block-device";case r.S_IFCHR:return"character-device";case r.S_IFDIR:return"directory";case r.S_IFIFO:return"fifo";case r.S_IFLNK:return"symlink"}return"file"}var g=function(e){u.call(this);this.written=0;this._to=e;this._destroyed=false};o.inherits(g,u);g.prototype._write=function(e,t,n){this.written+=e.length;if(this._to.push(e))return n();this._to._drain=n};g.prototype.destroy=function(){if(this._destroyed)return;this._destroyed=true;this.emit("close")};var y=function(){u.call(this);this.linkname="";this._decoder=new l("utf-8");this._destroyed=false};o.inherits(y,u);y.prototype._write=function(e,t,n){this.linkname+=this._decoder.write(e);n()};y.prototype.destroy=function(){if(this._destroyed)return;this._destroyed=true;this.emit("close")};var b=function(){u.call(this);this._destroyed=false};o.inherits(b,u);b.prototype._write=function(e,t,n){n(new Error("No body allowed for this entry"))};b.prototype.destroy=function(){if(this._destroyed)return;this._destroyed=true;this.emit("close")};var w=function(e){if(!(this instanceof w))return new w(e);c.call(this,e);this._drain=m;this._finalized=false;this._finalizing=false;this._destroyed=false;this._stream=null};o.inherits(w,c);w.prototype.entry=function(e,t,n){if(this._stream)throw new Error("already piping an entry");if(this._finalized||this._destroyed)return;if(typeof t==="function"){n=t;t=null}if(!n)n=m;var r=this;if(!e.size||e.type==="symlink")e.size=0;if(!e.type)e.type=modeToType(e.mode);if(!e.mode)e.mode=e.type==="directory"?p:d;if(!e.uid)e.uid=0;if(!e.gid)e.gid=0;if(!e.mtime)e.mtime=new Date;if(typeof t==="string")t=s(t);if(Buffer.isBuffer(t)){e.size=t.length;this._encode(e);this.push(t);v(r,e.size);process.nextTick(n);return new b}if(e.type==="symlink"&&!e.linkname){var o=new y;i(o,function(t){if(t){r.destroy();return n(t)}e.linkname=o.linkname;r._encode(e);n()});return o}this._encode(e);if(e.type!=="file"&&e.type!=="contiguous-file"){process.nextTick(n);return new b}var a=new g(this);this._stream=a;i(a,function(t){r._stream=null;if(t){r.destroy();return n(t)}if(a.written!==e.size){r.destroy();return n(new Error("size mismatch"))}v(r,e.size);if(r._finalizing)r.finalize();n()});return a};w.prototype.finalize=function(){if(this._stream){this._finalizing=true;return}if(this._finalized)return;this._finalized=true;this.push(h);this.push(null)};w.prototype.destroy=function(e){if(this._destroyed)return;this._destroyed=true;if(e)this.emit("error",e);this.emit("close");if(this._stream&&this._stream.destroy)this._stream.destroy()};w.prototype._encode=function(e){if(!e.pax){var t=f.encode(e);if(t){this.push(t);return}}this._encodePax(e)};w.prototype._encodePax=function(e){var t=f.encodePax({name:e.name,linkname:e.linkname,pax:e.pax});var n={name:"PaxHeader",mode:e.mode,uid:e.uid,gid:e.gid,size:t.length,mtime:e.mtime,type:"pax-header",linkname:e.linkname&&"PaxHeader",uname:e.uname,gname:e.gname,devmajor:e.devmajor,devminor:e.devminor};this.push(f.encode(n));this.push(t);v(this,t.length);n.size=e.size;n.type=e.type;this.push(f.encode(n))};w.prototype._read=function(e){var t=this._drain;this._drain=m;t()};e.exports=w},2399:function(e,t,n){"use strict";var r=n(6884);e.exports=function(e,t){t=t||{};return new Promise(function(n,i){var o=r.operation(t);var a=function bail(e){return i(e||new Error("Aborted"))};var s=function onError(e){if(e.bail){return a(e)}if(!o.retry(e)){i(o.mainError())}else if(t.onRetry){t.onRetry(e)}};o.attempt(function(t){var r=void 0;try{r=e(a,t)}catch(e){return s(e)}Promise.resolve(r).then(n,s)})})}},2402:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return main});var r=n(9544);var i=n.n(r);var o=n(2385);var a=n(5242);var s=n.n(a);var c=n(5580);var u=n.n(c);var l=n(8742);var f=n.n(l);var p=n(4999);var d=n.n(p);var h=n(7603);var m=n(3257);var v=n(9281);var g=n.n(v);const y=()=>{console.log(`\n ${i.a.bold(`${d.a} now alias`)} [options] <command>\n\n ${i.a.dim("Commands:")}\n\n ls [app] Show all aliases (or per app name)\n set <deployment> <alias> Create a new alias\n rm <alias> Remove an alias using its hostname\n\n ${i.a.dim("Options:")}\n\n -h, --help Output usage information\n -A ${i.a.bold.underline("FILE")}, --local-config=${i.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${i.a.bold.underline("DIR")}, --global-config=${i.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -r ${i.a.bold.underline("RULES_FILE")}, --rules=${i.a.bold.underline("RULES_FILE")} Rules file\n -d, --debug Debug mode [off]\n -t ${i.a.bold.underline("TOKEN")}, --token=${i.a.bold.underline("TOKEN")} Login token\n -S, --scope Set a custom scope\n -n, --no-verify Don't wait until instance count meets the previous alias constraints\n\n ${i.a.dim("Examples:")}\n\n ${i.a.gray("")} Add a new alias to ${i.a.underline("my-api.now.sh")}\n\n ${i.a.cyan(`$ now alias set ${i.a.underline("api-ownv3nc9f8.now.sh")} ${i.a.underline("my-api.now.sh")}`)}\n\n Custom domains work as alias targets\n\n ${i.a.cyan(`$ now alias set ${i.a.underline("api-ownv3nc9f8.now.sh")} ${i.a.underline("my-api.com")}`)}\n\n ${i.a.dim("")} The subcommand ${i.a.dim("`set`")} is the default and can be skipped.\n ${i.a.dim("")} ${i.a.dim("Protocols")} in the URLs are unneeded and ignored.\n\n ${i.a.gray("")} Add and modify path based aliases for ${i.a.underline("zeit.ninja")}\n\n ${i.a.cyan(`$ now alias ${i.a.underline("zeit.ninja")} -r ${i.a.underline("rules.json")}`)}\n\n Export effective routing rules\n\n ${i.a.cyan(`$ now alias ls aliasId --json > ${i.a.underline("rules.json")}`)}\n`)};const b={default:"set",ls:["ls","list"],rm:["rm","remove"],set:["set"]};async function main(e){let t;try{t=u()(e.argv.slice(2),{"--json":Boolean,"--no-verify":Boolean,"--rules":String,"--yes":Boolean,"-n":"--no-verify","-r":"--rules","-y":"--yes"})}catch(e){Object(o["handleError"])(e);return 1}if(t["--help"]){y();return 2}const n=s()({debug:t["--debug"]});const{subcommand:r,args:i}=f()(t._.slice(1),b);switch(r){case"ls":return Object(h["default"])(e,t,i,n);case"rm":return Object(m["default"])(e,t,i,n);default:return g()(e,t,i,n)}}},2415:function(e,t,n){"use strict";var r=n(216);var i={configurable:"boolean",enumerable:"boolean",writable:"boolean"};function isDataDescriptor(e,t){if(r(e)!=="object"){return false}if(typeof t==="string"){var n=Object.getOwnPropertyDescriptor(e,t);return typeof n!=="undefined"}if(!("value"in e)&&!("writable"in e)){return false}for(var o in e){if(o==="value")continue;if(!i.hasOwnProperty(o)){continue}if(r(e[o])===i[o]){continue}if(typeof e[o]!=="undefined"){return false}}return true}e.exports=isDataDescriptor},2417:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);var o=n(7705);var a=n.n(o);var s=n(7930);var c=n.n(s);var u=n(2122);const l=12;const f=8;const p=5;const d=5;const h=e=>a()(e.replace("_"," "));const m=e=>{const t=[];const n=e.map(e=>b(e.entrypoint).split("/"));const r=n.reduce((e,t)=>e.length<t.length?e.length:t.length);for(let e=0;e<=r;e++){const r=n[0][e];if(n.every(t=>t[e]===r)){t.push(r);continue}break}return t.join("/")||"/"};const v=(e,t,n)=>{const{entrypoint:r,readyState:o,id:a,hasOutput:s}=e;const c=h(o).padEnd(l+f);const p=typeof t[a]==="string"?t[a]:"";let d=i.a.grey;let m=i.a.cyan;if(Object(u["isReady"])({readyState:o})){d=(e=>e)}else if(Object(u["isFailed"])({readyState:o})){d=i.a.red;m=i.a.red}const v=r.padEnd(n+f);const g=s?"┌":"╶";return`${i.a.grey(g)} ${m(v)}${d(c)}${p}`};const g=(e,t,n,r,o=false)=>{const{id:a}=t[0];const s=e.padEnd(r+f);const c=typeof n[a]==="string"?n[a]:"";const p=o===false&&t.some(e=>e.hasOutput)?"┌":"╶";const d={READY:0,ERROR:0,BUILDING:0};t.map(({readyState:e})=>{d[e]=d[e]?d[e]+1:1;return e});let m=Object.keys(d).map(e=>{const t=d[e];const n=h(e);if(!t){return null}return`${t>9?"9+":t} ${n}`}).filter(e=>e).join(", ");m=`${m} `.padEnd(l+f);let v=i.a.cyan;let g=i.a.grey;if(t.every(u["isReady"])){g=(e=>e)}else if(t.every(u["isFailed"])){g=i.a.red;v=i.a.red}if(o){v=i.a.grey}return`${i.a.grey(p)} ${v(s)}${g(m)}${c}`};const y=e=>{const{type:t,path:n,readyState:r,size:o,isLast:a,lambda:s}=e;const l=t==="lambda"?"λ ":"";const f=o?` ${i.a.grey(`(${c()(o)})`)}`:"";let p=i.a.grey;let d="";if(Object(u["isReady"])({readyState:r})){p=(e=>e)}else if(Object(u["isFailed"])({readyState:r})){p=i.a.red}if(s){const{deployedTo:e}=s;if(e&&e.length>0){d=` ${i.a.grey(`[${e.join(", ")}]`)}`}}const h=a?"└──":"├──";const m=l+n+f+d;return`${i.a.grey(h)} ${p(m)}`};const b=(e,t=0,n=null)=>{const r=e.split("/").slice(0,-1);if(n===null||t===0){return r.join("/")}const i=n-t;return r.slice(0,i).join("/")};const w=(e,t)=>{const n=b(e.entrypoint);const r=b(t.entrypoint);if(n===""){return 1}if(r===""){return-1}if(n>r){return 1}if(r>n){return-1}return 0};const x=(e,t,n)=>{const r=n%e.length;const i=Math.ceil(n/e.length);const o=(i===0?1:i)-1;const a=o>t?t:o;const s=b(e[r][0].entrypoint,a,t);const c=[];let u=[];for(let n=0;n<e.length;n++){const r=e[n];const i=b(r[0].entrypoint,a,t);if(i===s){u=u.concat(r)}else{c.push(r)}}if(r===0){c.unshift(u)}else{c.splice(r,0,u)}return c};const k=e=>{e.hasOutput=Array.isArray(e.output)&&e.output.length>0;if(e.hasOutput){e.output=e.output.map(t=>{t.readyState=e.readyState;return t})}return e};t["default"]=((e,t)=>{let n=e.map(k).sort(w).map(e=>[e]);const r=e.reduce((e,t)=>{const n=t.entrypoint.split("/").length-1;return n>e?n:e},0);let o=0;while(n.length>p){n=x(n,r,o);o++}n=n.reverse();const a=e.reduce((e,t)=>{const{length:n}=t.entrypoint;return n>e?n:e},0);const s=[];let c=n.length;let u=n.length;let l=[];n=(()=>{const e=[];const t=[];for(const r of n){if(m(r)==="/"){r.map(e=>t.push([e]))}else{e.push(r)}}u=e.length;t.map(t=>e.push(t));return e})();n.map(e=>{const n=m(e);if(n==="/"){if(u<=p&&c<=p){const n=e[0];s.push(`${v(n,t,a)}\n`);c++}else{l.push(e[0]);return e}}else if(e.length===1){const n=e[0];s.push(`${v(n,t,a)}\n`);c++}else{s.push(`${g(`${n}/*`,e,t,a)}\n`);c++}const r=e.reduce((e,t)=>e.concat(Array.isArray(t.output)?t.output:[]),[]);r.slice(0,d).map((e,t)=>s.push(`${y({...e,isLast:r.length===t+1})}\n`));if(r.length>d){s.push(i.a.grey(`└── ${r.length-d} output items hidden\n`))}return e});if(l.length){s.push(`${g(`${l.length} builds hidden`,l,t,a,true)}\n`)}return{lines:s.length+1,toPrint:`${s.join("")}`}})},2418:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=i(n(6725));const c=o(n(8715));const u=i(n(4573));const l=i(n(8685));const f=i(n(3623));const p=i(n(4336));const d=i(n(8303));const h=i(n(2788));const m=i(n(3266));const v=i(n(499));const g=i(n(586));const y=i(n(8950));function buy(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:o}=e;const{currentTeam:b}=o;const{apiUrl:w}=e;const x=t["--debug"];const k=new u.default({apiUrl:w,token:r,currentTeam:b,debug:x});let j=null;try{({contextName:j}=yield d.default(k))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){i.error(e.message);return 1}throw e}const[S]=n;if(!S){i.error(`Missing domain name. Run ${l.default("now domains --help")}`);return 1}const E=s.default.parse(S);if(E.error){i.error(`The provided domain name ${h.default(S)} is invalid`);return 1}const{domain:_,subdomain:C}=E;if(C||!_){i.error(`Invalid domain name "${S}". Run ${l.default("now domains --help")}`);return 1}const A=g.default();const O=yield f.default(k,S);if(O instanceof c.UnsupportedTLD){i.error(`The TLD for ${h.default(S)} is not supported.`);return 1}if(!(yield p.default(k,S)).available){i.error(`The domain ${h.default(S)} is ${a.default.underline("unavailable")}! ${A()}`);return 1}const{period:F,price:D}=O;i.log(`The domain ${h.default(S)} is ${a.default.underline("available")} to buy under ${a.default.bold(j)}! ${A()}`);if(!(yield m.default(`Buy now for ${a.default.bold(`$${D}`)} (${`${F}yr${F>1?"s":""}`})?`))){return 0}let T;const I=g.default();const R=y.default("Purchasing");try{T=yield v.default(k,S,D)}catch(e){R();i.error("An unexpected error occurred while purchasing your domain. Please try again later.");i.debug(`Server response: ${e.message}`);return 1}R();if(T instanceof c.SourceNotFound){i.error(`Could not purchase domain. Please add a payment method using ${l.default("now billing add")}.`);return 1}if(T instanceof c.UnsupportedTLD){i.error(`The TLD for domain name ${T.meta.domain} is not supported.`);return 1}if(T instanceof c.InvalidDomain){i.error(`The domain ${T.meta.domain} is not valid.`);return 1}if(T instanceof c.DomainNotAvailable){i.error(`The domain ${T.meta.domain} is not available.`);return 1}if(T instanceof c.DomainServiceNotAvailable){i.error(`The domain purchase service is not available. Please try again later.`);return 1}if(T instanceof c.UnexpectedDomainPurchaseError){i.error(`An unexpected error happened while performing the purchase.`);return 1}if(T instanceof c.DomainPaymentError){i.error(`Your card was declined.`);return 1}if(T.pending){console.log(`${a.default.cyan("> Success!")} Domain ${h.default(S)} order was submitted ${I()}`);i.note(`Your domain is processing and will be available once the order is completed.`);i.print(` An email will be sent upon completion for you to start using your new domain.\n`)}else{console.log(`${a.default.cyan("> Success!")} Domain ${h.default(S)} purchased ${I()}`);if(!T.verified){i.note(`Your domain is not fully configured yet so it may appear as not verified.`);i.print(` It might take a few minutes, but you will get an email as soon as it is ready.\n`)}else{i.note(`You may now use your domain as an alias to your deployments. Run ${l.default("now alias --help")}`)}}return 0})}t.default=buy},2419:function(e,t,n){e.exports=normalize;var r=n(7213);normalize.fixer=r;var i=n(171);var o=["name","version","description","repository","modules","scripts","files","bin","man","bugs","keywords","readme","homepage","license"];var a=["dependencies","people","typos"];var s=o.map(function(e){return ucFirst(e)+"Field"});s=s.concat(a);function normalize(e,t,n){if(t===true)t=null,n=true;if(!n)n=false;if(!t||e.private)t=function(e){};if(e.scripts&&e.scripts.install==="node-gyp rebuild"&&!e.scripts.preinstall){e.gypfile=true}r.warn=function(){t(i.apply(null,arguments))};s.forEach(function(t){r["fix"+ucFirst(t)](e,n)});e._id=e.name+"@"+e.version}function ucFirst(e){return e.charAt(0).toUpperCase()+e.slice(1)}},2423:function(e,t,n){var r=n(9368);var i=n(649);var o=n(5897);var a=n(4219);var s=n(2307);var c=n(774).parse;var u=n(662);var l=n(3937);var f=n(3023);var p=n(8223);e.exports=FormData;i.inherits(FormData,r);function FormData(e){if(!(this instanceof FormData)){return new FormData}this._overheadLength=0;this._valueLength=0;this._valuesToMeasure=[];r.call(this);e=e||{};for(var t in e){this[t]=e[t]}}FormData.LINE_BREAK="\r\n";FormData.DEFAULT_CONTENT_TYPE="application/octet-stream";FormData.prototype.append=function(e,t,n){n=n||{};if(typeof n=="string"){n={filename:n}}var o=r.prototype.append.bind(this);if(typeof t=="number"){t=""+t}if(i.isArray(t)){this._error(new Error("Arrays are not supported."));return}var a=this._multiPartHeader(e,t,n);var s=this._multiPartFooter();o(a);o(t);o(s);this._trackLength(a,t,n)};FormData.prototype._trackLength=function(e,t,n){var r=0;if(n.knownLength!=null){r+=+n.knownLength}else if(Buffer.isBuffer(t)){r=t.length}else if(typeof t==="string"){r=Buffer.byteLength(t)}this._valueLength+=r;this._overheadLength+=Buffer.byteLength(e)+FormData.LINE_BREAK.length;if(!t||!t.path&&!(t.readable&&t.hasOwnProperty("httpVersion"))){return}if(!n.knownLength){this._valuesToMeasure.push(t)}};FormData.prototype._lengthRetriever=function(e,t){if(e.hasOwnProperty("fd")){if(e.end!=undefined&&e.end!=Infinity&&e.start!=undefined){t(null,e.end+1-(e.start?e.start:0))}else{u.stat(e.path,function(n,r){var i;if(n){t(n);return}i=r.size-(e.start?e.start:0);t(null,i)})}}else if(e.hasOwnProperty("httpVersion")){t(null,+e.headers["content-length"])}else if(e.hasOwnProperty("httpModule")){e.on("response",function(n){e.pause();t(null,+n.headers["content-length"])});e.resume()}else{t("Unknown stream")}};FormData.prototype._multiPartHeader=function(e,t,n){if(typeof n.header=="string"){return n.header}var r=this._getContentDisposition(t,n);var i=this._getContentType(t,n);var o="";var a={"Content-Disposition":["form-data",'name="'+e+'"'].concat(r||[]),"Content-Type":[].concat(i||[])};if(typeof n.header=="object"){p(a,n.header)}var s;for(var c in a){if(!a.hasOwnProperty(c))continue;s=a[c];if(s==null){continue}if(!Array.isArray(s)){s=[s]}if(s.length){o+=c+": "+s.join("; ")+FormData.LINE_BREAK}}return"--"+this.getBoundary()+FormData.LINE_BREAK+o+FormData.LINE_BREAK};FormData.prototype._getContentDisposition=function(e,t){var n,r;if(typeof t.filepath==="string"){n=o.normalize(t.filepath).replace(/\\/g,"/")}else if(t.filename||e.name||e.path){n=o.basename(t.filename||e.name||e.path)}else if(e.readable&&e.hasOwnProperty("httpVersion")){n=o.basename(e.client._httpMessage.path)}if(n){r='filename="'+n+'"'}return r};FormData.prototype._getContentType=function(e,t){var n=t.contentType;if(!n&&e.name){n=l.lookup(e.name)}if(!n&&e.path){n=l.lookup(e.path)}if(!n&&e.readable&&e.hasOwnProperty("httpVersion")){n=e.headers["content-type"]}if(!n&&(t.filepath||t.filename)){n=l.lookup(t.filepath||t.filename)}if(!n&&typeof e=="object"){n=FormData.DEFAULT_CONTENT_TYPE}return n};FormData.prototype._multiPartFooter=function(){return function(e){var t=FormData.LINE_BREAK;var n=this._streams.length===0;if(n){t+=this._lastBoundary()}e(t)}.bind(this)};FormData.prototype._lastBoundary=function(){return"--"+this.getBoundary()+"--"+FormData.LINE_BREAK};FormData.prototype.getHeaders=function(e){var t;var n={"content-type":"multipart/form-data; boundary="+this.getBoundary()};for(t in e){if(e.hasOwnProperty(t)){n[t.toLowerCase()]=e[t]}}return n};FormData.prototype.getBoundary=function(){if(!this._boundary){this._generateBoundary()}return this._boundary};FormData.prototype._generateBoundary=function(){var e="--------------------------";for(var t=0;t<24;t++){e+=Math.floor(Math.random()*10).toString(16)}this._boundary=e};FormData.prototype.getLengthSync=function(){var e=this._overheadLength+this._valueLength;if(this._streams.length){e+=this._lastBoundary().length}if(!this.hasKnownLength()){this._error(new Error("Cannot calculate proper length in synchronous way."))}return e};FormData.prototype.hasKnownLength=function(){var e=true;if(this._valuesToMeasure.length){e=false}return e};FormData.prototype.getLength=function(e){var t=this._overheadLength+this._valueLength;if(this._streams.length){t+=this._lastBoundary().length}if(!this._valuesToMeasure.length){process.nextTick(e.bind(this,null,t));return}f.parallel(this._valuesToMeasure,this._lengthRetriever,function(n,r){if(n){e(n);return}r.forEach(function(e){t+=e});e(null,t)})};FormData.prototype.submit=function(e,t){var n,r,i={method:"post"};if(typeof e=="string"){e=c(e);r=p({port:e.port,path:e.pathname,host:e.hostname,protocol:e.protocol},i)}else{r=p(e,i);if(!r.port){r.port=r.protocol=="https:"?443:80}}r.headers=this.getHeaders(e.headers);if(r.protocol=="https:"){n=s.request(r)}else{n=a.request(r)}this.getLength(function(e,r){if(e){this._error(e);return}n.setHeader("Content-Length",r);this.pipe(n);if(t){n.on("error",t);n.on("response",t.bind(this,null))}}.bind(this));return n};FormData.prototype._error=function(e){if(!this.error){this.error=e;this.pause();this.emit("error",e)}};FormData.prototype.toString=function(){return"[object FormData]"}},2427:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(1390);var o=/^(?:(\w+):)\/\/(?:(\w+)(?::(\w+))?@)([\w\.-]+)(?::(\d+))?\/(.+)/;var a="Invalid Dsn";var s=function(){function Dsn(e){if(typeof e==="string"){this._fromString(e)}else{this._fromComponents(e)}this._validate()}Dsn.prototype.toString=function(e){if(e===void 0){e=false}var t=this,n=t.host,r=t.path,i=t.pass,o=t.port,a=t.projectId,s=t.protocol,c=t.user;return s+"://"+c+(e&&i?":"+i:"")+("@"+n+(o?":"+o:"")+"/"+(r?r+"/":r)+a)};Dsn.prototype._fromString=function(e){var t=o.exec(e);if(!t){throw new i.SentryError(a)}var n=r.__read(t.slice(1),6),s=n[0],c=n[1],u=n[2],l=u===void 0?"":u,f=n[3],p=n[4],d=p===void 0?"":p,h=n[5];var m="";var v=h;var g=v.split("/");if(g.length>1){m=g.slice(0,-1).join("/");v=g.pop()}Object.assign(this,{host:f,pass:l,path:m,projectId:v,port:d,protocol:s,user:c})};Dsn.prototype._fromComponents=function(e){this.protocol=e.protocol;this.user=e.user;this.pass=e.pass||"";this.host=e.host;this.port=e.port||"";this.path=e.path||"";this.projectId=e.projectId};Dsn.prototype._validate=function(){var e=this;["protocol","user","host","projectId"].forEach(function(t){if(!e[t]){throw new i.SentryError(a)}});if(this.protocol!=="http"&&this.protocol!=="https"){throw new i.SentryError(a)}if(this.port&&Number.isNaN(parseInt(this.port,10))){throw new i.SentryError(a)}};return Dsn}();t.Dsn=s},2436:function(e,t,n){"use strict";const r=n(5897);const i=n(6409);const o=n(7514);const a=n(1065);const s=100;const c=/[\u0000-\u001f\u0080-\u009f]/g;const u=/^\.+/;const l=(e,t)=>{if(typeof e!=="string"){throw new TypeError("Expected a string")}t=t||{};const n=t.replacement===undefined?"!":t.replacement;if(o().test(n)&&c.test(n)){throw new Error("Replacement string cannot contain reserved filename characters")}e=e.replace(o(),n);e=e.replace(c,n);e=e.replace(u,n);if(n.length>0){e=i(e,n);e=e.length>1?a(e,n):e}e=o.windowsNames().test(e)?e+n:e;e=e.slice(0,s);return e};l.path=((e,t)=>{e=r.resolve(e);return r.join(r.dirname(e),l(r.basename(e),t))});e.exports=l},2437:function(e,t,n){"use strict";n.r(t);var r=n(816);var i=n.n(r);var o=n(9544);var a=n.n(o);var s=n(1973);var c=n.n(s);var u=n(9779);var l=n.n(u);var f=n(4999);var p=n.n(f);var d=n(2385);var h=n(2547);var m=n.n(h);var v=n(541);var g=n.n(v);var y=n(3241);const b=()=>{console.log(`\n ${a.a.bold(`${p.a} now logout`)}\n\n ${a.a.dim("Options:")}\n\n -h, --help Output usage information\n -A ${a.a.bold.underline("FILE")}, --local-config=${a.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${a.a.bold.underline("DIR")}, --global-config=${a.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n\n ${a.a.dim("Examples:")}\n\n ${a.a.gray("")} Logout from the CLI:\n\n ${a.a.cyan("$ now logout")}\n`)};let w;let x;const k=async e=>{w=i()(e.argv.slice(2),{boolean:["help"],alias:{help:"h"}});x=e.apiUrl;w._=w._.slice(1);if(w.help||w._[0]==="help"){b();await Object(y["default"])(0)}S()};t["default"]=(async e=>{try{await k(e)}catch(e){Object(d["handleError"])(e);process.exit(1)}});const j=async e=>{const t={method:"DELETE",headers:{Authorization:`Bearer ${e}`}};const n=await c()(`${x}/v3/user/tokens/current`,t);if(!n.ok){console.error(g()("Not able to log out"))}};const S=async()=>{const e=l()({text:"Logging out..."}).start();const t=Object(h["readConfigFile"])();const n=Object(h["readAuthConfigFile"])();const r=`${n.token}`;delete t.currentTeam;if(t.desktop){delete t.desktop.teamOrder}delete n.token;try{await Object(h["writeToConfigFile"])(t);await Object(h["writeToAuthConfigFile"])(n)}catch(t){e.fail(`Couldn't remove config while logging out`);process.exit(1)}try{await j(r)}catch(t){e.fail("Could not revoke token on logout");process.exit(1)}e.succeed("Logged out!")}},2447:function(e,t){Object.defineProperty(t,"__esModule",{value:true});var n;(function(e){e["Fatal"]="fatal";e["Error"]="error";e["Warning"]="warning";e["Log"]="log";e["Info"]="info";e["Debug"]="debug";e["Critical"]="critical"})(n=t.Severity||(t.Severity={}));(function(e){function fromString(t){switch(t){case"debug":return e.Debug;case"info":return e.Info;case"warn":case"warning":return e.Warning;case"error":return e.Error;case"fatal":return e.Fatal;case"critical":return e.Critical;case"log":default:return e.Log}}e.fromString=fromString})(n=t.Severity||(t.Severity={}))},2448:function(e,t,n){"use strict";e.exports=function(e,t,r,i,o,a){var s=n(4730);var c=n(2659).TypeError;var u=n(4730).inherits;var l=s.errorObj;var f=s.tryCatch;var p={};function thrower(e){setTimeout(function(){throw e},0)}function castPreservingDisposable(e){var t=r(e);if(t!==e&&typeof e._isDisposable==="function"&&typeof e._getDisposer==="function"&&e._isDisposable()){t._setDisposable(e._getDisposer())}return t}function dispose(t,n){var i=0;var a=t.length;var s=new e(o);function iterator(){if(i>=a)return s._fulfill();var o=castPreservingDisposable(t[i++]);if(o instanceof e&&o._isDisposable()){try{o=r(o._getDisposer().tryDispose(n),t.promise)}catch(e){return thrower(e)}if(o instanceof e){return o._then(iterator,thrower,null,null,null)}}iterator()}iterator();return s}function Disposer(e,t,n){this._data=e;this._promise=t;this._context=n}Disposer.prototype.data=function(){return this._data};Disposer.prototype.promise=function(){return this._promise};Disposer.prototype.resource=function(){if(this.promise().isFulfilled()){return this.promise().value()}return p};Disposer.prototype.tryDispose=function(e){var t=this.resource();var n=this._context;if(n!==undefined)n._pushContext();var r=t!==p?this.doDispose(t,e):null;if(n!==undefined)n._popContext();this._promise._unsetDisposable();this._data=null;return r};Disposer.isDisposer=function(e){return e!=null&&typeof e.resource==="function"&&typeof e.tryDispose==="function"};function FunctionDisposer(e,t,n){this.constructor$(e,t,n)}u(FunctionDisposer,Disposer);FunctionDisposer.prototype.doDispose=function(e,t){var n=this.data();return n.call(e,e,t)};function maybeUnwrapDisposer(e){if(Disposer.isDisposer(e)){this.resources[this.index]._setDisposable(e);return e.promise()}return e}function ResourceList(e){this.length=e;this.promise=null;this[e-1]=null}ResourceList.prototype._resultCancelled=function(){var t=this.length;for(var n=0;n<t;++n){var r=this[n];if(r instanceof e){r.cancel()}}};e.using=function(){var n=arguments.length;if(n<2)return t("you must pass at least 2 arguments to Promise.using");var i=arguments[n-1];if(typeof i!=="function"){return t("expecting a function but got "+s.classString(i))}var o;var c=true;if(n===2&&Array.isArray(arguments[0])){o=arguments[0];n=o.length;c=false}else{o=arguments;n--}var u=new ResourceList(n);for(var p=0;p<n;++p){var d=o[p];if(Disposer.isDisposer(d)){var h=d;d=d.promise();d._setDisposable(h)}else{var m=r(d);if(m instanceof e){d=m._then(maybeUnwrapDisposer,null,null,{resources:u,index:p},undefined)}}u[p]=d}var v=new Array(u.length);for(var p=0;p<v.length;++p){v[p]=e.resolve(u[p]).reflect()}var g=e.all(v).then(function(e){for(var t=0;t<e.length;++t){var n=e[t];if(n.isRejected()){l.e=n.error();return l}else if(!n.isFulfilled()){g.cancel();return}e[t]=n.value()}y._pushContext();i=f(i);var r=c?i.apply(undefined,e):i(e);var o=y._popContext();a.checkForgottenReturns(r,o,"Promise.using",y);return r});var y=g.lastly(function(){var t=new e.PromiseInspection(g);return dispose(u,t)});u.promise=y;y._setOnCancel(u);return y};e.prototype._setDisposable=function(e){this._bitField=this._bitField|131072;this._disposer=e};e.prototype._isDisposable=function(){return(this._bitField&131072)>0};e.prototype._getDisposer=function(){return this._disposer};e.prototype._unsetDisposable=function(){this._bitField=this._bitField&~131072;this._disposer=undefined};e.prototype.disposer=function(e){if(typeof e==="function"){return new FunctionDisposer(e,this,i())}throw new c}}},2449:function(e){function HARError(e){var t="validation failed";this.name="HARError";this.message=t;this.errors=e;if(typeof Error.captureStackTrace==="function"){Error.captureStackTrace(this,this.constructor)}else{this.stack=new Error(t).stack}}HARError.prototype=Error.prototype;e.exports=HARError},2454:function(e,t,n){"use strict";var r=n(3744);e.exports.desc=function(e){return r(e,function(e,t){return t.length-e.length})};e.exports.asc=function(e){return r(e,function(e,t){return e.length-t.length})}},2459:function(e,t){"use strict";function pathMatch(e,t){if(t===e){return true}var n=e.indexOf(t);if(n===0){if(t.substr(-1)==="/"){return true}if(e.substr(t.length,1)==="/"){return true}}return false}t.pathMatch=pathMatch},2465:function(e){(function(){var t,n=function(e,t){for(var n in t){if(r.call(t,n))e[n]=t[n]}function ctor(){this.constructor=e}ctor.prototype=t.prototype;e.prototype=new ctor;e.__super__=t.prototype;return e},r={}.hasOwnProperty;t=function(e){n(ReadFileError,e);ReadFileError.prototype.message="Failed to read temporary file";function ReadFileError(e){this.original_error=e}return ReadFileError}(Error);e.exports=t}).call(this)},2469:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(635);var i=function(){function OnUnhandledRejection(){this.name=OnUnhandledRejection.id}OnUnhandledRejection.prototype.setupOnce=function(){global.process.on("unhandledRejection",this.sendUnhandledPromise.bind(this))};OnUnhandledRejection.prototype.sendUnhandledPromise=function(e,t){var n=r.getCurrentHub();if(!n.getIntegration(OnUnhandledRejection)){return}var i=t.domain&&t.domain.sentryContext||{};n.withScope(function(r){r.setExtra("unhandledPromiseRejection",true);if(i.user){r.setUser(i.user)}if(i.tags){r.setTags(i.tags)}if(i.extra){r.setExtras(i.extra)}n.captureException(e,{originalException:t})})};OnUnhandledRejection.id="OnUnhandledRejection";return OnUnhandledRejection}();t.OnUnhandledRejection=i},2473:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=i(n(9052));const c=i(n(5799));const u=i(n(5125));const l=i(n(4198));const f=n(1133);const p=n(2984);const d=n(2673);const h=n(5897);const m=n(8339);const v=i(n(2297));const g=n(772);const y=i(n(8185));const b=n(8715);const w=i(n(8950));const x=n(6929);const k=o(n(5429));const j=n(8786);const S=new Set(["version","tag","range"]);const E={"@now/static":{runInProcess:true,builder:Object.freeze(k),package:Object.freeze({name:"@now/static",version:""})}};const _=x.getDistTag(y.default.version);t.cacheDirPromise=prepareCacheDir();t.builderDirPromise=prepareBuilderDir();t.builderModulePathPromise=prepareBuilderModulePath();function readFileOrNull(e,t){return r(this,void 0,void 0,function*(){try{if(t){return yield g.readFile(e,t)}return yield g.readFile(e)}catch(e){if(e.code==="ENOENT"){return null}throw e}})}function prepareCacheDir(){return r(this,void 0,void 0,function*(){const{NOW_BUILDER_CACHE_DIR:e}=process.env;const t=e?h.resolve(e):v.default("co.zeit.now").cache();if(!t){throw new b.NoBuilderCacheError}const n=h.join(t,"dev");yield g.mkdirp(n);return n})}t.prepareCacheDir=prepareCacheDir;function prepareBuilderDir(){return r(this,void 0,void 0,function*(){const e=h.join(yield t.cacheDirPromise,"builders");yield g.mkdirp(e);const n=__dirname+"/builders.tar.gz";const r=(yield readFileOrNull(h.join(e,"package.json"),"utf8"))||"{}";const{dependencies:i={}}=JSON.parse(r);if(!hasBundledBuilders(i)){const t=f.extract(e);yield u.default(g.createReadStream(n),d.createGunzip(),t)}return e})}t.prepareBuilderDir=prepareBuilderDir;function prepareBuilderModulePath(){return r(this,void 0,void 0,function*(){const[e,n]=yield Promise.all([t.builderDirPromise,g.readFile(__dirname+"/builder-worker.js")]);let r=false;const i=getSha(n);const o=h.join(e,"builder.js");const a=yield readFileOrNull(o);if(a){const e=getSha(a);if(i!==e){r=true}}else{r=true}if(r){yield g.writeFile(o,n)}return o})}t.prepareBuilderModulePath=prepareBuilderModulePath;function cleanCacheDir(e){return r(this,void 0,void 0,function*(){const n=yield t.cacheDirPromise;try{e.log(a.default`{magenta Deleting} ${n}`);yield g.remove(n)}catch(e){throw new b.BuilderCacheCleanError(n,e.message)}try{yield g.remove(m.funCacheDir);e.log(a.default`{magenta Deleting} ${m.funCacheDir}`)}catch(e){throw new b.BuilderCacheCleanError(m.funCacheDir,e.message)}})}t.cleanCacheDir=cleanCacheDir;function getNpmVersion(e=""){const t=l.default(e);if(S.has(t.type)){return t.fetchSpec||""}return""}function getBuildUtils(e){const t=e.map(getNpmVersion).some(e=>e.includes("canary"))?"canary":"latest";return`@now/build-utils@${t}`}t.getBuildUtils=getBuildUtils;function filterPackage(e,t,n){if(e in E)return false;const r=l.default(e);if(r.name&&r.type==="tag"&&r.fetchSpec===t&&j.getBundledBuilders().includes(r.name)&&n.dependencies){const e=l.default(`${r.name}@${n.dependencies[r.name]}`);if(e.type!=="version"){return true}const i=c.default.parse(e.rawSpec);if(!i){return true}if(i.prerelease.length>0){return i.prerelease[0]!==t}if(t==="latest"){return false}}return true}t.filterPackage=filterPackage;function installBuilders(e,n,i,o){return r(this,void 0,void 0,function*(){const r=Array.from(e);if(r.length===0||r.length===1&&Object.hasOwnProperty.call(E,r[0])){return}if(!o){o=yield t.builderDirPromise}const a=h.join(n,"yarn");const c=h.join(o,"package.json");const u=yield g.readJSON(c);r.push(getBuildUtils(r));const l=r.filter(e=>filterPackage(e,_,u));if(l.length===0){i.debug("No builders need to be installed");return}const f=w.default(`Installing builders: ${l.sort().join(", ")}`);try{yield s.default(process.execPath,[a,"add","--exact","--no-lockfile","--non-interactive",...l],{cwd:o})}finally{f()}})}t.installBuilders=installBuilders;function updateBuilders(e,n,i,o){return r(this,void 0,void 0,function*(){if(!o){o=yield t.builderDirPromise}const r=Array.from(e);const a=h.join(n,"yarn");const c=h.join(o,"package.json");const u=yield g.readJSON(c);r.push(getBuildUtils(r));yield s.default(process.execPath,[a,"add","--exact","--no-lockfile","--non-interactive",...r.filter(e=>e!=="@now/static")],{cwd:o});const l=[];const f=yield g.readJSON(c);for(const[e,t]of Object.entries(f.dependencies)){if(t!==u.dependencies[e]){i.debug(`Builder "${e}" updated to version \`${t}\``);l.push(e)}}return l})}t.updateBuilders=updateBuilders;function getBuilder(e,n,i,o){return r(this,void 0,void 0,function*(){let r=E[e];if(!r){if(!o){o=yield t.builderDirPromise}const a=l.default(e);const s=yield g.readJSON(h.join(o,"package.json"));const c=getPackageName(a,s)||e;const u=h.join(o,"node_modules",c);try{const t=require(u);const a=require(h.join(u,"package.json"));r={builder:Object.freeze(t),package:Object.freeze(a)}}catch(t){if(t.code==="MODULE_NOT_FOUND"){i.debug(`Attempted to require ${e}, but it is not installed`);const t=new Set([e]);yield installBuilders(t,n,i,o);return getBuilder(e,n,i,o)}throw t}}return r})}t.getBuilder=getBuilder;function getPackageName(e,t){if(S.has(e.type)){return e.name}const n=Object.assign({},t.devDependencies,t.dependencies);for(const[t,r]of Object.entries(n)){if(r===e.raw){return t}}return null}function getSha(e){const t=p.createHash("sha256");t.update(e);return t.digest("hex")}function hasBundledBuilders(e){for(const t of j.getBundledBuilders()){if(!(t in e)){return false}}return true}},2474:function(e){e.exports={repositories:"'repositories' (plural) Not supported. Please pick one as the 'repository' field",missingRepository:"No repository field.",brokenGitUrl:"Probably broken git url: %s",nonObjectScripts:"scripts must be an object",nonStringScript:"script values must be string commands",nonArrayFiles:"Invalid 'files' member",invalidFilename:"Invalid filename in 'files' list: %s",nonArrayBundleDependencies:"Invalid 'bundleDependencies' list. Must be array of package names",nonStringBundleDependency:"Invalid bundleDependencies member: %s",nonDependencyBundleDependency:"Non-dependency in bundleDependencies: %s",nonObjectDependencies:"%s field must be an object",nonStringDependency:"Invalid dependency: %s %s",deprecatedArrayDependencies:"specifying %s as array is deprecated",deprecatedModules:"modules field is deprecated",nonArrayKeywords:"keywords should be an array of strings",nonStringKeyword:"keywords should be an array of strings",conflictingName:"%s is also the name of a node core module.",nonStringDescription:"'description' field should be a string",missingDescription:"No description",missingReadme:"No README data",missingLicense:"No license field.",nonEmailUrlBugsString:"Bug string field must be url, email, or {email,url}",nonUrlBugsUrlField:"bugs.url field must be a string url. Deleted.",nonEmailBugsEmailField:"bugs.email field must be a string email. Deleted.",emptyNormalizedBugs:"Normalized value of bugs field is an empty object. Deleted.",nonUrlHomepage:"homepage field must be a string url. Deleted.",invalidLicense:"license should be a valid SPDX license expression",typo:"%s should probably be %s."}},2488:function(e){e.exports=require("readline")},2489:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(3930);const a=process.platform==="win32";function defaults(e){const t=["unlink","chmod","stat","lstat","rmdir","readdir"];t.forEach(t=>{e[t]=e[t]||r[t];t=t+"Sync";e[t]=e[t]||r[t]});e.maxBusyTries=e.maxBusyTries||3}function rimraf(e,t,n){let r=0;if(typeof t==="function"){n=t;t={}}o(e,"rimraf: missing path");o.equal(typeof e,"string","rimraf: path should be a string");o.equal(typeof n,"function","rimraf: callback function required");o(t,"rimraf: invalid options argument provided");o.equal(typeof t,"object","rimraf: options should be object");defaults(t);rimraf_(e,t,function CB(i){if(i){if(a&&(i.code==="EBUSY"||i.code==="ENOTEMPTY"||i.code==="EPERM")&&r<t.maxBusyTries){r++;let n=r*100;return setTimeout(()=>rimraf_(e,t,CB),n)}if(i.code==="ENOENT")i=null}n(i)})}function rimraf_(e,t,n){o(e);o(t);o(typeof n==="function");t.lstat(e,(r,i)=>{if(r&&r.code==="ENOENT"){return n(null)}if(r&&r.code==="EPERM"&&a){return fixWinEPERM(e,t,r,n)}if(i&&i.isDirectory()){return rmdir(e,t,r,n)}t.unlink(e,r=>{if(r){if(r.code==="ENOENT"){return n(null)}if(r.code==="EPERM"){return a?fixWinEPERM(e,t,r,n):rmdir(e,t,r,n)}if(r.code==="EISDIR"){return rmdir(e,t,r,n)}}return n(r)})})}function fixWinEPERM(e,t,n,r){o(e);o(t);o(typeof r==="function");if(n){o(n instanceof Error)}t.chmod(e,666,i=>{if(i){r(i.code==="ENOENT"?null:n)}else{t.stat(e,(i,o)=>{if(i){r(i.code==="ENOENT"?null:n)}else if(o.isDirectory()){rmdir(e,t,n,r)}else{t.unlink(e,r)}})}})}function fixWinEPERMSync(e,t,n){let r;o(e);o(t);if(n){o(n instanceof Error)}try{t.chmodSync(e,666)}catch(e){if(e.code==="ENOENT"){return}else{throw n}}try{r=t.statSync(e)}catch(e){if(e.code==="ENOENT"){return}else{throw n}}if(r.isDirectory()){rmdirSync(e,t,n)}else{t.unlinkSync(e)}}function rmdir(e,t,n,r){o(e);o(t);if(n){o(n instanceof Error)}o(typeof r==="function");t.rmdir(e,i=>{if(i&&(i.code==="ENOTEMPTY"||i.code==="EEXIST"||i.code==="EPERM")){rmkids(e,t,r)}else if(i&&i.code==="ENOTDIR"){r(n)}else{r(i)}})}function rmkids(e,t,n){o(e);o(t);o(typeof n==="function");t.readdir(e,(r,o)=>{if(r)return n(r);let a=o.length;let s;if(a===0)return t.rmdir(e,n);o.forEach(r=>{rimraf(i.join(e,r),t,r=>{if(s){return}if(r)return n(s=r);if(--a===0){t.rmdir(e,n)}})})})}function rimrafSync(e,t){let n;t=t||{};defaults(t);o(e,"rimraf: missing path");o.equal(typeof e,"string","rimraf: path should be a string");o(t,"rimraf: missing options");o.equal(typeof t,"object","rimraf: options should be object");try{n=t.lstatSync(e)}catch(n){if(n.code==="ENOENT"){return}if(n.code==="EPERM"&&a){fixWinEPERMSync(e,t,n)}}try{if(n&&n.isDirectory()){rmdirSync(e,t,null)}else{t.unlinkSync(e)}}catch(n){if(n.code==="ENOENT"){return}else if(n.code==="EPERM"){return a?fixWinEPERMSync(e,t,n):rmdirSync(e,t,n)}else if(n.code!=="EISDIR"){throw n}rmdirSync(e,t,n)}}function rmdirSync(e,t,n){o(e);o(t);if(n){o(n instanceof Error)}try{t.rmdirSync(e)}catch(r){if(r.code==="ENOTDIR"){throw n}else if(r.code==="ENOTEMPTY"||r.code==="EEXIST"||r.code==="EPERM"){rmkidsSync(e,t)}else if(r.code!=="ENOENT"){throw r}}}function rmkidsSync(e,t){o(e);o(t);t.readdirSync(e).forEach(n=>rimrafSync(i.join(e,n),t));t.rmdirSync(e,t)}e.exports=rimraf;rimraf.sync=rimrafSync},2499:function(e){"use strict";e.exports=function generate__limitItems(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l;var f="data"+(o||"");var p=e.opts.$data&&a&&a.$data,d;if(p){r+=" var schema"+i+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ";d="schema"+i}else{d=a}var h=t=="maxItems"?">":"<";r+="if ( ";if(p){r+=" ("+d+" !== undefined && typeof "+d+" != 'number') || "}r+=" "+f+".length "+h+" "+d+") { ";var l=t;var m=m||[];m.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+(l||"_limitItems")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { limit: "+d+" } ";if(e.opts.messages!==false){r+=" , message: 'should NOT have ";if(t=="maxItems"){r+="more"}else{r+="fewer"}r+=" than ";if(p){r+="' + "+d+" + '"}else{r+=""+a}r+=" items' "}if(e.opts.verbose){r+=" , schema: ";if(p){r+="validate.schema"+s}else{r+=""+a}r+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+f+" "}r+=" } "}else{r+=" {} "}var v=r;r=m.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+v+"]); "}else{r+=" validate.errors = ["+v+"]; return false; "}}else{r+=" var err = "+v+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+="} ";if(u){r+=" else { "}return r}},2506:function(e){e.exports=[["0","\0",127],["8ea1","。",62],["a1a1"," 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈",9,"+-±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇"],["a2a1","◆□■△▲▽▼※〒→←↑↓〓"],["a2ba","∈∋⊆⊇⊂⊃∪∩"],["a2ca","∧∨¬⇒⇔∀∃"],["a2dc","∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬"],["a2f2","ʼn♯♭♪†‡¶"],["a2fe","◯"],["a3b0","",9],["a3c1","",25],["a3e1","",25],["a4a1","ぁ",82],["a5a1","ァ",85],["a6a1","Α",16,"Σ",6],["a6c1","α",16,"σ",6],["a7a1","А",5,"ЁЖ",25],["a7d1","а",5,"ёж",25],["a8a1","─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂"],["ada1","①",19,"",9],["adc0","㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡"],["addf","㍻〝〟№㏍℡㊤",4,"㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪"],["b0a1","亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭"],["b1a1","院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応"],["b2a1","押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改"],["b3a1","魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱"],["b4a1","粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄"],["b5a1","機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京"],["b6a1","供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈"],["b7a1","掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲"],["b8a1","検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向"],["b9a1","后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込"],["baa1","此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷"],["bba1","察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時"],["bca1","次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周"],["bda1","宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償"],["bea1","勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾"],["bfa1","拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾"],["c0a1","澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線"],["c1a1","繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎"],["c2a1","臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只"],["c3a1","叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵"],["c4a1","帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓"],["c5a1","邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到"],["c6a1","董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入"],["c7a1","如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦"],["c8a1","函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美"],["c9a1","鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服"],["caa1","福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋"],["cba1","法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満"],["cca1","漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒"],["cda1","諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃"],["cea1","痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯"],["cfa1","蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕"],["d0a1","弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲"],["d1a1","僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨"],["d2a1","辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨"],["d3a1","咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉"],["d4a1","圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩"],["d5a1","奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓"],["d6a1","屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏"],["d7a1","廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚"],["d8a1","悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛"],["d9a1","戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼"],["daa1","據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼"],["dba1","曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍"],["dca1","棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣"],["dda1","檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾"],["dea1","沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌"],["dfa1","漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼"],["e0a1","燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱"],["e1a1","瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰"],["e2a1","癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬"],["e3a1","磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐"],["e4a1","筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆"],["e5a1","紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺"],["e6a1","罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋"],["e7a1","隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙"],["e8a1","茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈"],["e9a1","蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙"],["eaa1","蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞"],["eba1","襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫"],["eca1","譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊"],["eda1","蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸"],["eea1","遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮"],["efa1","錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞"],["f0a1","陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰"],["f1a1","顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷"],["f2a1","髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈"],["f3a1","鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠"],["f4a1","堯槇遙瑤凜熙"],["f9a1","纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德"],["faa1","忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱"],["fba1","犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚"],["fca1","釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"],["fcf1","",9,"¬¦'""],["8fa2af","˘ˇ¸˙˝¯˛˚~΄΅"],["8fa2c2","¡¦¿"],["8fa2eb","ºª©®™¤№"],["8fa6e1","ΆΈΉΊΪ"],["8fa6e7","Ό"],["8fa6e9","ΎΫ"],["8fa6ec","Ώ"],["8fa6f1","άέήίϊΐόςύϋΰώ"],["8fa7c2","Ђ",10,"ЎЏ"],["8fa7f2","ђ",10,"ўџ"],["8fa9a1","ÆĐ"],["8fa9a4","Ħ"],["8fa9a6","IJ"],["8fa9a8","ŁĿ"],["8fa9ab","ŊØŒ"],["8fa9af","ŦÞ"],["8fa9c1","æđðħıijĸłŀʼnŋøœßŧþ"],["8faaa1","ÁÀÄÂĂǍĀĄÅÃĆĈČÇĊĎÉÈËÊĚĖĒĘ"],["8faaba","ĜĞĢĠĤÍÌÏÎǏİĪĮĨĴĶĹĽĻŃŇŅÑÓÒÖÔǑŐŌÕŔŘŖŚŜŠŞŤŢÚÙÜÛŬǓŰŪŲŮŨǗǛǙǕŴÝŸŶŹŽŻ"],["8faba1","áàäâăǎāąåãćĉčçċďéèëêěėēęǵĝğ"],["8fabbd","ġĥíìïîǐ"],["8fabc5","īįĩĵķĺľļńňņñóòöôǒőōõŕřŗśŝšşťţúùüûŭǔűūųůũǘǜǚǖŵýÿŷźžż"],["8fb0a1","丂丄丅丌丒丟丣两丨丫丮丯丰丵乀乁乄乇乑乚乜乣乨乩乴乵乹乿亍亖亗亝亯亹仃仐仚仛仠仡仢仨仯仱仳仵份仾仿伀伂伃伈伋伌伒伕伖众伙伮伱你伳伵伷伹伻伾佀佂佈佉佋佌佒佔佖佘佟佣佪佬佮佱佷佸佹佺佽佾侁侂侄"],["8fb1a1","侅侉侊侌侎侐侒侓侔侗侙侚侞侟侲侷侹侻侼侽侾俀俁俅俆俈俉俋俌俍俏俒俜俠俢俰俲俼俽俿倀倁倄倇倊倌倎倐倓倗倘倛倜倝倞倢倧倮倰倲倳倵偀偁偂偅偆偊偌偎偑偒偓偗偙偟偠偢偣偦偧偪偭偰偱倻傁傃傄傆傊傎傏傐"],["8fb2a1","傒傓傔傖傛傜傞",4,"傪傯傰傹傺傽僀僃僄僇僌僎僐僓僔僘僜僝僟僢僤僦僨僩僯僱僶僺僾儃儆儇儈儋儌儍儎僲儐儗儙儛儜儝儞儣儧儨儬儭儯儱儳儴儵儸儹兂兊兏兓兕兗兘兟兤兦兾冃冄冋冎冘冝冡冣冭冸冺冼冾冿凂"],["8fb3a1","凈减凑凒凓凕凘凞凢凥凮凲凳凴凷刁刂刅划刓刕刖刘刢刨刱刲刵刼剅剉剕剗剘剚剜剟剠剡剦剮剷剸剹劀劂劅劊劌劓劕劖劗劘劚劜劤劥劦劧劯劰劶劷劸劺劻劽勀勄勆勈勌勏勑勔勖勛勜勡勥勨勩勪勬勰勱勴勶勷匀匃匊匋"],["8fb4a1","匌匑匓匘匛匜匞匟匥匧匨匩匫匬匭匰匲匵匼匽匾卂卌卋卙卛卡卣卥卬卭卲卹卾厃厇厈厎厓厔厙厝厡厤厪厫厯厲厴厵厷厸厺厽叀叅叏叒叓叕叚叝叞叠另叧叵吂吓吚吡吧吨吪启吱吴吵呃呄呇呍呏呞呢呤呦呧呩呫呭呮呴呿"],["8fb5a1","咁咃咅咈咉咍咑咕咖咜咟咡咦咧咩咪咭咮咱咷咹咺咻咿哆哊响哎哠哪哬哯哶哼哾哿唀唁唅唈唉唌唍唎唕唪唫唲唵唶唻唼唽啁啇啉啊啍啐啑啘啚啛啞啠啡啤啦啿喁喂喆喈喎喏喑喒喓喔喗喣喤喭喲喿嗁嗃嗆嗉嗋嗌嗎嗑嗒"],["8fb6a1","嗓嗗嗘嗛嗞嗢嗩嗶嗿嘅嘈嘊嘍",5,"嘙嘬嘰嘳嘵嘷嘹嘻嘼嘽嘿噀噁噃噄噆噉噋噍噏噔噞噠噡噢噣噦噩噭噯噱噲噵嚄嚅嚈嚋嚌嚕嚙嚚嚝嚞嚟嚦嚧嚨嚩嚫嚬嚭嚱嚳嚷嚾囅囉囊囋囏囐囌囍囙囜囝囟囡囤",4,"囱囫园"],["8fb7a1","囶囷圁圂圇圊圌圑圕圚圛圝圠圢圣圤圥圩圪圬圮圯圳圴圽圾圿坅坆坌坍坒坢坥坧坨坫坭",4,"坳坴坵坷坹坺坻坼坾垁垃垌垔垗垙垚垜垝垞垟垡垕垧垨垩垬垸垽埇埈埌埏埕埝埞埤埦埧埩埭埰埵埶埸埽埾埿堃堄堈堉埡"],["8fb8a1","堌堍堛堞堟堠堦堧堭堲堹堿塉塌塍塏塐塕塟塡塤塧塨塸塼塿墀墁墇墈墉墊墌墍墏墐墔墖墝墠墡墢墦墩墱墲壄墼壂壈壍壎壐壒壔壖壚壝壡壢壩壳夅夆夋夌夒夓夔虁夝夡夣夤夨夯夰夳夵夶夿奃奆奒奓奙奛奝奞奟奡奣奫奭"],["8fb9a1","奯奲奵奶她奻奼妋妌妎妒妕妗妟妤妧妭妮妯妰妳妷妺妼姁姃姄姈姊姍姒姝姞姟姣姤姧姮姯姱姲姴姷娀娄娌娍娎娒娓娞娣娤娧娨娪娭娰婄婅婇婈婌婐婕婞婣婥婧婭婷婺婻婾媋媐媓媖媙媜媞媟媠媢媧媬媱媲媳媵媸媺媻媿"],["8fbaa1","嫄嫆嫈嫏嫚嫜嫠嫥嫪嫮嫵嫶嫽嬀嬁嬈嬗嬴嬙嬛嬝嬡嬥嬭嬸孁孋孌孒孖孞孨孮孯孼孽孾孿宁宄宆宊宎宐宑宓宔宖宨宩宬宭宯宱宲宷宺宼寀寁寍寏寖",4,"寠寯寱寴寽尌尗尞尟尣尦尩尫尬尮尰尲尵尶屙屚屜屢屣屧屨屩"],["8fbba1","屭屰屴屵屺屻屼屽岇岈岊岏岒岝岟岠岢岣岦岪岲岴岵岺峉峋峒峝峗峮峱峲峴崁崆崍崒崫崣崤崦崧崱崴崹崽崿嵂嵃嵆嵈嵕嵑嵙嵊嵟嵠嵡嵢嵤嵪嵭嵰嵹嵺嵾嵿嶁嶃嶈嶊嶒嶓嶔嶕嶙嶛嶟嶠嶧嶫嶰嶴嶸嶹巃巇巋巐巎巘巙巠巤"],["8fbca1","巩巸巹帀帇帍帒帔帕帘帟帠帮帨帲帵帾幋幐幉幑幖幘幛幜幞幨幪",4,"幰庀庋庎庢庤庥庨庪庬庱庳庽庾庿廆廌廋廎廑廒廔廕廜廞廥廫异弆弇弈弎弙弜弝弡弢弣弤弨弫弬弮弰弴弶弻弽弿彀彄彅彇彍彐彔彘彛彠彣彤彧"],["8fbda1","彯彲彴彵彸彺彽彾徉徍徏徖徜徝徢徧徫徤徬徯徰徱徸忄忇忈忉忋忐",4,"忞忡忢忨忩忪忬忭忮忯忲忳忶忺忼怇怊怍怓怔怗怘怚怟怤怭怳怵恀恇恈恉恌恑恔恖恗恝恡恧恱恾恿悂悆悈悊悎悑悓悕悘悝悞悢悤悥您悰悱悷"],["8fbea1","悻悾惂惄惈惉惊惋惎惏惔惕惙惛惝惞惢惥惲惵惸惼惽愂愇愊愌愐",4,"愖愗愙愜愞愢愪愫愰愱愵愶愷愹慁慅慆慉慞慠慬慲慸慻慼慿憀憁憃憄憋憍憒憓憗憘憜憝憟憠憥憨憪憭憸憹憼懀懁懂懎懏懕懜懝懞懟懡懢懧懩懥"],["8fbfa1","懬懭懯戁戃戄戇戓戕戜戠戢戣戧戩戫戹戽扂扃扄扆扌扐扑扒扔扖扚扜扤扭扯扳扺扽抍抎抏抐抦抨抳抶抷抺抾抿拄拎拕拖拚拪拲拴拼拽挃挄挊挋挍挐挓挖挘挩挪挭挵挶挹挼捁捂捃捄捆捊捋捎捒捓捔捘捛捥捦捬捭捱捴捵"],["8fc0a1","捸捼捽捿掂掄掇掊掐掔掕掙掚掞掤掦掭掮掯掽揁揅揈揎揑揓揔揕揜揠揥揪揬揲揳揵揸揹搉搊搐搒搔搘搞搠搢搤搥搩搪搯搰搵搽搿摋摏摑摒摓摔摚摛摜摝摟摠摡摣摭摳摴摻摽撅撇撏撐撑撘撙撛撝撟撡撣撦撨撬撳撽撾撿"],["8fc1a1","擄擉擊擋擌擎擐擑擕擗擤擥擩擪擭擰擵擷擻擿攁攄攈攉攊攏攓攔攖攙攛攞攟攢攦攩攮攱攺攼攽敃敇敉敐敒敔敟敠敧敫敺敽斁斅斊斒斕斘斝斠斣斦斮斲斳斴斿旂旈旉旎旐旔旖旘旟旰旲旴旵旹旾旿昀昄昈昉昍昑昒昕昖昝"],["8fc2a1","昞昡昢昣昤昦昩昪昫昬昮昰昱昳昹昷晀晅晆晊晌晑晎晗晘晙晛晜晠晡曻晪晫晬晾晳晵晿晷晸晹晻暀晼暋暌暍暐暒暙暚暛暜暟暠暤暭暱暲暵暻暿曀曂曃曈曌曎曏曔曛曟曨曫曬曮曺朅朇朎朓朙朜朠朢朳朾杅杇杈杌杔杕杝"],["8fc3a1","杦杬杮杴杶杻极构枎枏枑枓枖枘枙枛枰枱枲枵枻枼枽柹柀柂柃柅柈柉柒柗柙柜柡柦柰柲柶柷桒栔栙栝栟栨栧栬栭栯栰栱栳栻栿桄桅桊桌桕桗桘桛桫桮",4,"桵桹桺桻桼梂梄梆梈梖梘梚梜梡梣梥梩梪梮梲梻棅棈棌棏"],["8fc4a1","棐棑棓棖棙棜棝棥棨棪棫棬棭棰棱棵棶棻棼棽椆椉椊椐椑椓椖椗椱椳椵椸椻楂楅楉楎楗楛楣楤楥楦楨楩楬楰楱楲楺楻楿榀榍榒榖榘榡榥榦榨榫榭榯榷榸榺榼槅槈槑槖槗槢槥槮槯槱槳槵槾樀樁樃樏樑樕樚樝樠樤樨樰樲"],["8fc5a1","樴樷樻樾樿橅橆橉橊橎橐橑橒橕橖橛橤橧橪橱橳橾檁檃檆檇檉檋檑檛檝檞檟檥檫檯檰檱檴檽檾檿櫆櫉櫈櫌櫐櫔櫕櫖櫜櫝櫤櫧櫬櫰櫱櫲櫼櫽欂欃欆欇欉欏欐欑欗欛欞欤欨欫欬欯欵欶欻欿歆歊歍歒歖歘歝歠歧歫歮歰歵歽"],["8fc6a1","歾殂殅殗殛殟殠殢殣殨殩殬殭殮殰殸殹殽殾毃毄毉毌毖毚毡毣毦毧毮毱毷毹毿氂氄氅氉氍氎氐氒氙氟氦氧氨氬氮氳氵氶氺氻氿汊汋汍汏汒汔汙汛汜汫汭汯汴汶汸汹汻沅沆沇沉沔沕沗沘沜沟沰沲沴泂泆泍泏泐泑泒泔泖"],["8fc7a1","泚泜泠泧泩泫泬泮泲泴洄洇洊洎洏洑洓洚洦洧洨汧洮洯洱洹洼洿浗浞浟浡浥浧浯浰浼涂涇涑涒涔涖涗涘涪涬涴涷涹涽涿淄淈淊淎淏淖淛淝淟淠淢淥淩淯淰淴淶淼渀渄渞渢渧渲渶渹渻渼湄湅湈湉湋湏湑湒湓湔湗湜湝湞"],["8fc8a1","湢湣湨湳湻湽溍溓溙溠溧溭溮溱溳溻溿滀滁滃滇滈滊滍滎滏滫滭滮滹滻滽漄漈漊漌漍漖漘漚漛漦漩漪漯漰漳漶漻漼漭潏潑潒潓潗潙潚潝潞潡潢潨潬潽潾澃澇澈澋澌澍澐澒澓澔澖澚澟澠澥澦澧澨澮澯澰澵澶澼濅濇濈濊"],["8fc9a1","濚濞濨濩濰濵濹濼濽瀀瀅瀆瀇瀍瀗瀠瀣瀯瀴瀷瀹瀼灃灄灈灉灊灋灔灕灝灞灎灤灥灬灮灵灶灾炁炅炆炔",4,"炛炤炫炰炱炴炷烊烑烓烔烕烖烘烜烤烺焃",4,"焋焌焏焞焠焫焭焯焰焱焸煁煅煆煇煊煋煐煒煗煚煜煞煠"],["8fcaa1","煨煹熀熅熇熌熒熚熛熠熢熯熰熲熳熺熿燀燁燄燋燌燓燖燙燚燜燸燾爀爇爈爉爓爗爚爝爟爤爫爯爴爸爹牁牂牃牅牎牏牐牓牕牖牚牜牞牠牣牨牫牮牯牱牷牸牻牼牿犄犉犍犎犓犛犨犭犮犱犴犾狁狇狉狌狕狖狘狟狥狳狴狺狻"],["8fcba1","狾猂猄猅猇猋猍猒猓猘猙猞猢猤猧猨猬猱猲猵猺猻猽獃獍獐獒獖獘獝獞獟獠獦獧獩獫獬獮獯獱獷獹獼玀玁玃玅玆玎玐玓玕玗玘玜玞玟玠玢玥玦玪玫玭玵玷玹玼玽玿珅珆珉珋珌珏珒珓珖珙珝珡珣珦珧珩珴珵珷珹珺珻珽"],["8fcca1","珿琀琁琄琇琊琑琚琛琤琦琨",9,"琹瑀瑃瑄瑆瑇瑋瑍瑑瑒瑗瑝瑢瑦瑧瑨瑫瑭瑮瑱瑲璀璁璅璆璇璉璏璐璑璒璘璙璚璜璟璠璡璣璦璨璩璪璫璮璯璱璲璵璹璻璿瓈瓉瓌瓐瓓瓘瓚瓛瓞瓟瓤瓨瓪瓫瓯瓴瓺瓻瓼瓿甆"],["8fcda1","甒甖甗甠甡甤甧甩甪甯甶甹甽甾甿畀畃畇畈畎畐畒畗畞畟畡畯畱畹",5,"疁疅疐疒疓疕疙疜疢疤疴疺疿痀痁痄痆痌痎痏痗痜痟痠痡痤痧痬痮痯痱痹瘀瘂瘃瘄瘇瘈瘊瘌瘏瘒瘓瘕瘖瘙瘛瘜瘝瘞瘣瘥瘦瘩瘭瘲瘳瘵瘸瘹"],["8fcea1","瘺瘼癊癀癁癃癄癅癉癋癕癙癟癤癥癭癮癯癱癴皁皅皌皍皕皛皜皝皟皠皢",6,"皪皭皽盁盅盉盋盌盎盔盙盠盦盨盬盰盱盶盹盼眀眆眊眎眒眔眕眗眙眚眜眢眨眭眮眯眴眵眶眹眽眾睂睅睆睊睍睎睏睒睖睗睜睞睟睠睢"],["8fcfa1","睤睧睪睬睰睲睳睴睺睽瞀瞄瞌瞍瞔瞕瞖瞚瞟瞢瞧瞪瞮瞯瞱瞵瞾矃矉矑矒矕矙矞矟矠矤矦矪矬矰矱矴矸矻砅砆砉砍砎砑砝砡砢砣砭砮砰砵砷硃硄硇硈硌硎硒硜硞硠硡硣硤硨硪确硺硾碊碏碔碘碡碝碞碟碤碨碬碭碰碱碲碳"],["8fd0a1","碻碽碿磇磈磉磌磎磒磓磕磖磤磛磟磠磡磦磪磲磳礀磶磷磺磻磿礆礌礐礚礜礞礟礠礥礧礩礭礱礴礵礻礽礿祄祅祆祊祋祏祑祔祘祛祜祧祩祫祲祹祻祼祾禋禌禑禓禔禕禖禘禛禜禡禨禩禫禯禱禴禸离秂秄秇秈秊秏秔秖秚秝秞"],["8fd1a1","秠秢秥秪秫秭秱秸秼稂稃稇稉稊稌稑稕稛稞稡稧稫稭稯稰稴稵稸稹稺穄穅穇穈穌穕穖穙穜穝穟穠穥穧穪穭穵穸穾窀窂窅窆窊窋窐窑窔窞窠窣窬窳窵窹窻窼竆竉竌竎竑竛竨竩竫竬竱竴竻竽竾笇笔笟笣笧笩笪笫笭笮笯笰"],["8fd2a1","笱笴笽笿筀筁筇筎筕筠筤筦筩筪筭筯筲筳筷箄箉箎箐箑箖箛箞箠箥箬箯箰箲箵箶箺箻箼箽篂篅篈篊篔篖篗篙篚篛篨篪篲篴篵篸篹篺篼篾簁簂簃簄簆簉簋簌簎簏簙簛簠簥簦簨簬簱簳簴簶簹簺籆籊籕籑籒籓籙",5],["8fd3a1","籡籣籧籩籭籮籰籲籹籼籽粆粇粏粔粞粠粦粰粶粷粺粻粼粿糄糇糈糉糍糏糓糔糕糗糙糚糝糦糩糫糵紃紇紈紉紏紑紒紓紖紝紞紣紦紪紭紱紼紽紾絀絁絇絈絍絑絓絗絙絚絜絝絥絧絪絰絸絺絻絿綁綂綃綅綆綈綋綌綍綑綖綗綝"],["8fd4a1","綞綦綧綪綳綶綷綹緂",4,"緌緍緎緗緙縀緢緥緦緪緫緭緱緵緶緹緺縈縐縑縕縗縜縝縠縧縨縬縭縯縳縶縿繄繅繇繎繐繒繘繟繡繢繥繫繮繯繳繸繾纁纆纇纊纍纑纕纘纚纝纞缼缻缽缾缿罃罄罇罏罒罓罛罜罝罡罣罤罥罦罭"],["8fd5a1","罱罽罾罿羀羋羍羏羐羑羖羗羜羡羢羦羪羭羴羼羿翀翃翈翎翏翛翟翣翥翨翬翮翯翲翺翽翾翿耇耈耊耍耎耏耑耓耔耖耝耞耟耠耤耦耬耮耰耴耵耷耹耺耼耾聀聄聠聤聦聭聱聵肁肈肎肜肞肦肧肫肸肹胈胍胏胒胔胕胗胘胠胭胮"],["8fd6a1","胰胲胳胶胹胺胾脃脋脖脗脘脜脞脠脤脧脬脰脵脺脼腅腇腊腌腒腗腠腡腧腨腩腭腯腷膁膐膄膅膆膋膎膖膘膛膞膢膮膲膴膻臋臃臅臊臎臏臕臗臛臝臞臡臤臫臬臰臱臲臵臶臸臹臽臿舀舃舏舓舔舙舚舝舡舢舨舲舴舺艃艄艅艆"],["8fd7a1","艋艎艏艑艖艜艠艣艧艭艴艻艽艿芀芁芃芄芇芉芊芎芑芔芖芘芚芛芠芡芣芤芧芨芩芪芮芰芲芴芷芺芼芾芿苆苐苕苚苠苢苤苨苪苭苯苶苷苽苾茀茁茇茈茊茋荔茛茝茞茟茡茢茬茭茮茰茳茷茺茼茽荂荃荄荇荍荎荑荕荖荗荰荸"],["8fd8a1","荽荿莀莂莄莆莍莒莔莕莘莙莛莜莝莦莧莩莬莾莿菀菇菉菏菐菑菔菝荓菨菪菶菸菹菼萁萆萊萏萑萕萙莭萯萹葅葇葈葊葍葏葑葒葖葘葙葚葜葠葤葥葧葪葰葳葴葶葸葼葽蒁蒅蒒蒓蒕蒞蒦蒨蒩蒪蒯蒱蒴蒺蒽蒾蓀蓂蓇蓈蓌蓏蓓"],["8fd9a1","蓜蓧蓪蓯蓰蓱蓲蓷蔲蓺蓻蓽蔂蔃蔇蔌蔎蔐蔜蔞蔢蔣蔤蔥蔧蔪蔫蔯蔳蔴蔶蔿蕆蕏",4,"蕖蕙蕜",6,"蕤蕫蕯蕹蕺蕻蕽蕿薁薅薆薉薋薌薏薓薘薝薟薠薢薥薧薴薶薷薸薼薽薾薿藂藇藊藋藎薭藘藚藟藠藦藨藭藳藶藼"],["8fdaa1","藿蘀蘄蘅蘍蘎蘐蘑蘒蘘蘙蘛蘞蘡蘧蘩蘶蘸蘺蘼蘽虀虂虆虒虓虖虗虘虙虝虠",4,"虩虬虯虵虶虷虺蚍蚑蚖蚘蚚蚜蚡蚦蚧蚨蚭蚱蚳蚴蚵蚷蚸蚹蚿蛀蛁蛃蛅蛑蛒蛕蛗蛚蛜蛠蛣蛥蛧蚈蛺蛼蛽蜄蜅蜇蜋蜎蜏蜐蜓蜔蜙蜞蜟蜡蜣"],["8fdba1","蜨蜮蜯蜱蜲蜹蜺蜼蜽蜾蝀蝃蝅蝍蝘蝝蝡蝤蝥蝯蝱蝲蝻螃",6,"螋螌螐螓螕螗螘螙螞螠螣螧螬螭螮螱螵螾螿蟁蟈蟉蟊蟎蟕蟖蟙蟚蟜蟟蟢蟣蟤蟪蟫蟭蟱蟳蟸蟺蟿蠁蠃蠆蠉蠊蠋蠐蠙蠒蠓蠔蠘蠚蠛蠜蠞蠟蠨蠭蠮蠰蠲蠵"],["8fdca1","蠺蠼衁衃衅衈衉衊衋衎衑衕衖衘衚衜衟衠衤衩衱衹衻袀袘袚袛袜袟袠袨袪袺袽袾裀裊",4,"裑裒裓裛裞裧裯裰裱裵裷褁褆褍褎褏褕褖褘褙褚褜褠褦褧褨褰褱褲褵褹褺褾襀襂襅襆襉襏襒襗襚襛襜襡襢襣襫襮襰襳襵襺"],["8fdda1","襻襼襽覉覍覐覔覕覛覜覟覠覥覰覴覵覶覷覼觔",4,"觥觩觫觭觱觳觶觹觽觿訄訅訇訏訑訒訔訕訞訠訢訤訦訫訬訯訵訷訽訾詀詃詅詇詉詍詎詓詖詗詘詜詝詡詥詧詵詶詷詹詺詻詾詿誀誃誆誋誏誐誒誖誗誙誟誧誩誮誯誳"],["8fdea1","誶誷誻誾諃諆諈諉諊諑諓諔諕諗諝諟諬諰諴諵諶諼諿謅謆謋謑謜謞謟謊謭謰謷謼譂",4,"譈譒譓譔譙譍譞譣譭譶譸譹譼譾讁讄讅讋讍讏讔讕讜讞讟谸谹谽谾豅豇豉豋豏豑豓豔豗豘豛豝豙豣豤豦豨豩豭豳豵豶豻豾貆"],["8fdfa1","貇貋貐貒貓貙貛貜貤貹貺賅賆賉賋賏賖賕賙賝賡賨賬賯賰賲賵賷賸賾賿贁贃贉贒贗贛赥赩赬赮赿趂趄趈趍趐趑趕趞趟趠趦趫趬趯趲趵趷趹趻跀跅跆跇跈跊跎跑跔跕跗跙跤跥跧跬跰趼跱跲跴跽踁踄踅踆踋踑踔踖踠踡踢"],["8fe0a1","踣踦踧踱踳踶踷踸踹踽蹀蹁蹋蹍蹎蹏蹔蹛蹜蹝蹞蹡蹢蹩蹬蹭蹯蹰蹱蹹蹺蹻躂躃躉躐躒躕躚躛躝躞躢躧躩躭躮躳躵躺躻軀軁軃軄軇軏軑軔軜軨軮軰軱軷軹軺軭輀輂輇輈輏輐輖輗輘輞輠輡輣輥輧輨輬輭輮輴輵輶輷輺轀轁"],["8fe1a1","轃轇轏轑",4,"轘轝轞轥辝辠辡辤辥辦辵辶辸达迀迁迆迊迋迍运迒迓迕迠迣迤迨迮迱迵迶迻迾适逄逈逌逘逛逨逩逯逪逬逭逳逴逷逿遃遄遌遛遝遢遦遧遬遰遴遹邅邈邋邌邎邐邕邗邘邙邛邠邡邢邥邰邲邳邴邶邽郌邾郃"],["8fe2a1","郄郅郇郈郕郗郘郙郜郝郟郥郒郶郫郯郰郴郾郿鄀鄄鄅鄆鄈鄍鄐鄔鄖鄗鄘鄚鄜鄞鄠鄥鄢鄣鄧鄩鄮鄯鄱鄴鄶鄷鄹鄺鄼鄽酃酇酈酏酓酗酙酚酛酡酤酧酭酴酹酺酻醁醃醅醆醊醎醑醓醔醕醘醞醡醦醨醬醭醮醰醱醲醳醶醻醼醽醿"],["8fe3a1","釂釃釅釓釔釗釙釚釞釤釥釩釪釬",5,"釷釹釻釽鈀鈁鈄鈅鈆鈇鈉鈊鈌鈐鈒鈓鈖鈘鈜鈝鈣鈤鈥鈦鈨鈮鈯鈰鈳鈵鈶鈸鈹鈺鈼鈾鉀鉂鉃鉆鉇鉊鉍鉎鉏鉑鉘鉙鉜鉝鉠鉡鉥鉧鉨鉩鉮鉯鉰鉵",4,"鉻鉼鉽鉿銈銉銊銍銎銒銗"],["8fe4a1","銙銟銠銤銥銧銨銫銯銲銶銸銺銻銼銽銿",4,"鋅鋆鋇鋈鋋鋌鋍鋎鋐鋓鋕鋗鋘鋙鋜鋝鋟鋠鋡鋣鋥鋧鋨鋬鋮鋰鋹鋻鋿錀錂錈錍錑錔錕錜錝錞錟錡錤錥錧錩錪錳錴錶錷鍇鍈鍉鍐鍑鍒鍕鍗鍘鍚鍞鍤鍥鍧鍩鍪鍭鍯鍰鍱鍳鍴鍶"],["8fe5a1","鍺鍽鍿鎀鎁鎂鎈鎊鎋鎍鎏鎒鎕鎘鎛鎞鎡鎣鎤鎦鎨鎫鎴鎵鎶鎺鎩鏁鏄鏅鏆鏇鏉",4,"鏓鏙鏜鏞鏟鏢鏦鏧鏹鏷鏸鏺鏻鏽鐁鐂鐄鐈鐉鐍鐎鐏鐕鐖鐗鐟鐮鐯鐱鐲鐳鐴鐻鐿鐽鑃鑅鑈鑊鑌鑕鑙鑜鑟鑡鑣鑨鑫鑭鑮鑯鑱鑲钄钃镸镹"],["8fe6a1","镾閄閈閌閍閎閝閞閟閡閦閩閫閬閴閶閺閽閿闆闈闉闋闐闑闒闓闙闚闝闞闟闠闤闦阝阞阢阤阥阦阬阱阳阷阸阹阺阼阽陁陒陔陖陗陘陡陮陴陻陼陾陿隁隂隃隄隉隑隖隚隝隟隤隥隦隩隮隯隳隺雊雒嶲雘雚雝雞雟雩雯雱雺霂"],["8fe7a1","霃霅霉霚霛霝霡霢霣霨霱霳靁靃靊靎靏靕靗靘靚靛靣靧靪靮靳靶靷靸靻靽靿鞀鞉鞕鞖鞗鞙鞚鞞鞟鞢鞬鞮鞱鞲鞵鞶鞸鞹鞺鞼鞾鞿韁韄韅韇韉韊韌韍韎韐韑韔韗韘韙韝韞韠韛韡韤韯韱韴韷韸韺頇頊頙頍頎頔頖頜頞頠頣頦"],["8fe8a1","頫頮頯頰頲頳頵頥頾顄顇顊顑顒顓顖顗顙顚顢顣顥顦顪顬颫颭颮颰颴颷颸颺颻颿飂飅飈飌飡飣飥飦飧飪飳飶餂餇餈餑餕餖餗餚餛餜餟餢餦餧餫餱",4,"餹餺餻餼饀饁饆饇饈饍饎饔饘饙饛饜饞饟饠馛馝馟馦馰馱馲馵"],["8fe9a1","馹馺馽馿駃駉駓駔駙駚駜駞駧駪駫駬駰駴駵駹駽駾騂騃騄騋騌騐騑騖騞騠騢騣騤騧騭騮騳騵騶騸驇驁驄驊驋驌驎驑驔驖驝骪骬骮骯骲骴骵骶骹骻骾骿髁髃髆髈髎髐髒髕髖髗髛髜髠髤髥髧髩髬髲髳髵髹髺髽髿",4],["8feaa1","鬄鬅鬈鬉鬋鬌鬍鬎鬐鬒鬖鬙鬛鬜鬠鬦鬫鬭鬳鬴鬵鬷鬹鬺鬽魈魋魌魕魖魗魛魞魡魣魥魦魨魪",4,"魳魵魷魸魹魿鮀鮄鮅鮆鮇鮉鮊鮋鮍鮏鮐鮔鮚鮝鮞鮦鮧鮩鮬鮰鮱鮲鮷鮸鮻鮼鮾鮿鯁鯇鯈鯎鯐鯗鯘鯝鯟鯥鯧鯪鯫鯯鯳鯷鯸"],["8feba1","鯹鯺鯽鯿鰀鰂鰋鰏鰑鰖鰘鰙鰚鰜鰞鰢鰣鰦",4,"鰱鰵鰶鰷鰽鱁鱃鱄鱅鱉鱊鱎鱏鱐鱓鱔鱖鱘鱛鱝鱞鱟鱣鱩鱪鱜鱫鱨鱮鱰鱲鱵鱷鱻鳦鳲鳷鳹鴋鴂鴑鴗鴘鴜鴝鴞鴯鴰鴲鴳鴴鴺鴼鵅鴽鵂鵃鵇鵊鵓鵔鵟鵣鵢鵥鵩鵪鵫鵰鵶鵷鵻"],["8feca1","鵼鵾鶃鶄鶆鶊鶍鶎鶒鶓鶕鶖鶗鶘鶡鶪鶬鶮鶱鶵鶹鶼鶿鷃鷇鷉鷊鷔鷕鷖鷗鷚鷞鷟鷠鷥鷧鷩鷫鷮鷰鷳鷴鷾鸊鸂鸇鸎鸐鸑鸒鸕鸖鸙鸜鸝鹺鹻鹼麀麂麃麄麅麇麎麏麖麘麛麞麤麨麬麮麯麰麳麴麵黆黈黋黕黟黤黧黬黭黮黰黱黲黵"],["8feda1","黸黿鼂鼃鼉鼏鼐鼑鼒鼔鼖鼗鼙鼚鼛鼟鼢鼦鼪鼫鼯鼱鼲鼴鼷鼹鼺鼼鼽鼿齁齃",4,"齓齕齖齗齘齚齝齞齨齩齭",4,"齳齵齺齽龏龐龑龒龔龖龗龞龡龢龣龥"]]},2508:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(8991).copySync;const a=n(6078).removeSync;const s=n(501).mkdirsSync;const c=n(5276);function moveSync(e,t,n){n=n||{};const o=n.overwrite||n.clobber||false;e=i.resolve(e);t=i.resolve(t);if(e===t)return r.accessSync(e);if(isSrcSubdir(e,t))throw new Error(`Cannot move '${e}' into itself '${t}'.`);s(i.dirname(t));tryRenameSync();function tryRenameSync(){if(o){try{return r.renameSync(e,t)}catch(r){if(r.code==="ENOTEMPTY"||r.code==="EEXIST"||r.code==="EPERM"){a(t);n.overwrite=false;return moveSync(e,t,n)}if(r.code!=="EXDEV")throw r;return moveSyncAcrossDevice(e,t,o)}}else{try{r.linkSync(e,t);return r.unlinkSync(e)}catch(n){if(n.code==="EXDEV"||n.code==="EISDIR"||n.code==="EPERM"||n.code==="ENOTSUP"){return moveSyncAcrossDevice(e,t,o)}throw n}}}}function moveSyncAcrossDevice(e,t,n){const i=r.statSync(e);if(i.isDirectory()){return moveDirSyncAcrossDevice(e,t,n)}else{return moveFileSyncAcrossDevice(e,t,n)}}function moveFileSyncAcrossDevice(e,t,n){const i=64*1024;const o=c(i);const a=n?"w":"wx";const s=r.openSync(e,"r");const u=r.fstatSync(s);const l=r.openSync(t,a,u.mode);let f=1;let p=0;while(f>0){f=r.readSync(s,o,0,i,p);r.writeSync(l,o,0,f);p+=f}r.closeSync(s);r.closeSync(l);return r.unlinkSync(e)}function moveDirSyncAcrossDevice(e,t,n){const r={overwrite:false};if(n){a(t);tryCopySync()}else{tryCopySync()}function tryCopySync(){o(e,t,r);return a(e)}}function isSrcSubdir(e,t){try{return r.statSync(e).isDirectory()&&e!==t&&t.indexOf(e)>-1&&t.split(i.dirname(e)+i.sep)[1].split(i.sep)[0]===i.basename(e)}catch(e){return false}}e.exports={moveSync:moveSync}},2511:function(e,t,n){"use strict";e.exports=contentDisposition;e.exports.parse=parse;var r=n(5897).basename;var i=/[\x00-\x20"'()*,\/:;<=>?@[\\\]{}\x7f]/g;var o=/%[0-9A-Fa-f]{2}/;var a=/%([0-9A-Fa-f]{2})/g;var s=/[^\x20-\x7e\xa0-\xff]/g;var c=/\\([\u0000-\u007f])/g;var u=/([\\"])/g;var l=/;[\x09\x20]*([!#$%&'*+.0-9A-Z^_`a-z|~-]+)[\x09\x20]*=[\x09\x20]*("(?:[\x20!\x23-\x5b\x5d-\x7e\x80-\xff]|\\[\x20-\x7e])*"|[!#$%&'*+.0-9A-Z^_`a-z|~-]+)[\x09\x20]*/g;var f=/^[\x20-\x7e\x80-\xff]+$/;var p=/^[!#$%&'*+.0-9A-Z^_`a-z|~-]+$/;var d=/^([A-Za-z0-9!#$%&+\-^_`{}~]+)'(?:[A-Za-z]{2,3}(?:-[A-Za-z]{3}){0,3}|[A-Za-z]{4,8}|)'((?:%[0-9A-Fa-f]{2}|[A-Za-z0-9!#$&+.^_`|~-])+)$/;var h=/^([!#$%&'*+.0-9A-Z^_`a-z|~-]+)[\x09\x20]*(?:$|;)/;function contentDisposition(e,t){var n=t||{};var r=n.type||"attachment";var i=createparams(e,n.fallback);return format(new ContentDisposition(r,i))}function createparams(e,t){if(e===undefined){return}var n={};if(typeof e!=="string"){throw new TypeError("filename must be a string")}if(t===undefined){t=true}if(typeof t!=="string"&&typeof t!=="boolean"){throw new TypeError("fallback must be a string or boolean")}if(typeof t==="string"&&s.test(t)){throw new TypeError("fallback must be ISO-8859-1 string")}var i=r(e);var a=f.test(i);var c=typeof t!=="string"?t&&getlatin1(i):r(t);var u=typeof c==="string"&&c!==i;if(u||!a||o.test(i)){n["filename*"]=i}if(a||u){n.filename=u?c:i}return n}function format(e){var t=e.parameters;var n=e.type;if(!n||typeof n!=="string"||!p.test(n)){throw new TypeError("invalid type")}var r=String(n).toLowerCase();if(t&&typeof t==="object"){var i;var o=Object.keys(t).sort();for(var a=0;a<o.length;a++){i=o[a];var s=i.substr(-1)==="*"?ustring(t[i]):qstring(t[i]);r+="; "+i+"="+s}}return r}function decodefield(e){var t=d.exec(e);if(!t){throw new TypeError("invalid extended field value")}var n=t[1].toLowerCase();var r=t[2];var i;var o=r.replace(a,pdecode);switch(n){case"iso-8859-1":i=getlatin1(o);break;case"utf-8":i=new Buffer(o,"binary").toString("utf8");break;default:throw new TypeError("unsupported charset in extended field")}return i}function getlatin1(e){return String(e).replace(s,"?")}function parse(e){if(!e||typeof e!=="string"){throw new TypeError("argument string is required")}var t=h.exec(e);if(!t){throw new TypeError("invalid type format")}var n=t[0].length;var r=t[1].toLowerCase();var i;var o=[];var a={};var s;n=l.lastIndex=t[0].substr(-1)===";"?n-1:n;while(t=l.exec(e)){if(t.index!==n){throw new TypeError("invalid parameter format")}n+=t[0].length;i=t[1].toLowerCase();s=t[2];if(o.indexOf(i)!==-1){throw new TypeError("invalid duplicate parameter")}o.push(i);if(i.indexOf("*")+1===i.length){i=i.slice(0,-1);s=decodefield(s);a[i]=s;continue}if(typeof a[i]==="string"){continue}if(s[0]==='"'){s=s.substr(1,s.length-2).replace(c,"$1")}a[i]=s}if(n!==-1&&n!==e.length){throw new TypeError("invalid parameter format")}return new ContentDisposition(r,a)}function pdecode(e,t){return String.fromCharCode(parseInt(t,16))}function pencode(e){var t=String(e).charCodeAt(0).toString(16).toUpperCase();return t.length===1?"%0"+t:"%"+t}function qstring(e){var t=String(e);return'"'+t.replace(u,"\\$1")+'"'}function ustring(e){var t=String(e);var n=encodeURIComponent(t).replace(i,pencode);return"UTF-8''"+n}function ContentDisposition(e,t){this.type=e;this.parameters=t}},2514:function(e,t,n){e.exports=n(2785)},2526:function(e,t,n){"use strict";e=n.nmd(e);const r=n(5671);const i=(e,t)=>(function(){const n=e.apply(r,arguments);return`[${n+t}m`});const o=(e,t)=>(function(){const n=e.apply(r,arguments);return`[${38+t};5;${n}m`});const a=(e,t)=>(function(){const n=e.apply(r,arguments);return`[${38+t};2;${n[0]};${n[1]};${n[2]}m`});function assembleStyles(){const e=new Map;const t={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],gray:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}};t.color.grey=t.color.gray;for(const n of Object.keys(t)){const r=t[n];for(const n of Object.keys(r)){const i=r[n];t[n]={open:`[${i[0]}m`,close:`[${i[1]}m`};r[n]=t[n];e.set(i[0],i[1])}Object.defineProperty(t,n,{value:r,enumerable:false});Object.defineProperty(t,"codes",{value:e,enumerable:false})}const n=e=>e;const s=(e,t,n)=>[e,t,n];t.color.close="";t.bgColor.close="";t.color.ansi={ansi:i(n,0)};t.color.ansi256={ansi256:o(n,0)};t.color.ansi16m={rgb:a(s,0)};t.bgColor.ansi={ansi:i(n,10)};t.bgColor.ansi256={ansi256:o(n,10)};t.bgColor.ansi16m={rgb:a(s,10)};for(let e of Object.keys(r)){if(typeof r[e]!=="object"){continue}const n=r[e];if(e==="ansi16"){e="ansi"}if("ansi16"in n){t.color.ansi[e]=i(n.ansi16,0);t.bgColor.ansi[e]=i(n.ansi16,10)}if("ansi256"in n){t.color.ansi256[e]=o(n.ansi256,0);t.bgColor.ansi256[e]=o(n.ansi256,10)}if("rgb"in n){t.color.ansi16m[e]=a(n.rgb,0);t.bgColor.ansi16m[e]=a(n.rgb,10)}}return t}Object.defineProperty(e,"exports",{enumerable:true,get:assembleStyles})},2528:function(e,t,n){var r=n(8608),i=n(1650);e.exports=iterate;function iterate(e,t,n,r){var o=n["keyedList"]?n["keyedList"][n.index]:n.index;n.jobs[o]=runJob(t,o,e[o],function(e,t){if(!(o in n.jobs)){return}delete n.jobs[o];if(e){i(n)}else{n.results[o]=t}r(e,n.results)})}function runJob(e,t,n,i){var o;if(e.length==2){o=e(n,r(i))}else{o=e(n,t,r(i))}return o}},2538:function(e,t,n){"use strict";var r=n(8381);var i=n(1382);var o=n(4623);var a=n(5668);e.exports=getRawBody;var s=/^Encoding not recognized: /;function getDecoder(e){if(!e)return null;try{return o.getDecoder(e)}catch(t){if(!s.test(t.message))throw t;throw i(415,"specified encoding unsupported",{encoding:e,type:"encoding.unsupported"})}}function getRawBody(e,t,n){var i=n;var o=t||{};if(t===true||typeof t==="string"){o={encoding:t}}if(typeof t==="function"){i=t;o={}}if(i!==undefined&&typeof i!=="function"){throw new TypeError("argument callback must be a function")}if(!i&&!global.Promise){throw new TypeError("argument callback is required")}var a=o.encoding!==true?o.encoding:"utf-8";var s=r.parse(o.limit);var c=o.length!=null&&!isNaN(o.length)?parseInt(o.length,10):null;if(i){return readStream(e,a,c,s,i)}return new Promise(function executor(t,n){readStream(e,a,c,s,function onRead(e,r){if(e)return n(e);t(r)})})}function halt(e){a(e);if(typeof e.pause==="function"){e.pause()}}function readStream(e,t,n,r,o){var a=false;var s=true;if(r!==null&&n!==null&&n>r){return done(i(413,"request entity too large",{expected:n,length:n,limit:r,type:"entity.too.large"}))}var c=e._readableState;if(e._decoder||c&&(c.encoding||c.decoder)){return done(i(500,"stream encoding should not be set",{type:"stream.encoding.set"}))}var u=0;var l;try{l=getDecoder(t)}catch(e){return done(e)}var f=l?"":[];e.on("aborted",onAborted);e.on("close",cleanup);e.on("data",onData);e.on("end",onEnd);e.on("error",onEnd);s=false;function done(){var t=new Array(arguments.length);for(var n=0;n<t.length;n++){t[n]=arguments[n]}a=true;if(s){process.nextTick(invokeCallback)}else{invokeCallback()}function invokeCallback(){cleanup();if(t[0]){halt(e)}o.apply(null,t)}}function onAborted(){if(a)return;done(i(400,"request aborted",{code:"ECONNABORTED",expected:n,length:n,received:u,type:"request.aborted"}))}function onData(e){if(a)return;u+=e.length;if(r!==null&&u>r){done(i(413,"request entity too large",{limit:r,received:u,type:"entity.too.large"}))}else if(l){f+=l.write(e)}else{f.push(e)}}function onEnd(e){if(a)return;if(e)return done(e);if(n!==null&&u!==n){done(i(400,"request size did not match content length",{expected:n,length:n,received:u,type:"request.size.invalid"}))}else{var t=l?f+(l.end()||""):Buffer.concat(f);done(null,t)}}function cleanup(){f=null;e.removeListener("aborted",onAborted);e.removeListener("data",onData);e.removeListener("end",onEnd);e.removeListener("error",onEnd);e.removeListener("close",cleanup)}}},2546:function(e){"use strict";e.exports=function diff(e){var t=arguments.length;var n=0;while(++n<t){e=diffArray(e,arguments[n])}return e};function diffArray(e,t){if(!Array.isArray(t)){return e.slice()}var n=t.length;var r=e.length;var i=-1;var o=[];while(++i<r){var a=e[i];var s=false;for(var c=0;c<n;c++){var u=t[c];if(a===u){s=true;break}}if(s===false){o.push(a)}}return o}},2547:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=n(5897);const o=r(n(1286));const a=r(n(1218));const s=n(662);const c=r(n(6397));const u=r(n(5531));const l=n(6097);const f=r(n(541));const p=r(n(5593));const d=c.default();const h=i.join(d,"config.json");const m=i.join(d,"auth.json");t.readConfigFile=(()=>o.default.sync(h));t.writeToConfigFile=(e=>{try{return a.default.sync(h,e,{indent:2})}catch(e){if(e.code==="EPERM"){console.error(f.default(`Not able to create ${p.default(h)} (operation not permitted).`));process.exit(1)}else if(e.code==="EBADF"){console.error(f.default(`Not able to create ${p.default(h)} (bad file descriptor).`));process.exit(1)}throw e}});t.readAuthConfigFile=(()=>o.default.sync(m));t.writeToAuthConfigFile=(e=>{try{return a.default.sync(m,e,{indent:2,mode:384})}catch(e){if(e.code==="EPERM"){console.error(f.default(`Not able to create ${p.default(m)} (operation not permitted).`));process.exit(1)}else if(e.code==="EBADF"){console.error(f.default(`Not able to create ${p.default(m)} (bad file descriptor).`));process.exit(1)}throw e}});function getConfigFilePath(){return h}t.getConfigFilePath=getConfigFilePath;function getAuthConfigFilePath(){return m}t.getAuthConfigFilePath=getAuthConfigFilePath;function readLocalConfig(e=process.cwd()){let t="";try{t=u.default(e||process.cwd())}catch(e){if(e instanceof l.NowError){console.error(f.default(e.message));process.exit(1)}else{throw e}}if(!t){return null}let n;try{n=s.existsSync(t)}catch(e){console.error(f.default("Failed to check if `now.json` exists"));process.exit(1)}if(n){try{return o.default.sync(t)}catch(e){if(e.name==="JSONError"){console.log(f.default(e.message))}else{const t=e.code?`(${e.code})`:"";console.error(f.default(`Failed to read the \`now.json\` file ${t}`))}process.exit(1)}}return null}t.readLocalConfig=readLocalConfig},2551:function(e,t,n){var r=n(7766);var i=r.types;e.exports=function(e,t){if(!t)t={};var n=t.limit===undefined?25:t.limit;if(isRegExp(e))e=e.source;else if(typeof e!=="string")e=String(e);try{e=r(e)}catch(e){return false}var o=0;return function walk(e,t){if(e.type===i.REPETITION){t++;o++;if(t>1)return false;if(o>n)return false}if(e.options){for(var r=0,a=e.options.length;r<a;r++){var s=walk({stack:e.options[r]},t);if(!s)return false}}var c=e.stack||e.value&&e.value.stack;if(!c)return true;for(var r=0;r<c.length;r++){var s=walk(c[r],t);if(!s)return false}return true}(e,0)};function isRegExp(e){return{}.toString.call(e)==="[object RegExp]"}},2568:function(e,t,n){"use strict";var r=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=r(n(8715));const a=i(n(291));const s=i(n(5503));const c=i(n(4365));const u="auto";function getMaxFromArgs(e){const t=c.default(e);if(t instanceof o.InvalidMinForScale){return t}if(s.default(e[2])){if(e.length>4){return new o.InvalidArgsForMinMaxScale(t)}if(s.default(e[3])){return a.default(e[3])}}else{if(!e[3]){return u}if(s.default(e[4])){return a.default(e[4])}if(e[4]){return new o.InvalidMaxForScale(e[4])}}return t}t.default=getMaxFromArgs},2569:function(e,t,n){var r={"./":7233,"./alias":2402,"./alias/":2402,"./alias/index":2402,"./alias/index.js":2402,"./alias/ls":7603,"./alias/ls.js":7603,"./alias/rm":3257,"./alias/rm.js":3257,"./alias/set":9281,"./alias/set.ts":9281,"./billing":1022,"./billing/":1022,"./billing/add":8379,"./billing/add.js":8379,"./billing/index":1022,"./billing/index.js":1022,"./certs":2197,"./certs/":2197,"./certs/add":991,"./certs/add.ts":991,"./certs/index":2197,"./certs/index.ts":2197,"./certs/issue":6745,"./certs/issue.ts":6745,"./certs/ls":8794,"./certs/ls.ts":8794,"./certs/rm":1548,"./certs/rm.ts":1548,"./deploy":2604,"./deploy/":2604,"./deploy/args":1156,"./deploy/args.js":1156,"./deploy/index":2604,"./deploy/index.js":2604,"./deploy/latest":7771,"./deploy/latest.js":7771,"./deploy/legacy":4091,"./deploy/legacy.ts":4091,"./dev":7298,"./dev/":7298,"./dev/dev":785,"./dev/dev.ts":785,"./dev/index":7298,"./dev/index.ts":7298,"./dns":2108,"./dns/":2108,"./dns/add":1318,"./dns/add.ts":1318,"./dns/import":5775,"./dns/import.ts":5775,"./dns/index":2108,"./dns/index.ts":2108,"./dns/ls":8075,"./dns/ls.ts":8075,"./dns/rm":7592,"./dns/rm.ts":7592,"./domains":2368,"./domains/":2368,"./domains/add":7022,"./domains/add.ts":7022,"./domains/buy":2418,"./domains/buy.ts":2418,"./domains/index":2368,"./domains/index.ts":2368,"./domains/inspect":6720,"./domains/inspect.ts":6720,"./domains/ls":3357,"./domains/ls.ts":3357,"./domains/move":1654,"./domains/move.ts":1654,"./domains/rm":5996,"./domains/rm.ts":5996,"./domains/transfer-in":8391,"./domains/transfer-in.ts":8391,"./domains/verify":5819,"./domains/verify.ts":5819,"./index":7233,"./index.ts":7233,"./init":2119,"./init/":2119,"./init/index":2119,"./init/index.ts":2119,"./init/init":7037,"./init/init.ts":7037,"./inspect":2790,"./inspect.js":2790,"./list":9240,"./list.js":9240,"./login":459,"./login.js":459,"./logout":2437,"./logout.js":2437,"./logs":1566,"./logs.js":1566,"./projects":9716,"./projects.js":9716,"./remove":7550,"./remove.js":7550,"./scale":3586,"./scale.js":3586,"./secrets":6883,"./secrets.js":6883,"./teams":6196,"./teams.js":6196,"./teams/add":3855,"./teams/add.js":3855,"./teams/invite":4122,"./teams/invite.js":4122,"./teams/list":7236,"./teams/list.js":7236,"./teams/switch":7691,"./teams/switch.js":7691,"./update":3439,"./update.ts":3439,"./upgrade":5963,"./upgrade.js":5963,"./whoami":6814,"./whoami.js":6814};function webpackContext(e){var t=webpackContextResolve(e);return n(t)}function webpackContextResolve(e){var t=r[e];if(!(t+1)){var n=new Error("Cannot find module '"+e+"'");n.code="MODULE_NOT_FOUND";throw n}return t}webpackContext.keys=function webpackContextKeys(){return Object.keys(r)};webpackContext.resolve=webpackContextResolve;e.exports=webpackContext;webpackContext.id=2569},2570:function(e){"use strict";function urlToOptions(e){var t={protocol:e.protocol,hostname:e.hostname,hash:e.hash,search:e.search,pathname:e.pathname,path:`${e.pathname}${e.search}`,href:e.href};if(e.port!==""){t.port=Number(e.port)}if(e.username||e.password){t.auth=`${e.username}:${e.password}`}return t}e.exports=urlToOptions},2574:function(e,t,n){var r=n(4108);var i=Object.create(null);var o=n(6354);e.exports=r(inflight);function inflight(e,t){if(i[e]){i[e].push(t);return null}else{i[e]=[t];return makeres(e)}}function makeres(e){return o(function RES(){var t=i[e];var n=t.length;var r=slice(arguments);try{for(var o=0;o<n;o++){t[o].apply(null,r)}}finally{if(t.length>n){t.splice(0,n);process.nextTick(function(){RES.apply(null,r)})}else{delete i[e]}}})}function slice(e){var t=e.length;var n=[];for(var r=0;r<t;r++)n[r]=e[r];return n}},2580:function(e){"use strict";const t=e=>Array.from(e).map(e=>e.charCodeAt(0));const n=t("META-INF/mozilla.rsa");const r=t("[Content_Types].xml");const i=t("_rels/.rels");e.exports=(e=>{const o=new Uint8Array(e);if(!(o&&o.length>1)){return null}const a=(e,t)=>{t=Object.assign({offset:0},t);for(let n=0;n<e.length;n++){if(t.mask){if(e[n]!==(t.mask[n]&o[n+t.offset])){return false}}else if(e[n]!==o[n+t.offset]){return false}}return true};if(a([255,216,255])){return{ext:"jpg",mime:"image/jpeg"}}if(a([137,80,78,71,13,10,26,10])){return{ext:"png",mime:"image/png"}}if(a([71,73,70])){return{ext:"gif",mime:"image/gif"}}if(a([87,69,66,80],{offset:8})){return{ext:"webp",mime:"image/webp"}}if(a([70,76,73,70])){return{ext:"flif",mime:"image/flif"}}if((a([73,73,42,0])||a([77,77,0,42]))&&a([67,82],{offset:8})){return{ext:"cr2",mime:"image/x-canon-cr2"}}if(a([73,73,42,0])||a([77,77,0,42])){return{ext:"tif",mime:"image/tiff"}}if(a([66,77])){return{ext:"bmp",mime:"image/bmp"}}if(a([73,73,188])){return{ext:"jxr",mime:"image/vnd.ms-photo"}}if(a([56,66,80,83])){return{ext:"psd",mime:"image/vnd.adobe.photoshop"}}if(a([80,75,3,4])){if(a([109,105,109,101,116,121,112,101,97,112,112,108,105,99,97,116,105,111,110,47,101,112,117,98,43,122,105,112],{offset:30})){return{ext:"epub",mime:"application/epub+zip"}}if(a(n,{offset:30})){return{ext:"xpi",mime:"application/x-xpinstall"}}if(a(r,{offset:30})||a(i,{offset:30})){const e=o.subarray(4,4+2e3);const n=e=>e.findIndex((e,t,n)=>n[t]===80&&n[t+1]===75&&n[t+2]===3&&n[t+3]===4);const r=n(e);if(r!==-1){const e=o.subarray(r+8,r+8+1e3);const i=n(e);if(i!==-1){const e=8+r+i+30;if(a(t("word/"),{offset:e})){return{ext:"docx",mime:"application/vnd.openxmlformats-officedocument.wordprocessingml.document"}}if(a(t("ppt/"),{offset:e})){return{ext:"pptx",mime:"application/vnd.openxmlformats-officedocument.presentationml.presentation"}}if(a(t("xl/"),{offset:e})){return{ext:"xlsx",mime:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"}}}}}}if(a([80,75])&&(o[2]===3||o[2]===5||o[2]===7)&&(o[3]===4||o[3]===6||o[3]===8)){return{ext:"zip",mime:"application/zip"}}if(a([117,115,116,97,114],{offset:257})){return{ext:"tar",mime:"application/x-tar"}}if(a([82,97,114,33,26,7])&&(o[6]===0||o[6]===1)){return{ext:"rar",mime:"application/x-rar-compressed"}}if(a([31,139,8])){return{ext:"gz",mime:"application/gzip"}}if(a([66,90,104])){return{ext:"bz2",mime:"application/x-bzip2"}}if(a([55,122,188,175,39,28])){return{ext:"7z",mime:"application/x-7z-compressed"}}if(a([120,1])){return{ext:"dmg",mime:"application/x-apple-diskimage"}}if(a([51,103,112,53])||a([0,0,0])&&a([102,116,121,112],{offset:4})&&(a([109,112,52,49],{offset:8})||a([109,112,52,50],{offset:8})||a([105,115,111,109],{offset:8})||a([105,115,111,50],{offset:8})||a([109,109,112,52],{offset:8})||a([77,52,86],{offset:8})||a([100,97,115,104],{offset:8}))){return{ext:"mp4",mime:"video/mp4"}}if(a([77,84,104,100])){return{ext:"mid",mime:"audio/midi"}}if(a([26,69,223,163])){const e=o.subarray(4,4+4096);const t=e.findIndex((e,t,n)=>n[t]===66&&n[t+1]===130);if(t!==-1){const n=t+3;const r=t=>Array.from(t).every((t,r)=>e[n+r]===t.charCodeAt(0));if(r("matroska")){return{ext:"mkv",mime:"video/x-matroska"}}if(r("webm")){return{ext:"webm",mime:"video/webm"}}}}if(a([0,0,0,20,102,116,121,112,113,116,32,32])||a([102,114,101,101],{offset:4})||a([102,116,121,112,113,116,32,32],{offset:4})||a([109,100,97,116],{offset:4})||a([119,105,100,101],{offset:4})){return{ext:"mov",mime:"video/quicktime"}}if(a([82,73,70,70])&&a([65,86,73],{offset:8})){return{ext:"avi",mime:"video/x-msvideo"}}if(a([48,38,178,117,142,102,207,17,166,217])){return{ext:"wmv",mime:"video/x-ms-wmv"}}if(a([0,0,1,186])){return{ext:"mpg",mime:"video/mpeg"}}for(let e=0;e<2&&e<o.length-16;e++){if(a([73,68,51],{offset:e})||a([255,226],{offset:e,mask:[255,226]})){return{ext:"mp3",mime:"audio/mpeg"}}}if(a([102,116,121,112,77,52,65],{offset:4})||a([77,52,65,32])){return{ext:"m4a",mime:"audio/m4a"}}if(a([79,112,117,115,72,101,97,100],{offset:28})){return{ext:"opus",mime:"audio/opus"}}if(a([79,103,103,83])){return{ext:"ogg",mime:"audio/ogg"}}if(a([102,76,97,67])){return{ext:"flac",mime:"audio/x-flac"}}if(a([82,73,70,70])&&a([87,65,86,69],{offset:8})){return{ext:"wav",mime:"audio/x-wav"}}if(a([35,33,65,77,82,10])){return{ext:"amr",mime:"audio/amr"}}if(a([37,80,68,70])){return{ext:"pdf",mime:"application/pdf"}}if(a([77,90])){return{ext:"exe",mime:"application/x-msdownload"}}if((o[0]===67||o[0]===70)&&a([87,83],{offset:1})){return{ext:"swf",mime:"application/x-shockwave-flash"}}if(a([123,92,114,116,102])){return{ext:"rtf",mime:"application/rtf"}}if(a([0,97,115,109])){return{ext:"wasm",mime:"application/wasm"}}if(a([119,79,70,70])&&(a([0,1,0,0],{offset:4})||a([79,84,84,79],{offset:4}))){return{ext:"woff",mime:"font/woff"}}if(a([119,79,70,50])&&(a([0,1,0,0],{offset:4})||a([79,84,84,79],{offset:4}))){return{ext:"woff2",mime:"font/woff2"}}if(a([76,80],{offset:34})&&(a([0,0,1],{offset:8})||a([1,0,2],{offset:8})||a([2,0,2],{offset:8}))){return{ext:"eot",mime:"application/octet-stream"}}if(a([0,1,0,0,0])){return{ext:"ttf",mime:"font/ttf"}}if(a([79,84,84,79,0])){return{ext:"otf",mime:"font/otf"}}if(a([0,0,1,0])){return{ext:"ico",mime:"image/x-icon"}}if(a([70,76,86,1])){return{ext:"flv",mime:"video/x-flv"}}if(a([37,33])){return{ext:"ps",mime:"application/postscript"}}if(a([253,55,122,88,90,0])){return{ext:"xz",mime:"application/x-xz"}}if(a([83,81,76,105])){return{ext:"sqlite",mime:"application/x-sqlite3"}}if(a([78,69,83,26])){return{ext:"nes",mime:"application/x-nintendo-nes-rom"}}if(a([67,114,50,52])){return{ext:"crx",mime:"application/x-google-chrome-extension"}}if(a([77,83,67,70])||a([73,83,99,40])){return{ext:"cab",mime:"application/vnd.ms-cab-compressed"}}if(a([33,60,97,114,99,104,62,10,100,101,98,105,97,110,45,98,105,110,97,114,121])){return{ext:"deb",mime:"application/x-deb"}}if(a([33,60,97,114,99,104,62])){return{ext:"ar",mime:"application/x-unix-archive"}}if(a([237,171,238,219])){return{ext:"rpm",mime:"application/x-rpm"}}if(a([31,160])||a([31,157])){return{ext:"Z",mime:"application/x-compress"}}if(a([76,90,73,80])){return{ext:"lz",mime:"application/x-lzip"}}if(a([208,207,17,224,161,177,26,225])){return{ext:"msi",mime:"application/x-msi"}}if(a([6,14,43,52,2,5,1,1,13,1,2,1,1,2])){return{ext:"mxf",mime:"application/mxf"}}if(a([71],{offset:4})&&(a([71],{offset:192})||a([71],{offset:196}))){return{ext:"mts",mime:"video/mp2t"}}if(a([66,76,69,78,68,69,82])){return{ext:"blend",mime:"application/x-blender"}}if(a([66,80,71,251])){return{ext:"bpg",mime:"image/bpg"}}return null})},2584:function(e){var t=function(){"use strict";function clone(e,t,n,r){var i;if(typeof t==="object"){n=t.depth;r=t.prototype;i=t.filter;t=t.circular}var o=[];var a=[];var s=typeof Buffer!="undefined";if(typeof t=="undefined")t=true;if(typeof n=="undefined")n=Infinity;function _clone(e,n){if(e===null)return null;if(n==0)return e;var i;var c;if(typeof e!="object"){return e}if(clone.__isArray(e)){i=[]}else if(clone.__isRegExp(e)){i=new RegExp(e.source,__getRegExpFlags(e));if(e.lastIndex)i.lastIndex=e.lastIndex}else if(clone.__isDate(e)){i=new Date(e.getTime())}else if(s&&Buffer.isBuffer(e)){if(Buffer.allocUnsafe){i=Buffer.allocUnsafe(e.length)}else{i=new Buffer(e.length)}e.copy(i);return i}else{if(typeof r=="undefined"){c=Object.getPrototypeOf(e);i=Object.create(c)}else{i=Object.create(r);c=r}}if(t){var u=o.indexOf(e);if(u!=-1){return a[u]}o.push(e);a.push(i)}for(var l in e){var f;if(c){f=Object.getOwnPropertyDescriptor(c,l)}if(f&&f.set==null){continue}i[l]=_clone(e[l],n-1)}return i}return _clone(e,n)}clone.clonePrototype=function clonePrototype(e){if(e===null)return null;var t=function(){};t.prototype=e;return new t};function __objToStr(e){return Object.prototype.toString.call(e)}clone.__objToStr=__objToStr;function __isDate(e){return typeof e==="object"&&__objToStr(e)==="[object Date]"}clone.__isDate=__isDate;function __isArray(e){return typeof e==="object"&&__objToStr(e)==="[object Array]"}clone.__isArray=__isArray;function __isRegExp(e){return typeof e==="object"&&__objToStr(e)==="[object RegExp]"}clone.__isRegExp=__isRegExp;function __getRegExpFlags(e){var t="";if(e.global)t+="g";if(e.ignoreCase)t+="i";if(e.multiline)t+="m";return t}clone.__getRegExpFlags=__getRegExpFlags;return clone}();if(true&&e.exports){e.exports=t}},2604:function(e,t,n){"use strict";n.r(t);var r=n(772);var i=n.n(r);var o=n(5897);var a=n.n(o);var s=n(4573);var c=n.n(s);var u=n(8303);var l=n.n(u);var f=n(5242);var p=n.n(f);var d=n(462);var h=n.n(d);var m=n(5593);var v=n.n(m);var g=n(2788);var y=n.n(g);var b=n(2547);var w=n.n(b);var x=n(5580);var k=n.n(x);var j=n(1156);var S=n(2385);var E=n(7283);var _=n.n(E);var C=n(3629);var A=n.n(C);var O=n(6873);t["default"]=(async e=>{const{authConfig:t,config:{currentTeam:r},apiUrl:a}=e;const s=Object.assign({},j["legacyArgs"],j["latestArgs"]);let u=null;let f=r||"current user";let d=null;try{d=k()(e.argv.slice(2),s)}catch(e){Object(S["handleError"])(e);return 1}if(d._[0]==="deploy"){d._.shift()}let m=[];if(d._.length>0){m=d._.map(e=>Object(o["resolve"])(process.cwd(),e))}else{m=[process.cwd()]}const g=Object(b["readLocalConfig"])(m[0]);const w=d["--debug"];const x=p()({debug:w});const E={};const F=d["--platform-version"];if(d["--help"]){const e=d._[d._.length-1];const t=e==="deploy-v1"?j["legacyHelp"]:j["latestHelp"];x.print(t());return 2}for(const e of m){try{E[e]=await i.a.lstat(e)}catch(t){const{ext:n}=Object(o["parse"])(e);if(F===1&&!n){E[e]={isFile:()=>false}}else{x.error(`The specified file or directory "${Object(o["basename"])(e)}" does not exist.`);return 1}}}let D=null;const T=Object.keys(E).length===1&&E[m[0]].isFile();if(t&&t.token){D=new c.a({apiUrl:a,token:t.token,currentTeam:r,debug:w});try{({contextName:f,platformVersion:u}=await l()(D))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){x.error(e.message);return 1}throw e}}const I=v()("now.json");const R=h()("version");if(g){const{version:e}=g;if(e){if(typeof e==="number"){if(e!==1&&e!==2){const e=h()(1);const t=h()(2);x.error(`The value of the ${R} property within ${I} can only be ${e} or ${t}.`);return 1}u=e}else{x.error(`The ${R} property inside your ${I} file must be a number.`);return 1}}}if(F){if(F!==1&&F!==2){x.error(`The ${y()("--platform-version")} option must be either ${h()("1")} or ${h()("2")}.`);return 1}u=F}if(u===1&&F!==1&&!d["--docker"]&&!d["--npm"]){const e=await A()({client:D,localConfig:g,projectName:Object(O["default"])({argv:d,nowConfig:g||{},isFile:T,paths:m}),hasServerfile:await Object(C["hasServerfile"])(m[0]),hasDockerfile:await Object(C["hasDockerfile"])(m[0]),pkg:await _()(Object(o["join"])(m[0],"package.json"))});if(e){x.note(e);u=2}}if(u===null||u>1){return n(7771).default(e,f,x,E,g||{},T,j["latestArgs"])}return n(4091).default(e,f,x,j["legacyArgsMri"])})},2608:function(e,t,n){"use strict";var r=n(4247);e.exports=function(e,t,n){if(typeof e!=="string"){throw new TypeError("expected a string")}if(typeof t==="function"){n=t;t=null}if(typeof t==="string"){t={sep:t}}var i=r({sep:"."},t);var o=i.quotes||['"',"'","`"];var a;if(i.brackets===true){a={"<":">","(":")","[":"]","{":"}"}}else if(i.brackets){a=i.brackets}var s=[];var c=[];var u=[""];var l=i.sep;var f=e.length;var p=-1;var d;function expected(){if(a&&c.length){return a[c[c.length-1]]}}while(++p<f){var h=e[p];var m=e[p+1];var v={val:h,idx:p,arr:u,str:e};s.push(v);if(h==="\\"){v.val=keepEscaping(i,e,p)===true?h+m:m;v.escaped=true;if(typeof n==="function"){n(v)}u[u.length-1]+=v.val;p++;continue}if(a&&a[h]){c.push(h);var g=expected();var y=p+1;if(e.indexOf(g,y+1)!==-1){while(c.length&&y<f){var b=e[++y];if(b==="\\"){b++;continue}if(o.indexOf(b)!==-1){y=getClosingQuote(e,b,y+1);continue}g=expected();if(c.length&&e.indexOf(g,y+1)===-1){break}if(a[b]){c.push(b);continue}if(g===b){c.pop()}}}d=y;if(d===-1){u[u.length-1]+=h;continue}h=e.slice(p,d+1);v.val=h;v.idx=p=d}if(o.indexOf(h)!==-1){d=getClosingQuote(e,h,p+1);if(d===-1){u[u.length-1]+=h;continue}if(keepQuotes(h,i)===true){h=e.slice(p,d+1)}else{h=e.slice(p+1,d)}v.val=h;v.idx=p=d}if(typeof n==="function"){n(v,s);h=v.val;p=v.idx}if(v.val===l&&v.split!==false){u.push("");continue}u[u.length-1]+=v.val}return u};function getClosingQuote(e,t,n,r){var i=e.indexOf(t,n);if(e.charAt(i-1)==="\\"){return getClosingQuote(e,t,i+1)}return i}function keepQuotes(e,t){if(t.keepDoubleQuotes===true&&e==='"')return true;if(t.keepSingleQuotes===true&&e==="'")return true;return t.keepQuotes}function keepEscaping(e,t,n){if(typeof e.keepEscaping==="function"){return e.keepEscaping(t,n)}return e.keepEscaping===true||t[n+1]==="\\"}},2616:function(e){e.exports=function(e,t){if(!t)t={};var n=t.hsep===undefined?" ":t.hsep;var r=t.align||[];var i=t.stringLength||function(e){return String(e).length};var o=reduce(e,function(e,t){forEach(t,function(t,n){var r=dotindex(t);if(!e[n]||r>e[n])e[n]=r});return e},[]);var a=map(e,function(e){return map(e,function(e,t){var n=String(e);if(r[t]==="."){var a=dotindex(n);var s=o[t]+(/\./.test(n)?1:2)-(i(n)-a);return n+Array(s).join(" ")}else return n})});var s=reduce(a,function(e,t){forEach(t,function(t,n){var r=i(t);if(!e[n]||r>e[n])e[n]=r});return e},[]);return map(a,function(e){return map(e,function(e,t){var n=s[t]-i(e)||0;var o=Array(Math.max(n+1,1)).join(" ");if(r[t]==="r"||r[t]==="."){return o+e}if(r[t]==="c"){return Array(Math.ceil(n/2+1)).join(" ")+e+Array(Math.floor(n/2+1)).join(" ")}return e+o}).join(n).replace(/\s+$/,"")}).join("\n")};function dotindex(e){var t=/\.[^.]*$/.exec(e);return t?t.index+1:e.length}function reduce(e,t,n){if(e.reduce)return e.reduce(t,n);var r=0;var i=arguments.length>=3?n:e[r++];for(;r<e.length;r++){t(i,e[r],r)}return i}function forEach(e,t){if(e.forEach)return e.forEach(t);for(var n=0;n<e.length;n++){t.call(e,e[n],n)}}function map(e,t){if(e.map)return e.map(t);var n=[];for(var r=0;r<e.length;r++){n.push(t.call(e,e[r],r))}return n}},2617:function(e,t,n){var r=n(662);var i=n(4088);var o=n(4852);var a=n(1301);var s=n(649);var c;var u;if(typeof Symbol==="function"&&typeof Symbol.for==="function"){c=Symbol.for("graceful-fs.queue");u=Symbol.for("graceful-fs.previous")}else{c="___graceful-fs.queue";u="___graceful-fs.previous"}function noop(){}var l=noop;if(s.debuglog)l=s.debuglog("gfs4");else if(/\bgfs4\b/i.test(process.env.NODE_DEBUG||""))l=function(){var e=s.format.apply(s,arguments);e="GFS4: "+e.split(/\n/).join("\nGFS4: ");console.error(e)};if(!global[c]){var f=[];Object.defineProperty(global,c,{get:function(){return f}});r.close=function(e){function close(t,n){return e.call(r,t,function(e){if(!e){retry()}if(typeof n==="function")n.apply(this,arguments)})}Object.defineProperty(close,u,{value:e});return close}(r.close);r.closeSync=function(e){function closeSync(t){e.apply(r,arguments);retry()}Object.defineProperty(closeSync,u,{value:e});return closeSync}(r.closeSync);if(/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")){process.on("exit",function(){l(global[c]);n(3930).equal(global[c].length,0)})}}e.exports=patch(a(r));if(process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH&&!r.__patched){e.exports=patch(r);r.__patched=true}function patch(e){i(e);e.gracefulify=patch;e.createReadStream=createReadStream;e.createWriteStream=createWriteStream;var t=e.readFile;e.readFile=readFile;function readFile(e,n,r){if(typeof n==="function")r=n,n=null;return go$readFile(e,n,r);function go$readFile(e,n,r){return t(e,n,function(t){if(t&&(t.code==="EMFILE"||t.code==="ENFILE"))enqueue([go$readFile,[e,n,r]]);else{if(typeof r==="function")r.apply(this,arguments);retry()}})}}var n=e.writeFile;e.writeFile=writeFile;function writeFile(e,t,r,i){if(typeof r==="function")i=r,r=null;return go$writeFile(e,t,r,i);function go$writeFile(e,t,r,i){return n(e,t,r,function(n){if(n&&(n.code==="EMFILE"||n.code==="ENFILE"))enqueue([go$writeFile,[e,t,r,i]]);else{if(typeof i==="function")i.apply(this,arguments);retry()}})}}var r=e.appendFile;if(r)e.appendFile=appendFile;function appendFile(e,t,n,i){if(typeof n==="function")i=n,n=null;return go$appendFile(e,t,n,i);function go$appendFile(e,t,n,i){return r(e,t,n,function(r){if(r&&(r.code==="EMFILE"||r.code==="ENFILE"))enqueue([go$appendFile,[e,t,n,i]]);else{if(typeof i==="function")i.apply(this,arguments);retry()}})}}var a=e.readdir;e.readdir=readdir;function readdir(e,t,n){var r=[e];if(typeof t!=="function"){r.push(t)}else{n=t}r.push(go$readdir$cb);return go$readdir(r);function go$readdir$cb(e,t){if(t&&t.sort)t.sort();if(e&&(e.code==="EMFILE"||e.code==="ENFILE"))enqueue([go$readdir,[r]]);else{if(typeof n==="function")n.apply(this,arguments);retry()}}}function go$readdir(t){return a.apply(e,t)}if(process.version.substr(0,4)==="v0.8"){var s=o(e);ReadStream=s.ReadStream;WriteStream=s.WriteStream}var c=e.ReadStream;if(c){ReadStream.prototype=Object.create(c.prototype);ReadStream.prototype.open=ReadStream$open}var u=e.WriteStream;if(u){WriteStream.prototype=Object.create(u.prototype);WriteStream.prototype.open=WriteStream$open}Object.defineProperty(e,"ReadStream",{get:function(){return ReadStream},set:function(e){ReadStream=e},enumerable:true,configurable:true});Object.defineProperty(e,"WriteStream",{get:function(){return WriteStream},set:function(e){WriteStream=e},enumerable:true,configurable:true});Object.defineProperty(e,"FileReadStream",{get:function(){return ReadStream},set:function(e){ReadStream=e},enumerable:true,configurable:true});Object.defineProperty(e,"FileWriteStream",{get:function(){return WriteStream},set:function(e){WriteStream=e},enumerable:true,configurable:true});function ReadStream(e,t){if(this instanceof ReadStream)return c.apply(this,arguments),this;else return ReadStream.apply(Object.create(ReadStream.prototype),arguments)}function ReadStream$open(){var e=this;open(e.path,e.flags,e.mode,function(t,n){if(t){if(e.autoClose)e.destroy();e.emit("error",t)}else{e.fd=n;e.emit("open",n);e.read()}})}function WriteStream(e,t){if(this instanceof WriteStream)return u.apply(this,arguments),this;else return WriteStream.apply(Object.create(WriteStream.prototype),arguments)}function WriteStream$open(){var e=this;open(e.path,e.flags,e.mode,function(t,n){if(t){e.destroy();e.emit("error",t)}else{e.fd=n;e.emit("open",n)}})}function createReadStream(t,n){return new e.ReadStream(t,n)}function createWriteStream(t,n){return new e.WriteStream(t,n)}var l=e.open;e.open=open;function open(e,t,n,r){if(typeof n==="function")r=n,n=null;return go$open(e,t,n,r);function go$open(e,t,n,r){return l(e,t,n,function(i,o){if(i&&(i.code==="EMFILE"||i.code==="ENFILE"))enqueue([go$open,[e,t,n,r]]);else{if(typeof r==="function")r.apply(this,arguments);retry()}})}}return e}function enqueue(e){l("ENQUEUE",e[0].name,e[1]);global[c].push(e)}function retry(){var e=global[c].shift();if(e){l("RETRY",e[0].name,e[1]);e[0].apply(null,e[1])}}},2623:function(__unusedmodule,exports,__webpack_require__){"use strict";var __awaiter=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var __importDefault=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(exports,"__esModule",{value:true});const ms_1=__importDefault(__webpack_require__(2229));const url_1=__importDefault(__webpack_require__(774));const http_1=__importDefault(__webpack_require__(4219));const fs_extra_1=__importDefault(__webpack_require__(772));const chalk_1=__importDefault(__webpack_require__(9544));const pluralize_1=__importDefault(__webpack_require__(3759));const raw_body_1=__importDefault(__webpack_require__(2538));const async_listen_1=__importDefault(__webpack_require__(4256));const minimatch_1=__importDefault(__webpack_require__(186));const http_proxy_1=__importDefault(__webpack_require__(2514));const crypto_1=__webpack_require__(2984);const serve_handler_1=__importDefault(__webpack_require__(7706));const chokidar_1=__webpack_require__(9374);const dotenv_1=__webpack_require__(1502);const path_1=__webpack_require__(5897);const directory_1=__importDefault(__webpack_require__(5907));const build_utils_1=__webpack_require__(8215);const once_1=__webpack_require__(9160);const link_1=__importDefault(__webpack_require__(6056));const path_helpers_1=__webpack_require__(3873);const get_dist_tag_1=__webpack_require__(6929);const local_path_1=__importDefault(__webpack_require__(5531));const errors_ts_1=__webpack_require__(8715);const package_json_1=__webpack_require__(8185);const get_files_1=__webpack_require__(1340);const validate_1=__webpack_require__(4133);const is_url_1=__importDefault(__webpack_require__(4444));const router_1=__importDefault(__webpack_require__(3555));const mime_type_1=__importDefault(__webpack_require__(9555));const yarn_installer_1=__webpack_require__(962);const builder_1=__webpack_require__(8469);const errors_1=__webpack_require__(9823);const builder_cache_1=__webpack_require__(2473);const error_1=__importDefault(__webpack_require__(1083));const error_base_1=__importDefault(__webpack_require__(1722));const error_404_1=__importDefault(__webpack_require__(1048));const error_502_1=__importDefault(__webpack_require__(938));const redirect_1=__importDefault(__webpack_require__(8531));function sortBuilders(e,t){if(e&&e.use&&e.use.startsWith("@now/static-build")){return 1}if(t&&t.use&&t.use.startsWith("@now/static-build")){return-1}return 0}class DevServer{constructor(e,t){this.devServerHandler=((e,t)=>__awaiter(this,void 0,void 0,function*(){const n=generateRequestId(this.podId);if(this.stopping){t.setHeader("Connection","close");yield this.send404(e,t,n);return}const r=e.method||"GET";this.output.log(`${chalk_1.default.bold(r)} ${e.url}`);try{const r=yield this.getNowConfig();yield this.serveProjectAsNowV2(e,t,n,r)}catch(e){console.error(e);this.output.debug(e.stack);if(!t.finished){t.statusCode=500;t.end(e.message)}}}));this.serveProjectAsNowV2=((e,t,n,r,i=r.routes,o=0)=>__awaiter(this,void 0,void 0,function*(){const a=url_1.default.parse(e.url||"/");if(typeof a.pathname==="string"&&a.pathname.includes("//")){let r=a.pathname.replace(/\/+/g,"/");if(a.search){r+=a.search}if(e.method==="GET"){yield this.sendRedirect(e,t,n,r,301);return}this.output.debug(`Rewriting URL from "${e.url}" to "${r}"`);e.url=r}yield this.updateBuildMatches(r);if(this.blockingBuildsPromise){this.output.debug("Waiting for builds to complete before handling request");yield this.blockingBuildsPromise}const{dest:s,status:c,headers:u,uri_args:l}=yield router_1.default(e.url,e.method,i,this);Object.entries(u).forEach(([e,n])=>{t.setHeader(e,n)});if(is_url_1.default(s)){const r=url_1.default.parse(s,true);delete r.search;Object.assign(r.query,l);const i=url_1.default.format(r);this.output.debug(`ProxyPass: ${i}`);this.setResponseHeaders(t,n);return proxyPass(e,t,i,this.output)}if(c){t.statusCode=c;if([301,302,303].includes(c)){yield this.sendRedirect(e,t,n,t.getHeader("location"),c);return}}const f=s.replace(/^\//,"");const p=yield findBuildMatch(this.buildMatches,this.files,f,this);if(!p){if(c===404||!this.renderDirectoryListing(e,t,f,n)){yield this.send404(e,t,n)}return}const d=p.buildResults.has(null)?null:f;const h=p.buildResults.get(d);if(h&&Array.isArray(h.routes)&&h.routes.length>0){const i=url_1.default.parse(e.url||"/",true);delete i.search;i.pathname=s;Object.assign(i.query,l);const a=url_1.default.format(i);this.output.debug(`Checking build result's ${h.routes.length} \`routes\` to match ${a}`);const c=yield router_1.default(a,e.method,h.routes,this);if(c.found&&o===0){this.output.debug(`Found matching route ${c.dest} for ${a}`);e.url=a;yield this.serveProjectAsNowV2(e,t,n,r,h.routes,o+1);return}}let m=findAsset(p,f);if((!m||this.shouldRebuild(e))&&o===0){yield this.triggerBuild(p,d,e);m=findAsset(p,f)}if(!m){yield this.send404(e,t,n);return}const{asset:v,assetKey:g}=m;this.output.debug(`Serving asset: [${v.type}] ${g}`);switch(v.type){case"FileFsRef":this.setResponseHeaders(t,n);e.url=`/${path_1.basename(v.fsPath)}`;return serveStaticFile(e,t,path_1.dirname(v.fsPath),{headers:[{source:"**/*",headers:[{key:"Content-Type",value:mime_type_1.default(g)}]}]});case"FileBlob":const r={"Content-Length":v.data.length,"Content-Type":mime_type_1.default(g)};this.setResponseHeaders(t,n,r);t.end(v.data);return;case"Lambda":if(!v.fn){yield this.sendError(e,t,n,"INTERNAL_LAMBDA_NOT_FOUND");return}const i=url_1.default.parse(e.url||"/",true);Object.assign(i.query,l);const o=url_1.default.format({pathname:i.pathname,query:i.query});const a=yield raw_body_1.default(e);const s={method:e.method||"GET",host:e.headers.host,path:o,headers:this.getNowProxyHeaders(e,n),encoding:"base64",body:a.toString("base64")};this.output.debug(`Invoking lambda: "${g}" with ${o}`);let u;try{u=yield v.fn({Action:"Invoke",body:JSON.stringify(s)})}catch(r){console.error(r);yield this.sendError(e,t,n,"NO_STATUS_CODE_FROM_LAMBDA",502);return}if(!c){t.statusCode=u.statusCode}this.setResponseHeaders(t,n,u.headers);let f;if(u.encoding==="base64"&&typeof u.body==="string"){f=Buffer.from(u.body,"base64")}else{f=u.body}return t.end(f);default:yield this.sendError(e,t,n,"UNKNOWN_ASSET_TYPE")}}));this.serveProjectAsStatic=((e,t,n)=>__awaiter(this,void 0,void 0,function*(){const r=e.url?e.url.replace(/^\//,""):"";if(r&&typeof this.files[r]==="undefined"){yield this.send404(e,t,n);return}this.setResponseHeaders(t,n);return serveStaticFile(e,t,this.cwd,{cleanUrls:true})}));this.cwd=e;this.debug=t.debug;this.output=t.output;this.env={};this.buildEnv={};this.files={};this.address="";this.yarnPath="/";this.cachedNowConfig=null;this.server=http_1.default.createServer(this.devServerHandler);this.serverUrlPrinted=false;this.stopping=false;this.buildMatches=new Map;this.inProgressBuilds=new Map;this.getNowConfigPromise=null;this.blockingBuildsPromise=null;this.updateBuildersPromise=null;this.watchAggregationId=null;this.watchAggregationEvents=[];this.watchAggregationTimeout=500;this.filter=(e=>Boolean(e));this.podId=Math.random().toString(32).slice(-5)}exit(e=1){return __awaiter(this,void 0,void 0,function*(){yield this.stop(e);process.exit(e)})}enqueueFsEvent(e,t){this.watchAggregationEvents.push({type:e,path:t});if(this.watchAggregationId===null){this.watchAggregationId=setTimeout(()=>{const e=this.watchAggregationEvents.slice();this.watchAggregationEvents.length=0;this.watchAggregationId=null;this.handleFilesystemEvents(e)},this.watchAggregationTimeout)}}handleFilesystemEvents(e){return __awaiter(this,void 0,void 0,function*(){this.output.debug(`Filesystem watcher notified of ${e.length} events`);const t=new Set;const n=new Set;const r=[];for(const e of this.buildMatches.values()){for(const t of e.buildResults.values()){if(t.distPath){r.push(t.distPath)}}}e=e.filter(e=>r.every(t=>!e.path.startsWith(t)));for(const r of e){if(r.type==="add"){yield this.handleFileCreated(r.path,t,n)}else if(r.type==="unlink"){this.handleFileDeleted(r.path,t,n)}else if(r.type==="change"){yield this.handleFileModified(r.path,t,n)}}const i=yield this.getNowConfig(false);yield this.updateBuildMatches(i);const o=[...t];const a=[...n];const s=new Map;for(const e of this.buildMatches.values()){for(const[t,n]of e.buildResults){if(s.has(n))continue;if(Array.isArray(n.watch)){for(const r of n.watch){if(minimatches(o,r)||minimatches(a,r)){s.set(n,[t,e]);break}}}}}if(s.size>0){this.output.debug(`Triggering ${s.size} rebuilds`);if(o.length>0){this.output.debug(`Files changed: ${o.join(", ")}`)}if(a.length>0){this.output.debug(`Files removed: ${a.join(", ")}`)}for(const[e,[t,n]]of s){if(t===null||(yield shouldServe(n,this.files,t,this))){this.triggerBuild(n,t,null,e,o,a).catch(e=>{this.output.warn(`An error occurred while rebuilding ${n.src}:`);console.error(e.stack)})}else{this.output.debug(`Not rebuilding because \`shouldServe()\` returned \`false\` for "${n.use}" request path "${t}"`)}}}})}handleFileCreated(e,t,n){return __awaiter(this,void 0,void 0,function*(){const r=path_helpers_1.relative(this.cwd,e);try{this.files[r]=yield build_utils_1.FileFsRef.fromFsPath({fsPath:e});fileChanged(r,t,n);this.output.debug(`File created: ${r}`)}catch(e){if(e.code==="ENOENT"){this.output.debug(`File created, but has since been deleted: ${r}`);fileRemoved(r,this.files,t,n)}else{throw e}}})}handleFileDeleted(e,t,n){const r=path_helpers_1.relative(this.cwd,e);this.output.debug(`File deleted: ${r}`);fileRemoved(r,this.files,t,n)}handleFileModified(e,t,n){return __awaiter(this,void 0,void 0,function*(){const r=path_helpers_1.relative(this.cwd,e);try{this.files[r]=yield build_utils_1.FileFsRef.fromFsPath({fsPath:e});fileChanged(r,t,n);this.output.debug(`File modified: ${r}`)}catch(e){if(e.code==="ENOENT"){this.output.debug(`File modified, but has since been deleted: ${r}`);fileRemoved(r,this.files,t,n)}else{throw e}}})}updateBuildMatches(e,t=false){return __awaiter(this,void 0,void 0,function*(){const n=this.resolveBuildFiles(this.files);const r=yield builder_1.getBuildMatches(e,this.cwd,this.yarnPath,this.output,n);const i=r.map(e=>e.src);if(t&&n.length===0){this.output.warn("There are no files (or only files starting with a dot) inside your deployment.")}for(const e of this.buildMatches.keys()){if(!i.includes(e)){this.output.debug(`Removing build match for "${e}"`);this.buildMatches.delete(e)}}const o=[];for(const n of r){const r=this.buildMatches.get(n.src);if(!r||r.use!==n.use){this.output.debug(`Adding build match for "${n.src}"`);this.buildMatches.set(n.src,n);if(!t&&needsBlockingBuild(n)){const t=builder_1.executeBuild(e,this,this.files,n,null,false);o.push(t)}}}if(o.length>0){const e=()=>{this.blockingBuildsPromise=null};this.blockingBuildsPromise=Promise.all(o).then(e).catch(e)}this.buildMatches=new Map([...this.buildMatches.entries()].sort((e,t)=>{return sortBuilders(e[1],t[1])}))})}invalidateBuildMatches(nowConfig,updatedBuilders){return __awaiter(this,void 0,void 0,function*(){if(updatedBuilders.length===0){this.output.debug("No builders were updated");return}const _require=typeof require==="function"?eval("require"):__webpack_require__(1494);const builderDir=yield builder_cache_1.builderDirPromise;const updatedBuilderPaths=updatedBuilders.map(e=>path_1.join(builderDir,"node_modules",e));for(const e of Object.keys(_require.cache)){for(const t of updatedBuilderPaths){if(e.startsWith(t)){this.output.debug(`Purging require cache for "${e}"`);delete _require.cache[e]}}}for(const e of this.buildMatches.values()){const{src:t,builderWithPkg:{package:n}}=e;if(n.name==="@now/static")continue;if(n.name&&updatedBuilders.includes(n.name)){this.buildMatches.delete(t);this.output.debug(`Invalidated build match for "${t}"`)}}yield this.updateBuildMatches(nowConfig)})}getLocalEnv(e,t){return __awaiter(this,void 0,void 0,function*(){const n=path_1.join(this.cwd,e);let r={};try{const e=yield fs_extra_1.default.readFile(n,"utf8");this.output.debug(`Using local env: ${n}`);r=dotenv_1.parse(e)}catch(e){if(e.code!=="ENOENT"){throw e}}try{return this.validateEnvConfig(e,t||{},r)}catch(e){if(e instanceof errors_ts_1.MissingDotenvVarsError){this.output.error(e.message);yield this.exit()}else{throw e}}return{}})}getNowConfig(e=true,t=false){return __awaiter(this,void 0,void 0,function*(){if(this.getNowConfigPromise){return this.getNowConfigPromise}this.getNowConfigPromise=this._getNowConfig(e,t);try{return yield this.getNowConfigPromise}finally{this.getNowConfigPromise=null}})}_getNowConfig(e=true,t=false){return __awaiter(this,void 0,void 0,function*(){if(e&&this.cachedNowConfig){this.output.debug("Using cached `now.json` config");return this.cachedNowConfig}const n=yield this.getPackageJson();let r=this.cachedNowConfig||{version:2};if(this.cachedNowConfig){delete this.cachedNowConfig.builds;delete this.cachedNowConfig.routes}try{this.output.debug("Reading `now.json` file");const e=local_path_1.default(this.cwd);r=JSON.parse(yield fs_extra_1.default.readFile(e,"utf8"))}catch(e){if(e.code==="ENOENT"){this.output.debug("No `now.json` file present")}else if(e.name==="SyntaxError"){this.output.warn(`There is a syntax error in the \`now.json\` file: ${e.message}`)}else{throw e}}if(!r.builds||r.builds.length===0){const e=yield get_files_1.getAllProjectFiles(this.cwd,this.output);const t=e.filter(this.filter);this.output.debug(`Found ${e.length} and `+`filtered out ${e.length-t.length} files`);const{builders:i,warnings:o,errors:a}=yield build_utils_1.detectBuilders(t,n,{tag:get_dist_tag_1.getDistTag(package_json_1.version)==="canary"?"canary":"latest"});if(a){this.output.error(a[0].message);yield this.exit()}if(o&&o.length>0){o.forEach(e=>this.output.warn(e.message))}if(i){const{defaultRoutes:e,error:n}=yield build_utils_1.detectRoutes(t,i);r.builds=r.builds||[];r.builds.push(...i);if(n){this.output.error(n.message);yield this.exit()}else{r.routes=r.routes||[];r.routes.push(...e)}}}if(!r.builds||r.builds.length===0){if(t){this.output.note(`Serving all files as static`)}}else if(Array.isArray(r.builds)){r.builds.sort(sortBuilders)}yield this.validateNowConfig(r);this.cachedNowConfig=r;return r})}getPackageJson(){return __awaiter(this,void 0,void 0,function*(){const e=path_1.join(this.cwd,"package.json");let t=null;this.output.debug("Reading `package.json` file");try{t=JSON.parse(yield fs_extra_1.default.readFile(e,"utf8"))}catch(e){if(e.code==="ENOENT"){this.output.debug("No `package.json` file present")}else if(e.name==="SyntaxError"){this.output.warn(`There is a syntax error in the \`package.json\` file: ${e.message}`)}else{throw e}}return t})}validateNowConfig(e){return __awaiter(this,void 0,void 0,function*(){if(e.version===1){this.output.error("Only `version: 2` is supported by `now dev`");yield this.exit(1)}const t=validate_1.validateNowConfigBuilds(e);if(t){this.output.error(t);yield this.exit(1)}const n=validate_1.validateNowConfigRoutes(e);if(n){this.output.error(n);yield this.exit(1)}})}validateEnvConfig(e,t={},n={}){const r=Object.entries(t).filter(([e,t])=>typeof t==="string"&&t.startsWith("@")&&!hasOwnProperty(n,e)).map(([e])=>e);if(r.length>0){throw new errors_ts_1.MissingDotenvVarsError(e,r)}const i=Object.assign({},t,n);let o=false;for(const t of Object.keys(i)){if(!/^[a-zA-Z][a-zA-Z0-9_]*$/.test(t)){this.output.warn(`Ignoring ${e.split(".").slice(1).reverse().join(" ")} var ${JSON.stringify(t)} because name is invalid`);o=true;delete i[t]}}if(o){this.output.log("Env var names must start with letters, and can only contain alphanumeric characters and underscores")}return i}resolveBuildFiles(e){return Object.keys(e).filter(this.filter)}start(...e){return __awaiter(this,void 0,void 0,function*(){if(!fs_extra_1.default.existsSync(this.cwd)){throw new Error(`${chalk_1.default.bold(this.cwd)} doesn't exist`)}if(!fs_extra_1.default.lstatSync(this.cwd).isDirectory()){throw new Error(`${chalk_1.default.bold(this.cwd)} is not a directory`)}this.yarnPath=yield yarn_installer_1.getYarnPath(this.output);const t=yield get_files_1.createIgnore(path_1.join(this.cwd,".nowignore"));this.filter=t.createFilter();const n=yield this.getNowConfig(false,true);const r=n.build||{};const[i,o]=yield Promise.all([this.getLocalEnv(".env",n.env),this.getLocalEnv(".env.build",r.env)]);Object.assign(process.env,o);this.env=i;this.buildEnv=o;const a={output:this.output,isBuilds:true};const s=yield get_files_1.staticFiles(this.cwd,n,a);const c={};for(const e of s){const t=path_helpers_1.relative(this.cwd,e);const{mode:n}=yield fs_extra_1.default.stat(e);c[t]=new build_utils_1.FileFsRef({mode:n,fsPath:e})}this.files=c;const u=new Set((n.builds||[]).filter(e=>e.use).map(e=>e.use));yield builder_cache_1.installBuilders(u,this.yarnPath,this.output);yield this.updateBuildMatches(n,true);this.updateBuildersPromise=builder_cache_1.updateBuilders(u,this.yarnPath,this.output).then(e=>this.invalidateBuildMatches(n,e)).catch(e=>{this.output.error(`Failed to update builders: ${e.message}`);this.output.debug(e.stack)});const l=Array.from(this.buildMatches.values()).filter(needsBlockingBuild);if(l.length>0){this.output.log(`Creating initial ${pluralize_1.default("build",l.length)}`);for(const e of l){yield builder_1.executeBuild(n,this,this.files,e,null,true)}this.output.success("Build completed")}this.watcher=chokidar_1.watch(this.cwd,{ignored:e=>!this.filter(e),ignoreInitial:true,useFsEvents:false,usePolling:false,persistent:true});this.watcher.on("add",e=>{this.enqueueFsEvent("add",e)});this.watcher.on("change",e=>{this.enqueueFsEvent("change",e)});this.watcher.on("unlink",e=>{this.enqueueFsEvent("unlink",e)});this.watcher.on("error",e=>{this.output.error(`Watcher error: ${e}`)});yield once_1.once(this.watcher,"ready");let f=null;while(typeof f!=="string"){try{f=yield async_listen_1.default(this.server,...e)}catch(t){this.output.debug(`Got listen error: ${t.code}`);if(t.code==="EADDRINUSE"){if(typeof e[0]==="number"){this.output.note(`Requested port ${chalk_1.default.yellow(String(e[0]))} is already in use`);e[0]++}else{this.output.error(`Requested socket ${chalk_1.default.cyan(e[0])} is already in use`);process.exit(1)}}else{throw t}}}this.address=f.replace("[::]","localhost").replace("127.0.0.1","localhost");this.output.ready(`Available at ${link_1.default(this.address)}`);this.serverUrlPrinted=true})}stop(e){return __awaiter(this,void 0,void 0,function*(){if(this.stopping)return;this.stopping=true;if(this.serverUrlPrinted){process.stdout.write("\n");this.output.log(`Stopping ${chalk_1.default.bold("`now dev`")} server`)}const t=[];for(const e of this.buildMatches.values()){if(!e.buildOutput)continue;for(const n of Object.values(e.buildOutput)){if(n.type==="Lambda"&&n.fn){t.push(n.fn.destroy())}}}t.push(close(this.server));if(this.watcher){this.watcher.close()}if(this.updateBuildersPromise){t.push(this.updateBuildersPromise)}try{yield Promise.all(t)}catch(t){if(t.code==="ERR_SERVER_NOT_RUNNING"||t.message==="Not running"){process.exit(e||0)}else{throw t}}})}shouldRebuild(e){return e.headers.pragma==="no-cache"||e.headers["cache-control"]==="no-cache"}send404(e,t,n){return __awaiter(this,void 0,void 0,function*(){return this.sendError(e,t,n,"FILE_NOT_FOUND",404)})}sendError(e,t,n,r,i=500){return __awaiter(this,void 0,void 0,function*(){t.statusCode=i;this.setResponseHeaders(t,n);const o=errors_1.generateHttpStatusDescription(i);const a=r||o;const s=errors_1.generateErrorMessage(i,a);let c;const{accept:u="text/plain"}=e.headers;if(u.includes("json")){t.setHeader("content-type","application/json");const e=JSON.stringify({error:{code:i,message:s.title}});c=`${e}\n`}else if(u.includes("html")){t.setHeader("content-type","text/html; charset=utf-8");let e;if(i===404){e=error_404_1.default(Object.assign({},s,{http_status_code:i,http_status_description:o,error_code:a,now_id:n}))}else if(i===502){e=error_502_1.default(Object.assign({},s,{http_status_code:i,http_status_description:o,error_code:a,now_id:n}))}else{e=error_1.default({http_status_code:i,http_status_description:o,now_id:n})}c=error_base_1.default({http_status_code:i,http_status_description:o,view:e})}else{t.setHeader("content-type","text/plain; charset=utf-8");c=`${s.title}\n\n${a}\n`}t.end(c)})}sendRedirect(e,t,n,r,i=302){return __awaiter(this,void 0,void 0,function*(){this.output.debug(`Redirect ${i}: ${r}`);t.statusCode=i;this.setResponseHeaders(t,n,{location:r});let o;const{accept:a="text/plain"}=e.headers;if(a.includes("json")){t.setHeader("content-type","application/json");const e=JSON.stringify({redirect:r,status:String(i)});o=`${e}\n`}else if(a.includes("html")){t.setHeader("content-type","text/html");o=redirect_1.default({location:r,statusCode:i})}else{t.setHeader("content-type","text/plain");o=`Redirecting to ${r} (${i})\n`}t.end(o)})}getRequestIp(e){return e.connection.remoteAddress||"127.0.0.1"}setResponseHeaders(e,t,n={}){const r=Object.assign({"cache-control":"public, max-age=0, must-revalidate"},n,{server:"now","x-now-trace":"dev1","x-now-id":t,"x-now-cache":"MISS"});for(const[t,n]of Object.entries(r)){e.setHeader(t,n)}}getNowProxyHeaders(e,t){const n=this.getRequestIp(e);const{host:r}=e.headers;return Object.assign({},e.headers,{Connection:"close","x-forwarded-host":r,"x-forwarded-proto":"http","x-forwarded-for":n,"x-real-ip":n,"x-now-trace":"dev1","x-now-deployment-url":r,"x-now-id":t,"x-now-log-id":t.split("-")[2],"x-zeit-co-forwarded-for":n})}triggerBuild(e,t,n,r,i,o){return __awaiter(this,void 0,void 0,function*(){const a=t===null?e.src:`${e.src}-${t}`;let s=this.inProgressBuilds.get(a);if(s){let e=`De-duping build "${a}"`;if(n)e+=` for "${n.method} ${n.url}"`;this.output.debug(e)}else if(Date.now()-e.buildTimestamp<ms_1.default("2s")){let e=`Skipping build for "${a}" (not older than 2s)`;if(n)e+=` for "${n.method} ${n.url}"`;this.output.debug(e)}else{const c=yield this.getNowConfig();if(r){for(const[t]of Object.entries(r.output)){this.output.debug(`Removing asset "${t}"`);delete e.buildOutput[t]}}let u=`Building asset "${a}"`;if(n)u+=` for "${n.method} ${n.url}"`;this.output.debug(u);s=builder_1.executeBuild(c,this,this.files,e,t,false,i,o);this.inProgressBuilds.set(a,s)}try{yield s}finally{this.output.debug(`Built asset ${a}`);this.inProgressBuilds.delete(a)}})}renderDirectoryListing(e,t,n,r){let i=n;if(i.length>0&&!i.endsWith("/")){i+="/"}const o=new Set;const a=Array.from(this.buildMatches.keys()).filter(e=>{const t=path_1.basename(e);if(t==="now.json"||t===".nowignore"||!e.startsWith(i)){return false}const n=path_helpers_1.relative(i,e);if(n.includes("/")){const e=n.split("/")[0];if(o.has(e)){return false}o.add(e)}return true}).map(e=>{let t=path_1.basename(e);let n="";let r="file";let o;const a=path_helpers_1.relative(i,e);if(a.includes("/")){r="folder";t=a.split("/")[0];o=`/${i}${t}/`}else{n=path_1.extname(e).substring(1);o=`/${i}${t}`}return{type:r,relative:o,ext:n,title:o,base:t}});if(a.length===0){return false}const s=`/${i}`;const c=[{name:s,url:n}];const u=directory_1.default({files:a,paths:c,directory:s});this.setResponseHeaders(t,r);t.setHeader("Content-Type","text/html; charset=utf-8");t.setHeader("Content-Length",String(Buffer.byteLength(u,"utf8")));t.end(u);return true}hasFilesystem(e){return __awaiter(this,void 0,void 0,function*(){const t=e.replace(/^\//,"");if(yield findBuildMatch(this.buildMatches,this.files,t,this,true)){return true}return false})}}exports.default=DevServer;function proxyPass(e,t,n,r){const i=http_proxy_1.default.createProxyServer({changeOrigin:true,ws:true,xfwd:true,ignorePath:true,target:n});i.on("error",n=>{if(n.code==="ECONNRESET"){t.end();return}r.error(`Failed to complete request to ${e.url}: ${n}`)});return i.web(e,t)}function serveStaticFile(e,t,n,r){return serve_handler_1.default(e,t,Object.assign({public:n,cleanUrls:false,etag:true},r))}function close(e){return new Promise((t,n)=>{e.close(e=>{if(e){n(e)}else{t()}})})}function generateRequestId(e){return`dev1:${[e,Date.now(),crypto_1.randomBytes(6).toString("hex")].join("-")}`}function hasOwnProperty(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function findBuildMatch(e,t,n,r,i){return __awaiter(this,void 0,void 0,function*(){for(const o of e.values()){if(yield shouldServe(o,t,n,r,i)){return o}}return null})}function shouldServe(e,t,n,r,i){return __awaiter(this,void 0,void 0,function*(){const{src:o,config:a,builderWithPkg:{builder:s}}=e;if(typeof s.shouldServe==="function"){const e=yield s.shouldServe({entrypoint:o,files:t,config:a,requestPath:n,workPath:r.cwd});if(e){return true}}else if(findAsset(e,n)){return true}else if(!i&&(yield findMatchingRoute(e,n,r))){return true}return false})}function findMatchingRoute(e,t,n){return __awaiter(this,void 0,void 0,function*(){const r=`/${t}`;for(const t of e.buildResults.values()){if(!Array.isArray(t.routes))continue;const e=yield router_1.default(r,undefined,t.routes,n);if(e.found){return e}}})}function findAsset(e,t){if(!e.buildOutput){return}let n=t.replace(/\/$/,"");let r=e.buildOutput[t];if(!r){for(const[t,i]of Object.entries(e.buildOutput)){if(isIndex(t)&&dirnameWithoutDot(t)===n){r=i;n=t;break}}}if(r){return{asset:r,assetKey:n}}}function dirnameWithoutDot(e){let t=path_1.dirname(e);if(t==="."){t=""}return t}function isIndex(e){const t=path_1.extname(e);const n=path_1.basename(e,t);return n==="index"}function minimatches(e,t){return e.some(e=>e===t||minimatch_1.default(e,t))}function fileChanged(e,t,n){t.add(e);n.delete(e)}function fileRemoved(e,t,n,r){delete t[e];n.delete(e);r.add(e)}function needsBlockingBuild(e){const{builder:t}=e.builderWithPkg;return typeof t.shouldServe!=="function"}},2628:function(e){function RetryOperation(e,t){if(typeof t==="boolean"){t={forever:t}}this._originalTimeouts=JSON.parse(JSON.stringify(e));this._timeouts=e;this._options=t||{};this._maxRetryTime=t&&t.maxRetryTime||Infinity;this._fn=null;this._errors=[];this._attempts=1;this._operationTimeout=null;this._operationTimeoutCb=null;this._timeout=null;this._operationStart=null;if(this._options.forever){this._cachedTimeouts=this._timeouts.slice(0)}}e.exports=RetryOperation;RetryOperation.prototype.reset=function(){this._attempts=1;this._timeouts=this._originalTimeouts};RetryOperation.prototype.stop=function(){if(this._timeout){clearTimeout(this._timeout)}this._timeouts=[];this._cachedTimeouts=null};RetryOperation.prototype.retry=function(e){if(this._timeout){clearTimeout(this._timeout)}if(!e){return false}var t=(new Date).getTime();if(e&&t-this._operationStart>=this._maxRetryTime){this._errors.unshift(new Error("RetryOperation timeout occurred"));return false}this._errors.push(e);var n=this._timeouts.shift();if(n===undefined){if(this._cachedTimeouts){this._errors.splice(this._errors.length-1,this._errors.length);this._timeouts=this._cachedTimeouts.slice(0);n=this._timeouts.shift()}else{return false}}var r=this;var i=setTimeout(function(){r._attempts++;if(r._operationTimeoutCb){r._timeout=setTimeout(function(){r._operationTimeoutCb(r._attempts)},r._operationTimeout);if(r._options.unref){r._timeout.unref()}}r._fn(r._attempts)},n);if(this._options.unref){i.unref()}return true};RetryOperation.prototype.attempt=function(e,t){this._fn=e;if(t){if(t.timeout){this._operationTimeout=t.timeout}if(t.cb){this._operationTimeoutCb=t.cb}}var n=this;if(this._operationTimeoutCb){this._timeout=setTimeout(function(){n._operationTimeoutCb()},n._operationTimeout)}this._operationStart=(new Date).getTime();this._fn(this._attempts)};RetryOperation.prototype.try=function(e){console.log("Using RetryOperation.try() is deprecated");this.attempt(e)};RetryOperation.prototype.start=function(e){console.log("Using RetryOperation.start() is deprecated");this.attempt(e)};RetryOperation.prototype.start=RetryOperation.prototype.try;RetryOperation.prototype.errors=function(){return this._errors};RetryOperation.prototype.attempts=function(){return this._attempts};RetryOperation.prototype.mainError=function(){if(this._errors.length===0){return null}var e={};var t=null;var n=0;for(var r=0;r<this._errors.length;r++){var i=this._errors[r];var o=i.message;var a=(e[o]||0)+1;e[o]=a;if(a>=n){t=i;n=a}}return t}},2650:function(e,t,n){var r=n(4810);var i=Object.prototype.toString;e.exports=function kindOf(e){if(typeof e==="undefined"){return"undefined"}if(e===null){return"null"}if(e===true||e===false||e instanceof Boolean){return"boolean"}if(typeof e==="string"||e instanceof String){return"string"}if(typeof e==="number"||e instanceof Number){return"number"}if(typeof e==="function"||e instanceof Function){return"function"}if(typeof Array.isArray!=="undefined"&&Array.isArray(e)){return"array"}if(e instanceof RegExp){return"regexp"}if(e instanceof Date){return"date"}var t=i.call(e);if(t==="[object RegExp]"){return"regexp"}if(t==="[object Date]"){return"date"}if(t==="[object Arguments]"){return"arguments"}if(t==="[object Error]"){return"error"}if(r(e)){return"buffer"}if(t==="[object Set]"){return"set"}if(t==="[object WeakSet]"){return"weakset"}if(t==="[object Map]"){return"map"}if(t==="[object WeakMap]"){return"weakmap"}if(t==="[object Symbol]"){return"symbol"}if(t==="[object Int8Array]"){return"int8array"}if(t==="[object Uint8Array]"){return"uint8array"}if(t==="[object Uint8ClampedArray]"){return"uint8clampedarray"}if(t==="[object Int16Array]"){return"int16array"}if(t==="[object Uint16Array]"){return"uint16array"}if(t==="[object Int32Array]"){return"int32array"}if(t==="[object Uint32Array]"){return"uint32array"}if(t==="[object Float32Array]"){return"float32array"}if(t==="[object Float64Array]"){return"float64array"}return"object"}},2655:function(e,t,n){"use strict";const r=n(662);const i=n(5897);const o=n(5414).copySync;const a=n(7780).removeSync;const s=n(1908).mkdirpSync;const c=n(7609);function moveSync(e,t,n){n=n||{};const r=n.overwrite||n.clobber||false;const{srcStat:o}=c.checkPathsSync(e,t,"move");c.checkParentPathsSync(e,o,t,"move");s(i.dirname(t));return doRename(e,t,r)}function doRename(e,t,n){if(n){a(t);return rename(e,t,n)}if(r.existsSync(t))throw new Error("dest already exists.");return rename(e,t,n)}function rename(e,t,n){try{r.renameSync(e,t)}catch(r){if(r.code!=="EXDEV")throw r;return moveAcrossDevice(e,t,n)}}function moveAcrossDevice(e,t,n){const r={overwrite:n,errorOnExist:true};o(e,t,r);return a(e)}e.exports=moveSync},2656:function(e){"use strict";e.exports=typeof Symbol==="function"&&typeof Symbol("")==="symbol"},2659:function(e,t,n){"use strict";var r=n(5467);var i=r.freeze;var o=n(4730);var a=o.inherits;var s=o.notEnumerableProp;function subError(e,t){function SubError(n){if(!(this instanceof SubError))return new SubError(n);s(this,"message",typeof n==="string"?n:t);s(this,"name",e);if(Error.captureStackTrace){Error.captureStackTrace(this,this.constructor)}else{Error.call(this)}}a(SubError,Error);return SubError}var c,u;var l=subError("Warning","warning");var f=subError("CancellationError","cancellation error");var p=subError("TimeoutError","timeout error");var d=subError("AggregateError","aggregate error");try{c=TypeError;u=RangeError}catch(e){c=subError("TypeError","type error");u=subError("RangeError","range error")}var h=("join pop push shift unshift slice filter forEach some "+"every map indexOf lastIndexOf reduce reduceRight sort reverse").split(" ");for(var m=0;m<h.length;++m){if(typeof Array.prototype[h[m]]==="function"){d.prototype[h[m]]=Array.prototype[h[m]]}}r.defineProperty(d.prototype,"length",{value:0,configurable:false,writable:true,enumerable:true});d.prototype["isOperational"]=true;var v=0;d.prototype.toString=function(){var e=Array(v*4+1).join(" ");var t="\n"+e+"AggregateError of:"+"\n";v++;e=Array(v*4+1).join(" ");for(var n=0;n<this.length;++n){var r=this[n]===this?"[Circular AggregateError]":this[n]+"";var i=r.split("\n");for(var o=0;o<i.length;++o){i[o]=e+i[o]}r=i.join("\n");t+=r+"\n"}v--;return t};function OperationalError(e){if(!(this instanceof OperationalError))return new OperationalError(e);s(this,"name","OperationalError");s(this,"message",e);this.cause=e;this["isOperational"]=true;if(e instanceof Error){s(this,"message",e.message);s(this,"stack",e.stack)}else if(Error.captureStackTrace){Error.captureStackTrace(this,this.constructor)}}a(OperationalError,Error);var g=Error["__BluebirdErrorTypes__"];if(!g){g=i({CancellationError:f,TimeoutError:p,OperationalError:OperationalError,RejectionError:OperationalError,AggregateError:d});r.defineProperty(Error,"__BluebirdErrorTypes__",{value:g,writable:false,enumerable:false,configurable:false})}e.exports={Error:Error,TypeError:c,RangeError:u,CancellationError:g.CancellationError,OperationalError:g.OperationalError,TimeoutError:g.TimeoutError,AggregateError:g.AggregateError,Warning:l}},2665:function(e,t){function swap(e,t,n){var r=e[t];e[t]=e[n];e[n]=r}function randomIntInRange(e,t){return Math.round(e+Math.random()*(t-e))}function doQuickSort(e,t,n,r){if(n<r){var i=randomIntInRange(n,r);var o=n-1;swap(e,i,r);var a=e[r];for(var s=n;s<r;s++){if(t(e[s],a)<=0){o+=1;swap(e,o,s)}}swap(e,o+1,s);var c=o+1;doQuickSort(e,t,n,c-1);doQuickSort(e,t,c+1,r)}}t.quickSort=function(e,t){doQuickSort(e,t,0,e.length-1)}},2667:function(e,t,n){"use strict";var r=n(9874);e.exports=function isExtendable(e){return r(e)||typeof e==="function"||Array.isArray(e)}},2672:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return formatLogOutput});var r=n(8323);function formatLogOutput(e,t=""){return Object(r["default"])(e).split("\n").map(e=>`${t}${e.replace(/^> /,"")}`)}},2673:function(e){e.exports=require("zlib")},2674:function(e,t,n){"use strict";var r=n(1537);var i=n(1249);var o=/^optional!/;function stripeMethod(e){var t=typeof e.path=="function"?e.path:i.makeURLInterpolator(e.path||"");var n=(e.method||"GET").toUpperCase();var a=e.urlParams||[];var s=e.encode||function(e){return e};return function(){var c=this;var u=[].slice.call(arguments);var l=typeof u[u.length-1]=="function"&&u.pop();var f=this.createUrlData();return this.wrapTimeout(new r(function(r,l){for(var p=0,d=a.length;p<d;++p){var h=u[0];var m=a[p];var v=o.test(m);m=m.replace(o,"");if(m=="id"&&typeof h!=="string"){var g=this.createResourcePathWithSymbols(e.path);var y=new Error('Stripe: "id" must be a string, but got: '+typeof h+" (on API request to `"+n+" "+g+"`)");l(y);return}if(!h){if(v){f[m]="";continue}var g=this.createResourcePathWithSymbols(e.path);var y=new Error('Stripe: Argument "'+a[p]+'" required, but got: '+h+" (on API request to `"+n+" "+g+"`)");l(y);return}f[m]=u.shift()}var b;try{b=s(i.getDataFromArgs(u))}catch(e){l(e)}var w=i.getOptionsFromArgs(u);if(u.length){var g=this.createResourcePathWithSymbols(e.path);var y=new Error("Stripe: Unknown arguments ("+u+"). Did you mean to pass an options "+"object? See https://github.com/stripe/stripe-node/wiki/Passing-Options."+" (on API request to "+n+" `"+g+"`)");l(y);return}var x=this.createFullPath(t,f);var k={headers:Object.assign(w.headers,e.headers)};if(e.validator){try{e.validator(b,k)}catch(y){l(y);return}}function requestCallback(t,n){if(t){l(t)}else{r(e.transformResponseData?e.transformResponseData(n):n)}}c._request(n,x,b,w.auth,k,requestCallback)}.bind(this)),l)}}e.exports=stripeMethod},2675:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);const o=e=>`${Object(r["yellow"])("> NOTE:")} ${e}`;t["default"]=o},2676:function(e,t,n){const r=n(8859);const i=n(649);t.init=init;t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.colors=[6,2,3,4,5,1];try{const e=n(4581);if(e&&(e.stderr||e).level>=2){t.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221]}}catch(e){}t.inspectOpts=Object.keys(process.env).filter(e=>{return/^debug_/i.test(e)}).reduce((e,t)=>{const n=t.substring(6).toLowerCase().replace(/_([a-z])/g,(e,t)=>{return t.toUpperCase()});let r=process.env[t];if(/^(yes|on|true|enabled)$/i.test(r)){r=true}else if(/^(no|off|false|disabled)$/i.test(r)){r=false}else if(r==="null"){r=null}else{r=Number(r)}e[n]=r;return e},{});function useColors(){return"colors"in t.inspectOpts?Boolean(t.inspectOpts.colors):r.isatty(process.stderr.fd)}function formatArgs(t){const{namespace:n,useColors:r}=this;if(r){const r=this.color;const i="[3"+(r<8?r:"8;5;"+r);const o=` ${i};1m${n} `;t[0]=o+t[0].split("\n").join("\n"+o);t.push(i+"m+"+e.exports.humanize(this.diff)+"")}else{t[0]=getDate()+n+" "+t[0]}}function getDate(){if(t.inspectOpts.hideDate){return""}return(new Date).toISOString()+" "}function log(...e){return process.stderr.write(i.format(...e)+"\n")}function save(e){if(e){process.env.DEBUG=e}else{delete process.env.DEBUG}}function load(){return process.env.DEBUG}function init(e){e.inspectOpts={};const n=Object.keys(t.inspectOpts);for(let r=0;r<n.length;r++){e.inspectOpts[n[r]]=t.inspectOpts[n[r]]}}e.exports=n(4937)(t);const{formatters:o}=e.exports;o.o=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts).replace(/\s*\n\s*/g," ")};o.O=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts)}},2680:function(e,t,n){var r=n(4219);var i=n(1153);var o=n(3132);e.exports=Response;function Response(e,t){t=t||{};this.url=t.url;this.status=t.status||200;this.statusText=t.statusText||r.STATUS_CODES[this.status];this.headers=new i(t.headers);this.ok=this.status>=200&&this.status<300;o.call(this,e,t)}Response.prototype=Object.create(o.prototype);Response.prototype.clone=function(){return new Response(this._clone(this),{url:this.url,status:this.status,statusText:this.statusText,headers:this.headers,ok:this.ok})}},2688:function(e,t,n){"use strict";const r=n(2865);const i=e=>typeof e==="string"?e.replace(r(),""):e;e.exports=i;e.exports.default=i},2701:function(e,t){"use strict";var n=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});function getDeploymentInstances(e,t,r){return n(this,void 0,void 0,function*(){return e.fetch(`/v3/now/deployments/${encodeURIComponent(t)}/instances?init=1&requestId=${r}`)})}t.default=getDeploymentInstances},2704:function(e){"use strict";e.exports=eventListenerCount;function eventListenerCount(e,t){return e.listeners(t).length}},2708:function(e,t,n){"use strict";const r=n(3515);const i=n(5423);function fbind(e,t){return function bound(){return e.apply(t,arguments)}}class ResourceRequest extends r{constructor(e,t){super(t);this._creationTimestamp=Date.now();this._timeout=null;if(e!==undefined){this.setTimeout(e)}}setTimeout(e){if(this._state!==ResourceRequest.PENDING){return}const t=parseInt(e,10);if(isNaN(t)||t<=0){throw new Error("delay must be a positive int")}const n=Date.now()-this._creationTimestamp;if(this._timeout){this.removeTimeout()}this._timeout=setTimeout(fbind(this._fireTimeout,this),Math.max(t-n,0))}removeTimeout(){if(this._timeout){clearTimeout(this._timeout)}this._timeout=null}_fireTimeout(){this.reject(new i.TimeoutError("ResourceRequest timed out"))}reject(e){this.removeTimeout();super.reject(e)}resolve(e){this.removeTimeout();super.resolve(e)}}e.exports=ResourceRequest},2721:function(e){e.exports=require("querystring")},2724:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(5897);const a=i(n(9052));const s=i(n(6127));const c=n(4362);const u=s.default("@zeit/fun:runtimes/go1.x");function _go(e){return function go(...t){u("Exec %o",`go ${t.join(" ")}`);return a.default("go",t,Object.assign({stdio:"inherit"},e))}}function init({cacheDir:e}){return r(this,void 0,void 0,function*(){const t=o.join(e,"bootstrap.go");const n=o.join(e,"go");const r=o.join(n,"src","bootstrap");yield c.mkdirp(r);yield c.copyFile(t,o.join(r,"bootstrap.go"));const i=_go({cwd:r,env:Object.assign({},process.env,{GOPATH:n})});const a=o.join(e,"bootstrap");u("Compiling Go runtime binary %o -> %o",t,a);yield i("get");yield i("build","-o",a,"bootstrap.go");yield c.remove(n)})}t.init=init},2728:function(e,t,n){"use strict";const r=n(662);const i=n(1274);function type(e,t,n){if(typeof n!=="string"){return Promise.reject(new TypeError(`Expected a string, got ${typeof n}`))}return i(r[e])(n).then(e=>e[t]())}function typeSync(e,t,n){if(typeof n!=="string"){throw new TypeError(`Expected a string, got ${typeof n}`)}return r[e](n)[t]()}t.file=type.bind(null,"stat","isFile");t.dir=type.bind(null,"stat","isDirectory");t.symlink=type.bind(null,"lstat","isSymbolicLink");t.fileSync=typeSync.bind(null,"statSync","isFile");t.dirSync=typeSync.bind(null,"statSync","isDirectory");t.symlinkSync=typeSync.bind(null,"lstatSync","isSymbolicLink")},2730:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(5627).mkdirs;const a=n(7346).pathExists;const s=n(1676).utimesMillis;const c=Symbol("notExist");function copy(e,t,n,r){if(typeof n==="function"&&!r){r=n;n={}}else if(typeof n==="function"){n={filter:n}}r=r||function(){};n=n||{};n.clobber="clobber"in n?!!n.clobber:true;n.overwrite="overwrite"in n?!!n.overwrite:n.clobber;if(n.preserveTimestamps&&process.arch==="ia32"){console.warn(`fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269`)}checkPaths(e,t,(i,o)=>{if(i)return r(i);if(n.filter)return handleFilter(checkParentDir,o,e,t,n,r);return checkParentDir(o,e,t,n,r)})}function checkParentDir(e,t,n,r,s){const c=i.dirname(n);a(c,(i,a)=>{if(i)return s(i);if(a)return startCopy(e,t,n,r,s);o(c,i=>{if(i)return s(i);return startCopy(e,t,n,r,s)})})}function handleFilter(e,t,n,r,i,o){Promise.resolve(i.filter(n,r)).then(a=>{if(a){if(t)return e(t,n,r,i,o);return e(n,r,i,o)}return o()},e=>o(e))}function startCopy(e,t,n,r,i){if(r.filter)return handleFilter(getStats,e,t,n,r,i);return getStats(e,t,n,r,i)}function getStats(e,t,n,i,o){const a=i.dereference?r.stat:r.lstat;a(t,(r,a)=>{if(r)return o(r);if(a.isDirectory())return onDir(a,e,t,n,i,o);else if(a.isFile()||a.isCharacterDevice()||a.isBlockDevice())return onFile(a,e,t,n,i,o);else if(a.isSymbolicLink())return onLink(e,t,n,i,o)})}function onFile(e,t,n,r,i,o){if(t===c)return copyFile(e,n,r,i,o);return mayCopyFile(e,n,r,i,o)}function mayCopyFile(e,t,n,i,o){if(i.overwrite){r.unlink(n,r=>{if(r)return o(r);return copyFile(e,t,n,i,o)})}else if(i.errorOnExist){return o(new Error(`'${n}' already exists`))}else return o()}function copyFile(e,t,n,i,o){if(typeof r.copyFile==="function"){return r.copyFile(t,n,t=>{if(t)return o(t);return setDestModeAndTimestamps(e,n,i,o)})}return copyFileFallback(e,t,n,i,o)}function copyFileFallback(e,t,n,i,o){const a=r.createReadStream(t);a.on("error",e=>o(e)).once("open",()=>{const t=r.createWriteStream(n,{mode:e.mode});t.on("error",e=>o(e)).on("open",()=>a.pipe(t)).once("close",()=>setDestModeAndTimestamps(e,n,i,o))})}function setDestModeAndTimestamps(e,t,n,i){r.chmod(t,e.mode,r=>{if(r)return i(r);if(n.preserveTimestamps){return s(t,e.atime,e.mtime,i)}return i()})}function onDir(e,t,n,r,i,o){if(t===c)return mkDirAndCopy(e,n,r,i,o);if(t&&!t.isDirectory()){return o(new Error(`Cannot overwrite non-directory '${r}' with directory '${n}'.`))}return copyDir(n,r,i,o)}function mkDirAndCopy(e,t,n,i,o){r.mkdir(n,a=>{if(a)return o(a);copyDir(t,n,i,t=>{if(t)return o(t);return r.chmod(n,e.mode,o)})})}function copyDir(e,t,n,i){r.readdir(e,(r,o)=>{if(r)return i(r);return copyDirItems(o,e,t,n,i)})}function copyDirItems(e,t,n,r,i){const o=e.pop();if(!o)return i();return copyDirItem(e,o,t,n,r,i)}function copyDirItem(e,t,n,r,o,a){const s=i.join(n,t);const c=i.join(r,t);checkPaths(s,c,(t,i)=>{if(t)return a(t);startCopy(i,s,c,o,t=>{if(t)return a(t);return copyDirItems(e,n,r,o,a)})})}function onLink(e,t,n,o,a){r.readlink(t,(t,s)=>{if(t)return a(t);if(o.dereference){s=i.resolve(process.cwd(),s)}if(e===c){return r.symlink(s,n,a)}else{r.readlink(n,(t,c)=>{if(t){if(t.code==="EINVAL"||t.code==="UNKNOWN")return r.symlink(s,n,a);return a(t)}if(o.dereference){c=i.resolve(process.cwd(),c)}if(isSrcSubdir(s,c)){return a(new Error(`Cannot copy '${s}' to a subdirectory of itself, '${c}'.`))}if(e.isDirectory()&&isSrcSubdir(c,s)){return a(new Error(`Cannot overwrite '${c}' with '${s}'.`))}return copyLink(s,n,a)})}})}function copyLink(e,t,n){r.unlink(t,i=>{if(i)return n(i);return r.symlink(e,t,n)})}function isSrcSubdir(e,t){const n=i.resolve(e).split(i.sep);const r=i.resolve(t).split(i.sep);return n.reduce((e,t,n)=>e&&r[n]===t,true)}function checkStats(e,t,n){r.stat(e,(e,i)=>{if(e)return n(e);r.stat(t,(e,t)=>{if(e){if(e.code==="ENOENT")return n(null,{srcStat:i,destStat:c});return n(e)}return n(null,{srcStat:i,destStat:t})})})}function checkPaths(e,t,n){checkStats(e,t,(r,i)=>{if(r)return n(r);const{srcStat:o,destStat:a}=i;if(a.ino&&a.ino===o.ino){return n(new Error("Source and destination must not be the same."))}if(o.isDirectory()&&isSrcSubdir(e,t)){return n(new Error(`Cannot copy '${e}' to a subdirectory of itself, '${t}'.`))}return n(null,a)})}e.exports=copy},2736:function(e,t,n){"use strict";n.r(t);var r=n(2721);var i=n.n(r);var o=n(4874);var a=n.n(o);var s=n(2325);var c=n.n(s);var u=n(2399);var l=n.n(u);var f=n(5242);var p=n.n(f);async function printEvents(e,t,n=null,{mode:r,onOpen:a=(()=>{}),onEvent:s,quiet:u,debugEnabled:f,findOpts:d}={}){const{log:h,debug:m}=p()({debug:f});let v=false;function callOnOpenOnce(){if(v)return;v=true;a()}const g=i.a.stringify({direction:d.direction,limit:d.limit,q:d.query,types:(d.types||[]).join(","),since:d.since,until:d.until,instanceId:d.instanceId,follow:d.follow?"1":"",format:"lines"});let y=`/v1/now/deployments/${t}/events?${g}`;let b=`/v3/now/deployments/${t}`;if(n){y+=`&teamId=${n.id}`;b+=`?teamId=${n.id}`}m(`Events ${y}`);let w=0;await l()(async(i,o)=>{if(o>1){m("Retrying events")}const l=await e._fetch(y);if(l.ok){const i=l.readable?await l.readable():l.body;return new Promise((o,l)=>{const p=i.pipe(c.a.parse());let v;if(r==="deploy"){v=function startPoller(){return setTimeout(async()=>{try{const t=await e._fetch(b);if(!t.ok)throw new Error(`Response ${t.status}`);const n=await t.json();if(n.state==="READY"){p.end();finish();return}v=startPoller()}catch(e){p.end();finish(e)}},5e3)}()}let g=false;function finish(e){if(g)return;g=true;callOnOpenOnce();clearTimeout(v);if(e){l(e)}else{o()}}let y=0;const x=e=>{const{event:t}=e;if(t==="state"&&e.payload.value==="READY"){if(r==="deploy"){p.end();finish()}}else{y=Math.max(y,e.date);const t=s(e,callOnOpenOnce);w+=t||0}};let k=false;const j=c=>{if(g||k)return;k=true;w++;callOnOpenOnce();const b=`Deployment event stream error: ${c.message}`;if(!d.follow){h(b);return}m(b);clearTimeout(v);p.destroy(c);i.destroy(c);const x={...d,since:y};setTimeout(()=>{printEvents(e,t,n,{mode:r,onOpen:a,onEvent:s,quiet:u,debugEnabled:f,findOpts:x}).then(o,l)},2e3)};p.on("end",finish);p.on("data",x);p.on("error",j);i.on("error",j)})}callOnOpenOnce();const p=new Error(`Deployment events status ${l.status}`);if(l.status<500){i(p)}else{throw p}},{retries:4,onRetry:e=>{if(!u&&w){process.stdout.write(Object(o["eraseLines"])(w+1));w=0}h(`Deployment state polling error: ${e.message}`)}})}t["default"]=printEvents},2740:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(6262);const a=i(n(5125));const s=i(n(1737));const c=i(n(6127));const u=n(2673);const l=n(5897);const f=n(4362);const p=n(8031);const d=c.default("@zeit/fun:install-node");function generateNodeTarballUrl(e,t=process.platform,n=process.arch){if(!e.startsWith("v")){e=`v${e}`}let r;let i=t;if(t==="win32"){r="zip";i="win"}else{r="tar.gz"}return`https://nodejs.org/dist/${e}/node-${e}-${i}-${n}.${r}`}t.generateNodeTarballUrl=generateNodeTarballUrl;function installNode(e,t,n=process.platform,i=process.arch){return r(this,void 0,void 0,function*(){const r=generateNodeTarballUrl(t,n,i);d("Downloading Node.js %s tarball %o",t,r);const c=yield s.default(r);if(!c.ok){throw new Error(`HTTP request failed: ${c.status}`)}if(n==="win32"){const n=l.join(e,"bin");const i=l.basename(r);const o=l.join(e,i);d("Saving Node.js %s zip file to %o",t,o);yield a.default(c.body,f.createWriteStream(o));d("Extracting Node.js %s zip file to %o",t,n);const s=yield p.zipFromFile(o);yield p.unzip(s,n,{strip:1})}else{d("Extracting Node.js %s tarball to %o",t,e);yield a.default(c.body,u.createGunzip(),o.extract({strip:1,C:e}))}})}t.installNode=installNode},2763:function(e){"use strict";e.exports=function(e){if(typeof e!=="string"){throw new TypeError("Expected a string, got "+typeof e)}e=e.trim();if(/^\.*\/|^(?!localhost)\w+:/.test(e)){return e}return e.replace(/^(?!(?:\w+:)?\/\/)/,"http://")}},2779:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const o=r(n(2984));const a=r(n(3283));const s=n(4316);const c=r(n(6084));const u=n(4132);const l=i(n(2547));const f=l.getConfigFilePath();t.shouldCollectMetrics=(f.collectMetrics===undefined||f.collectMetrics===true)&&process.env.NOW_CLI_COLLECT_METRICS!=="0";t.metrics=(()=>{const e=typeof f.token==="string"?f.token:s.platform()+s.release();const t=s.userInfo().username;const n=o.default.pbkdf2Sync(e,t,1e3,64,"sha512").toString("hex").substring(0,24);return a.default(u.GA_TRACKING_ID,{cid:n,strictCidFormat:false,uid:n,headers:{"User-Agent":c.default}})})},2785:function(e,t,n){var r=n(1075).Server;function createProxyServer(e){return new r(e)}r.createProxyServer=createProxyServer;r.createServer=createProxyServer;r.createProxy=createProxyServer;e.exports=r},2788:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9544));function param(e){return`${i.default.gray('"')}${i.default.bold(e)}${i.default.gray('"')}`}t.default=param},2789:function(e){e.exports=[["0","\0",128],["a1","。",62],["8140"," 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈",9,"+-±×"],["8180","÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇◆□■△▲▽▼※〒→←↑↓〓"],["81b8","∈∋⊆⊇⊂⊃∪∩"],["81c8","∧∨¬⇒⇔∀∃"],["81da","∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬"],["81f0","ʼn♯♭♪†‡¶"],["81fc","◯"],["824f","",9],["8260","",25],["8281","",25],["829f","ぁ",82],["8340","ァ",62],["8380","ム",22],["839f","Α",16,"Σ",6],["83bf","α",16,"σ",6],["8440","А",5,"ЁЖ",25],["8470","а",5,"ёж",7],["8480","о",17],["849f","─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂"],["8740","①",19,"",9],["875f","㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡"],["877e","㍻"],["8780","〝〟№㏍℡㊤",4,"㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪"],["889f","亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭"],["8940","院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円"],["8980","園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改"],["8a40","魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫"],["8a80","橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄"],["8b40","機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救"],["8b80","朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈"],["8c40","掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨"],["8c80","劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向"],["8d40","后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降"],["8d80","項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷"],["8e40","察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止"],["8e80","死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周"],["8f40","宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳"],["8f80","準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾"],["9040","拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨"],["9080","逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線"],["9140","繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻"],["9180","操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只"],["9240","叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄"],["9280","逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓"],["9340","邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬"],["9380","凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入"],["9440","如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅"],["9480","楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美"],["9540","鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷"],["9580","斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋"],["9640","法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆"],["9680","摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒"],["9740","諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲"],["9780","沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯"],["9840","蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕"],["989f","弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲"],["9940","僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭"],["9980","凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨"],["9a40","咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸"],["9a80","噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩"],["9b40","奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀"],["9b80","它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏"],["9c40","廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠"],["9c80","怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛"],["9d40","戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫"],["9d80","捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼"],["9e40","曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎"],["9e80","梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣"],["9f40","檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯"],["9f80","麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌"],["e040","漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝"],["e080","烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱"],["e140","瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿"],["e180","痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬"],["e240","磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰"],["e280","窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆"],["e340","紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷"],["e380","縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋"],["e440","隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤"],["e480","艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈"],["e540","蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬"],["e580","蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞"],["e640","襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧"],["e680","諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊"],["e740","蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜"],["e780","轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮"],["e840","錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙"],["e880","閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰"],["e940","顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃"],["e980","騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈"],["ea40","鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯"],["ea80","黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠堯槇遙瑤凜熙"],["ed40","纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏"],["ed80","塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱"],["ee40","犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙"],["ee80","蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"],["eeef","",9,"¬¦'""],["f040","",62],["f080","",124],["f140","",62],["f180","",124],["f240","",62],["f280","",124],["f340","",62],["f380","",124],["f440","",62],["f480","",124],["f540","",62],["f580","",124],["f640","",62],["f680","",124],["f740","",62],["f780","",124],["f840","",62],["f880","",124],["f940",""],["fa40","",9,"",9,"¬¦'"㈱№℡∵纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊"],["fa80","兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯"],["fb40","涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神"],["fb80","祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙"],["fc40","髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"]]},2790:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return main});var r=n(9544);var i=n.n(r);var o=n(2616);var a=n.n(o);var s=n(5580);var c=n.n(s);var u=n(2417);var l=n(1295);var f=n(2214);var p=n(8685);var d=n.n(p);var h=n(5242);var m=n.n(h);var v=n(4495);var g=n(4999);var y=n.n(g);var b=n(89);var w=n.n(b);var x=n(8950);var k=n.n(x);var j=n(2385);var S=n(4110);var E=n.n(S);var _=n(4573);var C=n.n(_);var A=n(8303);var O=n.n(A);const F="STATIC";const D=()=>{console.log(`\n ${i.a.bold(`${y.a} now inspect`)} <url>\n\n ${i.a.dim("Options:")}\n\n -h, --help Output usage information\n -A ${i.a.bold.underline("FILE")}, --local-config=${i.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${i.a.bold.underline("DIR")}, --global-config=${i.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -t ${i.a.bold.underline("TOKEN")}, --token=${i.a.bold.underline("TOKEN")} Login token\n -d, --debug Debug mode [off]\n -S, --scope Set a custom scope\n\n ${i.a.dim("Examples:")}\n\n ${i.a.gray("")} Get information about a deployment by its unique URL\n\n ${i.a.cyan("$ now inspect my-deployment-ji2fjij2.now.sh")}\n\n ${i.a.gray("-")} Get information about the deployment an alias points to\n\n ${i.a.cyan("$ now inspect my-deployment.now.sh")}\n `)};async function main(e){let t;let n;let r;try{r=c()(e.argv.slice(2))}catch(e){Object(j["handleError"])(e);return 1}if(r["--help"]){D();return 2}const o=e.apiUrl;const s=r["--debug"];const p=m()({debug:s});const{print:h,log:g,error:y}=p;t=r._[1];if(r._.length!==2){y(`${d()("now inspect <url>")} expects exactly one argument`);D();return 1}const{authConfig:{token:b},config:x}=e;const{currentTeam:S}=x;const _=new C.a({apiUrl:o,token:b,currentTeam:S,debug:s});let A=null;try{({contextName:A}=await O()(_))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){p.error(e.message);return 1}throw e}const T=new v["default"]({apiUrl:o,token:b,debug:s,currentTeam:S});const I=Date.now();const R=k()(`Fetching deployment "${t}" in ${i.a.bold(A)}`);try{n=await T.findDeployment(t)}catch(e){R();if(e.status===404){y(`Failed to find deployment "${t}" in ${i.a.bold(A)}`);return 1}if(e.status===403){y(`No permission to access deployment "${t}" in ${i.a.bold(A)}`);return 1}throw e}const{id:P,name:B,state:N,type:z,slot:L,sessionAffinity:M,url:U,created:q,limits:H,version:G,routes:W,readyState:V}=n;const J=G===2;const Y=`/v1/now/deployments/${P}/builds`;const[Z,X,{builds:Q}]=await Promise.all([caught(T.fetch(`/v3/now/deployments/${encodeURIComponent(P)}/instances`)),z===F?null:caught(T.fetch(`/v1/now/deployments/${encodeURIComponent(P)}/events?types=event`)),J?T.fetch(Y):{builds:[]}]);R();g(`Fetched deployment "${U}" in ${i.a.bold(A)} ${w()(Date.now()-I)}`);h("\n");h(i.a.bold(" General\n\n"));h(` ${i.a.cyan("version")}\t${G}\n`);h(` ${i.a.cyan("id")}\t\t${P}\n`);h(` ${i.a.cyan("name")}\t${B}\n`);h(` ${i.a.cyan("readyState")}\t${stateString(N||V)}\n`);if(!J){h(` ${i.a.cyan("type")}\t${z}\n`)}if(L){h(` ${i.a.cyan("slot")}\t${L}\n`)}if(M){h(` ${i.a.cyan("affinity")}\t${M}\n`)}h(` ${i.a.cyan("url")}\t\t${U}\n`);if(q){h(` ${i.a.cyan("createdAt")}\t${new Date(q)} ${w()(Date.now()-q,true)}\n`)}h("\n\n");if(Q.length>0){const e={};for(const t of Q){const{id:n,createdAt:r,readyStateAt:i}=t;e[n]=r?w()(i-r):null}h(i.a.bold(" Builds\n\n"));h(Object(f["default"])(Object(u["default"])(Q,e).toPrint,4));h("\n\n")}if(Array.isArray(W)&&W.length>0){h(i.a.bold(" Routes\n\n"));h(Object(f["default"])(Object(l["default"])(W),4));h(`\n\n`)}if(H){h(i.a.bold(" Limits\n\n"));h(` ${i.a.dim("duration")}\t\t${H.duration} ${w()(H.duration)}\n`);h(` ${i.a.dim("maxConcurrentReqs")}\t${H.maxConcurrentReqs}\n`);h(` ${i.a.dim("timeout")}\t\t${H.timeout} ${w()(H.timeout)}\n`);h("\n")}if(z===F||J){return 0}h(i.a.bold(" Scale\n\n"));let K=0;if(Z instanceof Error){y(`Scale information unavailable: ${Z}`);K=1}else{const e=Object.keys(Z);const t=[["dc","min","max","current"].map(e=>i.a.gray(e))];for(const r of e){const{instances:e}=Z[r];const i=n.scale[r]||{};t.push([r,i.min||0,i.max||0,e.length])}h(`${a()(t,{align:["l","c","c","c"],hsep:" ".repeat(8),stringLength:E.a}).replace(/^(.*)/gm," $1")}\n`);h("\n")}h(i.a.bold(" Events\n\n"));if(X instanceof Error){y(`Events unavailable: ${Z}`);K=1}else if(X){X.forEach(e=>{if(!e.event)return;h(` ${i.a.gray(new Date(e.created).toISOString())} ${e.event} ${getEventMetadata(e)}\n`)});h("\n")}return K}function getEventMetadata({event:e,payload:t}){if(e==="state"){return i.a.bold(t.value)}if(e==="instance-start"||e==="instance-stop"){if(t.dc!=null){return i.a.green(`(${t.dc})`)}}return""}function caught(e){return new Promise(t=>{e.then(t).catch(t)})}function stateString(e){switch(e){case"INITIALIZING":return i.a.yellow(e);case"ERROR":return i.a.red(e);case"READY":return e;default:return i.a.gray("UNKNOWN")}}},2806:function(e,t,n){e.exports={read:read,write:write};var r=n(9261);var i=n(3062).Buffer;var o=n(2046);var a=n(5271);var s=n(120);var c=n(1946);var u=n(9755);var l=/^([a-z0-9-]+)[ \t]+([a-zA-Z0-9+\/]+[=]*)([ \t]+([^ \t][^\n]*[\n]*)?)?$/;var f=/^([a-z0-9-]+)[ \t\n]+([a-zA-Z0-9+\/][a-zA-Z0-9+\/ \t\n=]*)([^a-zA-Z0-9+\/ \t\n=].*)?$/;function read(e,t){if(typeof e!=="string"){r.buffer(e,"buf");e=e.toString("ascii")}var n=e.trim().replace(/[\\\r]/g,"");var a=n.match(l);if(!a)a=n.match(f);r.ok(a,"key must match regex");var s=o.algToKeyType(a[1]);var c=i.from(a[2],"base64");var u;var p={};if(a[4]){try{u=o.read(c)}catch(e){a=n.match(f);r.ok(a,"key must match regex");c=i.from(a[2],"base64");u=o.readInternal(p,"public",c)}}else{u=o.readInternal(p,"public",c)}r.strictEqual(s,u.type);if(a[4]&&a[4].length>0){u.comment=a[4]}else if(p.consumed){var d=a[2]+(a[3]?a[3]:"");var h=Math.ceil(p.consumed/3)*4;d=d.slice(0,h-2).replace(/[^a-zA-Z0-9+\/=]/g,"")+d.slice(h-2);var m=p.consumed%3;if(m>0&&d.slice(h-1,h)!=="=")h--;while(d.slice(h,h+1)==="=")h++;var v=d.slice(h);v=v.replace(/[\r\n]/g," ").replace(/^\s+/,"");if(v.match(/^[a-zA-Z0-9]/))u.comment=v}return u}function write(e,t){r.object(e);if(!s.isKey(e))throw new Error("Must be a public key");var n=[];var a=o.keyTypeToAlg(e);n.push(a);var c=o.write(e);n.push(c.toString("base64"));if(e.comment)n.push(e.comment);return i.from(n.join(" "))}},2815:function(e){"use strict";e.exports={10029:"maccenteuro",maccenteuro:{type:"_sbcs",chars:"ÄĀāÉĄÖÜáąČäčĆć鏟ĎíďĒēĖóėôöõúĚěü†°Ę£§•¶ß®©™ę¨≠ģĮįĪ≤≥īĶ∂∑łĻļĽľĹĺŅņѬ√ńŇ∆«»… ňŐÕőŌ–—“”‘’÷◊ōŔŕŘ‹›řŖŗŠ‚„šŚśÁŤťÍŽžŪÓÔūŮÚůŰűŲųÝýķŻŁżĢˇ"},808:"cp808",ibm808:"cp808",cp808:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№€■ "},mik:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя└┴┬├─┼╣║╚╔╩╦╠═╬┐░▒▓│┤№§╗╝┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ascii8bit:"ascii",usascii:"ascii",ansix34:"ascii",ansix341968:"ascii",ansix341986:"ascii",csascii:"ascii",cp367:"ascii",ibm367:"ascii",isoir6:"ascii",iso646us:"ascii",iso646irv:"ascii",us:"ascii",latin1:"iso88591",latin2:"iso88592",latin3:"iso88593",latin4:"iso88594",latin5:"iso88599",latin6:"iso885910",latin7:"iso885913",latin8:"iso885914",latin9:"iso885915",latin10:"iso885916",csisolatin1:"iso88591",csisolatin2:"iso88592",csisolatin3:"iso88593",csisolatin4:"iso88594",csisolatincyrillic:"iso88595",csisolatinarabic:"iso88596",csisolatingreek:"iso88597",csisolatinhebrew:"iso88598",csisolatin5:"iso88599",csisolatin6:"iso885910",l1:"iso88591",l2:"iso88592",l3:"iso88593",l4:"iso88594",l5:"iso88599",l6:"iso885910",l7:"iso885913",l8:"iso885914",l9:"iso885915",l10:"iso885916",isoir14:"iso646jp",isoir57:"iso646cn",isoir100:"iso88591",isoir101:"iso88592",isoir109:"iso88593",isoir110:"iso88594",isoir144:"iso88595",isoir127:"iso88596",isoir126:"iso88597",isoir138:"iso88598",isoir148:"iso88599",isoir157:"iso885910",isoir166:"tis620",isoir179:"iso885913",isoir199:"iso885914",isoir203:"iso885915",isoir226:"iso885916",cp819:"iso88591",ibm819:"iso88591",cyrillic:"iso88595",arabic:"iso88596",arabic8:"iso88596",ecma114:"iso88596",asmo708:"iso88596",greek:"iso88597",greek8:"iso88597",ecma118:"iso88597",elot928:"iso88597",hebrew:"iso88598",hebrew8:"iso88598",turkish:"iso88599",turkish8:"iso88599",thai:"iso885911",thai8:"iso885911",celtic:"iso885914",celtic8:"iso885914",isoceltic:"iso885914",tis6200:"tis620",tis62025291:"tis620",tis62025330:"tis620",10000:"macroman",10006:"macgreek",10007:"maccyrillic",10079:"maciceland",10081:"macturkish",cspc8codepage437:"cp437",cspc775baltic:"cp775",cspc850multilingual:"cp850",cspcp852:"cp852",cspc862latinhebrew:"cp862",cpgr:"cp869",msee:"cp1250",mscyrl:"cp1251",msansi:"cp1252",msgreek:"cp1253",msturk:"cp1254",mshebr:"cp1255",msarab:"cp1256",winbaltrim:"cp1257",cp20866:"koi8r",20866:"koi8r",ibm878:"koi8r",cskoi8r:"koi8r",cp21866:"koi8u",21866:"koi8u",ibm1168:"koi8u",strk10482002:"rk1048",tcvn5712:"tcvn",tcvn57121:"tcvn",gb198880:"iso646cn",cn:"iso646cn",csiso14jisc6220ro:"iso646jp",jisc62201969ro:"iso646jp",jp:"iso646jp",cshproman8:"hproman8",r8:"hproman8",roman8:"hproman8",xroman8:"hproman8",ibm1051:"hproman8",mac:"macintosh",csmacintosh:"macintosh"}},2826:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(6725));function isRootDomain(e){const t=i.default.parse(e);if(t.error){return false}const{domain:n,subdomain:r}=t;return Boolean(!r&&n)}t.default=isRootDomain},2827:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);var o=n(1262);var a=n.n(o);const s=(e,t)=>e.reduce((e,n,r)=>e+a()(`%-${t[r]}s`,n),"");t["default"]=((e=[],t=[],n=[])=>{const r=t.reduce((e,t)=>t.map((t,n)=>{const r=e[n]||0;const i=t&&t.length||0;return Math.max(r,i)}),e.map(e=>e.length)).map((e,t)=>t<n.length&&e+n[t]||e);console.log(i.a.grey(s(e,r)));t.forEach(e=>console.log(s(e,r)))})},2833:function(e,t){t.GREATEST_LOWER_BOUND=1;t.LEAST_UPPER_BOUND=2;function recursiveSearch(e,n,r,i,o,a){var s=Math.floor((n-e)/2)+e;var c=o(r,i[s],true);if(c===0){return s}else if(c>0){if(n-s>1){return recursiveSearch(s,n,r,i,o,a)}if(a==t.LEAST_UPPER_BOUND){return n<i.length?n:-1}else{return s}}else{if(s-e>1){return recursiveSearch(e,s,r,i,o,a)}if(a==t.LEAST_UPPER_BOUND){return s}else{return e<0?-1:e}}}t.search=function search(e,n,r,i){if(n.length===0){return-1}var o=recursiveSearch(-1,n.length,e,n,r,i||t.GREATEST_LOWER_BOUND);if(o<0){return-1}while(o-1>=0){if(r(n[o],n[o-1],true)!==0){break}--o}return o}},2835:function(e,t,n){"use strict";var r=n(7409);e.exports=r.extend({path:"charges/{chargeId}/refunds",includeBasic:["create","list","retrieve","update"]})},2839:function(e){"use strict";e.exports=function generate_enum(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f="valid"+i;var p=e.opts.$data&&a&&a.$data,d;if(p){r+=" var schema"+i+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ";d="schema"+i}else{d=a}var h="i"+i,m="schema"+i;if(!p){r+=" var "+m+" = validate.schema"+s+";"}r+="var "+f+";";if(p){r+=" if (schema"+i+" === undefined) "+f+" = true; else if (!Array.isArray(schema"+i+")) "+f+" = false; else {"}r+=""+f+" = false;for (var "+h+"=0; "+h+"<"+m+".length; "+h+"++) if (equal("+l+", "+m+"["+h+"])) { "+f+" = true; break; }";if(p){r+=" } "}r+=" if (!"+f+") { ";var v=v||[];v.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"enum"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { allowedValues: schema"+i+" } ";if(e.opts.messages!==false){r+=" , message: 'should be equal to one of the allowed values' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var g=r;r=v.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+g+"]); "}else{r+=" validate.errors = ["+g+"]; return false; "}}else{r+=" var err = "+g+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+=" }";if(u){r+=" else { "}return r}},2862:function(e){e.exports=isPromise;function isPromise(e){return!!e&&(typeof e==="object"||typeof e==="function")&&typeof e.then==="function"}},2863:function(e){"use strict";var t=1;var n=2;function stripWithoutWhitespace(){return""}function stripWithWhitespace(e,t,n){return e.slice(t,n).replace(/\S/g," ")}e.exports=function(e,r){r=r||{};var i;var o;var a=false;var s=false;var c=0;var u="";var l=r.whitespace===false?stripWithoutWhitespace:stripWithWhitespace;for(var f=0;f<e.length;f++){i=e[f];o=e[f+1];if(!s&&i==='"'){var p=e[f-1]==="\\"&&e[f-2]!=="\\";if(!p){a=!a}}if(a){continue}if(!s&&i+o==="//"){u+=e.slice(c,f);c=f;s=t;f++}else if(s===t&&i+o==="\r\n"){f++;s=false;u+=l(e,c,f);c=f;continue}else if(s===t&&i==="\n"){s=false;u+=l(e,c,f);c=f}else if(!s&&i+o==="/*"){u+=e.slice(c,f);c=f;s=n;f++;continue}else if(s===n&&i+o==="*/"){f++;s=false;u+=l(e,c,f+1);c=f+1;continue}}return u+(s?l(e.substr(c)):e.substr(c))}},2865:function(e){"use strict";e.exports=(e=>{e=Object.assign({onlyFirst:false},e);const t=["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?\\u0007)","(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-ntqry=><~]))"].join("|");return new RegExp(t,e.onlyFirst?undefined:"g")})},2873:function(e){e.exports={name:"now-client",version:"5.2.0",main:"dist/src/index.js",typings:"dist/src/index.d.ts",license:"MIT",scripts:{build:"tsc",prepare:"npm run build","test-integration-once":"jest --verbose --forceExit","test-lint":"eslint . --ext .js,.ts --ignore-path ../../.eslintignore"},devDependencies:{"@types/async-retry":"1.4.1","@types/fs-extra":"7.0.0","@types/jest":"24.0.16","@types/ms":"0.7.30","@types/node":"12.0.4","@types/node-fetch":"2.3.4","@types/recursive-readdir":"2.2.0","@zeit/ncc":"0.18.5",jest:"24.8.0","ts-jest":"24.0.2",typescript:"3.5.1"},jest:{preset:"ts-jest",testEnvironment:"node",verbose:false,setupFilesAfterEnv:["<rootDir>/tests/setup/index.ts"]},dependencies:{"@zeit/fetch":"5.1.0","async-retry":"1.2.3","async-sema":"3.0.0","fs-extra":"8.0.1",ignore:"4.0.6",ms:"2.1.2","node-fetch":"2.6.0",querystring:"^0.2.0","recursive-readdir":"2.2.2","sleep-promise":"8.0.1"},gitHead:"500c36f5d4bb861487da841d828e68b58da9390e"}},2893:function(e,t,n){"use strict";var r=n(9498).MissingRef;e.exports=compileAsync;function compileAsync(e,t,n){var i=this;if(typeof this._opts.loadSchema!="function")throw new Error("options.loadSchema should be a function");if(typeof t=="function"){n=t;t=undefined}var o=loadMetaSchemaOf(e).then(function(){var n=i._addSchema(e,undefined,t);return n.validate||_compileAsync(n)});if(n){o.then(function(e){n(null,e)},n)}return o;function loadMetaSchemaOf(e){var t=e.$schema;return t&&!i.getSchema(t)?compileAsync.call(i,{$ref:t},true):Promise.resolve()}function _compileAsync(e){try{return i._compile(e)}catch(e){if(e instanceof r)return loadMissingSchema(e);throw e}function loadMissingSchema(n){var r=n.missingSchema;if(added(r))throw new Error("Schema "+r+" is loaded but "+n.missingRef+" cannot be resolved");var o=i._loadingSchemas[r];if(!o){o=i._loadingSchemas[r]=i._opts.loadSchema(r);o.then(removePromise,removePromise)}return o.then(function(e){if(!added(r)){return loadMetaSchemaOf(e).then(function(){if(!added(r))i.addSchema(e,r,undefined,t)})}}).then(function(){return _compileAsync(e)});function removePromise(){delete i._loadingSchemas[r]}function added(e){return i._refs[e]||i._schemas[e]}}}}},2900:function(e){e.exports={protocolVersion:"1",hostname:"https://www.google-analytics.com",path:"/collect",batchPath:"/batch",batching:true,batchSize:10,acceptedParameters:["v","tid","aip","ds","qt","z","cid","uid","sc","uip","ua","geoid","dr","cn","cs","cm","ck","cc","ci","gclid","dclid","sr","vp","de","sd","ul","je","fl","t","ni","dl","dh","dp","dt","cd","linkid","an","aid","av","aiid","ec","ea","el","ev","ti","ta","tr","ts","tt","in","ip","iq","ic","iv","cu","pa","tcc","pal","cos","col","promoa","sn","sa","st","utc","utv","utt","utl","plt","dns","pdt","rrt","tcp","srt","dit","clt","exd","exf","xid","xvar"],acceptedParametersRegex:[/^cm[0-9]+$/,/^cd[0-9]+$/,/^cg(10|[0-9])$/,/pr[0-9]{1,3}id/,/pr[0-9]{1,3}nm/,/pr[0-9]{1,3}br/,/pr[0-9]{1,3}ca/,/pr[0-9]{1,3}va/,/pr[0-9]{1,3}pr/,/pr[0-9]{1,3}qt/,/pr[0-9]{1,3}cc/,/pr[0-9]{1,3}ps/,/pr[0-9]{1,3}cd[0-9]{1,3}/,/pr[0-9]{1,3}cm[0-9]{1,3}/,/il[0-9]{1,3}nm/,/il[0-9]{1,3}pi[0-9]{1,3}id/,/il[0-9]{1,3}pi[0-9]{1,3}nm/,/il[0-9]{1,3}pi[0-9]{1,3}br/,/il[0-9]{1,3}pi[0-9]{1,3}ca/,/il[0-9]{1,3}pi[0-9]{1,3}va/,/il[0-9]{1,3}pi[0-9]{1,3}ps/,/il[0-9]{1,3}pi[0-9]{1,3}pr/,/il[0-9]{1,3}pi[0-9]{1,3}cd[0-9]{1,3}/,/il[0-9]{1,3}pi[0-9]{1,3}cm[0-9]{1,3}/,/promo[0-9]{1,3}id/,/promo[0-9]{1,3}nm/,/promo[0-9]{1,3}cr/,/promo[0-9]{1,3}ps/],parametersMap:{protocolVersion:"v",trackingId:"tid",webPropertyId:"tid",anonymizeIp:"aip",dataSource:"ds",queueTime:"qt",cacheBuster:"z",clientId:"cid",userId:"uid",sessionControl:"sc",ipOverride:"uip",userAgentOverride:"ua",documentReferrer:"dr",campaignName:"cn",campaignSource:"cs",campaignMedium:"cm",campaignKeyword:"ck",campaignContent:"cc",campaignId:"ci",googleAdwordsId:"gclid",googleDisplayAdsId:"dclid",screenResolution:"sr",viewportSize:"vp",documentEncoding:"de",screenColors:"sd",userLanguage:"ul",javaEnabled:"je",flashVersion:"fl",hitType:"t","non-interactionHit":"ni",documentLocationUrl:"dl",documentHostName:"dh",documentPath:"dp",documentTitle:"dt",screenName:"cd",linkId:"linkid",applicationName:"an",applicationId:"aid",applicationVersion:"av",applicationInstallerId:"aiid",eventCategory:"ec",eventAction:"ea",eventLabel:"el",eventValue:"ev",transactionId:"ti",transactionAffiliation:"ta",transactionRevenue:"tr",transactionShipping:"ts",transactionTax:"tt",itemName:"in",itemPrice:"ip",itemQuantity:"iq",itemCode:"ic",itemCategory:"iv",currencyCode:"cu",socialNetwork:"sn",socialAction:"sa",socialActionTarget:"st",userTimingCategory:"utc",userTimingVariableName:"utv",userTimingTime:"utt",userTimingLabel:"utl",pageLoadTime:"plt",dnsTime:"dns",pageDownloadTime:"pdt",redirectResponseTime:"rrt",tcpConnectTime:"tcp",serverResponseTime:"srt",domInteractiveTime:"dit",contentLoadTime:"clt",exceptionDescription:"exd",isExceptionFatal:"exf","isExceptionFatal?":"exf",experimentId:"xid",experimentVariant:"xvar"}}},2909:function(e,t,n){"use strict";var r=n(662);var i=n(8225);var o=n(5897);var a=n(2863);var s=t.parse=function(e){if(/^\s*{/.test(e))return JSON.parse(a(e));return i.parse(e)};var c=t.file=function(){var e=[].slice.call(arguments).filter(function(e){return e!=null});for(var t in e)if("string"!==typeof e[t])return;var n=o.join.apply(null,e);var i;try{return r.readFileSync(n,"utf-8")}catch(e){return}};var u=t.json=function(){var e=c.apply(null,arguments);return e?s(e):null};var l=t.env=function(e,t){t=t||process.env;var n={};var r=e.length;for(var i in t){if(i.toLowerCase().indexOf(e.toLowerCase())===0){var o=i.substring(r).split("__");var a;while((a=o.indexOf(""))>-1){o.splice(a,1)}var s=n;o.forEach(function _buildSubObj(e,n){if(!e||typeof s!=="object")return;if(n===o.length-1)s[e]=t[i];if(s[e]===undefined)s[e]={};s=s[e]})}}return n};var f=t.find=function(){var e=o.join.apply(null,[].slice.call(arguments));function find(e,t){var n=o.join(e,t);try{r.statSync(n);return n}catch(n){if(o.dirname(e)!==e)return find(o.dirname(e),t)}}return find(process.cwd(),e)}},2910:function(e){e.exports=function(){var e=new Uint32Array([0,79764919,159529838,222504665,319059676,398814059,445009330,507990021,638119352,583659535,797628118,726387553,890018660,835552979,1015980042,944750013,1276238704,1221641927,1167319070,1095957929,1595256236,1540665371,1452775106,1381403509,1780037320,1859660671,1671105958,1733955601,2031960084,2111593891,1889500026,1952343757,2552477408,2632100695,2443283854,2506133561,2334638140,2414271883,2191915858,2254759653,3190512472,3135915759,3081330742,3009969537,2905550212,2850959411,2762807018,2691435357,3560074640,3505614887,3719321342,3648080713,3342211916,3287746299,3467911202,3396681109,4063920168,4143685023,4223187782,4286162673,3779000052,3858754371,3904687514,3967668269,881225847,809987520,1023691545,969234094,662832811,591600412,771767749,717299826,311336399,374308984,453813921,533576470,25881363,88864420,134795389,214552010,2023205639,2086057648,1897238633,1976864222,1804852699,1867694188,1645340341,1724971778,1587496639,1516133128,1461550545,1406951526,1302016099,1230646740,1142491917,1087903418,2896545431,2825181984,2770861561,2716262478,3215044683,3143675388,3055782693,3001194130,2326604591,2389456536,2200899649,2280525302,2578013683,2640855108,2418763421,2498394922,3769900519,3832873040,3912640137,3992402750,4088425275,4151408268,4197601365,4277358050,3334271071,3263032808,3476998961,3422541446,3585640067,3514407732,3694837229,3640369242,1762451694,1842216281,1619975040,1682949687,2047383090,2127137669,1938468188,2001449195,1325665622,1271206113,1183200824,1111960463,1543535498,1489069629,1434599652,1363369299,622672798,568075817,748617968,677256519,907627842,853037301,1067152940,995781531,51762726,131386257,177728840,240578815,269590778,349224269,429104020,491947555,4046411278,4126034873,4172115296,4234965207,3794477266,3874110821,3953728444,4016571915,3609705398,3555108353,3735388376,3664026991,3290680682,3236090077,3449943556,3378572211,3174993278,3120533705,3032266256,2961025959,2923101090,2868635157,2813903052,2742672763,2604032198,2683796849,2461293480,2524268063,2284983834,2364738477,2175806836,2238787779,1569362073,1498123566,1409854455,1355396672,1317987909,1246755826,1192025387,1137557660,2072149281,2135122070,1912620623,1992383480,1753615357,1816598090,1627664531,1707420964,295390185,358241886,404320391,483945776,43990325,106832002,186451547,266083308,932423249,861060070,1041341759,986742920,613929101,542559546,756411363,701822548,3316196985,3244833742,3425377559,3370778784,3601682597,3530312978,3744426955,3689838204,3819031489,3881883254,3928223919,4007849240,4037393693,4100235434,4180117107,4259748804,2310601993,2373574846,2151335527,2231098320,2596047829,2659030626,2470359227,2550115596,2947551409,2876312838,2788305887,2733848168,3165939309,3094707162,3040238851,2985771188]);var t=function(){var t=4294967295;this.getCRC=function(){return~t>>>0};this.updateCRC=function(n){t=t<<8^e[(t>>>24^n)&255]};this.updateCRCRun=function(n,r){while(r-- >0){t=t<<8^e[(t>>>24^n)&255]}}};return t}()},2911:function(e,t,n){"use strict";n.r(t);var r=n(4316);var i=n.n(r);var o=n(5897);var a=n.n(o);const s=async e=>{if(!e){return}const t=i.a.homedir();let n;const r={home:t,desktop:a.a.join(t,"Desktop"),downloads:a.a.join(t,"Downloads")};for(const t in r){if(!{}.hasOwnProperty.call(r,t)){continue}if(e===r[t]){n=t}}if(!n){return}let o;switch(n){case"home":o="user directory";break;case"downloads":o="downloads directory";break;default:o=n}throw new Error(`You're trying to deploy your ${o}.`)};t["default"]=s},2917:function(e,t,n){var r=n(8394);var i=n(1164);var o="0000000000000000000";var a="7777777777777777777";var s="0".charCodeAt(0);var c="ustar\x0000";var u=parseInt("7777",8);var l=function(e,t,n){if(typeof e!=="number")return n;e=~~e;if(e>=t)return t;if(e>=0)return e;e+=t;if(e>=0)return e;return 0};var f=function(e){switch(e){case 0:return"file";case 1:return"link";case 2:return"symlink";case 3:return"character-device";case 4:return"block-device";case 5:return"directory";case 6:return"fifo";case 7:return"contiguous-file";case 72:return"pax-header";case 55:return"pax-global-header";case 27:return"gnu-long-link-path";case 28:case 30:return"gnu-long-path"}return null};var p=function(e){switch(e){case"file":return 0;case"link":return 1;case"symlink":return 2;case"character-device":return 3;case"block-device":return 4;case"directory":return 5;case"fifo":return 6;case"contiguous-file":return 7;case"pax-header":return 72}return 0};var d=function(e,t,n,r){for(;n<r;n++){if(e[n]===t)return n}return r};var h=function(e){var t=8*32;for(var n=0;n<148;n++)t+=e[n];for(var r=156;r<512;r++)t+=e[r];return t};var m=function(e,t){e=e.toString(8);if(e.length>t)return a.slice(0,t)+" ";else return o.slice(0,t-e.length)+e+" "};function parse256(e){var t;if(e[0]===128)t=true;else if(e[0]===255)t=false;else return null;var n=false;var r=[];for(var i=e.length-1;i>0;i--){var o=e[i];if(t)r.push(o);else if(n&&o===0)r.push(0);else if(n){n=false;r.push(256-o)}else r.push(255-o)}var a=0;var s=r.length;for(i=0;i<s;i++){a+=r[i]*Math.pow(256,i)}return t?a:-1*a}var v=function(e,t,n){e=e.slice(t,t+n);t=0;if(e[t]&128){return parse256(e)}else{while(t<e.length&&e[t]===32)t++;var r=l(d(e,32,t,e.length),e.length,e.length);while(t<r&&e[t]===0)t++;if(r===t)return 0;return parseInt(e.slice(t,r).toString(),8)}};var g=function(e,t,n,r){return e.slice(t,d(e,0,t,t+n)).toString(r)};var y=function(e){var t=Buffer.byteLength(e);var n=Math.floor(Math.log(t)/Math.log(10))+1;if(t+n>=Math.pow(10,n))n++;return t+n+e};t.decodeLongPath=function(e,t){return g(e,0,e.length,t)};t.encodePax=function(e){var t="";if(e.name)t+=y(" path="+e.name+"\n");if(e.linkname)t+=y(" linkpath="+e.linkname+"\n");var n=e.pax;if(n){for(var i in n){t+=y(" "+i+"="+n[i]+"\n")}}return r(t)};t.decodePax=function(e){var t={};while(e.length){var n=0;while(n<e.length&&e[n]!==32)n++;var r=parseInt(e.slice(0,n).toString(),10);if(!r)return t;var i=e.slice(n+1,r-1).toString();var o=i.indexOf("=");if(o===-1)return t;t[i.slice(0,o)]=i.slice(o+1);e=e.slice(r)}return t};t.encode=function(e){var t=i(512);var n=e.name;var r="";if(e.typeflag===5&&n[n.length-1]!=="/")n+="/";if(Buffer.byteLength(n)!==n.length)return null;while(Buffer.byteLength(n)>100){var o=n.indexOf("/");if(o===-1)return null;r+=r?"/"+n.slice(0,o):n.slice(0,o);n=n.slice(o+1)}if(Buffer.byteLength(n)>100||Buffer.byteLength(r)>155)return null;if(e.linkname&&Buffer.byteLength(e.linkname)>100)return null;t.write(n);t.write(m(e.mode&u,6),100);t.write(m(e.uid,6),108);t.write(m(e.gid,6),116);t.write(m(e.size,11),124);t.write(m(e.mtime.getTime()/1e3|0,11),136);t[156]=s+p(e.type);if(e.linkname)t.write(e.linkname,157);t.write(c,257);if(e.uname)t.write(e.uname,265);if(e.gname)t.write(e.gname,297);t.write(m(e.devmajor||0,6),329);t.write(m(e.devminor||0,6),337);if(r)t.write(r,345);t.write(m(h(t),6),148);return t};t.decode=function(e,t){var n=e[156]===0?0:e[156]-s;var r=g(e,0,100,t);var i=v(e,100,8);var o=v(e,108,8);var a=v(e,116,8);var c=v(e,124,12);var u=v(e,136,12);var l=f(n);var p=e[157]===0?null:g(e,157,100,t);var d=g(e,265,32);var m=g(e,297,32);var y=v(e,329,8);var b=v(e,337,8);if(e[345])r=g(e,345,155,t)+"/"+r;if(n===0&&r&&r[r.length-1]==="/")n=5;var w=h(e);if(w===8*32)return null;if(w!==v(e,148,8))throw new Error("Invalid tar header. Maybe the tar is corrupted or it needs to be gunzipped?");return{name:r,mode:i,uid:o,gid:a,size:c,mtime:new Date(1e3*u),type:l,linkname:p,uname:d,gname:m,devmajor:y,devminor:b}}},2924:function(e,t,n){var r=n(662);var i=n(5098),o=n(3692),a=n(9844),s=n(8592),c=n(6029);var u=this;var l=[new i,new o.UTF_16BE,new o.UTF_16LE,new o.UTF_32BE,new o.UTF_32LE,new a.sjis,new a.big5,new a.euc_jp,new a.euc_kr,new a.gb_18030,new c.ISO_2022_JP,new c.ISO_2022_KR,new c.ISO_2022_CN,new s.ISO_8859_1,new s.ISO_8859_2,new s.ISO_8859_5,new s.ISO_8859_6,new s.ISO_8859_7,new s.ISO_8859_8,new s.ISO_8859_9,new s.windows_1251,new s.windows_1256,new s.KOI8_R];e.exports.detect=function(e){var t=[];for(var n=0;n<256;n++)t[n]=0;for(var n=e.length-1;n>=0;n--)t[e[n]&255]++;var r=false;for(var n=128;n<=159;n+=1){if(t[n]!=0){r=true;break}}var i={fByteStats:t,fC1Bytes:r,fRawInput:e,fRawLength:e.length,fInputBytes:e,fInputLen:e.length};var o=l.map(function(e){return e.match(i)}).filter(function(e){return!!e}).sort(function(e,t){return e.confidence-t.confidence}).pop();return o?o.name:null};e.exports.detectFile=function(e,t,n){if(typeof t==="function"){n=t;t=undefined}var i;var o=function(e,t){if(i){r.closeSync(i)}if(e)return n(e,null);n(null,u.detect(t))};if(t&&t.sampleSize){i=r.openSync(e,"r"),sample=new Buffer(t.sampleSize);r.read(i,sample,0,t.sampleSize,null,function(e){o(e,sample)});return}r.readFile(e,o)};e.exports.detectFileSync=function(e,t){if(t&&t.sampleSize){var n=r.openSync(e,"r"),i=new Buffer(t.sampleSize);r.readSync(n,i,0,t.sampleSize);r.closeSync(n);return u.detect(i)}return u.detect(r.readFileSync(e))}},2935:function(e,t,n){var r=n(2984),i=n(774).parse;var o=["acl","location","logging","notification","partNumber","policy","requestPayment","torrent","uploadId","uploads","versionId","versioning","versions","website"];function authorization(e){return"AWS "+e.key+":"+sign(e)}e.exports=authorization;e.exports.authorization=authorization;function hmacSha1(e){return r.createHmac("sha1",e.secret).update(e.message).digest("base64")}e.exports.hmacSha1=hmacSha1;function sign(e){e.message=stringToSign(e);return hmacSha1(e)}e.exports.sign=sign;function signQuery(e){e.message=queryStringToSign(e);return hmacSha1(e)}e.exports.signQuery=signQuery;function stringToSign(e){var t=e.amazonHeaders||"";if(t)t+="\n";var n=[e.verb,e.md5,e.contentType,e.date?e.date.toUTCString():"",t+e.resource];return n.join("\n")}e.exports.stringToSign=stringToSign;function queryStringToSign(e){return"GET\n\n\n"+e.date+"\n"+e.resource}e.exports.queryStringToSign=queryStringToSign;function canonicalizeHeaders(e){var t=[],n=Object.keys(e);for(var r=0,i=n.length;r<i;++r){var o=n[r],a=e[o],o=o.toLowerCase();if(0!==o.indexOf("x-amz"))continue;t.push(o+":"+a)}return t.sort().join("\n")}e.exports.canonicalizeHeaders=canonicalizeHeaders;function canonicalizeResource(e){var t=i(e,true),n=t.pathname,r=[];Object.keys(t.query).forEach(function(e){if(!~o.indexOf(e))return;var n=""==t.query[e]?"":"="+encodeURIComponent(t.query[e]);r.push(e+n)});return n+(r.length?"?"+r.sort().join("&"):"")}e.exports.canonicalizeResource=canonicalizeResource},2943:function(e,t,n){"use strict";const r=n(662);const i=n(5897);const o=n(1908).mkdirsSync;const a=n(6493).utimesMillisSync;const s=n(7609);function copySync(e,t,n){if(typeof n==="function"){n={filter:n}}n=n||{};n.clobber="clobber"in n?!!n.clobber:true;n.overwrite="overwrite"in n?!!n.overwrite:n.clobber;if(n.preserveTimestamps&&process.arch==="ia32"){console.warn(`fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269`)}const{srcStat:r,destStat:i}=s.checkPathsSync(e,t,"copy");s.checkParentPathsSync(e,r,t,"copy");return handleFilterAndCopy(i,e,t,n)}function handleFilterAndCopy(e,t,n,a){if(a.filter&&!a.filter(t,n))return;const s=i.dirname(n);if(!r.existsSync(s))o(s);return startCopy(e,t,n,a)}function startCopy(e,t,n,r){if(r.filter&&!r.filter(t,n))return;return getStats(e,t,n,r)}function getStats(e,t,n,i){const o=i.dereference?r.statSync:r.lstatSync;const a=o(t);if(a.isDirectory())return onDir(a,e,t,n,i);else if(a.isFile()||a.isCharacterDevice()||a.isBlockDevice())return onFile(a,e,t,n,i);else if(a.isSymbolicLink())return onLink(e,t,n,i)}function onFile(e,t,n,r,i){if(!t)return copyFile(e,n,r,i);return mayCopyFile(e,n,r,i)}function mayCopyFile(e,t,n,i){if(i.overwrite){r.unlinkSync(n);return copyFile(e,t,n,i)}else if(i.errorOnExist){throw new Error(`'${n}' already exists`)}}function copyFile(e,t,n,i){if(typeof r.copyFileSync==="function"){r.copyFileSync(t,n);r.chmodSync(n,e.mode);if(i.preserveTimestamps){return a(n,e.atime,e.mtime)}return}return copyFileFallback(e,t,n,i)}function copyFileFallback(e,t,i,o){const a=64*1024;const s=n(9885)(a);const c=r.openSync(t,"r");const u=r.openSync(i,"w",e.mode);let l=0;while(l<e.size){const e=r.readSync(c,s,0,a,l);r.writeSync(u,s,0,e);l+=e}if(o.preserveTimestamps)r.futimesSync(u,e.atime,e.mtime);r.closeSync(c);r.closeSync(u)}function onDir(e,t,n,r,i){if(!t)return mkDirAndCopy(e,n,r,i);if(t&&!t.isDirectory()){throw new Error(`Cannot overwrite non-directory '${r}' with directory '${n}'.`)}return copyDir(n,r,i)}function mkDirAndCopy(e,t,n,i){r.mkdirSync(n);copyDir(t,n,i);return r.chmodSync(n,e.mode)}function copyDir(e,t,n){r.readdirSync(e).forEach(r=>copyDirItem(r,e,t,n))}function copyDirItem(e,t,n,r){const o=i.join(t,e);const a=i.join(n,e);const{destStat:c}=s.checkPathsSync(o,a,"copy");return startCopy(c,o,a,r)}function onLink(e,t,n,o){let a=r.readlinkSync(t);if(o.dereference){a=i.resolve(process.cwd(),a)}if(!e){return r.symlinkSync(a,n)}else{let e;try{e=r.readlinkSync(n)}catch(e){if(e.code==="EINVAL"||e.code==="UNKNOWN")return r.symlinkSync(a,n);throw e}if(o.dereference){e=i.resolve(process.cwd(),e)}if(s.isSrcSubdir(a,e)){throw new Error(`Cannot copy '${a}' to a subdirectory of itself, '${e}'.`)}if(r.statSync(n).isDirectory()&&s.isSrcSubdir(e,a)){throw new Error(`Cannot overwrite '${e}' with '${a}'.`)}return copyLink(a,n)}}function copyLink(e,t){r.unlinkSync(t);return r.symlinkSync(e,t)}e.exports=copySync},2951:function(e){"use strict";const t=["stdin","stdout","stderr"];const n=e=>t.some(t=>Boolean(e[t]));e.exports=(e=>{if(!e){return null}if(e.stdio&&n(e)){throw new Error(`It's not possible to provide \`stdio\` in combination with one of ${t.map(e=>`\`${e}\``).join(", ")}`)}if(typeof e.stdio==="string"){return e.stdio}const r=e.stdio||[];if(!Array.isArray(r)){throw new TypeError(`Expected \`stdio\` to be of type \`string\` or \`Array\`, got \`${typeof r}\``)}const i=[];const o=Math.max(r.length,t.length);for(let n=0;n<o;n++){let o=null;if(r[n]!==undefined){o=r[n]}else if(e[t[n]]!==undefined){o=e[t[n]]}i[n]=o}return i})},2970:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(4223));const a=n(8715);const s=i(n(3147));function getDeploymentByIdOrHost(e,t,n,i="v5"){return r(this,void 0,void 0,function*(){try{const{deployment:r}=n.indexOf(".")!==-1?yield getDeploymentByHost(e,o.default(n),i):yield getDeploymentById(e,n,i);return r}catch(e){if(e.status===404){return new a.DeploymentNotFound({id:n,context:t})}if(e.status===403){return new a.DeploymentPermissionDenied(n,t)}if(e.status===400&&e.message.includes("`id`")){return new a.InvalidDeploymentId(n)}const r=s.default(e);if(r){return r}throw e}})}t.default=getDeploymentByIdOrHost;function getDeploymentById(e,t,n){return r(this,void 0,void 0,function*(){const r=yield e.fetch(`/${n}/now/deployments/${encodeURIComponent(t)}`);return{deployment:r}})}function getDeploymentByHost(e,t,n){return r(this,void 0,void 0,function*(){const r=yield e.fetch(`/v4/now/hosts/${encodeURIComponent(t)}?resolve=1&noState=1`);return getDeploymentById(e,r.deployment.id,n)})}},2984:function(e){e.exports=require("crypto")},2994:function(e,t,n){"use strict";const r=n(5897);const i=n(1085);const o=n(3087);e.exports=(e=>{const t=new i(Object.assign({},o.defaults));t.add(Object.assign({},e),"cli");t.addEnv();t.loadPrefix();const n=r.resolve(t.localPrefix,".npmrc");const a=t.get("userconfig");if(!t.get("global")&&n!==a){t.addFile(n,"project")}else{t.add({},"project")}t.addFile(t.get("userconfig"),"user");if(t.get("prefix")){const e=r.resolve(t.get("prefix"),"etc");t.root.globalconfig=r.resolve(e,"npmrc");t.root.globalignorefile=r.resolve(e,"npmignore")}t.addFile(t.get("globalconfig"),"global");t.loadUser();const s=t.get("cafile");if(s){t.loadCAFile(s)}return t});e.exports.defaults=Object.assign({},o.defaults)},2998:function(e,t,n){"use strict";if(typeof process==="undefined"||process.type==="renderer"||process.browser===true||process.__nwjs){e.exports=n(4648)}else{e.exports=n(3431)}},3013:function(e,t,n){"use strict";var r=n(3062).Buffer;t.utf16be=Utf16BECodec;function Utf16BECodec(){}Utf16BECodec.prototype.encoder=Utf16BEEncoder;Utf16BECodec.prototype.decoder=Utf16BEDecoder;Utf16BECodec.prototype.bomAware=true;function Utf16BEEncoder(){}Utf16BEEncoder.prototype.write=function(e){var t=r.from(e,"ucs2");for(var n=0;n<t.length;n+=2){var i=t[n];t[n]=t[n+1];t[n+1]=i}return t};Utf16BEEncoder.prototype.end=function(){};function Utf16BEDecoder(){this.overflowByte=-1}Utf16BEDecoder.prototype.write=function(e){if(e.length==0)return"";var t=r.alloc(e.length+1),n=0,i=0;if(this.overflowByte!==-1){t[0]=e[0];t[1]=this.overflowByte;n=1;i=2}for(;n<e.length-1;n+=2,i+=2){t[i]=e[n+1];t[i+1]=e[n]}this.overflowByte=n==e.length-1?e[e.length-1]:-1;return t.slice(0,i).toString("ucs2")};Utf16BEDecoder.prototype.end=function(){};t.utf16=Utf16Codec;function Utf16Codec(e,t){this.iconv=t}Utf16Codec.prototype.encoder=Utf16Encoder;Utf16Codec.prototype.decoder=Utf16Decoder;function Utf16Encoder(e,t){e=e||{};if(e.addBOM===undefined)e.addBOM=true;this.encoder=t.iconv.getEncoder("utf-16le",e)}Utf16Encoder.prototype.write=function(e){return this.encoder.write(e)};Utf16Encoder.prototype.end=function(){return this.encoder.end()};function Utf16Decoder(e,t){this.decoder=null;this.initialBytes=[];this.initialBytesLen=0;this.options=e||{};this.iconv=t.iconv}Utf16Decoder.prototype.write=function(e){if(!this.decoder){this.initialBytes.push(e);this.initialBytesLen+=e.length;if(this.initialBytesLen<16)return"";var e=r.concat(this.initialBytes),t=detectEncoding(e,this.options.defaultEncoding);this.decoder=this.iconv.getDecoder(t,this.options);this.initialBytes.length=this.initialBytesLen=0}return this.decoder.write(e)};Utf16Decoder.prototype.end=function(){if(!this.decoder){var e=r.concat(this.initialBytes),t=detectEncoding(e,this.options.defaultEncoding);this.decoder=this.iconv.getDecoder(t,this.options);var n=this.decoder.write(e),i=this.decoder.end();return i?n+i:n}return this.decoder.end()};function detectEncoding(e,t){var n=t||"utf-16le";if(e.length>=2){if(e[0]==254&&e[1]==255)n="utf-16be";else if(e[0]==255&&e[1]==254)n="utf-16le";else{var r=0,i=0,o=Math.min(e.length-e.length%2,64);for(var a=0;a<o;a+=2){if(e[a]===0&&e[a+1]!==0)i++;if(e[a]!==0&&e[a+1]===0)r++}if(i>r)n="utf-16be";else if(i<r)n="utf-16le"}}return n}},3019:function(e){"use strict";var t=["multipleOf","maximum","exclusiveMaximum","minimum","exclusiveMinimum","maxLength","minLength","pattern","additionalItems","maxItems","minItems","uniqueItems","maxProperties","minProperties","required","additionalProperties","enum","format","const"];e.exports=function(e,n){for(var r=0;r<n.length;r++){e=JSON.parse(JSON.stringify(e));var i=n[r].split("/");var o=e;var a;for(a=1;a<i.length;a++)o=o[i[a]];for(a=0;a<t.length;a++){var s=t[a];var c=o[s];if(c){o[s]={anyOf:[c,{$ref:"https://raw.githubusercontent.com/epoberezkin/ajv/master/lib/refs/data.json#"}]}}}}return e}},3021:function(e){"use strict";e.exports=function(e,t){function slash(){if(t&&typeof t.slash==="string"){return t.slash}if(t&&typeof t.slash==="function"){return t.slash.call(e)}return"\\\\/"}function star(){if(t&&typeof t.star==="string"){return t.star}if(t&&typeof t.star==="function"){return t.star.call(e)}return"[^"+slash()+"]*?"}var n=e.ast=e.parser.ast;n.state=e.parser.state;e.compiler.state=n.state;e.compiler.set("not",function(e){var t=this.prev();if(this.options.nonegate===true||t.type!=="bos"){return this.emit("\\"+e.val,e)}return this.emit(e.val,e)}).set("escape",function(e){if(this.options.unescape&&/^[-\w_.]/.test(e.val)){return this.emit(e.val,e)}return this.emit("\\"+e.val,e)}).set("quoted",function(e){return this.emit(e.val,e)}).set("dollar",function(e){if(e.parent.type==="bracket"){return this.emit(e.val,e)}return this.emit("\\"+e.val,e)}).set("dot",function(e){if(e.dotfiles===true)this.dotfiles=true;return this.emit("\\"+e.val,e)}).set("backslash",function(e){return this.emit(e.val,e)}).set("slash",function(e,t,n){var r="["+slash()+"]";var i=e.parent;var o=this.prev();while(i.type==="paren"&&!i.hasSlash){i.hasSlash=true;i=i.parent}if(o.addQmark){r+="?"}if(e.rest.slice(0,2)==="\\b"){return this.emit(r,e)}if(e.parsed==="**"||e.parsed==="./**"){this.output="(?:"+this.output;return this.emit(r+")?",e)}if(e.parsed==="!**"&&this.options.nonegate!==true){return this.emit(r+"?\\b",e)}return this.emit(r,e)}).set("bracket",function(e){var t=e.close;var n=!e.escaped?"[":"\\[";var r=e.negated;var i=e.inner;var o=e.val;if(e.escaped===true){i=i.replace(/\\?(\W)/g,"\\$1");r=""}if(i==="]-"){i="\\]\\-"}if(r&&i.indexOf(".")===-1){i+="."}if(r&&i.indexOf("/")===-1){i+="/"}o=n+r+i+t;return this.emit(o,e)}).set("square",function(e){var t=(/^\W/.test(e.val)?"\\":"")+e.val;return this.emit(t,e)}).set("qmark",function(e){var t=this.prev();var n="[^.\\\\/]";if(this.options.dot||t.type!=="bos"&&t.type!=="slash"){n="[^\\\\/]"}if(e.parsed.slice(-1)==="("){var r=e.rest.charAt(0);if(r==="!"||r==="="||r===":"){return this.emit(e.val,e)}}if(e.val.length>1){n+="{"+e.val.length+"}"}return this.emit(n,e)}).set("plus",function(e){var t=e.parsed.slice(-1);if(t==="]"||t===")"){return this.emit(e.val,e)}if(!this.output||/[?*+]/.test(n)&&e.parent.type!=="bracket"){return this.emit("\\+",e)}var n=this.output.slice(-1);if(/\w/.test(n)&&!e.inside){return this.emit("+\\+?",e)}return this.emit("+",e)}).set("globstar",function(e,t,n){if(!this.output){this.state.leadingGlobstar=true}var r=this.prev();var i=this.prev(2);var o=this.next();var a=this.next(2);var s=r.type;var c=e.val;if(r.type==="slash"&&o.type==="slash"){if(i.type==="text"){this.output+="?";if(a.type!=="text"){this.output+="\\b"}}}var u=e.parsed;if(u.charAt(0)==="!"){u=u.slice(1)}var l=e.isInside.paren||e.isInside.brace;if(u&&s!=="slash"&&s!=="bos"&&!l){c=star()}else{c=this.options.dot!==true?"(?:(?!(?:["+slash()+"]|^)\\.).)*?":"(?:(?!(?:["+slash()+"]|^)(?:\\.{1,2})($|["+slash()+"]))(?!\\.{2}).)*?"}if((s==="slash"||s==="bos")&&this.options.dot!==true){c="(?!\\.)"+c}if(r.type==="slash"&&o.type==="slash"&&i.type!=="text"){if(a.type==="text"||a.type==="star"){e.addQmark=true}}if(this.options.capture){c="("+c+")"}return this.emit(c,e)}).set("star",function(e,t,n){var r=t[n-2]||{};var i=this.prev();var o=this.next();var a=i.type;function isStart(e){return e.type==="bos"||e.type==="slash"}if(this.output===""&&this.options.contains!==true){this.output="(?!["+slash()+"])"}if(a==="bracket"&&this.options.bash===false){var s=o&&o.type==="bracket"?star():"*?";if(!i.nodes||i.nodes[1].type!=="posix"){return this.emit(s,e)}}var c=!this.dotfiles&&a!=="text"&&a!=="escape"?this.options.dot?"(?!(?:^|["+slash()+"])\\.{1,2}(?:$|["+slash()+"]))":"(?!\\.)":"";if(isStart(i)||isStart(r)&&a==="not"){if(c!=="(?!\\.)"){c+="(?!(\\.{2}|\\.["+slash()+"]))(?=.)"}else{c+="(?=.)"}}else if(c==="(?!\\.)"){c=""}if(i.type==="not"&&r.type==="bos"&&this.options.dot===true){this.output="(?!\\.)"+this.output}var u=c+star();if(this.options.capture){u="("+u+")"}return this.emit(u,e)}).set("text",function(e){return this.emit(e.val,e)}).set("eos",function(e){var t=this.prev();var n=e.val;this.output="(?:\\.["+slash()+"](?=.))?"+this.output;if(this.state.metachar&&t.type!=="qmark"&&t.type!=="slash"){n+=this.options.contains?"["+slash()+"]?":"(?:["+slash()+"]|$)"}return this.emit(n,e)});if(t&&typeof t.compilers==="function"){t.compilers(e.compiler)}}},3023:function(e,t,n){e.exports={parallel:n(6616),serial:n(3456),serialOrdered:n(42)}},3033:function(e,t,n){"use strict";n.r(t);n.d(t,"maybeURL",function(){return r});n.d(t,"normalizeURL",function(){return i});n.d(t,"parseInstanceURL",function(){return o});const r=e=>e.includes("-");const i=e=>{if(e.slice(-1)==="/"){e=e.slice(0,-1)}e=e.replace(/^https:\/\//i,"");return e};const o=e=>{const t=/^(.+)-([a-z0-9]{24})(\.now\.sh)$/.exec(e);const n=t?t[1]+t[3]:e;const r=t?t[2]:null;return[n,r]}},3035:function(e,t,n){"use strict";if(typeof process==="undefined"||process.type==="renderer"||process.browser===true||process.__nwjs){e.exports=n(8548)}else{e.exports=n(9412)}},3041:function(e,t,n){var r=e.exports;r.prompts={};r.Separator=n(6268);r.ui={BottomBar:n(6037),Prompt:n(648)};r.createPromptModule=function(e){var t=function(n){var i=new r.ui.Prompt(t.prompts,e);var o=i.run(n);o.ui=i;return o};t.prompts={};t.registerPrompt=function(e,n){t.prompts[e]=n;return this};t.restoreDefaultPrompts=function(){this.registerPrompt("list",n(4340));this.registerPrompt("input",n(1704));this.registerPrompt("confirm",n(5711));this.registerPrompt("rawlist",n(971));this.registerPrompt("expand",n(8929));this.registerPrompt("checkbox",n(4217));this.registerPrompt("password",n(7879));this.registerPrompt("editor",n(9195))};t.restoreDefaultPrompts();return t};r.prompt=r.createPromptModule();r.registerPrompt=function(e,t){r.prompt.registerPrompt(e,t)};r.restoreDefaultPrompts=function(){r.prompt.restoreDefaultPrompts()}},3043:function(e,t,n){"use strict";n.r(t);var r=n(2984);var i=n.n(r);var o=n(772);var a=n.n(o);async function hashes(e){const t=new Map;await Promise.all(e.map(async e=>{const n=await a.a.readFile(e);const r=hash(n);const i=t.get(r);if(i){i.names.push(e)}else{t.set(hash(n),{names:[e],data:n})}}));return t}function hash(e){return Object(r["createHash"])("sha1").update(e).digest("hex")}t["default"]=hashes},3046:function(e,t,n){"use strict";var r=n(1838);var i=r.Cookie;var o=r.CookieJar;t.parse=function(e){if(e&&e.uri){e=e.uri}if(typeof e!=="string"){throw new Error("The cookie function only accepts STRING as param")}return i.parse(e,{loose:true})};function RequestJar(e){var t=this;t._jar=new o(e,{looseMode:true})}RequestJar.prototype.setCookie=function(e,t,n){var r=this;return r._jar.setCookieSync(e,t,n||{})};RequestJar.prototype.getCookieString=function(e){var t=this;return t._jar.getCookieStringSync(e)};RequestJar.prototype.getCookies=function(e){var t=this;return t._jar.getCookiesSync(e)};t.jar=function(e){return new RequestJar(e)}},3050:function(e,t,n){"use strict";const r=n(5897);const i=n(3327);const o=n(2728);e.exports=((e,t)=>{if(typeof e!=="string"){t=e;e="."}t=t||{};return o.dir(e).then(t=>{if(t){e=r.join(e,"package.json")}return i(e)}).then(e=>{if(t.normalize!==false){n(2419)(e)}return e})});e.exports.sync=((e,t)=>{if(typeof e!=="string"){t=e;e="."}t=t||{};e=o.dirSync(e)?r.join(e,"package.json"):e;const a=i.sync(e);if(t.normalize!==false){n(2419)(a)}return a})},3054:function(e,t,n){"use strict";e.exports=PassThrough;var r=n(4338);var i=n(8107);i.inherits=n(8368);i.inherits(PassThrough,r);function PassThrough(e){if(!(this instanceof PassThrough))return new PassThrough(e);r.call(this,e)}PassThrough.prototype._transform=function(e,t,n){n(null,e)}},3061:function(e,t,n){t=e.exports=n(2094);t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.storage="undefined"!=typeof chrome&&"undefined"!=typeof chrome.storage?chrome.storage.local:localstorage();t.colors=["lightseagreen","forestgreen","goldenrod","dodgerblue","darkorchid","crimson"];function useColors(){if(typeof window!=="undefined"&&window.process&&window.process.type==="renderer"){return true}return typeof document!=="undefined"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window!=="undefined"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}t.formatters.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}};function formatArgs(e){var n=this.useColors;e[0]=(n?"%c":"")+this.namespace+(n?" %c":" ")+e[0]+(n?"%c ":" ")+"+"+t.humanize(this.diff);if(!n)return;var r="color: "+this.color;e.splice(1,0,r,"color: inherit");var i=0;var o=0;e[0].replace(/%[a-zA-Z%]/g,function(e){if("%%"===e)return;i++;if("%c"===e){o=i}});e.splice(o,0,r)}function log(){return"object"===typeof console&&console.log&&Function.prototype.apply.call(console.log,console,arguments)}function save(e){try{if(null==e){t.storage.removeItem("debug")}else{t.storage.debug=e}}catch(e){}}function load(){var e;try{e=t.storage.debug}catch(e){}if(!e&&typeof process!=="undefined"&&"env"in process){e=process.env.DEBUG}return e}t.enable(load());function localstorage(){try{return window.localStorage}catch(e){}}},3062:function(e,t,n){"use strict";var r=n(9423);var i=r.Buffer;var o={};var a;for(a in r){if(!r.hasOwnProperty(a))continue;if(a==="SlowBuffer"||a==="Buffer")continue;o[a]=r[a]}var s=o.Buffer={};for(a in i){if(!i.hasOwnProperty(a))continue;if(a==="allocUnsafe"||a==="allocUnsafeSlow")continue;s[a]=i[a]}o.Buffer.prototype=i.prototype;if(!s.from||s.from===Uint8Array.from){s.from=function(e,t,n){if(typeof e==="number"){throw new TypeError('The "value" argument must not be of type number. Received type '+typeof e)}if(e&&typeof e.length==="undefined"){throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}return i(e,t,n)}}if(!s.alloc){s.alloc=function(e,t,n){if(typeof e!=="number"){throw new TypeError('The "size" argument must be of type number. Received type '+typeof e)}if(e<0||e>=2*(1<<30)){throw new RangeError('The value "'+e+'" is invalid for option "size"')}var r=i(e);if(!t||t.length===0){r.fill(0)}else if(typeof n==="string"){r.fill(t,n)}else{r.fill(t)}return r}}if(!o.kStringMaxLength){try{o.kStringMaxLength=process.binding("buffer").kStringMaxLength}catch(e){}}if(!o.constants){o.constants={MAX_LENGTH:o.kMaxLength};if(o.kStringMaxLength){o.constants.MAX_STRING_LENGTH=o.kStringMaxLength}}e.exports=o},3068:function(e,t,n){"use strict";var r=n(7409);e.exports=r.extend({path:"application_fees/{feeId}/refunds",includeBasic:["create","list","retrieve","update"]})},3079:function(e,t){Object.defineProperty(t,"__esModule",{value:true});function dynamicRequire(e,t){return e.require(t)}t.dynamicRequire=dynamicRequire;function isNodeEnv(){return Object.prototype.toString.call(typeof process!=="undefined"?process:0)==="[object process]"}t.isNodeEnv=isNodeEnv;var n={};function getGlobalObject(){return isNodeEnv()?global:typeof window!=="undefined"?window:typeof self!=="undefined"?self:n}t.getGlobalObject=getGlobalObject;function uuid4(){var e=getGlobalObject();var t=e.crypto||e.msCrypto;if(!(t===void 0)&&t.getRandomValues){var n=new Uint16Array(8);t.getRandomValues(n);n[3]=n[3]&4095|16384;n[4]=n[4]&16383|32768;var r=function(e){var t=e.toString(16);while(t.length<4){t="0"+t}return t};return r(n[0])+r(n[1])+r(n[2])+r(n[3])+r(n[4])+r(n[5])+r(n[6])+r(n[7])}return"xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx".replace(/[xy]/g,function(e){var t=Math.random()*16|0;var n=e==="x"?t:t&3|8;return n.toString(16)})}t.uuid4=uuid4;function parseUrl(e){if(!e){return{}}var t=e.match(/^(([^:\/?#]+):)?(\/\/([^\/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?$/);if(!t){return{}}var n=t[6]||"";var r=t[8]||"";return{host:t[4],path:t[5],protocol:t[2],relative:t[5]+n+r}}t.parseUrl=parseUrl;function getEventDescription(e){if(e.message){return e.message}if(e.exception&&e.exception.values&&e.exception.values[0]){var t=e.exception.values[0];if(t.type&&t.value){return t.type+": "+t.value}return t.type||t.value||e.event_id||"<unknown>"}return e.event_id||"<unknown>"}t.getEventDescription=getEventDescription;function consoleSandbox(e){var t=getGlobalObject();var n=["debug","info","warn","error","log","assert"];if(!("console"in t)){return e()}var r=t.console;var i={};n.forEach(function(e){if(e in t.console&&r[e].__sentry__){i[e]=r[e].__sentry_wrapped__;r[e]=r[e].__sentry_original__}});var o=e();Object.keys(i).forEach(function(e){r[e]=i[e]});return o}t.consoleSandbox=consoleSandbox;function addExceptionTypeValue(e,t,n,r){if(r===void 0){r={handled:true,type:"generic"}}e.exception=e.exception||{};e.exception.values=e.exception.values||[];e.exception.values[0]=e.exception.values[0]||{};e.exception.values[0].value=e.exception.values[0].value||t||"";e.exception.values[0].type=e.exception.values[0].type||n||"Error";e.exception.values[0].mechanism=e.exception.values[0].mechanism||r}t.addExceptionTypeValue=addExceptionTypeValue},3086:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=i(n(8950));const c=i(n(8952));const u=o(n(8715));function patchDeploymentScale(e,t,n,i,o){return r(this,void 0,void 0,function*(){const e=s.default(`Setting scale rules for ${c.default(Object.keys(i).map(e=>`${a.default.bold(e)}`))}`);try{yield t.fetch(`/v3/now/deployments/${encodeURIComponent(n)}/instances`,{method:"PATCH",body:i});e()}catch(t){e();if(t.code==="forbidden_min_instances"){return new u.ForbiddenScaleMinInstances(o,t.max)}if(t.code==="forbidden_max_instances"){return new u.ForbiddenScaleMaxInstances(o,t.max)}if(t.code==="wrong_min_max_relation"){return new u.InvalidScaleMinMaxRelation(o)}if(t.code==="not_supported_min_scale_slots"){return new u.NotSupportedMinScaleSlots(o)}if(t.code==="deployment_type_unsupported"){return new u.DeploymentTypeUnsupported}throw t}})}t.default=patchDeploymentScale},3087:function(e,t,n){"use strict";const r=n(4316);const i=n(5897);const o=r.tmpdir();const a=process.getuid?process.getuid():process.pid;const s=()=>true;const c=process.platform==="win32";const u={editor:()=>process.env.EDITOR||process.env.VISUAL||(c?"notepad.exe":"vi"),shell:()=>c?process.env.COMSPEC||"cmd.exe":process.env.SHELL||"/bin/bash"};const l={fromString:()=>process.umask()};let f=r.homedir();if(f){process.env.HOME=f}else{f=i.resolve(o,"npm-"+a)}const p=process.platform==="win32"?"npm-cache":".npm";const d=process.platform==="win32"?process.env.APPDATA:f;const h=i.resolve(d,p);let m;let v;Object.defineProperty(t,"defaults",{get:function(){if(m)return m;if(process.env.PREFIX){v=process.env.PREFIX}else if(process.platform==="win32"){v=i.dirname(process.execPath)}else{v=i.dirname(i.dirname(process.execPath));if(process.env.DESTDIR){v=i.join(process.env.DESTDIR,v)}}m={access:null,"allow-same-version":false,"always-auth":false,also:null,"auth-type":"legacy","bin-links":true,browser:null,ca:null,cafile:null,cache:h,"cache-lock-stale":6e4,"cache-lock-retries":10,"cache-lock-wait":1e4,"cache-max":Infinity,"cache-min":10,cert:null,color:true,depth:Infinity,description:true,dev:false,"dry-run":false,editor:u.editor(),"engine-strict":false,force:false,"fetch-retries":2,"fetch-retry-factor":10,"fetch-retry-mintimeout":1e4,"fetch-retry-maxtimeout":6e4,git:"git","git-tag-version":true,global:false,globalconfig:i.resolve(v,"etc","npmrc"),"global-style":false,group:process.platform==="win32"?0:process.env.SUDO_GID||process.getgid&&process.getgid(),"ham-it-up":false,heading:"npm","if-present":false,"ignore-prepublish":false,"ignore-scripts":false,"init-module":i.resolve(f,".npm-init.js"),"init-author-name":"","init-author-email":"","init-author-url":"","init-version":"1.0.0","init-license":"ISC",json:false,key:null,"legacy-bundling":false,link:false,"local-address":undefined,loglevel:"notice",logstream:process.stderr,"logs-max":10,long:false,maxsockets:50,message:"%s","metrics-registry":null,"node-version":process.version,offline:false,"onload-script":false,only:null,optional:true,"package-lock":true,parseable:false,"prefer-offline":false,"prefer-online":false,prefix:v,production:process.env.NODE_ENV==="production",progress:!process.env.TRAVIS&&!process.env.CI,"proprietary-attribs":true,proxy:null,"https-proxy":null,"user-agent":"npm/{npm-version} "+"node/{node-version} "+"{platform} "+"{arch}","rebuild-bundle":true,registry:"https://registry.npmjs.org/",rollback:true,save:true,"save-bundle":false,"save-dev":false,"save-exact":false,"save-optional":false,"save-prefix":"^","save-prod":false,scope:"","script-shell":null,"scripts-prepend-node-path":"warn-only",searchopts:"",searchexclude:null,searchlimit:20,searchstaleness:15*60,"send-metrics":false,shell:u.shell(),shrinkwrap:true,"sign-git-tag":false,"sso-poll-frequency":500,"sso-type":"oauth","strict-ssl":true,tag:"latest","tag-version-prefix":"v",timing:false,tmp:o,unicode:s(),"unsafe-perm":process.platform==="win32"||process.platform==="cygwin"||!(process.getuid&&process.setuid&&process.getgid&&process.setgid)||process.getuid()!==0,usage:false,user:process.platform==="win32"?0:"nobody",userconfig:i.resolve(f,".npmrc"),umask:process.umask?process.umask():l.fromString("022"),version:false,versions:false,viewer:process.platform==="win32"?"browser":"man",_exit:true};return m}})},3088:function(e){e.exports=isTypedArray;isTypedArray.strict=isStrictTypedArray;isTypedArray.loose=isLooseTypedArray;var t=Object.prototype.toString;var n={"[object Int8Array]":true,"[object Int16Array]":true,"[object Int32Array]":true,"[object Uint8Array]":true,"[object Uint8ClampedArray]":true,"[object Uint16Array]":true,"[object Uint32Array]":true,"[object Float32Array]":true,"[object Float64Array]":true};function isTypedArray(e){return isStrictTypedArray(e)||isLooseTypedArray(e)}function isStrictTypedArray(e){return e instanceof Int8Array||e instanceof Int16Array||e instanceof Int32Array||e instanceof Uint8Array||e instanceof Uint8ClampedArray||e instanceof Uint16Array||e instanceof Uint32Array||e instanceof Float32Array||e instanceof Float64Array}function isLooseTypedArray(e){return n[t.call(e)]}},3100:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(1768);const a=n(501);const s=n(5899).pathExists;function copy(e,t,n,c){if(typeof n==="function"&&!c){c=n;n={}}else if(typeof n==="function"||n instanceof RegExp){n={filter:n}}c=c||function(){};n=n||{};if(n.preserveTimestamps&&process.arch==="ia32"){console.warn(`fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269`)}const u=process.cwd();const l=i.resolve(u,e);const f=i.resolve(u,t);if(l===f)return c(new Error("Source and destination must not be the same."));r.lstat(e,(r,u)=>{if(r)return c(r);let l=null;if(u.isDirectory()){const e=t.split(i.sep);e.pop();l=e.join(i.sep)}else{l=i.dirname(t)}s(l,(r,i)=>{if(r)return c(r);if(i)return o(e,t,n,c);a.mkdirs(l,r=>{if(r)return c(r);o(e,t,n,c)})})})}e.exports=copy},3109:function(e,t,n){e.exports=n(649).deprecate},3132:function(e,t,n){var r=n(3495).convert;var i=n(4480);var o=n(6886).PassThrough;var a=n(6612);e.exports=Body;function Body(e,t){t=t||{};this.body=e;this.bodyUsed=false;this.size=t.size||0;this.timeout=t.timeout||0;this._raw=[];this._abort=false}Body.prototype.json=function(){var e=this;return this._decode().then(function(t){try{return JSON.parse(t.toString())}catch(t){return Body.Promise.reject(new a("invalid json response body at "+e.url+" reason: "+t.message,"invalid-json"))}})};Body.prototype.text=function(){return this._decode().then(function(e){return e.toString()})};Body.prototype.buffer=function(){return this._decode()};Body.prototype._decode=function(){var e=this;if(this.bodyUsed){return Body.Promise.reject(new Error("body used already for: "+this.url))}this.bodyUsed=true;this._bytes=0;this._abort=false;this._raw=[];return new Body.Promise(function(t,n){var r;if(typeof e.body==="string"){e._bytes=e.body.length;e._raw=[new Buffer(e.body)];return t(e._convert())}if(e.body instanceof Buffer){e._bytes=e.body.length;e._raw=[e.body];return t(e._convert())}if(e.timeout){r=setTimeout(function(){e._abort=true;n(new a("response timeout at "+e.url+" over limit: "+e.timeout,"body-timeout"))},e.timeout)}e.body.on("error",function(t){n(new a("invalid response body at: "+e.url+" reason: "+t.message,"system",t))});e.body.on("data",function(t){if(e._abort||t===null){return}if(e.size&&e._bytes+t.length>e.size){e._abort=true;n(new a("content size at "+e.url+" over limit: "+e.size,"max-size"));return}e._bytes+=t.length;e._raw.push(t)});e.body.on("end",function(){if(e._abort){return}clearTimeout(r);t(e._convert())})})};Body.prototype._convert=function(e){e=e||"utf-8";var t=this.headers.get("content-type");var n="utf-8";var i,o;if(t){if(!/text\/html|text\/plain|\+xml|\/xml/i.test(t)){return Buffer.concat(this._raw)}i=/charset=([^;]*)/i.exec(t)}if(!i&&this._raw.length>0){for(var a=0;a<this._raw.length;a++){o+=this._raw[a].toString();if(o.length>1024){break}}o=o.substr(0,1024)}if(!i&&o){i=/<meta.+?charset=(['"])(.+?)\1/i.exec(o)}if(!i&&o){i=/<meta[\s]+?http-equiv=(['"])content-type\1[\s]+?content=(['"])(.+?)\2/i.exec(o);if(i){i=/charset=(.*)/i.exec(i.pop())}}if(!i&&o){i=/<\?xml.+?encoding=(['"])(.+?)\1/i.exec(o)}if(i){n=i.pop();if(n==="gb2312"||n==="gbk"){n="gb18030"}}return r(Buffer.concat(this._raw),e,n)};Body.prototype._clone=function(e){var t,n;var r=e.body;if(e.bodyUsed){throw new Error("cannot clone body after it is used")}if(i(r)&&typeof r.getBoundary!=="function"){t=new o;n=new o;r.pipe(t);r.pipe(n);e.body=t;r=n}return r};Body.Promise=global.Promise},3138:function(e,t,n){"use strict";const r=n(5897);const i=n(2617);const o=n(5899).pathExists;function symlinkPaths(e,t,n){if(r.isAbsolute(e)){return i.lstat(e,(t,r)=>{if(t){t.message=t.message.replace("lstat","ensureSymlink");return n(t)}return n(null,{toCwd:e,toDst:e})})}else{const a=r.dirname(t);const s=r.join(a,e);return o(s,(t,o)=>{if(t)return n(t);if(o){return n(null,{toCwd:s,toDst:e})}else{return i.lstat(e,(t,i)=>{if(t){t.message=t.message.replace("lstat","ensureSymlink");return n(t)}return n(null,{toCwd:e,toDst:r.relative(a,e)})})}})}}function symlinkPathsSync(e,t){let n;if(r.isAbsolute(e)){n=i.existsSync(e);if(!n)throw new Error("absolute srcpath does not exist");return{toCwd:e,toDst:e}}else{const o=r.dirname(t);const a=r.join(o,e);n=i.existsSync(a);if(n){return{toCwd:a,toDst:e}}else{n=i.existsSync(e);if(!n)throw new Error("relative srcpath does not exist");return{toCwd:e,toDst:r.relative(o,e)}}}}e.exports={symlinkPaths:symlinkPaths,symlinkPathsSync:symlinkPathsSync}},3139:function(e,t,n){"use strict";var r=n(7409);e.exports=r.extend({path:"transfers/{transferId}/reversals",includeBasic:["create","list","retrieve","update"]})},3147:function(e,t,n){"use strict";var r=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(8715));function mapCertError(e,t){const n=e.code;if(n==="too_many_requests"){return new i.TooManyRequests("certificates",e.retryAfter)}if(n==="not_found"){return new i.DomainNotFound(e.domain)}if(n==="configuration_error"){return new i.CertConfigurationError({cns:t||e.cns||[],message:e.message,external:e.external,helpUrl:e.helpUrl,type:e.statusCode===449?"http-01":"dns-01"})}if(n==="bad_domains"||n==="challenge_still_pending"||n==="common_name_domain_name_mismatch"||n==="conflicting_caa_record"||n==="domain_not_verified"||n==="invalid_cn"||n==="invalid_domain"||n==="rate_limited"||n==="should_share_root_domain"||n==="unauthorized_request_error"||n==="unsupported_challenge_priority"||n==="wildcard_not_allowed"||n==="validation_running"||n==="dns_error"||n==="challenge_error"||n==="txt_record_not_found"){return new i.CertError({cns:t||e.cns||[],code:n,message:e.message,helpUrl:e.helpUrl})}return null}t.default=mapCertError},3152:function(e){e.exports={$schema:"http://json-schema.org/draft-06/schema#",$id:"http://json-schema.org/draft-06/schema#",title:"Core schema meta-schema",definitions:{schemaArray:{type:"array",minItems:1,items:{$ref:"#"}},nonNegativeInteger:{type:"integer",minimum:0},nonNegativeIntegerDefault0:{allOf:[{$ref:"#/definitions/nonNegativeInteger"},{default:0}]},simpleTypes:{enum:["array","boolean","integer","null","number","object","string"]},stringArray:{type:"array",items:{type:"string"},uniqueItems:true,default:[]}},type:["object","boolean"],properties:{$id:{type:"string",format:"uri-reference"},$schema:{type:"string",format:"uri"},$ref:{type:"string",format:"uri-reference"},title:{type:"string"},description:{type:"string"},default:{},examples:{type:"array",items:{}},multipleOf:{type:"number",exclusiveMinimum:0},maximum:{type:"number"},exclusiveMaximum:{type:"number"},minimum:{type:"number"},exclusiveMinimum:{type:"number"},maxLength:{$ref:"#/definitions/nonNegativeInteger"},minLength:{$ref:"#/definitions/nonNegativeIntegerDefault0"},pattern:{type:"string",format:"regex"},additionalItems:{$ref:"#"},items:{anyOf:[{$ref:"#"},{$ref:"#/definitions/schemaArray"}],default:{}},maxItems:{$ref:"#/definitions/nonNegativeInteger"},minItems:{$ref:"#/definitions/nonNegativeIntegerDefault0"},uniqueItems:{type:"boolean",default:false},contains:{$ref:"#"},maxProperties:{$ref:"#/definitions/nonNegativeInteger"},minProperties:{$ref:"#/definitions/nonNegativeIntegerDefault0"},required:{$ref:"#/definitions/stringArray"},additionalProperties:{$ref:"#"},definitions:{type:"object",additionalProperties:{$ref:"#"},default:{}},properties:{type:"object",additionalProperties:{$ref:"#"},default:{}},patternProperties:{type:"object",additionalProperties:{$ref:"#"},default:{}},dependencies:{type:"object",additionalProperties:{anyOf:[{$ref:"#"},{$ref:"#/definitions/stringArray"}]}},propertyNames:{$ref:"#"},const:{},enum:{type:"array",minItems:1,uniqueItems:true},type:{anyOf:[{$ref:"#/definitions/simpleTypes"},{type:"array",items:{$ref:"#/definitions/simpleTypes"},minItems:1,uniqueItems:true}]},format:{type:"string"},allOf:{$ref:"#/definitions/schemaArray"},anyOf:{$ref:"#/definitions/schemaArray"},oneOf:{$ref:"#/definitions/schemaArray"},not:{$ref:"#"}},default:{}}},3156:function(e){e.exports=Object.freeze({Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_VERSION_ERROR:-6,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,ZLIB_VERNUM:4736,DEFLATE:1,INFLATE:2,GZIP:3,GUNZIP:4,DEFLATERAW:5,INFLATERAW:6,UNZIP:7,Z_MIN_WINDOWBITS:8,Z_MAX_WINDOWBITS:15,Z_DEFAULT_WINDOWBITS:15,Z_MIN_CHUNK:64,Z_MAX_CHUNK:Infinity,Z_DEFAULT_CHUNK:16384,Z_MIN_MEMLEVEL:1,Z_MAX_MEMLEVEL:9,Z_DEFAULT_MEMLEVEL:8,Z_MIN_LEVEL:-1,Z_MAX_LEVEL:9,Z_DEFAULT_LEVEL:-1})},3189:function(e,t,n){"use strict";var r=n(4136);e.exports=function(e){e.compiler.set("escape",function(e){return this.emit("\\"+e.val.replace(/^\\/,""),e)}).set("text",function(e){return this.emit(e.val.replace(/([{}])/g,"\\$1"),e)}).set("posix",function(e){if(e.val==="[::]"){return this.emit("\\[::\\]",e)}var t=r[e.inner];if(typeof t==="undefined"){t="["+e.inner+"]"}return this.emit(t,e)}).set("bracket",function(e){return this.mapVisit(e.nodes)}).set("bracket.open",function(e){return this.emit(e.val,e)}).set("bracket.inner",function(e){var t=e.val;if(t==="["||t==="]"){return this.emit("\\"+e.val,e)}if(t==="^]"){return this.emit("^\\]",e)}if(t==="^"){return this.emit("^",e)}if(/-/.test(t)&&!/(\d-\d|\w-\w)/.test(t)){t=t.split("-").join("\\-")}var n=t.charAt(0)==="^";if(n&&t.indexOf("/")===-1){t+="/"}if(n&&t.indexOf(".")===-1){t+="."}t=t.replace(/\\([1-9])/g,"$1");return this.emit(t,e)}).set("bracket.close",function(e){var t=e.val.replace(/^\\/,"");if(e.parent.escaped===true){return this.emit("\\"+t,e)}return this.emit(t,e)})}},3192:function(e,t,n){"use strict";const r=n(5897);const i=n(9052);const o="xsel";const a=__dirname+"/xsel";const s=["--clipboard","--input"];const c=["--clipboard","--output"];const u=(e,t)=>{let n;if(e.code==="ENOENT"){n=new Error("Couldn't find the `xsel` binary and fallback didn't work. On Debian/Ubuntu you can install xsel with: sudo apt install xsel")}else{n=new Error("Both xsel and fallback failed");n.xselError=e}n.fallbackError=t;return n};const l=async(e,t)=>{try{return await i.stdout(o,e,t)}catch(n){try{return await i.stdout(a,e,t)}catch(e){throw u(n,e)}}};const f=(e,t)=>{try{return i.sync(o,e,t)}catch(n){try{return i.sync(a,e,t)}catch(e){throw u(n,e)}}};e.exports={copy:async e=>{await l(s,e)},copySync:e=>{f(s,e)},paste:e=>l(c,e),pasteSync:e=>f(c,e)}},3198:function(e){"use strict";e.exports=function generate_pattern(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f=e.opts.$data&&a&&a.$data,p;if(f){r+=" var schema"+i+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ";p="schema"+i}else{p=a}var d=f?"(new RegExp("+p+"))":e.usePattern(a);r+="if ( ";if(f){r+=" ("+p+" !== undefined && typeof "+p+" != 'string') || "}r+=" !"+d+".test("+l+") ) { ";var h=h||[];h.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"pattern"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { pattern: ";if(f){r+=""+p}else{r+=""+e.util.toQuotedString(a)}r+=" } ";if(e.opts.messages!==false){r+=" , message: 'should match pattern \"";if(f){r+="' + "+p+" + '"}else{r+=""+e.util.escapeQuotes(a)}r+="\"' "}if(e.opts.verbose){r+=" , schema: ";if(f){r+="validate.schema"+s}else{r+=""+e.util.toQuotedString(a)}r+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var m=r;r=h.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+m+"]); "}else{r+=" validate.errors = ["+m+"]; return false; "}}else{r+=" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+="} ";if(u){r+=" else { "}return r}},3199:function(e){e.exports=["0BSD","AAL","ADSL","AFL-1.1","AFL-1.2","AFL-2.0","AFL-2.1","AFL-3.0","AGPL-1.0-only","AGPL-1.0-or-later","AGPL-3.0-only","AGPL-3.0-or-later","AMDPLPA","AML","AMPAS","ANTLR-PD","APAFML","APL-1.0","APSL-1.0","APSL-1.1","APSL-1.2","APSL-2.0","Abstyles","Adobe-2006","Adobe-Glyph","Afmparse","Aladdin","Apache-1.0","Apache-1.1","Apache-2.0","Artistic-1.0","Artistic-1.0-Perl","Artistic-1.0-cl8","Artistic-2.0","BSD-1-Clause","BSD-2-Clause","BSD-2-Clause-FreeBSD","BSD-2-Clause-NetBSD","BSD-2-Clause-Patent","BSD-3-Clause","BSD-3-Clause-Attribution","BSD-3-Clause-Clear","BSD-3-Clause-LBNL","BSD-3-Clause-No-Nuclear-License","BSD-3-Clause-No-Nuclear-License-2014","BSD-3-Clause-No-Nuclear-Warranty","BSD-3-Clause-Open-MPI","BSD-4-Clause","BSD-4-Clause-UC","BSD-Protection","BSD-Source-Code","BSL-1.0","Bahyph","Barr","Beerware","BitTorrent-1.0","BitTorrent-1.1","BlueOak-1.0.0","Borceux","CATOSL-1.1","CC-BY-1.0","CC-BY-2.0","CC-BY-2.5","CC-BY-3.0","CC-BY-4.0","CC-BY-NC-1.0","CC-BY-NC-2.0","CC-BY-NC-2.5","CC-BY-NC-3.0","CC-BY-NC-4.0","CC-BY-NC-ND-1.0","CC-BY-NC-ND-2.0","CC-BY-NC-ND-2.5","CC-BY-NC-ND-3.0","CC-BY-NC-ND-4.0","CC-BY-NC-SA-1.0","CC-BY-NC-SA-2.0","CC-BY-NC-SA-2.5","CC-BY-NC-SA-3.0","CC-BY-NC-SA-4.0","CC-BY-ND-1.0","CC-BY-ND-2.0","CC-BY-ND-2.5","CC-BY-ND-3.0","CC-BY-ND-4.0","CC-BY-SA-1.0","CC-BY-SA-2.0","CC-BY-SA-2.5","CC-BY-SA-3.0","CC-BY-SA-4.0","CC-PDDC","CC0-1.0","CDDL-1.0","CDDL-1.1","CDLA-Permissive-1.0","CDLA-Sharing-1.0","CECILL-1.0","CECILL-1.1","CECILL-2.0","CECILL-2.1","CECILL-B","CECILL-C","CERN-OHL-1.1","CERN-OHL-1.2","CNRI-Jython","CNRI-Python","CNRI-Python-GPL-Compatible","CPAL-1.0","CPL-1.0","CPOL-1.02","CUA-OPL-1.0","Caldera","ClArtistic","Condor-1.1","Crossword","CrystalStacker","Cube","D-FSL-1.0","DOC","DSDP","Dotseqn","ECL-1.0","ECL-2.0","EFL-1.0","EFL-2.0","EPL-1.0","EPL-2.0","EUDatagrid","EUPL-1.0","EUPL-1.1","EUPL-1.2","Entessa","ErlPL-1.1","Eurosym","FSFAP","FSFUL","FSFULLR","FTL","Fair","Frameworx-1.0","FreeImage","GFDL-1.1-only","GFDL-1.1-or-later","GFDL-1.2-only","GFDL-1.2-or-later","GFDL-1.3-only","GFDL-1.3-or-later","GL2PS","GPL-1.0-only","GPL-1.0-or-later","GPL-2.0-only","GPL-2.0-or-later","GPL-3.0-only","GPL-3.0-or-later","Giftware","Glide","Glulxe","HPND","HPND-sell-variant","HaskellReport","IBM-pibs","ICU","IJG","IPA","IPL-1.0","ISC","ImageMagick","Imlib2","Info-ZIP","Intel","Intel-ACPI","Interbase-1.0","JPNIC","JSON","JasPer-2.0","LAL-1.2","LAL-1.3","LGPL-2.0-only","LGPL-2.0-or-later","LGPL-2.1-only","LGPL-2.1-or-later","LGPL-3.0-only","LGPL-3.0-or-later","LGPLLR","LPL-1.0","LPL-1.02","LPPL-1.0","LPPL-1.1","LPPL-1.2","LPPL-1.3a","LPPL-1.3c","Latex2e","Leptonica","LiLiQ-P-1.1","LiLiQ-R-1.1","LiLiQ-Rplus-1.1","Libpng","Linux-OpenIB","MIT","MIT-0","MIT-CMU","MIT-advertising","MIT-enna","MIT-feh","MITNFA","MPL-1.0","MPL-1.1","MPL-2.0","MPL-2.0-no-copyleft-exception","MS-PL","MS-RL","MTLL","MakeIndex","MirOS","Motosoto","Multics","Mup","NASA-1.3","NBPL-1.0","NCSA","NGPL","NLOD-1.0","NLPL","NOSL","NPL-1.0","NPL-1.1","NPOSL-3.0","NRL","NTP","Naumen","Net-SNMP","NetCDF","Newsletr","Nokia","Noweb","OCCT-PL","OCLC-2.0","ODC-By-1.0","ODbL-1.0","OFL-1.0","OFL-1.1","OGL-UK-1.0","OGL-UK-2.0","OGL-UK-3.0","OGTSL","OLDAP-1.1","OLDAP-1.2","OLDAP-1.3","OLDAP-1.4","OLDAP-2.0","OLDAP-2.0.1","OLDAP-2.1","OLDAP-2.2","OLDAP-2.2.1","OLDAP-2.2.2","OLDAP-2.3","OLDAP-2.4","OLDAP-2.5","OLDAP-2.6","OLDAP-2.7","OLDAP-2.8","OML","OPL-1.0","OSET-PL-2.1","OSL-1.0","OSL-1.1","OSL-2.0","OSL-2.1","OSL-3.0","OpenSSL","PDDL-1.0","PHP-3.0","PHP-3.01","Parity-6.0.0","Plexus","PostgreSQL","Python-2.0","QPL-1.0","Qhull","RHeCos-1.1","RPL-1.1","RPL-1.5","RPSL-1.0","RSA-MD","RSCPL","Rdisc","Ruby","SAX-PD","SCEA","SGI-B-1.0","SGI-B-1.1","SGI-B-2.0","SHL-0.5","SHL-0.51","SISSL","SISSL-1.2","SMLNJ","SMPPL","SNIA","SPL-1.0","SSPL-1.0","SWL","Saxpath","Sendmail","Sendmail-8.23","SimPL-2.0","Sleepycat","Spencer-86","Spencer-94","Spencer-99","SugarCRM-1.1.3","TAPR-OHL-1.0","TCL","TCP-wrappers","TMate","TORQUE-1.1","TOSL","TU-Berlin-1.0","TU-Berlin-2.0","UPL-1.0","Unicode-DFS-2015","Unicode-DFS-2016","Unicode-TOU","Unlicense","VOSTROM","VSL-1.0","Vim","W3C","W3C-19980720","W3C-20150513","WTFPL","Watcom-1.0","Wsuipa","X11","XFree86-1.1","XSkat","Xerox","Xnet","YPL-1.0","YPL-1.1","ZPL-1.1","ZPL-2.0","ZPL-2.1","Zed","Zend-2.0","Zimbra-1.3","Zimbra-1.4","Zlib","blessing","bzip2-1.0.5","bzip2-1.0.6","copyleft-next-0.3.0","copyleft-next-0.3.1","curl","diffmark","dvipdfm","eGenix","gSOAP-1.3b","gnuplot","iMatix","libpng-2.0","libtiff","mpich2","psfrag","psutils","xinetd","xpp","zlib-acknowledgement"]},3215:function(e,t,n){var r=n(6324);function buildGraph(){var e={};var t=Object.keys(r);for(var n=t.length,i=0;i<n;i++){e[t[i]]={distance:-1,parent:null}}return e}function deriveBFS(e){var t=buildGraph();var n=[e];t[e].distance=0;while(n.length){var i=n.pop();var o=Object.keys(r[i]);for(var a=o.length,s=0;s<a;s++){var c=o[s];var u=t[c];if(u.distance===-1){u.distance=t[i].distance+1;u.parent=i;n.unshift(c)}}}return t}function link(e,t){return function(n){return t(e(n))}}function wrapConversion(e,t){var n=[t[e].parent,e];var i=r[t[e].parent][e];var o=t[e].parent;while(t[o].parent){n.unshift(t[o].parent);i=link(r[t[o].parent][o],i);o=t[o].parent}i.conversion=n;return i}e.exports=function(e){var t=deriveBFS(e);var n={};var r=Object.keys(t);for(var i=r.length,o=0;o<i;o++){var a=r[o];var s=t[a];if(s.parent===null){continue}n[a]=wrapConversion(a,t)}return n}},3241:function(e,t,n){"use strict";n.r(t);t["default"]=(e=>new Promise(()=>{setTimeout(()=>process.exit(e||0),100)}))},3246:function(e,t,n){"use strict";var r=n(9217);var i=n(9368);var o=n(8763);var a=n(9335).Buffer;function Multipart(e){this.request=e;this.boundary=r();this.chunked=false;this.body=null}Multipart.prototype.isChunked=function(e){var t=this;var n=false;var r=e.data||e;if(!r.forEach){t.request.emit("error",new Error("Argument error, options.multipart."))}if(e.chunked!==undefined){n=e.chunked}if(t.request.getHeader("transfer-encoding")==="chunked"){n=true}if(!n){r.forEach(function(e){if(typeof e.body==="undefined"){t.request.emit("error",new Error("Body attribute missing in multipart."))}if(o(e.body)){n=true}})}return n};Multipart.prototype.setHeaders=function(e){var t=this;if(e&&!t.request.hasHeader("transfer-encoding")){t.request.setHeader("transfer-encoding","chunked")}var n=t.request.getHeader("content-type");if(!n||n.indexOf("multipart")===-1){t.request.setHeader("content-type","multipart/related; boundary="+t.boundary)}else{if(n.indexOf("boundary")!==-1){t.boundary=n.replace(/.*boundary=([^\s;]+).*/,"$1")}else{t.request.setHeader("content-type",n+"; boundary="+t.boundary)}}};Multipart.prototype.build=function(e,t){var n=this;var r=t?new i:[];function add(e){if(typeof e==="number"){e=e.toString()}return t?r.append(e):r.push(a.from(e))}if(n.request.preambleCRLF){add("\r\n")}e.forEach(function(e){var t="--"+n.boundary+"\r\n";Object.keys(e).forEach(function(n){if(n==="body"){return}t+=n+": "+e[n]+"\r\n"});t+="\r\n";add(t);add(e.body);add("\r\n")});add("--"+n.boundary+"--");if(n.request.postambleCRLF){add("\r\n")}return r};Multipart.prototype.onRequest=function(e){var t=this;var n=t.isChunked(e);var r=e.data||e;t.setHeaders(n);t.chunked=n;t.body=t.build(r,n)};t.Multipart=Multipart},3251:function(e){e.exports={newInvalidAsn1Error:function(e){var t=new Error;t.name="InvalidAsn1Error";t.message=e||"";return t}}},3252:function(e,t,n){e.exports={DiffieHellman:DiffieHellman,generateECDSA:generateECDSA,generateED25519:generateED25519};var r=n(9261);var i=n(2984);var o=n(3062).Buffer;var a=n(6977);var s=n(5271);var c=n(1449);var u=n(120);var l=n(1946);var f=i.createECDH!==undefined;var p=n(111);var d=n(7884);var h=n(7176).BigInteger;function DiffieHellman(e){s.assertCompatible(e,u,[1,4],"key");this._isPriv=l.isPrivateKey(e,[1,3]);this._algo=e.type;this._curve=e.curve;this._key=e;if(e.type==="dsa"){if(!f){throw new Error("Due to bugs in the node 0.10 "+"crypto API, node 0.12.x or later is required "+"to use DH")}this._dh=i.createDiffieHellman(e.part.p.data,undefined,e.part.g.data,undefined);this._p=e.part.p;this._g=e.part.g;if(this._isPriv)this._dh.setPrivateKey(e.part.x.data);this._dh.setPublicKey(e.part.y.data)}else if(e.type==="ecdsa"){if(!f){this._ecParams=new X9ECParameters(this._curve);if(this._isPriv){this._priv=new ECPrivate(this._ecParams,e.part.d.data)}return}var t={nistp256:"prime256v1",nistp384:"secp384r1",nistp521:"secp521r1"}[e.curve];this._dh=i.createECDH(t);if(typeof this._dh!=="object"||typeof this._dh.setPrivateKey!=="function"){f=false;DiffieHellman.call(this,e);return}if(this._isPriv)this._dh.setPrivateKey(e.part.d.data);this._dh.setPublicKey(e.part.Q.data)}else if(e.type==="curve25519"){if(this._isPriv){s.assertCompatible(e,l,[1,5],"key");this._priv=e.part.k.data}}else{throw new Error("DH not supported for "+e.type+" keys")}}DiffieHellman.prototype.getPublicKey=function(){if(this._isPriv)return this._key.toPublic();return this._key};DiffieHellman.prototype.getPrivateKey=function(){if(this._isPriv)return this._key;else return undefined};DiffieHellman.prototype.getKey=DiffieHellman.prototype.getPrivateKey;DiffieHellman.prototype._keyCheck=function(e,t){r.object(e,"key");if(!t)s.assertCompatible(e,l,[1,3],"key");s.assertCompatible(e,u,[1,4],"key");if(e.type!==this._algo){throw new Error("A "+e.type+" key cannot be used in "+this._algo+" Diffie-Hellman")}if(e.curve!==this._curve){throw new Error("A key from the "+e.curve+" curve "+"cannot be used with a "+this._curve+" Diffie-Hellman")}if(e.type==="dsa"){r.deepEqual(e.part.p,this._p,"DSA key prime does not match");r.deepEqual(e.part.g,this._g,"DSA key generator does not match")}};DiffieHellman.prototype.setKey=function(e){this._keyCheck(e);if(e.type==="dsa"){this._dh.setPrivateKey(e.part.x.data);this._dh.setPublicKey(e.part.y.data)}else if(e.type==="ecdsa"){if(f){this._dh.setPrivateKey(e.part.d.data);this._dh.setPublicKey(e.part.Q.data)}else{this._priv=new ECPrivate(this._ecParams,e.part.d.data)}}else if(e.type==="curve25519"){var t=e.part.k;if(!e.part.k)t=e.part.r;this._priv=t.data;if(this._priv[0]===0)this._priv=this._priv.slice(1);this._priv=this._priv.slice(0,32)}this._key=e;this._isPriv=true};DiffieHellman.prototype.setPrivateKey=DiffieHellman.prototype.setKey;DiffieHellman.prototype.computeSecret=function(e){this._keyCheck(e,true);if(!this._isPriv)throw new Error("DH exchange has not been initialized with "+"a private key yet");var t;if(this._algo==="dsa"){return this._dh.computeSecret(e.part.y.data)}else if(this._algo==="ecdsa"){if(f){return this._dh.computeSecret(e.part.Q.data)}else{t=new ECPublic(this._ecParams,e.part.Q.data);return this._priv.deriveSharedSecret(t)}}else if(this._algo==="curve25519"){t=e.part.A.data;while(t[0]===0&&t.length>32)t=t.slice(1);var n=this._priv;r.strictEqual(t.length,32);r.strictEqual(n.length,32);var i=c.box.before(new Uint8Array(t),new Uint8Array(n));return o.from(i)}throw new Error("Invalid algorithm: "+this._algo)};DiffieHellman.prototype.generateKey=function(){var e=[];var t,n;if(this._algo==="dsa"){this._dh.generateKeys();e.push({name:"p",data:this._p.data});e.push({name:"q",data:this._key.part.q.data});e.push({name:"g",data:this._g.data});e.push({name:"y",data:this._dh.getPublicKey()});e.push({name:"x",data:this._dh.getPrivateKey()});this._key=new l({type:"dsa",parts:e});this._isPriv=true;return this._key}else if(this._algo==="ecdsa"){if(f){this._dh.generateKeys();e.push({name:"curve",data:o.from(this._curve)});e.push({name:"Q",data:this._dh.getPublicKey()});e.push({name:"d",data:this._dh.getPrivateKey()});this._key=new l({type:"ecdsa",curve:this._curve,parts:e});this._isPriv=true;return this._key}else{var a=this._ecParams.getN();var s=new h(i.randomBytes(a.bitLength()));var u=a.subtract(h.ONE);t=s.mod(u).add(h.ONE);n=this._ecParams.getG().multiply(t);t=o.from(t.toByteArray());n=o.from(this._ecParams.getCurve().encodePointHex(n),"hex");this._priv=new ECPrivate(this._ecParams,t);e.push({name:"curve",data:o.from(this._curve)});e.push({name:"Q",data:n});e.push({name:"d",data:t});this._key=new l({type:"ecdsa",curve:this._curve,parts:e});this._isPriv=true;return this._key}}else if(this._algo==="curve25519"){var p=c.box.keyPair();t=o.from(p.secretKey);n=o.from(p.publicKey);t=o.concat([t,n]);r.strictEqual(t.length,64);r.strictEqual(n.length,32);e.push({name:"A",data:n});e.push({name:"k",data:t});this._key=new l({type:"curve25519",parts:e});this._isPriv=true;return this._key}throw new Error("Invalid algorithm: "+this._algo)};DiffieHellman.prototype.generateKeys=DiffieHellman.prototype.generateKey;function X9ECParameters(e){var t=a.curves[e];r.object(t);var n=new h(t.p);var i=new h(t.a);var o=new h(t.b);var s=new h(t.n);var c=h.ONE;var u=new d.ECCurveFp(n,i,o);var l=u.decodePointHex(t.G.toString("hex"));this.curve=u;this.g=l;this.n=s;this.h=c}X9ECParameters.prototype.getCurve=function(){return this.curve};X9ECParameters.prototype.getG=function(){return this.g};X9ECParameters.prototype.getN=function(){return this.n};X9ECParameters.prototype.getH=function(){return this.h};function ECPublic(e,t){this._params=e;if(t[0]===0)t=t.slice(1);this._pub=e.getCurve().decodePointHex(t.toString("hex"))}function ECPrivate(e,t){this._params=e;this._priv=new h(s.mpNormalize(t))}ECPrivate.prototype.deriveSharedSecret=function(e){r.ok(e instanceof ECPublic);var t=e._pub.multiply(this._priv);return o.from(t.getX().toBigInteger().toByteArray())};function generateED25519(){var e=c.sign.keyPair();var t=o.from(e.secretKey);var n=o.from(e.publicKey);r.strictEqual(t.length,64);r.strictEqual(n.length,32);var i=[];i.push({name:"A",data:n});i.push({name:"k",data:t.slice(0,32)});var a=new l({type:"ed25519",parts:i});return a}function generateECDSA(e){var t=[];var n;if(f){var r={nistp256:"prime256v1",nistp384:"secp384r1",nistp521:"secp521r1"}[e];var a=i.createECDH(r);a.generateKeys();t.push({name:"curve",data:o.from(e)});t.push({name:"Q",data:a.getPublicKey()});t.push({name:"d",data:a.getPrivateKey()});n=new l({type:"ecdsa",curve:e,parts:t});return n}else{var s=new X9ECParameters(e);var c=s.getN();var u=Math.ceil((c.bitLength()+64)/8);var p=new h(i.randomBytes(u));var d=c.subtract(h.ONE);var m=p.mod(d).add(h.ONE);var v=s.getG().multiply(m);m=o.from(m.toByteArray());v=o.from(s.getCurve().encodePointHex(v),"hex");t.push({name:"curve",data:o.from(e)});t.push({name:"Q",data:v});t.push({name:"d",data:m});n=new l({type:"ecdsa",curve:e,parts:t});return n}}},3257:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return rm});var r=n(9544);var i=n.n(r);var o=n(2229);var a=n.n(o);var s=n(2616);var c=n.n(s);var u=n(4495);var l=n(8685);var f=n.n(l);var p=n(4573);var d=n.n(p);var h=n(8303);var m=n.n(h);var v=n(6012);var g=n.n(v);var y=n(586);var b=n.n(y);var w=n(4110);var x=n.n(w);var k=n(7991);var j=n.n(k);var S=n(8852);var E=n.n(S);var _=n(7219);var C=n.n(_);async function rm(e,t,n,r){const{authConfig:{token:o},config:a}=e;const{currentTeam:s}=a;const{apiUrl:c}=e;const{"--debug":l}=t;const p=new d.a({apiUrl:c,token:o,currentTeam:s,debug:l});let h=null;try{({contextName:h}=await m()(p))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){r.error(e.message);return 1}throw e}const v=new u["default"]({apiUrl:c,token:o,debug:l,currentTeam:s});const[y]=n;if(n.length!==1){r.error(`Invalid number of arguments. Usage: ${i.a.cyan("`now alias rm <alias>`")}`);return 1}if(!y){r.error(`${f()("now alias rm <alias>")} expects one argument`);return 1}if(!Object(S["isValidName"])(y)){r.error(`The provided argument "${y}" is not a valid alias`);return 1}const w=await C()(r,v,y);if(!w){r.error(`Alias not found by "${y}" under ${i.a.bold(h)}`);r.log(`Run ${f()("now alias ls")} to see your aliases.`);return 1}const x=b()();if(!t["--yes"]&&!await confirmAliasRemove(r,w)){r.log("Aborted");return 0}await g()(v,w.uid);console.log(`${i.a.cyan("> Success!")} Alias ${i.a.bold(w.alias)} removed ${x()}`);return 0}async function confirmAliasRemove(e,t){const n=t.deployment?i.a.underline(t.deployment.url):null;const r=c()([[...n?[n]:[],i.a.underline(t.alias),i.a.gray(`${a()(new Date-new Date(t.created))} ago`)]],{align:["l","l","r"],hsep:" ".repeat(4),stringLength:x.a});e.log(`The following alias will be removed permanently`);e.print(` ${r}\n`);return j()(e,i.a.red("Are you sure?"))}},3258:function(e,t,n){"use strict";var r=n(6887);var i=n(4794);var o={};function toRegexRange(e,t,n){if(i(e)===false){throw new RangeError("toRegexRange: first argument is invalid.")}if(typeof t==="undefined"||e===t){return String(e)}if(i(t)===false){throw new RangeError("toRegexRange: second argument is invalid.")}n=n||{};var r=String(n.relaxZeros);var a=String(n.shorthand);var s=String(n.capture);var c=e+":"+t+"="+r+a+s;if(o.hasOwnProperty(c)){return o[c].result}var u=Math.min(e,t);var l=Math.max(e,t);if(Math.abs(u-l)===1){var f=e+"|"+t;if(n.capture){return"("+f+")"}return f}var p=padding(e)||padding(t);var d=[];var h=[];var m={min:e,max:t,a:u,b:l};if(p){m.isPadded=p;m.maxLen=String(m.max).length}if(u<0){var v=l<0?Math.abs(l):1;var g=Math.abs(u);h=splitToPatterns(v,g,m,n);u=m.a=0}if(l>=0){d=splitToPatterns(u,l,m,n)}m.negatives=h;m.positives=d;m.result=siftPatterns(h,d,n);if(n.capture&&d.length+h.length>1){m.result="("+m.result+")"}o[c]=m;return m.result}function siftPatterns(e,t,n){var r=filterPatterns(e,t,"-",false,n)||[];var i=filterPatterns(t,e,"",false,n)||[];var o=filterPatterns(e,t,"-?",true,n)||[];var a=r.concat(o).concat(i);return a.join("|")}function splitToRanges(e,t){e=Number(e);t=Number(t);var n=1;var r=[t];var i=+countNines(e,n);while(e<=i&&i<=t){r=push(r,i);n+=1;i=+countNines(e,n)}var o=1;i=countZeros(t+1,o)-1;while(e<i&&i<=t){r=push(r,i);o+=1;i=countZeros(t+1,o)-1}r.sort(compare);return r}function rangeToPattern(e,t,n){if(e===t){return{pattern:String(e),digits:[]}}var r=zip(String(e),String(t));var i=r.length,o=-1;var a="";var s=0;while(++o<i){var c=r[o];var u=c[0];var l=c[1];if(u===l){a+=u}else if(u!=="0"||l!=="9"){a+=toCharacterClass(u,l)}else{s+=1}}if(s){a+=n.shorthand?"\\d":"[0-9]"}return{pattern:a,digits:[s]}}function splitToPatterns(e,t,n,r){var i=splitToRanges(e,t);var o=i.length;var a=-1;var s=[];var c=e;var u;while(++a<o){var l=i[a];var f=rangeToPattern(c,l,r);var p="";if(!n.isPadded&&u&&u.pattern===f.pattern){if(u.digits.length>1){u.digits.pop()}u.digits.push(f.digits[0]);u.string=u.pattern+toQuantifier(u.digits);c=l+1;continue}if(n.isPadded){p=padZeros(l,n)}f.string=p+f.pattern+toQuantifier(f.digits);s.push(f);c=l+1;u=f}return s}function filterPatterns(e,t,n,r,i){var o=[];for(var a=0;a<e.length;a++){var s=e[a];var c=s.string;if(i.relaxZeros!==false){if(n==="-"&&c.charAt(0)==="0"){if(c.charAt(1)==="{"){c="0*"+c.replace(/^0\{\d+\}/,"")}else{c="0*"+c.slice(1)}}}if(!r&&!contains(t,"string",c)){o.push(n+c)}if(r&&contains(t,"string",c)){o.push(n+c)}}return o}function zip(e,t){var n=[];for(var r in e)n.push([e[r],t[r]]);return n}function compare(e,t){return e>t?1:t>e?-1:0}function push(e,t){if(e.indexOf(t)===-1)e.push(t);return e}function contains(e,t,n){for(var r=0;r<e.length;r++){if(e[r][t]===n){return true}}return false}function countNines(e,t){return String(e).slice(0,-t)+r("9",t)}function countZeros(e,t){return e-e%Math.pow(10,t)}function toQuantifier(e){var t=e[0];var n=e[1]?","+e[1]:"";if(!n&&(!t||t===1)){return""}return"{"+t+n+"}"}function toCharacterClass(e,t){return"["+e+(t-e===1?"":"-")+t+"]"}function padding(e){return/^-?(0+)\d/.exec(e)}function padZeros(e,t){if(t.isPadded){var n=Math.abs(t.maxLen-String(e).length);switch(n){case 0:return"";case 1:return"0";default:{return"0{"+n+"}"}}}return e}e.exports=toRegexRange},3266:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));function promptBool(e,t={}){return r(this,void 0,void 0,function*(){const{defaultValue:n=false,abortSequences:r=new Set([""]),resolveChars:i=new Set(["\r"]),yesChar:a="y",noChar:s="n",stdin:c=process.stdin,stdout:u=process.stdout,trailing:l=""}=t;return new Promise(t=>{const f=Boolean(c.isRaw);if(c.setRawMode){c.setRawMode(true)}c.resume();function restore(){u.write(l);if(c.setRawMode){c.setRawMode(f)}c.pause();c.removeListener("data",onData)}function onData(e){const o=e.toString();if(o[0].toLowerCase()===a){restore();u.write(`\n`);t(true)}else if(o[0].toLowerCase()===s){u.write(`\n`);restore();t(false)}else if(r.has(o)){u.write(`\n`);restore();t(false)}else if(i.has(o[0])){u.write(`\n`);restore();t(n)}else{}}const p=n===null?`[${a}|${s}]`:n?`[${o.default.bold(a.toUpperCase())}|${s}]`:`[${a}|${o.default.bold(s.toUpperCase())}]`;u.write(`${o.default.gray(">")} ${e} ${o.default.gray(p)} `);c.on("data",onData)})})}t.default=promptBool},3271:function(e,t,n){var r=n(6354);var i=n(4733);var o=n(662);var a=function(){};var s=function(e){return typeof e==="function"};var c=function(e){if(!o)return false;return(e instanceof(o.ReadStream||a)||e instanceof(o.WriteStream||a))&&s(e.close)};var u=function(e){return e.setHeader&&s(e.abort)};var l=function(e,t,n,o){o=r(o);var l=false;e.on("close",function(){l=true});i(e,{readable:t,writable:n},function(e){if(e)return o(e);l=true;o()});var f=false;return function(t){if(l)return;if(f)return;f=true;if(c(e))return e.close(a);if(u(e))return e.abort();if(s(e.destroy))return e.destroy();o(t||new Error("stream was destroyed"))}};var f=function(e){e()};var p=function(e,t){return e.pipe(t)};var d=function(){var e=Array.prototype.slice.call(arguments);var t=s(e[e.length-1]||a)&&e.pop()||a;if(Array.isArray(e[0]))e=e[0];if(e.length<2)throw new Error("pump requires two streams per minimum");var n;var r=e.map(function(i,o){var a=o<e.length-1;var s=o>0;return l(i,a,s,function(e){if(!n)n=e;if(e)r.forEach(f);if(a)return;r.forEach(f);t(n)})});return e.reduce(p)};e.exports=d},3274:function(e,t,n){e.exports=glob;var r=n(662);var i=n(7352);var o=n(186);var a=o.Minimatch;var s=n(8368);var c=n(4859).EventEmitter;var u=n(5897);var l=n(3930);var f=n(7982);var p=n(4877);var d=n(9228);var h=d.alphasort;var m=d.alphasorti;var v=d.setopts;var g=d.ownProp;var y=n(2574);var b=n(649);var w=d.childrenIgnored;var x=d.isIgnored;var k=n(6354);function glob(e,t,n){if(typeof t==="function")n=t,t={};if(!t)t={};if(t.sync){if(n)throw new TypeError("callback provided to sync glob");return p(e,t)}return new Glob(e,t,n)}glob.sync=p;var j=glob.GlobSync=p.GlobSync;glob.glob=glob;function extend(e,t){if(t===null||typeof t!=="object"){return e}var n=Object.keys(t);var r=n.length;while(r--){e[n[r]]=t[n[r]]}return e}glob.hasMagic=function(e,t){var n=extend({},t);n.noprocess=true;var r=new Glob(e,n);var i=r.minimatch.set;if(!e)return false;if(i.length>1)return true;for(var o=0;o<i[0].length;o++){if(typeof i[0][o]!=="string")return true}return false};glob.Glob=Glob;s(Glob,c);function Glob(e,t,n){if(typeof t==="function"){n=t;t=null}if(t&&t.sync){if(n)throw new TypeError("callback provided to sync glob");return new j(e,t)}if(!(this instanceof Glob))return new Glob(e,t,n);v(this,e,t);this._didRealPath=false;var r=this.minimatch.set.length;this.matches=new Array(r);if(typeof n==="function"){n=k(n);this.on("error",n);this.on("end",function(e){n(null,e)})}var i=this;this._processing=0;this._emitQueue=[];this._processQueue=[];this.paused=false;if(this.noprocess)return this;if(r===0)return done();var o=true;for(var a=0;a<r;a++){this._process(this.minimatch.set[a],a,false,done)}o=false;function done(){--i._processing;if(i._processing<=0){if(o){process.nextTick(function(){i._finish()})}else{i._finish()}}}}Glob.prototype._finish=function(){l(this instanceof Glob);if(this.aborted)return;if(this.realpath&&!this._didRealpath)return this._realpath();d.finish(this);this.emit("end",this.found)};Glob.prototype._realpath=function(){if(this._didRealpath)return;this._didRealpath=true;var e=this.matches.length;if(e===0)return this._finish();var t=this;for(var n=0;n<this.matches.length;n++)this._realpathSet(n,next);function next(){if(--e===0)t._finish()}};Glob.prototype._realpathSet=function(e,t){var n=this.matches[e];if(!n)return t();var r=Object.keys(n);var o=this;var a=r.length;if(a===0)return t();var s=this.matches[e]=Object.create(null);r.forEach(function(n,r){n=o._makeAbs(n);i.realpath(n,o.realpathCache,function(r,i){if(!r)s[i]=true;else if(r.syscall==="stat")s[n]=true;else o.emit("error",r);if(--a===0){o.matches[e]=s;t()}})})};Glob.prototype._mark=function(e){return d.mark(this,e)};Glob.prototype._makeAbs=function(e){return d.makeAbs(this,e)};Glob.prototype.abort=function(){this.aborted=true;this.emit("abort")};Glob.prototype.pause=function(){if(!this.paused){this.paused=true;this.emit("pause")}};Glob.prototype.resume=function(){if(this.paused){this.emit("resume");this.paused=false;if(this._emitQueue.length){var e=this._emitQueue.slice(0);this._emitQueue.length=0;for(var t=0;t<e.length;t++){var n=e[t];this._emitMatch(n[0],n[1])}}if(this._processQueue.length){var r=this._processQueue.slice(0);this._processQueue.length=0;for(var t=0;t<r.length;t++){var i=r[t];this._processing--;this._process(i[0],i[1],i[2],i[3])}}}};Glob.prototype._process=function(e,t,n,r){l(this instanceof Glob);l(typeof r==="function");if(this.aborted)return;this._processing++;if(this.paused){this._processQueue.push([e,t,n,r]);return}var i=0;while(typeof e[i]==="string"){i++}var a;switch(i){case e.length:this._processSimple(e.join("/"),t,r);return;case 0:a=null;break;default:a=e.slice(0,i).join("/");break}var s=e.slice(i);var c;if(a===null)c=".";else if(f(a)||f(e.join("/"))){if(!a||!f(a))a="/"+a;c=a}else c=a;var u=this._makeAbs(c);if(w(this,c))return r();var p=s[0]===o.GLOBSTAR;if(p)this._processGlobStar(a,c,u,s,t,n,r);else this._processReaddir(a,c,u,s,t,n,r)};Glob.prototype._processReaddir=function(e,t,n,r,i,o,a){var s=this;this._readdir(n,o,function(c,u){return s._processReaddir2(e,t,n,r,i,o,u,a)})};Glob.prototype._processReaddir2=function(e,t,n,r,i,o,a,s){if(!a)return s();var c=r[0];var l=!!this.minimatch.negate;var f=c._glob;var p=this.dot||f.charAt(0)===".";var d=[];for(var h=0;h<a.length;h++){var m=a[h];if(m.charAt(0)!=="."||p){var v;if(l&&!e){v=!m.match(c)}else{v=m.match(c)}if(v)d.push(m)}}var g=d.length;if(g===0)return s();if(r.length===1&&!this.mark&&!this.stat){if(!this.matches[i])this.matches[i]=Object.create(null);for(var h=0;h<g;h++){var m=d[h];if(e){if(e!=="/")m=e+"/"+m;else m=e+m}if(m.charAt(0)==="/"&&!this.nomount){m=u.join(this.root,m)}this._emitMatch(i,m)}return s()}r.shift();for(var h=0;h<g;h++){var m=d[h];var y;if(e){if(e!=="/")m=e+"/"+m;else m=e+m}this._process([m].concat(r),i,o,s)}s()};Glob.prototype._emitMatch=function(e,t){if(this.aborted)return;if(x(this,t))return;if(this.paused){this._emitQueue.push([e,t]);return}var n=f(t)?t:this._makeAbs(t);if(this.mark)t=this._mark(t);if(this.absolute)t=n;if(this.matches[e][t])return;if(this.nodir){var r=this.cache[n];if(r==="DIR"||Array.isArray(r))return}this.matches[e][t]=true;var i=this.statCache[n];if(i)this.emit("stat",t,i);this.emit("match",t)};Glob.prototype._readdirInGlobStar=function(e,t){if(this.aborted)return;if(this.follow)return this._readdir(e,false,t);var n="lstat\0"+e;var i=this;var o=y(n,lstatcb_);if(o)r.lstat(e,o);function lstatcb_(n,r){if(n&&n.code==="ENOENT")return t();var o=r&&r.isSymbolicLink();i.symlinks[e]=o;if(!o&&r&&!r.isDirectory()){i.cache[e]="FILE";t()}else i._readdir(e,false,t)}};Glob.prototype._readdir=function(e,t,n){if(this.aborted)return;n=y("readdir\0"+e+"\0"+t,n);if(!n)return;if(t&&!g(this.symlinks,e))return this._readdirInGlobStar(e,n);if(g(this.cache,e)){var i=this.cache[e];if(!i||i==="FILE")return n();if(Array.isArray(i))return n(null,i)}var o=this;r.readdir(e,readdirCb(this,e,n))};function readdirCb(e,t,n){return function(r,i){if(r)e._readdirError(t,r,n);else e._readdirEntries(t,i,n)}}Glob.prototype._readdirEntries=function(e,t,n){if(this.aborted)return;if(!this.mark&&!this.stat){for(var r=0;r<t.length;r++){var i=t[r];if(e==="/")i=e+i;else i=e+"/"+i;this.cache[i]=true}}this.cache[e]=t;return n(null,t)};Glob.prototype._readdirError=function(e,t,n){if(this.aborted)return;switch(t.code){case"ENOTSUP":case"ENOTDIR":var r=this._makeAbs(e);this.cache[r]="FILE";if(r===this.cwdAbs){var i=new Error(t.code+" invalid cwd "+this.cwd);i.path=this.cwd;i.code=t.code;this.emit("error",i);this.abort()}break;case"ENOENT":case"ELOOP":case"ENAMETOOLONG":case"UNKNOWN":this.cache[this._makeAbs(e)]=false;break;default:this.cache[this._makeAbs(e)]=false;if(this.strict){this.emit("error",t);this.abort()}if(!this.silent)console.error("glob error",t);break}return n()};Glob.prototype._processGlobStar=function(e,t,n,r,i,o,a){var s=this;this._readdir(n,o,function(c,u){s._processGlobStar2(e,t,n,r,i,o,u,a)})};Glob.prototype._processGlobStar2=function(e,t,n,r,i,o,a,s){if(!a)return s();var c=r.slice(1);var u=e?[e]:[];var l=u.concat(c);this._process(l,i,false,s);var f=this.symlinks[n];var p=a.length;if(f&&o)return s();for(var d=0;d<p;d++){var h=a[d];if(h.charAt(0)==="."&&!this.dot)continue;var m=u.concat(a[d],c);this._process(m,i,true,s);var v=u.concat(a[d],r);this._process(v,i,true,s)}s()};Glob.prototype._processSimple=function(e,t,n){var r=this;this._stat(e,function(i,o){r._processSimple2(e,t,i,o,n)})};Glob.prototype._processSimple2=function(e,t,n,r,i){if(!this.matches[t])this.matches[t]=Object.create(null);if(!r)return i();if(e&&f(e)&&!this.nomount){var o=/[\/\\]$/.test(e);if(e.charAt(0)==="/"){e=u.join(this.root,e)}else{e=u.resolve(this.root,e);if(o)e+="/"}}if(process.platform==="win32")e=e.replace(/\\/g,"/");this._emitMatch(t,e);i()};Glob.prototype._stat=function(e,t){var n=this._makeAbs(e);var i=e.slice(-1)==="/";if(e.length>this.maxLength)return t();if(!this.stat&&g(this.cache,n)){var o=this.cache[n];if(Array.isArray(o))o="DIR";if(!i||o==="DIR")return t(null,o);if(i&&o==="FILE")return t()}var a;var s=this.statCache[n];if(s!==undefined){if(s===false)return t(null,s);else{var c=s.isDirectory()?"DIR":"FILE";if(i&&c==="FILE")return t();else return t(null,c,s)}}var u=this;var l=y("stat\0"+n,lstatcb_);if(l)r.lstat(n,l);function lstatcb_(i,o){if(o&&o.isSymbolicLink()){return r.stat(n,function(r,i){if(r)u._stat2(e,n,null,o,t);else u._stat2(e,n,r,i,t)})}else{u._stat2(e,n,i,o,t)}}};Glob.prototype._stat2=function(e,t,n,r,i){if(n&&(n.code==="ENOENT"||n.code==="ENOTDIR")){this.statCache[t]=false;return i()}var o=e.slice(-1)==="/";this.statCache[t]=r;if(t.slice(-1)==="/"&&r&&!r.isDirectory())return i(null,false,r);var a=true;if(r)a=r.isDirectory()?"DIR":"FILE";this.cache[t]=this.cache[t]||a;if(o&&a==="FILE")return i();return i(null,a,r)}},3281:function(e,t,n){"use strict";const r=n(5897);const i=n(6886).Stream;const o=n(774);const a=()=>{};const s=()=>[];const c=()=>{};t.types={access:[null,"restricted","public"],"allow-same-version":Boolean,"always-auth":Boolean,also:[null,"dev","development"],"auth-type":["legacy","sso","saml","oauth"],"bin-links":Boolean,browser:[null,String],ca:[null,String,Array],cafile:r,cache:r,"cache-lock-stale":Number,"cache-lock-retries":Number,"cache-lock-wait":Number,"cache-max":Number,"cache-min":Number,cert:[null,String],color:["always",Boolean],depth:Number,description:Boolean,dev:Boolean,"dry-run":Boolean,editor:String,"engine-strict":Boolean,force:Boolean,"fetch-retries":Number,"fetch-retry-factor":Number,"fetch-retry-mintimeout":Number,"fetch-retry-maxtimeout":Number,git:String,"git-tag-version":Boolean,global:Boolean,globalconfig:r,"global-style":Boolean,group:[Number,String],"https-proxy":[null,o],"user-agent":String,"ham-it-up":Boolean,heading:String,"if-present":Boolean,"ignore-prepublish":Boolean,"ignore-scripts":Boolean,"init-module":r,"init-author-name":String,"init-author-email":String,"init-author-url":["",o],"init-license":String,"init-version":c,json:Boolean,key:[null,String],"legacy-bundling":Boolean,link:Boolean,"local-address":s(),loglevel:["silent","error","warn","notice","http","timing","info","verbose","silly"],logstream:i,"logs-max":Number,long:Boolean,maxsockets:Number,message:String,"metrics-registry":[null,String],"node-version":[null,c],offline:Boolean,"onload-script":[null,String],only:[null,"dev","development","prod","production"],optional:Boolean,"package-lock":Boolean,parseable:Boolean,"prefer-offline":Boolean,"prefer-online":Boolean,prefix:r,production:Boolean,progress:Boolean,"proprietary-attribs":Boolean,proxy:[null,false,o],"rebuild-bundle":Boolean,registry:[null,o],rollback:Boolean,save:Boolean,"save-bundle":Boolean,"save-dev":Boolean,"save-exact":Boolean,"save-optional":Boolean,"save-prefix":String,"save-prod":Boolean,scope:String,"script-shell":[null,String],"scripts-prepend-node-path":[false,true,"auto","warn-only"],searchopts:String,searchexclude:[null,String],searchlimit:Number,searchstaleness:Number,"send-metrics":Boolean,shell:String,shrinkwrap:Boolean,"sign-git-tag":Boolean,"sso-poll-frequency":Number,"sso-type":[null,"oauth","saml"],"strict-ssl":Boolean,tag:String,timing:Boolean,tmp:r,unicode:Boolean,"unsafe-perm":Boolean,usage:Boolean,user:[Number,String],userconfig:r,umask:a,version:Boolean,"tag-version-prefix":String,versions:Boolean,viewer:String,_exit:Boolean}},3282:function(e,t,n){"use strict";var r=n(1261);e.exports={$id:"https://github.com/epoberezkin/ajv/blob/master/lib/definition_schema.js",definitions:{simpleTypes:r.definitions.simpleTypes},type:"object",dependencies:{schema:["validate"],$data:["validate"],statements:["inline"],valid:{not:{required:["macro"]}}},properties:{type:r.properties.type,schema:{type:"boolean"},statements:{type:"boolean"},dependencies:{type:"array",items:{type:"string"}},metaSchema:{type:"object"},modifying:{type:"boolean"},valid:{type:"boolean"},$data:{type:"boolean"},async:{type:"boolean"},errors:{anyOf:[{type:"boolean"},{const:"full"}]}}}},3283:function(e,t,n){e.exports=n(433)},3288:function(e){"use strict";e.exports=((e,t)=>{for(const n of Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}return e})},3294:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(5723));t.native=i.default},3302:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9544));const o=(e,t)=>{if(!t){t="-"}if(Number(t)){t+="."}return`${i.default(t.toString())} ${e}`};t.default=o},3309:function(e,t,n){"use strict";const r=n(1376);class PriorityQueue{constructor(e){this._size=Math.max(+e|0,1);this._slots=[];for(let e=0;e<this._size;e++){this._slots.push(new r)}}get length(){let e=0;for(let t=0,n=this._slots.length;t<n;t++){e+=this._slots[t].length}return e}enqueue(e,t){t=t&&+t|0||0;if(t){if(t<0||t>=this._size){t=this._size-1}}this._slots[t].push(e)}dequeue(){for(let e=0,t=this._slots.length;e<t;e+=1){if(this._slots[e].length){return this._slots[e].shift()}}return}get head(){for(let e=0,t=this._slots.length;e<t;e+=1){if(this._slots[e].length>0){return this._slots[e].head}}return}get tail(){for(let e=this._slots.length-1;e>=0;e--){if(this._slots[e].length>0){return this._slots[e].tail}}return}}e.exports=PriorityQueue},3320:function(e){function RetryOperation(e,t){if(typeof t==="boolean"){t={forever:t}}this._timeouts=e;this._options=t||{};this._fn=null;this._errors=[];this._attempts=1;this._operationTimeout=null;this._operationTimeoutCb=null;this._timeout=null;if(this._options.forever){this._cachedTimeouts=this._timeouts.slice(0)}}e.exports=RetryOperation;RetryOperation.prototype.stop=function(){if(this._timeout){clearTimeout(this._timeout)}this._timeouts=[];this._cachedTimeouts=null};RetryOperation.prototype.retry=function(e){if(this._timeout){clearTimeout(this._timeout)}if(!e){return false}this._errors.push(e);var t=this._timeouts.shift();if(t===undefined){if(this._cachedTimeouts){this._errors.splice(this._errors.length-1,this._errors.length);this._timeouts=this._cachedTimeouts.slice(0);t=this._timeouts.shift()}else{return false}}var n=this;var r=setTimeout(function(){n._attempts++;if(n._operationTimeoutCb){n._timeout=setTimeout(function(){n._operationTimeoutCb(n._attempts)},n._operationTimeout);if(this._options.unref){n._timeout.unref()}}n._fn(n._attempts)},t);if(this._options.unref){r.unref()}return true};RetryOperation.prototype.attempt=function(e,t){this._fn=e;if(t){if(t.timeout){this._operationTimeout=t.timeout}if(t.cb){this._operationTimeoutCb=t.cb}}var n=this;if(this._operationTimeoutCb){this._timeout=setTimeout(function(){n._operationTimeoutCb()},n._operationTimeout)}this._fn(this._attempts)};RetryOperation.prototype.try=function(e){console.log("Using RetryOperation.try() is deprecated");this.attempt(e)};RetryOperation.prototype.start=function(e){console.log("Using RetryOperation.start() is deprecated");this.attempt(e)};RetryOperation.prototype.start=RetryOperation.prototype.try;RetryOperation.prototype.errors=function(){return this._errors};RetryOperation.prototype.attempts=function(){return this._attempts};RetryOperation.prototype.mainError=function(){if(this._errors.length===0){return null}var e={};var t=null;var n=0;for(var r=0;r<this._errors.length;r++){var i=this._errors[r];var o=i.message;var a=(e[o]||0)+1;e[o]=a;if(a>=n){t=i;n=a}}return t}},3321:function(e,t,n){e.exports=n(5951).Duplex},3327:function(e,t,n){"use strict";const r=n(5897);const i=n(2617);const o=n(2058);const a=n(3605);const s=n(1274);const c=(e,t)=>a(o(e),r.relative(".",t));e.exports=(e=>s(i.readFile)(e,"utf8").then(t=>c(t,e)));e.exports.sync=(e=>c(i.readFileSync(e,"utf8"),e))},3332:function(e,t,n){"use strict";var r=n(3462);var i=n(430);var o=n(1974);var a=n(7180);var s=n(4215);var c=n(1620);var u=n(5916);var l=1024*64;function extglob(e,t){return extglob.create(e,t).output}extglob.match=function(e,t,n){if(typeof t!=="string"){throw new TypeError("expected pattern to be a string")}e=u.arrayify(e);var r=extglob.matcher(t,n);var o=e.length;var a=-1;var s=[];while(++a<o){var c=e[a];if(r(c)){s.push(c)}}if(typeof n==="undefined"){return i(s)}if(s.length===0){if(n.failglob===true){throw new Error('no matches found for "'+t+'"')}if(n.nonull===true||n.nullglob===true){return[t.split("\\").join("")]}}return n.nodupes!==false?i(s):s};extglob.isMatch=function(e,t,n){if(typeof t!=="string"){throw new TypeError("expected pattern to be a string")}if(typeof e!=="string"){throw new TypeError("expected a string")}if(t===e){return true}if(t===""||t===" "||t==="."){return t===e}var r=u.memoize("isMatch",t,n,extglob.matcher);return r(e)};extglob.contains=function(e,t,n){if(typeof e!=="string"){throw new TypeError("expected a string")}if(t===""||t===" "||t==="."){return t===e}var i=r({},n,{contains:true});i.strictClose=false;i.strictOpen=false;return extglob.isMatch(e,t,i)};extglob.matcher=function(e,t){if(typeof e!=="string"){throw new TypeError("expected pattern to be a string")}function matcher(){var n=extglob.makeRe(e,t);return function(e){return n.test(e)}}return u.memoize("matcher",e,t,matcher)};extglob.create=function(e,t){if(typeof e!=="string"){throw new TypeError("expected pattern to be a string")}function create(){var n=new c(t);var r=n.parse(e,t);return n.compile(r,t)}return u.memoize("create",e,t,create)};extglob.capture=function(e,t,n){var i=extglob.makeRe(e,r({capture:true},n));function match(){return function(e){var t=i.exec(e);if(!t){return null}return t.slice(1)}}var o=u.memoize("capture",e,n,match);return o(t)};extglob.makeRe=function(e,t){if(e instanceof RegExp){return e}if(typeof e!=="string"){throw new TypeError("expected pattern to be a string")}if(e.length>l){throw new Error("expected pattern to be less than "+l+" characters")}function makeRe(){var n=r({strictErrors:false},t);if(n.strictErrors===true)n.strict=true;var i=extglob.create(e,n);return o(i.output,n)}var n=u.memoize("makeRe",e,t,makeRe);if(n.source.length>l){throw new SyntaxError("potentially malicious regex detected")}return n};extglob.cache=u.cache;extglob.clearCache=function(){extglob.cache.__data__={}};extglob.Extglob=c;extglob.compilers=a;extglob.parsers=s;e.exports=extglob},3342:function(e,t,n){"use strict";var r=n(1758);var i=new RegExp(r().source);e.exports=i.test.bind(i)},3354:function(e){"use strict";e.exports=function generate_properties(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f="errs__"+i;var p=e.util.copy(e);var d="";p.level++;var h="valid"+p.level;var m="key"+i,v="idx"+i,g=p.dataLevel=e.dataLevel+1,y="data"+g,b="dataProperties"+i;var w=Object.keys(a||{}),x=e.schema.patternProperties||{},k=Object.keys(x),j=e.schema.additionalProperties,S=w.length||k.length,E=j===false,_=typeof j=="object"&&Object.keys(j).length,C=e.opts.removeAdditional,A=E||_||C,O=e.opts.ownProperties,F=e.baseId;var D=e.schema.required;if(D&&!(e.opts.$data&&D.$data)&&D.length<e.opts.loopRequired)var T=e.util.toHash(D);r+="var "+f+" = errors;var "+h+" = true;";if(O){r+=" var "+b+" = undefined;"}if(A){if(O){r+=" "+b+" = "+b+" || Object.keys("+l+"); for (var "+v+"=0; "+v+"<"+b+".length; "+v+"++) { var "+m+" = "+b+"["+v+"]; "}else{r+=" for (var "+m+" in "+l+") { "}if(S){r+=" var isAdditional"+i+" = !(false ";if(w.length){if(w.length>8){r+=" || validate.schema"+s+".hasOwnProperty("+m+") "}else{var I=w;if(I){var R,P=-1,B=I.length-1;while(P<B){R=I[P+=1];r+=" || "+m+" == "+e.util.toQuotedString(R)+" "}}}}if(k.length){var N=k;if(N){var z,L=-1,M=N.length-1;while(L<M){z=N[L+=1];r+=" || "+e.usePattern(z)+".test("+m+") "}}}r+=" ); if (isAdditional"+i+") { "}if(C=="all"){r+=" delete "+l+"["+m+"]; "}else{var U=e.errorPath;var q="' + "+m+" + '";if(e.opts._errorDataPathProperty){e.errorPath=e.util.getPathExpr(e.errorPath,m,e.opts.jsonPointers)}if(E){if(C){r+=" delete "+l+"["+m+"]; "}else{r+=" "+h+" = false; ";var H=c;c=e.errSchemaPath+"/additionalProperties";var G=G||[];G.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"additionalProperties"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { additionalProperty: '"+q+"' } ";if(e.opts.messages!==false){r+=" , message: '";if(e.opts._errorDataPathProperty){r+="is an invalid additional property"}else{r+="should NOT have additional properties"}r+="' "}if(e.opts.verbose){r+=" , schema: false , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var W=r;r=G.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+W+"]); "}else{r+=" validate.errors = ["+W+"]; return false; "}}else{r+=" var err = "+W+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}c=H;if(u){r+=" break; "}}}else if(_){if(C=="failing"){r+=" var "+f+" = errors; ";var V=e.compositeRule;e.compositeRule=p.compositeRule=true;p.schema=j;p.schemaPath=e.schemaPath+".additionalProperties";p.errSchemaPath=e.errSchemaPath+"/additionalProperties";p.errorPath=e.opts._errorDataPathProperty?e.errorPath:e.util.getPathExpr(e.errorPath,m,e.opts.jsonPointers);var J=l+"["+m+"]";p.dataPathArr[g]=m;var Y=e.validate(p);p.baseId=F;if(e.util.varOccurences(Y,y)<2){r+=" "+e.util.varReplace(Y,y,J)+" "}else{r+=" var "+y+" = "+J+"; "+Y+" "}r+=" if (!"+h+") { errors = "+f+"; if (validate.errors !== null) { if (errors) validate.errors.length = errors; else validate.errors = null; } delete "+l+"["+m+"]; } ";e.compositeRule=p.compositeRule=V}else{p.schema=j;p.schemaPath=e.schemaPath+".additionalProperties";p.errSchemaPath=e.errSchemaPath+"/additionalProperties";p.errorPath=e.opts._errorDataPathProperty?e.errorPath:e.util.getPathExpr(e.errorPath,m,e.opts.jsonPointers);var J=l+"["+m+"]";p.dataPathArr[g]=m;var Y=e.validate(p);p.baseId=F;if(e.util.varOccurences(Y,y)<2){r+=" "+e.util.varReplace(Y,y,J)+" "}else{r+=" var "+y+" = "+J+"; "+Y+" "}if(u){r+=" if (!"+h+") break; "}}}e.errorPath=U}if(S){r+=" } "}r+=" } ";if(u){r+=" if ("+h+") { ";d+="}"}}var Z=e.opts.useDefaults&&!e.compositeRule;if(w.length){var X=w;if(X){var R,Q=-1,K=X.length-1;while(Q<K){R=X[Q+=1];var $=a[R];if(e.opts.strictKeywords?typeof $=="object"&&Object.keys($).length>0:e.util.schemaHasRules($,e.RULES.all)){var ee=e.util.getProperty(R),J=l+ee,te=Z&&$.default!==undefined;p.schema=$;p.schemaPath=s+ee;p.errSchemaPath=c+"/"+e.util.escapeFragment(R);p.errorPath=e.util.getPath(e.errorPath,R,e.opts.jsonPointers);p.dataPathArr[g]=e.util.toQuotedString(R);var Y=e.validate(p);p.baseId=F;if(e.util.varOccurences(Y,y)<2){Y=e.util.varReplace(Y,y,J);var ne=J}else{var ne=y;r+=" var "+y+" = "+J+"; "}if(te){r+=" "+Y+" "}else{if(T&&T[R]){r+=" if ( "+ne+" === undefined ";if(O){r+=" || ! Object.prototype.hasOwnProperty.call("+l+", '"+e.util.escapeQuotes(R)+"') "}r+=") { "+h+" = false; ";var U=e.errorPath,H=c,re=e.util.escapeQuotes(R);if(e.opts._errorDataPathProperty){e.errorPath=e.util.getPath(U,R,e.opts.jsonPointers)}c=e.errSchemaPath+"/required";var G=G||[];G.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"required"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { missingProperty: '"+re+"' } ";if(e.opts.messages!==false){r+=" , message: '";if(e.opts._errorDataPathProperty){r+="is a required property"}else{r+="should have required property \\'"+re+"\\'"}r+="' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var W=r;r=G.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+W+"]); "}else{r+=" validate.errors = ["+W+"]; return false; "}}else{r+=" var err = "+W+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}c=H;e.errorPath=U;r+=" } else { "}else{if(u){r+=" if ( "+ne+" === undefined ";if(O){r+=" || ! Object.prototype.hasOwnProperty.call("+l+", '"+e.util.escapeQuotes(R)+"') "}r+=") { "+h+" = true; } else { "}else{r+=" if ("+ne+" !== undefined ";if(O){r+=" && Object.prototype.hasOwnProperty.call("+l+", '"+e.util.escapeQuotes(R)+"') "}r+=" ) { "}}r+=" "+Y+" } "}}if(u){r+=" if ("+h+") { ";d+="}"}}}}if(k.length){var ie=k;if(ie){var z,oe=-1,ae=ie.length-1;while(oe<ae){z=ie[oe+=1];var $=x[z];if(e.opts.strictKeywords?typeof $=="object"&&Object.keys($).length>0:e.util.schemaHasRules($,e.RULES.all)){p.schema=$;p.schemaPath=e.schemaPath+".patternProperties"+e.util.getProperty(z);p.errSchemaPath=e.errSchemaPath+"/patternProperties/"+e.util.escapeFragment(z);if(O){r+=" "+b+" = "+b+" || Object.keys("+l+"); for (var "+v+"=0; "+v+"<"+b+".length; "+v+"++) { var "+m+" = "+b+"["+v+"]; "}else{r+=" for (var "+m+" in "+l+") { "}r+=" if ("+e.usePattern(z)+".test("+m+")) { ";p.errorPath=e.util.getPathExpr(e.errorPath,m,e.opts.jsonPointers);var J=l+"["+m+"]";p.dataPathArr[g]=m;var Y=e.validate(p);p.baseId=F;if(e.util.varOccurences(Y,y)<2){r+=" "+e.util.varReplace(Y,y,J)+" "}else{r+=" var "+y+" = "+J+"; "+Y+" "}if(u){r+=" if (!"+h+") break; "}r+=" } ";if(u){r+=" else "+h+" = true; "}r+=" } ";if(u){r+=" if ("+h+") { ";d+="}"}}}}}if(u){r+=" "+d+" if ("+f+" == errors) {"}r=e.util.cleanUpCode(r);return r}},3357:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(2229));const a=i(n(9544));const s=i(n(3759));const c=i(n(2616));const u=i(n(4573));const l=i(n(1632));const f=i(n(8303));const p=i(n(586));const d=i(n(4110));function ls(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:o}=e;const{currentTeam:c}=o;const{apiUrl:d}=e;const h=t["--debug"];const m=new u.default({apiUrl:d,token:r,currentTeam:c,debug:h});let v=null;try{({contextName:v}=yield f.default(m))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){i.error(e.message);return 1}throw e}const g=p.default();if(n.length!==0){i.error(`Invalid number of arguments. Usage: ${a.default.cyan("`now domains ls`")}`);return 1}const y=yield l.default(m,v);i.log(`${s.default("domain",y.length,true)} found under ${a.default.bold(v)} ${a.default.gray(g())}\n`);if(y.length>0){console.log(`${formatDomainsTable(y)}\n`)}return 0})}t.default=ls;function formatDomainsTable(e){const t=new Date;return c.default([["",a.default.gray("domain"),a.default.gray("serviceType"),a.default.gray("verified"),a.default.gray("cdn"),a.default.gray("age")].map(e=>a.default.dim(e)),...e.map(e=>{const n=a.default.bold(e.name);const r=a.default.gray(o.default(t.getTime()-e.createdAt));return["",n,e.serviceType,e.verified,true,r]})],{align:["l","l","l","l","l"],hsep:" ".repeat(4),stringLength:d.default})}},3363:function(e,t,n){"use strict";const r=n(5897);function getRootPath(e){e=r.normalize(r.resolve(e)).split(r.sep);if(e.length>0)return e[0];return null}const i=/[<>:"|?*]/;function invalidWin32Path(e){const t=getRootPath(e);e=e.replace(t,"");return i.test(e)}e.exports={getRootPath:getRootPath,invalidWin32Path:invalidWin32Path}},3366:function(e,t,n){"use strict";const r=n(5897);const i=n(501);const o=n(5899).pathExists;const a=n(4420);function outputJson(e,t,n,s){if(typeof n==="function"){s=n;n={}}const c=r.dirname(e);o(c,(r,o)=>{if(r)return s(r);if(o)return a.writeJson(e,t,n,s);i.mkdirs(c,r=>{if(r)return s(r);a.writeJson(e,t,n,s)})})}e.exports=outputJson},3371:function(e,t,n){var r=n(649);var i=n(6338);var o=n(5381);var a=n(2917);var s=n(5951).Writable;var c=n(5951).PassThrough;var u=function(){};var l=function(e){e&=511;return e&&512-e};var f=function(e,t){var n=new d(e,t);n.end();return n};var p=function(e,t){if(t.path)e.name=t.path;if(t.linkpath)e.linkname=t.linkpath;if(t.size)e.size=parseInt(t.size,10);e.pax=t;return e};var d=function(e,t){this._parent=e;this.offset=t;c.call(this)};r.inherits(d,c);d.prototype.destroy=function(e){this._parent.destroy(e)};var h=function(e){if(!(this instanceof h))return new h(e);s.call(this,e);e=e||{};this._offset=0;this._buffer=i();this._missing=0;this._partial=false;this._onparse=u;this._header=null;this._stream=null;this._overflow=null;this._cb=null;this._locked=false;this._destroyed=false;this._pax=null;this._paxGlobal=null;this._gnuLongPath=null;this._gnuLongLinkPath=null;var t=this;var n=t._buffer;var r=function(){t._continue()};var c=function(e){t._locked=false;if(e)return t.destroy(e);if(!t._stream)r()};var m=function(){t._stream=null;var e=l(t._header.size);if(e)t._parse(e,v);else t._parse(512,x);if(!t._locked)r()};var v=function(){t._buffer.consume(l(t._header.size));t._parse(512,x);r()};var g=function(){var e=t._header.size;t._paxGlobal=a.decodePax(n.slice(0,e));n.consume(e);m()};var y=function(){var e=t._header.size;t._pax=a.decodePax(n.slice(0,e));if(t._paxGlobal)t._pax=o(t._paxGlobal,t._pax);n.consume(e);m()};var b=function(){var r=t._header.size;this._gnuLongPath=a.decodeLongPath(n.slice(0,r),e.filenameEncoding);n.consume(r);m()};var w=function(){var r=t._header.size;this._gnuLongLinkPath=a.decodeLongPath(n.slice(0,r),e.filenameEncoding);n.consume(r);m()};var x=function(){var i=t._offset;var o;try{o=t._header=a.decode(n.slice(0,512),e.filenameEncoding)}catch(e){t.emit("error",e)}n.consume(512);if(!o){t._parse(512,x);r();return}if(o.type==="gnu-long-path"){t._parse(o.size,b);r();return}if(o.type==="gnu-long-link-path"){t._parse(o.size,w);r();return}if(o.type==="pax-global-header"){t._parse(o.size,g);r();return}if(o.type==="pax-header"){t._parse(o.size,y);r();return}if(t._gnuLongPath){o.name=t._gnuLongPath;t._gnuLongPath=null}if(t._gnuLongLinkPath){o.linkname=t._gnuLongLinkPath;t._gnuLongLinkPath=null}if(t._pax){t._header=o=p(o,t._pax);t._pax=null}t._locked=true;if(!o.size||o.type==="directory"){t._parse(512,x);t.emit("entry",o,f(t,i),c);return}t._stream=new d(t,i);t.emit("entry",o,t._stream,c);t._parse(o.size,m);r()};this._onheader=x;this._parse(512,x)};r.inherits(h,s);h.prototype.destroy=function(e){if(this._destroyed)return;this._destroyed=true;if(e)this.emit("error",e);this.emit("close");if(this._stream)this._stream.emit("close")};h.prototype._parse=function(e,t){if(this._destroyed)return;this._offset+=e;this._missing=e;if(t===this._onheader)this._partial=false;this._onparse=t};h.prototype._continue=function(){if(this._destroyed)return;var e=this._cb;this._cb=u;if(this._overflow)this._write(this._overflow,undefined,e);else e()};h.prototype._write=function(e,t,n){if(this._destroyed)return;var r=this._stream;var i=this._buffer;var o=this._missing;if(e.length)this._partial=true;if(e.length<o){this._missing-=e.length;this._overflow=null;if(r)return r.write(e,n);i.append(e);return n()}this._cb=n;this._missing=0;var a=null;if(e.length>o){a=e.slice(o);e=e.slice(0,o)}if(r)r.end(e);else i.append(e);this._overflow=a;this._onparse()};h.prototype._final=function(e){if(this._partial)return this.destroy(new Error("Unexpected end of data"));e()};e.exports=h},3381:function(e,t,n){"use strict";const r=n(2617);const i=n(4316);const o=n(5897);function hasMillisResSync(){let e=o.join("millis-test-sync"+Date.now().toString()+Math.random().toString().slice(2));e=o.join(i.tmpdir(),e);const t=new Date(1435410243862);r.writeFileSync(e,"https://github.com/jprichardson/node-fs-extra/pull/141");const n=r.openSync(e,"r+");r.futimesSync(n,t,t);r.closeSync(n);return r.statSync(e).mtime>1435410243e3}function hasMillisRes(e){let t=o.join("millis-test"+Date.now().toString()+Math.random().toString().slice(2));t=o.join(i.tmpdir(),t);const n=new Date(1435410243862);r.writeFile(t,"https://github.com/jprichardson/node-fs-extra/pull/141",i=>{if(i)return e(i);r.open(t,"r+",(i,o)=>{if(i)return e(i);r.futimes(o,n,n,n=>{if(n)return e(n);r.close(o,n=>{if(n)return e(n);r.stat(t,(t,n)=>{if(t)return e(t);e(null,n.mtime>1435410243e3)})})})})})}function timeRemoveMillis(e){if(typeof e==="number"){return Math.floor(e/1e3)*1e3}else if(e instanceof Date){return new Date(Math.floor(e.getTime()/1e3)*1e3)}else{throw new Error("fs-extra: timeRemoveMillis() unknown parameter type")}}function utimesMillis(e,t,n,i){r.open(e,"r+",(e,o)=>{if(e)return i(e);r.futimes(o,t,n,e=>{r.close(o,t=>{if(i)i(e||t)})})})}function utimesMillisSync(e,t,n){const i=r.openSync(e,"r+");r.futimesSync(i,t,n);return r.closeSync(i)}e.exports={hasMillisRes:hasMillisRes,hasMillisResSync:hasMillisResSync,timeRemoveMillis:timeRemoveMillis,utimesMillis:utimesMillis,utimesMillisSync:utimesMillisSync}},3384:function(e,t,n){"use strict";e.exports={copy:copy,checkDataType:checkDataType,checkDataTypes:checkDataTypes,coerceToTypes:coerceToTypes,toHash:toHash,getProperty:getProperty,escapeQuotes:escapeQuotes,equal:n(6276),ucs2length:n(9438),varOccurences:varOccurences,varReplace:varReplace,cleanUpCode:cleanUpCode,finalCleanUpCode:finalCleanUpCode,schemaHasRules:schemaHasRules,schemaHasRulesExcept:schemaHasRulesExcept,schemaUnknownRules:schemaUnknownRules,toQuotedString:toQuotedString,getPathExpr:getPathExpr,getPath:getPath,getData:getData,unescapeFragment:unescapeFragment,unescapeJsonPointer:unescapeJsonPointer,escapeFragment:escapeFragment,escapeJsonPointer:escapeJsonPointer};function copy(e,t){t=t||{};for(var n in e)t[n]=e[n];return t}function checkDataType(e,t,n){var r=n?" !== ":" === ",i=n?" || ":" && ",o=n?"!":"",a=n?"":"!";switch(e){case"null":return t+r+"null";case"array":return o+"Array.isArray("+t+")";case"object":return"("+o+t+i+"typeof "+t+r+'"object"'+i+a+"Array.isArray("+t+"))";case"integer":return"(typeof "+t+r+'"number"'+i+a+"("+t+" % 1)"+i+t+r+t+")";default:return"typeof "+t+r+'"'+e+'"'}}function checkDataTypes(e,t){switch(e.length){case 1:return checkDataType(e[0],t,true);default:var n="";var r=toHash(e);if(r.array&&r.object){n=r.null?"(":"(!"+t+" || ";n+="typeof "+t+' !== "object")';delete r.null;delete r.array;delete r.object}if(r.number)delete r.integer;for(var i in r)n+=(n?" && ":"")+checkDataType(i,t,true);return n}}var r=toHash(["string","number","integer","boolean","null"]);function coerceToTypes(e,t){if(Array.isArray(t)){var n=[];for(var i=0;i<t.length;i++){var o=t[i];if(r[o])n[n.length]=o;else if(e==="array"&&o==="array")n[n.length]=o}if(n.length)return n}else if(r[t]){return[t]}else if(e==="array"&&t==="array"){return["array"]}}function toHash(e){var t={};for(var n=0;n<e.length;n++)t[e[n]]=true;return t}var i=/^[a-z$_][a-z$_0-9]*$/i;var o=/'|\\/g;function getProperty(e){return typeof e=="number"?"["+e+"]":i.test(e)?"."+e:"['"+escapeQuotes(e)+"']"}function escapeQuotes(e){return e.replace(o,"\\$&").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\f/g,"\\f").replace(/\t/g,"\\t")}function varOccurences(e,t){t+="[^0-9]";var n=e.match(new RegExp(t,"g"));return n?n.length:0}function varReplace(e,t,n){t+="([^0-9])";n=n.replace(/\$/g,"$$$$");return e.replace(new RegExp(t,"g"),n+"$1")}var a=/else\s*{\s*}/g,s=/if\s*\([^)]+\)\s*\{\s*\}(?!\s*else)/g,c=/if\s*\(([^)]+)\)\s*\{\s*\}\s*else(?!\s*if)/g;function cleanUpCode(e){return e.replace(a,"").replace(s,"").replace(c,"if (!($1))")}var u=/[^v.]errors/g,l=/var errors = 0;|var vErrors = null;|validate.errors = vErrors;/g,f=/var errors = 0;|var vErrors = null;/g,p="return errors === 0;",d="validate.errors = null; return true;",h=/if \(errors === 0\) return data;\s*else throw new ValidationError\(vErrors\);/,m="return data;",v=/[^A-Za-z_$]rootData[^A-Za-z0-9_$]/g,g=/if \(rootData === undefined\) rootData = data;/;function finalCleanUpCode(e,t){var n=e.match(u);if(n&&n.length==2){e=t?e.replace(f,"").replace(h,m):e.replace(l,"").replace(p,d)}n=e.match(v);if(!n||n.length!==3)return e;return e.replace(g,"")}function schemaHasRules(e,t){if(typeof e=="boolean")return!e;for(var n in e)if(t[n])return true}function schemaHasRulesExcept(e,t,n){if(typeof e=="boolean")return!e&&n!="not";for(var r in e)if(r!=n&&t[r])return true}function schemaUnknownRules(e,t){if(typeof e=="boolean")return;for(var n in e)if(!t[n])return n}function toQuotedString(e){return"'"+escapeQuotes(e)+"'"}function getPathExpr(e,t,n,r){var i=n?"'/' + "+t+(r?"":".replace(/~/g, '~0').replace(/\\//g, '~1')"):r?"'[' + "+t+" + ']'":"'[\\'' + "+t+" + '\\']'";return joinPaths(e,i)}function getPath(e,t,n){var r=n?toQuotedString("/"+escapeJsonPointer(t)):toQuotedString(getProperty(t));return joinPaths(e,r)}var y=/^\/(?:[^~]|~0|~1)*$/;var b=/^([0-9]+)(#|\/(?:[^~]|~0|~1)*)?$/;function getData(e,t,n){var r,i,o,a;if(e==="")return"rootData";if(e[0]=="/"){if(!y.test(e))throw new Error("Invalid JSON-pointer: "+e);i=e;o="rootData"}else{a=e.match(b);if(!a)throw new Error("Invalid JSON-pointer: "+e);r=+a[1];i=a[2];if(i=="#"){if(r>=t)throw new Error("Cannot access property/index "+r+" levels up, current level is "+t);return n[t-r]}if(r>t)throw new Error("Cannot access data "+r+" levels up, current level is "+t);o="data"+(t-r||"");if(!i)return o}var s=o;var c=i.split("/");for(var u=0;u<c.length;u++){var l=c[u];if(l){o+=getProperty(unescapeJsonPointer(l));s+=" && "+o}}return s}function joinPaths(e,t){if(e=='""')return t;return(e+" + "+t).replace(/' \+ '/g,"")}function unescapeFragment(e){return unescapeJsonPointer(decodeURIComponent(e))}function escapeFragment(e){return encodeURIComponent(escapeJsonPointer(e))}function escapeJsonPointer(e){return e.replace(/~/g,"~0").replace(/\//g,"~1")}function unescapeJsonPointer(e){return e.replace(/~1/g,"/").replace(/~0/g,"~")}},3401:function(e){"use strict";e.exports=function(e){return flat(e,[])};function flat(e,t){var n=0,r;var i=e.length;for(;n<i;n++){r=e[n];Array.isArray(r)?flat(r,t):t.push(r)}return t}},3413:function(e,t,n){"use strict";var r=n(1974);var i=n(430);var o=n(3462);var a=n(4197);var s=n(9298);var c=n(4853);var u=n(7586);var l=1024*64;var f={};function braces(e,t){var n=u.createKey(String(e),t);var r=[];var o=t&&t.cache===false;if(!o&&f.hasOwnProperty(n)){return f[n]}if(Array.isArray(e)){for(var a=0;a<e.length;a++){r.push.apply(r,braces.create(e[a],t))}}else{r=braces.create(e,t)}if(t&&t.nodupes===true){r=i(r)}if(!o){f[n]=r}return r}braces.expand=function(e,t){return braces.create(e,o({},t,{expand:true}))};braces.optimize=function(e,t){return braces.create(e,t)};braces.create=function(e,t){if(typeof e!=="string"){throw new TypeError("expected a string")}var n=t&&t.maxLength||l;if(e.length>=n){throw new Error("expected pattern to be less than "+n+" characters")}function create(){if(e===""||e.length<3){return[e]}if(u.isEmptySets(e)){return[]}if(u.isQuotedString(e)){return[e.slice(1,-1)]}var n=new c(t);var r=!t||t.expand!==true?n.optimize(e,t):n.expand(e,t);var o=r.output;if(t&&t.noempty===true){o=o.filter(Boolean)}if(t&&t.nodupes===true){o=i(o)}Object.defineProperty(o,"result",{enumerable:false,value:r});return o}return memoize("create",e,t,create)};braces.makeRe=function(e,t){if(typeof e!=="string"){throw new TypeError("expected a string")}var n=t&&t.maxLength||l;if(e.length>=n){throw new Error("expected pattern to be less than "+n+" characters")}function makeRe(){var n=braces(e,t);var i=o({strictErrors:false},t);return r(n,i)}return memoize("makeRe",e,t,makeRe)};braces.parse=function(e,t){var n=new c(t);return n.parse(e,t)};braces.compile=function(e,t){var n=new c(t);return n.compile(e,t)};braces.clearCache=function(){f=braces.cache={}};function memoize(e,t,n,r){var i=u.createKey(e+":"+t,n);var o=n&&n.cache===false;if(o){braces.clearCache();return r(t,n)}if(f.hasOwnProperty(i)){return f[i]}var a=r(t,n);f[i]=a;return a}braces.Braces=c;braces.compilers=a;braces.parsers=s;braces.cache=f;e.exports=braces},3416:function(e,t,n){e.exports=n(6886)},3426:function(e){"use strict";var t="@@any-promise/REGISTRATION",n=null;e.exports=function(e,r){return function register(i,o){i=i||null;o=o||{};var a=o.global!==false;if(n===null&&a){n=e[t]||null}if(n!==null&&i!==null&&n.implementation!==i){throw new Error('any-promise already defined as "'+n.implementation+'". You can only register an implementation before the first '+' call to require("any-promise") and an implementation cannot be changed')}if(n===null){if(i!==null&&typeof o.Promise!=="undefined"){n={Promise:o.Promise,implementation:i}}else{n=r(i)}if(a){e[t]=n}}return n}}},3431:function(e,t,n){"use strict";var r=n(8859);var i=n(649);t.init=init;t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.colors=[6,2,3,4,5,1];try{var o=n(4581);if(o&&(o.stderr||o).level>=2){t.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221]}}catch(e){}t.inspectOpts=Object.keys(process.env).filter(function(e){return/^debug_/i.test(e)}).reduce(function(e,t){var n=t.substring(6).toLowerCase().replace(/_([a-z])/g,function(e,t){return t.toUpperCase()});var r=process.env[t];if(/^(yes|on|true|enabled)$/i.test(r)){r=true}else if(/^(no|off|false|disabled)$/i.test(r)){r=false}else if(r==="null"){r=null}else{r=Number(r)}e[n]=r;return e},{});function useColors(){return"colors"in t.inspectOpts?Boolean(t.inspectOpts.colors):r.isatty(process.stderr.fd)}function formatArgs(t){var n=this.namespace,r=this.useColors;if(r){var i=this.color;var o="[3"+(i<8?i:"8;5;"+i);var a=" ".concat(o,";1m").concat(n," ");t[0]=a+t[0].split("\n").join("\n"+a);t.push(o+"m+"+e.exports.humanize(this.diff)+"")}else{t[0]=getDate()+n+" "+t[0]}}function getDate(){if(t.inspectOpts.hideDate){return""}return(new Date).toISOString()+" "}function log(){return process.stderr.write(i.format.apply(i,arguments)+"\n")}function save(e){if(e){process.env.DEBUG=e}else{delete process.env.DEBUG}}function load(){return process.env.DEBUG}function init(e){e.inspectOpts={};var n=Object.keys(t.inspectOpts);for(var r=0;r<n.length;r++){e.inspectOpts[n[r]]=t.inspectOpts[n[r]]}}e.exports=n(6251)(t);var a=e.exports.formatters;a.o=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts).replace(/\s*\n\s*/g," ")};a.O=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts)}},3435:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(8715);const a=i(n(1146));const s=i(n(5531));function readConfig(e){return r(this,void 0,void 0,function*(){const t=e||s.default(process.cwd());const n=yield a.default(t);if(n instanceof o.CantParseJSONFile){return n}if(n){return n}return null})}t.default=readConfig},3439:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(8685));const s=i(n(4999));const c=i(n(8501));const u=i(n(5580));const l=i(n(5242));const f=i(n(6482));const p=()=>{console.log(`\n ${o.default.bold(`${s.default} now update`)} [options]\n\n ${o.default.dim("Options:")}\n\n -h, --help Output usage information\n -d, --debug Debug mode [off]\n -c ${o.default.bold.underline("NAME")}, --channel=${o.default.bold.underline("NAME")} Specify which release channel to install [stable]\n -r ${o.default.bold.underline("VERSION")}, --release=${o.default.bold.underline("VERSION")} Specfic version to install (overrides \`--channel\`)\n -y, --yes Skip the confirmation prompt\n\n ${o.default.dim("Examples:")}\n\n ${o.default.gray("")} Update Now CLI to the latest "canary" version\n\n ${o.default.cyan(`$ now update --channel=canary`)}\n `)};function main(e){return r(this,void 0,void 0,function*(){let t;try{t=u.default(e.argv.slice(2),{"--channel":String,"-c":"--channel","--release":String,"-V":"--release","--yes":Boolean,"-y":"--yes"})}catch(e){c.default(e);return 1}if(t["--help"]){p();return 2}const n=t["--debug"];const r=l.default({debug:n});r.log(`Please run ${a.default(yield f.default())} to update Now CLI`);return 0})}t.default=main},3442:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(2617);const o=n(5897);const a=n(501);const s=n(5899).pathExists;function outputFile(e,t,n,r){if(typeof n==="function"){r=n;n="utf8"}const c=o.dirname(e);s(c,(o,s)=>{if(o)return r(o);if(s)return i.writeFile(e,t,n,r);a.mkdirs(c,o=>{if(o)return r(o);i.writeFile(e,t,n,r)})})}function outputFileSync(e,t,n){const r=o.dirname(e);if(i.existsSync(r)){return i.writeFileSync.apply(i,arguments)}a.mkdirsSync(r);i.writeFileSync.apply(i,arguments)}e.exports={outputFile:r(outputFile),outputFileSync:outputFileSync}},3453:function(e,t,n){const{FileFsRef:r}=n(8215);process.on("unhandledRejection",e=>{console.error("Exiting builder due to build error:");console.error(e);process.exit(1)});process.on("message",onMessage);function onMessage(e){processMessage(e).catch(e=>{Object.defineProperty(e,"message",{enumerable:true});Object.defineProperty(e,"stack",{enumerable:true});process.removeListener("message",onMessage);process.send({type:"buildResult",error:e},()=>process.exit(1))})}async function processMessage(e){const{builderName:t,buildParams:n}=e;const i=require(t);for(const e of Object.keys(n.files)){const t=Object.assign(Object.create(r.prototype),n.files[e]);n.files[e]=t}const o=await i.build(n);delete o.childProcesses;process.send({type:"buildResult",result:o})}process.send({type:"ready"})},3456:function(e,t,n){var r=n(42);e.exports=serial;function serial(e,t,n){return r(e,t,null,n)}},3459:function(e,t,n){"use strict";var r=n(6253),i=n(6276),o=n(3384),a=n(7523),s=n(8442);e.exports=resolve;resolve.normalizeId=normalizeId;resolve.fullPath=getFullPath;resolve.url=resolveUrl;resolve.ids=resolveIds;resolve.inlineRef=inlineRef;resolve.schema=resolveSchema;function resolve(e,t,n){var r=this._refs[n];if(typeof r=="string"){if(this._refs[r])r=this._refs[r];else return resolve.call(this,e,t,r)}r=r||this._schemas[n];if(r instanceof a){return inlineRef(r.schema,this._opts.inlineRefs)?r.schema:r.validate||this._compile(r)}var i=resolveSchema.call(this,t,n);var o,s,c;if(i){o=i.schema;t=i.root;c=i.baseId}if(o instanceof a){s=o.validate||e.call(this,o.schema,t,undefined,c)}else if(o!==undefined){s=inlineRef(o,this._opts.inlineRefs)?o:e.call(this,o,t,undefined,c)}return s}function resolveSchema(e,t){var n=r.parse(t),i=_getFullPath(n),o=getFullPath(this._getId(e.schema));if(Object.keys(e.schema).length===0||i!==o){var s=normalizeId(i);var c=this._refs[s];if(typeof c=="string"){return resolveRecursive.call(this,e,c,n)}else if(c instanceof a){if(!c.validate)this._compile(c);e=c}else{c=this._schemas[s];if(c instanceof a){if(!c.validate)this._compile(c);if(s==normalizeId(t))return{schema:c,root:e,baseId:o};e=c}else{return}}if(!e.schema)return;o=getFullPath(this._getId(e.schema))}return getJsonPointer.call(this,n,o,e.schema,e)}function resolveRecursive(e,t,n){var r=resolveSchema.call(this,e,t);if(r){var i=r.schema;var o=r.baseId;e=r.root;var a=this._getId(i);if(a)o=resolveUrl(o,a);return getJsonPointer.call(this,n,o,i,e)}}var c=o.toHash(["properties","patternProperties","enum","dependencies","definitions"]);function getJsonPointer(e,t,n,r){e.fragment=e.fragment||"";if(e.fragment.slice(0,1)!="/")return;var i=e.fragment.split("/");for(var a=1;a<i.length;a++){var s=i[a];if(s){s=o.unescapeFragment(s);n=n[s];if(n===undefined)break;var u;if(!c[s]){u=this._getId(n);if(u)t=resolveUrl(t,u);if(n.$ref){var l=resolveUrl(t,n.$ref);var f=resolveSchema.call(this,r,l);if(f){n=f.schema;r=f.root;t=f.baseId}}}}}if(n!==undefined&&n!==r.schema)return{schema:n,root:r,baseId:t}}var u=o.toHash(["type","format","pattern","maxLength","minLength","maxProperties","minProperties","maxItems","minItems","maximum","minimum","uniqueItems","multipleOf","required","enum"]);function inlineRef(e,t){if(t===false)return false;if(t===undefined||t===true)return checkNoRef(e);else if(t)return countKeys(e)<=t}function checkNoRef(e){var t;if(Array.isArray(e)){for(var n=0;n<e.length;n++){t=e[n];if(typeof t=="object"&&!checkNoRef(t))return false}}else{for(var r in e){if(r=="$ref")return false;t=e[r];if(typeof t=="object"&&!checkNoRef(t))return false}}return true}function countKeys(e){var t=0,n;if(Array.isArray(e)){for(var r=0;r<e.length;r++){n=e[r];if(typeof n=="object")t+=countKeys(n);if(t==Infinity)return Infinity}}else{for(var i in e){if(i=="$ref")return Infinity;if(u[i]){t++}else{n=e[i];if(typeof n=="object")t+=countKeys(n)+1;if(t==Infinity)return Infinity}}}return t}function getFullPath(e,t){if(t!==false)e=normalizeId(e);var n=r.parse(e);return _getFullPath(n)}function _getFullPath(e){return r.serialize(e).split("#")[0]+"#"}var l=/#\/?$/;function normalizeId(e){return e?e.replace(l,""):""}function resolveUrl(e,t){t=normalizeId(t);return r.resolve(e,t)}function resolveIds(e){var t=normalizeId(this._getId(e));var n={"":t};var a={"":getFullPath(t,false)};var c={};var u=this;s(e,{allKeys:true},function(e,t,s,l,f,p,d){if(t==="")return;var h=u._getId(e);var m=n[l];var v=a[l]+"/"+f;if(d!==undefined)v+="/"+(typeof d=="number"?d:o.escapeFragment(d));if(typeof h=="string"){h=m=normalizeId(m?r.resolve(m,h):h);var g=u._refs[h];if(typeof g=="string")g=u._refs[g];if(g&&g.schema){if(!i(e,g.schema))throw new Error('id "'+h+'" resolves to more than one schema')}else if(h!=normalizeId(v)){if(h[0]=="#"){if(c[h]&&!i(e,c[h]))throw new Error('id "'+h+'" resolves to more than one schema');c[h]=e}else{u._refs[h]=v}}}n[t]=m;a[t]=v});return c}},3462:function(e,t,n){"use strict";var r=n(7871);e.exports=function extend(e){if(!r(e)){e={}}var t=arguments.length;for(var n=1;n<t;n++){var i=arguments[n];if(r(i)){assign(e,i)}}return e};function assign(e,t){for(var n in t){if(hasOwn(t,n)){e[n]=t[n]}}}function hasOwn(e,t){return Object.prototype.hasOwnProperty.call(e,t)}},3465:function(e,t,n){"use strict";var r=n(4714);function FragmentCache(e){this.caches=e||{}}FragmentCache.prototype={cache:function(e){return this.caches[e]||(this.caches[e]=new r)},set:function(e,t,n){var r=this.cache(e);r.set(t,n);return r},has:function(e,t){return typeof this.get(e,t)!=="undefined"},get:function(e,t){var n=this.cache(e);if(typeof t==="string"){return n.get(t)}return n}};t=e.exports=FragmentCache},3466:function(e,t){"use strict";function Store(){}t.Store=Store;Store.prototype.synchronous=false;Store.prototype.findCookie=function(e,t,n,r){throw new Error("findCookie is not implemented")};Store.prototype.findCookies=function(e,t,n){throw new Error("findCookies is not implemented")};Store.prototype.putCookie=function(e,t){throw new Error("putCookie is not implemented")};Store.prototype.updateCookie=function(e,t,n){throw new Error("updateCookie is not implemented")};Store.prototype.removeCookie=function(e,t,n,r){throw new Error("removeCookie is not implemented")};Store.prototype.removeCookies=function(e,t,n){throw new Error("removeCookies is not implemented")};Store.prototype.getAllCookies=function(e){throw new Error("getAllCookies is not implemented (therefore jar cannot be serialized)")}},3483:function(e,t){"use strict";var n=this&&this.__await||function(e){return this instanceof n?(this.v=e,this):new n(e)};var r=this&&this.__asyncGenerator||function(e,t,r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var i=r.apply(e,t||[]),o,a=[];return o={},verb("next"),verb("throw"),verb("return"),o[Symbol.asyncIterator]=function(){return this},o;function verb(e){if(i[e])o[e]=function(t){return new Promise(function(n,r){a.push([e,t,n,r])>1||resume(e,t)})}}function resume(e,t){try{step(i[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof n?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume("next",e)}function reject(e){resume("throw",e)}function settle(e,t){if(e(t),a.shift(),a.length)resume(a[0][0],a[0][1])}};Object.defineProperty(t,"__esModule",{value:true});function combineAsyncIterators(...e){return r(this,arguments,function*combineAsyncIterators_1(){let t=e.map(e=>e.next());while(t.length>0){yield yield n(new Promise(n=>{let r=false;t.forEach((i,o)=>{i.then(({value:i,done:a})=>{if(!r){r=true;n(i);if(!a){t[o]=e[o].next()}else{t=[...t.slice(0,o),...t.slice(o+1)]}}})})}))}})}t.default=combineAsyncIterators},3492:function(e,t,n){var r=n(6886).Transform;function Stringifier(){if(!(this instanceof Stringifier)){throw new TypeError("Cannot call a class as a function")}r.call(this,{objectMode:true})}Stringifier.prototype=Object.create(r.prototype);Stringifier.prototype._transform=function(e,t,n){var r;try{r=JSON.stringify(e)}catch(t){t.source=e;return n(t)}n(null,r+"\n")};e.exports=Stringifier},3495:function(e,t,n){"use strict";var r=n(4623);var i=n(9446);e.exports.convert=convert;function convert(e,t,n,r){n=checkEncoding(n||"UTF-8");t=checkEncoding(t||"UTF-8");e=e||"";var o;if(n!=="UTF-8"&&typeof e==="string"){e=new Buffer(e,"binary")}if(n===t){if(typeof e==="string"){o=new Buffer(e)}else{o=e}}else if(i&&!r){try{o=convertIconv(e,t,n)}catch(r){console.error(r);try{o=convertIconvLite(e,t,n)}catch(t){console.error(t);o=e}}}else{try{o=convertIconvLite(e,t,n)}catch(t){console.error(t);o=e}}if(typeof o==="string"){o=new Buffer(o,"utf-8")}return o}function convertIconv(e,t,n){var r,o;o=new i(n,t+"//TRANSLIT//IGNORE");r=o.convert(e);return r.slice(0,r.length)}function convertIconvLite(e,t,n){if(t==="UTF-8"){return r.decode(e,n)}else if(n==="UTF-8"){return r.encode(e,t)}else{return r.encode(r.decode(e,n),t)}}function checkEncoding(e){return(e||"").toString().trim().replace(/^latin[\-_]?(\d+)$/i,"ISO-8859-$1").replace(/^win(?:dows)?[\-_]?(\d+)$/i,"WINDOWS-$1").replace(/^utf[\-_]?(\d+)$/i,"UTF-$1").replace(/^ks_c_5601\-1987$/i,"CP949").replace(/^us[\-_]?ascii$/i,"ASCII").toUpperCase()}},3501:function(e){"use strict";const t=/(?:\\(u[a-f\d]{4}|x[a-f\d]{2}|.))|(?:\{(~)?(\w+(?:\([^)]*\))?(?:\.\w+(?:\([^)]*\))?)*)(?:[ \t]|(?=\r?\n)))|(\})|((?:.|[\r\n\f])+?)/gi;const n=/(?:^|\.)(\w+)(?:\(([^)]*)\))?/g;const r=/^(['"])((?:\\.|(?!\1)[^\\])*)\1$/;const i=/\\(u[a-f\d]{4}|x[a-f\d]{2}|.)|([^\\])/gi;const o=new Map([["n","\n"],["r","\r"],["t","\t"],["b","\b"],["f","\f"],["v","\v"],["0","\0"],["\\","\\"],["e",""],["a",""]]);function unescape(e){if(e[0]==="u"&&e.length===5||e[0]==="x"&&e.length===3){return String.fromCharCode(parseInt(e.slice(1),16))}return o.get(e)||e}function parseArguments(e,t){const n=[];const o=t.trim().split(/\s*,\s*/g);let a;for(const t of o){if(!isNaN(t)){n.push(Number(t))}else if(a=t.match(r)){n.push(a[2].replace(i,(e,t,n)=>t?unescape(t):n))}else{throw new Error(`Invalid Chalk template style argument: ${t} (in style '${e}')`)}}return n}function parseStyle(e){n.lastIndex=0;const t=[];let r;while((r=n.exec(e))!==null){const e=r[1];if(r[2]){const n=parseArguments(e,r[2]);t.push([e].concat(n))}else{t.push([e])}}return t}function buildStyle(e,t){const n={};for(const e of t){for(const t of e.styles){n[t[0]]=e.inverse?null:t.slice(1)}}let r=e;for(const e of Object.keys(n)){if(Array.isArray(n[e])){if(!(e in r)){throw new Error(`Unknown Chalk style: ${e}`)}if(n[e].length>0){r=r[e].apply(r,n[e])}else{r=r[e]}}}return r}e.exports=((e,n)=>{const r=[];const i=[];let o=[];n.replace(t,(t,n,a,s,c,u)=>{if(n){o.push(unescape(n))}else if(s){const t=o.join("");o=[];i.push(r.length===0?t:buildStyle(e,r)(t));r.push({inverse:a,styles:parseStyle(s)})}else if(c){if(r.length===0){throw new Error("Found extraneous } in Chalk template literal")}i.push(buildStyle(e,r)(o.join("")));o=[];r.pop()}else{o.push(u)}});i.push(o.join(""));if(r.length>0){const e=`Chalk template literal is missing ${r.length} closing bracket${r.length===1?"":"s"} (\`}\`)`;throw new Error(e)}return i.join("")})},3515:function(e){"use strict";class Deferred{constructor(e){this._state=Deferred.PENDING;this._resolve=undefined;this._reject=undefined;this._promise=new e((e,t)=>{this._resolve=e;this._reject=t})}get state(){return this._state}get promise(){return this._promise}reject(e){if(this._state!==Deferred.PENDING){return}this._state=Deferred.REJECTED;this._reject(e)}resolve(e){if(this._state!==Deferred.PENDING){return}this._state=Deferred.FULFILLED;this._resolve(e)}}Deferred.PENDING="PENDING";Deferred.FULFILLED="FULFILLED";Deferred.REJECTED="REJECTED";e.exports=Deferred},3528:function(e,t,n){n(8358)("asyncIterator")},3534:function(e){"use strict";e.exports=balanced;function balanced(e,t,n){if(e instanceof RegExp)e=maybeMatch(e,n);if(t instanceof RegExp)t=maybeMatch(t,n);var r=range(e,t,n);return r&&{start:r[0],end:r[1],pre:n.slice(0,r[0]),body:n.slice(r[0]+e.length,r[1]),post:n.slice(r[1]+t.length)}}function maybeMatch(e,t){var n=t.match(e);return n?n[0]:null}balanced.range=range;function range(e,t,n){var r,i,o,a,s;var c=n.indexOf(e);var u=n.indexOf(t,c+1);var l=c;if(c>=0&&u>0){r=[];o=n.length;while(l>=0&&!s){if(l==c){r.push(l);c=n.indexOf(e,l+1)}else if(r.length==1){s=[r.pop(),u]}else{i=r.pop();if(i<o){o=i;a=u}u=n.indexOf(t,l+1)}l=c<u&&c>=0?c:u}if(r.length){s=[o,a]}}return s}},3538:function(e,t,n){"use strict";var r=n(662);var i=n(2721);var o=n(4831);var a=n(4393);function Har(e){this.request=e}Har.prototype.reducer=function(e,t){if(e[t.name]===undefined){e[t.name]=t.value;return e}var n=[e[t.name],t.value];e[t.name]=n;return e};Har.prototype.prep=function(e){e.queryObj={};e.headersObj={};e.postData.jsonObj=false;e.postData.paramsObj=false;if(e.queryString&&e.queryString.length){e.queryObj=e.queryString.reduce(this.reducer,{})}if(e.headers&&e.headers.length){e.headersObj=e.headers.reduceRight(function(e,t){e[t.name]=t.value;return e},{})}if(e.cookies&&e.cookies.length){var t=e.cookies.map(function(e){return e.name+"="+e.value});if(t.length){e.headersObj.cookie=t.join("; ")}}function some(t){return t.some(function(t){return e.postData.mimeType.indexOf(t)===0})}if(some(["multipart/mixed","multipart/related","multipart/form-data","multipart/alternative"])){e.postData.mimeType="multipart/form-data"}else if(some(["application/x-www-form-urlencoded"])){if(!e.postData.params){e.postData.text=""}else{e.postData.paramsObj=e.postData.params.reduce(this.reducer,{});e.postData.text=i.stringify(e.postData.paramsObj)}}else if(some(["text/json","text/x-json","application/json","application/x-json"])){e.postData.mimeType="application/json";if(e.postData.text){try{e.postData.jsonObj=JSON.parse(e.postData.text)}catch(t){this.request.debug(t);e.postData.mimeType="text/plain"}}}return e};Har.prototype.options=function(e){if(!e.har){return e}var t={};a(t,e.har);if(t.log&&t.log.entries){t=t.log.entries[0]}t.url=t.url||e.url||e.uri||e.baseUrl||"/";t.httpVersion=t.httpVersion||"HTTP/1.1";t.queryString=t.queryString||[];t.headers=t.headers||[];t.cookies=t.cookies||[];t.postData=t.postData||{};t.postData.mimeType=t.postData.mimeType||"application/octet-stream";t.bodySize=0;t.headersSize=0;t.postData.size=0;if(!o.request(t)){return e}var n=this.prep(t);if(n.url){e.url=n.url}if(n.method){e.method=n.method}if(Object.keys(n.queryObj).length){e.qs=n.queryObj}if(Object.keys(n.headersObj).length){e.headers=n.headersObj}function test(e){return n.postData.mimeType.indexOf(e)===0}if(test("application/x-www-form-urlencoded")){e.form=n.postData.paramsObj}else if(test("application/json")){if(n.postData.jsonObj){e.body=n.postData.jsonObj;e.json=true}}else if(test("multipart/form-data")){e.formData={};n.postData.params.forEach(function(t){var n={};if(!t.fileName&&!t.fileName&&!t.contentType){e.formData[t.name]=t.value;return}if(t.fileName&&!t.value){n.value=r.createReadStream(t.fileName)}else if(t.value){n.value=t.value}if(t.fileName){n.options={filename:t.fileName,contentType:t.contentType?t.contentType:null}}e.formData[t.name]=n})}else{if(n.postData.text){e.body=n.postData.text}}return e};t.Har=Har},3541:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(7184);const a=n(9361);function outputJsonSync(e,t,n){const s=i.dirname(e);if(!r.existsSync(s)){o.mkdirsSync(s)}a.writeJsonSync(e,t,n)}e.exports=outputJsonSync},3542:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(635);var o=n(211);var a=n(40);var s=function(e){r.__extends(NodeClient,e);function NodeClient(t){return e.call(this,o.NodeBackend,t)||this}NodeClient.prototype._prepareEvent=function(t,n,i){t.platform=t.platform||"node";t.sdk=r.__assign({},t.sdk,{name:a.SDK_NAME,packages:r.__spread(t.sdk&&t.sdk.packages||[],[{name:"npm:@sentry/node",version:a.SDK_VERSION}]),version:a.SDK_VERSION});if(this.getOptions().serverName){t.server_name=this.getOptions().serverName}return e.prototype._prepareEvent.call(this,t,n,i)};return NodeClient}(i.BaseClient);t.NodeClient=s},3552:function(e){e.exports={topLevel:{dependancies:"dependencies",dependecies:"dependencies",depdenencies:"dependencies",devEependencies:"devDependencies",depends:"dependencies","dev-dependencies":"devDependencies",devDependences:"devDependencies",devDepenencies:"devDependencies",devdependencies:"devDependencies",repostitory:"repository",repo:"repository",prefereGlobal:"preferGlobal",hompage:"homepage",hampage:"homepage",autohr:"author",autor:"author",contributers:"contributors",publicationConfig:"publishConfig",script:"scripts"},bugs:{web:"url",name:"url"},script:{server:"start",tests:"test"}}},3555:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(774));const a=i(n(4485));const s=i(n(4444));function resolveRouteParameters(e,t,n){return e.replace(/\$([1-9a-zA-Z]+)/g,(e,r)=>{let i=n.indexOf(r);if(i===-1){i=parseInt(r,10)}else{i++}return t[i]||""})}t.resolveRouteParameters=resolveRouteParameters;function default_1(e="/",t,n,i){return r(this,void 0,void 0,function*(){let r;let{query:c,pathname:u="/"}=o.default.parse(e,true);const l={};if(n){let e=-1;for(const f of n){e++;let{src:n,headers:p,methods:d,handle:h}=f;if(h){if(h==="filesystem"&&i){if(yield i.hasFilesystem(u)){break}}continue}if(Array.isArray(d)&&t&&!d.includes(t)){continue}if(!n.startsWith("^")){n=`^${n}`}if(!n.endsWith("$")){n=`${n}$`}const m=[];const v=a.default(`%${n}%i`,m);const g=v.exec(u)||v.exec(u.substring(1));if(g){let t=u;if(f.dest){t=resolveRouteParameters(f.dest,g,m)}if(p){p=Object.assign({},p);for(const e of Object.keys(p)){p[e]=resolveRouteParameters(p[e],g,m)}Object.assign(l,p)}if(f.continue){u=t;continue}if(s.default(t)){r={found:true,dest:t,userDest:false,status:f.status,headers:l,uri_args:c,matched_route:f,matched_route_idx:e};break}else{if(!t.startsWith("/")){t=`/${t}`}const{pathname:n,query:i}=o.default.parse(t,true);r={found:true,dest:n||"/",userDest:Boolean(f.dest),status:f.status,headers:l,uri_args:i,matched_route:f,matched_route_idx:e};break}}}}if(!r){r={found:false,dest:u,uri_args:c,headers:l}}return r})}t.default=default_1},3564:function(e,t,n){e.exports=n(1365)},3572:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(4580);var i=function(){function NoopTransport(){}NoopTransport.prototype.sendEvent=function(e){return Promise.resolve({reason:"NoopTransport: Event has been skipped because no Dsn is configured.",status:r.Status.Skipped})};NoopTransport.prototype.close=function(e){return Promise.resolve(true)};return NoopTransport}();t.NoopTransport=i},3576:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(1390);var o=n(2427);var a=n(2371);var s=function(){function BaseClient(e,t){this._processing=false;this._backend=new e(t);this._options=t;if(t.dsn){this._dsn=new o.Dsn(t.dsn)}this._integrations=a.setupIntegrations(this._options)}BaseClient.prototype.captureException=function(e,t,n){var r=this;var o=t&&t.event_id;this._processing=true;this._getBackend().eventFromException(e,t).then(function(e){return r._processEvent(e,t,n)}).then(function(e){o=e&&e.event_id;r._processing=false}).catch(function(e){i.logger.error(e);r._processing=false});return o};BaseClient.prototype.captureMessage=function(e,t,n,r){var o=this;var a=n&&n.event_id;this._processing=true;var s=i.isPrimitive(e)?this._getBackend().eventFromMessage(""+e,t,n):this._getBackend().eventFromException(e,n);s.then(function(e){return o._processEvent(e,n,r)}).then(function(e){a=e&&e.event_id;o._processing=false}).catch(function(e){i.logger.error(e);o._processing=false});return a};BaseClient.prototype.captureEvent=function(e,t,n){var r=this;var o=t&&t.event_id;this._processing=true;this._processEvent(e,t,n).then(function(e){o=e&&e.event_id;r._processing=false}).catch(function(e){i.logger.error(e);r._processing=false});return o};BaseClient.prototype.getDsn=function(){return this._dsn};BaseClient.prototype.getOptions=function(){return this._options};BaseClient.prototype.flush=function(e){var t=this;return this._isClientProcessing(e).then(function(n){clearInterval(n.interval);return t._getBackend().getTransport().close(e).then(function(e){return n.ready&&e})})};BaseClient.prototype.close=function(e){var t=this;return this.flush(e).then(function(e){t.getOptions().enabled=false;return e})};BaseClient.prototype.getIntegrations=function(){return this._integrations||{}};BaseClient.prototype.getIntegration=function(e){try{return this._integrations[e.id]||null}catch(t){i.logger.warn("Cannot retrieve integration "+e.id+" from the current Client");return null}};BaseClient.prototype._isClientProcessing=function(e){var t=this;return new Promise(function(n){var r=0;var i=1;var o=0;clearInterval(o);o=setInterval(function(){if(!t._processing){n({interval:o,ready:true})}else{r+=i;if(e&&r>=e){n({interval:o,ready:false})}}},i)})};BaseClient.prototype._getBackend=function(){return this._backend};BaseClient.prototype._isEnabled=function(){return this.getOptions().enabled!==false&&this._dsn!==undefined};BaseClient.prototype._prepareEvent=function(e,t,n){var o=this.getOptions(),a=o.environment,s=o.release,c=o.dist,u=o.maxValueLength,l=u===void 0?250:u;var f=r.__assign({},e);if(f.environment===undefined&&a!==undefined){f.environment=a}if(f.release===undefined&&s!==undefined){f.release=s}if(f.dist===undefined&&c!==undefined){f.dist=c}if(f.message){f.message=i.truncate(f.message,l)}var p=f.exception&&f.exception.values&&f.exception.values[0];if(p&&p.value){p.value=i.truncate(p.value,l)}var d=f.request;if(d&&d.url){d.url=i.truncate(d.url,l)}if(f.event_id===undefined){f.event_id=i.uuid4()}this._addIntegrations(f.sdk);var h=i.SyncPromise.resolve(f);if(t){h=t.applyToEvent(f,n)}return h};BaseClient.prototype._addIntegrations=function(e){var t=Object.keys(this._integrations);if(e&&t.length>0){e.integrations=t}};BaseClient.prototype._processEvent=function(e,t,n){var r=this;var o=this.getOptions(),a=o.beforeSend,s=o.sampleRate;if(!this._isEnabled()){return i.SyncPromise.reject("SDK not enabled, will not send event.")}if(typeof s==="number"&&Math.random()>s){return i.SyncPromise.reject("This event has been sampled, will not send event.")}return new i.SyncPromise(function(o,s){r._prepareEvent(e,n,t).then(function(e){if(e===null){s("An event processor returned null, will not send event.");return}var n=e;try{var c=t&&t.data&&t.data.__sentry__===true;if(c||!a){r._getBackend().sendEvent(n);o(n);return}var u=a(e,t);if(typeof u==="undefined"){i.logger.error("`beforeSend` method has to return `null` or a valid event.")}else if(i.isThenable(u)){r._handleAsyncBeforeSend(u,o,s)}else{n=u;if(n===null){i.logger.log("`beforeSend` returned `null`, will not send event.");o(null);return}r._getBackend().sendEvent(n);o(n)}}catch(e){r.captureException(e,{data:{__sentry__:true},originalException:e});s("`beforeSend` throw an error, will not send event.")}})})};BaseClient.prototype._handleAsyncBeforeSend=function(e,t,n){var r=this;e.then(function(e){if(e===null){n("`beforeSend` returned `null`, will not send event.");return}r._getBackend().sendEvent(e);t(e)}).catch(function(e){n("beforeSend rejected with "+e)})};return BaseClient}();t.BaseClient=s},3584:function(e,t,n){"use strict";e.exports=function(e,t,r,i,o,a){var s=e._getDomain;var c=n(4730);var u=c.tryCatch;function ReductionPromiseArray(t,n,r,i){this.constructor$(t);var a=s();this._fn=a===null?n:c.domainBind(a,n);if(r!==undefined){r=e.resolve(r);r._attachCancellationCallback(this)}this._initialValue=r;this._currentCancellable=null;if(i===o){this._eachValues=Array(this._length)}else if(i===0){this._eachValues=null}else{this._eachValues=undefined}this._promise._captureStackTrace();this._init$(undefined,-5)}c.inherits(ReductionPromiseArray,t);ReductionPromiseArray.prototype._gotAccum=function(e){if(this._eachValues!==undefined&&this._eachValues!==null&&e!==o){this._eachValues.push(e)}};ReductionPromiseArray.prototype._eachComplete=function(e){if(this._eachValues!==null){this._eachValues.push(e)}return this._eachValues};ReductionPromiseArray.prototype._init=function(){};ReductionPromiseArray.prototype._resolveEmptyArray=function(){this._resolve(this._eachValues!==undefined?this._eachValues:this._initialValue)};ReductionPromiseArray.prototype.shouldCopyValues=function(){return false};ReductionPromiseArray.prototype._resolve=function(e){this._promise._resolveCallback(e);this._values=null};ReductionPromiseArray.prototype._resultCancelled=function(t){if(t===this._initialValue)return this._cancel();if(this._isResolved())return;this._resultCancelled$();if(this._currentCancellable instanceof e){this._currentCancellable.cancel()}if(this._initialValue instanceof e){this._initialValue.cancel()}};ReductionPromiseArray.prototype._iterate=function(t){this._values=t;var n;var r;var i=t.length;if(this._initialValue!==undefined){n=this._initialValue;r=0}else{n=e.resolve(t[0]);r=1}this._currentCancellable=n;if(!n.isRejected()){for(;r<i;++r){var o={accum:null,value:t[r],index:r,length:i,array:this};n=n._then(gotAccum,undefined,undefined,o,undefined)}}if(this._eachValues!==undefined){n=n._then(this._eachComplete,undefined,undefined,this,undefined)}n._then(completed,completed,undefined,n,this)};e.prototype.reduce=function(e,t){return reduce(this,e,t,null)};e.reduce=function(e,t,n,r){return reduce(e,t,n,r)};function completed(e,t){if(this.isFulfilled()){t._resolve(e)}else{t._reject(e)}}function reduce(e,t,n,i){if(typeof t!=="function"){return r("expecting a function but got "+c.classString(t))}var o=new ReductionPromiseArray(e,t,n,i);return o.promise()}function gotAccum(t){this.accum=t;this.array._gotAccum(t);var n=i(this.value,this.array._promise);if(n instanceof e){this.array._currentCancellable=n;return n._then(gotValue,undefined,undefined,this,undefined)}else{return gotValue.call(this,n)}}function gotValue(t){var n=this.array;var r=n._promise;var i=u(n._fn);r._pushContext();var o;if(n._eachValues!==undefined){o=i.call(r._boundValue(),t,this.index,this.length)}else{o=i.call(r._boundValue(),this.accum,t,this.index,this.length)}if(o instanceof e){n._currentCancellable=o}var s=r._popContext();a.checkForgottenReturns(o,s,n._eachValues!==undefined?"Promise.each":"Promise.reduce",r);return o}}},3586:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return main});var r=n(2229);var i=n.n(r);var o=n(9544);var a=n.n(o);var s=n(8685);var c=n.n(s);var u=n(5242);var l=n.n(u);var f=n(4999);var p=n.n(f);var d=n(586);var h=n.n(d);var m=n(4495);var v=n(5580);var g=n.n(v);var y=n(4573);var b=n.n(y);var w=n(8303);var x=n.n(w);var k=n(9593);var j=n(2970);var S=n.n(j);var E=n(7070);var _=n.n(E);var C=n(2568);var A=n.n(C);var O=n(9491);var F=n.n(O);var D=n(3086);var T=n.n(D);var I=n(5842);var R=n.n(I);var P=n(2385);var B=n(8715);var N=n.n(B);var z=n(1612);var L=n.n(z);var M=n(9199);var U=n.n(M);const q=()=>{console.log(`\n ${a.a.bold(`${p.a} now scale`)} <url> <dc> [min] [max]\n\n ${a.a.dim("Options:")}\n\n -h, --help Output usage information\n -A ${a.a.bold.underline("FILE")}, --local-config=${a.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${a.a.bold.underline("DIR")}, --global-config=${a.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -t ${a.a.bold.underline("TOKEN")}, --token=${a.a.bold.underline("TOKEN")} Login token\n -d, --debug Debug mode [off]\n -S, --scope Set a custom scope\n -n, --no-verify Skip step of waiting until instance count meets given constraints\n -t, --verify-timeout How long to wait for verification to complete [5m]\n\n ${a.a.dim("Examples:")}\n\n ${a.a.gray("")} Enable your deployment in all datacenters (min: 0, max: auto)\n\n ${a.a.cyan("$ now scale my-deployment-123.now.sh all")}\n\n ${a.a.gray("-")} Enable your deployment in the SFO datacenter (min: 0, max: auto)\n\n ${a.a.cyan("$ now scale my-deployment-123.now.sh sfo")}\n\n ${a.a.gray("")} Scale a deployment in all datacenters to 3 instances at all times (no sleep)\n\n ${a.a.cyan("$ now scale my-deployment-123.now.sh all 3")}\n\n ${a.a.gray("")} Enable your deployment in all datacenters, with auto-scaling\n\n ${a.a.cyan("$ now scale my-deployment-123.now.sh all auto")}\n `)};async function main(e){let t;try{t=g()(e.argv.slice(2),{"--verify-timeout":Number,"--no-verify":Boolean,"-n":"--no-verify"})}catch(e){Object(P["handleError"])(e);return 1}if(t["--help"]){q();return 2}const{authConfig:{token:n},config:r}=e;const{currentTeam:o}=r;const{apiUrl:s}=e;const u=t["--debug"];const f=new m["default"]({apiUrl:s,token:n,debug:u,currentTeam:o});const p=l()({debug:u});const d=new b.a({apiUrl:s,token:n,currentTeam:o,debug:u});let v=null;try{({contextName:v}=await x()(d))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){p.error(e.message);return 1}throw e}if(t._[1]==="ls"){p.error(`${c()("now scale ls")} has been deprecated. Use ${c()("now ls")} and ${c()("now inspect <url>")}`);f.close();return 1}if(t._.length<3||t._.length>5){p.error(`${c()("now scale <url> <dc> [min] [max]")} expects at least two arguments`);q();f.close();return 1}const y=Object(k["default"])(t._);if(y instanceof z["InvalidAllForScale"]){p.error('The region value "all" was used, but it cannot be used alongside other region or dc identifiers');f.close();return 1}if(y instanceof z["InvalidRegionOrDCForScale"]){p.error(`The value "${y.meta.regionOrDC}" is not a valid region or DC identifier`);f.close();return 1}const w=F()(t._);if(w instanceof B["InvalidMinForScale"]){p.error(`Invalid <min> parameter "${w.meta.value}". A number or "auto" were expected`);f.close();return 1}const j=A()(t._);if(j instanceof B["InvalidMinForScale"]){p.error(`Invalid <min> parameter "${j.meta.value}". A number or "auto" were expected`);f.close();return 1}if(j instanceof B["InvalidArgsForMinMaxScale"]){p.error(`Invalid number of arguments: expected <min> ("${j.meta.min}") and [max]`);f.close();return 1}if(j instanceof B["InvalidMaxForScale"]){p.error(`Invalid <max> parameter "${j.meta.value}". A number or "auto" were expected`);f.close();return 1}const E=h()();const C=U()(p,await S()(f,v,t._[1]));if(C===1){return C}if(C instanceof B["DeploymentPermissionDenied"]){p.error(`No permission to access deployment ${a.a.dim(C.meta.id)} under ${a.a.bold(C.meta.context)}`);f.close();return 1}if(C instanceof B["DeploymentNotFound"]){p.error(`Failed to find deployment "${t._[1]}" in ${a.a.bold(v)}`);f.close();return 1}p.log(`Fetched deployment "${C.url}" ${E()}`);if(C.type==="STATIC"){p.error("Scaling rules cannot be set on static deployments");f.close();return 1}if(C.state==="ERROR"){p.error("Cannot scale a deployment in the ERROR state");f.close();return 1}if(C.version===2){p.error("Cannot scale a deployment containing builds");f.close();return 1}const O=y.reduce((e,t)=>({...e,[t]:{min:w,max:j}}),{});p.debug(`Setting scale deployment presets to ${JSON.stringify(O)}`);const D=h()();const I=await T()(p,f,C.uid,O,C.url);if(I instanceof B["ForbiddenScaleMinInstances"]){p.error(`You can't scale to more than ${I.meta.max} min instances with your current plan.`);f.close();return 1}if(I instanceof B["ForbiddenScaleMaxInstances"]){p.error(`You can't scale to more than ${I.meta.max} max instances with your current plan.`);f.close();return 1}if(I instanceof B["InvalidScaleMinMaxRelation"]){p.error(`Min number of instances can't be higher than max.`);f.close();return 1}if(I instanceof B["NotSupportedMinScaleSlots"]){p.error(`Cloud v2 does not yet support setting a non-zero min number of instances.`);p.log("Read more: https://err.sh/now/v2-no-min");f.close();return 1}if(I instanceof B["DeploymentTypeUnsupported"]){p.error(`This region only accepts Serverless Docker Deployments.`);f.close();return 1}console.log(`${a.a.gray(">")} Scale rules for ${y.map(e=>a.a.bold(e)).join(", ")} (min: ${a.a.bold(w)}, max: ${a.a.bold(j)}) saved ${D()}`);if(t["--no-verify"]){f.close();return 0}const N=h()();const L=await _()(f,v,C.uid);if(L.type==="NPM"||L.type==="DOCKER"){const e=await R()(p,f,C.uid,L.scale);if(e instanceof B["VerifyScaleTimeout"]){p.error(`Instance verification timed out (${i()(e.meta.timeout)})`,"verification-timeout");f.close();return 1}p.success(`Scale state verified ${N()}`)}f.close();return 0}},3587:function(e,t,n){"use strict";var r=n(8859);var i=n(649);t.init=init;t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.colors=[6,2,3,4,5,1];try{var o=n(4581);if(o&&(o.stderr||o).level>=2){t.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221]}}catch(e){}t.inspectOpts=Object.keys(process.env).filter(function(e){return/^debug_/i.test(e)}).reduce(function(e,t){var n=t.substring(6).toLowerCase().replace(/_([a-z])/g,function(e,t){return t.toUpperCase()});var r=process.env[t];if(/^(yes|on|true|enabled)$/i.test(r)){r=true}else if(/^(no|off|false|disabled)$/i.test(r)){r=false}else if(r==="null"){r=null}else{r=Number(r)}e[n]=r;return e},{});function useColors(){return"colors"in t.inspectOpts?Boolean(t.inspectOpts.colors):r.isatty(process.stderr.fd)}function formatArgs(t){var n=this.namespace,r=this.useColors;if(r){var i=this.color;var o="[3"+(i<8?i:"8;5;"+i);var a=" ".concat(o,";1m").concat(n," ");t[0]=a+t[0].split("\n").join("\n"+a);t.push(o+"m+"+e.exports.humanize(this.diff)+"")}else{t[0]=getDate()+n+" "+t[0]}}function getDate(){if(t.inspectOpts.hideDate){return""}return(new Date).toISOString()+" "}function log(){return process.stderr.write(i.format.apply(i,arguments)+"\n")}function save(e){if(e){process.env.DEBUG=e}else{delete process.env.DEBUG}}function load(){return process.env.DEBUG}function init(e){e.inspectOpts={};var n=Object.keys(t.inspectOpts);for(var r=0;r<n.length;r++){e.inspectOpts[n[r]]=t.inspectOpts[n[r]]}}e.exports=n(8965)(t);var a=e.exports.formatters;a.o=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts).replace(/\s*\n\s*/g," ")};a.O=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts)}},3596:function(e,t,n){"use strict";var r=n(9743);e.exports=function isExtendable(e){return r(e)||typeof e==="function"||Array.isArray(e)}},3605:function(e,t,n){"use strict";var r=n(6824);var i=n(8191);var o=r("JSONError",{fileName:r.append("in %s")});e.exports=function(e,t,n){if(typeof t==="string"){n=t;t=null}try{try{return JSON.parse(e,t)}catch(n){i.parse(e,{mode:"json",reviver:t});throw n}}catch(e){var r=new o(e);if(n){r.fileName=n}throw r}}},3612:function(e,t,n){"use strict";var r=n(1964);var i=n(1097);var o=n(6264);var a=n(3342);var s=n(7256);var c=Object.defineProperties;var u=process.platform==="win32"&&!/^xterm/i.test(process.env.TERM);function Chalk(e){this.enabled=!e||e.enabled===undefined?s:e.enabled}if(u){i.blue.open=""}var l=function(){var e={};Object.keys(i).forEach(function(t){i[t].closeRe=new RegExp(r(i[t].close),"g");e[t]={get:function(){return build.call(this,this._styles.concat(t))}}});return e}();var f=c(function chalk(){},l);function build(e){var t=function(){return applyStyle.apply(t,arguments)};t._styles=e;t.enabled=this.enabled;t.__proto__=f;return t}function applyStyle(){var e=arguments;var t=e.length;var n=t!==0&&String(arguments[0]);if(t>1){for(var r=1;r<t;r++){n+=" "+e[r]}}if(!this.enabled||!n){return n}var o=this._styles;var a=o.length;var s=i.dim.open;if(u&&(o.indexOf("gray")!==-1||o.indexOf("grey")!==-1)){i.dim.open=""}while(a--){var c=i[o[a]];n=c.open+n.replace(c.closeRe,c.open)+c.close}i.dim.open=s;return n}function init(){var e={};Object.keys(l).forEach(function(t){e[t]={get:function(){return build.call(this,[t])}}});return e}c(Chalk.prototype,init());e.exports=new Chalk;e.exports.styles=i;e.exports.hasColor=a;e.exports.stripColor=o;e.exports.supportsColor=s},3623:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(2721);const o=n(8715);function getDomainPrice(e,t,n){return r(this,void 0,void 0,function*(){try{const r=n?i.stringify({name:t,type:n}):i.stringify({name:t});return yield e.fetch(`/v3/domains/price?${r}`)}catch(e){if(e.code==="unsupported_tld"){return new o.UnsupportedTLD(t)}throw e}})}t.default=getDomainPrice},3629:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(5897);const a=n(772);const s=n(8715);const c=i(n(900));const u=i(n(8685));const l=i(n(6056));const f=i(n(5593));function hasDockerfile(e){return r(this,void 0,void 0,function*(){return new Promise(t=>a.exists(o.join(e,"Dockerfile"),t))})}t.hasDockerfile=hasDockerfile;function hasServerfile(e){return r(this,void 0,void 0,function*(){return new Promise(t=>a.exists(o.join(e,"server.js"),t))})}t.hasServerfile=hasServerfile;const p=`More: ${l.default("https://zeit.co/docs/version-detection")}`;function preferV2Deployment({client:e,hasDockerfile:t,hasServerfile:n,pkg:i,localConfig:o,projectName:a}){return r(this,void 0,void 0,function*(){if(o&&o.version){return null}if(o&&o.type){return null}if(n){return null}if(i&&!(i instanceof Error)&&!t){const{scripts:e={}}=i;if(!e.start&&!e["now-start"]){return`Deploying to Now 2.0, because ${f.default("package.json")} is missing a ${u.default("start")} script. ${p}`}}else if(!i&&!t){return`Deploying to Now 2.0, because no ${f.default("Dockerfile")} was found. ${p}`}if(e&&a){const t=yield c.default(e,a);if(t instanceof s.ProjectNotFound){return`Deploying to Now 2.0, because this project does not yet exist. ${p}`}if(t&&t.createdAt>1565186886910){return`Deploying to Now 2.0, because this project was created on Now 2.0. ${p}`}}return null})}t.default=preferV2Deployment},3630:function(e,t,n){"use strict";var r=n(4859).EventEmitter;lazyProperty(e.exports,"callSiteToString",function callSiteToString(){var e=Error.stackTraceLimit;var t={};var r=Error.prepareStackTrace;function prepareObjectStackTrace(e,t){return t}Error.prepareStackTrace=prepareObjectStackTrace;Error.stackTraceLimit=2;Error.captureStackTrace(t);var i=t.stack.slice();Error.prepareStackTrace=r;Error.stackTraceLimit=e;return i[0].toString?toString:n(9601)});lazyProperty(e.exports,"eventListenerCount",function eventListenerCount(){return r.listenerCount||n(2704)});function lazyProperty(e,t,n){function get(){var r=n();Object.defineProperty(e,t,{configurable:true,enumerable:true,value:r});return r}Object.defineProperty(e,t,{configurable:true,enumerable:true,get:get})}function toString(e){return e.toString()}},3635:function(e,t,n){"use strict";var r=n(662);var i=n(5897);var o=n(8785);var a;try{a=n(6758)}catch(e){if(process.env.CHOKIDAR_PRINT_FSEVENTS_REQUIRE_ERROR)console.error(e)}var s=Object.create(null);var c=10;function createFSEventsInstance(e,t){return new a(e).on("fsevent",t).start()}function setFSEventsListener(e,t,n,r){var o=i.extname(e)?i.dirname(e):e;var c;var u=i.dirname(o);if(couldConsolidate(u)){o=u}var l=i.resolve(e);var f=l!==t;function filteredListener(e,r,o){if(f)e=e.replace(t,l);if(e===l||!e.indexOf(l+i.sep))n(e,r,o)}function watchedParent(){return Object.keys(s).some(function(e){if(!t.indexOf(i.resolve(e)+i.sep)){o=e;return true}})}if(o in s||watchedParent()){c=s[o];c.listeners.push(filteredListener)}else{c=s[o]={listeners:[filteredListener],rawEmitters:[r],watcher:createFSEventsInstance(o,function(e,t){var n=a.getInfo(e,t);c.listeners.forEach(function(r){r(e,t,n)});c.rawEmitters.forEach(function(t){t(n.event,e,n)})})}}var p=c.listeners.length-1;return function close(){delete c.listeners[p];delete c.rawEmitters[p];if(!Object.keys(c.listeners).length){c.watcher.stop();delete s[o]}}}function couldConsolidate(e){var t=Object.keys(s);var n=0;for(var r=0,i=t.length;r<i;++r){var o=t[r];if(o.indexOf(e)===0){n++;if(n>=c){return true}}}return false}function canUse(){return a&&Object.keys(s).length<128}function depth(e,t){var n=0;while(!e.indexOf(t)&&(e=i.dirname(e))!==t)n++;return n}function FsEventsHandler(){}FsEventsHandler.prototype._watchWithFsEvents=function(e,t,n,o){if(this._isIgnored(e))return;var a=function(a,s,c){if(this.options.depth!==undefined&&depth(a,t)>this.options.depth)return;var u=n(i.join(e,i.relative(e,a)));if(o&&!o(u))return;var l=i.dirname(u);var f=i.basename(u);var p=this._getWatchedDir(c.type==="directory"?u:l);var d=function(e){if(this._isIgnored(u,e)){this._ignoredPaths[u]=true;if(e&&e.isDirectory()){this._ignoredPaths[u+"/**/*"]=true}return true}else{delete this._ignoredPaths[u];delete this._ignoredPaths[u+"/**/*"]}}.bind(this);var h=function(e){if(d())return;if(e==="unlink"){if(c.type==="directory"||p.has(f)){this._remove(l,f)}}else{if(e==="add"){if(c.type==="directory")this._getWatchedDir(u);if(c.type==="symlink"&&this.options.followSymlinks){var n=this.options.depth===undefined?undefined:depth(a,t)+1;return this._addToFsEvents(u,false,true,n)}else{this._getWatchedDir(l).add(f)}}var r=c.type==="directory"?e+"Dir":e;this._emit(r,u);if(r==="addDir")this._addToFsEvents(u,false,true)}}.bind(this);function addOrChange(){h(p.has(f)?"change":"add")}function checkFd(){r.open(u,"r",function(e,t){if(e){e.code!=="EACCES"?h("unlink"):addOrChange()}else{r.close(t,function(e){e&&e.code!=="EACCES"?h("unlink"):addOrChange()})}})}var m=[69888,70400,71424,72704,73472,131328,131840,262912];if(m.indexOf(s)!==-1||c.event==="unknown"){if(typeof this.options.ignored==="function"){r.stat(u,function(e,t){if(d(t))return;t?addOrChange():h("unlink")})}else{checkFd()}}else{switch(c.event){case"created":case"modified":return addOrChange();case"deleted":case"moved":return checkFd()}}}.bind(this);var s=setFSEventsListener(e,t,a,this.emit.bind(this,"raw"));this._emitReady();return s};FsEventsHandler.prototype._handleFsEventsSymlink=function(e,t,n,o){if(this._symlinkPaths[t])return;else this._symlinkPaths[t]=true;this._readyCount++;r.realpath(e,function(t,r){if(this._handleError(t)||this._isIgnored(r)){return this._emitReady()}this._readyCount++;this._addToFsEvents(r||e,function(t){var o="."+i.sep;var a=e;if(r&&r!==o){a=t.replace(r,e)}else if(t!==o){a=i.join(e,t)}return n(a)},false,o)}.bind(this))};FsEventsHandler.prototype._addToFsEvents=function(e,t,n,a){var s=typeof t==="function"?t:function(e){return e};var c=function(e,t){var r=s(e);var o=t.isDirectory();var a=this._getWatchedDir(i.dirname(r));var c=i.basename(r);if(o)this._getWatchedDir(r);if(a.has(c))return;a.add(c);if(!this.options.ignoreInitial||n===true){this._emit(o?"addDir":"add",r,t)}}.bind(this);var u=this._getWatchHelpers(e);r[u.statMethod](u.watchPath,function(t,n){if(this._handleError(t)||this._isIgnored(u.watchPath,n)){this._emitReady();return this._emitReady()}if(n.isDirectory()){if(!u.globFilter)c(s(e),n);if(a&&a>this.options.depth)return;o({root:u.watchPath,entryType:"all",fileFilter:u.filterPath,directoryFilter:u.filterDir,lstat:true,depth:this.options.depth-(a||0)}).on("data",function(e){if(e.stat.isDirectory()&&!u.filterPath(e))return;var t=i.join(u.watchPath,e.path);var n=e.fullPath;if(u.followSymlinks&&e.stat.isSymbolicLink()){var r=this.options.depth===undefined?undefined:depth(t,i.resolve(u.watchPath))+1;this._handleFsEventsSymlink(t,n,s,r)}else{c(t,e.stat)}}.bind(this)).on("error",function(){}).on("end",this._emitReady)}else{c(u.watchPath,n);this._emitReady()}}.bind(this));if(this.options.persistent&&n!==true){var l=function(t,n){if(this.closed)return;var r=this._watchWithFsEvents(u.watchPath,i.resolve(n||u.watchPath),s,u.globFilter);if(r){this._closers[e]=this._closers[e]||[];this._closers[e].push(r)}}.bind(this);if(typeof t==="function"){l()}else{r.realpath(u.watchPath,l)}}};e.exports=FsEventsHandler;e.exports.canUse=canUse},3651:function(e,t,n){"use strict";const r=n(7406);const i=n(4681);e.exports=(e=>{if(typeof e!=="string"||e.length===0){return 0}e=r(e);let t=0;for(let n=0;n<e.length;n++){const r=e.codePointAt(n);if(r<=31||r>=127&&r<=159){continue}if(r>=768&&r<=879){continue}if(r>65535){n++}t+=i(r)?2:1}return t})},3678:function(e){(function(){var t,n=function(e,t){for(var n in t){if(r.call(t,n))e[n]=t[n]}function ctor(){this.constructor=e}ctor.prototype=t.prototype;e.prototype=new ctor;e.__super__=t.prototype;return e},r={}.hasOwnProperty;t=function(e){n(CreateFileError,e);CreateFileError.prototype.message="Failed to create temporary file for editor";function CreateFileError(e){this.original_error=e}return CreateFileError}(Error);e.exports=t}).call(this)},3683:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(7889).invalidWin32Path;const a=parseInt("0777",8);function mkdirsSync(e,t,n){if(!t||typeof t!=="object"){t={mode:t}}let s=t.mode;const c=t.fs||r;if(process.platform==="win32"&&o(e)){const t=new Error(e+" contains invalid WIN32 path characters.");t.code="EINVAL";throw t}if(s===undefined){s=a&~process.umask()}if(!n)n=null;e=i.resolve(e);try{c.mkdirSync(e,s);n=n||e}catch(r){switch(r.code){case"ENOENT":if(i.dirname(e)===e)throw r;n=mkdirsSync(i.dirname(e),t,n);mkdirsSync(e,t,n);break;default:let o;try{o=c.statSync(e)}catch(e){throw r}if(!o.isDirectory())throw r;break}}return n}e.exports=mkdirsSync},3686:function(e){"use strict";e.exports=(e=>{e=e||{};const t=e.env||process.env;const n=e.platform||process.platform;if(n!=="win32"){return"PATH"}return Object.keys(t).find(e=>e.toUpperCase()==="PATH")||"Path"})},3692:function(e,t,n){"use strict";var r=n(649),i=n(6521);e.exports.UTF_16BE=function(){this.name=function(){return"UTF-16BE"};this.match=function(e){var t=e.fRawInput;if(t.length>=2&&((t[0]&255)==254&&(t[1]&255)==255)){return new i(e,this,100)}return null}};e.exports.UTF_16LE=function(){this.name=function(){return"UTF-16LE"};this.match=function(e){var t=e.fRawInput;if(t.length>=2&&((t[0]&255)==255&&(t[1]&255)==254)){if(t.length>=4&&t[2]==0&&t[3]==0){return null}return new i(e,this,100)}return null}};function UTF_32(){}UTF_32.prototype.match=function(e){var t=e.fRawInput,n=e.fRawLength/4*4,r=0,o=0,a=false,s=0;if(n==0){return null}if(this.getChar(t,0)==65279){a=true}for(var c=0;c<n;c+=4){var u=this.getChar(t,c);if(u<0||u>=1114111||u>=55296&&u<=57343){o+=1}else{r+=1}}if(a&&o==0){s=100}else if(a&&r>o*10){s=80}else if(r>3&&o==0){s=100}else if(r>0&&o==0){s=80}else if(r>o*10){s=25}return s==0?null:new i(e,this,s)};e.exports.UTF_32BE=function(){this.name=function(){return"UTF-32BE"};this.getChar=function(e,t){return(e[t+0]&255)<<24|(e[t+1]&255)<<16|(e[t+2]&255)<<8|e[t+3]&255}};r.inherits(e.exports.UTF_32BE,UTF_32);e.exports.UTF_32LE=function(){this.name=function(){return"UTF-32LE"};this.getChar=function(e,t){return(e[t+3]&255)<<24|(e[t+2]&255)<<16|(e[t+1]&255)<<8|e[t+0]&255}};r.inherits(e.exports.UTF_32LE,UTF_32)},3695:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(5869);function init(e){return r(this,void 0,void 0,function*(){yield i.initializeRuntime(i.runtimes.python)})}t.init=init},3698:function(e,t,n){"use strict";const r=n(6886).PassThrough;e.exports=(e=>{e=Object.assign({},e);const t=e.array;let n=e.encoding;const i=n==="buffer";let o=false;if(t){o=!(n||i)}else{n=n||"utf8"}if(i){n=null}let a=0;const s=[];const c=new r({objectMode:o});if(n){c.setEncoding(n)}c.on("data",e=>{s.push(e);if(o){a=s.length}else{a+=e.length}});c.getBufferedValue=(()=>{if(t){return s}return i?Buffer.concat(s,a):s.join("")});c.getBufferedLength=(()=>a);return c})},3700:function(e){"use strict";function arrayMove(e,t,n,r,i){for(var o=0;o<i;++o){n[o+r]=e[o+t];e[o+t]=void 0}}function Queue(e){this._capacity=e;this._length=0;this._front=0}Queue.prototype._willBeOverCapacity=function(e){return this._capacity<e};Queue.prototype._pushOne=function(e){var t=this.length();this._checkCapacity(t+1);var n=this._front+t&this._capacity-1;this[n]=e;this._length=t+1};Queue.prototype.push=function(e,t,n){var r=this.length()+3;if(this._willBeOverCapacity(r)){this._pushOne(e);this._pushOne(t);this._pushOne(n);return}var i=this._front+r-3;this._checkCapacity(r);var o=this._capacity-1;this[i+0&o]=e;this[i+1&o]=t;this[i+2&o]=n;this._length=r};Queue.prototype.shift=function(){var e=this._front,t=this[e];this[e]=undefined;this._front=e+1&this._capacity-1;this._length--;return t};Queue.prototype.length=function(){return this._length};Queue.prototype._checkCapacity=function(e){if(this._capacity<e){this._resizeTo(this._capacity<<1)}};Queue.prototype._resizeTo=function(e){var t=this._capacity;this._capacity=e;var n=this._front;var r=this._length;var i=n+r&t-1;arrayMove(this,0,this,t,i)};e.exports=Queue},3705:function(e,t,n){"use strict";e.exports=n(7409).extend({path:"events",includeBasic:["list","retrieve"]})},3719:function(e){(function(){var t,n,r,i,o,a;if(typeof performance!=="undefined"&&performance!==null&&performance.now){e.exports=function(){return performance.now()}}else if(typeof process!=="undefined"&&process!==null&&process.hrtime){e.exports=function(){return(t()-o)/1e6};n=process.hrtime;t=function(){var e;e=n();return e[0]*1e9+e[1]};i=t();a=process.uptime()*1e9;o=i-a}else if(Date.now){e.exports=function(){return Date.now()-r};r=Date.now()}else{e.exports=function(){return(new Date).getTime()-r};r=(new Date).getTime()}}).call(this)},3731:function(e,t,n){"use strict";e.exports={shiftjis:{type:"_dbcs",table:function(){return n(2789)},encodeAdd:{"¥":92,"‾":126},encodeSkipVals:[{from:60736,to:63808}]},csshiftjis:"shiftjis",mskanji:"shiftjis",sjis:"shiftjis",windows31j:"shiftjis",ms31j:"shiftjis",xsjis:"shiftjis",windows932:"shiftjis",ms932:"shiftjis",932:"shiftjis",cp932:"shiftjis",eucjp:{type:"_dbcs",table:function(){return n(2506)},encodeAdd:{"¥":92,"‾":126}},gb2312:"cp936",gb231280:"cp936",gb23121980:"cp936",csgb2312:"cp936",csiso58gb231280:"cp936",euccn:"cp936",windows936:"cp936",ms936:"cp936",936:"cp936",cp936:{type:"_dbcs",table:function(){return n(621)}},gbk:{type:"_dbcs",table:function(){return n(621).concat(n(1953))}},xgbk:"gbk",isoir58:"gbk",gb18030:{type:"_dbcs",table:function(){return n(621).concat(n(1953))},gb18030:function(){return n(720)},encodeSkipVals:[128],encodeAdd:{"€":41699}},chinese:"gb18030",windows949:"cp949",ms949:"cp949",949:"cp949",cp949:{type:"_dbcs",table:function(){return n(9519)}},cseuckr:"cp949",csksc56011987:"cp949",euckr:"cp949",isoir149:"cp949",korean:"cp949",ksc56011987:"cp949",ksc56011989:"cp949",ksc5601:"cp949",windows950:"cp950",ms950:"cp950",950:"cp950",cp950:{type:"_dbcs",table:function(){return n(9723)}},big5:"big5hkscs",big5hkscs:{type:"_dbcs",table:function(){return n(9723).concat(n(8169))},encodeSkipVals:[41676]},cnbig5:"big5hkscs",csbig5:"big5hkscs",xxbig5:"big5hkscs"}},3742:function(){throw new Error("Module parse failed: The keyword 'interface' is reserved (1:0)\nYou may need an appropriate loader to handle this file type.\n> interface Inputs {\n| http_status_code: number;\n| http_status_description: string;")},3744:function(e,t,n){"use strict";var r=n(8888);e.exports=function(e,t){if(!r(e)){throw new TypeError("Expected a plain object")}t=t||{};if(typeof t==="function"){t={compare:t}}var n=t.deep;var i=[];var o=[];var a=function(e){var s=i.indexOf(e);if(s!==-1){return o[s]}var c={};var u=Object.keys(e).sort(t.compare);i.push(e);o.push(c);for(var l=0;l<u.length;l++){var f=u[l];var p=e[f];c[f]=n&&r(p)?a(p):p}return c};return a(e)}},3759:function(e){(function(t,n){if(true){e.exports=n()}else{}})(this,function(){var e=[];var t=[];var n={};var r={};var i={};function sanitizeRule(e){if(typeof e==="string"){return new RegExp("^"+e+"$","i")}return e}function restoreCase(e,t){if(e===t)return t;if(e===e.toUpperCase())return t.toUpperCase();if(e[0]===e[0].toUpperCase()){return t.charAt(0).toUpperCase()+t.substr(1).toLowerCase()}return t.toLowerCase()}function interpolate(e,t){return e.replace(/\$(\d{1,2})/g,function(e,n){return t[n]||""})}function replace(e,t){return e.replace(t[0],function(n,r){var i=interpolate(t[1],arguments);if(n===""){return restoreCase(e[r-1],i)}return restoreCase(n,i)})}function sanitizeWord(e,t,r){if(!e.length||n.hasOwnProperty(e)){return t}var i=r.length;while(i--){var o=r[i];if(o[0].test(t))return replace(t,o)}return t}function replaceWord(e,t,n){return function(r){var i=r.toLowerCase();if(t.hasOwnProperty(i)){return restoreCase(r,i)}if(e.hasOwnProperty(i)){return restoreCase(r,e[i])}return sanitizeWord(i,r,n)}}function checkWord(e,t,n,r){return function(r){var i=r.toLowerCase();if(t.hasOwnProperty(i))return true;if(e.hasOwnProperty(i))return false;return sanitizeWord(i,i,n)===i}}function pluralize(e,t,n){var r=t===1?pluralize.singular(e):pluralize.plural(e);return(n?t+" ":"")+r}pluralize.plural=replaceWord(i,r,e);pluralize.isPlural=checkWord(i,r,e);pluralize.singular=replaceWord(r,i,t);pluralize.isSingular=checkWord(r,i,t);pluralize.addPluralRule=function(t,n){e.push([sanitizeRule(t),n])};pluralize.addSingularRule=function(e,n){t.push([sanitizeRule(e),n])};pluralize.addUncountableRule=function(e){if(typeof e==="string"){n[e.toLowerCase()]=true;return}pluralize.addPluralRule(e,"$0");pluralize.addSingularRule(e,"$0")};pluralize.addIrregularRule=function(e,t){t=t.toLowerCase();e=e.toLowerCase();i[e]=t;r[t]=e};[["I","we"],["me","us"],["he","they"],["she","they"],["them","them"],["myself","ourselves"],["yourself","yourselves"],["itself","themselves"],["herself","themselves"],["himself","themselves"],["themself","themselves"],["is","are"],["was","were"],["has","have"],["this","these"],["that","those"],["echo","echoes"],["dingo","dingoes"],["volcano","volcanoes"],["tornado","tornadoes"],["torpedo","torpedoes"],["genus","genera"],["viscus","viscera"],["stigma","stigmata"],["stoma","stomata"],["dogma","dogmata"],["lemma","lemmata"],["schema","schemata"],["anathema","anathemata"],["ox","oxen"],["axe","axes"],["die","dice"],["yes","yeses"],["foot","feet"],["eave","eaves"],["goose","geese"],["tooth","teeth"],["quiz","quizzes"],["human","humans"],["proof","proofs"],["carve","carves"],["valve","valves"],["looey","looies"],["thief","thieves"],["groove","grooves"],["pickaxe","pickaxes"],["whiskey","whiskies"]].forEach(function(e){return pluralize.addIrregularRule(e[0],e[1])});[[/s?$/i,"s"],[/[^\u0000-\u007F]$/i,"$0"],[/([^aeiou]ese)$/i,"$1"],[/(ax|test)is$/i,"$1es"],[/(alias|[^aou]us|tlas|gas|ris)$/i,"$1es"],[/(e[mn]u)s?$/i,"$1s"],[/([^l]ias|[aeiou]las|[emjzr]as|[iu]am)$/i,"$1"],[/(alumn|syllab|octop|vir|radi|nucle|fung|cact|stimul|termin|bacill|foc|uter|loc|strat)(?:us|i)$/i,"$1i"],[/(alumn|alg|vertebr)(?:a|ae)$/i,"$1ae"],[/(seraph|cherub)(?:im)?$/i,"$1im"],[/(her|at|gr)o$/i,"$1oes"],[/(agend|addend|millenni|dat|extrem|bacteri|desiderat|strat|candelabr|errat|ov|symposi|curricul|automat|quor)(?:a|um)$/i,"$1a"],[/(apheli|hyperbat|periheli|asyndet|noumen|phenomen|criteri|organ|prolegomen|hedr|automat)(?:a|on)$/i,"$1a"],[/sis$/i,"ses"],[/(?:(kni|wi|li)fe|(ar|l|ea|eo|oa|hoo)f)$/i,"$1$2ves"],[/([^aeiouy]|qu)y$/i,"$1ies"],[/([^ch][ieo][ln])ey$/i,"$1ies"],[/(x|ch|ss|sh|zz)$/i,"$1es"],[/(matr|cod|mur|sil|vert|ind|append)(?:ix|ex)$/i,"$1ices"],[/(m|l)(?:ice|ouse)$/i,"$1ice"],[/(pe)(?:rson|ople)$/i,"$1ople"],[/(child)(?:ren)?$/i,"$1ren"],[/eaux$/i,"$0"],[/m[ae]n$/i,"men"],["thou","you"]].forEach(function(e){return pluralize.addPluralRule(e[0],e[1])});[[/s$/i,""],[/(ss)$/i,"$1"],[/(wi|kni|(?:after|half|high|low|mid|non|night|[^\w]|^)li)ves$/i,"$1fe"],[/(ar|(?:wo|[ae])l|[eo][ao])ves$/i,"$1f"],[/ies$/i,"y"],[/\b([pl]|zomb|(?:neck|cross)?t|coll|faer|food|gen|goon|group|lass|talk|goal|cut)ies$/i,"$1ie"],[/\b(mon|smil)ies$/i,"$1ey"],[/(m|l)ice$/i,"$1ouse"],[/(seraph|cherub)im$/i,"$1"],[/(x|ch|ss|sh|zz|tto|go|cho|alias|[^aou]us|tlas|gas|(?:her|at|gr)o|ris)(?:es)?$/i,"$1"],[/(analy|ba|diagno|parenthe|progno|synop|the|empha|cri)(?:sis|ses)$/i,"$1sis"],[/(movie|twelve|abuse|e[mn]u)s$/i,"$1"],[/(test)(?:is|es)$/i,"$1is"],[/(alumn|syllab|octop|vir|radi|nucle|fung|cact|stimul|termin|bacill|foc|uter|loc|strat)(?:us|i)$/i,"$1us"],[/(agend|addend|millenni|dat|extrem|bacteri|desiderat|strat|candelabr|errat|ov|symposi|curricul|quor)a$/i,"$1um"],[/(apheli|hyperbat|periheli|asyndet|noumen|phenomen|criteri|organ|prolegomen|hedr|automat)a$/i,"$1on"],[/(alumn|alg|vertebr)ae$/i,"$1a"],[/(cod|mur|sil|vert|ind)ices$/i,"$1ex"],[/(matr|append)ices$/i,"$1ix"],[/(pe)(rson|ople)$/i,"$1rson"],[/(child)ren$/i,"$1"],[/(eau)x?$/i,"$1"],[/men$/i,"man"]].forEach(function(e){return pluralize.addSingularRule(e[0],e[1])});["adulthood","advice","agenda","aid","alcohol","ammo","anime","athletics","audio","bison","blood","bream","buffalo","butter","carp","cash","chassis","chess","clothing","cod","commerce","cooperation","corps","debris","diabetes","digestion","elk","energy","equipment","excretion","expertise","flounder","fun","gallows","garbage","graffiti","headquarters","health","herpes","highjinks","homework","housework","information","jeans","justice","kudos","labour","literature","machinery","mackerel","mail","media","mews","moose","music","manga","news","pike","plankton","pliers","pollution","premises","rain","research","rice","salmon","scissors","series","sewage","shambles","shrimp","species","staff","swine","tennis","traffic","transporation","trout","tuna","wealth","welfare","whiting","wildebeest","wildlife","you",/[^aeiou]ese$/i,/deer$/i,/fish$/i,/measles$/i,/o[iu]s$/i,/pox$/i,/sheep$/i].forEach(pluralize.addUncountableRule);return pluralize})},3760:function(e,t,n){"use strict";const r=n(5897);function getRootPath(e){e=r.normalize(r.resolve(e)).split(r.sep);if(e.length>0)return e[0];return null}const i=/[<>:"|?*]/;function invalidWin32Path(e){const t=getRootPath(e);e=e.replace(t,"");return i.test(e)}e.exports={getRootPath:getRootPath,invalidWin32Path:invalidWin32Path}},3761:function(e){e.exports={$id:"har.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",required:["log"],properties:{log:{$ref:"log.json#"}}}},3782:function(e){e.exports={dots:{interval:80,frames:["⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏"]},dots2:{interval:80,frames:["⣾","⣽","⣻","⢿","⡿","⣟","⣯","⣷"]},dots3:{interval:80,frames:["⠋","⠙","⠚","⠞","⠖","⠦","⠴","⠲","⠳","⠓"]},dots4:{interval:80,frames:["⠄","⠆","⠇","⠋","⠙","⠸","⠰","⠠","⠰","⠸","⠙","⠋","⠇","⠆"]},dots5:{interval:80,frames:["⠋","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋"]},dots6:{interval:80,frames:["⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠴","⠲","⠒","⠂","⠂","⠒","⠚","⠙","⠉","⠁"]},dots7:{interval:80,frames:["⠈","⠉","⠋","⠓","⠒","⠐","⠐","⠒","⠖","⠦","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈"]},dots8:{interval:80,frames:["⠁","⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈","⠈"]},dots9:{interval:80,frames:["⢹","⢺","⢼","⣸","⣇","⡧","⡗","⡏"]},dots10:{interval:80,frames:["⢄","⢂","⢁","⡁","⡈","⡐","⡠"]},dots11:{interval:100,frames:["⠁","⠂","⠄","⡀","⢀","⠠","⠐","⠈"]},dots12:{interval:80,frames:["⢀⠀","⡀⠀","⠄⠀","⢂⠀","⡂⠀","⠅⠀","⢃⠀","⡃⠀","⠍⠀","⢋⠀","⡋⠀","⠍⠁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⢈⠩","⡀⢙","⠄⡙","⢂⠩","⡂⢘","⠅⡘","⢃⠨","⡃⢐","⠍⡐","⢋⠠","⡋⢀","⠍⡁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⠈⠩","⠀⢙","⠀⡙","⠀⠩","⠀⢘","⠀⡘","⠀⠨","⠀⢐","⠀⡐","⠀⠠","⠀⢀","⠀⡀"]},line:{interval:130,frames:["-","\\","|","/"]},line2:{interval:100,frames:["⠂","-","","—","","-"]},pipe:{interval:100,frames:["┤","┘","┴","└","├","┌","┬","┐"]},simpleDots:{interval:400,frames:[". ",".. ","..."," "]},simpleDotsScrolling:{interval:200,frames:[". ",".. ","..."," .."," ."," "]},star:{interval:70,frames:["✶","✸","✹","✺","✹","✷"]},star2:{interval:80,frames:["+","x","*"]},flip:{interval:70,frames:["_","_","_","-","`","`","'","´","-","_","_","_"]},hamburger:{interval:100,frames:["☱","☲","☴"]},growVertical:{interval:120,frames:["▁","▃","▄","▅","▆","▇","▆","▅","▄","▃"]},growHorizontal:{interval:120,frames:["▏","▎","▍","▌","▋","▊","▉","▊","▋","▌","▍","▎"]},balloon:{interval:140,frames:[" ",".","o","O","@","*"," "]},balloon2:{interval:120,frames:[".","o","O","°","O","o","."]},noise:{interval:100,frames:["▓","▒","░"]},bounce:{interval:120,frames:["⠁","⠂","⠄","⠂"]},boxBounce:{interval:120,frames:["▖","▘","▝","▗"]},boxBounce2:{interval:100,frames:["▌","▀","▐","▄"]},triangle:{interval:50,frames:["◢","◣","◤","◥"]},arc:{interval:100,frames:["◜","◠","◝","◞","◡","◟"]},circle:{interval:120,frames:["◡","⊙","◠"]},squareCorners:{interval:180,frames:["◰","◳","◲","◱"]},circleQuarters:{interval:120,frames:["◴","◷","◶","◵"]},circleHalves:{interval:50,frames:["◐","◓","◑","◒"]},squish:{interval:100,frames:["╫","╪"]},toggle:{interval:250,frames:["⊶","⊷"]},toggle2:{interval:80,frames:["▫","▪"]},toggle3:{interval:120,frames:["□","■"]},toggle4:{interval:100,frames:["■","□","▪","▫"]},toggle5:{interval:100,frames:["▮","▯"]},toggle6:{interval:300,frames:["",""]},toggle7:{interval:80,frames:["⦾","⦿"]},toggle8:{interval:100,frames:["◍","◌"]},toggle9:{interval:100,frames:["◉","◎"]},toggle10:{interval:100,frames:["㊂","㊀","㊁"]},toggle11:{interval:50,frames:["⧇","⧆"]},toggle12:{interval:120,frames:["☗","☖"]},toggle13:{interval:80,frames:["=","*","-"]},arrow:{interval:100,frames:["←","↖","↑","↗","→","↘","↓","↙"]},arrow2:{interval:80,frames:["⬆️ ","↗️ ","➡️ ","↘️ ","⬇️ ","↙️ ","⬅️ ","↖️ "]},arrow3:{interval:120,frames:["▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸"]},bouncingBar:{interval:80,frames:["[ ]","[= ]","[== ]","[=== ]","[ ===]","[ ==]","[ =]","[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]"]},bouncingBall:{interval:80,frames:["( ● )","( ● )","( ● )","( ● )","( ●)","( ● )","( ● )","( ● )","( ● )","(● )"]},smiley:{interval:200,frames:["😄 ","😝 "]},monkey:{interval:300,frames:["🙈 ","🙈 ","🙉 ","🙊 "]},hearts:{interval:100,frames:["💛 ","💙 ","💜 ","💚 ","❤️ "]},clock:{interval:100,frames:["🕛 ","🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 "]},earth:{interval:180,frames:["🌍 ","🌎 ","🌏 "]},moon:{interval:80,frames:["🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 "]},runner:{interval:140,frames:["🚶 ","🏃 "]},pong:{interval:80,frames:["▐⠂ ▌","▐⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂▌","▐ ⠠▌","▐ ⡀▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐⠠ ▌"]},shark:{interval:120,frames:["▐|\\____________▌","▐_|\\___________▌","▐__|\\__________▌","▐___|\\_________▌","▐____|\\________▌","▐_____|\\_______▌","▐______|\\______▌","▐_______|\\_____▌","▐________|\\____▌","▐_________|\\___▌","▐__________|\\__▌","▐___________|\\_▌","▐____________|\\▌","▐____________/|▌","▐___________/|_▌","▐__________/|__▌","▐_________/|___▌","▐________/|____▌","▐_______/|_____▌","▐______/|______▌","▐_____/|_______▌","▐____/|________▌","▐___/|_________▌","▐__/|__________▌","▐_/|___________▌","▐/|____________▌"]},dqpb:{interval:100,frames:["d","q","p","b"]},weather:{interval:100,frames:["☀️ ","☀️ ","☀️ ","🌤 ","⛅️ ","🌥 ","☁️ ","🌧 ","🌨 ","🌧 ","🌨 ","🌧 ","🌨 ","⛈ ","🌨 ","🌧 ","🌨 ","☁️ ","🌥 ","⛅️ ","🌤 ","☀️ ","☀️ "]},christmas:{interval:400,frames:["🌲","🎄"]},grenade:{interval:80,frames:["، "," "," ´ "," ‾ "," ⸌"," ⸊"," |"," "," ⁕"," ෴ "," "," "," "," "]},point:{interval:125,frames:["∙∙∙","●∙∙","∙●∙","∙∙●","∙∙∙"]},layer:{interval:150,frames:["-","=","≡"]},betaWave:{interval:80,frames:["ρββββββ","βρβββββ","ββρββββ","βββρβββ","ββββρββ","βββββρβ","ββββββρ"]}}},3789:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9544));const o=r(n(2616));const a=r(n(4110));const s=r(n(6904));function formatNSTable(e,t,{extraSpace:n=""}={}){const r=e.sort();const c=t.sort();const u=Math.max(e.length,t.length);const l=[];for(let e=0;e<u;e++){l.push([r[e]||i.default.gray("-"),c[e]||i.default.gray("-"),r[e]===c[e]?i.default.green(s.default.tick):i.default.red(s.default.cross)])}return o.default([[i.default.gray("Intended Nameservers"),i.default.gray("Current Nameservers"),""],...l],{align:["l","l","l","l"],hsep:" ".repeat(4),stringLength:a.default}).replace(/^(.*)/gm,`${n}$1`)}t.default=formatNSTable},3796:function(e,t,n){var r=n(4810);var i=Object.prototype.toString;e.exports=function kindOf(e){if(typeof e==="undefined"){return"undefined"}if(e===null){return"null"}if(e===true||e===false||e instanceof Boolean){return"boolean"}if(typeof e==="string"||e instanceof String){return"string"}if(typeof e==="number"||e instanceof Number){return"number"}if(typeof e==="function"||e instanceof Function){return"function"}if(typeof Array.isArray!=="undefined"&&Array.isArray(e)){return"array"}if(e instanceof RegExp){return"regexp"}if(e instanceof Date){return"date"}var t=i.call(e);if(t==="[object RegExp]"){return"regexp"}if(t==="[object Date]"){return"date"}if(t==="[object Arguments]"){return"arguments"}if(t==="[object Error]"){return"error"}if(r(e)){return"buffer"}if(t==="[object Set]"){return"set"}if(t==="[object WeakSet]"){return"weakset"}if(t==="[object Map]"){return"map"}if(t==="[object WeakMap]"){return"weakmap"}if(t==="[object Symbol]"){return"symbol"}if(t==="[object Int8Array]"){return"int8array"}if(t==="[object Uint8Array]"){return"uint8array"}if(t==="[object Uint8ClampedArray]"){return"uint8clampedarray"}if(t==="[object Int16Array]"){return"int16array"}if(t==="[object Uint16Array]"){return"uint16array"}if(t==="[object Int32Array]"){return"int32array"}if(t==="[object Uint32Array]"){return"uint32array"}if(t==="[object Float32Array]"){return"float32array"}if(t==="[object Float64Array]"){return"float64array"}return"object"}},3817:function(){throw new Error("Module parse failed: The keyword 'interface' is reserved (1:0)\nYou may need an appropriate loader to handle this file type.\n> interface Inputs {\n| app_error: boolean;\n| title: string;")},3818:function(e,t,n){"use strict";var r=n(9247);var i=n(9799);var o="(\\[(?=.*\\])|\\])+";var a=r.createRegex(o);function parsers(e){e.state=e.state||{};e.parser.sets.bracket=e.parser.sets.bracket||[];e.parser.capture("escape",function(){if(this.isInside("bracket"))return;var e=this.position();var t=this.match(/^\\(.)/);if(!t)return;return e({type:"escape",val:t[0]})}).capture("text",function(){if(this.isInside("bracket"))return;var e=this.position();var t=this.match(a);if(!t||!t[0])return;return e({type:"text",val:t[0]})}).capture("posix",function(){var t=this.position();var n=this.match(/^\[:(.*?):\](?=.*\])/);if(!n)return;var r=this.isInside("bracket");if(r){e.posix++}return t({type:"posix",insideBracket:r,inner:n[1],val:n[0]})}).capture("bracket",function(){}).capture("bracket.open",function(){var e=this.parsed;var t=this.position();var n=this.match(/^\[(?=.*\])/);if(!n)return;var o=this.prev();var a=r.last(o.nodes);if(e.slice(-1)==="\\"&&!this.isInside("bracket")){a.val=a.val.slice(0,a.val.length-1);return t({type:"escape",val:n[0]})}var s=t({type:"bracket.open",val:n[0]});if(a.type==="bracket.open"||this.isInside("bracket")){s.val="\\"+s.val;s.type="bracket.inner";s.escaped=true;return s}var c=t({type:"bracket",nodes:[s]});i(c,"parent",o);i(s,"parent",c);this.push("bracket",c);o.nodes.push(c)}).capture("bracket.inner",function(){if(!this.isInside("bracket"))return;var e=this.position();var t=this.match(a);if(!t||!t[0])return;var n=this.input.charAt(0);var r=t[0];var i=e({type:"bracket.inner",val:r});if(r==="\\\\"){return i}var o=r.charAt(0);var s=r.slice(-1);if(o==="!"){r="^"+r.slice(1)}if(s==="\\"||r==="^"&&n==="]"){r+=this.input[0];this.consume(1)}i.val=r;return i}).capture("bracket.close",function(){var e=this.parsed;var t=this.position();var n=this.match(/^\]/);if(!n)return;var o=this.prev();var a=r.last(o.nodes);if(e.slice(-1)==="\\"&&!this.isInside("bracket")){a.val=a.val.slice(0,a.val.length-1);return t({type:"escape",val:n[0]})}var s=t({type:"bracket.close",rest:this.input,val:n[0]});if(a.type==="bracket.open"){s.type="bracket.inner";s.escaped=true;return s}var c=this.pop("bracket");if(!this.isType(c,"bracket")){if(this.options.strict){throw new Error('missing opening "["')}s.type="bracket.inner";s.escaped=true;return s}c.nodes.push(s);i(s,"parent",c)})}e.exports=parsers;e.exports.TEXT_REGEX=o},3819:function(e,t,n){"use strict";const r=n(2255).fromCallback;e.exports={copy:r(n(2730))}},3823:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});class LambdaError extends Error{constructor(e={}){super(e.errorMessage||"Unspecified runtime initialization error");Object.setPrototypeOf(this,new.target.prototype);Object.defineProperty(this,"name",{value:e.errorType||this.constructor.name});if(Array.isArray(e.stackTrace)){this.stack=[`${this.name}: ${this.message}`,...e.stackTrace].join("\n")}else if(typeof e.stackTrace==="string"){this.stack=e.stackTrace}}}t.LambdaError=LambdaError},3835:function(e,t,n){"use strict";var r=n(649);var i=n(4794);var o=n(3462);var a=n(6887);var s=n(3258);function fillRange(e,t,n,a){if(typeof e==="undefined"){return[]}if(typeof t==="undefined"||e===t){var s=typeof e==="string";if(i(e)&&!toNumber(e)){return[s?"0":0]}return[e]}if(typeof n!=="number"&&typeof n!=="string"){a=n;n=undefined}if(typeof a==="function"){a={transform:a}}var c=o({step:n},a);if(c.step&&!isValidNumber(c.step)){if(c.strictRanges===true){throw new TypeError("expected options.step to be a number")}return[]}c.isNumber=isValidNumber(e)&&isValidNumber(t);if(!c.isNumber&&!isValid(e,t)){if(c.strictRanges===true){throw new RangeError("invalid range arguments: "+r.inspect([e,t]))}return[]}c.isPadded=isPadded(e)||isPadded(t);c.toString=c.stringify||typeof c.step==="string"||typeof e==="string"||typeof t==="string"||!c.isNumber;if(c.isPadded){c.maxLength=Math.max(String(e).length,String(t).length)}if(typeof c.optimize==="boolean")c.toRegex=c.optimize;if(typeof c.makeRe==="boolean")c.toRegex=c.makeRe;return expand(e,t,c)}function expand(e,t,n){var r=n.isNumber?toNumber(e):e.charCodeAt(0);var i=n.isNumber?toNumber(t):t.charCodeAt(0);var o=Math.abs(toNumber(n.step))||1;if(n.toRegex&&o===1){return toRange(r,i,e,t,n)}var a={greater:[],lesser:[]};var s=r<i;var c=new Array(Math.round((s?i-r:r-i)/o));var u=0;while(s?r<=i:r>=i){var l=n.isNumber?r:String.fromCharCode(r);if(n.toRegex&&(l>=0||!n.isNumber)){a.greater.push(l)}else{a.lesser.push(Math.abs(l))}if(n.isPadded){l=zeros(l,n)}if(n.toString){l=String(l)}if(typeof n.transform==="function"){c[u++]=n.transform(l,r,i,o,u,c,n)}else{c[u++]=l}if(s){r+=o}else{r-=o}}if(n.toRegex===true){return toSequence(c,a,n)}return c}function toRange(e,t,n,r,i){if(i.isPadded){return s(n,r,i)}if(i.isNumber){return s(Math.min(e,t),Math.max(e,t),i)}var n=String.fromCharCode(Math.min(e,t));var r=String.fromCharCode(Math.max(e,t));return"["+n+"-"+r+"]"}function toSequence(e,t,n){var r="",i="";if(t.greater.length){r=t.greater.join("|")}if(t.lesser.length){i="-("+t.lesser.join("|")+")"}var o=r&&i?r+"|"+i:r||i;if(n.capture){return"("+o+")"}return o}function zeros(e,t){if(t.isPadded){var n=String(e);var r=n.length;var i="";if(n.charAt(0)==="-"){i="-";n=n.slice(1)}var o=t.maxLength-r;var s=a("0",o);e=i+s+n}if(t.stringify){return String(e)}return e}function toNumber(e){return Number(e)||0}function isPadded(e){return/^-?0\d/.test(e)}function isValid(e,t){return(isValidNumber(e)||isValidLetter(e))&&(isValidNumber(t)||isValidLetter(t))}function isValidLetter(e){return typeof e==="string"&&e.length===1&&/^\w+$/.test(e)}function isValidNumber(e){return i(e)&&!/\./.test(e)}e.exports=fillRange},3842:function(e,t,n){var r=n(1485);function startOfDay(e){var t=r(e);t.setHours(0,0,0,0);return t}e.exports=startOfDay},3846:function(e){function allocUnsafe(e){if(typeof e!=="number"){throw new TypeError('"size" argument must be a number')}if(e<0){throw new RangeError('"size" argument must not be negative')}if(Buffer.allocUnsafe){return Buffer.allocUnsafe(e)}else{return new Buffer(e)}}e.exports=allocUnsafe},3853:function(e){e.exports={$id:"browser.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",required:["name","version"],properties:{name:{type:"string"},version:{type:"string"},comment:{type:"string"}}}},3855:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);var o=n(586);var a=n.n(o);var s=n(6145);var c=n.n(s);var u=n(541);var l=n.n(u);var f=n(8950);var p=n.n(f);var d=n(7282);var h=n(4680);var m=n.n(h);var v=n(6904);var g=n.n(v);var y=n(5359);var b=n.n(y);var w=n(8685);var x=n.n(w);var k=n(2675);var j=n(5032);var S=n.n(j);var E=n(4122);var _=n(2547);var C=n.n(_);const A=(e,t)=>/^[a-zA-Z]+[a-zA-Z0-9_-]*$/.test(t+e);const O=(e,t)=>/^[ a-zA-Z0-9_-]+$/.test(t+e);const F=()=>{console.log();Object(k["default"])(`Your team is now active for all ${x()("now")} commands!\n Run ${x()("now switch")} to change it in the future.`);return 0};const D=Object(d["default"])("Team URL",14)+i.a.gray("zeit.co/");const T=Object(d["default"])("Team Name",14);t["default"]=async function({apiUrl:e,token:t,teams:n,config:r}){let o;let s;let u;let f;console.log(c()(`Pick a team identifier for its url (e.g.: ${i.a.cyan("`zeit.co/acme`")})`));do{try{o=await S()({label:`- ${D}`,validateKeypress:A,initialValue:o,valid:s,forceLowerCase:true})}catch(e){if(e.message==="USER_ABORT"){console.log(c()("Aborted"));return 0}throw e}u=a()();f=p()(D+o);let e;try{e=await n.create({slug:o});f();s=e}catch(e){f();process.stdout.write(m()(2));console.error(l()(e.message))}}while(!s);process.stdout.write(m()(2));console.log(b()(`Team created ${u()}`));console.log(`${i.a.cyan(`${g.a.tick} `)+D+o}\n`);console.log(c()("Pick a display name for your team"));let d;try{d=await S()({label:`- ${T}`,validateKeypress:O})}catch(e){if(e.message==="USER_ABORT"){console.log(c()("No name specified"));return F()}throw e}u=a()();f=p()(T+d);const h=await n.edit({id:s.id,name:d});f();process.stdout.write(m()(2));if(h.error){console.error(l()(h.error.message));console.log(`${i.a.red(`✖ ${T}`)}${d}`);return 1}s=Object.assign(s,h);console.log(b()(`Team name saved ${u()}`));console.log(`${i.a.cyan(`${g.a.tick} `)+T+s.name}\n`);f=p()("Saving");const v=Object.assign({},r);if(v.sh){v.sh.currentTeam=s}else{v.currentTeam=s.id}Object(_["writeToConfigFile"])(v);f();await Object(E["default"])({teams:n,args:[],token:t,apiUrl:e,config:r,introMsg:"Invite your teammates! When done, press enter on an empty field",noopMsg:`You can invite teammates later by running ${x()("now teams invite")}`});F()}},3868:function(e){e.exports=function(){var e=Error.prepareStackTrace;Error.prepareStackTrace=function(e,t){return t};var t=(new Error).stack;Error.prepareStackTrace=e;return t[2].getFileName()}},3869:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(6369);const o=n(5869);function init({cacheDir:e}){return r(this,void 0,void 0,function*(){yield Promise.all([o.initializeRuntime(o.runtimes.python),i.installPython(e,"3.6.8")])})}t.init=init},3873:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});const r=n(5897);const i=process.platform==="win32";function relative(e,t){let n=r.relative(e,t);if(i){n=n.replace(/\\/g,"/")}return n}t.relative=relative},3885:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(9726);var o=n(1390);var a=[/^Script error\.?$/,/^Javascript error: Script error\.? on line 0$/];var s=function(){function InboundFilters(e){if(e===void 0){e={}}this._options=e;this.name=InboundFilters.id}InboundFilters.prototype.setupOnce=function(){i.addGlobalEventProcessor(function(e){var t=i.getCurrentHub();if(!t){return e}var n=t.getIntegration(InboundFilters);if(n){var r=t.getClient();var o=r?r.getOptions():{};var a=n._mergeOptions(o);if(n._shouldDropEvent(e,a)){return null}}return e})};InboundFilters.prototype._shouldDropEvent=function(e,t){if(this._isSentryError(e,t)){o.logger.warn("Event dropped due to being internal Sentry Error.\nEvent: "+o.getEventDescription(e));return true}if(this._isIgnoredError(e,t)){o.logger.warn("Event dropped due to being matched by `ignoreErrors` option.\nEvent: "+o.getEventDescription(e));return true}if(this._isBlacklistedUrl(e,t)){o.logger.warn("Event dropped due to being matched by `blacklistUrls` option.\nEvent: "+o.getEventDescription(e)+".\nUrl: "+this._getEventFilterUrl(e));return true}if(!this._isWhitelistedUrl(e,t)){o.logger.warn("Event dropped due to not being matched by `whitelistUrls` option.\nEvent: "+o.getEventDescription(e)+".\nUrl: "+this._getEventFilterUrl(e));return true}return false};InboundFilters.prototype._isSentryError=function(e,t){if(t===void 0){t={}}if(!t.ignoreInternal){return false}try{return e.exception.values[0].type==="SentryError"}catch(e){return false}};InboundFilters.prototype._isIgnoredError=function(e,t){if(t===void 0){t={}}if(!t.ignoreErrors||!t.ignoreErrors.length){return false}return this._getPossibleEventMessages(e).some(function(e){return t.ignoreErrors.some(function(t){return o.isMatchingPattern(e,t)})})};InboundFilters.prototype._isBlacklistedUrl=function(e,t){if(t===void 0){t={}}if(!t.blacklistUrls||!t.blacklistUrls.length){return false}var n=this._getEventFilterUrl(e);return!n?false:t.blacklistUrls.some(function(e){return o.isMatchingPattern(n,e)})};InboundFilters.prototype._isWhitelistedUrl=function(e,t){if(t===void 0){t={}}if(!t.whitelistUrls||!t.whitelistUrls.length){return true}var n=this._getEventFilterUrl(e);return!n?true:t.whitelistUrls.some(function(e){return o.isMatchingPattern(n,e)})};InboundFilters.prototype._mergeOptions=function(e){if(e===void 0){e={}}return{blacklistUrls:r.__spread(this._options.blacklistUrls||[],e.blacklistUrls||[]),ignoreErrors:r.__spread(this._options.ignoreErrors||[],e.ignoreErrors||[],a),ignoreInternal:typeof this._options.ignoreInternal!=="undefined"?this._options.ignoreInternal:true,whitelistUrls:r.__spread(this._options.whitelistUrls||[],e.whitelistUrls||[])}};InboundFilters.prototype._getPossibleEventMessages=function(e){if(e.message){return[e.message]}if(e.exception){try{var t=e.exception.values[0],n=t.type,r=t.value;return[""+r,n+": "+r]}catch(t){o.logger.error("Cannot extract message for event "+o.getEventDescription(e));return[]}}return[]};InboundFilters.prototype._getEventFilterUrl=function(e){try{if(e.stacktrace){var t=e.stacktrace.frames;return t[t.length-1].filename}if(e.exception){var n=e.exception.values[0].stacktrace.frames;return n[n.length-1].filename}return null}catch(t){o.logger.error("Cannot extract url for event "+o.getEventDescription(e));return null}};InboundFilters.id="InboundFilters";return InboundFilters}();t.InboundFilters=s},3890:function(e,t,n){var r=n(6886).PassThrough;var i=n(2205);e.exports=function(e){e=i({},e);var t=e.array;var n=e.encoding;var o=n==="buffer";var a=false;if(t){a=!(n||o)}else{n=n||"utf8"}if(o){n=null}var s=0;var c=[];var u=new r({objectMode:a});if(n){u.setEncoding(n)}u.on("data",function(e){c.push(e);if(a){s=c.length}else{s+=e.length}});u.getBufferedValue=function(){if(t){return c}return o?Buffer.concat(c,s):c.join("")};u.getBufferedLength=function(){return s};return u}},3901:function(e){"use strict";e.exports=function(e){if(!(e&&e.length>1)){return null}if(e[0]===255&&e[1]===216&&e[2]===255){return{ext:"jpg",mime:"image/jpeg"}}if(e[0]===137&&e[1]===80&&e[2]===78&&e[3]===71){return{ext:"png",mime:"image/png"}}if(e[0]===71&&e[1]===73&&e[2]===70){return{ext:"gif",mime:"image/gif"}}if(e[8]===87&&e[9]===69&&e[10]===66&&e[11]===80){return{ext:"webp",mime:"image/webp"}}if(e[0]===70&&e[1]===76&&e[2]===73&&e[3]===70){return{ext:"flif",mime:"image/flif"}}if((e[0]===73&&e[1]===73&&e[2]===42&&e[3]===0||e[0]===77&&e[1]===77&&e[2]===0&&e[3]===42)&&e[8]===67&&e[9]===82){return{ext:"cr2",mime:"image/x-canon-cr2"}}if(e[0]===73&&e[1]===73&&e[2]===42&&e[3]===0||e[0]===77&&e[1]===77&&e[2]===0&&e[3]===42){return{ext:"tif",mime:"image/tiff"}}if(e[0]===66&&e[1]===77){return{ext:"bmp",mime:"image/bmp"}}if(e[0]===73&&e[1]===73&&e[2]===188){return{ext:"jxr",mime:"image/vnd.ms-photo"}}if(e[0]===56&&e[1]===66&&e[2]===80&&e[3]===83){return{ext:"psd",mime:"image/vnd.adobe.photoshop"}}if(e[0]===80&&e[1]===75&&e[2]===3&&e[3]===4&&e[30]===109&&e[31]===105&&e[32]===109&&e[33]===101&&e[34]===116&&e[35]===121&&e[36]===112&&e[37]===101&&e[38]===97&&e[39]===112&&e[40]===112&&e[41]===108&&e[42]===105&&e[43]===99&&e[44]===97&&e[45]===116&&e[46]===105&&e[47]===111&&e[48]===110&&e[49]===47&&e[50]===101&&e[51]===112&&e[52]===117&&e[53]===98&&e[54]===43&&e[55]===122&&e[56]===105&&e[57]===112){return{ext:"epub",mime:"application/epub+zip"}}if(e[0]===80&&e[1]===75&&e[2]===3&&e[3]===4&&e[30]===77&&e[31]===69&&e[32]===84&&e[33]===65&&e[34]===45&&e[35]===73&&e[36]===78&&e[37]===70&&e[38]===47&&e[39]===109&&e[40]===111&&e[41]===122&&e[42]===105&&e[43]===108&&e[44]===108&&e[45]===97&&e[46]===46&&e[47]===114&&e[48]===115&&e[49]===97){return{ext:"xpi",mime:"application/x-xpinstall"}}if(e[0]===80&&e[1]===75&&(e[2]===3||e[2]===5||e[2]===7)&&(e[3]===4||e[3]===6||e[3]===8)){return{ext:"zip",mime:"application/zip"}}if(e[257]===117&&e[258]===115&&e[259]===116&&e[260]===97&&e[261]===114){return{ext:"tar",mime:"application/x-tar"}}if(e[0]===82&&e[1]===97&&e[2]===114&&e[3]===33&&e[4]===26&&e[5]===7&&(e[6]===0||e[6]===1)){return{ext:"rar",mime:"application/x-rar-compressed"}}if(e[0]===31&&e[1]===139&&e[2]===8){return{ext:"gz",mime:"application/gzip"}}if(e[0]===66&&e[1]===90&&e[2]===104){return{ext:"bz2",mime:"application/x-bzip2"}}if(e[0]===55&&e[1]===122&&e[2]===188&&e[3]===175&&e[4]===39&&e[5]===28){return{ext:"7z",mime:"application/x-7z-compressed"}}if(e[0]===120&&e[1]===1){return{ext:"dmg",mime:"application/x-apple-diskimage"}}if(e[0]===0&&e[1]===0&&e[2]===0&&(e[3]===24||e[3]===32)&&e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112||e[0]===51&&e[1]===103&&e[2]===112&&e[3]===53||e[0]===0&&e[1]===0&&e[2]===0&&e[3]===28&&e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112&&e[8]===109&&e[9]===112&&e[10]===52&&e[11]===50&&e[16]===109&&e[17]===112&&e[18]===52&&e[19]===49&&e[20]===109&&e[21]===112&&e[22]===52&&e[23]===50&&e[24]===105&&e[25]===115&&e[26]===111&&e[27]===109||e[0]===0&&e[1]===0&&e[2]===0&&e[3]===28&&e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112&&e[8]===105&&e[9]===115&&e[10]===111&&e[11]===109||e[0]===0&&e[1]===0&&e[2]===0&&e[3]===28&&e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112&&e[8]===109&&e[9]===112&&e[10]===52&&e[11]===50&&e[12]===0&&e[13]===0&&e[14]===0&&e[15]===0){return{ext:"mp4",mime:"video/mp4"}}if(e[0]===0&&e[1]===0&&e[2]===0&&e[3]===28&&e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112&&e[8]===77&&e[9]===52&&e[10]===86){return{ext:"m4v",mime:"video/x-m4v"}}if(e[0]===77&&e[1]===84&&e[2]===104&&e[3]===100){return{ext:"mid",mime:"audio/midi"}}if(e[31]===109&&e[32]===97&&e[33]===116&&e[34]===114&&e[35]===111&&e[36]===115&&e[37]===107&&e[38]===97){return{ext:"mkv",mime:"video/x-matroska"}}if(e[0]===26&&e[1]===69&&e[2]===223&&e[3]===163){return{ext:"webm",mime:"video/webm"}}if(e[0]===0&&e[1]===0&&e[2]===0&&e[3]===20&&e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112){return{ext:"mov",mime:"video/quicktime"}}if(e[0]===82&&e[1]===73&&e[2]===70&&e[3]===70&&e[8]===65&&e[9]===86&&e[10]===73){return{ext:"avi",mime:"video/x-msvideo"}}if(e[0]===48&&e[1]===38&&e[2]===178&&e[3]===117&&e[4]===142&&e[5]===102&&e[6]===207&&e[7]===17&&e[8]===166&&e[9]===217){return{ext:"wmv",mime:"video/x-ms-wmv"}}if(e[0]===0&&e[1]===0&&e[2]===1&&e[3].toString(16)[0]==="b"){return{ext:"mpg",mime:"video/mpeg"}}if(e[0]===73&&e[1]===68&&e[2]===51||e[0]===255&&e[1]===251){return{ext:"mp3",mime:"audio/mpeg"}}if(e[4]===102&&e[5]===116&&e[6]===121&&e[7]===112&&e[8]===77&&e[9]===52&&e[10]===65||e[0]===77&&e[1]===52&&e[2]===65&&e[3]===32){return{ext:"m4a",mime:"audio/m4a"}}if(e[28]===79&&e[29]===112&&e[30]===117&&e[31]===115&&e[32]===72&&e[33]===101&&e[34]===97&&e[35]===100){return{ext:"opus",mime:"audio/opus"}}if(e[0]===79&&e[1]===103&&e[2]===103&&e[3]===83){return{ext:"ogg",mime:"audio/ogg"}}if(e[0]===102&&e[1]===76&&e[2]===97&&e[3]===67){return{ext:"flac",mime:"audio/x-flac"}}if(e[0]===82&&e[1]===73&&e[2]===70&&e[3]===70&&e[8]===87&&e[9]===65&&e[10]===86&&e[11]===69){return{ext:"wav",mime:"audio/x-wav"}}if(e[0]===35&&e[1]===33&&e[2]===65&&e[3]===77&&e[4]===82&&e[5]===10){return{ext:"amr",mime:"audio/amr"}}if(e[0]===37&&e[1]===80&&e[2]===68&&e[3]===70){return{ext:"pdf",mime:"application/pdf"}}if(e[0]===77&&e[1]===90){return{ext:"exe",mime:"application/x-msdownload"}}if((e[0]===67||e[0]===70)&&e[1]===87&&e[2]===83){return{ext:"swf",mime:"application/x-shockwave-flash"}}if(e[0]===123&&e[1]===92&&e[2]===114&&e[3]===116&&e[4]===102){return{ext:"rtf",mime:"application/rtf"}}if(e[0]===119&&e[1]===79&&e[2]===70&&e[3]===70&&(e[4]===0&&e[5]===1&&e[6]===0&&e[7]===0||e[4]===79&&e[5]===84&&e[6]===84&&e[7]===79)){return{ext:"woff",mime:"application/font-woff"}}if(e[0]===119&&e[1]===79&&e[2]===70&&e[3]===50&&(e[4]===0&&e[5]===1&&e[6]===0&&e[7]===0||e[4]===79&&e[5]===84&&e[6]===84&&e[7]===79)){return{ext:"woff2",mime:"application/font-woff"}}if(e[34]===76&&e[35]===80&&(e[8]===0&&e[9]===0&&e[10]===1||e[8]===1&&e[9]===0&&e[10]===2||e[8]===2&&e[9]===0&&e[10]===2)){return{ext:"eot",mime:"application/octet-stream"}}if(e[0]===0&&e[1]===1&&e[2]===0&&e[3]===0&&e[4]===0){return{ext:"ttf",mime:"application/font-sfnt"}}if(e[0]===79&&e[1]===84&&e[2]===84&&e[3]===79&&e[4]===0){return{ext:"otf",mime:"application/font-sfnt"}}if(e[0]===0&&e[1]===0&&e[2]===1&&e[3]===0){return{ext:"ico",mime:"image/x-icon"}}if(e[0]===70&&e[1]===76&&e[2]===86&&e[3]===1){return{ext:"flv",mime:"video/x-flv"}}if(e[0]===37&&e[1]===33){return{ext:"ps",mime:"application/postscript"}}if(e[0]===253&&e[1]===55&&e[2]===122&&e[3]===88&&e[4]===90&&e[5]===0){return{ext:"xz",mime:"application/x-xz"}}if(e[0]===83&&e[1]===81&&e[2]===76&&e[3]===105){return{ext:"sqlite",mime:"application/x-sqlite3"}}if(e[0]===78&&e[1]===69&&e[2]===83&&e[3]===26){return{ext:"nes",mime:"application/x-nintendo-nes-rom"}}if(e[0]===67&&e[1]===114&&e[2]===50&&e[3]===52){return{ext:"crx",mime:"application/x-google-chrome-extension"}}if(e[0]===77&&e[1]===83&&e[2]===67&&e[3]===70||e[0]===73&&e[1]===83&&e[2]===99&&e[3]===40){return{ext:"cab",mime:"application/vnd.ms-cab-compressed"}}if(e[0]===33&&e[1]===60&&e[2]===97&&e[3]===114&&e[4]===99&&e[5]===104&&e[6]===62&&e[7]===10&&e[8]===100&&e[9]===101&&e[10]===98&&e[11]===105&&e[12]===97&&e[13]===110&&e[14]===45&&e[15]===98&&e[16]===105&&e[17]===110&&e[18]===97&&e[19]===114&&e[20]===121){return{ext:"deb",mime:"application/x-deb"}}if(e[0]===33&&e[1]===60&&e[2]===97&&e[3]===114&&e[4]===99&&e[5]===104&&e[6]===62){return{ext:"ar",mime:"application/x-unix-archive"}}if(e[0]===237&&e[1]===171&&e[2]===238&&e[3]===219){return{ext:"rpm",mime:"application/x-rpm"}}if(e[0]===31&&e[1]===160||e[0]===31&&e[1]===157){return{ext:"Z",mime:"application/x-compress"}}if(e[0]===76&&e[1]===90&&e[2]===73&&e[3]===80){return{ext:"lz",mime:"application/x-lzip"}}if(e[0]===208&&e[1]===207&&e[2]===17&&e[3]===224&&e[4]===161&&e[5]===177&&e[6]===26&&e[7]===225){return{ext:"msi",mime:"application/x-msi"}}return null}},3902:function(e){var t=process.platform==="win32";e.exports=function(e){var t=e.length-1;if(t<2){return e}while(isSeparator(e,t)){t--}return e.substr(0,t+1)};function isSeparator(e,n){var r=e[n];return n>0&&(r==="/"||t&&r==="\\")}},3930:function(e){e.exports=require("assert")},3932:function(e,t,n){"use strict";const r=n(3930);const i=n(4859).EventEmitter;const o=n(2052);const a=n(662);const s=n(4594);const c=n(5897);const u=n(4443);const l=u.sync;const f=n(9734);const p=Symbol("onEntry");const d=Symbol("checkFs");const h=Symbol("isReusable");const m=Symbol("makeFs");const v=Symbol("file");const g=Symbol("directory");const y=Symbol("link");const b=Symbol("symlink");const w=Symbol("hardlink");const x=Symbol("unsupported");const k=Symbol("unknown");const j=Symbol("checkPath");const S=Symbol("mkdir");const E=Symbol("onError");const _=Symbol("pending");const C=Symbol("pend");const A=Symbol("unpend");const O=Symbol("ended");const F=Symbol("maybeClose");const D=Symbol("skip");const T=Symbol("doChown");const I=Symbol("uid");const R=Symbol("gid");const P=n(2984);const B=(e,t)=>{if(process.platform!=="win32")return a.unlink(e,t);const n=e+".DELETE."+P.randomBytes(16).toString("hex");a.rename(e,n,e=>{if(e)return t(e);a.unlink(n,t)})};const N=e=>{if(process.platform!=="win32")return a.unlinkSync(e);const t=e+".DELETE."+P.randomBytes(16).toString("hex");a.renameSync(e,t);a.unlinkSync(t)};const z=(e,t,n)=>e===e>>>0?e:t===t>>>0?t:n;class Unpack extends o{constructor(e){if(!e)e={};e.ondone=(e=>{this[O]=true;this[F]()});super(e);this.transform=typeof e.transform==="function"?e.transform:null;this.writable=true;this.readable=false;this[_]=0;this[O]=false;this.dirCache=e.dirCache||new Map;if(typeof e.uid==="number"||typeof e.gid==="number"){if(typeof e.uid!=="number"||typeof e.gid!=="number")throw new TypeError("cannot set owner without number uid and gid");if(e.preserveOwner)throw new TypeError("cannot preserve owner in archive and also set owner explicitly");this.uid=e.uid;this.gid=e.gid;this.setOwner=true}else{this.uid=null;this.gid=null;this.setOwner=false}if(e.preserveOwner===undefined&&typeof e.uid!=="number")this.preserveOwner=process.getuid&&process.getuid()===0;else this.preserveOwner=!!e.preserveOwner;this.processUid=(this.preserveOwner||this.setOwner)&&process.getuid?process.getuid():null;this.processGid=(this.preserveOwner||this.setOwner)&&process.getgid?process.getgid():null;this.forceChown=e.forceChown===true;this.win32=!!e.win32||process.platform==="win32";this.newer=!!e.newer;this.keep=!!e.keep;this.noMtime=!!e.noMtime;this.preservePaths=!!e.preservePaths;this.unlink=!!e.unlink;this.cwd=c.resolve(e.cwd||process.cwd());this.strip=+e.strip||0;this.processUmask=process.umask();this.umask=typeof e.umask==="number"?e.umask:this.processUmask;this.dmode=e.dmode||511&~this.umask;this.fmode=e.fmode||438&~this.umask;this.on("entry",e=>this[p](e))}[F](){if(this[O]&&this[_]===0){this.emit("prefinish");this.emit("finish");this.emit("end");this.emit("close")}}[j](e){if(this.strip){const t=e.path.split(/\/|\\/);if(t.length<this.strip)return false;e.path=t.slice(this.strip).join("/");if(e.type==="Link"){const t=e.linkpath.split(/\/|\\/);if(t.length>=this.strip)e.linkpath=t.slice(this.strip).join("/")}}if(!this.preservePaths){const t=e.path;if(t.match(/(^|\/|\\)\.\.(\\|\/|$)/)){this.warn("path contains '..'",t);return false}if(c.win32.isAbsolute(t)){const n=c.win32.parse(t);this.warn("stripping "+n.root+" from absolute path",t);e.path=t.substr(n.root.length)}}if(this.win32){const t=c.win32.parse(e.path);e.path=t.root===""?f.encode(e.path):t.root+f.encode(e.path.substr(t.root.length))}if(c.isAbsolute(e.path))e.absolute=e.path;else e.absolute=c.resolve(this.cwd,e.path);return true}[p](e){if(!this[j](e))return e.resume();r.equal(typeof e.absolute,"string");switch(e.type){case"Directory":case"GNUDumpDir":if(e.mode)e.mode=e.mode|448;case"File":case"OldFile":case"ContiguousFile":case"Link":case"SymbolicLink":return this[d](e);case"CharacterDevice":case"BlockDevice":case"FIFO":return this[x](e)}}[E](e,t){if(e.name==="CwdError")this.emit("error",e);else{this.warn(e.message,e);this[A]();t.resume()}}[S](e,t,n){u(e,{uid:this.uid,gid:this.gid,processUid:this.processUid,processGid:this.processGid,umask:this.processUmask,preserve:this.preservePaths,unlink:this.unlink,cache:this.dirCache,cwd:this.cwd,mode:t},n)}[T](e){return this.forceChown||this.preserveOwner&&(typeof e.uid==="number"&&e.uid!==this.processUid||typeof e.gid==="number"&&e.gid!==this.processGid)||(typeof this.uid==="number"&&this.uid!==this.processUid||typeof this.gid==="number"&&this.gid!==this.processGid)}[I](e){return z(this.uid,e.uid,this.processUid)}[R](e){return z(this.gid,e.gid,this.processGid)}[v](e){const t=e.mode&4095||this.fmode;const n=new s.WriteStream(e.absolute,{mode:t,autoClose:false});n.on("error",t=>this[E](t,e));let r=1;const i=t=>{if(t)return this[E](t,e);if(--r===0)a.close(n.fd,e=>this[A]())};n.on("finish",t=>{const o=e.absolute;const s=n.fd;if(e.mtime&&!this.noMtime){r++;const t=e.atime||new Date;const n=e.mtime;a.futimes(s,t,n,e=>e?a.utimes(o,t,n,t=>i(t&&e)):i())}if(this[T](e)){r++;const t=this[I](e);const n=this[R](e);a.fchown(s,t,n,e=>e?a.chown(o,t,n,t=>i(t&&e)):i())}i()});const o=this.transform?this.transform(e)||e:e;if(o!==e){o.on("error",t=>this[E](t,e));e.pipe(o)}o.pipe(n)}[g](e){const t=e.mode&4095||this.dmode;this[S](e.absolute,t,t=>{if(t)return this[E](t,e);let n=1;const r=t=>{if(--n===0){this[A]();e.resume()}};if(e.mtime&&!this.noMtime){n++;a.utimes(e.absolute,e.atime||new Date,e.mtime,r)}if(this[T](e)){n++;a.chown(e.absolute,this[I](e),this[R](e),r)}r()})}[x](e){this.warn("unsupported entry type: "+e.type,e);e.resume()}[b](e){this[y](e,e.linkpath,"symlink")}[w](e){this[y](e,c.resolve(this.cwd,e.linkpath),"link")}[C](){this[_]++}[A](){this[_]--;this[F]()}[D](e){this[A]();e.resume()}[h](e,t){return e.type==="File"&&!this.unlink&&t.isFile()&&t.nlink<=1&&process.platform!=="win32"}[d](e){this[C]();this[S](c.dirname(e.absolute),this.dmode,t=>{if(t)return this[E](t,e);a.lstat(e.absolute,(t,n)=>{if(n&&(this.keep||this.newer&&n.mtime>e.mtime))this[D](e);else if(t||this[h](e,n))this[m](null,e);else if(n.isDirectory()){if(e.type==="Directory"){if(!e.mode||(n.mode&4095)===e.mode)this[m](null,e);else a.chmod(e.absolute,e.mode,t=>this[m](t,e))}else a.rmdir(e.absolute,t=>this[m](t,e))}else B(e.absolute,t=>this[m](t,e))})})}[m](e,t){if(e)return this[E](e,t);switch(t.type){case"File":case"OldFile":case"ContiguousFile":return this[v](t);case"Link":return this[w](t);case"SymbolicLink":return this[b](t);case"Directory":case"GNUDumpDir":return this[g](t)}}[y](e,t,n){a[n](t,e.absolute,t=>{if(t)return this[E](t,e);this[A]();e.resume()})}}class UnpackSync extends Unpack{constructor(e){super(e)}[d](e){const t=this[S](c.dirname(e.absolute),this.dmode);if(t)return this[E](t,e);try{const n=a.lstatSync(e.absolute);if(this.keep||this.newer&&n.mtime>e.mtime)return this[D](e);else if(this[h](e,n))return this[m](null,e);else{try{if(n.isDirectory()){if(e.type==="Directory"){if(e.mode&&(n.mode&4095)!==e.mode)a.chmodSync(e.absolute,e.mode)}else a.rmdirSync(e.absolute)}else N(e.absolute);return this[m](null,e)}catch(t){return this[E](t,e)}}}catch(t){return this[m](null,e)}}[v](e){const t=e.mode&4095||this.fmode;const n=t=>{try{a.closeSync(i)}catch(e){}if(t)this[E](t,e)};let r;let i;try{i=a.openSync(e.absolute,"w",t)}catch(e){return n(e)}const o=this.transform?this.transform(e)||e:e;if(o!==e){o.on("error",t=>this[E](t,e));e.pipe(o)}o.on("data",e=>{try{a.writeSync(i,e,0,e.length)}catch(e){n(e)}});o.on("end",t=>{let r=null;if(e.mtime&&!this.noMtime){const t=e.atime||new Date;const n=e.mtime;try{a.futimesSync(i,t,n)}catch(i){try{a.utimesSync(e.absolute,t,n)}catch(e){r=i}}}if(this[T](e)){const t=this[I](e);const n=this[R](e);try{a.fchownSync(i,t,n)}catch(i){try{a.chownSync(e.absolute,t,n)}catch(e){r=r||i}}}n(r)})}[g](e){const t=e.mode&4095||this.dmode;const n=this[S](e.absolute,t);if(n)return this[E](n,e);if(e.mtime&&!this.noMtime){try{a.utimesSync(e.absolute,e.atime||new Date,e.mtime)}catch(n){}}if(this[T](e)){try{a.chownSync(e.absolute,this[I](e),this[R](e))}catch(n){}}e.resume()}[S](e,t){try{return u.sync(e,{uid:this.uid,gid:this.gid,processUid:this.processUid,processGid:this.processGid,umask:this.processUmask,preserve:this.preservePaths,unlink:this.unlink,cache:this.dirCache,cwd:this.cwd,mode:t})}catch(e){return e}}[y](e,t,n){try{a[n+"Sync"](t,e.absolute);e.resume()}catch(t){return this[E](t,e)}}}Unpack.Sync=UnpackSync;e.exports=Unpack},3936:function(e,t,n){var r=n(6886).Transform;function Parser(e){if(!(this instanceof Parser)){throw new TypeError("Cannot call a class as a function")}e=e||{};r.call(this,{objectMode:true});this._memory="";this._emitInvalidLines=e.emitInvalidLines||false}Parser.prototype=Object.create(r.prototype);Parser.prototype._handleLines=function(e,t){for(var n=0;n<e.length;n++){if(e[n]==="")continue;var r=null;var i=null;try{i=JSON.parse(e[n])}catch(t){t.source=e[n];r=t}if(r){if(this._emitInvalidLines){this.emit("invalid-line",r)}else{return t(r)}}else{this.push(i)}}t(null)};Parser.prototype._transform=function(e,t,n){var r=(this._memory+e.toString()).split("\n");this._memory=r.pop();this._handleLines(r,n)};Parser.prototype._flush=function(e){if(!this._memory)return e(null);var t=this._memory;this._memory="";this._handleLines([t],e)};e.exports=Parser},3937:function(e,t,n){"use strict";var r=n(9950);var i=n(5897).extname;var o=/^\s*([^;\s]*)(?:;|\s|$)/;var a=/^text\//i;t.charset=charset;t.charsets={lookup:charset};t.contentType=contentType;t.extension=extension;t.extensions=Object.create(null);t.lookup=lookup;t.types=Object.create(null);populateMaps(t.extensions,t.types);function charset(e){if(!e||typeof e!=="string"){return false}var t=o.exec(e);var n=t&&r[t[1].toLowerCase()];if(n&&n.charset){return n.charset}if(t&&a.test(t[1])){return"UTF-8"}return false}function contentType(e){if(!e||typeof e!=="string"){return false}var n=e.indexOf("/")===-1?t.lookup(e):e;if(!n){return false}if(n.indexOf("charset")===-1){var r=t.charset(n);if(r)n+="; charset="+r.toLowerCase()}return n}function extension(e){if(!e||typeof e!=="string"){return false}var n=o.exec(e);var r=n&&t.extensions[n[1].toLowerCase()];if(!r||!r.length){return false}return r[0]}function lookup(e){if(!e||typeof e!=="string"){return false}var n=i("x."+e).toLowerCase().substr(1);if(!n){return false}return t.types[n]||false}function populateMaps(e,t){var n=["nginx","apache",undefined,"iana"];Object.keys(r).forEach(function forEachMimeType(i){var o=r[i];var a=o.extensions;if(!a||!a.length){return}e[i]=a;for(var s=0;s<a.length;s++){var c=a[s];if(t[c]){var u=n.indexOf(r[t[c]].source);var l=n.indexOf(o.source);if(t[c]!=="application/octet-stream"&&(u>l||u===l&&t[c].substr(0,12)==="application/")){continue}}t[c]=i}})}},3941:function(e,t,n){e.exports=Fingerprint;var r=n(9261);var i=n(3062).Buffer;var o=n(6977);var a=n(2984);var s=n(7825);var c=n(120);var u=n(1946);var l=n(6399);var f=n(5271);var p=s.FingerprintFormatError;var d=s.InvalidAlgorithmError;function Fingerprint(e){r.object(e,"options");r.string(e.type,"options.type");r.buffer(e.hash,"options.hash");r.string(e.algorithm,"options.algorithm");this.algorithm=e.algorithm.toLowerCase();if(o.hashAlgs[this.algorithm]!==true)throw new d(this.algorithm);this.hash=e.hash;this.type=e.type;this.hashType=e.hashType}Fingerprint.prototype.toString=function(e){if(e===undefined){if(this.algorithm==="md5"||this.hashType==="spki")e="hex";else e="base64"}r.string(e);switch(e){case"hex":if(this.hashType==="spki")return this.hash.toString("hex");return addColons(this.hash.toString("hex"));case"base64":if(this.hashType==="spki")return this.hash.toString("base64");return sshBase64Format(this.algorithm,this.hash.toString("base64"));default:throw new p(undefined,e)}};Fingerprint.prototype.matches=function(e){r.object(e,"key or certificate");if(this.type==="key"&&this.hashType!=="ssh"){f.assertCompatible(e,c,[1,7],"key with spki");if(u.isPrivateKey(e)){f.assertCompatible(e,u,[1,6],"privatekey with spki support")}}else if(this.type==="key"){f.assertCompatible(e,c,[1,0],"key")}else{f.assertCompatible(e,l,[1,0],"certificate")}var t=e.hash(this.algorithm,this.hashType);var n=a.createHash(this.algorithm).update(t).digest("base64");if(this.hash2===undefined)this.hash2=a.createHash(this.algorithm).update(this.hash).digest("base64");return this.hash2===n};var h=/^[A-Za-z0-9+\/=]+$/;var m=/^[a-fA-F0-9]+$/;Fingerprint.parse=function(e,t){r.string(e,"fingerprint");var n,a,s;if(Array.isArray(t)){s=t;t={}}r.optionalObject(t,"options");if(t===undefined)t={};if(t.enAlgs!==undefined)s=t.enAlgs;if(t.algorithms!==undefined)s=t.algorithms;r.optionalArrayOfString(s,"algorithms");var c="ssh";if(t.hashType!==undefined)c=t.hashType;r.string(c,"options.hashType");var u=e.split(":");if(u.length==2){n=u[0].toLowerCase();if(!h.test(u[1]))throw new p(e);try{a=i.from(u[1],"base64")}catch(t){throw new p(e)}}else if(u.length>2){n="md5";if(u[0].toLowerCase()==="md5")u=u.slice(1);u=u.map(function(t){while(t.length<2)t="0"+t;if(t.length>2)throw new p(e);return t});u=u.join("");if(!m.test(u)||u.length%2!==0)throw new p(e);try{a=i.from(u,"hex")}catch(t){throw new p(e)}}else{if(m.test(e)){a=i.from(e,"hex")}else if(h.test(e)){a=i.from(e,"base64")}else{throw new p(e)}switch(a.length){case 32:n="sha256";break;case 16:n="md5";break;case 20:n="sha1";break;case 64:n="sha512";break;default:throw new p(e)}if(t.hashType===undefined)c="spki"}if(n===undefined)throw new p(e);if(o.hashAlgs[n]===undefined)throw new d(n);if(s!==undefined){s=s.map(function(e){return e.toLowerCase()});if(s.indexOf(n)===-1)throw new d(n)}return new Fingerprint({algorithm:n,hash:a,type:t.type||"key",hashType:c})};function addColons(e){return e.replace(/(.{2})(?=.)/g,"$1:")}function base64Strip(e){return e.replace(/=*$/,"")}function sshBase64Format(e,t){return e.toUpperCase()+":"+base64Strip(t)}Fingerprint.isFingerprint=function(e,t){return f.isCompatible(e,Fingerprint,t)};Fingerprint.prototype._sshpkApiVersion=[1,2];Fingerprint._oldVersionDetect=function(e){r.func(e.toString);r.func(e.matches);return[1,0]}},3945:function(e,t,n){var r=t,i=n(774),o=n(2721),a=n(2984),s=n(5880),c=s(1e3);function hmac(e,t,n){return a.createHmac("sha256",e).update(t,"utf8").digest(n)}function hash(e,t){return a.createHash("sha256").update(e,"utf8").digest(t)}function encodeRfc3986(e){return e.replace(/[!'()*]/g,function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})}function RequestSigner(e,t){if(typeof e==="string")e=i.parse(e);var n=e.headers=e.headers||{},r=this.matchHost(e.hostname||e.host||n.Host||n.host);this.request=e;this.credentials=t||this.defaultCredentials();this.service=e.service||r[0]||"";this.region=e.region||r[1]||"us-east-1";if(this.service==="email")this.service="ses";if(!e.method&&e.body)e.method="POST";if(!n.Host&&!n.host){n.Host=e.hostname||e.host||this.createHost();if(e.port)n.Host+=":"+e.port}if(!e.hostname&&!e.host)e.hostname=n.Host||n.host;this.isCodeCommitGit=this.service==="codecommit"&&e.method==="GIT"}RequestSigner.prototype.matchHost=function(e){var t=(e||"").match(/([^\.]+)\.(?:([^\.]*)\.)?amazonaws\.com(\.cn)?$/);var n=(t||[]).slice(1,3);if(n[1]==="es")n=n.reverse();return n};RequestSigner.prototype.isSingleRegion=function(){if(["s3","sdb"].indexOf(this.service)>=0&&this.region==="us-east-1")return true;return["cloudfront","ls","route53","iam","importexport","sts"].indexOf(this.service)>=0};RequestSigner.prototype.createHost=function(){var e=this.isSingleRegion()?"":(this.service==="s3"&&this.region!=="us-east-1"?"-":".")+this.region,t=this.service==="ses"?"email":this.service;return t+e+".amazonaws.com"};RequestSigner.prototype.prepareRequest=function(){this.parsePath();var e=this.request,t=e.headers,n;if(e.signQuery){this.parsedPath.query=n=this.parsedPath.query||{};if(this.credentials.sessionToken)n["X-Amz-Security-Token"]=this.credentials.sessionToken;if(this.service==="s3"&&!n["X-Amz-Expires"])n["X-Amz-Expires"]=86400;if(n["X-Amz-Date"])this.datetime=n["X-Amz-Date"];else n["X-Amz-Date"]=this.getDateTime();n["X-Amz-Algorithm"]="AWS4-HMAC-SHA256";n["X-Amz-Credential"]=this.credentials.accessKeyId+"/"+this.credentialString();n["X-Amz-SignedHeaders"]=this.signedHeaders()}else{if(!e.doNotModifyHeaders&&!this.isCodeCommitGit){if(e.body&&!t["Content-Type"]&&!t["content-type"])t["Content-Type"]="application/x-www-form-urlencoded; charset=utf-8";if(e.body&&!t["Content-Length"]&&!t["content-length"])t["Content-Length"]=Buffer.byteLength(e.body);if(this.credentials.sessionToken&&!t["X-Amz-Security-Token"]&&!t["x-amz-security-token"])t["X-Amz-Security-Token"]=this.credentials.sessionToken;if(this.service==="s3"&&!t["X-Amz-Content-Sha256"]&&!t["x-amz-content-sha256"])t["X-Amz-Content-Sha256"]=hash(this.request.body||"","hex");if(t["X-Amz-Date"]||t["x-amz-date"])this.datetime=t["X-Amz-Date"]||t["x-amz-date"];else t["X-Amz-Date"]=this.getDateTime()}delete t.Authorization;delete t.authorization}};RequestSigner.prototype.sign=function(){if(!this.parsedPath)this.prepareRequest();if(this.request.signQuery){this.parsedPath.query["X-Amz-Signature"]=this.signature()}else{this.request.headers.Authorization=this.authHeader()}this.request.path=this.formatPath();return this.request};RequestSigner.prototype.getDateTime=function(){if(!this.datetime){var e=this.request.headers,t=new Date(e.Date||e.date||new Date);this.datetime=t.toISOString().replace(/[:\-]|\.\d{3}/g,"");if(this.isCodeCommitGit)this.datetime=this.datetime.slice(0,-1)}return this.datetime};RequestSigner.prototype.getDate=function(){return this.getDateTime().substr(0,8)};RequestSigner.prototype.authHeader=function(){return["AWS4-HMAC-SHA256 Credential="+this.credentials.accessKeyId+"/"+this.credentialString(),"SignedHeaders="+this.signedHeaders(),"Signature="+this.signature()].join(", ")};RequestSigner.prototype.signature=function(){var e=this.getDate(),t=[this.credentials.secretAccessKey,e,this.region,this.service].join(),n,r,i,o=c.get(t);if(!o){n=hmac("AWS4"+this.credentials.secretAccessKey,e);r=hmac(n,this.region);i=hmac(r,this.service);o=hmac(i,"aws4_request");c.set(t,o)}return hmac(o,this.stringToSign(),"hex")};RequestSigner.prototype.stringToSign=function(){return["AWS4-HMAC-SHA256",this.getDateTime(),this.credentialString(),hash(this.canonicalString(),"hex")].join("\n")};RequestSigner.prototype.canonicalString=function(){if(!this.parsedPath)this.prepareRequest();var e=this.parsedPath.path,t=this.parsedPath.query,n=this.request.headers,r="",i=this.service!=="s3",a=this.service==="s3"||this.request.doNotEncodePath,s=this.service==="s3",c=this.service==="s3",u;if(this.service==="s3"&&this.request.signQuery){u="UNSIGNED-PAYLOAD"}else if(this.isCodeCommitGit){u=""}else{u=n["X-Amz-Content-Sha256"]||n["x-amz-content-sha256"]||hash(this.request.body||"","hex")}if(t){r=encodeRfc3986(o.stringify(Object.keys(t).sort().reduce(function(e,n){if(!n)return e;e[n]=!Array.isArray(t[n])?t[n]:c?t[n][0]:t[n].slice().sort();return e},{})))}if(e!=="/"){if(i)e=e.replace(/\/{2,}/g,"/");e=e.split("/").reduce(function(e,t){if(i&&t===".."){e.pop()}else if(!i||t!=="."){if(a)t=decodeURIComponent(t);e.push(encodeRfc3986(encodeURIComponent(t)))}return e},[]).join("/");if(e[0]!=="/")e="/"+e;if(s)e=e.replace(/%2F/g,"/")}return[this.request.method||"GET",e,r,this.canonicalHeaders()+"\n",this.signedHeaders(),u].join("\n")};RequestSigner.prototype.canonicalHeaders=function(){var e=this.request.headers;function trimAll(e){return e.toString().trim().replace(/\s+/g," ")}return Object.keys(e).sort(function(e,t){return e.toLowerCase()<t.toLowerCase()?-1:1}).map(function(t){return t.toLowerCase()+":"+trimAll(e[t])}).join("\n")};RequestSigner.prototype.signedHeaders=function(){return Object.keys(this.request.headers).map(function(e){return e.toLowerCase()}).sort().join(";")};RequestSigner.prototype.credentialString=function(){return[this.getDate(),this.region,this.service,"aws4_request"].join("/")};RequestSigner.prototype.defaultCredentials=function(){var e=process.env;return{accessKeyId:e.AWS_ACCESS_KEY_ID||e.AWS_ACCESS_KEY,secretAccessKey:e.AWS_SECRET_ACCESS_KEY||e.AWS_SECRET_KEY,sessionToken:e.AWS_SESSION_TOKEN}};RequestSigner.prototype.parsePath=function(){var e=this.request.path||"/",t=e.indexOf("?"),n=null;if(t>=0){n=o.parse(e.slice(t+1));e=e.slice(0,t)}if(/[^0-9A-Za-z!'()*\-._~%\/]/.test(e)){e=e.split("/").map(function(e){return encodeURIComponent(decodeURIComponent(e))}).join("/")}this.parsedPath={path:e,query:n}};RequestSigner.prototype.formatPath=function(){var e=this.parsedPath.path,t=this.parsedPath.query;if(!t)return e;if(t[""]!=null)delete t[""];return e+"?"+encodeRfc3986(o.stringify(t))};r.RequestSigner=RequestSigner;r.sign=function(e,t){return new RequestSigner(e,t).sign()}},3947:function(e,t,n){"use strict";const r=n(5897);const i=n(9052);const o=n(8297);const a=o()==="x64"?__dirname+"/clipboard_x86_64.exe":__dirname+"/clipboard_i686.exe";e.exports={copy:async e=>i(a,["--copy"],e),paste:async e=>i.stdout(a,["--paste"],e),copySync:e=>i.sync(a,["--copy"],e),pasteSync:e=>i.sync(a,["--paste"],e)}},3951:function(e,t){Object.defineProperty(t,"__esModule",{value:true});function parse(e){if(!e.stack){return[]}var t=e.stack.split("\n").slice(1);return t.map(function(e){if(e.match(/^\s*[-]{4,}$/)){return{columnNumber:null,fileName:e,functionName:null,lineNumber:null,methodName:null,native:null,typeName:null}}var t=e.match(/at (?:(.+?)\s+\()?(?:(.+?):(\d+)(?::(\d+))?|([^)]+))\)?/);if(!t){return undefined}var n=null;var r=null;var i=null;var o=null;var a=null;var s=t[5]==="native";if(t[1]){i=t[1];var c=i.lastIndexOf(".");if(i[c-1]==="."){c--}if(c>0){n=i.substr(0,c);r=i.substr(c+1);var u=n.indexOf(".Module");if(u>0){i=i.substr(u+1);n=n.substr(0,u)}}o=null}if(r){o=n;a=r}if(r==="<anonymous>"){a=null;i=null}var l={columnNumber:parseInt(t[4],10)||null,fileName:t[2]||null,functionName:i,lineNumber:parseInt(t[3],10)||null,methodName:a,native:s,typeName:o};return l}).filter(function(e){return!!e})}t.parse=parse},3952:function(e){"use strict";e.exports=function generate__limitProperties(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l;var f="data"+(o||"");var p=e.opts.$data&&a&&a.$data,d;if(p){r+=" var schema"+i+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ";d="schema"+i}else{d=a}var h=t=="maxProperties"?">":"<";r+="if ( ";if(p){r+=" ("+d+" !== undefined && typeof "+d+" != 'number') || "}r+=" Object.keys("+f+").length "+h+" "+d+") { ";var l=t;var m=m||[];m.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+(l||"_limitProperties")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { limit: "+d+" } ";if(e.opts.messages!==false){r+=" , message: 'should NOT have ";if(t=="maxProperties"){r+="more"}else{r+="fewer"}r+=" than ";if(p){r+="' + "+d+" + '"}else{r+=""+a}r+=" properties' "}if(e.opts.verbose){r+=" , schema: ";if(p){r+="validate.schema"+s}else{r+=""+a}r+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+f+" "}r+=" } "}else{r+=" {} "}var v=r;r=m.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+v+"]); "}else{r+=" validate.errors = ["+v+"]; return false; "}}else{r+=" var err = "+v+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+="} ";if(u){r+=" else { "}return r}},3984:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(8715));function transferInDomain(e,t,n,i){return r(this,void 0,void 0,function*(){try{return yield e.fetch(`/v4/domains`,{body:{method:"transfer-in",name:t,authCode:n,expectedPrice:i},method:"POST"})}catch(e){if(e.code==="invalid_name"){return new o.InvalidDomain(t)}if(e.code==="domain_already_exists"){return new o.DomainNotAvailable(t)}if(e.code==="not_transferable"){return new o.DomainNotTransferable(t)}if(e.code==="invalid_auth_code"){return new o.InvalidTransferAuthCode(t,n)}if(e.code==="source_not_found"){return new o.SourceNotFound}if(e.code==="registration_failed"){return new o.DomainRegistrationFailed(t,e.message)}throw e}})}t.default=transferInDomain},3985:function(e){"use strict";e.exports=function generate_multipleOf(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f=e.opts.$data&&a&&a.$data,p;if(f){r+=" var schema"+i+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ";p="schema"+i}else{p=a}r+="var division"+i+";if (";if(f){r+=" "+p+" !== undefined && ( typeof "+p+" != 'number' || "}r+=" (division"+i+" = "+l+" / "+p+", ";if(e.opts.multipleOfPrecision){r+=" Math.abs(Math.round(division"+i+") - division"+i+") > 1e-"+e.opts.multipleOfPrecision+" "}else{r+=" division"+i+" !== parseInt(division"+i+") "}r+=" ) ";if(f){r+=" ) "}r+=" ) { ";var d=d||[];d.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"multipleOf"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { multipleOf: "+p+" } ";if(e.opts.messages!==false){r+=" , message: 'should be multiple of ";if(f){r+="' + "+p}else{r+=""+p+"'"}}if(e.opts.verbose){r+=" , schema: ";if(f){r+="validate.schema"+s}else{r+=""+a}r+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var h=r;r=d.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+h+"]); "}else{r+=" validate.errors = ["+h+"]; return false; "}}else{r+=" var err = "+h+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+="} ";if(u){r+=" else { "}return r}},3993:function(e,t,n){"use strict";e.exports=function(e,t,r,i){var o=n(4730);var a=o.isObject;var s=n(5467);var c;if(typeof Map==="function")c=Map;var u=function(){var e=0;var t=0;function extractEntry(n,r){this[e]=n;this[e+t]=r;e++}return function mapToEntries(n){t=n.size;e=0;var r=new Array(n.size*2);n.forEach(extractEntry,r);return r}}();var l=function(e){var t=new c;var n=e.length/2|0;for(var r=0;r<n;++r){var i=e[n+r];var o=e[r];t.set(i,o)}return t};function PropertiesPromiseArray(e){var t=false;var n;if(c!==undefined&&e instanceof c){n=u(e);t=true}else{var r=s.keys(e);var i=r.length;n=new Array(i*2);for(var o=0;o<i;++o){var a=r[o];n[o]=e[a];n[o+i]=a}}this.constructor$(n);this._isMap=t;this._init$(undefined,t?-6:-3)}o.inherits(PropertiesPromiseArray,t);PropertiesPromiseArray.prototype._init=function(){};PropertiesPromiseArray.prototype._promiseFulfilled=function(e,t){this._values[t]=e;var n=++this._totalResolved;if(n>=this._length){var r;if(this._isMap){r=l(this._values)}else{r={};var i=this.length();for(var o=0,a=this.length();o<a;++o){r[this._values[o+i]]=this._values[o]}}this._resolve(r);return true}return false};PropertiesPromiseArray.prototype.shouldCopyValues=function(){return false};PropertiesPromiseArray.prototype.getActualLength=function(e){return e>>1};function props(t){var n;var o=r(t);if(!a(o)){return i("cannot await properties of a non-object\n\n See http://goo.gl/MqrFmX\n")}else if(o instanceof e){n=o._then(e.props,undefined,undefined,undefined,undefined)}else{n=new PropertiesPromiseArray(o).promise()}if(o instanceof e){n._propagateFrom(o,2)}return n}e.prototype.props=function(){return props(this)};e.props=function(e){return props(e)}}},4008:function(e,t,n){var r=n(9261);var i=n(649);var o=n(1143);var a=n(2034);var s=n(6974);t.deepCopy=deepCopy;t.deepEqual=deepEqual;t.isEmpty=isEmpty;t.hasKey=hasKey;t.forEachKey=forEachKey;t.pluck=pluck;t.flattenObject=flattenObject;t.flattenIter=flattenIter;t.validateJsonObject=validateJsonObjectJS;t.validateJsonObjectJS=validateJsonObjectJS;t.randElt=randElt;t.extraProperties=extraProperties;t.mergeObjects=mergeObjects;t.startsWith=startsWith;t.endsWith=endsWith;t.parseInteger=parseInteger;t.iso8601=iso8601;t.rfc1123=rfc1123;t.parseDateTime=parseDateTime;t.hrtimediff=hrtimeDiff;t.hrtimeDiff=hrtimeDiff;t.hrtimeAccum=hrtimeAccum;t.hrtimeAdd=hrtimeAdd;t.hrtimeNanosec=hrtimeNanosec;t.hrtimeMicrosec=hrtimeMicrosec;t.hrtimeMillisec=hrtimeMillisec;function deepCopy(e){var t,n;var r="__deepCopy";if(e&&e[r])throw new Error("attempted deep copy of cyclic object");if(e&&e.constructor==Object){t={};e[r]=true;for(n in e){if(n==r)continue;t[n]=deepCopy(e[n])}delete e[r];return t}if(e&&e.constructor==Array){t=[];e[r]=true;for(n=0;n<e.length;n++)t.push(deepCopy(e[n]));delete e[r];return t}return e}function deepEqual(e,t){if(typeof e!=typeof t)return false;if(e===null||t===null||typeof e!="object")return e===t;if(e.constructor!=t.constructor)return false;var n;for(n in e){if(!t.hasOwnProperty(n))return false;if(!deepEqual(e[n],t[n]))return false}for(n in t){if(!e.hasOwnProperty(n))return false}return true}function isEmpty(e){var t;for(t in e)return false;return true}function hasKey(e,t){r.equal(typeof t,"string");return Object.prototype.hasOwnProperty.call(e,t)}function forEachKey(e,t){for(var n in e){if(hasKey(e,n)){t(n,e[n])}}}function pluck(e,t){r.equal(typeof t,"string");return pluckv(e,t)}function pluckv(e,t){if(e===null||typeof e!=="object")return undefined;if(e.hasOwnProperty(t))return e[t];var n=t.indexOf(".");if(n==-1)return undefined;var r=t.substr(0,n);if(!e.hasOwnProperty(r))return undefined;return pluckv(e[r],t.substr(n+1))}function flattenIter(e,t,n){doFlattenIter(e,t,[],n)}function doFlattenIter(e,t,n,i){var o;var a;if(t===0){o=n.slice(0);o.push(e);i(o);return}r.ok(e!==null);r.equal(typeof e,"object");r.equal(typeof t,"number");r.ok(t>=0);for(a in e){o=n.slice(0);o.push(a);doFlattenIter(e[a],t-1,o,i)}}function flattenObject(e,t){if(t===0)return[e];r.ok(e!==null);r.equal(typeof e,"object");r.equal(typeof t,"number");r.ok(t>=0);var n=[];var i;for(i in e){flattenObject(e[i],t-1).forEach(function(e){n.push([i].concat(e))})}return n}function startsWith(e,t){return e.substr(0,t.length)==t}function endsWith(e,t){return e.substr(e.length-t.length,t.length)==t}function iso8601(e){if(typeof e=="number")e=new Date(e);r.ok(e.constructor===Date);return o.sprintf("%4d-%02d-%02dT%02d:%02d:%02d.%03dZ",e.getUTCFullYear(),e.getUTCMonth()+1,e.getUTCDate(),e.getUTCHours(),e.getUTCMinutes(),e.getUTCSeconds(),e.getUTCMilliseconds())}var c=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];var u=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"];function rfc1123(e){return o.sprintf("%s, %02d %s %04d %02d:%02d:%02d GMT",u[e.getUTCDay()],e.getUTCDate(),c[e.getUTCMonth()],e.getUTCFullYear(),e.getUTCHours(),e.getUTCMinutes(),e.getUTCSeconds())}function parseDateTime(e){var t=+e;if(!isNaN(t)){return new Date(t)}else{return new Date(e)}}var l=Number.MAX_SAFE_INTEGER||9007199254740991;var f=Number.MIN_SAFE_INTEGER||-9007199254740991;var p={base:10,allowSign:true,allowPrefix:false,allowTrailing:false,allowImprecise:false,trimWhitespace:false,leadingZeroIsOctal:false};var d=48;var h=57;var m=65;var v=66;var g=79;var y=84;var b=88;var w=90;var x=97;var k=98;var j=111;var S=116;var E=120;var _=122;var C=48;var A=55;var O=87;function parseInteger(e,t){r.string(e,"str");r.optionalObject(t,"options");var n=false;var i=p;if(t){n=hasKey(t,"base");i=mergeObjects(i,t);r.number(i.base,"options.base");r.ok(i.base>=2,"options.base >= 2");r.ok(i.base<=36,"options.base <= 36");r.bool(i.allowSign,"options.allowSign");r.bool(i.allowPrefix,"options.allowPrefix");r.bool(i.allowTrailing,"options.allowTrailing");r.bool(i.allowImprecise,"options.allowImprecise");r.bool(i.trimWhitespace,"options.trimWhitespace");r.bool(i.leadingZeroIsOctal,"options.leadingZeroIsOctal");if(i.leadingZeroIsOctal){r.ok(!n,'"base" and "leadingZeroIsOctal" are '+"mutually exclusive")}}var o;var a=-1;var s=i.base;var c;var u=1;var d=0;var h=0;var m=e.length;if(i.trimWhitespace){while(h<m&&isSpace(e.charCodeAt(h))){++h}}if(i.allowSign){if(e[h]==="-"){h+=1;u=-1}else if(e[h]==="+"){h+=1}}if(e[h]==="0"){if(i.allowPrefix){a=prefixToBase(e.charCodeAt(h+1));if(a!==-1&&(!n||a===s)){s=a;h+=2}}if(a===-1&&i.leadingZeroIsOctal){s=8}}for(c=h;h<m;++h){o=translateDigit(e.charCodeAt(h));if(o!==-1&&o<s){d*=s;d+=o}else{break}}if(c===h){return new Error("invalid number: "+JSON.stringify(e))}if(i.trimWhitespace){while(h<m&&isSpace(e.charCodeAt(h))){++h}}if(h<m&&!i.allowTrailing){return new Error("trailing characters after number: "+JSON.stringify(e.slice(h)))}if(d===0){return 0}var v=d*u;if(!i.allowImprecise&&(d>l||v<f)){return new Error("number is outside of the supported range: "+JSON.stringify(e.slice(c,h)))}return v}function translateDigit(e){if(e>=d&&e<=h){return e-C}else if(e>=m&&e<=w){return e-A}else if(e>=x&&e<=_){return e-O}else{return-1}}function isSpace(e){return e===32||e>=9&&e<=13||e===160||e===5760||e===6158||e>=8192&&e<=8202||e===8232||e===8233||e===8239||e===8287||e===12288||e===65279}function prefixToBase(e){if(e===k||e===v){return 2}else if(e===j||e===g){return 8}else if(e===S||e===y){return 10}else if(e===E||e===b){return 16}else{return-1}}function validateJsonObjectJS(e,t){var n=s.validate(t,e);if(n.errors.length===0)return null;var r=n.errors[0];var i=r["property"];var o=r["message"].toLowerCase();var c,u;if((c=o.indexOf("the property "))!=-1&&(u=o.indexOf(" is not defined in the schema and the "+"schema does not allow additional properties"))!=-1){c+="the property ".length;if(i==="")i=o.substr(c,u-c);else i=i+"."+o.substr(c,u-c);o="unsupported property"}var l=new a.VError('property "%s": %s',i,o);l.jsv_details=r;return l}function randElt(e){r.ok(Array.isArray(e)&&e.length>0,"randElt argument must be a non-empty array");return e[Math.floor(Math.random()*e.length)]}function assertHrtime(e){r.ok(e[0]>=0&&e[1]>=0,"negative numbers not allowed in hrtimes");r.ok(e[1]<1e9,"nanoseconds column overflow")}function hrtimeDiff(e,t){assertHrtime(e);assertHrtime(t);r.ok(e[0]>t[0]||e[0]==t[0]&&e[1]>=t[1],"negative differences not allowed");var n=[e[0]-t[0],0];if(e[1]>=t[1]){n[1]=e[1]-t[1]}else{n[0]--;n[1]=1e9-(t[1]-e[1])}return n}function hrtimeNanosec(e){assertHrtime(e);return Math.floor(e[0]*1e9+e[1])}function hrtimeMicrosec(e){assertHrtime(e);return Math.floor(e[0]*1e6+e[1]/1e3)}function hrtimeMillisec(e){assertHrtime(e);return Math.floor(e[0]*1e3+e[1]/1e6)}function hrtimeAccum(e,t){assertHrtime(e);assertHrtime(t);e[1]+=t[1];if(e[1]>=1e9){e[0]++;e[1]-=1e9}e[0]+=t[0];return e}function hrtimeAdd(e,t){assertHrtime(e);var n=[e[0],e[1]];return hrtimeAccum(n,t)}function extraProperties(e,t){r.ok(typeof e==="object"&&e!==null,"obj argument must be a non-null object");r.ok(Array.isArray(t),"allowed argument must be an array of strings");for(var n=0;n<t.length;n++){r.ok(typeof t[n]==="string","allowed argument must be an array of strings")}return Object.keys(e).filter(function(e){return t.indexOf(e)===-1})}function mergeObjects(e,t,n){var r,i;r={};if(n){for(i in n)r[i]=n[i]}if(e){for(i in e)r[i]=e[i]}if(t){for(i in t)r[i]=t[i]}return r}},4015:function(e,t,n){e=n.nmd(e);(function(n){var r={function:true,object:true};function checkGlobal(e){return e&&e.Object===Object?e:null}var i=r[typeof t]&&t&&!t.nodeType?t:null;var o=r["object"]&&e&&!e.nodeType?e:null;var a=checkGlobal(i&&o&&typeof global==="object"&&global);var s=checkGlobal(r[typeof self]&&self);var c=checkGlobal(r[typeof window]&&window);var u=o&&o.exports===i?i:null;var l=checkGlobal(r[typeof this]&&this);var f=a||c!==(l&&l.window)&&c||s||l||Function("return this")();var p={internals:{},config:{Promise:f.Promise},helpers:{}};var d=p.helpers.noop=function(){},h=p.helpers.identity=function(e){return e},m=p.helpers.defaultNow=Date.now,v=p.helpers.defaultComparer=function(e,t){return xe(e,t)},g=p.helpers.defaultSubComparer=function(e,t){return e>t?1:e<t?-1:0},y=p.helpers.defaultKeySerializer=function(e){return e.toString()},b=p.helpers.defaultError=function(e){throw e},w=p.helpers.isPromise=function(e){return!!e&&typeof e.subscribe!=="function"&&typeof e.then==="function"},x=p.helpers.isFunction=function(){var e=function(e){return typeof e=="function"||false};if(e(/x/)){e=function(e){return typeof e=="function"&&toString.call(e)=="[object Function]"}}return e}();function cloneArray(e){var t=e.length,n=new Array(t);for(var r=0;r<t;r++){n[r]=e[r]}return n}var k={e:{}};function tryCatcherGen(e){return function tryCatcher(){try{return e.apply(this,arguments)}catch(e){k.e=e;return k}}}var j=p.internals.tryCatch=function tryCatch(e){if(!x(e)){throw new TypeError("fn must be a function")}return tryCatcherGen(e)};function thrower(e){throw e}p.config.longStackSupport=false;var S=false,E=j(function(){throw new Error})();S=!!E.e&&!!E.e.stack;var _=captureLine(),C;var A="From previous event:";function makeStackTraceLong(e,t){if(S&&t.stack&&typeof e==="object"&&e!==null&&e.stack&&e.stack.indexOf(A)===-1){var n=[];for(var r=t;!!r;r=r.source){if(r.stack){n.unshift(r.stack)}}n.unshift(e.stack);var i=n.join("\n"+A+"\n");e.stack=filterStackString(i)}}function filterStackString(e){var t=e.split("\n"),n=[];for(var r=0,i=t.length;r<i;r++){var o=t[r];if(!isInternalFrame(o)&&!isNodeFrame(o)&&o){n.push(o)}}return n.join("\n")}function isInternalFrame(e){var t=getFileNameAndLineNumber(e);if(!t){return false}var n=t[0],r=t[1];return n===C&&r>=_&&r<=Cr}function isNodeFrame(e){return e.indexOf("(module.js:")!==-1||e.indexOf("(node.js:")!==-1}function captureLine(){if(!S){return}try{throw new Error}catch(r){var e=r.stack.split("\n");var t=e[0].indexOf("@")>0?e[1]:e[2];var n=getFileNameAndLineNumber(t);if(!n){return}C=n[0];return n[1]}}function getFileNameAndLineNumber(e){var t=/at .+ \((.+):(\d+):(?:\d+)\)$/.exec(e);if(t){return[t[1],Number(t[2])]}var n=/at ([^ ]+):(\d+):(?:\d+)$/.exec(e);if(n){return[n[1],Number(n[2])]}var r=/.*@(.+):(\d+)$/.exec(e);if(r){return[r[1],Number(r[2])]}}var O=p.EmptyError=function(){this.message="Sequence contains no elements.";Error.call(this)};O.prototype=Object.create(Error.prototype);O.prototype.name="EmptyError";var F=p.ObjectDisposedError=function(){this.message="Object has been disposed";Error.call(this)};F.prototype=Object.create(Error.prototype);F.prototype.name="ObjectDisposedError";var D=p.ArgumentOutOfRangeError=function(){this.message="Argument out of range";Error.call(this)};D.prototype=Object.create(Error.prototype);D.prototype.name="ArgumentOutOfRangeError";var T=p.NotSupportedError=function(e){this.message=e||"This operation is not supported";Error.call(this)};T.prototype=Object.create(Error.prototype);T.prototype.name="NotSupportedError";var I=p.NotImplementedError=function(e){this.message=e||"This operation is not implemented";Error.call(this)};I.prototype=Object.create(Error.prototype);I.prototype.name="NotImplementedError";var R=p.helpers.notImplemented=function(){throw new I};var P=p.helpers.notSupported=function(){throw new T};var B=typeof Symbol==="function"&&Symbol.iterator||"_es6shim_iterator_";if(f.Set&&typeof(new f.Set)["@@iterator"]==="function"){B="@@iterator"}var N=p.doneEnumerator={done:true,value:n};var z=p.helpers.isIterable=function(e){return e&&e[B]!==n};var L=p.helpers.isArrayLike=function(e){return e&&e.length!==n};p.helpers.iterator=B;var M=p.internals.bindCallback=function(e,t,n){if(typeof t==="undefined"){return e}switch(n){case 0:return function(){return e.call(t)};case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,i){return e.call(t,n,r,i)}}return function(){return e.apply(t,arguments)}};var U=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],q=U.length;var H="[object Arguments]",G="[object Array]",W="[object Boolean]",V="[object Date]",J="[object Error]",Y="[object Function]",Z="[object Map]",X="[object Number]",Q="[object Object]",K="[object RegExp]",$="[object Set]",ee="[object String]",te="[object WeakMap]";var ne="[object ArrayBuffer]",re="[object Float32Array]",ie="[object Float64Array]",oe="[object Int8Array]",ae="[object Int16Array]",se="[object Int32Array]",ce="[object Uint8Array]",ue="[object Uint8ClampedArray]",le="[object Uint16Array]",fe="[object Uint32Array]";var pe={};pe[re]=pe[ie]=pe[oe]=pe[ae]=pe[se]=pe[ce]=pe[ue]=pe[le]=pe[fe]=true;pe[H]=pe[G]=pe[ne]=pe[W]=pe[V]=pe[J]=pe[Y]=pe[Z]=pe[X]=pe[Q]=pe[K]=pe[$]=pe[ee]=pe[te]=false;var de=Object.prototype,he=de.hasOwnProperty,me=de.toString,ve=Math.pow(2,53)-1;var ge=Object.keys||function(){var e=Object.prototype.hasOwnProperty,t=!{toString:null}.propertyIsEnumerable("toString"),n=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],r=n.length;return function(i){if(typeof i!=="object"&&(typeof i!=="function"||i===null)){throw new TypeError("Object.keys called on non-object")}var o=[],a,s;for(a in i){if(e.call(i,a)){o.push(a)}}if(t){for(s=0;s<r;s++){if(e.call(i,n[s])){o.push(n[s])}}}return o}}();function equalObjects(e,t,r,i,o,a){var s=ge(e),c=s.length,u=ge(t),l=u.length;if(c!==l&&!i){return false}var f=c,p;while(f--){p=s[f];if(!(i?p in t:he.call(t,p))){return false}}var d=i;while(++f<c){p=s[f];var h=e[p],m=t[p],v;if(!(v===n?r(h,m,i,o,a):v)){return false}d||(d=p==="constructor")}if(!d){var g=e.constructor,y=t.constructor;if(g!==y&&("constructor"in e&&"constructor"in t)&&!(typeof g==="function"&&g instanceof g&&typeof y==="function"&&y instanceof y)){return false}}return true}function equalByTag(e,t,n){switch(n){case W:case V:return+e===+t;case J:return e.name===t.name&&e.message===t.message;case X:return e!==+e?t!==+t:e===+t;case K:case ee:return e===t+""}return false}var ye=p.internals.isObject=function(e){var t=typeof e;return!!e&&(t==="object"||t==="function")};function isObjectLike(e){return!!e&&typeof e==="object"}function isLength(e){return typeof e==="number"&&e>-1&&e%1===0&&e<=ve}var be=function(){try{Object({toString:0}+"")}catch(e){return function(){return false}}return function(e){return typeof e.toString!=="function"&&typeof(e+"")==="string"}}();function isTypedArray(e){return isObjectLike(e)&&isLength(e.length)&&!!pe[me.call(e)]}var we=Array.isArray||function(e){return isObjectLike(e)&&isLength(e.length)&&me.call(e)===G};function arraySome(e,t){var n=-1,r=e.length;while(++n<r){if(t(e[n],n,e)){return true}}return false}function equalArrays(e,t,r,i,o,a){var s=-1,c=e.length,u=t.length;if(c!==u&&!(i&&u>c)){return false}while(++s<c){var l=e[s],f=t[s],p;if(p!==n){if(p){continue}return false}if(i){if(!arraySome(t,function(e){return l===e||r(l,e,i,o,a)})){return false}}else if(!(l===f||r(l,f,i,o,a))){return false}}return true}function baseIsEqualDeep(e,t,n,r,i,o){var a=we(e),s=we(t),c=G,u=G;if(!a){c=me.call(e);if(c===H){c=Q}else if(c!==Q){a=isTypedArray(e)}}if(!s){u=me.call(t);if(u===H){u=Q}}var l=c===Q&&!be(e),f=u===Q&&!be(t),p=c===u;if(p&&!(a||l)){return equalByTag(e,t,c)}if(!r){var d=l&&he.call(e,"__wrapped__"),h=f&&he.call(t,"__wrapped__");if(d||h){return n(d?e.value():e,h?t.value():t,r,i,o)}}if(!p){return false}i||(i=[]);o||(o=[]);var m=i.length;while(m--){if(i[m]===e){return o[m]===t}}i.push(e);o.push(t);var v=(a?equalArrays:equalObjects)(e,t,n,r,i,o);i.pop();o.pop();return v}function baseIsEqual(e,t,n,r,i){if(e===t){return true}if(e==null||t==null||!ye(e)&&!isObjectLike(t)){return e!==e&&t!==t}return baseIsEqualDeep(e,t,baseIsEqual,n,r,i)}var xe=p.internals.isEqual=function(e,t){return baseIsEqual(e,t)};var ke={}.hasOwnProperty,je=Array.prototype.slice;var Se=p.internals.inherits=function(e,t){function __(){this.constructor=e}__.prototype=t.prototype;e.prototype=new __};var Ee=p.internals.addProperties=function(e){for(var t=[],n=1,r=arguments.length;n<r;n++){t.push(arguments[n])}for(var i=0,o=t.length;i<o;i++){var a=t[i];for(var s in a){e[s]=a[s]}}};var _e=p.internals.addRef=function(e,t){return new br(function(n){return new Ne(t.getDisposable(),e.subscribe(n))})};function arrayInitialize(e,t){var n=new Array(e);for(var r=0;r<e;r++){n[r]=t()}return n}var Ce=p.CompositeDisposable=function(){var e=[],t,n;if(Array.isArray(arguments[0])){e=arguments[0]}else{n=arguments.length;e=new Array(n);for(t=0;t<n;t++){e[t]=arguments[t]}}this.disposables=e;this.isDisposed=false;this.length=e.length};var Ae=Ce.prototype;Ae.add=function(e){if(this.isDisposed){e.dispose()}else{this.disposables.push(e);this.length++}};Ae.remove=function(e){var t=false;if(!this.isDisposed){var n=this.disposables.indexOf(e);if(n!==-1){t=true;this.disposables.splice(n,1);this.length--;e.dispose()}}return t};Ae.dispose=function(){if(!this.isDisposed){this.isDisposed=true;var e=this.disposables.length,t=new Array(e);for(var n=0;n<e;n++){t[n]=this.disposables[n]}this.disposables=[];this.length=0;for(n=0;n<e;n++){t[n].dispose()}}};var Oe=p.Disposable=function(e){this.isDisposed=false;this.action=e||d};Oe.prototype.dispose=function(){if(!this.isDisposed){this.action();this.isDisposed=true}};var Fe=Oe.create=function(e){return new Oe(e)};var De=Oe.empty={dispose:d};var Te=Oe.isDisposable=function(e){return e&&x(e.dispose)};var Ie=Oe.checkDisposed=function(e){if(e.isDisposed){throw new F}};var Re=Oe._fixup=function(e){return Te(e)?e:De};var Pe=p.SingleAssignmentDisposable=function(){this.isDisposed=false;this.current=null};Pe.prototype.getDisposable=function(){return this.current};Pe.prototype.setDisposable=function(e){if(this.current){throw new Error("Disposable has already been assigned")}var t=this.isDisposed;!t&&(this.current=e);t&&e&&e.dispose()};Pe.prototype.dispose=function(){if(!this.isDisposed){this.isDisposed=true;var e=this.current;this.current=null;e&&e.dispose()}};var Be=p.SerialDisposable=function(){this.isDisposed=false;this.current=null};Be.prototype.getDisposable=function(){return this.current};Be.prototype.setDisposable=function(e){var t=this.isDisposed;if(!t){var n=this.current;this.current=e}n&&n.dispose();t&&e&&e.dispose()};Be.prototype.dispose=function(){if(!this.isDisposed){this.isDisposed=true;var e=this.current;this.current=null}e&&e.dispose()};var Ne=p.BinaryDisposable=function(e,t){this._first=e;this._second=t;this.isDisposed=false};Ne.prototype.dispose=function(){if(!this.isDisposed){this.isDisposed=true;var e=this._first;this._first=null;e&&e.dispose();var t=this._second;this._second=null;t&&t.dispose()}};var ze=p.NAryDisposable=function(e){this._disposables=e;this.isDisposed=false};ze.prototype.dispose=function(){if(!this.isDisposed){this.isDisposed=true;for(var e=0,t=this._disposables.length;e<t;e++){this._disposables[e].dispose()}this._disposables.length=0}};var Le=p.RefCountDisposable=function(){function InnerDisposable(e){this.disposable=e;this.disposable.count++;this.isInnerDisposed=false}InnerDisposable.prototype.dispose=function(){if(!this.disposable.isDisposed&&!this.isInnerDisposed){this.isInnerDisposed=true;this.disposable.count--;if(this.disposable.count===0&&this.disposable.isPrimaryDisposed){this.disposable.isDisposed=true;this.disposable.underlyingDisposable.dispose()}}};function RefCountDisposable(e){this.underlyingDisposable=e;this.isDisposed=false;this.isPrimaryDisposed=false;this.count=0}RefCountDisposable.prototype.dispose=function(){if(!this.isDisposed&&!this.isPrimaryDisposed){this.isPrimaryDisposed=true;if(this.count===0){this.isDisposed=true;this.underlyingDisposable.dispose()}}};RefCountDisposable.prototype.getDisposable=function(){return this.isDisposed?De:new InnerDisposable(this)};return RefCountDisposable}();var Me=p.internals.ScheduledItem=function(e,t,n,r,i){this.scheduler=e;this.state=t;this.action=n;this.dueTime=r;this.comparer=i||g;this.disposable=new Pe};Me.prototype.invoke=function(){this.disposable.setDisposable(this.invokeCore())};Me.prototype.compareTo=function(e){return this.comparer(this.dueTime,e.dueTime)};Me.prototype.isCancelled=function(){return this.disposable.isDisposed};Me.prototype.invokeCore=function(){return Re(this.action(this.scheduler,this.state))};var Ue=p.Scheduler=function(){function Scheduler(){}Scheduler.isScheduler=function(e){return e instanceof Scheduler};var e=Scheduler.prototype;e.schedule=function(e,t){throw new I};e.scheduleFuture=function(e,t,n){var r=t;r instanceof Date&&(r=r-this.now());r=Scheduler.normalize(r);if(r===0){return this.schedule(e,n)}return this._scheduleFuture(e,r,n)};e._scheduleFuture=function(e,t,n){throw new I};Scheduler.now=m;Scheduler.prototype.now=m;Scheduler.normalize=function(e){e<0&&(e=0);return e};return Scheduler}();var qe=Ue.normalize,He=Ue.isScheduler;(function(e){function invokeRecImmediate(e,t){var n=t[0],r=t[1],i=new Ce;r(n,innerAction);return i;function innerAction(t){var n=false,o=false;var a=e.schedule(t,scheduleWork);if(!o){i.add(a);n=true}function scheduleWork(e,t){if(n){i.remove(a)}else{o=true}r(t,innerAction);return De}}}function invokeRecDate(e,t){var n=t[0],r=t[1],i=new Ce;r(n,innerAction);return i;function innerAction(t,n){var o=false,a=false;var s=e.scheduleFuture(t,n,scheduleWork);if(!a){i.add(s);o=true}function scheduleWork(e,t){if(o){i.remove(s)}else{a=true}r(t,innerAction);return De}}}e.scheduleRecursive=function(e,t){return this.schedule([e,t],invokeRecImmediate)};e.scheduleRecursiveFuture=function(e,t,n){return this.scheduleFuture([e,n],t,invokeRecDate)}})(Ue.prototype);(function(e){e.schedulePeriodic=function(e,t,n){if(typeof f.setInterval==="undefined"){throw new T}t=qe(t);var r=e,i=f.setInterval(function(){r=n(r)},t);return Fe(function(){f.clearInterval(i)})}})(Ue.prototype);var Ge=function(e){Se(ImmediateScheduler,e);function ImmediateScheduler(){e.call(this)}ImmediateScheduler.prototype.schedule=function(e,t){return Re(t(this,e))};return ImmediateScheduler}(Ue);var We=Ue.immediate=new Ge;var Ve=function(e){var t;function runTrampoline(){while(t.length>0){var e=t.dequeue();!e.isCancelled()&&e.invoke()}}Se(CurrentThreadScheduler,e);function CurrentThreadScheduler(){e.call(this)}CurrentThreadScheduler.prototype.schedule=function(e,n){var r=new Me(this,e,n,this.now());if(!t){t=new nt(4);t.enqueue(r);var i=j(runTrampoline)();t=null;if(i===k){thrower(i.e)}}else{t.enqueue(r)}return r.disposable};CurrentThreadScheduler.prototype.scheduleRequired=function(){return!t};return CurrentThreadScheduler}(Ue);var Je=Ue.currentThread=new Ve;var Ye=p.internals.SchedulePeriodicRecursive=function(){function createTick(e){return function tick(t,n){n(0,e._period);var r=j(e._action)(e._state);if(r===k){e._cancel.dispose();thrower(r.e)}e._state=r}}function SchedulePeriodicRecursive(e,t,n,r){this._scheduler=e;this._state=t;this._period=n;this._action=r}SchedulePeriodicRecursive.prototype.start=function(){var e=new Pe;this._cancel=e;e.setDisposable(this._scheduler.scheduleRecursiveFuture(0,this._period,createTick(this)));return e};return SchedulePeriodicRecursive}();var Ze,Xe;var Qe=function(){var e,t=d;if(!!f.setTimeout){e=f.setTimeout;t=f.clearTimeout}else if(!!f.WScript){e=function(e,t){f.WScript.Sleep(t);e()}}else{throw new T}return{setTimeout:e,clearTimeout:t}}();var Ke=Qe.setTimeout,$e=Qe.clearTimeout;(function(){var e=1,t={},n=false;Xe=function(e){delete t[e]};function runTask(e){if(n){Ke(function(){runTask(e)},0)}else{var r=t[e];if(r){n=true;var i=j(r)();Xe(e);n=false;if(i===k){thrower(i.e)}}}}var r=new RegExp("^"+String(toString).replace(/[.*+?^${}()|[\]\\]/g,"\\$&").replace(/toString| for [^\]]+/g,".*?")+"$");var i=typeof(i=a&&u&&a.setImmediate)=="function"&&!r.test(i)&&i;function postMessageSupported(){if(!f.postMessage||f.importScripts){return false}var e=false,t=f.onmessage;f.onmessage=function(){e=true};f.postMessage("","*");f.onmessage=t;return e}if(x(i)){Ze=function(n){var r=e++;t[r]=n;i(function(){runTask(r)});return r}}else if(typeof process!=="undefined"&&{}.toString.call(process)==="[object process]"){Ze=function(n){var r=e++;t[r]=n;process.nextTick(function(){runTask(r)});return r}}else if(postMessageSupported()){var o="ms.rx.schedule"+Math.random();var s=function(e){if(typeof e.data==="string"&&e.data.substring(0,o.length)===o){runTask(e.data.substring(o.length))}};f.addEventListener("message",s,false);Ze=function(n){var r=e++;t[r]=n;f.postMessage(o+r,"*");return r}}else if(!!f.MessageChannel){var c=new f.MessageChannel;c.port1.onmessage=function(e){runTask(e.data)};Ze=function(n){var r=e++;t[r]=n;c.port2.postMessage(r);return r}}else if("document"in f&&"onreadystatechange"in f.document.createElement("script")){Ze=function(n){var r=f.document.createElement("script");var i=e++;t[i]=n;r.onreadystatechange=function(){runTask(i);r.onreadystatechange=null;r.parentNode.removeChild(r);r=null};f.document.documentElement.appendChild(r);return i}}else{Ze=function(n){var r=e++;t[r]=n;Ke(function(){runTask(r)},0);return r}}})();var et=function(e){Se(DefaultScheduler,e);function DefaultScheduler(){e.call(this)}function scheduleAction(e,t,n,r){return function schedule(){e.setDisposable(Oe._fixup(t(n,r)))}}function ClearDisposable(e){this._id=e;this.isDisposed=false}ClearDisposable.prototype.dispose=function(){if(!this.isDisposed){this.isDisposed=true;Xe(this._id)}};function LocalClearDisposable(e){this._id=e;this.isDisposed=false}LocalClearDisposable.prototype.dispose=function(){if(!this.isDisposed){this.isDisposed=true;$e(this._id)}};DefaultScheduler.prototype.schedule=function(e,t){var n=new Pe,r=Ze(scheduleAction(n,t,this,e));return new Ne(n,new ClearDisposable(r))};DefaultScheduler.prototype._scheduleFuture=function(e,t,n){if(t===0){return this.schedule(e,n)}var r=new Pe,i=Ke(scheduleAction(r,n,this,e),t);return new Ne(r,new LocalClearDisposable(i))};return DefaultScheduler}(Ue);var tt=Ue["default"]=Ue.async=new et;function IndexedItem(e,t){this.id=e;this.value=t}IndexedItem.prototype.compareTo=function(e){var t=this.value.compareTo(e.value);t===0&&(t=this.id-e.id);return t};var nt=p.internals.PriorityQueue=function(e){this.items=new Array(e);this.length=0};var rt=nt.prototype;rt.isHigherPriority=function(e,t){return this.items[e].compareTo(this.items[t])<0};rt.percolate=function(e){if(e>=this.length||e<0){return}var t=e-1>>1;if(t<0||t===e){return}if(this.isHigherPriority(e,t)){var n=this.items[e];this.items[e]=this.items[t];this.items[t]=n;this.percolate(t)}};rt.heapify=function(e){+e||(e=0);if(e>=this.length||e<0){return}var t=2*e+1,n=2*e+2,r=e;if(t<this.length&&this.isHigherPriority(t,r)){r=t}if(n<this.length&&this.isHigherPriority(n,r)){r=n}if(r!==e){var i=this.items[e];this.items[e]=this.items[r];this.items[r]=i;this.heapify(r)}};rt.peek=function(){return this.items[0].value};rt.removeAt=function(e){this.items[e]=this.items[--this.length];this.items[this.length]=n;this.heapify()};rt.dequeue=function(){var e=this.peek();this.removeAt(0);return e};rt.enqueue=function(e){var t=this.length++;this.items[t]=new IndexedItem(nt.count++,e);this.percolate(t)};rt.remove=function(e){for(var t=0;t<this.length;t++){if(this.items[t].value===e){this.removeAt(t);return true}}return false};nt.count=0;var it=p.Notification=function(){function Notification(){}Notification.prototype._accept=function(e,t,n){throw new I};Notification.prototype._acceptObserver=function(e,t,n){throw new I};Notification.prototype.accept=function(e,t,n){return e&&typeof e==="object"?this._acceptObserver(e):this._accept(e,t,n)};Notification.prototype.toObservable=function(e){var t=this;He(e)||(e=We);return new br(function(n){return e.schedule(t,function(e,t){t._acceptObserver(n);t.kind==="N"&&n.onCompleted()})})};return Notification}();var ot=function(e){Se(OnNextNotification,e);function OnNextNotification(e){this.value=e;this.kind="N"}OnNextNotification.prototype._accept=function(e){return e(this.value)};OnNextNotification.prototype._acceptObserver=function(e){return e.onNext(this.value)};OnNextNotification.prototype.toString=function(){return"OnNext("+this.value+")"};return OnNextNotification}(it);var at=function(e){Se(OnErrorNotification,e);function OnErrorNotification(e){this.error=e;this.kind="E"}OnErrorNotification.prototype._accept=function(e,t){return t(this.error)};OnErrorNotification.prototype._acceptObserver=function(e){return e.onError(this.error)};OnErrorNotification.prototype.toString=function(){return"OnError("+this.error+")"};return OnErrorNotification}(it);var st=function(e){Se(OnCompletedNotification,e);function OnCompletedNotification(){this.kind="C"}OnCompletedNotification.prototype._accept=function(e,t,n){return n()};OnCompletedNotification.prototype._acceptObserver=function(e){return e.onCompleted()};OnCompletedNotification.prototype.toString=function(){return"OnCompleted()"};return OnCompletedNotification}(it);var ct=it.createOnNext=function(e){return new ot(e)};var ut=it.createOnError=function(e){return new at(e)};var lt=it.createOnCompleted=function(){return new st};var ft=p.Observer=function(){};var pt=ft.create=function(e,t,n){e||(e=d);t||(t=b);n||(n=d);return new ht(e,t,n)};var dt=p.internals.AbstractObserver=function(e){Se(AbstractObserver,e);function AbstractObserver(){this.isStopped=false}AbstractObserver.prototype.next=R;AbstractObserver.prototype.error=R;AbstractObserver.prototype.completed=R;AbstractObserver.prototype.onNext=function(e){!this.isStopped&&this.next(e)};AbstractObserver.prototype.onError=function(e){if(!this.isStopped){this.isStopped=true;this.error(e)}};AbstractObserver.prototype.onCompleted=function(){if(!this.isStopped){this.isStopped=true;this.completed()}};AbstractObserver.prototype.dispose=function(){this.isStopped=true};AbstractObserver.prototype.fail=function(e){if(!this.isStopped){this.isStopped=true;this.error(e);return true}return false};return AbstractObserver}(ft);var ht=p.AnonymousObserver=function(e){Se(AnonymousObserver,e);function AnonymousObserver(t,n,r){e.call(this);this._onNext=t;this._onError=n;this._onCompleted=r}AnonymousObserver.prototype.next=function(e){this._onNext(e)};AnonymousObserver.prototype.error=function(e){this._onError(e)};AnonymousObserver.prototype.completed=function(){this._onCompleted()};return AnonymousObserver}(dt);var mt;var vt=p.Observable=function(){function makeSubscribe(e,t){return function(n){var r=n.onError;n.onError=function(t){makeStackTraceLong(t,e);r.call(n,t)};return t.call(e,n)}}function Observable(){if(p.config.longStackSupport&&S){var e=this._subscribe;var t=j(thrower)(new Error).e;this.stack=t.stack.substring(t.stack.indexOf("\n")+1);this._subscribe=makeSubscribe(this,e)}}mt=Observable.prototype;Observable.isObservable=function(e){return e&&x(e.subscribe)};mt.subscribe=mt.forEach=function(e,t,n){return this._subscribe(typeof e==="object"?e:pt(e,t,n))};mt.subscribeOnNext=function(e,t){return this._subscribe(pt(typeof t!=="undefined"?function(n){e.call(t,n)}:e))};mt.subscribeOnError=function(e,t){return this._subscribe(pt(null,typeof t!=="undefined"?function(n){e.call(t,n)}:e))};mt.subscribeOnCompleted=function(e,t){return this._subscribe(pt(null,null,typeof t!=="undefined"?function(){e.call(t)}:e))};return Observable}();var gt=p.internals.ScheduledObserver=function(e){Se(ScheduledObserver,e);function ScheduledObserver(t,n){e.call(this);this.scheduler=t;this.observer=n;this.isAcquired=false;this.hasFaulted=false;this.queue=[];this.disposable=new Be}function enqueueNext(e,t){return function(){e.onNext(t)}}function enqueueError(e,t){return function(){e.onError(t)}}function enqueueCompleted(e){return function(){e.onCompleted()}}ScheduledObserver.prototype.next=function(e){this.queue.push(enqueueNext(this.observer,e))};ScheduledObserver.prototype.error=function(e){this.queue.push(enqueueError(this.observer,e))};ScheduledObserver.prototype.completed=function(){this.queue.push(enqueueCompleted(this.observer))};function scheduleMethod(e,t){var n;if(e.queue.length>0){n=e.queue.shift()}else{e.isAcquired=false;return}var r=j(n)();if(r===k){e.queue=[];e.hasFaulted=true;return thrower(r.e)}t(e)}ScheduledObserver.prototype.ensureActive=function(){var e=false;if(!this.hasFaulted&&this.queue.length>0){e=!this.isAcquired;this.isAcquired=true}e&&this.disposable.setDisposable(this.scheduler.scheduleRecursive(this,scheduleMethod))};ScheduledObserver.prototype.dispose=function(){e.prototype.dispose.call(this);this.disposable.dispose()};return ScheduledObserver}(dt);var yt=p.ObservableBase=function(e){Se(ObservableBase,e);function fixSubscriber(e){return e&&x(e.dispose)?e:x(e)?Fe(e):De}function setDisposable(e,t){var n=t[0],r=t[1];var i=j(r.subscribeCore).call(r,n);if(i===k&&!n.fail(k.e)){thrower(k.e)}n.setDisposable(fixSubscriber(i))}function ObservableBase(){e.call(this)}ObservableBase.prototype._subscribe=function(e){var t=new wr(e),n=[t,this];if(Je.scheduleRequired()){Je.schedule(n,setDisposable)}else{setDisposable(null,n)}return t};ObservableBase.prototype.subscribeCore=R;return ObservableBase}(vt);var bt=p.FlatMapObservable=function(e){Se(FlatMapObservable,e);function FlatMapObservable(t,n,r,i){this.resultSelector=x(r)?r:null;this.selector=M(x(n)?n:function(){return n},i,3);this.source=t;e.call(this)}FlatMapObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new InnerObserver(e,this.selector,this.resultSelector,this))};Se(InnerObserver,dt);function InnerObserver(e,t,n,r){this.i=0;this.selector=t;this.resultSelector=n;this.source=r;this.o=e;dt.call(this)}InnerObserver.prototype._wrapResult=function(e,t,n){return this.resultSelector?e.map(function(e,r){return this.resultSelector(t,e,n,r)},this):e};InnerObserver.prototype.next=function(e){var t=this.i++;var n=j(this.selector)(e,t,this.source);if(n===k){return this.o.onError(n.e)}w(n)&&(n=$n(n));(L(n)||z(n))&&(n=vt.from(n));this.o.onNext(this._wrapResult(n,e,t))};InnerObserver.prototype.error=function(e){this.o.onError(e)};InnerObserver.prototype.completed=function(){this.o.onCompleted()};return FlatMapObservable}(yt);var wt=p.internals.Enumerable=function(){};function IsDisposedDisposable(e){this._s=e;this.isDisposed=false}IsDisposedDisposable.prototype.dispose=function(){if(!this.isDisposed){this.isDisposed=true;this._s.isDisposed=true}};var xt=function(e){Se(ConcatEnumerableObservable,e);function ConcatEnumerableObservable(t){this.sources=t;e.call(this)}function scheduleMethod(e,t){if(e.isDisposed){return}var n=j(e.e.next).call(e.e);if(n===k){return e.o.onError(n.e)}if(n.done){return e.o.onCompleted()}var r=n.value;w(r)&&(r=$n(r));var i=new Pe;e.subscription.setDisposable(i);i.setDisposable(r.subscribe(new InnerObserver(e,t)))}ConcatEnumerableObservable.prototype.subscribeCore=function(e){var t=new Be;var n={isDisposed:false,o:e,subscription:t,e:this.sources[B]()};var r=Je.scheduleRecursive(n,scheduleMethod);return new ze([t,r,new IsDisposedDisposable(n)])};function InnerObserver(e,t){this._state=e;this._recurse=t;dt.call(this)}Se(InnerObserver,dt);InnerObserver.prototype.next=function(e){this._state.o.onNext(e)};InnerObserver.prototype.error=function(e){this._state.o.onError(e)};InnerObserver.prototype.completed=function(){this._recurse(this._state)};return ConcatEnumerableObservable}(yt);wt.prototype.concat=function(){return new xt(this)};var kt=function(e){function CatchErrorObservable(t){this.sources=t;e.call(this)}Se(CatchErrorObservable,e);function scheduleMethod(e,t){if(e.isDisposed){return}var n=j(e.e.next).call(e.e);if(n===k){return e.o.onError(n.e)}if(n.done){return e.lastError!==null?e.o.onError(e.lastError):e.o.onCompleted()}var r=n.value;w(r)&&(r=$n(r));var i=new Pe;e.subscription.setDisposable(i);i.setDisposable(r.subscribe(new InnerObserver(e,t)))}CatchErrorObservable.prototype.subscribeCore=function(e){var t=new Be;var n={isDisposed:false,e:this.sources[B](),subscription:t,lastError:null,o:e};var r=Je.scheduleRecursive(n,scheduleMethod);return new ze([t,r,new IsDisposedDisposable(n)])};function InnerObserver(e,t){this._state=e;this._recurse=t;dt.call(this)}Se(InnerObserver,dt);InnerObserver.prototype.next=function(e){this._state.o.onNext(e)};InnerObserver.prototype.error=function(e){this._state.lastError=e;this._recurse(this._state)};InnerObserver.prototype.completed=function(){this._state.o.onCompleted()};return CatchErrorObservable}(yt);wt.prototype.catchError=function(){return new kt(this)};var jt=function(e){Se(RepeatEnumerable,e);function RepeatEnumerable(e,t){this.v=e;this.c=t==null?-1:t}RepeatEnumerable.prototype[B]=function(){return new RepeatEnumerator(this)};function RepeatEnumerator(e){this.v=e.v;this.l=e.c}RepeatEnumerator.prototype.next=function(){if(this.l===0){return N}if(this.l>0){this.l--}return{done:false,value:this.v}};return RepeatEnumerable}(wt);var St=wt.repeat=function(e,t){return new jt(e,t)};var Et=function(e){Se(OfEnumerable,e);function OfEnumerable(e,t,n){this.s=e;this.fn=t?M(t,n,3):null}OfEnumerable.prototype[B]=function(){return new OfEnumerator(this)};function OfEnumerator(e){this.i=-1;this.s=e.s;this.l=this.s.length;this.fn=e.fn}OfEnumerator.prototype.next=function(){return++this.i<this.l?{done:false,value:!this.fn?this.s[this.i]:this.fn(this.s[this.i],this.i,this.s)}:N};return OfEnumerable}(wt);var _t=wt.of=function(e,t,n){return new Et(e,t,n)};var Ct=function(e){Se(ToArrayObservable,e);function ToArrayObservable(t){this.source=t;e.call(this)}ToArrayObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new InnerObserver(e))};Se(InnerObserver,dt);function InnerObserver(e){this.o=e;this.a=[];dt.call(this)}InnerObserver.prototype.next=function(e){this.a.push(e)};InnerObserver.prototype.error=function(e){this.o.onError(e)};InnerObserver.prototype.completed=function(){this.o.onNext(this.a);this.o.onCompleted()};return ToArrayObservable}(yt);mt.toArray=function(){return new Ct(this)};vt.create=function(e,t){return new br(e,t)};var At=function(e){Se(Defer,e);function Defer(t){this._f=t;e.call(this)}Defer.prototype.subscribeCore=function(e){var t=j(this._f)();if(t===k){return Jt(t.e).subscribe(e)}w(t)&&(t=$n(t));return t.subscribe(e)};return Defer}(yt);var Ot=vt.defer=function(e){return new At(e)};var Ft=function(e){Se(EmptyObservable,e);function EmptyObservable(t){this.scheduler=t;e.call(this)}EmptyObservable.prototype.subscribeCore=function(e){var t=new EmptySink(e,this.scheduler);return t.run()};function EmptySink(e,t){this.observer=e;this.scheduler=t}function scheduleItem(e,t){t.onCompleted();return De}EmptySink.prototype.run=function(){var e=this.observer;return this.scheduler===We?scheduleItem(null,e):this.scheduler.schedule(e,scheduleItem)};return EmptyObservable}(yt);var Dt=new Ft(We);var Tt=vt.empty=function(e){He(e)||(e=We);return e===We?Dt:new Ft(e)};var It=function(e){Se(FromObservable,e);function FromObservable(t,n,r){this._iterable=t;this._fn=n;this._scheduler=r;e.call(this)}function createScheduleMethod(e,t,n){return function loopRecursive(r,i){var o=j(t.next).call(t);if(o===k){return e.onError(o.e)}if(o.done){return e.onCompleted()}var a=o.value;if(x(n)){a=j(n)(a,r);if(a===k){return e.onError(a.e)}}e.onNext(a);i(r+1)}}FromObservable.prototype.subscribeCore=function(e){var t=Object(this._iterable),n=getIterable(t);return this._scheduler.scheduleRecursive(0,createScheduleMethod(e,n,this._fn))};return FromObservable}(yt);var Rt=Math.pow(2,53)-1;function StringIterable(e){this._s=e}StringIterable.prototype[B]=function(){return new StringIterator(this._s)};function StringIterator(e){this._s=e;this._l=e.length;this._i=0}StringIterator.prototype[B]=function(){return this};StringIterator.prototype.next=function(){return this._i<this._l?{done:false,value:this._s.charAt(this._i++)}:N};function ArrayIterable(e){this._a=e}ArrayIterable.prototype[B]=function(){return new ArrayIterator(this._a)};function ArrayIterator(e){this._a=e;this._l=toLength(e);this._i=0}ArrayIterator.prototype[B]=function(){return this};ArrayIterator.prototype.next=function(){return this._i<this._l?{done:false,value:this._a[this._i++]}:N};function numberIsFinite(e){return typeof e==="number"&&f.isFinite(e)}function isNan(e){return e!==e}function getIterable(e){var t=e[B],r;if(!t&&typeof e==="string"){r=new StringIterable(e);return r[B]()}if(!t&&e.length!==n){r=new ArrayIterable(e);return r[B]()}if(!t){throw new TypeError("Object is not iterable")}return e[B]()}function sign(e){var t=+e;if(t===0){return t}if(isNaN(t)){return t}return t<0?-1:1}function toLength(e){var t=+e.length;if(isNaN(t)){return 0}if(t===0||!numberIsFinite(t)){return t}t=sign(t)*Math.floor(Math.abs(t));if(t<=0){return 0}if(t>Rt){return Rt}return t}var Pt=vt.from=function(e,t,n,r){if(e==null){throw new Error("iterable cannot be null.")}if(t&&!x(t)){throw new Error("mapFn when provided must be a function")}if(t){var i=M(t,n,2)}He(r)||(r=Je);return new It(e,i,r)};var Bt=function(e){Se(FromArrayObservable,e);function FromArrayObservable(t,n){this._args=t;this._scheduler=n;e.call(this)}function scheduleMethod(e,t){var n=t.length;return function loopRecursive(r,i){if(r<n){e.onNext(t[r]);i(r+1)}else{e.onCompleted()}}}FromArrayObservable.prototype.subscribeCore=function(e){return this._scheduler.scheduleRecursive(0,scheduleMethod(e,this._args))};return FromArrayObservable}(yt);var Nt=vt.fromArray=function(e,t){He(t)||(t=Je);return new Bt(e,t)};var zt=function(e){Se(NeverObservable,e);function NeverObservable(){e.call(this)}NeverObservable.prototype.subscribeCore=function(e){return De};return NeverObservable}(yt);var Lt=new zt;var Mt=vt.never=function(){return Lt};function observableOf(e,t){He(e)||(e=Je);return new Bt(t,e)}vt.of=function(){var e=arguments.length,t=new Array(e);for(var n=0;n<e;n++){t[n]=arguments[n]}return new Bt(t,Je)};vt.ofWithScheduler=function(e){var t=arguments.length,n=new Array(t-1);for(var r=1;r<t;r++){n[r-1]=arguments[r]}return new Bt(n,e)};var Ut=function(e){Se(PairsObservable,e);function PairsObservable(t,n){this._o=t;this._keys=Object.keys(t);this._scheduler=n;e.call(this)}function scheduleMethod(e,t,n){return function loopRecursive(r,i){if(r<n.length){var o=n[r];e.onNext([o,t[o]]);i(r+1)}else{e.onCompleted()}}}PairsObservable.prototype.subscribeCore=function(e){return this._scheduler.scheduleRecursive(0,scheduleMethod(e,this._o,this._keys))};return PairsObservable}(yt);vt.pairs=function(e,t){t||(t=Je);return new Ut(e,t)};var qt=function(e){Se(RangeObservable,e);function RangeObservable(t,n,r){this.start=t;this.rangeCount=n;this.scheduler=r;e.call(this)}function loopRecursive(e,t,n){return function loop(r,i){if(r<t){n.onNext(e+r);i(r+1)}else{n.onCompleted()}}}RangeObservable.prototype.subscribeCore=function(e){return this.scheduler.scheduleRecursive(0,loopRecursive(this.start,this.rangeCount,e))};return RangeObservable}(yt);vt.range=function(e,t,n){He(n)||(n=Je);return new qt(e,t,n)};var Ht=function(e){Se(RepeatObservable,e);function RepeatObservable(t,n,r){this.value=t;this.repeatCount=n==null?-1:n;this.scheduler=r;e.call(this)}RepeatObservable.prototype.subscribeCore=function(e){var t=new RepeatSink(e,this);return t.run()};return RepeatObservable}(yt);function RepeatSink(e,t){this.observer=e;this.parent=t}RepeatSink.prototype.run=function(){var e=this.observer,t=this.parent.value;function loopRecursive(n,r){if(n===-1||n>0){e.onNext(t);n>0&&n--}if(n===0){return e.onCompleted()}r(n)}return this.parent.scheduler.scheduleRecursive(this.parent.repeatCount,loopRecursive)};vt.repeat=function(e,t,n){He(n)||(n=Je);return new Ht(e,t,n)};var Gt=function(e){Se(JustObservable,e);function JustObservable(t,n){this._value=t;this._scheduler=n;e.call(this)}JustObservable.prototype.subscribeCore=function(e){var t=[this._value,e];return this._scheduler===We?scheduleItem(null,t):this._scheduler.schedule(t,scheduleItem)};function scheduleItem(e,t){var n=t[0],r=t[1];r.onNext(n);r.onCompleted();return De}return JustObservable}(yt);var Wt=vt["return"]=vt.just=function(e,t){He(t)||(t=We);return new Gt(e,t)};var Vt=function(e){Se(ThrowObservable,e);function ThrowObservable(t,n){this._error=t;this._scheduler=n;e.call(this)}ThrowObservable.prototype.subscribeCore=function(e){var t=[this._error,e];return this._scheduler===We?scheduleItem(null,t):this._scheduler.schedule(t,scheduleItem)};function scheduleItem(e,t){var n=t[0],r=t[1];r.onError(n);return De}return ThrowObservable}(yt);var Jt=vt["throw"]=function(e,t){He(t)||(t=We);return new Vt(e,t)};var Yt=function(e){Se(CatchObservable,e);function CatchObservable(t,n){this.source=t;this._fn=n;e.call(this)}CatchObservable.prototype.subscribeCore=function(e){var t=new Pe,n=new Be;n.setDisposable(t);t.setDisposable(this.source.subscribe(new Zt(e,n,this._fn)));return n};return CatchObservable}(yt);var Zt=function(e){Se(CatchObserver,e);function CatchObserver(t,n,r){this._o=t;this._s=n;this._fn=r;e.call(this)}CatchObserver.prototype.next=function(e){this._o.onNext(e)};CatchObserver.prototype.completed=function(){return this._o.onCompleted()};CatchObserver.prototype.error=function(e){var t=j(this._fn)(e);if(t===k){return this._o.onError(t.e)}w(t)&&(t=$n(t));var n=new Pe;this._s.setDisposable(n);n.setDisposable(t.subscribe(this._o))};return CatchObserver}(dt);mt["catch"]=function(e){return x(e)?new Yt(this,e):Xt([this,e])};var Xt=vt["catch"]=function(){var e;if(Array.isArray(arguments[0])){e=arguments[0]}else{var t=arguments.length;e=new Array(t);for(var n=0;n<t;n++){e[n]=arguments[n]}}return _t(e).catchError()};mt.combineLatest=function(){var e=arguments.length,t=new Array(e);for(var n=0;n<e;n++){t[n]=arguments[n]}if(Array.isArray(t[0])){t[0].unshift(this)}else{t.unshift(this)}return $t.apply(this,t)};function falseFactory(){return false}function argumentsToArray(){var e=arguments.length,t=new Array(e);for(var n=0;n<e;n++){t[n]=arguments[n]}return t}var Qt=function(e){Se(CombineLatestObservable,e);function CombineLatestObservable(t,n){this._params=t;this._cb=n;e.call(this)}CombineLatestObservable.prototype.subscribeCore=function(e){var t=this._params.length,n=new Array(t);var r={hasValue:arrayInitialize(t,falseFactory),hasValueAll:false,isDone:arrayInitialize(t,falseFactory),values:new Array(t)};for(var i=0;i<t;i++){var o=this._params[i],a=new Pe;n[i]=a;w(o)&&(o=$n(o));a.setDisposable(o.subscribe(new Kt(e,i,this._cb,r)))}return new ze(n)};return CombineLatestObservable}(yt);var Kt=function(e){Se(CombineLatestObserver,e);function CombineLatestObserver(t,n,r,i){this._o=t;this._i=n;this._cb=r;this._state=i;e.call(this)}function notTheSame(e){return function(t,n){return n!==e}}CombineLatestObserver.prototype.next=function(e){this._state.values[this._i]=e;this._state.hasValue[this._i]=true;if(this._state.hasValueAll||(this._state.hasValueAll=this._state.hasValue.every(h))){var t=j(this._cb).apply(null,this._state.values);if(t===k){return this._o.onError(t.e)}this._o.onNext(t)}else if(this._state.isDone.filter(notTheSame(this._i)).every(h)){this._o.onCompleted()}};CombineLatestObserver.prototype.error=function(e){this._o.onError(e)};CombineLatestObserver.prototype.completed=function(){this._state.isDone[this._i]=true;this._state.isDone.every(h)&&this._o.onCompleted()};return CombineLatestObserver}(dt);var $t=vt.combineLatest=function(){var e=arguments.length,t=new Array(e);for(var n=0;n<e;n++){t[n]=arguments[n]}var r=x(t[e-1])?t.pop():argumentsToArray;Array.isArray(t[0])&&(t=t[0]);return new Qt(t,r)};mt.concat=function(){for(var e=[],t=0,n=arguments.length;t<n;t++){e.push(arguments[t])}e.unshift(this);return nn.apply(null,e)};var en=function(e){Se(ConcatObserver,e);function ConcatObserver(t,n){this._s=t;this._fn=n;e.call(this)}ConcatObserver.prototype.next=function(e){this._s.o.onNext(e)};ConcatObserver.prototype.error=function(e){this._s.o.onError(e)};ConcatObserver.prototype.completed=function(){this._s.i++;this._fn(this._s)};return ConcatObserver}(dt);var tn=function(e){Se(ConcatObservable,e);function ConcatObservable(t){this._sources=t;e.call(this)}function scheduleRecursive(e,t){if(e.disposable.isDisposed){return}if(e.i===e.sources.length){return e.o.onCompleted()}var n=e.sources[e.i];w(n)&&(n=$n(n));var r=new Pe;e.subscription.setDisposable(r);r.setDisposable(n.subscribe(new en(e,t)))}ConcatObservable.prototype.subscribeCore=function(e){var t=new Be;var n=Fe(d);var r={o:e,i:0,subscription:t,disposable:n,sources:this._sources};var i=We.scheduleRecursive(r,scheduleRecursive);return new ze([t,n,i])};return ConcatObservable}(yt);var nn=vt.concat=function(){var e;if(Array.isArray(arguments[0])){e=arguments[0]}else{e=new Array(arguments.length);for(var t=0,n=arguments.length;t<n;t++){e[t]=arguments[t]}}return new tn(e)};mt.concatAll=function(){return this.merge(1)};var rn=function(e){Se(MergeObservable,e);function MergeObservable(t,n){this.source=t;this.maxConcurrent=n;e.call(this)}MergeObservable.prototype.subscribeCore=function(e){var t=new Ce;t.add(this.source.subscribe(new on(e,this.maxConcurrent,t)));return t};return MergeObservable}(yt);var on=function(e){function MergeObserver(t,n,r){this.o=t;this.max=n;this.g=r;this.done=false;this.q=[];this.activeCount=0;e.call(this)}Se(MergeObserver,e);MergeObserver.prototype.handleSubscribe=function(e){var t=new Pe;this.g.add(t);w(e)&&(e=$n(e));t.setDisposable(e.subscribe(new InnerObserver(this,t)))};MergeObserver.prototype.next=function(e){if(this.activeCount<this.max){this.activeCount++;this.handleSubscribe(e)}else{this.q.push(e)}};MergeObserver.prototype.error=function(e){this.o.onError(e)};MergeObserver.prototype.completed=function(){this.done=true;this.activeCount===0&&this.o.onCompleted()};function InnerObserver(t,n){this.parent=t;this.sad=n;e.call(this)}Se(InnerObserver,e);InnerObserver.prototype.next=function(e){this.parent.o.onNext(e)};InnerObserver.prototype.error=function(e){this.parent.o.onError(e)};InnerObserver.prototype.completed=function(){this.parent.g.remove(this.sad);if(this.parent.q.length>0){this.parent.handleSubscribe(this.parent.q.shift())}else{this.parent.activeCount--;this.parent.done&&this.parent.activeCount===0&&this.parent.o.onCompleted()}};return MergeObserver}(dt);mt.merge=function(e){return typeof e!=="number"?an(this,e):new rn(this,e)};var an=vt.merge=function(){var e,t=[],n,r=arguments.length;if(!arguments[0]){e=We;for(n=1;n<r;n++){t.push(arguments[n])}}else if(He(arguments[0])){e=arguments[0];for(n=1;n<r;n++){t.push(arguments[n])}}else{e=We;for(n=0;n<r;n++){t.push(arguments[n])}}if(Array.isArray(t[0])){t=t[0]}return observableOf(e,t).mergeAll()};var sn=p.CompositeError=function(e){this.innerErrors=e;this.message="This contains multiple errors. Check the innerErrors";Error.call(this)};sn.prototype=Object.create(Error.prototype);sn.prototype.name="CompositeError";var cn=function(e){Se(MergeDelayErrorObservable,e);function MergeDelayErrorObservable(t){this.source=t;e.call(this)}MergeDelayErrorObservable.prototype.subscribeCore=function(e){var t=new Ce,n=new Pe,r={isStopped:false,errors:[],o:e};t.add(n);n.setDisposable(this.source.subscribe(new un(t,r)));return t};return MergeDelayErrorObservable}(yt);var un=function(e){Se(MergeDelayErrorObserver,e);function MergeDelayErrorObserver(t,n){this._group=t;this._state=n;e.call(this)}function setCompletion(e,t){if(t.length===0){e.onCompleted()}else if(t.length===1){e.onError(t[0])}else{e.onError(new sn(t))}}MergeDelayErrorObserver.prototype.next=function(e){var t=new Pe;this._group.add(t);w(e)&&(e=$n(e));t.setDisposable(e.subscribe(new InnerObserver(t,this._group,this._state)))};MergeDelayErrorObserver.prototype.error=function(e){this._state.errors.push(e);this._state.isStopped=true;this._group.length===1&&setCompletion(this._state.o,this._state.errors)};MergeDelayErrorObserver.prototype.completed=function(){this._state.isStopped=true;this._group.length===1&&setCompletion(this._state.o,this._state.errors)};Se(InnerObserver,e);function InnerObserver(t,n,r){this._inner=t;this._group=n;this._state=r;e.call(this)}InnerObserver.prototype.next=function(e){this._state.o.onNext(e)};InnerObserver.prototype.error=function(e){this._state.errors.push(e);this._group.remove(this._inner);this._state.isStopped&&this._group.length===1&&setCompletion(this._state.o,this._state.errors)};InnerObserver.prototype.completed=function(){this._group.remove(this._inner);this._state.isStopped&&this._group.length===1&&setCompletion(this._state.o,this._state.errors)};return MergeDelayErrorObserver}(dt);vt.mergeDelayError=function(){var e;if(Array.isArray(arguments[0])){e=arguments[0]}else{var t=arguments.length;e=new Array(t);for(var n=0;n<t;n++){e[n]=arguments[n]}}var r=observableOf(null,e);return new cn(r)};var ln=function(e){Se(MergeAllObservable,e);function MergeAllObservable(t){this.source=t;e.call(this)}MergeAllObservable.prototype.subscribeCore=function(e){var t=new Ce,n=new Pe;t.add(n);n.setDisposable(this.source.subscribe(new fn(e,t)));return t};return MergeAllObservable}(yt);var fn=function(e){function MergeAllObserver(t,n){this.o=t;this.g=n;this.done=false;e.call(this)}Se(MergeAllObserver,e);MergeAllObserver.prototype.next=function(e){var t=new Pe;this.g.add(t);w(e)&&(e=$n(e));t.setDisposable(e.subscribe(new InnerObserver(this,t)))};MergeAllObserver.prototype.error=function(e){this.o.onError(e)};MergeAllObserver.prototype.completed=function(){this.done=true;this.g.length===1&&this.o.onCompleted()};function InnerObserver(t,n){this.parent=t;this.sad=n;e.call(this)}Se(InnerObserver,e);InnerObserver.prototype.next=function(e){this.parent.o.onNext(e)};InnerObserver.prototype.error=function(e){this.parent.o.onError(e)};InnerObserver.prototype.completed=function(){this.parent.g.remove(this.sad);this.parent.done&&this.parent.g.length===1&&this.parent.o.onCompleted()};return MergeAllObserver}(dt);mt.mergeAll=function(){return new ln(this)};var pn=function(e){Se(SkipUntilObservable,e);function SkipUntilObservable(t,n){this._s=t;this._o=w(n)?$n(n):n;this._open=false;e.call(this)}SkipUntilObservable.prototype.subscribeCore=function(e){var t=new Pe;t.setDisposable(this._s.subscribe(new dn(e,this)));w(this._o)&&(this._o=$n(this._o));var n=new Pe;n.setDisposable(this._o.subscribe(new hn(e,this,n)));return new Ne(t,n)};return SkipUntilObservable}(yt);var dn=function(e){Se(SkipUntilSourceObserver,e);function SkipUntilSourceObserver(t,n){this._o=t;this._p=n;e.call(this)}SkipUntilSourceObserver.prototype.next=function(e){this._p._open&&this._o.onNext(e)};SkipUntilSourceObserver.prototype.error=function(e){this._o.onError(e)};SkipUntilSourceObserver.prototype.onCompleted=function(){this._p._open&&this._o.onCompleted()};return SkipUntilSourceObserver}(dt);var hn=function(e){Se(SkipUntilOtherObserver,e);function SkipUntilOtherObserver(t,n,r){this._o=t;this._p=n;this._r=r;e.call(this)}SkipUntilOtherObserver.prototype.next=function(){this._p._open=true;this._r.dispose()};SkipUntilOtherObserver.prototype.error=function(e){this._o.onError(e)};SkipUntilOtherObserver.prototype.onCompleted=function(){this._r.dispose()};return SkipUntilOtherObserver}(dt);mt.skipUntil=function(e){return new pn(this,e)};var mn=function(e){Se(SwitchObservable,e);function SwitchObservable(t){this.source=t;e.call(this)}SwitchObservable.prototype.subscribeCore=function(e){var t=new Be,n=this.source.subscribe(new SwitchObserver(e,t));return new Ne(n,t)};Se(SwitchObserver,dt);function SwitchObserver(e,t){this.o=e;this.inner=t;this.stopped=false;this.latest=0;this.hasLatest=false;dt.call(this)}SwitchObserver.prototype.next=function(e){var t=new Pe,n=++this.latest;this.hasLatest=true;this.inner.setDisposable(t);w(e)&&(e=$n(e));t.setDisposable(e.subscribe(new InnerObserver(this,n)))};SwitchObserver.prototype.error=function(e){this.o.onError(e)};SwitchObserver.prototype.completed=function(){this.stopped=true;!this.hasLatest&&this.o.onCompleted()};Se(InnerObserver,dt);function InnerObserver(e,t){this.parent=e;this.id=t;dt.call(this)}InnerObserver.prototype.next=function(e){this.parent.latest===this.id&&this.parent.o.onNext(e)};InnerObserver.prototype.error=function(e){this.parent.latest===this.id&&this.parent.o.onError(e)};InnerObserver.prototype.completed=function(){if(this.parent.latest===this.id){this.parent.hasLatest=false;this.parent.stopped&&this.parent.o.onCompleted()}};return SwitchObservable}(yt);mt["switch"]=mt.switchLatest=function(){return new mn(this)};var vn=function(e){Se(TakeUntilObservable,e);function TakeUntilObservable(t,n){this.source=t;this.other=w(n)?$n(n):n;e.call(this)}TakeUntilObservable.prototype.subscribeCore=function(e){return new Ne(this.source.subscribe(e),this.other.subscribe(new gn(e)))};return TakeUntilObservable}(yt);var gn=function(e){Se(TakeUntilObserver,e);function TakeUntilObserver(t){this._o=t;e.call(this)}TakeUntilObserver.prototype.next=function(){this._o.onCompleted()};TakeUntilObserver.prototype.error=function(e){this._o.onError(e)};TakeUntilObserver.prototype.onCompleted=d;return TakeUntilObserver}(dt);mt.takeUntil=function(e){return new vn(this,e)};function falseFactory(){return false}function argumentsToArray(){var e=arguments.length,t=new Array(e);for(var n=0;n<e;n++){t[n]=arguments[n]}return t}var yn=function(e){Se(WithLatestFromObservable,e);function WithLatestFromObservable(t,n,r){this._s=t;this._ss=n;this._cb=r;e.call(this)}WithLatestFromObservable.prototype.subscribeCore=function(e){var t=this._ss.length;var n={hasValue:arrayInitialize(t,falseFactory),hasValueAll:false,values:new Array(t)};var r=this._ss.length,i=new Array(r+1);for(var o=0;o<r;o++){var a=this._ss[o],s=new Pe;w(a)&&(a=$n(a));s.setDisposable(a.subscribe(new bn(e,o,n)));i[o]=s}var c=new Pe;c.setDisposable(this._s.subscribe(new wn(e,this._cb,n)));i[r]=c;return new ze(i)};return WithLatestFromObservable}(yt);var bn=function(e){Se(WithLatestFromOtherObserver,e);function WithLatestFromOtherObserver(t,n,r){this._o=t;this._i=n;this._state=r;e.call(this)}WithLatestFromOtherObserver.prototype.next=function(e){this._state.values[this._i]=e;this._state.hasValue[this._i]=true;this._state.hasValueAll=this._state.hasValue.every(h)};WithLatestFromOtherObserver.prototype.error=function(e){this._o.onError(e)};WithLatestFromOtherObserver.prototype.completed=d;return WithLatestFromOtherObserver}(dt);var wn=function(e){Se(WithLatestFromSourceObserver,e);function WithLatestFromSourceObserver(t,n,r){this._o=t;this._cb=n;this._state=r;e.call(this)}WithLatestFromSourceObserver.prototype.next=function(e){var t=[e].concat(this._state.values);if(!this._state.hasValueAll){return}var n=j(this._cb).apply(null,t);if(n===k){return this._o.onError(n.e)}this._o.onNext(n)};WithLatestFromSourceObserver.prototype.error=function(e){this._o.onError(e)};WithLatestFromSourceObserver.prototype.completed=function(){this._o.onCompleted()};return WithLatestFromSourceObserver}(dt);mt.withLatestFrom=function(){if(arguments.length===0){throw new Error("invalid arguments")}var e=arguments.length,t=new Array(e);for(var n=0;n<e;n++){t[n]=arguments[n]}var r=x(t[e-1])?t.pop():argumentsToArray;Array.isArray(t[0])&&(t=t[0]);return new yn(this,t,r)};function falseFactory(){return false}function emptyArrayFactory(){return[]}var xn=function(e){Se(ZipObservable,e);function ZipObservable(t,n){this._s=t;this._cb=n;e.call(this)}ZipObservable.prototype.subscribeCore=function(e){var t=this._s.length,n=new Array(t),r=arrayInitialize(t,falseFactory),i=arrayInitialize(t,emptyArrayFactory);for(var o=0;o<t;o++){var a=this._s[o],s=new Pe;n[o]=s;w(a)&&(a=$n(a));s.setDisposable(a.subscribe(new kn(e,o,this,i,r)))}return new ze(n)};return ZipObservable}(yt);var kn=function(e){Se(ZipObserver,e);function ZipObserver(t,n,r,i,o){this._o=t;this._i=n;this._p=r;this._q=i;this._d=o;e.call(this)}function notEmpty(e){return e.length>0}function shiftEach(e){return e.shift()}function notTheSame(e){return function(t,n){return n!==e}}ZipObserver.prototype.next=function(e){this._q[this._i].push(e);if(this._q.every(notEmpty)){var t=this._q.map(shiftEach);var n=j(this._p._cb).apply(null,t);if(n===k){return this._o.onError(n.e)}this._o.onNext(n)}else if(this._d.filter(notTheSame(this._i)).every(h)){this._o.onCompleted()}};ZipObserver.prototype.error=function(e){this._o.onError(e)};ZipObserver.prototype.completed=function(){this._d[this._i]=true;this._d.every(h)&&this._o.onCompleted()};return ZipObserver}(dt);mt.zip=function(){if(arguments.length===0){throw new Error("invalid arguments")}var e=arguments.length,t=new Array(e);for(var n=0;n<e;n++){t[n]=arguments[n]}var r=x(t[e-1])?t.pop():argumentsToArray;Array.isArray(t[0])&&(t=t[0]);var i=this;t.unshift(i);return new xn(t,r)};vt.zip=function(){var e=arguments.length,t=new Array(e);for(var n=0;n<e;n++){t[n]=arguments[n]}if(Array.isArray(t[0])){t=x(t[1])?t[0].concat(t[1]):t[0]}var r=t.shift();return r.zip.apply(r,t)};function falseFactory(){return false}function emptyArrayFactory(){return[]}function argumentsToArray(){var e=arguments.length,t=new Array(e);for(var n=0;n<e;n++){t[n]=arguments[n]}return t}var jn=function(e){Se(ZipIterableObservable,e);function ZipIterableObservable(t,n){this.sources=t;this._cb=n;e.call(this)}ZipIterableObservable.prototype.subscribeCore=function(e){var t=this.sources,n=t.length,r=new Array(n);var i={q:arrayInitialize(n,emptyArrayFactory),done:arrayInitialize(n,falseFactory),cb:this._cb,o:e};for(var o=0;o<n;o++){(function(e){var n=t[e],o=new Pe;(L(n)||z(n))&&(n=Pt(n));r[e]=o;o.setDisposable(n.subscribe(new Sn(i,e)))})(o)}return new ze(r)};return ZipIterableObservable}(yt);var Sn=function(e){Se(ZipIterableObserver,e);function ZipIterableObserver(t,n){this._s=t;this._i=n;e.call(this)}function notEmpty(e){return e.length>0}function shiftEach(e){return e.shift()}function notTheSame(e){return function(t,n){return n!==e}}ZipIterableObserver.prototype.next=function(e){this._s.q[this._i].push(e);if(this._s.q.every(notEmpty)){var t=this._s.q.map(shiftEach),n=j(this._s.cb).apply(null,t);if(n===k){return this._s.o.onError(n.e)}this._s.o.onNext(n)}else if(this._s.done.filter(notTheSame(this._i)).every(h)){this._s.o.onCompleted()}};ZipIterableObserver.prototype.error=function(e){this._s.o.onError(e)};ZipIterableObserver.prototype.completed=function(){this._s.done[this._i]=true;this._s.done.every(h)&&this._s.o.onCompleted()};return ZipIterableObserver}(dt);mt.zipIterable=function(){if(arguments.length===0){throw new Error("invalid arguments")}var e=arguments.length,t=new Array(e);for(var n=0;n<e;n++){t[n]=arguments[n]}var r=x(t[e-1])?t.pop():argumentsToArray;var i=this;t.unshift(i);return new jn(t,r)};function asObservable(e){return function subscribe(t){return e.subscribe(t)}}mt.asObservable=function(){return new br(asObservable(this),this)};var En=function(e){Se(DematerializeObservable,e);function DematerializeObservable(t){this.source=t;e.call(this)}DematerializeObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new _n(e))};return DematerializeObservable}(yt);var _n=function(e){Se(DematerializeObserver,e);function DematerializeObserver(t){this._o=t;e.call(this)}DematerializeObserver.prototype.next=function(e){e.accept(this._o)};DematerializeObserver.prototype.error=function(e){this._o.onError(e)};DematerializeObserver.prototype.completed=function(){this._o.onCompleted()};return DematerializeObserver}(dt);mt.dematerialize=function(){return new En(this)};var Cn=function(e){Se(DistinctUntilChangedObservable,e);function DistinctUntilChangedObservable(t,n,r){this.source=t;this.keyFn=n;this.comparer=r;e.call(this)}DistinctUntilChangedObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new An(e,this.keyFn,this.comparer))};return DistinctUntilChangedObservable}(yt);var An=function(e){Se(DistinctUntilChangedObserver,e);function DistinctUntilChangedObserver(t,n,r){this.o=t;this.keyFn=n;this.comparer=r;this.hasCurrentKey=false;this.currentKey=null;e.call(this)}DistinctUntilChangedObserver.prototype.next=function(e){var t=e,n;if(x(this.keyFn)){t=j(this.keyFn)(e);if(t===k){return this.o.onError(t.e)}}if(this.hasCurrentKey){n=j(this.comparer)(this.currentKey,t);if(n===k){return this.o.onError(n.e)}}if(!this.hasCurrentKey||!n){this.hasCurrentKey=true;this.currentKey=t;this.o.onNext(e)}};DistinctUntilChangedObserver.prototype.error=function(e){this.o.onError(e)};DistinctUntilChangedObserver.prototype.completed=function(){this.o.onCompleted()};return DistinctUntilChangedObserver}(dt);mt.distinctUntilChanged=function(e,t){t||(t=v);return new Cn(this,e,t)};var On=function(e){Se(TapObservable,e);function TapObservable(t,n,r,i){this.source=t;this._oN=n;this._oE=r;this._oC=i;e.call(this)}TapObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new InnerObserver(e,this))};Se(InnerObserver,dt);function InnerObserver(e,t){this.o=e;this.t=!t._oN||x(t._oN)?pt(t._oN||d,t._oE||d,t._oC||d):t._oN;this.isStopped=false;dt.call(this)}InnerObserver.prototype.next=function(e){var t=j(this.t.onNext).call(this.t,e);if(t===k){this.o.onError(t.e)}this.o.onNext(e)};InnerObserver.prototype.error=function(e){var t=j(this.t.onError).call(this.t,e);if(t===k){return this.o.onError(t.e)}this.o.onError(e)};InnerObserver.prototype.completed=function(){var e=j(this.t.onCompleted).call(this.t);if(e===k){return this.o.onError(e.e)}this.o.onCompleted()};return TapObservable}(yt);mt["do"]=mt.tap=mt.doAction=function(e,t,n){return new On(this,e,t,n)};mt.doOnNext=mt.tapOnNext=function(e,t){return this.tap(typeof t!=="undefined"?function(n){e.call(t,n)}:e)};mt.doOnError=mt.tapOnError=function(e,t){return this.tap(d,typeof t!=="undefined"?function(n){e.call(t,n)}:e)};mt.doOnCompleted=mt.tapOnCompleted=function(e,t){return this.tap(d,null,typeof t!=="undefined"?function(){e.call(t)}:e)};var Fn=function(e){Se(FinallyObservable,e);function FinallyObservable(t,n,r){this.source=t;this._fn=M(n,r,0);e.call(this)}FinallyObservable.prototype.subscribeCore=function(e){var t=j(this.source.subscribe).call(this.source,e);if(t===k){this._fn();thrower(t.e)}return new FinallyDisposable(t,this._fn)};function FinallyDisposable(e,t){this.isDisposed=false;this._s=e;this._fn=t}FinallyDisposable.prototype.dispose=function(){if(!this.isDisposed){var e=j(this._s.dispose).call(this._s);this._fn();e===k&&thrower(e.e)}};return FinallyObservable}(yt);mt["finally"]=function(e,t){return new Fn(this,e,t)};var Dn=function(e){Se(IgnoreElementsObservable,e);function IgnoreElementsObservable(t){this.source=t;e.call(this)}IgnoreElementsObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new InnerObserver(e))};function InnerObserver(e){this.o=e;this.isStopped=false}InnerObserver.prototype.onNext=d;InnerObserver.prototype.onError=function(e){if(!this.isStopped){this.isStopped=true;this.o.onError(e)}};InnerObserver.prototype.onCompleted=function(){if(!this.isStopped){this.isStopped=true;this.o.onCompleted()}};InnerObserver.prototype.dispose=function(){this.isStopped=true};InnerObserver.prototype.fail=function(e){if(!this.isStopped){this.isStopped=true;this.observer.onError(e);return true}return false};return IgnoreElementsObservable}(yt);mt.ignoreElements=function(){return new Dn(this)};var Tn=function(e){Se(MaterializeObservable,e);function MaterializeObservable(t,n){this.source=t;e.call(this)}MaterializeObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new In(e))};return MaterializeObservable}(yt);var In=function(e){Se(MaterializeObserver,e);function MaterializeObserver(t){this._o=t;e.call(this)}MaterializeObserver.prototype.next=function(e){this._o.onNext(ct(e))};MaterializeObserver.prototype.error=function(e){this._o.onNext(ut(e));this._o.onCompleted()};MaterializeObserver.prototype.completed=function(){this._o.onNext(lt());this._o.onCompleted()};return MaterializeObserver}(dt);mt.materialize=function(){return new Tn(this)};mt.repeat=function(e){return St(this,e).concat()};mt.retry=function(e){return St(this,e).catchError()};function repeat(e){return{"@@iterator":function(){return{next:function(){return{done:false,value:e}}}}}}var Rn=function(e){function createDisposable(e){return{isDisposed:false,dispose:function(){if(!this.isDisposed){this.isDisposed=true;e.isDisposed=true}}}}function RetryWhenObservable(t,n){this.source=t;this._notifier=n;e.call(this)}Se(RetryWhenObservable,e);RetryWhenObservable.prototype.subscribeCore=function(e){var t=new kr,n=new kr,r=this._notifier(t),i=r.subscribe(n);var o=this.source["@@iterator"]();var a={isDisposed:false},s,c=new Be;var u=Je.scheduleRecursive(null,function(r,i){if(a.isDisposed){return}var u=o.next();if(u.done){if(s){e.onError(s)}else{e.onCompleted()}return}var l=u.value;w(l)&&(l=$n(l));var f=new Pe;var p=new Pe;c.setDisposable(new Ne(p,f));f.setDisposable(l.subscribe(function(t){e.onNext(t)},function(r){p.setDisposable(n.subscribe(i,function(t){e.onError(t)},function(){e.onCompleted()}));t.onNext(r);f.dispose()},function(){e.onCompleted()}))});return new ze([i,c,u,createDisposable(a)])};return RetryWhenObservable}(yt);mt.retryWhen=function(e){return new Rn(repeat(this),e)};function repeat(e){return{"@@iterator":function(){return{next:function(){return{done:false,value:e}}}}}}var Pn=function(e){function createDisposable(e){return{isDisposed:false,dispose:function(){if(!this.isDisposed){this.isDisposed=true;e.isDisposed=true}}}}function RepeatWhenObservable(t,n){this.source=t;this._notifier=n;e.call(this)}Se(RepeatWhenObservable,e);RepeatWhenObservable.prototype.subscribeCore=function(e){var t=new kr,n=new kr,r=this._notifier(t),i=r.subscribe(n);var o=this.source["@@iterator"]();var a={isDisposed:false},s,c=new Be;var u=Je.scheduleRecursive(null,function(r,i){if(a.isDisposed){return}var u=o.next();if(u.done){if(s){e.onError(s)}else{e.onCompleted()}return}var l=u.value;w(l)&&(l=$n(l));var f=new Pe;var p=new Pe;c.setDisposable(new Ne(p,f));f.setDisposable(l.subscribe(function(t){e.onNext(t)},function(t){e.onError(t)},function(){p.setDisposable(n.subscribe(i,function(t){e.onError(t)},function(){e.onCompleted()}));t.onNext(null);f.dispose()}))});return new ze([i,c,u,createDisposable(a)])};return RepeatWhenObservable}(yt);mt.repeatWhen=function(e){return new Pn(repeat(this),e)};var Bn=function(e){Se(ScanObservable,e);function ScanObservable(t,n,r,i){this.source=t;this.accumulator=n;this.hasSeed=r;this.seed=i;e.call(this)}ScanObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new Nn(e,this))};return ScanObservable}(yt);var Nn=function(e){Se(ScanObserver,e);function ScanObserver(t,n){this._o=t;this._p=n;this._fn=n.accumulator;this._hs=n.hasSeed;this._s=n.seed;this._ha=false;this._a=null;this._hv=false;this._i=0;e.call(this)}ScanObserver.prototype.next=function(e){!this._hv&&(this._hv=true);if(this._ha){this._a=j(this._fn)(this._a,e,this._i,this._p)}else{this._a=this._hs?j(this._fn)(this._s,e,this._i,this._p):e;this._ha=true}if(this._a===k){return this._o.onError(this._a.e)}this._o.onNext(this._a);this._i++};ScanObserver.prototype.error=function(e){this._o.onError(e)};ScanObserver.prototype.completed=function(){!this._hv&&this._hs&&this._o.onNext(this._s);this._o.onCompleted()};return ScanObserver}(dt);mt.scan=function(){var e=false,t,n=arguments[0];if(arguments.length===2){e=true;t=arguments[1]}return new Bn(this,n,e,t)};var zn=function(e){Se(SkipLastObservable,e);function SkipLastObservable(t,n){this.source=t;this._c=n;e.call(this)}SkipLastObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new Ln(e,this._c))};return SkipLastObservable}(yt);var Ln=function(e){Se(SkipLastObserver,e);function SkipLastObserver(t,n){this._o=t;this._c=n;this._q=[];e.call(this)}SkipLastObserver.prototype.next=function(e){this._q.push(e);this._q.length>this._c&&this._o.onNext(this._q.shift())};SkipLastObserver.prototype.error=function(e){this._o.onError(e)};SkipLastObserver.prototype.completed=function(){this._o.onCompleted()};return SkipLastObserver}(dt);mt.skipLast=function(e){if(e<0){throw new D}return new zn(this,e)};mt.startWith=function(){var e,t,n=0;if(!!arguments.length&&He(arguments[0])){t=arguments[0];n=1}else{t=We}for(var r=[],i=n,o=arguments.length;i<o;i++){r.push(arguments[i])}return _t([Nt(r,t),this]).concat()};var Mn=function(e){Se(TakeLastObserver,e);function TakeLastObserver(t,n){this._o=t;this._c=n;this._q=[];e.call(this)}TakeLastObserver.prototype.next=function(e){this._q.push(e);this._q.length>this._c&&this._q.shift()};TakeLastObserver.prototype.error=function(e){this._o.onError(e)};TakeLastObserver.prototype.completed=function(){while(this._q.length>0){this._o.onNext(this._q.shift())}this._o.onCompleted()};return TakeLastObserver}(dt);mt.takeLast=function(e){if(e<0){throw new D}var t=this;return new br(function(n){return t.subscribe(new Mn(n,e))},t)};mt.flatMapConcat=mt.concatMap=function(e,t,n){return new bt(this,e,t,n).merge(1)};var Un=function(e){Se(MapObservable,e);function MapObservable(t,n,r){this.source=t;this.selector=M(n,r,3);e.call(this)}function innerMap(e,t){return function(n,r,i){return e.call(this,t.selector(n,r,i),r,i)}}MapObservable.prototype.internalMap=function(e,t){return new MapObservable(this.source,innerMap(e,this),t)};MapObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new InnerObserver(e,this.selector,this))};Se(InnerObserver,dt);function InnerObserver(e,t,n){this.o=e;this.selector=t;this.source=n;this.i=0;dt.call(this)}InnerObserver.prototype.next=function(e){var t=j(this.selector)(e,this.i++,this.source);if(t===k){return this.o.onError(t.e)}this.o.onNext(t)};InnerObserver.prototype.error=function(e){this.o.onError(e)};InnerObserver.prototype.completed=function(){this.o.onCompleted()};return MapObservable}(yt);mt.map=mt.select=function(e,t){var n=typeof e==="function"?e:function(){return e};return this instanceof Un?this.internalMap(n,t):new Un(this,n,t)};function plucker(e,t){return function mapper(r){var i=r;for(var o=0;o<t;o++){var a=i[e[o]];if(typeof a!=="undefined"){i=a}else{return n}}return i}}mt.pluck=function(){var e=arguments.length,t=new Array(e);if(e===0){throw new Error("List of properties cannot be empty.")}for(var n=0;n<e;n++){t[n]=arguments[n]}return this.map(plucker(t,e))};mt.flatMap=mt.selectMany=function(e,t,n){return new bt(this,e,t,n).mergeAll()};p.Observable.prototype.flatMapLatest=function(e,t,n){return new bt(this,e,t,n).switchLatest()};var qn=function(e){Se(SkipObservable,e);function SkipObservable(t,n){this.source=t;this._count=n;e.call(this)}SkipObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new SkipObserver(e,this._count))};function SkipObserver(e,t){this._o=e;this._r=t;dt.call(this)}Se(SkipObserver,dt);SkipObserver.prototype.next=function(e){if(this._r<=0){this._o.onNext(e)}else{this._r--}};SkipObserver.prototype.error=function(e){this._o.onError(e)};SkipObserver.prototype.completed=function(){this._o.onCompleted()};return SkipObservable}(yt);mt.skip=function(e){if(e<0){throw new D}return new qn(this,e)};var Hn=function(e){Se(SkipWhileObservable,e);function SkipWhileObservable(t,n){this.source=t;this._fn=n;e.call(this)}SkipWhileObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new Gn(e,this))};return SkipWhileObservable}(yt);var Gn=function(e){Se(SkipWhileObserver,e);function SkipWhileObserver(t,n){this._o=t;this._p=n;this._i=0;this._r=false;e.call(this)}SkipWhileObserver.prototype.next=function(e){if(!this._r){var t=j(this._p._fn)(e,this._i++,this._p);if(t===k){return this._o.onError(t.e)}this._r=!t}this._r&&this._o.onNext(e)};SkipWhileObserver.prototype.error=function(e){this._o.onError(e)};SkipWhileObserver.prototype.completed=function(){this._o.onCompleted()};return SkipWhileObserver}(dt);mt.skipWhile=function(e,t){var n=M(e,t,3);return new Hn(this,n)};var Wn=function(e){Se(TakeObservable,e);function TakeObservable(t,n){this.source=t;this._count=n;e.call(this)}TakeObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new TakeObserver(e,this._count))};function TakeObserver(e,t){this._o=e;this._c=t;this._r=t;dt.call(this)}Se(TakeObserver,dt);TakeObserver.prototype.next=function(e){if(this._r-- >0){this._o.onNext(e);this._r<=0&&this._o.onCompleted()}};TakeObserver.prototype.error=function(e){this._o.onError(e)};TakeObserver.prototype.completed=function(){this._o.onCompleted()};return TakeObservable}(yt);mt.take=function(e,t){if(e<0){throw new D}if(e===0){return Tt(t)}return new Wn(this,e)};var Vn=function(e){Se(TakeWhileObservable,e);function TakeWhileObservable(t,n){this.source=t;this._fn=n;e.call(this)}TakeWhileObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new Jn(e,this))};return TakeWhileObservable}(yt);var Jn=function(e){Se(TakeWhileObserver,e);function TakeWhileObserver(t,n){this._o=t;this._p=n;this._i=0;this._r=true;e.call(this)}TakeWhileObserver.prototype.next=function(e){if(this._r){this._r=j(this._p._fn)(e,this._i++,this._p);if(this._r===k){return this._o.onError(this._r.e)}}if(this._r){this._o.onNext(e)}else{this._o.onCompleted()}};TakeWhileObserver.prototype.error=function(e){this._o.onError(e)};TakeWhileObserver.prototype.completed=function(){this._o.onCompleted()};return TakeWhileObserver}(dt);mt.takeWhile=function(e,t){var n=M(e,t,3);return new Vn(this,n)};var Yn=function(e){Se(FilterObservable,e);function FilterObservable(t,n,r){this.source=t;this.predicate=M(n,r,3);e.call(this)}FilterObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new InnerObserver(e,this.predicate,this))};function innerPredicate(e,t){return function(n,r,i){return t.predicate(n,r,i)&&e.call(this,n,r,i)}}FilterObservable.prototype.internalFilter=function(e,t){return new FilterObservable(this.source,innerPredicate(e,this),t)};Se(InnerObserver,dt);function InnerObserver(e,t,n){this.o=e;this.predicate=t;this.source=n;this.i=0;dt.call(this)}InnerObserver.prototype.next=function(e){var t=j(this.predicate)(e,this.i++,this.source);if(t===k){return this.o.onError(t.e)}t&&this.o.onNext(e)};InnerObserver.prototype.error=function(e){this.o.onError(e)};InnerObserver.prototype.completed=function(){this.o.onCompleted()};return FilterObservable}(yt);mt.filter=mt.where=function(e,t){return this instanceof Yn?this.internalFilter(e,t):new Yn(this,e,t)};function createCbObservable(e,t,n,r){var i=new jr;r.push(createCbHandler(i,t,n));e.apply(t,r);return i.asObservable()}function createCbHandler(e,t,n){return function handler(){var r=arguments.length,i=new Array(r);for(var o=0;o<r;o++){i[o]=arguments[o]}if(x(n)){i=j(n).apply(t,i);if(i===k){return e.onError(i.e)}e.onNext(i)}else{if(i.length<=1){e.onNext(i[0])}else{e.onNext(i)}}e.onCompleted()}}vt.fromCallback=function(e,t,n){return function(){typeof t==="undefined"&&(t=this);var r=arguments.length,i=new Array(r);for(var o=0;o<r;o++){i[o]=arguments[o]}return createCbObservable(e,t,n,i)}};function createNodeObservable(e,t,n,r){var i=new jr;r.push(createNodeHandler(i,t,n));e.apply(t,r);return i.asObservable()}function createNodeHandler(e,t,n){return function handler(){var r=arguments[0];if(r){return e.onError(r)}var i=arguments.length,o=[];for(var a=1;a<i;a++){o[a-1]=arguments[a]}if(x(n)){var o=j(n).apply(t,o);if(o===k){return e.onError(o.e)}e.onNext(o)}else{if(o.length<=1){e.onNext(o[0])}else{e.onNext(o)}}e.onCompleted()}}vt.fromNodeCallback=function(e,t,n){return function(){typeof t==="undefined"&&(t=this);var r=arguments.length,i=new Array(r);for(var o=0;o<r;o++){i[o]=arguments[o]}return createNodeObservable(e,t,n,i)}};function isNodeList(e){if(f.StaticNodeList){return e instanceof f.StaticNodeList||e instanceof f.NodeList}else{return Object.prototype.toString.call(e)==="[object NodeList]"}}function ListenDisposable(e,t,n){this._e=e;this._n=t;this._fn=n;this._e.addEventListener(this._n,this._fn,false);this.isDisposed=false}ListenDisposable.prototype.dispose=function(){if(!this.isDisposed){this._e.removeEventListener(this._n,this._fn,false);this.isDisposed=true}};function createEventListener(e,t,n){var r=new Ce;var i=Object.prototype.toString.call(e);if(isNodeList(e)||i==="[object HTMLCollection]"){for(var o=0,a=e.length;o<a;o++){r.add(createEventListener(e.item(o),t,n))}}else if(e){r.add(new ListenDisposable(e,t,n))}return r}p.config.useNativeEvents=false;var Zn=function(e){Se(EventObservable,e);function EventObservable(t,n,r){this._el=t;this._n=n;this._fn=r;e.call(this)}function createHandler(e,t){return function handler(){var n=arguments[0];if(x(t)){n=j(t).apply(null,arguments);if(n===k){return e.onError(n.e)}}e.onNext(n)}}EventObservable.prototype.subscribeCore=function(e){return createEventListener(this._el,this._n,createHandler(e,this._fn))};return EventObservable}(yt);vt.fromEvent=function(e,t,n){if(e.addListener){return Qn(function(n){e.addListener(t,n)},function(n){e.removeListener(t,n)},n)}if(!p.config.useNativeEvents){if(typeof e.on==="function"&&typeof e.off==="function"){return Qn(function(n){e.on(t,n)},function(n){e.off(t,n)},n)}}return new Zn(e,t,n).publish().refCount()};var Xn=function(e){Se(EventPatternObservable,e);function EventPatternObservable(t,n,r){this._add=t;this._del=n;this._fn=r;e.call(this)}function createHandler(e,t){return function handler(){var n=arguments[0];if(x(t)){n=j(t).apply(null,arguments);if(n===k){return e.onError(n.e)}}e.onNext(n)}}EventPatternObservable.prototype.subscribeCore=function(e){var t=createHandler(e,this._fn);var n=this._add(t);return new EventPatternDisposable(this._del,t,n)};function EventPatternDisposable(e,t,n){this._del=e;this._fn=t;this._ret=n;this.isDisposed=false}EventPatternDisposable.prototype.dispose=function(){if(!this.isDisposed){x(this._del)&&this._del(this._fn,this._ret);this.isDisposed=true}};return EventPatternObservable}(yt);var Qn=vt.fromEventPattern=function(e,t,n){return new Xn(e,t,n).publish().refCount()};var Kn=function(e){Se(FromPromiseObservable,e);function FromPromiseObservable(t,n){this._p=t;this._s=n;e.call(this)}function scheduleNext(e,t){var n=t[0],r=t[1];n.onNext(r);n.onCompleted()}function scheduleError(e,t){var n=t[0],r=t[1];n.onError(r)}FromPromiseObservable.prototype.subscribeCore=function(e){var t=new Pe,n=this;this._p.then(function(r){t.setDisposable(n._s.schedule([e,r],scheduleNext))},function(r){t.setDisposable(n._s.schedule([e,r],scheduleError))});return t};return FromPromiseObservable}(yt);var $n=vt.fromPromise=function(e,t){t||(t=tt);return new Kn(e,t)};mt.toPromise=function(e){e||(e=p.config.Promise);if(!e){throw new T("Promise type not provided nor in Rx.config.Promise")}var t=this;return new e(function(e,n){var r;t.subscribe(function(e){r=e},n,function(){e(r)})})};vt.startAsync=function(e){var t=j(e)();if(t===k){return Jt(t.e)}return $n(t)};var er=function(e){Se(MulticastObservable,e);function MulticastObservable(t,n,r){this.source=t;this._fn1=n;this._fn2=r;e.call(this)}MulticastObservable.prototype.subscribeCore=function(e){var t=this.source.multicast(this._fn1());return new Ne(this._fn2(t).subscribe(e),t.connect())};return MulticastObservable}(yt);mt.multicast=function(e,t){return x(e)?new er(this,e,t):new nr(this,e)};mt.publish=function(e){return e&&x(e)?this.multicast(function(){return new kr},e):this.multicast(new kr)};mt.share=function(){return this.publish().refCount()};mt.publishLast=function(e){return e&&x(e)?this.multicast(function(){return new jr},e):this.multicast(new jr)};mt.publishValue=function(e,t){return arguments.length===2?this.multicast(function(){return new Er(t)},e):this.multicast(new Er(e))};mt.shareValue=function(e){return this.publishValue(e).refCount()};mt.replay=function(e,t,n,r){return e&&x(e)?this.multicast(function(){return new _r(t,n,r)},e):this.multicast(new _r(t,n,r))};mt.shareReplay=function(e,t,n){return this.replay(null,e,t,n).refCount()};var tr=function(e){Se(RefCountObservable,e);function RefCountObservable(t){this.source=t;this._count=0;this._connectableSubscription=null;e.call(this)}RefCountObservable.prototype.subscribeCore=function(e){var t=this.source.subscribe(e);++this._count===1&&(this._connectableSubscription=this.source.connect());return new RefCountDisposable(this,t)};function RefCountDisposable(e,t){this._p=e;this._s=t;this.isDisposed=false}RefCountDisposable.prototype.dispose=function(){if(!this.isDisposed){this.isDisposed=true;this._s.dispose();--this._p._count===0&&this._p._connectableSubscription.dispose()}};return RefCountObservable}(yt);var nr=p.ConnectableObservable=function(e){Se(ConnectableObservable,e);function ConnectableObservable(t,n){this.source=t;this._connection=null;this._source=t.asObservable();this._subject=n;e.call(this)}function ConnectDisposable(e,t){this._p=e;this._s=t}ConnectDisposable.prototype.dispose=function(){if(this._s){this._s.dispose();this._s=null;this._p._connection=null}};ConnectableObservable.prototype.connect=function(){if(!this._connection){var e=this._source.subscribe(this._subject);this._connection=new ConnectDisposable(this,e)}return this._connection};ConnectableObservable.prototype._subscribe=function(e){return this._subject.subscribe(e)};ConnectableObservable.prototype.refCount=function(){return new tr(this)};return ConnectableObservable}(vt);var rr=function(e){Se(TimerObservable,e);function TimerObservable(t,n){this._dt=t;this._s=n;e.call(this)}TimerObservable.prototype.subscribeCore=function(e){return this._s.scheduleFuture(e,this._dt,scheduleMethod)};function scheduleMethod(e,t){t.onNext(0);t.onCompleted()}return TimerObservable}(yt);function _observableTimer(e,t){return new rr(e,t)}function observableTimerDateAndPeriod(e,t,n){return new br(function(r){var i=e,o=qe(t);return n.scheduleRecursiveFuture(0,i,function(e,t){if(o>0){var a=n.now();i=new Date(i.getTime()+o);i.getTime()<=a&&(i=new Date(a+o))}r.onNext(e);t(e+1,new Date(i))})})}function observableTimerTimeSpanAndPeriod(e,t,n){return e===t?new br(function(e){return n.schedulePeriodic(0,t,function(t){e.onNext(t);return t+1})}):Ot(function(){return observableTimerDateAndPeriod(new Date(n.now()+e),t,n)})}var ir=vt.interval=function(e,t){return observableTimerTimeSpanAndPeriod(e,e,He(t)?t:tt)};var or=vt.timer=function(e,t,r){var i;He(r)||(r=tt);if(t!=null&&typeof t==="number"){i=t}else if(He(t)){r=t}if((e instanceof Date||typeof e==="number")&&i===n){return _observableTimer(e,r)}if(e instanceof Date&&i!==n){return observableTimerDateAndPeriod(e,t,r)}return observableTimerTimeSpanAndPeriod(e,i,r)};function observableDelayRelative(e,t,n){return new br(function(r){var i=false,o=new Be,a=null,s=[],c=false,u;u=e.materialize().timestamp(n).subscribe(function(e){var u,l;if(e.value.kind==="E"){s=[];s.push(e);a=e.value.error;l=!c}else{s.push({value:e.value,timestamp:e.timestamp+t});l=!i;i=true}if(l){if(a!==null){r.onError(a)}else{u=new Pe;o.setDisposable(u);u.setDisposable(n.scheduleRecursiveFuture(null,t,function(e,t){var o,u,l,f;if(a!==null){return}c=true;do{l=null;if(s.length>0&&s[0].timestamp-n.now()<=0){l=s.shift().value}if(l!==null){l.accept(r)}}while(l!==null);f=false;u=0;if(s.length>0){f=true;u=Math.max(0,s[0].timestamp-n.now())}else{i=false}o=a;c=false;if(o!==null){r.onError(o)}else if(f){t(null,u)}}))}}});return new Ne(u,o)},e)}function observableDelayAbsolute(e,t,n){return Ot(function(){return observableDelayRelative(e,t-n.now(),n)})}function delayWithSelector(e,t,n){var r,i;if(x(t)){i=t}else{r=t;i=n}return new br(function(t){var n=new Ce,o=false,a=new Be;function start(){a.setDisposable(e.subscribe(function(e){var r=j(i)(e);if(r===k){return t.onError(r.e)}var o=new Pe;n.add(o);o.setDisposable(r.subscribe(function(){t.onNext(e);n.remove(o);done()},function(e){t.onError(e)},function(){t.onNext(e);n.remove(o);done()}))},function(e){t.onError(e)},function(){o=true;a.dispose();done()}))}function done(){o&&n.length===0&&t.onCompleted()}if(!r){start()}else{a.setDisposable(r.subscribe(start,function(e){t.onError(e)},start))}return new Ne(a,n)},e)}mt.delay=function(){var e=arguments[0];if(typeof e==="number"||e instanceof Date){var t=e,n=arguments[1];He(n)||(n=tt);return t instanceof Date?observableDelayAbsolute(this,t,n):observableDelayRelative(this,t,n)}else if(vt.isObservable(e)||x(e)){return delayWithSelector(this,e,arguments[1])}else{throw new Error("Invalid arguments")}};var ar=function(e){Se(DebounceObservable,e);function DebounceObservable(t,n,r){He(r)||(r=tt);this.source=t;this._dt=n;this._s=r;e.call(this)}DebounceObservable.prototype.subscribeCore=function(e){var t=new Be;return new Ne(this.source.subscribe(new sr(e,this._dt,this._s,t)),t)};return DebounceObservable}(yt);var sr=function(e){Se(DebounceObserver,e);function DebounceObserver(t,n,r,i){this._o=t;this._d=n;this._scheduler=r;this._c=i;this._v=null;this._hv=false;this._id=0;e.call(this)}function scheduleFuture(e,t){t.self._hv&&t.self._id===t.currentId&&t.self._o.onNext(t.x);t.self._hv=false}DebounceObserver.prototype.next=function(e){this._hv=true;this._v=e;var t=++this._id,n=new Pe;this._c.setDisposable(n);n.setDisposable(this._scheduler.scheduleFuture(this,this._d,function(n,r){r._hv&&r._id===t&&r._o.onNext(e);r._hv=false}))};DebounceObserver.prototype.error=function(e){this._c.dispose();this._o.onError(e);this._hv=false;this._id++};DebounceObserver.prototype.completed=function(){this._c.dispose();this._hv&&this._o.onNext(this._v);this._o.onCompleted();this._hv=false;this._id++};return DebounceObserver}(dt);function debounceWithSelector(e,t){return new br(function(n){var r,i=false,o=new Be,a=0;var s=e.subscribe(function(e){var s=j(t)(e);if(s===k){return n.onError(s.e)}w(s)&&(s=$n(s));i=true;r=e;a++;var c=a,u=new Pe;o.setDisposable(u);u.setDisposable(s.subscribe(function(){i&&a===c&&n.onNext(r);i=false;u.dispose()},function(e){n.onError(e)},function(){i&&a===c&&n.onNext(r);i=false;u.dispose()}))},function(e){o.dispose();n.onError(e);i=false;a++},function(){o.dispose();i&&n.onNext(r);n.onCompleted();i=false;a++});return new Ne(s,o)},e)}mt.debounce=function(){if(x(arguments[0])){return debounceWithSelector(this,arguments[0])}else if(typeof arguments[0]==="number"){return new ar(this,arguments[0],arguments[1])}else{throw new Error("Invalid arguments")}};var cr=function(e){Se(TimestampObservable,e);function TimestampObservable(t,n){this.source=t;this._s=n;e.call(this)}TimestampObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new ur(e,this._s))};return TimestampObservable}(yt);var ur=function(e){Se(TimestampObserver,e);function TimestampObserver(t,n){this._o=t;this._s=n;e.call(this)}TimestampObserver.prototype.next=function(e){this._o.onNext({value:e,timestamp:this._s.now()})};TimestampObserver.prototype.error=function(e){this._o.onError(e)};TimestampObserver.prototype.completed=function(){this._o.onCompleted()};return TimestampObserver}(dt);mt.timestamp=function(e){He(e)||(e=tt);return new cr(this,e)};var lr=function(e){Se(SampleObservable,e);function SampleObservable(t,n){this.source=t;this._sampler=n;e.call(this)}SampleObservable.prototype.subscribeCore=function(e){var t={o:e,atEnd:false,value:null,hasValue:false,sourceSubscription:new Pe};t.sourceSubscription.setDisposable(this.source.subscribe(new pr(t)));return new Ne(t.sourceSubscription,this._sampler.subscribe(new fr(t)))};return SampleObservable}(yt);var fr=function(e){Se(SamplerObserver,e);function SamplerObserver(t){this._s=t;e.call(this)}SamplerObserver.prototype._handleMessage=function(){if(this._s.hasValue){this._s.hasValue=false;this._s.o.onNext(this._s.value)}this._s.atEnd&&this._s.o.onCompleted()};SamplerObserver.prototype.next=function(){this._handleMessage()};SamplerObserver.prototype.error=function(e){this._s.onError(e)};SamplerObserver.prototype.completed=function(){this._handleMessage()};return SamplerObserver}(dt);var pr=function(e){Se(SampleSourceObserver,e);function SampleSourceObserver(t){this._s=t;e.call(this)}SampleSourceObserver.prototype.next=function(e){this._s.hasValue=true;this._s.value=e};SampleSourceObserver.prototype.error=function(e){this._s.o.onError(e)};SampleSourceObserver.prototype.completed=function(){this._s.atEnd=true;this._s.sourceSubscription.dispose()};return SampleSourceObserver}(dt);mt.sample=function(e,t){He(t)||(t=tt);return typeof e==="number"?new lr(this,ir(e,t)):new lr(this,e)};var dr=p.TimeoutError=function(e){this.message=e||"Timeout has occurred";this.name="TimeoutError";Error.call(this)};dr.prototype=Object.create(Error.prototype);function timeoutWithSelector(e,t,n,r){if(x(t)){r=n;n=t;t=Mt()}vt.isObservable(r)||(r=Jt(new dr));return new br(function(i){var o=new Be,a=new Be,s=new Pe;o.setDisposable(s);var c=0,u=false;function setTimer(e){var t=c,n=new Pe;function timerWins(){u=t===c;return u}a.setDisposable(n);n.setDisposable(e.subscribe(function(){timerWins()&&o.setDisposable(r.subscribe(i));n.dispose()},function(e){timerWins()&&i.onError(e)},function(){timerWins()&&o.setDisposable(r.subscribe(i))}))}setTimer(t);function oWins(){var e=!u;if(e){c++}return e}s.setDisposable(e.subscribe(function(e){if(oWins()){i.onNext(e);var t=j(n)(e);if(t===k){return i.onError(t.e)}setTimer(w(t)?$n(t):t)}},function(e){oWins()&&i.onError(e)},function(){oWins()&&i.onCompleted()}));return new Ne(o,a)},e)}function timeout(e,t,n,r){if(He(n)){r=n;n=Jt(new dr)}if(n instanceof Error){n=Jt(n)}He(r)||(r=tt);vt.isObservable(n)||(n=Jt(new dr));return new br(function(i){var o=0,a=new Pe,s=new Be,c=false,u=new Be;s.setDisposable(a);function createTimer(){var e=o;u.setDisposable(r.scheduleFuture(null,t,function(){c=o===e;if(c){w(n)&&(n=$n(n));s.setDisposable(n.subscribe(i))}}))}createTimer();a.setDisposable(e.subscribe(function(e){if(!c){o++;i.onNext(e);createTimer()}},function(e){if(!c){o++;i.onError(e)}},function(){if(!c){o++;i.onCompleted()}}));return new Ne(s,u)},e)}mt.timeout=function(){var e=arguments[0];if(e instanceof Date||typeof e==="number"){return timeout(this,e,arguments[1],arguments[2])}else if(vt.isObservable(e)||x(e)){return timeoutWithSelector(this,e,arguments[1],arguments[2])}else{throw new Error("Invalid arguments")}};mt.throttle=function(e,t){He(t)||(t=tt);var n=+e||0;if(n<=0){throw new RangeError("windowDuration cannot be less or equal zero.")}var r=this;return new br(function(e){var i=0;return r.subscribe(function(r){var o=t.now();if(i===0||o-i>=n){i=o;e.onNext(r)}},function(t){e.onError(t)},function(){e.onCompleted()})},r)};var hr=function(e){Se(PausableObservable,e);function PausableObservable(t,n){this.source=t;this.controller=new kr;if(n&&n.subscribe){this.pauser=this.controller.merge(n)}else{this.pauser=this.controller}e.call(this)}PausableObservable.prototype._subscribe=function(e){var t=this.source.publish(),n=t.subscribe(e),r=De;var i=this.pauser.distinctUntilChanged().subscribe(function(e){if(e){r=t.connect()}else{r.dispose();r=De}});return new ze([n,r,i])};PausableObservable.prototype.pause=function(){this.controller.onNext(false)};PausableObservable.prototype.resume=function(){this.controller.onNext(true)};return PausableObservable}(vt);mt.pausable=function(e){return new hr(this,e)};function combineLatestSource(e,t,n){return new br(function(r){var i=[false,false],o=false,a=false,s=new Array(2),c;function next(e,t){s[t]=e;i[t]=true;if(o||(o=i.every(h))){if(c){return r.onError(c)}var u=j(n).apply(null,s);if(u===k){return r.onError(u.e)}r.onNext(u)}a&&s[1]&&r.onCompleted()}return new Ne(e.subscribe(function(e){next(e,0)},function(e){if(s[1]){r.onError(e)}else{c=e}},function(){a=true;s[1]&&r.onCompleted()}),t.subscribe(function(e){next(e,1)},function(e){r.onError(e)},function(){a=true;next(true,1)}))},e)}var mr=function(e){Se(PausableBufferedObservable,e);function PausableBufferedObservable(t,n){this.source=t;this.controller=new kr;if(n&&n.subscribe){this.pauser=this.controller.merge(n)}else{this.pauser=this.controller}e.call(this)}PausableBufferedObservable.prototype._subscribe=function(e){var t=[],r;function drainQueue(){while(t.length>0){e.onNext(t.shift())}}var i=combineLatestSource(this.source,this.pauser.startWith(false).distinctUntilChanged(),function(e,t){return{data:e,shouldFire:t}}).subscribe(function(i){if(r!==n&&i.shouldFire!==r){r=i.shouldFire;if(i.shouldFire){drainQueue()}}else{r=i.shouldFire;if(i.shouldFire){e.onNext(i.data)}else{t.push(i.data)}}},function(t){drainQueue();e.onError(t)},function(){drainQueue();e.onCompleted()});return i};PausableBufferedObservable.prototype.pause=function(){this.controller.onNext(false)};PausableBufferedObservable.prototype.resume=function(){this.controller.onNext(true)};return PausableBufferedObservable}(vt);mt.pausableBuffered=function(e){return new mr(this,e)};var vr=function(e){Se(ControlledObservable,e);function ControlledObservable(t,n,r){e.call(this);this.subject=new gr(n,r);this.source=t.multicast(this.subject).refCount()}ControlledObservable.prototype._subscribe=function(e){return this.source.subscribe(e)};ControlledObservable.prototype.request=function(e){return this.subject.request(e==null?-1:e)};return ControlledObservable}(vt);var gr=function(e){Se(ControlledSubject,e);function ControlledSubject(t,n){t==null&&(t=true);e.call(this);this.subject=new kr;this.enableQueue=t;this.queue=t?[]:null;this.requestedCount=0;this.requestedDisposable=null;this.error=null;this.hasFailed=false;this.hasCompleted=false;this.scheduler=n||Je}Ee(ControlledSubject.prototype,ft,{_subscribe:function(e){return this.subject.subscribe(e)},onCompleted:function(){this.hasCompleted=true;if(!this.enableQueue||this.queue.length===0){this.subject.onCompleted();this.disposeCurrentRequest()}else{this.queue.push(it.createOnCompleted())}},onError:function(e){this.hasFailed=true;this.error=e;if(!this.enableQueue||this.queue.length===0){this.subject.onError(e);this.disposeCurrentRequest()}else{this.queue.push(it.createOnError(e))}},onNext:function(e){if(this.requestedCount<=0){this.enableQueue&&this.queue.push(it.createOnNext(e))}else{this.requestedCount--===0&&this.disposeCurrentRequest();this.subject.onNext(e)}},_processRequest:function(e){if(this.enableQueue){while(this.queue.length>0&&(e>0||this.queue[0].kind!=="N")){var t=this.queue.shift();t.accept(this.subject);if(t.kind==="N"){e--}else{this.disposeCurrentRequest();this.queue=[]}}}return e},request:function(e){this.disposeCurrentRequest();var t=this;this.requestedDisposable=this.scheduler.schedule(e,function(e,n){var r=t._processRequest(n);var i=t.hasCompleted||t.hasFailed;if(!i&&r>0){t.requestedCount=r;return Fe(function(){t.requestedCount=0})}});return this.requestedDisposable},disposeCurrentRequest:function(){if(this.requestedDisposable){this.requestedDisposable.dispose();this.requestedDisposable=null}}});return ControlledSubject}(vt);mt.controlled=function(e,t){if(e&&He(e)){t=e;e=true}if(e==null){e=true}return new vr(this,e,t)};mt.pipe=function(e){var t=this.pausableBuffered();function onDrain(){t.resume()}e.addListener("drain",onDrain);t.subscribe(function(n){!e.write(String(n))&&t.pause()},function(t){e.emit("error",t)},function(){!e._isStdio&&e.end();e.removeListener("drain",onDrain)});t.resume();return e};var yr=function(e){Se(TransduceObserver,e);function TransduceObserver(t,n){this._o=t;this._xform=n;e.call(this)}TransduceObserver.prototype.next=function(e){var t=j(this._xform["@@transducer/step"]).call(this._xform,this._o,e);if(t===k){this._o.onError(t.e)}};TransduceObserver.prototype.error=function(e){this._o.onError(e)};TransduceObserver.prototype.completed=function(){this._xform["@@transducer/result"](this._o)};return TransduceObserver}(dt);function transformForObserver(e){return{"@@transducer/init":function(){return e},"@@transducer/step":function(e,t){return e.onNext(t)},"@@transducer/result":function(e){return e.onCompleted()}}}mt.transduce=function(e){var t=this;return new br(function(n){var r=e(transformForObserver(n));return t.subscribe(new yr(n,r))},t)};var br=p.AnonymousObservable=function(e){Se(AnonymousObservable,e);function fixSubscriber(e){return e&&x(e.dispose)?e:x(e)?Fe(e):De}function setDisposable(e,t){var n=t[0],r=t[1];var i=j(r.__subscribe).call(r,n);if(i===k&&!n.fail(k.e)){thrower(k.e)}n.setDisposable(fixSubscriber(i))}function AnonymousObservable(t,n){this.source=n;this.__subscribe=t;e.call(this)}AnonymousObservable.prototype._subscribe=function(e){var t=new wr(e),n=[t,this];if(Je.scheduleRequired()){Je.schedule(n,setDisposable)}else{setDisposable(null,n)}return t};return AnonymousObservable}(vt);var wr=function(e){Se(AutoDetachObserver,e);function AutoDetachObserver(t){e.call(this);this.observer=t;this.m=new Pe}var t=AutoDetachObserver.prototype;t.next=function(e){var t=j(this.observer.onNext).call(this.observer,e);if(t===k){this.dispose();thrower(t.e)}};t.error=function(e){var t=j(this.observer.onError).call(this.observer,e);this.dispose();t===k&&thrower(t.e)};t.completed=function(){var e=j(this.observer.onCompleted).call(this.observer);this.dispose();e===k&&thrower(e.e)};t.setDisposable=function(e){this.m.setDisposable(e)};t.getDisposable=function(){return this.m.getDisposable()};t.dispose=function(){e.prototype.dispose.call(this);this.m.dispose()};return AutoDetachObserver}(dt);var xr=function(e,t){this._s=e;this._o=t};xr.prototype.dispose=function(){if(!this._s.isDisposed&&this._o!==null){var e=this._s.observers.indexOf(this._o);this._s.observers.splice(e,1);this._o=null}};var kr=p.Subject=function(e){Se(Subject,e);function Subject(){e.call(this);this.isDisposed=false;this.isStopped=false;this.observers=[];this.hasError=false}Ee(Subject.prototype,ft.prototype,{_subscribe:function(e){Ie(this);if(!this.isStopped){this.observers.push(e);return new xr(this,e)}if(this.hasError){e.onError(this.error);return De}e.onCompleted();return De},hasObservers:function(){Ie(this);return this.observers.length>0},onCompleted:function(){Ie(this);if(!this.isStopped){this.isStopped=true;for(var e=0,t=cloneArray(this.observers),n=t.length;e<n;e++){t[e].onCompleted()}this.observers.length=0}},onError:function(e){Ie(this);if(!this.isStopped){this.isStopped=true;this.error=e;this.hasError=true;for(var t=0,n=cloneArray(this.observers),r=n.length;t<r;t++){n[t].onError(e)}this.observers.length=0}},onNext:function(e){Ie(this);if(!this.isStopped){for(var t=0,n=cloneArray(this.observers),r=n.length;t<r;t++){n[t].onNext(e)}}},dispose:function(){this.isDisposed=true;this.observers=null}});Subject.create=function(e,t){return new Sr(e,t)};return Subject}(vt);var jr=p.AsyncSubject=function(e){Se(AsyncSubject,e);function AsyncSubject(){e.call(this);this.isDisposed=false;this.isStopped=false;this.hasValue=false;this.observers=[];this.hasError=false}Ee(AsyncSubject.prototype,ft.prototype,{_subscribe:function(e){Ie(this);if(!this.isStopped){this.observers.push(e);return new xr(this,e)}if(this.hasError){e.onError(this.error)}else if(this.hasValue){e.onNext(this.value);e.onCompleted()}else{e.onCompleted()}return De},hasObservers:function(){Ie(this);return this.observers.length>0},onCompleted:function(){var e,t;Ie(this);if(!this.isStopped){this.isStopped=true;var n=cloneArray(this.observers),t=n.length;if(this.hasValue){for(e=0;e<t;e++){var r=n[e];r.onNext(this.value);r.onCompleted()}}else{for(e=0;e<t;e++){n[e].onCompleted()}}this.observers.length=0}},onError:function(e){Ie(this);if(!this.isStopped){this.isStopped=true;this.hasError=true;this.error=e;for(var t=0,n=cloneArray(this.observers),r=n.length;t<r;t++){n[t].onError(e)}this.observers.length=0}},onNext:function(e){Ie(this);if(this.isStopped){return}this.value=e;this.hasValue=true},dispose:function(){this.isDisposed=true;this.observers=null;this.error=null;this.value=null}});return AsyncSubject}(vt);var Sr=p.AnonymousSubject=function(e){Se(AnonymousSubject,e);function AnonymousSubject(t,n){this.observer=t;this.observable=n;e.call(this)}Ee(AnonymousSubject.prototype,ft.prototype,{_subscribe:function(e){return this.observable.subscribe(e)},onCompleted:function(){this.observer.onCompleted()},onError:function(e){this.observer.onError(e)},onNext:function(e){this.observer.onNext(e)}});return AnonymousSubject}(vt);var Er=p.BehaviorSubject=function(e){Se(BehaviorSubject,e);function BehaviorSubject(t){e.call(this);this.value=t;this.observers=[];this.isDisposed=false;this.isStopped=false;this.hasError=false}Ee(BehaviorSubject.prototype,ft.prototype,{_subscribe:function(e){Ie(this);if(!this.isStopped){this.observers.push(e);e.onNext(this.value);return new xr(this,e)}if(this.hasError){e.onError(this.error)}else{e.onCompleted()}return De},getValue:function(){Ie(this);if(this.hasError){thrower(this.error)}return this.value},hasObservers:function(){Ie(this);return this.observers.length>0},onCompleted:function(){Ie(this);if(this.isStopped){return}this.isStopped=true;for(var e=0,t=cloneArray(this.observers),n=t.length;e<n;e++){t[e].onCompleted()}this.observers.length=0},onError:function(e){Ie(this);if(this.isStopped){return}this.isStopped=true;this.hasError=true;this.error=e;for(var t=0,n=cloneArray(this.observers),r=n.length;t<r;t++){n[t].onError(e)}this.observers.length=0},onNext:function(e){Ie(this);if(this.isStopped){return}this.value=e;for(var t=0,n=cloneArray(this.observers),r=n.length;t<r;t++){n[t].onNext(e)}},dispose:function(){this.isDisposed=true;this.observers=null;this.value=null;this.error=null}});return BehaviorSubject}(vt);var _r=p.ReplaySubject=function(e){var t=Math.pow(2,53)-1;function createRemovableDisposable(e,t){return Fe(function(){t.dispose();!e.isDisposed&&e.observers.splice(e.observers.indexOf(t),1)})}Se(ReplaySubject,e);function ReplaySubject(n,r,i){this.bufferSize=n==null?t:n;this.windowSize=r==null?t:r;this.scheduler=i||Je;this.q=[];this.observers=[];this.isStopped=false;this.isDisposed=false;this.hasError=false;this.error=null;e.call(this)}Ee(ReplaySubject.prototype,ft.prototype,{_subscribe:function(e){Ie(this);var t=new gt(this.scheduler,e),n=createRemovableDisposable(this,t);this._trim(this.scheduler.now());this.observers.push(t);for(var r=0,i=this.q.length;r<i;r++){t.onNext(this.q[r].value)}if(this.hasError){t.onError(this.error)}else if(this.isStopped){t.onCompleted()}t.ensureActive();return n},hasObservers:function(){Ie(this);return this.observers.length>0},_trim:function(e){while(this.q.length>this.bufferSize){this.q.shift()}while(this.q.length>0&&e-this.q[0].interval>this.windowSize){this.q.shift()}},onNext:function(e){Ie(this);if(this.isStopped){return}var t=this.scheduler.now();this.q.push({interval:t,value:e});this._trim(t);for(var n=0,r=cloneArray(this.observers),i=r.length;n<i;n++){var o=r[n];o.onNext(e);o.ensureActive()}},onError:function(e){Ie(this);if(this.isStopped){return}this.isStopped=true;this.error=e;this.hasError=true;var t=this.scheduler.now();this._trim(t);for(var n=0,r=cloneArray(this.observers),i=r.length;n<i;n++){var o=r[n];o.onError(e);o.ensureActive()}this.observers.length=0},onCompleted:function(){Ie(this);if(this.isStopped){return}this.isStopped=true;var e=this.scheduler.now();this._trim(e);for(var t=0,n=cloneArray(this.observers),r=n.length;t<r;t++){var i=n[t];i.onCompleted();i.ensureActive()}this.observers.length=0},dispose:function(){this.isDisposed=true;this.observers=null}});return ReplaySubject}(vt);p.Pauser=function(e){Se(Pauser,e);function Pauser(){e.call(this)}Pauser.prototype.pause=function(){this.onNext(false)};Pauser.prototype.resume=function(){this.onNext(true)};return Pauser}(kr);if(typeof define=="function"&&typeof define.amd=="object"&&define.amd){f.Rx=p;define(function(){return p})}else if(i&&o){if(u){(o.exports=p).Rx=p}else{i.Rx=p}}else{f.Rx=p}var Cr=captureLine()}).call(this)},4036:function(e){"use strict";e.exports=function generate_dependencies(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f="errs__"+i;var p=e.util.copy(e);var d="";p.level++;var h="valid"+p.level;var m={},v={},g=e.opts.ownProperties;for(x in a){var y=a[x];var b=Array.isArray(y)?v:m;b[x]=y}r+="var "+f+" = errors;";var w=e.errorPath;r+="var missing"+i+";";for(var x in v){b=v[x];if(b.length){r+=" if ( "+l+e.util.getProperty(x)+" !== undefined ";if(g){r+=" && Object.prototype.hasOwnProperty.call("+l+", '"+e.util.escapeQuotes(x)+"') "}if(u){r+=" && ( ";var k=b;if(k){var j,S=-1,E=k.length-1;while(S<E){j=k[S+=1];if(S){r+=" || "}var _=e.util.getProperty(j),C=l+_;r+=" ( ( "+C+" === undefined ";if(g){r+=" || ! Object.prototype.hasOwnProperty.call("+l+", '"+e.util.escapeQuotes(j)+"') "}r+=") && (missing"+i+" = "+e.util.toQuotedString(e.opts.jsonPointers?j:_)+") ) "}}r+=")) { ";var A="missing"+i,O="' + "+A+" + '";if(e.opts._errorDataPathProperty){e.errorPath=e.opts.jsonPointers?e.util.getPathExpr(w,A,true):w+" + "+A}var F=F||[];F.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"dependencies"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { property: '"+e.util.escapeQuotes(x)+"', missingProperty: '"+O+"', depsCount: "+b.length+", deps: '"+e.util.escapeQuotes(b.length==1?b[0]:b.join(", "))+"' } ";if(e.opts.messages!==false){r+=" , message: 'should have ";if(b.length==1){r+="property "+e.util.escapeQuotes(b[0])}else{r+="properties "+e.util.escapeQuotes(b.join(", "))}r+=" when property "+e.util.escapeQuotes(x)+" is present' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var D=r;r=F.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+D+"]); "}else{r+=" validate.errors = ["+D+"]; return false; "}}else{r+=" var err = "+D+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}}else{r+=" ) { ";var T=b;if(T){var j,I=-1,R=T.length-1;while(I<R){j=T[I+=1];var _=e.util.getProperty(j),O=e.util.escapeQuotes(j),C=l+_;if(e.opts._errorDataPathProperty){e.errorPath=e.util.getPath(w,j,e.opts.jsonPointers)}r+=" if ( "+C+" === undefined ";if(g){r+=" || ! Object.prototype.hasOwnProperty.call("+l+", '"+e.util.escapeQuotes(j)+"') "}r+=") { var err = ";if(e.createErrors!==false){r+=" { keyword: '"+"dependencies"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { property: '"+e.util.escapeQuotes(x)+"', missingProperty: '"+O+"', depsCount: "+b.length+", deps: '"+e.util.escapeQuotes(b.length==1?b[0]:b.join(", "))+"' } ";if(e.opts.messages!==false){r+=" , message: 'should have ";if(b.length==1){r+="property "+e.util.escapeQuotes(b[0])}else{r+="properties "+e.util.escapeQuotes(b.join(", "))}r+=" when property "+e.util.escapeQuotes(x)+" is present' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}r+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; } "}}}r+=" } ";if(u){d+="}";r+=" else { "}}}e.errorPath=w;var P=p.baseId;for(var x in m){var y=m[x];if(e.opts.strictKeywords?typeof y=="object"&&Object.keys(y).length>0:e.util.schemaHasRules(y,e.RULES.all)){r+=" "+h+" = true; if ( "+l+e.util.getProperty(x)+" !== undefined ";if(g){r+=" && Object.prototype.hasOwnProperty.call("+l+", '"+e.util.escapeQuotes(x)+"') "}r+=") { ";p.schema=y;p.schemaPath=s+e.util.getProperty(x);p.errSchemaPath=c+"/"+e.util.escapeFragment(x);r+=" "+e.validate(p)+" ";p.baseId=P;r+=" } ";if(u){r+=" if ("+h+") { ";d+="}"}}}if(u){r+=" "+d+" if ("+f+" == errors) {"}r=e.util.cleanUpCode(r);return r}},4045:function(e,t,n){var r=n(5212);e.exports=function(e,t){if(!r(e))return e;var n,i;if(t&&typeof(n=e.toString)=="function"&&!r(i=n.call(e)))return i;if(typeof(n=e.valueOf)=="function"&&!r(i=n.call(e)))return i;if(!t&&typeof(n=e.toString)=="function"&&!r(i=n.call(e)))return i;throw TypeError("Can't convert object to primitive value")}},4068:function(e,t){function swap(e,t,n){var r=e[t];e[t]=e[n];e[n]=r}function randomIntInRange(e,t){return Math.round(e+Math.random()*(t-e))}function doQuickSort(e,t,n,r){if(n<r){var i=randomIntInRange(n,r);var o=n-1;swap(e,i,r);var a=e[r];for(var s=n;s<r;s++){if(t(e[s],a)<=0){o+=1;swap(e,o,s)}}swap(e,o+1,s);var c=o+1;doQuickSort(e,t,n,c-1);doQuickSort(e,t,c+1,r)}}t.quickSort=function(e,t){doQuickSort(e,t,0,e.length-1)}},4070:function(e,t,n){e=n.nmd(e);Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(1390);var o=n(5917);t.API_VERSION=3;var a=30;var s=100;var c=function(){function Hub(e,n,r){if(n===void 0){n=new o.Scope}if(r===void 0){r=t.API_VERSION}this._version=r;this._stack=[];this._stack.push({client:e,scope:n})}Hub.prototype._invokeClient=function(e){var t;var n=[];for(var i=1;i<arguments.length;i++){n[i-1]=arguments[i]}var o=this.getStackTop();if(o&&o.client&&o.client[e]){(t=o.client)[e].apply(t,r.__spread(n,[o.scope]))}};Hub.prototype.isOlderThan=function(e){return this._version<e};Hub.prototype.bindClient=function(e){var t=this.getStackTop();t.client=e};Hub.prototype.pushScope=function(){var e=this.getStack();var t=e.length>0?e[e.length-1].scope:undefined;var n=o.Scope.clone(t);this.getStack().push({client:this.getClient(),scope:n});return n};Hub.prototype.popScope=function(){return this.getStack().pop()!==undefined};Hub.prototype.withScope=function(e){var t=this.pushScope();try{e(t)}finally{this.popScope()}};Hub.prototype.getClient=function(){return this.getStackTop().client};Hub.prototype.getScope=function(){return this.getStackTop().scope};Hub.prototype.getStack=function(){return this._stack};Hub.prototype.getStackTop=function(){return this._stack[this._stack.length-1]};Hub.prototype.captureException=function(e,t){var n=this._lastEventId=i.uuid4();var o=t;if(!t){var a=void 0;try{throw new Error("Sentry syntheticException")}catch(e){a=e}o={originalException:e,syntheticException:a}}this._invokeClient("captureException",e,r.__assign({},o,{event_id:n}));return n};Hub.prototype.captureMessage=function(e,t,n){var o=this._lastEventId=i.uuid4();var a=n;if(!n){var s=void 0;try{throw new Error(e)}catch(e){s=e}a={originalException:e,syntheticException:s}}this._invokeClient("captureMessage",e,t,r.__assign({},a,{event_id:o}));return o};Hub.prototype.captureEvent=function(e,t){var n=this._lastEventId=i.uuid4();this._invokeClient("captureEvent",e,r.__assign({},t,{event_id:n}));return n};Hub.prototype.lastEventId=function(){return this._lastEventId};Hub.prototype.addBreadcrumb=function(e,t){var n=this.getStackTop();if(!n.scope||!n.client){return}var o=n.client.getOptions&&n.client.getOptions()||{},c=o.beforeBreadcrumb,u=c===void 0?null:c,l=o.maxBreadcrumbs,f=l===void 0?a:l;if(f<=0){return}var p=(new Date).getTime()/1e3;var d=r.__assign({timestamp:p},e);var h=u?i.consoleSandbox(function(){return u(d,t)}):d;if(h===null){return}n.scope.addBreadcrumb(h,Math.min(f,s))};Hub.prototype.setUser=function(e){var t=this.getStackTop();if(!t.scope){return}t.scope.setUser(e)};Hub.prototype.setTags=function(e){var t=this.getStackTop();if(!t.scope){return}t.scope.setTags(e)};Hub.prototype.setExtras=function(e){var t=this.getStackTop();if(!t.scope){return}t.scope.setExtras(e)};Hub.prototype.setTag=function(e,t){var n=this.getStackTop();if(!n.scope){return}n.scope.setTag(e,t)};Hub.prototype.setExtra=function(e,t){var n=this.getStackTop();if(!n.scope){return}n.scope.setExtra(e,t)};Hub.prototype.setContext=function(e,t){var n=this.getStackTop();if(!n.scope){return}n.scope.setContext(e,t)};Hub.prototype.configureScope=function(e){var t=this.getStackTop();if(t.scope&&t.client){e(t.scope)}};Hub.prototype.run=function(e){var t=makeMain(this);try{e(this)}finally{makeMain(t)}};Hub.prototype.getIntegration=function(e){var t=this.getClient();if(!t){return null}try{return t.getIntegration(e)}catch(t){i.logger.warn("Cannot retrieve integration "+e.id+" from the current Hub");return null}};Hub.prototype.traceHeaders=function(){var e=this.getStackTop();if(e.scope&&e.client){var t=e.scope.getSpan();if(t){return{"sentry-trace":t.toTraceparent()}}}return{}};return Hub}();t.Hub=c;function getMainCarrier(){var e=i.getGlobalObject();e.__SENTRY__=e.__SENTRY__||{hub:undefined};return e}t.getMainCarrier=getMainCarrier;function makeMain(e){var t=getMainCarrier();var n=getHubFromCarrier(t);setHubOnCarrier(t,e);return n}t.makeMain=makeMain;function getCurrentHub(){var n=getMainCarrier();if(!hasHubOnCarrier(n)||getHubFromCarrier(n).isOlderThan(t.API_VERSION)){setHubOnCarrier(n,new c)}try{var r=i.dynamicRequire(e,"domain");var a=r.active;if(!a){return getHubFromCarrier(n)}if(!hasHubOnCarrier(a)||getHubFromCarrier(a).isOlderThan(t.API_VERSION)){var s=getHubFromCarrier(n).getStackTop();setHubOnCarrier(a,new c(s.client,o.Scope.clone(s.scope)))}return getHubFromCarrier(a)}catch(e){return getHubFromCarrier(n)}}t.getCurrentHub=getCurrentHub;function hasHubOnCarrier(e){if(e&&e.__SENTRY__&&e.__SENTRY__.hub){return true}return false}function getHubFromCarrier(e){if(e&&e.__SENTRY__&&e.__SENTRY__.hub){return e.__SENTRY__.hub}e.__SENTRY__=e.__SENTRY__||{};e.__SENTRY__.hub=new c;return e.__SENTRY__.hub}t.getHubFromCarrier=getHubFromCarrier;function setHubOnCarrier(e,t){if(!e){return false}e.__SENTRY__=e.__SENTRY__||{};e.__SENTRY__.hub=t;return true}t.setHubOnCarrier=setHubOnCarrier},4081:function(e,t){"use strict";var n=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof __values==="function"?__values(e):e[Symbol.iterator](),n={},verb("next"),verb("throw"),verb("return"),n[Symbol.asyncIterator]=function(){return this},n);function verb(t){n[t]=e[t]&&function(n){return new Promise(function(r,i){n=e[t](n),settle(r,i,n.done,n.value)})}}function settle(e,t,n,r){Promise.resolve(r).then(function(t){e({value:t,done:n})},t)}};var r=this&&this.__await||function(e){return this instanceof r?(this.v=e,this):new r(e)};var i=this&&this.__asyncGenerator||function(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var i=n.apply(e,t||[]),o,a=[];return o={},verb("next"),verb("throw"),verb("return"),o[Symbol.asyncIterator]=function(){return this},o;function verb(e){if(i[e])o[e]=function(t){return new Promise(function(n,r){a.push([e,t,n,r])>1||resume(e,t)})}}function resume(e,t){try{step(i[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof r?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume("next",e)}function reject(e){resume("throw",e)}function settle(e,t){if(e(t),a.shift(),a.length)resume(a[0][0],a[0][1])}};Object.defineProperty(t,"__esModule",{value:true});function returnify(e){return i(this,arguments,function*returnify_1(){var t,i;let o=e();while(true){try{try{for(var a=n(o),s;s=yield r(a.next()),!s.done;){const e=s.value;yield yield r([null,e])}}catch(e){t={error:e}}finally{try{if(s&&!s.done&&(i=a.return))yield r(i.call(a))}finally{if(t)throw t.error}}break}catch(t){yield yield r([t,null]);o=e()}}})}t.default=returnify},4088:function(e,t,n){var r=n(9380);var i=process.cwd;var o=null;var a=process.env.GRACEFUL_FS_PLATFORM||process.platform;process.cwd=function(){if(!o)o=i.call(process);return o};try{process.cwd()}catch(e){}var s=process.chdir;process.chdir=function(e){o=null;s.call(process,e)};e.exports=patch;function patch(e){if(r.hasOwnProperty("O_SYMLINK")&&process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)){patchLchmod(e)}if(!e.lutimes){patchLutimes(e)}e.chown=chownFix(e.chown);e.fchown=chownFix(e.fchown);e.lchown=chownFix(e.lchown);e.chmod=chmodFix(e.chmod);e.fchmod=chmodFix(e.fchmod);e.lchmod=chmodFix(e.lchmod);e.chownSync=chownFixSync(e.chownSync);e.fchownSync=chownFixSync(e.fchownSync);e.lchownSync=chownFixSync(e.lchownSync);e.chmodSync=chmodFixSync(e.chmodSync);e.fchmodSync=chmodFixSync(e.fchmodSync);e.lchmodSync=chmodFixSync(e.lchmodSync);e.stat=statFix(e.stat);e.fstat=statFix(e.fstat);e.lstat=statFix(e.lstat);e.statSync=statFixSync(e.statSync);e.fstatSync=statFixSync(e.fstatSync);e.lstatSync=statFixSync(e.lstatSync);if(!e.lchmod){e.lchmod=function(e,t,n){if(n)process.nextTick(n)};e.lchmodSync=function(){}}if(!e.lchown){e.lchown=function(e,t,n,r){if(r)process.nextTick(r)};e.lchownSync=function(){}}if(a==="win32"){e.rename=function(t){return function(n,r,i){var o=Date.now();var a=0;t(n,r,function CB(s){if(s&&(s.code==="EACCES"||s.code==="EPERM")&&Date.now()-o<6e4){setTimeout(function(){e.stat(r,function(e,o){if(e&&e.code==="ENOENT")t(n,r,CB);else i(s)})},a);if(a<100)a+=10;return}if(i)i(s)})}}(e.rename)}e.read=function(t){function read(n,r,i,o,a,s){var c;if(s&&typeof s==="function"){var u=0;c=function(l,f,p){if(l&&l.code==="EAGAIN"&&u<10){u++;return t.call(e,n,r,i,o,a,c)}s.apply(this,arguments)}}return t.call(e,n,r,i,o,a,c)}read.__proto__=t;return read}(e.read);e.readSync=function(t){return function(n,r,i,o,a){var s=0;while(true){try{return t.call(e,n,r,i,o,a)}catch(e){if(e.code==="EAGAIN"&&s<10){s++;continue}throw e}}}}(e.readSync);function patchLchmod(e){e.lchmod=function(t,n,i){e.open(t,r.O_WRONLY|r.O_SYMLINK,n,function(t,r){if(t){if(i)i(t);return}e.fchmod(r,n,function(t){e.close(r,function(e){if(i)i(t||e)})})})};e.lchmodSync=function(t,n){var i=e.openSync(t,r.O_WRONLY|r.O_SYMLINK,n);var o=true;var a;try{a=e.fchmodSync(i,n);o=false}finally{if(o){try{e.closeSync(i)}catch(e){}}else{e.closeSync(i)}}return a}}function patchLutimes(e){if(r.hasOwnProperty("O_SYMLINK")){e.lutimes=function(t,n,i,o){e.open(t,r.O_SYMLINK,function(t,r){if(t){if(o)o(t);return}e.futimes(r,n,i,function(t){e.close(r,function(e){if(o)o(t||e)})})})};e.lutimesSync=function(t,n,i){var o=e.openSync(t,r.O_SYMLINK);var a;var s=true;try{a=e.futimesSync(o,n,i);s=false}finally{if(s){try{e.closeSync(o)}catch(e){}}else{e.closeSync(o)}}return a}}else{e.lutimes=function(e,t,n,r){if(r)process.nextTick(r)};e.lutimesSync=function(){}}}function chmodFix(t){if(!t)return t;return function(n,r,i){return t.call(e,n,r,function(e){if(chownErOk(e))e=null;if(i)i.apply(this,arguments)})}}function chmodFixSync(t){if(!t)return t;return function(n,r){try{return t.call(e,n,r)}catch(e){if(!chownErOk(e))throw e}}}function chownFix(t){if(!t)return t;return function(n,r,i,o){return t.call(e,n,r,i,function(e){if(chownErOk(e))e=null;if(o)o.apply(this,arguments)})}}function chownFixSync(t){if(!t)return t;return function(n,r,i){try{return t.call(e,n,r,i)}catch(e){if(!chownErOk(e))throw e}}}function statFix(t){if(!t)return t;return function(n,r,i){if(typeof r==="function"){i=r;r=null}function callback(e,t){if(t){if(t.uid<0)t.uid+=4294967296;if(t.gid<0)t.gid+=4294967296}if(i)i.apply(this,arguments)}return r?t.call(e,n,r,callback):t.call(e,n,callback)}}function statFixSync(t){if(!t)return t;return function(n,r){var i=r?t.call(e,n,r):t.call(e,n);if(i.uid<0)i.uid+=4294967296;if(i.gid<0)i.gid+=4294967296;return i}}function chownErOk(e){if(!e)return true;if(e.code==="ENOSYS")return true;var t=!process.getuid||process.getuid()!==0;if(t){if(e.code==="EINVAL"||e.code==="EPERM")return true}return false}}},4089:function(e){const t=["for","and","nor","but","or","yet","so"];const n=["a","an","the"];const r=["aboard","about","above","across","after","against","along","amid","among","anti","around","as","at","before","behind","below","beneath","beside","besides","between","beyond","but","by","concerning","considering","despite","down","during","except","excepting","excluding","following","for","from","in","inside","into","like","minus","near","of","off","on","onto","opposite","over","past","per","plus","regarding","round","save","since","than","through","to","toward","towards","under","underneath","unlike","until","up","upon","versus","via","with","within","without"];e.exports=new Set([...t,...n,...r])},4091:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof __values==="function"?__values(e):e[Symbol.iterator](),n={},verb("next"),verb("throw"),verb("return"),n[Symbol.asyncIterator]=function(){return this},n);function verb(t){n[t]=e[t]&&function(n){return new Promise(function(r,i){n=e[t](n),settle(r,i,n.done,n.value)})}}function settle(e,t,n,r){Promise.resolve(r).then(function(t){e({value:t,done:n})},t)}};var o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const a=n(5897);const s=n(4874);const c=n(7215);const u=o(n(9544));const l=o(n(1502));const f=o(n(772));const p=o(n(3041));const d=o(n(816));const h=o(n(2229));const m=o(n(7705));const v=o(n(3759));const g=n(2385);const y=o(n(6904));const b=o(n(2911));const w=o(n(8685));const x=o(n(462));const k=o(n(5593));const j=o(n(6056));const S=o(n(3241));const E=o(n(4495));const _=o(n(1505));const C=o(n(3266));const A=o(n(8652));const O=o(n(5821));const F=o(n(7905));const D=o(n(5283));const T=o(n(5637));const I=o(n(2672));const R=o(n(9471));const P=o(n(6346));const B=o(n(1092));const N=o(n(8952));const z=o(n(9603));const L=o(n(914));const M=o(n(5348));const U=o(n(586));const q=o(n(8109));const H=o(n(8860));const G=o(n(6873));const W=n(8715);const V=n(1612);const J=n(1612);const Y=o(n(9199));const Z=o(n(7283));let X;let Q;let K;let $;let ee;let te;let ne;let re;let ie;let oe;let ae;let se;let ce;let ue;let le;let fe;let pe;let de;let he;let me;let ve;const ge={};const ye=e=>Object.keys(e).filter(t=>e[t]===null);const be=e=>r(this,void 0,void 0,function*(){let t;for(const n of Object.keys(e)){if(typeof e[n]!=="undefined")continue;t=process.env[n];if(typeof t==="string"){te(`Reading ${u.default.bold(`"${u.default.bold(n)}"`)} from your env (as no value was specified)`);e[n]=t.replace(/^@/,"\\@")}else{ne(`No value specified for env ${u.default.bold(`"${u.default.bold(n)}"`)} and it was not found in your env.`);yield S.default(1);return}}});const we=e=>r(this,void 0,void 0,function*(){g.handleError(e);yield S.default(1)});const xe=(e,t)=>{if(!e){return{}}if(typeof e==="string"){e=[e]}if(Array.isArray(e)){return e.reduce((e,n)=>{let r;let i;const o=n.indexOf("=");if(o===-1){r=n;i=t}else{r=n.substr(0,o);i=n.substr(o+1)}e[r]=i;return e},{})}return e};const ke=e=>r(this,void 0,void 0,function*(){if(e.length===0){return{}}const t=[];for(const n of e){t.push({name:n,message:n})}n(998);te("Please enter values for the following environment variables:");const r=yield p.default.prompt(t);for(const e of Object.keys(r)){const t=r[e];if(t===""){yield we(`Enter a value for ${e}`)}}return r});function canUseZeroConfig(e){return r(this,void 0,void 0,function*(){try{const t=yield Z.default(a.join(e,"package.json"));if(!t||t instanceof Error){return false}const n=Object.assign({},t.dependencies,t.devDependencies);if(n.next||n.nuxt||n.gatsby||n.hexo||n.gridsome||n.umi||n.docusaurus||n["@docusaurus/core"]||n["preact-cli"]||n["ember-cli"]||n["@vue/cli-service"]||n["@angular/cli"]||n["polymer-cli"]||n["sirv-cli"]||n["react-scripts"]){return true}}catch(e){}return false})}function main(e,t,n,i){return r(this,void 0,void 0,function*(){X=d.default(e.argv.slice(2),i);if(X._[0]==="deploy"){X._.shift()}if(X._.length>0){Q=X._.map(e=>a.resolve(process.cwd(),e))}else{Q=[process.cwd()]}if(!(yield P.default(X._[0],n))){return 0}K=X.force;$=X.name;ee=X["session-affinity"];ae=X.debug;se=X.clipboard&&!X.C;ce=X["forward-npm"];ue=!X.links;le=X.public;fe=(X.regions||"").split(",").map(e=>e.trim()).filter(Boolean);de=X.verify===false;pe=X.scale===false;he=e.apiUrl;me=Boolean(process.stdout.isTTY);ve=!me;({log:te,error:ne,note:oe,debug:ie,warn:re}=n);const r=(yield canUseZeroConfig(Q[0]))?"https://zeit.co/guides/migrate-to-zeit-now":"https://zeit.co/docs/v2/advanced/platform/changes-in-now-2-0";re(`You are using an old version of the Now Platform. More: ${j.default(r)}`);const{authConfig:{token:o},config:s}=e;try{return yield sync({contextName:t,output:n,token:o,config:s,firstRun:true,deploymentType:undefined})}catch(e){yield we(e)}})}t.default=main;function sync({contextName:e,output:t,token:o,config:{currentTeam:p},firstRun:d,deploymentType:m}){return r(this,void 0,void 0,function*(){return new Promise((g,x)=>r(this,void 0,void 0,function*(){var g,k;let j=U.default();const A=X._[0];let O;let T=null;let R;if(Q.length===1){try{const e=yield f.default.lstat(Q[0]);if(e.isFile()){R=true;m="static"}}catch(e){let t;let r=false;const{fromGit:i,isRepoPath:o,gitPathParts:s}=n(9250);try{r=o(A)}catch(t){if(e.code==="INVALID_URL"){yield we(t)}else{x(t)}}if(r){const e=s(A);Object.assign(ge,e);const n=setTimeout(()=>{te(`Didn't find directory. Searching on ${ge.type}...`)},500);try{t=yield i(A,ae)}catch(e){}clearTimeout(n)}if(t){Q=[t.path];Object.assign(ge,t)}else if(r){const e=ge.ref?`with "${u.default.bold(ge.ref)}" `:"";yield we(`There's no repository named "${u.default.bold(ge.main)}" ${e}on ${ge.type}`)}else{ne(`The specified directory "${a.basename(Q[0])}" doesn't exist.`);yield S.default(1)}}}else{R=false;m="static"}const P=[];if(R||!R&&Q.length===1){P.push(b.default(Q[0]))}else{for(const e of Q){const t=yield f.default.lstat(e);if(t.isFile()){continue}P.push(b.default(e))}}try{yield Promise.all(P)}catch(e){ne(e.message,"path-not-deployable");yield S.default(1)}if(!ve&&d){if(ge.main){const t=ge.ref?` at "${u.default.bold(ge.ref)}" `:"";te(`Deploying ${ge.type} repository "${u.default.bold(ge.main)}"${t} under ${u.default.bold(e)}`)}else{const t=Q.map((e,t)=>{let n="";if(Q.length>1&&t!==Q.length-1){n=t<Q.length-2?", ":" and "}return u.default.bold(F.default(e))+n}).join("");te(`Deploying ${t} under ${u.default.bold(e)}`)}}if(!R&&m!=="static"){if(X.docker){ie(`Forcing \`deploymentType\` = \`docker\``);m="docker"}else if(X.npm){ie(`Forcing \`deploymentType\` = \`npm\``);m="npm"}else if(X.static){ie(`Forcing \`deploymentType\` = \`static\``);m="static"}}else if(m==="static"){ie(`Forcing \`deploymentType\` = \`static\` automatically`);O={type:m,pkg:undefined,nowConfig:undefined,hasNowJson:false,deploymentType:m,sessionAffinity:ee}}if(!O){try{({meta:O,deploymentName:$,deploymentType:m,sessionAffinity:ee}=yield readMeta(Q[0],$,m,ee))}catch(e){const t=["config_prop_and_file","dockerfile_missing","no_dockerfile_commands","unsupported_deployment_type","multiple_manifests"];if(e.code&&t.includes(e.code)||e.name==="JSONError"){ne(e.message);return 1}throw e}}const L=O.nowConfig||{};const q=getScaleFromConfig(L);let Z={};let je;if(fe.length>0&&getRegionsFromConfig(L).length>0){re(`You have regions defined from both args and now.json, using ${u.default.bold(fe.join(","))}`)}if(fe.length===0){fe=getRegionsFromConfig(L)}if(fe.length>0&&Object.keys(q).length>0){ne("Can't set both `regions` and `scale` options simultaneously","regions-and-scale-at-once");yield S.default(1)}if(fe.length>0){je=z.default(fe);if(je instanceof V.InvalidRegionOrDCForScale){ne(`The value "${je.meta.regionOrDC}" is not a valid region or DC identifier`);yield S.default(1);return 1}if(je instanceof V.InvalidAllForScale){ne(`You can't use all in the regions list mixed with other regions`);yield S.default(1);return 1}Z=je.reduce((e,t)=>Object.assign({},e,{[t]:{min:0,max:1}}),{})}else if(pe){ie(`Option --no-scale was set. Skipping scale parameters`);Z={}}else if(Object.keys(q).length>0){for(const e of Object.keys(q)){const t=M.default(e);if(t===undefined){ne(`The value "${e}" in \`scale\` settings is not a valid region or DC identifier`,"deploy-invalid-dc");yield S.default(1);return 1}Z[t]=q[e]}}ie(`Scale presets for deploy: ${JSON.stringify(Z)}`);const Se=new E.default({apiUrl:he,token:o,debug:ae,currentTeam:p});let Ee;let _e;if(X.dotenv){_e=X.dotenv}else if(L.dotenv){_e=L.dotenv}if(_e){const e=typeof _e==="string"?_e:".env";try{const t=yield f.default.readFile(e);Ee=l.default.parse(t)}catch(t){if(t.code==="ENOENT"){ne(`--dotenv flag is set but ${e} file is missing`,"missing-dotenv-target");yield S.default(1)}else{throw t}}}const Ce=Object.assign({},Ee,xe(L.env,null),xe(X.env,undefined));const Ae=Object.assign({},xe(L.build&&L.build.env,null),xe(X["build-env"],undefined));const Oe=ye(Ce);const Fe=ye(Ae);const De=yield ke(_.default([...Oe,...Fe]).sort());for(const e of Oe){Ce[e]=De[e]}for(const e of Fe){Ae[e]=De[e]}yield be(Ce);yield be(Ae);if(Object.keys(Ae).length>0){if(!L.build)L.build={};L.build.env=Ae}const Te=Object.keys(Ce).some(e=>(Ce[e]||"").startsWith("@"));const Ie=Te?Se.listSecrets():null;const Re=e=>r(this,void 0,void 0,function*(){const t=yield Promise.resolve(Ie);return t.filter(t=>t.name===e||t.uid===e)});const Pe=yield Promise.all(Object.keys(Ce).map(e=>r(this,void 0,void 0,function*(){if(!e){ne("Environment variable name is missing","missing-env-key-value");yield S.default(1)}if(/[^A-z0-9_]/i.test(e)){ne(`Invalid ${u.default.dim("-e")} key ${u.default.bold(`"${u.default.bold(e)}"`)}. Only letters, digits and underscores are allowed.`);yield S.default(1)}let t=Ce[e];if(t[0]==="@"){const n=t.substr(1);const r=yield Re(n);if(r.length===0){if(n===""){ne(`Empty reference provided for env key ${u.default.bold(`"${u.default.bold(e)}"`)}`)}else{ne(`No secret found by uid or name ${u.default.bold(`"${n}"`)}`,"env-no-secret")}yield S.default(1)}else if(r.length>1){ne(`Ambiguous secret ${u.default.bold(`"${n}"`)} (matches ${u.default.bold(r.length)} secrets)`);yield S.default(1)}t={uid:r[0].uid}}return[e,typeof t==="string"?t.replace(/^\\@/,"@"):t]})));const Be={};Pe.filter(e=>Boolean(e)).forEach(([e,t])=>{if(e in Be){oe(`Overriding duplicate env key ${u.default.bold(`"${e}"`)}`)}Be[e]=t});const Ne=Object.assign({},H.default(L.meta),H.default(X.meta));try{O.name=G.default({argv:X,nowConfig:L,isFile:R,paths:Q,pre:O.name});te(`Using project ${u.default.bold(O.name)}`);const n=Object.assign({env:Be,meta:Ne,followSymlinks:ue,forceNew:K,forwardNpm:ce,quiet:ve,scale:Z,wantsPublic:le,sessionAffinity:ee,isFile:R,nowConfig:L,deployStamp:j},O);j=U.default();T=yield D.default(t,Se,e,Q,n);const r=Y.default(t,T);if(r===1){return r}if(T instanceof W.DomainNotFound||T instanceof W.NotDomainOwner||T instanceof W.DomainPermissionDenied||T instanceof W.DomainVerificationFailed||T instanceof J.SchemaValidationFailed||T instanceof W.DeploymentNotFound||T instanceof W.DeploymentsRateLimited){handleCreateDeployError(t,T);yield S.default(1);return}}catch(n){if(n.code==="plan_requires_public"){if(!le){const t=p?"your team is":"you are";let n;te(`Your deployment's code and logs will be publicly accessible because ${t} subscribed to the OSS plan.`);if(me){n=yield C.default("Are you sure you want to proceed?",{trailing:s.eraseLines(1)})}let r="https://zeit.co/account/plan";if(p){r=`https://zeit.co/teams/${e}/settings/plan`}oe(`You can use ${w.default("now --public")} or upgrade your plan to skip this prompt. More: ${r}`);if(!n){if(typeof n==="undefined"){const e=`If you agree with that, please run again with ${w.default("--public")}.`;ne(e);yield S.default(1)}else{te("Aborted");yield S.default(0)}return}}le=true;return sync({contextName:e,output:t,token:o,config:{currentTeam:p},firstRun:false,deploymentType:m})}ie(`Error: ${n}\n${n.stack}`);if(n.keyword==="additionalProperties"&&n.dataPath===".scale"){const{additionalProperty:e=""}=n.params||{};const t=fe.length?`Invalid regions: ${e.slice(0,-1)}`:`Invalid DC name for the scale option: ${e}`;ne(t);yield S.default(1)}yield we(n);return 1}const{url:ze}=Se;const Le=m!=="static"&&T.scale?` (${u.default.bold(Object.keys(T.scale).join(", "))})`:"";if(me){if(se){try{yield c.write(ze);te(`${u.default.bold(u.default.cyan(ze))} ${u.default.gray("[v1]")} ${u.default.gray("[in clipboard]")}${Le} ${j()}`)}catch(e){ie(`Error copying to clipboard: ${e}`);te(`${u.default.bold(u.default.cyan(ze))} ${u.default.gray("[v1]")} ${Le} ${j()}`)}}else{te(`${u.default.bold(u.default.cyan(ze))}${Le} ${j()}`)}}if(m==="static"){if(T.readyState==="INITIALIZING"){de=true}else{if(!ve){t.log(u.default`{cyan Deployment complete!}`)}yield S.default(0);return}}if(T!==null){const e=B.default();const n=yield maybeGetEventsStream(Se,T);if(!de){t.log(`Verifying instantiation in ${N.default(Object.keys(T.scale).map(e=>u.default.bold(e)))}`);const r=U.default();const o=getVerifyDCsGenerator(t,Se,T,n);try{for(var Me=i(o),Ue;Ue=yield Me.next(),!Ue.done;){const n=Ue.value;const i=n;if(i instanceof W.VerifyScaleTimeout){t.error(`Instance verification timed out (${h.default(i.meta.timeout)})`);t.log("Read more: https://err.sh/now-cli/verification-timeout");yield S.default(1)}else if(Array.isArray(i)){const[e,n]=i;t.log(`${u.default.cyan(y.default.tick)} Scaled ${v.default("instance",n,true)} in ${u.default.bold(e)} ${r()}`)}else if(i&&(i.type==="stdout"||i.type==="stderr")){const n=u.default.gray(`[${e(i.payload.instanceId)}] `);I.default(i.payload.text,n).forEach(e=>t.log(e))}}}catch(e){g={error:e}}finally{try{if(Ue&&!Ue.done&&(k=Me.return))yield k.call(Me)}finally{if(g)throw g.error}}}t.success(`Deployment ready`);yield S.default(0)}}))})}function readMeta(e,t,n,i){return r(this,void 0,void 0,function*(){try{const r=yield O.default(e,{deploymentType:n,deploymentName:t,quiet:true,sessionAffinity:i});if(!n){n=r.type;ie(`Detected \`deploymentType\` = \`${n}\``)}if(!t){t=r.name;ie(`Detected \`deploymentName\` = "${t}"`)}return{meta:r,deploymentName:t,deploymentType:n,sessionAffinity:i}}catch(r){if(me&&r.code==="multiple_manifests"){ie("Multiple manifests found, disambiguating");te(`Two manifests found. Press [${u.default.bold("n")}] to deploy or re-run with --flag`);try{n=yield A.default([["npm",`${u.default.bold("package.json")}\t${u.default.gray(" --npm")} `],["docker",`${u.default.bold("Dockerfile")}\t${u.default.gray("--docker")} `]])}catch(e){throw r}ie(`Selected \`deploymentType\` = "${n}"`);return readMeta(e,t,n)}throw r}})}function getRegionsFromConfig(e={}){return e.regions||[]}function getScaleFromConfig(e={}){return e.scale||{}}function maybeGetEventsStream(e,t){return r(this,void 0,void 0,function*(){try{return yield R.default(e,t.deploymentId,{direction:"forward",follow:true})}catch(e){return null}})}function getVerifyDCsGenerator(e,t,n,r){const i=q.default(e,t,n.deploymentId||n.uid,n.scale);return r?L.default(T.default("data",r),i):i}function handleCreateDeployError(e,t){if(t instanceof W.DomainVerificationFailed){e.error(`The domain used as a suffix ${u.default.underline(t.meta.domain)} is not verified and can't be used as custom suffix.`);return 1}if(t instanceof W.DomainPermissionDenied){e.error(`You don't have permissions to access the domain used as a suffix ${u.default.underline(t.meta.domain)}.`);return 1}if(t instanceof J.SchemaValidationFailed){const{message:n,params:r,keyword:i,dataPath:o}=t.meta;if(r&&r.additionalProperty){const t=r.additionalProperty;e.error(`The property ${x.default(t)} is not allowed in ${k.default("now.json")} when using Now 1.0 please remove it.`);if(t==="build.env"||t==="builds.env"){e.note(`Do you mean ${x.default("build")} (object) with a property ${x.default("env")} (object) instead of ${x.default(t)}?`)}return 1}if(i==="type"){const t=o.substr(1,o.length);e.error(`The property ${x.default(t)} in ${k.default("now.json")} can only be of type ${x.default(m.default(r.type))}.`);return 1}e.error(`Failed to validate ${k.default("now.json")}: ${n}\nDocumentation: ${j.default("https://zeit.co/docs/v2/advanced/configuration")}`);return 1}if(t instanceof W.TooManyRequests){e.error(`Too many requests detected for ${t.meta.api} API. Try again in ${h.default(t.meta.retryAfter*1e3,{long:true})}.`);return 1}if(t instanceof W.DomainNotFound){e.error(`The domain used as a suffix ${u.default.underline(t.meta.domain)} no longer exists. Please update or remove your custom suffix.`);return 1}if(t instanceof W.DeploymentNotFound){e.error(t.message);return 1}if(t instanceof W.DeploymentsRateLimited){e.error(t.message);return 1}return t}},4096:function(e,t){t=e.exports=SemVer;var n;if(typeof process==="object"&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)){n=function(){var e=Array.prototype.slice.call(arguments,0);e.unshift("SEMVER");console.log.apply(console,e)}}else{n=function(){}}t.SEMVER_SPEC_VERSION="2.0.0";var r=256;var i=Number.MAX_SAFE_INTEGER||9007199254740991;var o=16;var a=t.re=[];var s=t.src=[];var c=0;var u=c++;s[u]="0|[1-9]\\d*";var l=c++;s[l]="[0-9]+";var f=c++;s[f]="\\d*[a-zA-Z-][a-zA-Z0-9-]*";var p=c++;s[p]="("+s[u]+")\\."+"("+s[u]+")\\."+"("+s[u]+")";var d=c++;s[d]="("+s[l]+")\\."+"("+s[l]+")\\."+"("+s[l]+")";var h=c++;s[h]="(?:"+s[u]+"|"+s[f]+")";var m=c++;s[m]="(?:"+s[l]+"|"+s[f]+")";var v=c++;s[v]="(?:-("+s[h]+"(?:\\."+s[h]+")*))";var g=c++;s[g]="(?:-?("+s[m]+"(?:\\."+s[m]+")*))";var y=c++;s[y]="[0-9A-Za-z-]+";var b=c++;s[b]="(?:\\+("+s[y]+"(?:\\."+s[y]+")*))";var w=c++;var x="v?"+s[p]+s[v]+"?"+s[b]+"?";s[w]="^"+x+"$";var k="[v=\\s]*"+s[d]+s[g]+"?"+s[b]+"?";var j=c++;s[j]="^"+k+"$";var S=c++;s[S]="((?:<|>)?=?)";var E=c++;s[E]=s[l]+"|x|X|\\*";var _=c++;s[_]=s[u]+"|x|X|\\*";var C=c++;s[C]="[v=\\s]*("+s[_]+")"+"(?:\\.("+s[_]+")"+"(?:\\.("+s[_]+")"+"(?:"+s[v]+")?"+s[b]+"?"+")?)?";var A=c++;s[A]="[v=\\s]*("+s[E]+")"+"(?:\\.("+s[E]+")"+"(?:\\.("+s[E]+")"+"(?:"+s[g]+")?"+s[b]+"?"+")?)?";var O=c++;s[O]="^"+s[S]+"\\s*"+s[C]+"$";var F=c++;s[F]="^"+s[S]+"\\s*"+s[A]+"$";var D=c++;s[D]="(?:^|[^\\d])"+"(\\d{1,"+o+"})"+"(?:\\.(\\d{1,"+o+"}))?"+"(?:\\.(\\d{1,"+o+"}))?"+"(?:$|[^\\d])";var T=c++;s[T]="(?:~>?)";var I=c++;s[I]="(\\s*)"+s[T]+"\\s+";a[I]=new RegExp(s[I],"g");var R="$1~";var P=c++;s[P]="^"+s[T]+s[C]+"$";var B=c++;s[B]="^"+s[T]+s[A]+"$";var N=c++;s[N]="(?:\\^)";var z=c++;s[z]="(\\s*)"+s[N]+"\\s+";a[z]=new RegExp(s[z],"g");var L="$1^";var M=c++;s[M]="^"+s[N]+s[C]+"$";var U=c++;s[U]="^"+s[N]+s[A]+"$";var q=c++;s[q]="^"+s[S]+"\\s*("+k+")$|^$";var H=c++;s[H]="^"+s[S]+"\\s*("+x+")$|^$";var G=c++;s[G]="(\\s*)"+s[S]+"\\s*("+k+"|"+s[C]+")";a[G]=new RegExp(s[G],"g");var W="$1$2$3";var V=c++;s[V]="^\\s*("+s[C]+")"+"\\s+-\\s+"+"("+s[C]+")"+"\\s*$";var J=c++;s[J]="^\\s*("+s[A]+")"+"\\s+-\\s+"+"("+s[A]+")"+"\\s*$";var Y=c++;s[Y]="(<|>)?=?\\s*\\*";for(var Z=0;Z<c;Z++){n(Z,s[Z]);if(!a[Z]){a[Z]=new RegExp(s[Z])}}t.parse=parse;function parse(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof SemVer){return e}if(typeof e!=="string"){return null}if(e.length>r){return null}var n=t.loose?a[j]:a[w];if(!n.test(e)){return null}try{return new SemVer(e,t)}catch(e){return null}}t.valid=valid;function valid(e,t){var n=parse(e,t);return n?n.version:null}t.clean=clean;function clean(e,t){var n=parse(e.trim().replace(/^[=v]+/,""),t);return n?n.version:null}t.SemVer=SemVer;function SemVer(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof SemVer){if(e.loose===t.loose){return e}else{e=e.version}}else if(typeof e!=="string"){throw new TypeError("Invalid Version: "+e)}if(e.length>r){throw new TypeError("version is longer than "+r+" characters")}if(!(this instanceof SemVer)){return new SemVer(e,t)}n("SemVer",e,t);this.options=t;this.loose=!!t.loose;var o=e.trim().match(t.loose?a[j]:a[w]);if(!o){throw new TypeError("Invalid Version: "+e)}this.raw=e;this.major=+o[1];this.minor=+o[2];this.patch=+o[3];if(this.major>i||this.major<0){throw new TypeError("Invalid major version")}if(this.minor>i||this.minor<0){throw new TypeError("Invalid minor version")}if(this.patch>i||this.patch<0){throw new TypeError("Invalid patch version")}if(!o[4]){this.prerelease=[]}else{this.prerelease=o[4].split(".").map(function(e){if(/^[0-9]+$/.test(e)){var t=+e;if(t>=0&&t<i){return t}}return e})}this.build=o[5]?o[5].split("."):[];this.format()}SemVer.prototype.format=function(){this.version=this.major+"."+this.minor+"."+this.patch;if(this.prerelease.length){this.version+="-"+this.prerelease.join(".")}return this.version};SemVer.prototype.toString=function(){return this.version};SemVer.prototype.compare=function(e){n("SemVer.compare",this.version,this.options,e);if(!(e instanceof SemVer)){e=new SemVer(e,this.options)}return this.compareMain(e)||this.comparePre(e)};SemVer.prototype.compareMain=function(e){if(!(e instanceof SemVer)){e=new SemVer(e,this.options)}return compareIdentifiers(this.major,e.major)||compareIdentifiers(this.minor,e.minor)||compareIdentifiers(this.patch,e.patch)};SemVer.prototype.comparePre=function(e){if(!(e instanceof SemVer)){e=new SemVer(e,this.options)}if(this.prerelease.length&&!e.prerelease.length){return-1}else if(!this.prerelease.length&&e.prerelease.length){return 1}else if(!this.prerelease.length&&!e.prerelease.length){return 0}var t=0;do{var r=this.prerelease[t];var i=e.prerelease[t];n("prerelease compare",t,r,i);if(r===undefined&&i===undefined){return 0}else if(i===undefined){return 1}else if(r===undefined){return-1}else if(r===i){continue}else{return compareIdentifiers(r,i)}}while(++t)};SemVer.prototype.inc=function(e,t){switch(e){case"premajor":this.prerelease.length=0;this.patch=0;this.minor=0;this.major++;this.inc("pre",t);break;case"preminor":this.prerelease.length=0;this.patch=0;this.minor++;this.inc("pre",t);break;case"prepatch":this.prerelease.length=0;this.inc("patch",t);this.inc("pre",t);break;case"prerelease":if(this.prerelease.length===0){this.inc("patch",t)}this.inc("pre",t);break;case"major":if(this.minor!==0||this.patch!==0||this.prerelease.length===0){this.major++}this.minor=0;this.patch=0;this.prerelease=[];break;case"minor":if(this.patch!==0||this.prerelease.length===0){this.minor++}this.patch=0;this.prerelease=[];break;case"patch":if(this.prerelease.length===0){this.patch++}this.prerelease=[];break;case"pre":if(this.prerelease.length===0){this.prerelease=[0]}else{var n=this.prerelease.length;while(--n>=0){if(typeof this.prerelease[n]==="number"){this.prerelease[n]++;n=-2}}if(n===-1){this.prerelease.push(0)}}if(t){if(this.prerelease[0]===t){if(isNaN(this.prerelease[1])){this.prerelease=[t,0]}}else{this.prerelease=[t,0]}}break;default:throw new Error("invalid increment argument: "+e)}this.format();this.raw=this.version;return this};t.inc=inc;function inc(e,t,n,r){if(typeof n==="string"){r=n;n=undefined}try{return new SemVer(e,n).inc(t,r).version}catch(e){return null}}t.diff=diff;function diff(e,t){if(eq(e,t)){return null}else{var n=parse(e);var r=parse(t);var i="";if(n.prerelease.length||r.prerelease.length){i="pre";var o="prerelease"}for(var a in n){if(a==="major"||a==="minor"||a==="patch"){if(n[a]!==r[a]){return i+a}}}return o}}t.compareIdentifiers=compareIdentifiers;var X=/^[0-9]+$/;function compareIdentifiers(e,t){var n=X.test(e);var r=X.test(t);if(n&&r){e=+e;t=+t}return e===t?0:n&&!r?-1:r&&!n?1:e<t?-1:1}t.rcompareIdentifiers=rcompareIdentifiers;function rcompareIdentifiers(e,t){return compareIdentifiers(t,e)}t.major=major;function major(e,t){return new SemVer(e,t).major}t.minor=minor;function minor(e,t){return new SemVer(e,t).minor}t.patch=patch;function patch(e,t){return new SemVer(e,t).patch}t.compare=compare;function compare(e,t,n){return new SemVer(e,n).compare(new SemVer(t,n))}t.compareLoose=compareLoose;function compareLoose(e,t){return compare(e,t,true)}t.rcompare=rcompare;function rcompare(e,t,n){return compare(t,e,n)}t.sort=sort;function sort(e,n){return e.sort(function(e,r){return t.compare(e,r,n)})}t.rsort=rsort;function rsort(e,n){return e.sort(function(e,r){return t.rcompare(e,r,n)})}t.gt=gt;function gt(e,t,n){return compare(e,t,n)>0}t.lt=lt;function lt(e,t,n){return compare(e,t,n)<0}t.eq=eq;function eq(e,t,n){return compare(e,t,n)===0}t.neq=neq;function neq(e,t,n){return compare(e,t,n)!==0}t.gte=gte;function gte(e,t,n){return compare(e,t,n)>=0}t.lte=lte;function lte(e,t,n){return compare(e,t,n)<=0}t.cmp=cmp;function cmp(e,t,n,r){switch(t){case"===":if(typeof e==="object")e=e.version;if(typeof n==="object")n=n.version;return e===n;case"!==":if(typeof e==="object")e=e.version;if(typeof n==="object")n=n.version;return e!==n;case"":case"=":case"==":return eq(e,n,r);case"!=":return neq(e,n,r);case">":return gt(e,n,r);case">=":return gte(e,n,r);case"<":return lt(e,n,r);case"<=":return lte(e,n,r);default:throw new TypeError("Invalid operator: "+t)}}t.Comparator=Comparator;function Comparator(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof Comparator){if(e.loose===!!t.loose){return e}else{e=e.value}}if(!(this instanceof Comparator)){return new Comparator(e,t)}n("comparator",e,t);this.options=t;this.loose=!!t.loose;this.parse(e);if(this.semver===Q){this.value=""}else{this.value=this.operator+this.semver.version}n("comp",this)}var Q={};Comparator.prototype.parse=function(e){var t=this.options.loose?a[q]:a[H];var n=e.match(t);if(!n){throw new TypeError("Invalid comparator: "+e)}this.operator=n[1];if(this.operator==="="){this.operator=""}if(!n[2]){this.semver=Q}else{this.semver=new SemVer(n[2],this.options.loose)}};Comparator.prototype.toString=function(){return this.value};Comparator.prototype.test=function(e){n("Comparator.test",e,this.options.loose);if(this.semver===Q){return true}if(typeof e==="string"){e=new SemVer(e,this.options)}return cmp(e,this.operator,this.semver,this.options)};Comparator.prototype.intersects=function(e,t){if(!(e instanceof Comparator)){throw new TypeError("a Comparator is required")}if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}var n;if(this.operator===""){n=new Range(e.value,t);return satisfies(this.value,n,t)}else if(e.operator===""){n=new Range(this.value,t);return satisfies(e.semver,n,t)}var r=(this.operator===">="||this.operator===">")&&(e.operator===">="||e.operator===">");var i=(this.operator==="<="||this.operator==="<")&&(e.operator==="<="||e.operator==="<");var o=this.semver.version===e.semver.version;var a=(this.operator===">="||this.operator==="<=")&&(e.operator===">="||e.operator==="<=");var s=cmp(this.semver,"<",e.semver,t)&&((this.operator===">="||this.operator===">")&&(e.operator==="<="||e.operator==="<"));var c=cmp(this.semver,">",e.semver,t)&&((this.operator==="<="||this.operator==="<")&&(e.operator===">="||e.operator===">"));return r||i||o&&a||s||c};t.Range=Range;function Range(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof Range){if(e.loose===!!t.loose&&e.includePrerelease===!!t.includePrerelease){return e}else{return new Range(e.raw,t)}}if(e instanceof Comparator){return new Range(e.value,t)}if(!(this instanceof Range)){return new Range(e,t)}this.options=t;this.loose=!!t.loose;this.includePrerelease=!!t.includePrerelease;this.raw=e;this.set=e.split(/\s*\|\|\s*/).map(function(e){return this.parseRange(e.trim())},this).filter(function(e){return e.length});if(!this.set.length){throw new TypeError("Invalid SemVer Range: "+e)}this.format()}Range.prototype.format=function(){this.range=this.set.map(function(e){return e.join(" ").trim()}).join("||").trim();return this.range};Range.prototype.toString=function(){return this.range};Range.prototype.parseRange=function(e){var t=this.options.loose;e=e.trim();var r=t?a[J]:a[V];e=e.replace(r,hyphenReplace);n("hyphen replace",e);e=e.replace(a[G],W);n("comparator trim",e,a[G]);e=e.replace(a[I],R);e=e.replace(a[z],L);e=e.split(/\s+/).join(" ");var i=t?a[q]:a[H];var o=e.split(" ").map(function(e){return parseComparator(e,this.options)},this).join(" ").split(/\s+/);if(this.options.loose){o=o.filter(function(e){return!!e.match(i)})}o=o.map(function(e){return new Comparator(e,this.options)},this);return o};Range.prototype.intersects=function(e,t){if(!(e instanceof Range)){throw new TypeError("a Range is required")}return this.set.some(function(n){return n.every(function(n){return e.set.some(function(e){return e.every(function(e){return n.intersects(e,t)})})})})};t.toComparators=toComparators;function toComparators(e,t){return new Range(e,t).set.map(function(e){return e.map(function(e){return e.value}).join(" ").trim().split(" ")})}function parseComparator(e,t){n("comp",e,t);e=replaceCarets(e,t);n("caret",e);e=replaceTildes(e,t);n("tildes",e);e=replaceXRanges(e,t);n("xrange",e);e=replaceStars(e,t);n("stars",e);return e}function isX(e){return!e||e.toLowerCase()==="x"||e==="*"}function replaceTildes(e,t){return e.trim().split(/\s+/).map(function(e){return replaceTilde(e,t)}).join(" ")}function replaceTilde(e,t){var r=t.loose?a[B]:a[P];return e.replace(r,function(t,r,i,o,a){n("tilde",e,t,r,i,o,a);var s;if(isX(r)){s=""}else if(isX(i)){s=">="+r+".0.0 <"+(+r+1)+".0.0"}else if(isX(o)){s=">="+r+"."+i+".0 <"+r+"."+(+i+1)+".0"}else if(a){n("replaceTilde pr",a);s=">="+r+"."+i+"."+o+"-"+a+" <"+r+"."+(+i+1)+".0"}else{s=">="+r+"."+i+"."+o+" <"+r+"."+(+i+1)+".0"}n("tilde return",s);return s})}function replaceCarets(e,t){return e.trim().split(/\s+/).map(function(e){return replaceCaret(e,t)}).join(" ")}function replaceCaret(e,t){n("caret",e,t);var r=t.loose?a[U]:a[M];return e.replace(r,function(t,r,i,o,a){n("caret",e,t,r,i,o,a);var s;if(isX(r)){s=""}else if(isX(i)){s=">="+r+".0.0 <"+(+r+1)+".0.0"}else if(isX(o)){if(r==="0"){s=">="+r+"."+i+".0 <"+r+"."+(+i+1)+".0"}else{s=">="+r+"."+i+".0 <"+(+r+1)+".0.0"}}else if(a){n("replaceCaret pr",a);if(r==="0"){if(i==="0"){s=">="+r+"."+i+"."+o+"-"+a+" <"+r+"."+i+"."+(+o+1)}else{s=">="+r+"."+i+"."+o+"-"+a+" <"+r+"."+(+i+1)+".0"}}else{s=">="+r+"."+i+"."+o+"-"+a+" <"+(+r+1)+".0.0"}}else{n("no pr");if(r==="0"){if(i==="0"){s=">="+r+"."+i+"."+o+" <"+r+"."+i+"."+(+o+1)}else{s=">="+r+"."+i+"."+o+" <"+r+"."+(+i+1)+".0"}}else{s=">="+r+"."+i+"."+o+" <"+(+r+1)+".0.0"}}n("caret return",s);return s})}function replaceXRanges(e,t){n("replaceXRanges",e,t);return e.split(/\s+/).map(function(e){return replaceXRange(e,t)}).join(" ")}function replaceXRange(e,t){e=e.trim();var r=t.loose?a[F]:a[O];return e.replace(r,function(t,r,i,o,a,s){n("xRange",e,t,r,i,o,a,s);var c=isX(i);var u=c||isX(o);var l=u||isX(a);var f=l;if(r==="="&&f){r=""}if(c){if(r===">"||r==="<"){t="<0.0.0"}else{t="*"}}else if(r&&f){if(u){o=0}a=0;if(r===">"){r=">=";if(u){i=+i+1;o=0;a=0}else{o=+o+1;a=0}}else if(r==="<="){r="<";if(u){i=+i+1}else{o=+o+1}}t=r+i+"."+o+"."+a}else if(u){t=">="+i+".0.0 <"+(+i+1)+".0.0"}else if(l){t=">="+i+"."+o+".0 <"+i+"."+(+o+1)+".0"}n("xRange return",t);return t})}function replaceStars(e,t){n("replaceStars",e,t);return e.trim().replace(a[Y],"")}function hyphenReplace(e,t,n,r,i,o,a,s,c,u,l,f,p){if(isX(n)){t=""}else if(isX(r)){t=">="+n+".0.0"}else if(isX(i)){t=">="+n+"."+r+".0"}else{t=">="+t}if(isX(c)){s=""}else if(isX(u)){s="<"+(+c+1)+".0.0"}else if(isX(l)){s="<"+c+"."+(+u+1)+".0"}else if(f){s="<="+c+"."+u+"."+l+"-"+f}else{s="<="+s}return(t+" "+s).trim()}Range.prototype.test=function(e){if(!e){return false}if(typeof e==="string"){e=new SemVer(e,this.options)}for(var t=0;t<this.set.length;t++){if(testSet(this.set[t],e,this.options)){return true}}return false};function testSet(e,t,r){for(var i=0;i<e.length;i++){if(!e[i].test(t)){return false}}if(t.prerelease.length&&!r.includePrerelease){for(i=0;i<e.length;i++){n(e[i].semver);if(e[i].semver===Q){continue}if(e[i].semver.prerelease.length>0){var o=e[i].semver;if(o.major===t.major&&o.minor===t.minor&&o.patch===t.patch){return true}}}return false}return true}t.satisfies=satisfies;function satisfies(e,t,n){try{t=new Range(t,n)}catch(e){return false}return t.test(e)}t.maxSatisfying=maxSatisfying;function maxSatisfying(e,t,n){var r=null;var i=null;try{var o=new Range(t,n)}catch(e){return null}e.forEach(function(e){if(o.test(e)){if(!r||i.compare(e)===-1){r=e;i=new SemVer(r,n)}}});return r}t.minSatisfying=minSatisfying;function minSatisfying(e,t,n){var r=null;var i=null;try{var o=new Range(t,n)}catch(e){return null}e.forEach(function(e){if(o.test(e)){if(!r||i.compare(e)===1){r=e;i=new SemVer(r,n)}}});return r}t.minVersion=minVersion;function minVersion(e,t){e=new Range(e,t);var n=new SemVer("0.0.0");if(e.test(n)){return n}n=new SemVer("0.0.0-0");if(e.test(n)){return n}n=null;for(var r=0;r<e.set.length;++r){var i=e.set[r];i.forEach(function(e){var t=new SemVer(e.semver.version);switch(e.operator){case">":if(t.prerelease.length===0){t.patch++}else{t.prerelease.push(0)}t.raw=t.format();case"":case">=":if(!n||gt(n,t)){n=t}break;case"<":case"<=":break;default:throw new Error("Unexpected operation: "+e.operator)}})}if(n&&e.test(n)){return n}return null}t.validRange=validRange;function validRange(e,t){try{return new Range(e,t).range||"*"}catch(e){return null}}t.ltr=ltr;function ltr(e,t,n){return outside(e,t,"<",n)}t.gtr=gtr;function gtr(e,t,n){return outside(e,t,">",n)}t.outside=outside;function outside(e,t,n,r){e=new SemVer(e,r);t=new Range(t,r);var i,o,a,s,c;switch(n){case">":i=gt;o=lte;a=lt;s=">";c=">=";break;case"<":i=lt;o=gte;a=gt;s="<";c="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(satisfies(e,t,r)){return false}for(var u=0;u<t.set.length;++u){var l=t.set[u];var f=null;var p=null;l.forEach(function(e){if(e.semver===Q){e=new Comparator(">=0.0.0")}f=f||e;p=p||e;if(i(e.semver,f.semver,r)){f=e}else if(a(e.semver,p.semver,r)){p=e}});if(f.operator===s||f.operator===c){return false}if((!p.operator||p.operator===s)&&o(e,p.semver)){return false}else if(p.operator===c&&a(e,p.semver)){return false}}return true}t.prerelease=prerelease;function prerelease(e,t){var n=parse(e,t);return n&&n.prerelease.length?n.prerelease:null}t.intersects=intersects;function intersects(e,t,n){e=new Range(e,n);t=new Range(t,n);return e.intersects(t)}t.coerce=coerce;function coerce(e){if(e instanceof SemVer){return e}if(typeof e!=="string"){return null}var t=e.match(a[D]);if(t==null){return null}return parse(t[1]+"."+(t[2]||"0")+"."+(t[3]||"0"))}},4097:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(662);const o=n(5897);const a=n(1908);const s=n(7780);const c=r(function emptyDir(e,t){t=t||function(){};i.readdir(e,(n,r)=>{if(n)return a.mkdirs(e,t);r=r.map(t=>o.join(e,t));deleteItem();function deleteItem(){const e=r.pop();if(!e)return t();s.remove(e,e=>{if(e)return t(e);deleteItem()})}})});function emptyDirSync(e){let t;try{t=i.readdirSync(e)}catch(t){return a.mkdirsSync(e)}t.forEach(t=>{t=o.join(e,t);s.removeSync(t)})}e.exports={emptyDirSync:emptyDirSync,emptydirSync:emptyDirSync,emptyDir:c,emptydir:c}},4099:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(2617);const o=n(5897);const a=n(7184);const s=n(5527).pathExists;function outputFile(e,t,n,r){if(typeof n==="function"){r=n;n="utf8"}const c=o.dirname(e);s(c,(o,s)=>{if(o)return r(o);if(s)return i.writeFile(e,t,n,r);a.mkdirs(c,o=>{if(o)return r(o);i.writeFile(e,t,n,r)})})}function outputFileSync(e,...t){const n=o.dirname(e);if(i.existsSync(n)){return i.writeFileSync(e,...t)}a.mkdirsSync(n);i.writeFileSync(e,...t)}e.exports={outputFile:r(outputFile),outputFileSync:outputFileSync}},4108:function(e){e.exports=wrappy;function wrappy(e,t){if(e&&t)return wrappy(e)(t);if(typeof e!=="function")throw new TypeError("need wrapper function");Object.keys(e).forEach(function(t){wrapper[t]=e[t]});return wrapper;function wrapper(){var t=new Array(arguments.length);for(var n=0;n<t.length;n++){t[n]=arguments[n]}var r=e.apply(this,t);var i=t[t.length-1];if(typeof r==="function"&&r!==i){Object.keys(i).forEach(function(e){r[e]=i[e]})}return r}}},4110:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function strlen(e){return e.replace(/\u001b[^m]*m/g,"").length}t.default=strlen},4122:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);var o=n(8709);var a=n(8950);var s=n.n(a);var c=n(298);var u=n(8685);var l=n.n(u);var f=n(6145);var p=n.n(f);var d=n(586);var h=n.n(d);var m=n(2788);var v=n.n(m);var g=n(541);var y=n.n(g);var b=n(6904);var w=n.n(b);var x=n(7282);var k=n(5032);var j=n.n(k);var S=n(4680);var E=n.n(S);var _=n(5359);var C=n.n(_);var A=n(6102);var O=n.n(A);var F=n(4573);var D=n.n(F);const T=e=>o["email"].test(e.trim())||e.length===0;const I=Array.from(new Set(["aol.com","gmail.com","google.com","yahoo.com","ymail.com","hotmail.com","live.com","outlook.com","inbox.com","mail.com","gmx.com","icloud.com"]));const R=(e,t)=>{const n=e.split("@");if(n.length===2&&n[1].length>0){const[,e]=n;let r=false;I.unshift(t);for(const t of I){if(t.startsWith(e)){r=t.substr(e.length);break}}I.shift();return r}return false};t["default"]=async function({teams:e,args:t,config:n,introMsg:r,noopMsg:a="No changes made",apiUrl:u,token:f}={}){const{currentTeam:d}=n;const m=s()("Fetching teams");const g=(await e.ls()).teams;const b=g.find(e=>e.id===d);m();const k=s()("Fetching user information");const S=new D.a({apiUrl:u,token:f});const _=await O()(S);k();I.push(_.email.split("@")[1]);if(!b){let e=`You can't run this command under ${v()(_.username||_.email)}.\nPlease select a team scope using ${l()("now switch")} or use ${l()("--scope")}`;return Object(c["default"])(e)}console.log(p()(r||`Inviting team members to ${i.a.bold(b.name)}`));if(t.length>0){for(const n of t){if(o["email"].test(n)){const t=s()(n);const r=h()();let o=null;try{const t=await e.inviteUser({teamId:b.id,email:n});o=t.name||t.username}catch(e){if(e.code==="user_not_found"){console.error(y()(`No user exists with the email address "${n}".`));return 1}throw e}t();console.log(`${i.a.cyan(w.a.tick)} ${n}${o?` (${o})`:""} ${r()}`)}else{console.log(`${i.a.red(`✖ ${n}`)} ${i.a.gray("[invalid]")}`)}}return}const A=Object(x["default"])("Invite User",14);const F=Object(x["default"])("Sent Email",14);const P=[];let B=false;let N;do{N="";try{N=await j()({label:`- ${A}`,validateValue:T,autoComplete:e=>R(e,b.slug)})}catch(e){if(e.message!=="USER_ABORT"){throw e}}let t;let n;if(N){t=h()();n=s()(A+N);try{const{name:o,username:a}=await e.inviteUser({teamId:b.id,email:N});n();const s=o||a;N=`${N}${s?` (${s})`:""} ${t()}`;P.push(N);console.log(`${i.a.cyan(w.a.tick)} ${F}${N}`);if(B){B=false;process.stdout.write(E()(P.length+2));console.log(p()(r||`Inviting team members to ${i.a.bold(b.name)}`));for(const e of P){console.log(`${i.a.cyan(w.a.tick)} ${A}${e}`)}}}catch(e){n();process.stdout.write(E()(P.length+2));console.error(y()(e.message));B=true;for(const e of P){console.log(`${i.a.cyan(w.a.tick)} ${F}${e}`)}}}}while(N!=="");process.stdout.write(E()(P.length+2));const z=P.length;if(P.length===0){console.log(p()(a))}else{console.log(C()(`Invited ${z} teammate${z>1?"s":""}`));for(const e of P){console.log(`${i.a.cyan(w.a.tick)} ${A}${e}`)}}}},4123:function(e,t,n){var r=n(101);var i=function(){};var o=function(e){return e.setHeader&&typeof e.abort==="function"};var a=function(e){return e.stdio&&Array.isArray(e.stdio)&&e.stdio.length===3};var s=function(e,t,n){if(typeof t==="function")return s(e,null,t);if(!t)t={};n=r(n||i);var c=e._writableState;var u=e._readableState;var l=t.readable||t.readable!==false&&e.readable;var f=t.writable||t.writable!==false&&e.writable;var p=function(){if(!e.writable)d()};var d=function(){f=false;if(!l)n()};var h=function(){l=false;if(!f)n()};var m=function(e){n(e?new Error("exited with error code: "+e):null)};var v=function(){if(l&&!(u&&u.ended))return n(new Error("premature close"));if(f&&!(c&&c.ended))return n(new Error("premature close"))};var g=function(){e.req.on("finish",d)};if(o(e)){e.on("complete",d);e.on("abort",v);if(e.req)g();else e.on("request",g)}else if(f&&!c){e.on("end",p);e.on("close",p)}if(a(e))e.on("exit",m);e.on("end",h);e.on("finish",d);if(t.error!==false)e.on("error",n);e.on("close",v);return function(){e.removeListener("complete",d);e.removeListener("abort",v);e.removeListener("request",g);if(e.req)e.req.removeListener("finish",d);e.removeListener("end",p);e.removeListener("close",p);e.removeListener("finish",d);e.removeListener("exit",m);e.removeListener("end",h);e.removeListener("error",n);e.removeListener("close",v)}};e.exports=s},4132:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});t.GA_TRACKING_ID="UA-117491914-3";t.SENTRY_DSN="https://26a24e59ba954011919a524b341b6ab5@sentry.io/1323225"},4133:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(1332));const o=n(6993);const a=new i.default;const s={type:"array",minItems:0,maxItems:128,items:{type:"object",additionalProperties:false,required:["use"],properties:{src:{type:"string",minLength:1,maxLength:4096},use:{type:"string",minLength:3,maxLength:256},config:{type:"object"}}}};const c=a.compile(s);const u=a.compile(o.schema);function validateNowConfigBuilds({builds:e}){if(!e){return null}if(!c(e)){if(!c.errors){return null}const e=c.errors[0];return`Invalid \`builds\` property: ${e.dataPath} ${e.message}`}return null}t.validateNowConfigBuilds=validateNowConfigBuilds;function validateNowConfigRoutes({routes:e}){if(!e){return null}if(!u(e)){if(!u.errors){return null}const e=u.errors[0];return`Invalid \`routes\` property: ${e.dataPath} ${e.message}`}return null}t.validateNowConfigRoutes=validateNowConfigRoutes},4136:function(e){"use strict";e.exports={alnum:"a-zA-Z0-9",alpha:"a-zA-Z",ascii:"\\x00-\\x7F",blank:" \\t",cntrl:"\\x00-\\x1F\\x7F",digit:"0-9",graph:"\\x21-\\x7E",lower:"a-z",print:"\\x20-\\x7E ",punct:"\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~",space:" \\t\\r\\n\\v\\f",upper:"A-Z",word:"A-Za-z0-9_",xdigit:"A-Fa-f0-9"}},4151:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(2617);const o=n(5897);const a=n(5627);const s=n(7346).pathExists;function outputFile(e,t,n,r){if(typeof n==="function"){r=n;n="utf8"}const c=o.dirname(e);s(c,(o,s)=>{if(o)return r(o);if(s)return i.writeFile(e,t,n,r);a.mkdirs(c,o=>{if(o)return r(o);i.writeFile(e,t,n,r)})})}function outputFileSync(e,...t){const n=o.dirname(e);if(i.existsSync(n)){return i.writeFileSync(e,...t)}a.mkdirsSync(n);i.writeFileSync(e,...t)}e.exports={outputFile:r(outputFile),outputFileSync:outputFileSync}},4165:function(e,t,n){"use strict";n.r(t);var r=n(3528);var i=n.n(r);var o=n(5897);var a=n.n(o);var s=n(662);var c=n.n(s);var u=n(9930);var l=n.n(u);var f=n(772);var p=n.n(f);var d=n(9544);var h=n.n(d);var m=n(5947);var v=n.n(m);var g=n(9675);var y=n.n(g);var b=n(2229);var w=n.n(b);var x=n(774);var k=n.n(x);var j=n(4242);var S=n.n(j);var E=n(541);var _=n.n(E);var C=n(2788);var A=n.n(C);var O=n(6145);var F=n.n(O);var D=n(6397);var T=n.n(D);var I=n(4746);var R=n(7905);var P=n.n(R);var B=n(7233);var N=n.n(B);var z=n(2547);var L=n.n(z);var M=n(5246);var U=n.n(M);var q=n(5242);var H=n.n(q);var G=n(5580);var W=n.n(G);var V=n(6102);var J=n.n(V);var Y=n(4573);var Z=n.n(Y);var X=n(9693);var Q=n(8685);var K=n.n(Q);var $=n(5593);var ee=n.n($);var te=n(2385);var ne=n(1659);var re=n(4691);var ie=n.n(re);var oe=n(8715);var ae=n.n(oe);var se=n(6097);var ce=n.n(se);var ue=n(4132);var le=n.n(ue);var fe=n(2779);var pe=n.n(fe);var de=n(6482);var he=n.n(de);const me=T()();const ve=z["getConfigFilePath"]();const ge=z["getAuthConfigFilePath"]();const ye=new Set(["help"]);v()();l.a.install();j["init"]({dsn:ue["SENTRY_DSN"],release:`now-cli@${U.a.version}`,environment:U.a.version.includes("canary")?"canary":"stable"});let be=()=>{};let we="https://api.zeit.co";const xe=async e=>{const{isTTY:t}=process.stdout;let r=null;try{r=W()(e,{"--version":Boolean,"-v":"--version","--debug":Boolean,"-d":"--debug"},{permissive:true})}catch(e){Object(te["handleError"])(e);return 1}const i=r["--debug"];const a=H()({debug:i});be=a.debug;const c=r["--local-config"];const u=await ie()(a,c);if(c&&u instanceof oe["CantFindConfig"]){a.error(`Couldn't find a project configuration file at \n ${u.meta.paths.join(" or\n ")}`);return 1}if(u instanceof oe["CantParseJSONFile"]){a.error(`Couldn't parse JSON file ${u.meta.file}.`);return 1}if(u instanceof se["NowError"]&&!(u instanceof oe["CantFindConfig"])){a.error(`Failed to load local config file: ${u.message}`);return 1}const l=r._[2];let p=null;try{if(l!=="update"){p=await y()(U.a,{interval:w()("1d"),distTag:U.a.version.includes("canary")?"canary":"latest"})}}catch(e){console.error(_()(`Checking for updates failed${i?":":""}`));if(i){console.error(e)}}if(p&&t){console.log(F()(`${h.a.bgRed("UPDATE AVAILABLE")} `+`Run ${K()(await he()())} to install Now CLI ${p.latest}`));console.log(F()(`Changelog: https://github.com/zeit/now/releases/tag/now@${p.latest}`))}be(`Using Now CLI ${U.a.version}`);if(!l){if(r["--version"]){console.log(n(8185).version);return 0}}let d;try{d=Object(s["existsSync"])(me)}catch(e){console.error(_()(`${"An unexpected error occurred while trying to find the "+"now global directory: "}${e.message}`));return 1}if(!d){try{await Object(f["mkdirp"])(me)}catch(e){console.error(_()(`${"An unexpected error occurred while trying to create the "+`now global directory "${P()(me)}" `}${e.message}`))}}let m=false;let v;try{v=Object(s["existsSync"])(ve)}catch(e){console.error(_()(`${"An unexpected error occurred while trying to find the "+`now config file "${P()(ve)}" `}${e.message}`));return 0}let g;if(v){try{g=z["readConfigFile"]()}catch(e){console.error(_()(`${"An unexpected error occurred while trying to read the "+`now config in "${P()(ve)}" `}${e.message}`));return 1}if(g.sh||g.user||typeof g.user==="object"||typeof g.currentTeam==="object"){v=false}}if(!v){const e=await Object(I["getDefaultConfig"])(g);g=e.config;m=e.migrated;try{z["writeToConfigFile"](g)}catch(e){console.error(_()(`${"An unexpected error occurred while trying to write the "+`default now config to "${P()(ve)}" `}${e.message}`));return 1}}let b;try{b=Object(s["existsSync"])(ge)}catch(e){console.error(_()(`${"An unexpected error occurred while trying to find the "+`now auth file "${P()(ge)}" `}${e.message}`));return 1}let k=null;const S=["login","help","init","dev","update"];if(b){try{k=z["readAuthConfigFile"]()}catch(e){console.error(_()(`${"An unexpected error occurred while trying to read the "+`now auth config in "${P()(ge)}" `}${e.message}`));return 1}if(k.credentials){b=false}else if(!k.token&&!S.includes(l)&&!r["--help"]&&!r["--token"]){console.error(_()(`The content of "${P()(ge)}" is invalid. `+"No `token` property found inside. Run `now login` to authorize."));return 1}}else{const e=await Object(I["getDefaultAuthConfig"])(k);k=e.config;m=e.migrated;try{z["writeToAuthConfigFile"](k)}catch(e){console.error(_()(`${"An unexpected error occurred while trying to write the "+`default now config to "${P()(ge)}" `}${e.message}`));return 1}}if(m){const e=A()(P()(me));be(`The credentials and configuration within the ${e} directory were upgraded`)}const E={config:g,authConfig:k,localConfig:u,argv:e};let C;if(l){const e=Object(o["join"])(process.cwd(),l);const t=Object(s["existsSync"])(e);const n=ye.has(l)||N.a.has(l);if(t&&n){console.error(_()(`The supplied argument ${A()(l)} is ambiguous. `+"Both a directory and a subcommand are known"));return 1}if(n){be("user supplied known subcommand",l);C=l}else{be("user supplied a possible target for deployment");C="deploy"}}else{be("user supplied no target, defaulting to deploy");C="deploy"}if(C==="help"){C=r._[3]||"deploy";E.argv.push("-h")}if(r["--api"]&&typeof r["--api"]==="string"){we=r["--api"]}else if(E.config&&E.config.api){we=E.config.api}E.apiUrl=we;try{new x["URL"](E.apiUrl)}catch(e){console.error(_()(`Please provide a valid URL instead of ${ee()(E.apiUrl)}.`));return 1}if((!k||!k.token)&&!E.argv.includes("-h")&&!E.argv.includes("--help")&&!r["--token"]&&!S.includes(C)){if(t){console.log(F()(`No existing credentials found. Please log in:`));C="login";E.argv[2]="login";E.argv=E.argv.splice(0,3)}else{console.error(_()({message:"No existing credentials found. Please run "+`${A()("now login")} or pass ${A()("--token")}`,slug:"no-credentials-found"}));return 1}}if(typeof r["--token"]==="string"&&C==="switch"){console.error(_()({message:`This command doesn't work with ${A()("--token")}. Please use ${A()("--scope")}.`,slug:"no-token-allowed"}));return 1}if(typeof r["--token"]==="string"){const e=r["--token"];if(e.length===0){console.error(_()({message:`You defined ${A()("--token")}, but it's missing a value`,slug:"missing-token-value"}));return 1}E.authConfig.token=e;if(E.config&&E.config.currentTeam){delete E.config.currentTeam}}const O=r["--scope"]||r["--team"]||u.scope;const D=N.a.get(C);if(r["--team"]){a.warn(`The ${A()("--team")} flag is deprecated. Please use ${A()("--scope")} instead.`)}if(typeof O==="string"&&D!=="login"&&D!=="dev"&&!(D==="teams"&&r._[3]!=="invite")){const{authConfig:{token:e}}=E;const t=new Z.a({apiUrl:we,token:e});let n=null;try{n=await J()(t)}catch(e){if(e.code==="NOT_AUTHORIZED"){console.error(_()({message:`You do not have access to the specified account`,slug:"scope-not-accessible"}));return 1}console.error(_()("Not able to load user"));return 1}if(n.uid===O||n.email===O||n.username===O){delete E.config.currentTeam}else{let t=[];try{const n=new X["default"]({apiUrl:we,token:e,debug:i});t=(await n.ls()).teams}catch(e){if(e.code==="not_authorized"){console.error(_()({message:`You do not have access to the specified team`,slug:"scope-not-accessible"}));return 1}console.error(_()("Not able to load teams"));return 1}const n=t&&t.find(e=>e.id===O||e.slug===O);if(!n){console.error(_()({message:"The specified scope does not exist",slug:"scope-not-existent"}));return 1}E.config.currentTeam=n.id}}if(!D){const e=A()(C);console.error(_()(`The ${e} subcommand does not exist`));return 1}const T=Object(fe["metrics"])();let R;const B="Exit Code";try{const e=new Date;const t=n(2569)(`./${D}`).default;R=await t(E);const r=new Date-e;if(fe["shouldCollectMetrics"]){const e="Command Invocation";T.timing(e,D,r,U.a.version).event(e,D,U.a.version).send()}}catch(e){if(e.code==="ENOTFOUND"&&e.hostname==="api.zeit.co"){a.error(`The hostname ${ee()("api.zeit.co")} could not be resolved. Please verify your internet connectivity and DNS configuration.`);a.debug(e.stack);return 1}await Object(ne["default"])(j,e,we,z);if(e.code){a.debug(e.stack);a.error(e.message);if(fe["shouldCollectMetrics"]){T.event(B,"1",U.a.version).exception(e.message).send()}return 1}if(fe["shouldCollectMetrics"]){T.event(B,"1",U.a.version).exception(e.message).send()}a.error(`An unexpected error occurred in ${C}: ${e.stack}`);return 1}if(fe["shouldCollectMetrics"]){T.event(B,`${R}`,U.a.version).send()}return R};be("start");const ke=async e=>{be("handling rejection");if(e){if(e instanceof Error){await je(e)}else{console.error(_()(`An unexpected rejection occurred\n ${e}`));await Object(ne["default"])(j,e,we,z)}}else{console.error(_()("An unexpected empty rejection occurred"))}process.exit(1)};const je=async e=>{const{message:t}=e;if(t.includes("sentry")&&t.includes("ENOTFOUND")){be(`Sentry is not reachable: ${e}`);return}await Object(ne["default"])(j,e,we,z);be("handling unexpected error");console.error(_()(`An unexpected error occurred!\n ${e.stack} ${e.stack}`));process.exit(1)};process.on("unhandledRejection",ke);process.on("uncaughtException",je);xe(process.argv).then(e=>{process.exitCode=e;process.emit("nowExit")}).catch(je)},4170:function(e,t){"use strict";var n=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});function getAliases(e,t){return n(this,void 0,void 0,function*(){const n=t?`/now/deployments/${t}/aliases`:"/now/aliases";const r=yield e.fetch(n);return r.aliases||[]})}t.default=getAliases},4171:function(e,t,n){"use strict";const r=n(2673);const i=n(6278);const o=n(9703);const a=n(4480);e.exports=(()=>e=>{if(!Buffer.isBuffer(e)&&!a(e)){return Promise.reject(new TypeError(`Expected a Buffer or Stream, got ${typeof e}`))}if(Buffer.isBuffer(e)&&(!o(e)||o(e).ext!=="gz")){return Promise.resolve([])}const t=r.createGunzip();const n=i()(t);if(Buffer.isBuffer(e)){t.end(e)}else{e.pipe(t)}return n})},4178:function(e){var t=1e3;var n=t*60;var r=n*60;var i=r*24;var o=i*365.25;e.exports=function(e,t){t=t||{};var n=typeof e;if(n==="string"&&e.length>0){return parse(e)}else if(n==="number"&&isNaN(e)===false){return t.long?fmtLong(e):fmtShort(e)}throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))};function parse(e){e=String(e);if(e.length>100){return}var a=/^((?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec(e);if(!a){return}var s=parseFloat(a[1]);var c=(a[2]||"ms").toLowerCase();switch(c){case"years":case"year":case"yrs":case"yr":case"y":return s*o;case"days":case"day":case"d":return s*i;case"hours":case"hour":case"hrs":case"hr":case"h":return s*r;case"minutes":case"minute":case"mins":case"min":case"m":return s*n;case"seconds":case"second":case"secs":case"sec":case"s":return s*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return s;default:return undefined}}function fmtShort(e){if(e>=i){return Math.round(e/i)+"d"}if(e>=r){return Math.round(e/r)+"h"}if(e>=n){return Math.round(e/n)+"m"}if(e>=t){return Math.round(e/t)+"s"}return e+"ms"}function fmtLong(e){return plural(e,i,"day")||plural(e,r,"hour")||plural(e,n,"minute")||plural(e,t,"second")||e+" ms"}function plural(e,t,n){if(e<t){return}if(e<t*1.5){return Math.floor(e/t)+" "+n}return Math.ceil(e/t)+" "+n+"s"}},4181:function(e){"use strict";e.exports=function generate_required(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f="valid"+i;var p=e.opts.$data&&a&&a.$data,d;if(p){r+=" var schema"+i+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ";d="schema"+i}else{d=a}var h="schema"+i;if(!p){if(a.length<e.opts.loopRequired&&e.schema.properties&&Object.keys(e.schema.properties).length){var m=[];var v=a;if(v){var g,y=-1,b=v.length-1;while(y<b){g=v[y+=1];var w=e.schema.properties[g];if(!(w&&(e.opts.strictKeywords?typeof w=="object"&&Object.keys(w).length>0:e.util.schemaHasRules(w,e.RULES.all)))){m[m.length]=g}}}}else{var m=a}}if(p||m.length){var x=e.errorPath,k=p||m.length>=e.opts.loopRequired,j=e.opts.ownProperties;if(u){r+=" var missing"+i+"; ";if(k){if(!p){r+=" var "+h+" = validate.schema"+s+"; "}var S="i"+i,E="schema"+i+"["+S+"]",_="' + "+E+" + '";if(e.opts._errorDataPathProperty){e.errorPath=e.util.getPathExpr(x,E,e.opts.jsonPointers)}r+=" var "+f+" = true; ";if(p){r+=" if (schema"+i+" === undefined) "+f+" = true; else if (!Array.isArray(schema"+i+")) "+f+" = false; else {"}r+=" for (var "+S+" = 0; "+S+" < "+h+".length; "+S+"++) { "+f+" = "+l+"["+h+"["+S+"]] !== undefined ";if(j){r+=" && Object.prototype.hasOwnProperty.call("+l+", "+h+"["+S+"]) "}r+="; if (!"+f+") break; } ";if(p){r+=" } "}r+=" if (!"+f+") { ";var C=C||[];C.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"required"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { missingProperty: '"+_+"' } ";if(e.opts.messages!==false){r+=" , message: '";if(e.opts._errorDataPathProperty){r+="is a required property"}else{r+="should have required property \\'"+_+"\\'"}r+="' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var A=r;r=C.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+A+"]); "}else{r+=" validate.errors = ["+A+"]; return false; "}}else{r+=" var err = "+A+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+=" } else { "}else{r+=" if ( ";var O=m;if(O){var F,S=-1,D=O.length-1;while(S<D){F=O[S+=1];if(S){r+=" || "}var T=e.util.getProperty(F),I=l+T;r+=" ( ( "+I+" === undefined ";if(j){r+=" || ! Object.prototype.hasOwnProperty.call("+l+", '"+e.util.escapeQuotes(F)+"') "}r+=") && (missing"+i+" = "+e.util.toQuotedString(e.opts.jsonPointers?F:T)+") ) "}}r+=") { ";var E="missing"+i,_="' + "+E+" + '";if(e.opts._errorDataPathProperty){e.errorPath=e.opts.jsonPointers?e.util.getPathExpr(x,E,true):x+" + "+E}var C=C||[];C.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"required"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { missingProperty: '"+_+"' } ";if(e.opts.messages!==false){r+=" , message: '";if(e.opts._errorDataPathProperty){r+="is a required property"}else{r+="should have required property \\'"+_+"\\'"}r+="' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var A=r;r=C.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+A+"]); "}else{r+=" validate.errors = ["+A+"]; return false; "}}else{r+=" var err = "+A+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+=" } else { "}}else{if(k){if(!p){r+=" var "+h+" = validate.schema"+s+"; "}var S="i"+i,E="schema"+i+"["+S+"]",_="' + "+E+" + '";if(e.opts._errorDataPathProperty){e.errorPath=e.util.getPathExpr(x,E,e.opts.jsonPointers)}if(p){r+=" if ("+h+" && !Array.isArray("+h+")) { var err = ";if(e.createErrors!==false){r+=" { keyword: '"+"required"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { missingProperty: '"+_+"' } ";if(e.opts.messages!==false){r+=" , message: '";if(e.opts._errorDataPathProperty){r+="is a required property"}else{r+="should have required property \\'"+_+"\\'"}r+="' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}r+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; } else if ("+h+" !== undefined) { "}r+=" for (var "+S+" = 0; "+S+" < "+h+".length; "+S+"++) { if ("+l+"["+h+"["+S+"]] === undefined ";if(j){r+=" || ! Object.prototype.hasOwnProperty.call("+l+", "+h+"["+S+"]) "}r+=") { var err = ";if(e.createErrors!==false){r+=" { keyword: '"+"required"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { missingProperty: '"+_+"' } ";if(e.opts.messages!==false){r+=" , message: '";if(e.opts._errorDataPathProperty){r+="is a required property"}else{r+="should have required property \\'"+_+"\\'"}r+="' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}r+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; } } ";if(p){r+=" } "}}else{var R=m;if(R){var F,P=-1,B=R.length-1;while(P<B){F=R[P+=1];var T=e.util.getProperty(F),_=e.util.escapeQuotes(F),I=l+T;if(e.opts._errorDataPathProperty){e.errorPath=e.util.getPath(x,F,e.opts.jsonPointers)}r+=" if ( "+I+" === undefined ";if(j){r+=" || ! Object.prototype.hasOwnProperty.call("+l+", '"+e.util.escapeQuotes(F)+"') "}r+=") { var err = ";if(e.createErrors!==false){r+=" { keyword: '"+"required"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { missingProperty: '"+_+"' } ";if(e.opts.messages!==false){r+=" , message: '";if(e.opts._errorDataPathProperty){r+="is a required property"}else{r+="should have required property \\'"+_+"\\'"}r+="' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}r+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; } "}}}}e.errorPath=x}else if(u){r+=" if (true) {"}return r}},4197:function(e,t,n){"use strict";var r=n(7586);e.exports=function(e,t){e.compiler.set("bos",function(){if(this.output)return;this.ast.queue=isEscaped(this.ast)?[this.ast.val]:[];this.ast.count=1}).set("bracket",function(e){var t=e.close;var n=!e.escaped?"[":"\\[";var i=e.negated;var o=e.inner;o=o.replace(/\\(?=[\\\w]|$)/g,"\\\\");if(o==="]-"){o="\\]\\-"}if(i&&o.indexOf(".")===-1){o+="."}if(i&&o.indexOf("/")===-1){o+="/"}var a=n+i+o+t;var s=e.parent.queue;var c=r.arrayify(s.pop());s.push(r.join(c,a));s.push.apply(s,[])}).set("brace",function(e){e.queue=isEscaped(e)?[e.val]:[];e.count=1;return this.mapVisit(e.nodes)}).set("brace.open",function(e){e.parent.open=e.val}).set("text",function(e){var n=e.parent.queue;var i=e.escaped;var o=[e.val];if(e.optimize===false){t=r.extend({},t,{optimize:false})}if(e.multiplier>1){e.parent.count*=e.multiplier}if(t.quantifiers===true&&r.isQuantifier(e.val)){i=true}else if(e.val.length>1){if(isType(e.parent,"brace")&&!isEscaped(e)){var a=r.expand(e.val,t);o=a.segs;if(a.isOptimized){e.parent.isOptimized=true}if(!o.length){var s=a.val||e.val;if(t.unescape!==false){s=s.replace(/\\([,.])/g,"$1");s=s.replace(/["'`]/g,"")}o=[s];i=true}}}else if(e.val===","){if(t.expand){e.parent.queue.push([""]);o=[""]}else{o=["|"]}}else{i=true}if(i&&isType(e.parent,"brace")){if(e.parent.nodes.length<=4&&e.parent.count===1){e.parent.escaped=true}else if(e.parent.length<=3){e.parent.escaped=true}}if(!hasQueue(e.parent)){e.parent.queue=o;return}var c=r.arrayify(n.pop());if(e.parent.count>1&&t.expand){c=multiply(c,e.parent.count);e.parent.count=1}n.push(r.join(r.flatten(c),o.shift()));n.push.apply(n,o)}).set("brace.close",function(e){var n=e.parent.queue;var i=e.parent.parent;var o=i.queue.pop();var a=e.parent.open;var s=e.val;if(a&&s&&isOptimized(e,t)){a="(";s=")"}var c=r.last(n);if(e.parent.count>1&&t.expand){c=multiply(n.pop(),e.parent.count);e.parent.count=1;n.push(c)}if(s&&typeof c==="string"&&c.length===1){a="";s=""}if((isLiteralBrace(e,t)||noInner(e))&&!e.parent.hasEmpty){n.push(r.join(a,n.pop()||""));n=r.flatten(r.join(n,s))}if(typeof o==="undefined"){i.queue=[n]}else{i.queue.push(r.flatten(r.join(o,n)))}}).set("eos",function(e){if(this.input)return;if(t.optimize!==false){this.output=r.last(r.flatten(this.ast.queue))}else if(Array.isArray(r.last(this.ast.queue))){this.output=r.flatten(this.ast.queue.pop())}else{this.output=r.flatten(this.ast.queue)}if(e.parent.count>1&&t.expand){this.output=multiply(this.output,e.parent.count)}this.output=r.arrayify(this.output);this.ast.queue=[]})};function multiply(e,t,n){return r.flatten(r.repeat(r.arrayify(e),t))}function isEscaped(e){return e.escaped===true}function isOptimized(e,t){if(e.parent.isOptimized)return true;return isType(e.parent,"brace")&&!isEscaped(e.parent)&&t.expand!==true}function isLiteralBrace(e,t){return isEscaped(e.parent)||t.optimize!==false}function noInner(e,t){if(e.parent.queue.length===1){return true}var n=e.parent.nodes;return n.length===3&&isType(n[0],"brace.open")&&!isType(n[1],"text")&&isType(n[2],"brace.close")}function isType(e,t){return typeof e!=="undefined"&&e.type===t}function hasQueue(e){return Array.isArray(e.queue)&&e.queue.length}},4198:function(e,t,n){"use strict";e.exports=npa;e.exports.resolve=resolve;e.exports.Result=Result;let r;let i;let o;let a;let s;let c;const u=process.platform==="win32"||global.FAKE_WINDOWS;const l=u?/\\|[\/]/:/[\/]/;const f=/^(?:git[+])?[a-z]+:/i;const p=/[.](?:tgz|tar.gz|tar)$/i;function npa(e,t){let r;let i;if(typeof e==="object"){if(e instanceof Result&&(!t||t===e.where)){return e}else if(e.name&&e.rawSpec){return npa.resolve(e.name,e.rawSpec,t||e.where)}else{return npa(e.raw,t||e.where)}}const o=e[0]==="@"?e.slice(1).indexOf("@")+1:e.indexOf("@");const a=o>0?e.slice(0,o):e;if(f.test(e)){i=e}else if(a[0]!=="@"&&(l.test(a)||p.test(a))){i=e}else if(o>0){r=a;i=e.slice(o+1)}else{if(!s)s=n(9105);const t=s(e);if(t.validForOldPackages){r=e}else{i=e}}return resolve(r,i,t,e)}const d=u?/^(?:[.]|~[\/]|[\/\\]|[a-zA-Z]:)/:/^(?:[.]|~[\/]|[\/]|[a-zA-Z]:)/;function resolve(e,t,r,o){const a=new Result({raw:o,name:e,rawSpec:t,fromArgument:o!=null});if(e)a.setName(e);if(t&&(d.test(t)||/^file:/i.test(t))){return fromFile(a,r)}else if(t&&/^npm:/i.test(t)){return fromAlias(a,r)}if(!i)i=n(9128);const s=i.fromUrl(t,{noGitPlus:true,noCommittish:true});if(s){return fromHostedGit(a,s)}else if(t&&f.test(t)){return fromURL(a)}else if(t&&(l.test(t)||p.test(t))){return fromFile(a,r)}else{return fromRegistry(a)}}function invalidPackageName(e,t){const n=new Error(`Invalid package name "${e}": ${t.errors.join("; ")}`);n.code="EINVALIDPACKAGENAME";return n}function invalidTagName(e){const t=new Error(`Invalid tag name "${e}": Tags may not have any characters that encodeURIComponent encodes.`);t.code="EINVALIDTAGNAME";return t}function Result(e){this.type=e.type;this.registry=e.registry;this.where=e.where;if(e.raw==null){this.raw=e.name?e.name+"@"+e.rawSpec:e.rawSpec}else{this.raw=e.raw}this.name=undefined;this.escapedName=undefined;this.scope=undefined;this.rawSpec=e.rawSpec==null?"":e.rawSpec;this.saveSpec=e.saveSpec;this.fetchSpec=e.fetchSpec;if(e.name)this.setName(e.name);this.gitRange=e.gitRange;this.gitCommittish=e.gitCommittish;this.hosted=e.hosted}Result.prototype={};Result.prototype.setName=function(e){if(!s)s=n(9105);const t=s(e);if(!t.validForOldPackages){throw invalidPackageName(e,t)}this.name=e;this.scope=e[0]==="@"?e.slice(0,e.indexOf("/")):undefined;this.escapedName=e.replace("/","%2f");return this};Result.prototype.toString=function(){const e=[];if(this.name!=null&&this.name!=="")e.push(this.name);const t=this.saveSpec||this.fetchSpec||this.rawSpec;if(t!=null&&t!=="")e.push(t);return e.length?e.join("@"):this.raw};Result.prototype.toJSON=function(){const e=Object.assign({},this);delete e.hosted;return e};function setGitCommittish(e,t){if(t!=null&&t.length>=7&&t.slice(0,7)==="semver:"){e.gitRange=decodeURIComponent(t.slice(7));e.gitCommittish=null}else{e.gitCommittish=t===""?null:t}return e}const h=/^[\/]|^[A-Za-z]:/;function resolvePath(e,t){if(h.test(t))return t;if(!a)a=n(5897);return a.resolve(e,t)}function isAbsolute(e){if(e[0]==="/")return true;if(/^[A-Za-z]:/.test(e))return true;return false}function fromFile(e,t){if(!t)t=process.cwd();e.type=p.test(e.rawSpec)?"file":"directory";e.where=t;const r=e.rawSpec.replace(/\\/g,"/").replace(/^file:[\/]*([A-Za-z]:)/,"$1").replace(/^file:(?:[\/]*([~.\/]))?/,"$1");if(/^~[\/]/.test(r)){if(!c)c=n(9344);e.fetchSpec=resolvePath(c.home(),r.slice(2));e.saveSpec="file:"+r}else{e.fetchSpec=resolvePath(t,r);if(isAbsolute(r)){e.saveSpec="file:"+r}else{if(!a)a=n(5897);e.saveSpec="file:"+a.relative(t,e.fetchSpec)}}return e}function fromHostedGit(e,t){e.type="git";e.hosted=t;e.saveSpec=t.toString({noGitPlus:false,noCommittish:false});e.fetchSpec=t.getDefaultRepresentation()==="shortcut"?null:t.toString();return setGitCommittish(e,t.committish)}function unsupportedURLType(e,t){const n=new Error(`Unsupported URL Type "${e}": ${t}`);n.code="EUNSUPPORTEDPROTOCOL";return n}function matchGitScp(e){const t=e.match(/^git\+ssh:\/\/([^:#]+:[^#]+(?:\.git)?)(?:#(.*))?$/i);return t&&!t[1].match(/:[0-9]+\/?.*$/i)&&{fetchSpec:t[1],gitCommittish:t[2]==null?null:t[2]}}function fromURL(e){if(!r)r=n(774);const t=r.parse(e.rawSpec);e.saveSpec=e.rawSpec;switch(t.protocol){case"git:":case"git+http:":case"git+https:":case"git+rsync:":case"git+ftp:":case"git+file:":case"git+ssh:":e.type="git";const n=t.protocol==="git+ssh:"&&matchGitScp(e.rawSpec);if(n){setGitCommittish(e,n.gitCommittish);e.fetchSpec=n.fetchSpec}else{setGitCommittish(e,t.hash!=null?t.hash.slice(1):"");t.protocol=t.protocol.replace(/^git[+]/,"");delete t.hash;e.fetchSpec=r.format(t)}break;case"http:":case"https:":e.type="remote";e.fetchSpec=e.saveSpec;break;default:throw unsupportedURLType(t.protocol,e.rawSpec)}return e}function fromAlias(e,t){const n=npa(e.rawSpec.substr(4),t);if(n.type==="alias"){throw new Error("nested aliases not supported")}if(!n.registry){throw new Error("aliases only work for registry deps")}e.subSpec=n;e.registry=true;e.type="alias";e.saveSpec=null;e.fetchSpec=null;return e}function fromRegistry(e){e.registry=true;const t=e.rawSpec===""?"latest":e.rawSpec;e.saveSpec=null;e.fetchSpec=t;if(!o)o=n(5047);const r=o.valid(t,true);const i=o.validRange(t,true);if(r){e.type="version"}else if(i){e.type="range"}else{if(encodeURIComponent(t)!==t){throw invalidTagName(t)}e.type="tag"}return e}},4199:function(e,t,n){"use strict";const r=n(3901);const i=n(6547);const o=n(1274);const a=n(9060);const s=(e,t)=>{const n=61440;const r=16384;const i=40960;const o=e.versionMadeBy>>8;if((t&n)===i){return"symlink"}if((t&n)===r||o===0&&e.externalFileAttributes===16){return"directory"}return"file"};const c=(e,t)=>{const n={mode:e.externalFileAttributes>>16&65535,mtime:e.getLastModDate(),path:e.fileName};n.type=s(e,n.mode);if(n.mode===0&&n.type==="directory"){n.mode=493}if(n.mode===0){n.mode=420}return o(t.openReadStream.bind(t))(e).then(i.buffer).then(e=>{n.data=e;if(n.type==="symlink"){n.linkname=e.toString()}return n}).catch(e=>{t.close();throw e})};const u=e=>new Promise((t,n)=>{const r=[];e.readEntry();e.on("entry",t=>{c(t,e).catch(n).then(t=>{r.push(t);e.readEntry()})});e.on("error",n);e.on("end",()=>t(r))});e.exports=(()=>e=>{if(!Buffer.isBuffer(e)){return Promise.reject(new TypeError(`Expected a Buffer, got ${typeof e}`))}if(!r(e)||r(e).ext!=="zip"){return Promise.resolve([])}return o(a.fromBuffer)(e,{lazyEntries:true}).then(u)})},4215:function(e,t,n){"use strict";var r=n(8757);var i=n(4707);var o=n(5916);var a="([!@*?+]?\\(|\\)|[*?.+\\\\]|\\[:?(?=.*\\])|:?\\])+";var s=o.createRegex(a);function parsers(e){e.state=e.state||{};e.use(r.parsers);e.parser.sets.paren=e.parser.sets.paren||[];e.parser.capture("paren.open",function(){var e=this.parsed;var t=this.position();var n=this.match(/^([!@*?+])?\(/);if(!n)return;var r=this.prev();var o=n[1];var a=n[0];var s=t({type:"paren.open",parsed:e,val:a});var c=t({type:"paren",prefix:o,nodes:[s]});if(o==="!"&&r.type==="paren"&&r.prefix==="!"){r.prefix="@";c.prefix="@"}i(c,"rest",this.input);i(c,"parsed",e);i(c,"parent",r);i(s,"parent",c);this.push("paren",c);r.nodes.push(c)}).capture("paren.close",function(){var e=this.parsed;var t=this.position();var n=this.match(/^\)/);if(!n)return;var r=this.pop("paren");var o=t({type:"paren.close",rest:this.input,parsed:e,val:n[0]});if(!this.isType(r,"paren")){if(this.options.strict){throw new Error('missing opening paren: "("')}o.escaped=true;return o}o.prefix=r.prefix;r.nodes.push(o);i(o,"parent",r)}).capture("escape",function(){var e=this.position();var t=this.match(/^\\(.)/);if(!t)return;return e({type:"escape",val:t[0],ch:t[1]})}).capture("qmark",function(){var t=this.parsed;var n=this.position();var r=this.match(/^\?+(?!\()/);if(!r)return;e.state.metachar=true;return n({type:"qmark",rest:this.input,parsed:t,val:r[0]})}).capture("star",/^\*(?!\()/).capture("plus",/^\+(?!\()/).capture("dot",/^\./).capture("text",s)}e.exports.TEXT_REGEX=a;e.exports=parsers},4217:function(e,t,n){var r=n(8901);var i=n(649);var o=n(9544);var a=n(9159);var s=n(5311);var c=n(1471);var u=n(7063);var l=n(6828);e.exports=Prompt;function Prompt(){c.apply(this,arguments);if(!this.opt.choices){this.throwParamError("choices")}if(r.isArray(this.opt.default)){this.opt.choices.forEach(function(e){if(this.opt.default.indexOf(e.value)>=0){e.checked=true}},this)}this.pointer=0;this.firstRender=true;this.opt.default=null;this.paginator=new l}i.inherits(Prompt,c);Prompt.prototype._run=function(e){this.done=e;var t=u(this.rl);var n=this.handleSubmitEvents(t.line.map(this.getCurrentValue.bind(this)));n.success.forEach(this.onEnd.bind(this));n.error.forEach(this.onError.bind(this));t.normalizedUpKey.takeUntil(n.success).forEach(this.onUpKey.bind(this));t.normalizedDownKey.takeUntil(n.success).forEach(this.onDownKey.bind(this));t.numberKey.takeUntil(n.success).forEach(this.onNumberKey.bind(this));t.spaceKey.takeUntil(n.success).forEach(this.onSpaceKey.bind(this));t.aKey.takeUntil(n.success).forEach(this.onAllKey.bind(this));t.iKey.takeUntil(n.success).forEach(this.onInverseKey.bind(this));a.hide();this.render();this.firstRender=false;return this};Prompt.prototype.render=function(e){var t=this.getQuestion();var n="";if(this.firstRender){t+="(Press "+o.cyan.bold("<space>")+" to select, "+o.cyan.bold("<a>")+" to toggle all, "+o.cyan.bold("<i>")+" to inverse selection)"}if(this.status==="answered"){t+=o.cyan(this.selection.join(", "))}else{var r=renderChoices(this.opt.choices,this.pointer);var i=this.opt.choices.indexOf(this.opt.choices.getChoice(this.pointer));t+="\n"+this.paginator.paginate(r,i,this.opt.pageSize)}if(e){n=o.red(">> ")+e}this.screen.render(t,n)};Prompt.prototype.onEnd=function(e){this.status="answered";this.render();this.screen.done();a.show();this.done(e.value)};Prompt.prototype.onError=function(e){this.render(e.isValid)};Prompt.prototype.getCurrentValue=function(){var e=this.opt.choices.filter(function(e){return Boolean(e.checked)&&!e.disabled});this.selection=r.map(e,"short");return r.map(e,"value")};Prompt.prototype.onUpKey=function(){var e=this.opt.choices.realLength;this.pointer=this.pointer>0?this.pointer-1:e-1;this.render()};Prompt.prototype.onDownKey=function(){var e=this.opt.choices.realLength;this.pointer=this.pointer<e-1?this.pointer+1:0;this.render()};Prompt.prototype.onNumberKey=function(e){if(e<=this.opt.choices.realLength){this.pointer=e-1;this.toggleChoice(this.pointer)}this.render()};Prompt.prototype.onSpaceKey=function(){this.toggleChoice(this.pointer);this.render()};Prompt.prototype.onAllKey=function(){var e=Boolean(this.opt.choices.find(function(e){return e.type!=="separator"&&!e.checked}));this.opt.choices.forEach(function(t){if(t.type!=="separator"){t.checked=e}});this.render()};Prompt.prototype.onInverseKey=function(){this.opt.choices.forEach(function(e){if(e.type!=="separator"){e.checked=!e.checked}});this.render()};Prompt.prototype.toggleChoice=function(e){var t=this.opt.choices.getChoice(e);if(t!==undefined){this.opt.choices.getChoice(e).checked=!t.checked}};function renderChoices(e,t){var n="";var i=0;e.forEach(function(e,a){if(e.type==="separator"){i++;n+=" "+e+"\n";return}if(e.disabled){i++;n+=" - "+e.name;n+=" ("+(r.isString(e.disabled)?e.disabled:"Disabled")+")"}else{var c=a-i===t;n+=c?o.cyan(s.pointer):" ";n+=getCheckbox(e.checked)+" "+e.name}n+="\n"});return n.replace(/\n$/,"")}function getCheckbox(e){return e?o.green(s.radioOn):s.radioOff}},4219:function(e){e.exports=require("http")},4223:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});const r=n(774);function toHost(e){if(/^https?:\/\//.test(e)){return r.parse(e).host}return e.replace(/(\/\/)?([^\/]+)(.*)/,"$2")}t.default=toHost},4226:function(e,t,n){"use strict";var r=[n(8330),n(3013),n(8999),n(1890),n(2815),n(5953),n(288),n(3731)];for(var i=0;i<r.length;i++){var o=r[i];for(var a in o)if(Object.prototype.hasOwnProperty.call(o,a))t[a]=o[a]}},4229:function(e,t,n){const r=n(18);const i=n(4348);const o=n(3309);const a=n(7089);e.exports={Pool:r,Deque:i,PriorityQueue:o,DefaultEvictor:a,createPool:function(e,t){return new r(a,i,o,e,t)}}},4234:function(e,t,n){e.exports={read:read,verify:verify,sign:sign,signAsync:signAsync,write:write};var r=n(9261);var i=n(4833);var o=n(3062).Buffer;var a=n(6977);var s=n(5271);var c=n(120);var u=n(1946);var l=n(5302);var f=n(8161);var p=n(5511);var d=n(6399);var h=n(6109);function readMPInt(e,t){r.strictEqual(e.peek(),i.Ber.Integer,t+" is not an Integer");return s.mpNormalize(e.readString(i.Ber.Integer,true))}function verify(e,t){var n=e.signatures.x509;r.object(n,"x509 signature");var o=n.algo.split("-");if(o[0]!==t.type)return false;var a=n.cache;if(a===undefined){var s=new i.BerWriter;writeTBSCert(e,s);a=s.buffer}var c=t.createVerify(o[1]);c.write(a);return c.verify(n.signature)}function Local(e){return i.Ber.Context|i.Ber.Constructor|e}function Context(e){return i.Ber.Context|e}var m={"rsa-md5":"1.2.840.113549.1.1.4","rsa-sha1":"1.2.840.113549.1.1.5","rsa-sha256":"1.2.840.113549.1.1.11","rsa-sha384":"1.2.840.113549.1.1.12","rsa-sha512":"1.2.840.113549.1.1.13","dsa-sha1":"1.2.840.10040.4.3","dsa-sha256":"2.16.840.1.101.3.4.3.2","ecdsa-sha1":"1.2.840.10045.4.1","ecdsa-sha256":"1.2.840.10045.4.3.2","ecdsa-sha384":"1.2.840.10045.4.3.3","ecdsa-sha512":"1.2.840.10045.4.3.4","ed25519-sha512":"1.3.101.112"};Object.keys(m).forEach(function(e){m[m[e]]=e});m["1.3.14.3.2.3"]="rsa-md5";m["1.3.14.3.2.29"]="rsa-sha1";var v={issuerKeyId:"2.5.29.35",altName:"2.5.29.17",basicConstraints:"2.5.29.19",keyUsage:"2.5.29.15",extKeyUsage:"2.5.29.37"};function read(e,t){if(typeof e==="string"){e=o.from(e,"binary")}r.buffer(e,"buf");var n=new i.BerReader(e);n.readSequence();if(Math.abs(n.length-n.remain)>1){throw new Error("DER sequence does not contain whole byte "+"stream")}var a=n.offset;n.readSequence();var s=n.offset+n.length;var c=s;if(n.peek()===Local(0)){n.readSequence(Local(0));var u=n.readInt();r.ok(u<=3,"only x.509 versions up to v3 supported")}var l={};l.signatures={};var v=l.signatures.x509={};v.extras={};l.serial=readMPInt(n,"serial");n.readSequence();var g=n.offset+n.length;var y=n.readOID();var b=m[y];if(b===undefined)throw new Error("unknown signature algorithm "+y);n._offset=g;l.issuer=f.parseAsn1(n);n.readSequence();l.validFrom=readDate(n);l.validUntil=readDate(n);l.subjects=[f.parseAsn1(n)];n.readSequence();g=n.offset+n.length;l.subjectKey=h.readPkcs8(undefined,"public",n);n._offset=g;if(n.peek()===Local(1)){n.readSequence(Local(1));v.extras.issuerUniqueID=e.slice(n.offset,n.offset+n.length);n._offset+=n.length}if(n.peek()===Local(2)){n.readSequence(Local(2));v.extras.subjectUniqueID=e.slice(n.offset,n.offset+n.length);n._offset+=n.length}if(n.peek()===Local(3)){n.readSequence(Local(3));var w=n.offset+n.length;n.readSequence();while(n.offset<w)readExtension(l,e,n);r.strictEqual(n.offset,w)}r.strictEqual(n.offset,s);n.readSequence();g=n.offset+n.length;var x=n.readOID();var k=m[x];if(k===undefined)throw new Error("unknown signature algorithm "+x);n._offset=g;var j=n.readString(i.Ber.BitString,true);if(j[0]===0)j=j.slice(1);var S=k.split("-");v.signature=p.parse(j,S[0],"asn1");v.signature.hashAlgorithm=S[1];v.algo=k;v.cache=e.slice(a,c);return new d(l)}function readDate(e){if(e.peek()===i.Ber.UTCTime){return utcTimeToDate(e.readString(i.Ber.UTCTime))}else if(e.peek()===i.Ber.GeneralizedTime){return gTimeToDate(e.readString(i.Ber.GeneralizedTime))}else{throw new Error("Unsupported date format")}}function writeDate(e,t){if(t.getUTCFullYear()>=2050||t.getUTCFullYear()<1950){e.writeString(dateToGTime(t),i.Ber.GeneralizedTime)}else{e.writeString(dateToUTCTime(t),i.Ber.UTCTime)}}var g={OtherName:Local(0),RFC822Name:Context(1),DNSName:Context(2),X400Address:Local(3),DirectoryName:Local(4),EDIPartyName:Local(5),URI:Context(6),IPAddress:Context(7),OID:Context(8)};var y={serverAuth:"1.3.6.1.5.5.7.3.1",clientAuth:"1.3.6.1.5.5.7.3.2",codeSigning:"1.3.6.1.5.5.7.3.3",joyentDocker:"1.3.6.1.4.1.38678.1.4.1",joyentCmon:"1.3.6.1.4.1.38678.1.4.2"};var b={};Object.keys(y).forEach(function(e){b[y[e]]=e});var w=["signature","identity","keyEncryption","encryption","keyAgreement","ca","crl"];function readExtension(e,t,n){n.readSequence();var r=n.offset+n.length;var o=n.readOID();var a;var s=e.signatures.x509;if(!s.extras.exts)s.extras.exts=[];var c;if(n.peek()===i.Ber.Boolean)c=n.readBoolean();switch(o){case v.basicConstraints:n.readSequence(i.Ber.OctetString);n.readSequence();var u=n.offset+n.length;var l=false;if(n.peek()===i.Ber.Boolean)l=n.readBoolean();if(e.purposes===undefined)e.purposes=[];if(l===true)e.purposes.push("ca");var p={oid:o,critical:c};if(n.offset<u&&n.peek()===i.Ber.Integer)p.pathLen=n.readInt();s.extras.exts.push(p);break;case v.extKeyUsage:n.readSequence(i.Ber.OctetString);n.readSequence();if(e.purposes===undefined)e.purposes=[];var d=n.offset+n.length;while(n.offset<d){var h=n.readOID();e.purposes.push(b[h]||h)}if(e.purposes.indexOf("serverAuth")!==-1&&e.purposes.indexOf("clientAuth")===-1){e.subjects.forEach(function(e){if(e.type!=="host"){e.type="host";e.hostname=e.uid||e.email||e.components[0].value}})}else if(e.purposes.indexOf("clientAuth")!==-1&&e.purposes.indexOf("serverAuth")===-1){e.subjects.forEach(function(e){if(e.type!=="user"){e.type="user";e.uid=e.hostname||e.email||e.components[0].value}})}s.extras.exts.push({oid:o,critical:c});break;case v.keyUsage:n.readSequence(i.Ber.OctetString);var m=n.readString(i.Ber.BitString,true);var y=readBitField(m,w);y.forEach(function(t){if(e.purposes===undefined)e.purposes=[];if(e.purposes.indexOf(t)===-1)e.purposes.push(t)});s.extras.exts.push({oid:o,critical:c,bits:m});break;case v.altName:n.readSequence(i.Ber.OctetString);n.readSequence();var x=n.offset+n.length;while(n.offset<x){switch(n.peek()){case g.OtherName:case g.EDIPartyName:n.readSequence();n._offset+=n.length;break;case g.OID:n.readOID(g.OID);break;case g.RFC822Name:var k=n.readString(g.RFC822Name);a=f.forEmail(k);if(!e.subjects[0].equals(a))e.subjects.push(a);break;case g.DirectoryName:n.readSequence(g.DirectoryName);a=f.parseAsn1(n);if(!e.subjects[0].equals(a))e.subjects.push(a);break;case g.DNSName:var j=n.readString(g.DNSName);a=f.forHost(j);if(!e.subjects[0].equals(a))e.subjects.push(a);break;default:n.readString(n.peek());break}}s.extras.exts.push({oid:o,critical:c});break;default:s.extras.exts.push({oid:o,critical:c,data:n.readString(i.Ber.OctetString,true)});break}n._offset=r}var x=/^([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})?Z$/;function utcTimeToDate(e){var t=e.match(x);r.ok(t,"timestamps must be in UTC");var n=new Date;var i=n.getUTCFullYear();var o=Math.floor(i/100)*100;var a=parseInt(t[1],10);if(i%100<50&&a>=60)a+=o-1;else a+=o;n.setUTCFullYear(a,parseInt(t[2],10)-1,parseInt(t[3],10));n.setUTCHours(parseInt(t[4],10),parseInt(t[5],10));if(t[6]&&t[6].length>0)n.setUTCSeconds(parseInt(t[6],10));return n}var k=/^([0-9]{4})([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})?Z$/;function gTimeToDate(e){var t=e.match(k);r.ok(t);var n=new Date;n.setUTCFullYear(parseInt(t[1],10),parseInt(t[2],10)-1,parseInt(t[3],10));n.setUTCHours(parseInt(t[4],10),parseInt(t[5],10));if(t[6]&&t[6].length>0)n.setUTCSeconds(parseInt(t[6],10));return n}function zeroPad(e,t){if(t===undefined)t=2;var n=""+e;while(n.length<t)n="0"+n;return n}function dateToUTCTime(e){var t="";t+=zeroPad(e.getUTCFullYear()%100);t+=zeroPad(e.getUTCMonth()+1);t+=zeroPad(e.getUTCDate());t+=zeroPad(e.getUTCHours());t+=zeroPad(e.getUTCMinutes());t+=zeroPad(e.getUTCSeconds());t+="Z";return t}function dateToGTime(e){var t="";t+=zeroPad(e.getUTCFullYear(),4);t+=zeroPad(e.getUTCMonth()+1);t+=zeroPad(e.getUTCDate());t+=zeroPad(e.getUTCHours());t+=zeroPad(e.getUTCMinutes());t+=zeroPad(e.getUTCSeconds());t+="Z";return t}function sign(e,t){if(e.signatures.x509===undefined)e.signatures.x509={};var n=e.signatures.x509;n.algo=t.type+"-"+t.defaultHashAlgorithm();if(m[n.algo]===undefined)return false;var r=new i.BerWriter;writeTBSCert(e,r);var o=r.buffer;n.cache=o;var a=t.createSign();a.write(o);e.signatures.x509.signature=a.sign();return true}function signAsync(e,t,n){if(e.signatures.x509===undefined)e.signatures.x509={};var r=e.signatures.x509;var o=new i.BerWriter;writeTBSCert(e,o);var a=o.buffer;r.cache=a;t(a,function(e,t){if(e){n(e);return}r.algo=t.type+"-"+t.hashAlgorithm;if(m[r.algo]===undefined){n(new Error('Invalid signing algorithm "'+r.algo+'"'));return}r.signature=t;n()})}function write(e,t){var n=e.signatures.x509;r.object(n,"x509 signature");var a=new i.BerWriter;a.startSequence();if(n.cache){a._ensure(n.cache.length);n.cache.copy(a._buf,a._offset);a._offset+=n.cache.length}else{writeTBSCert(e,a)}a.startSequence();a.writeOID(m[n.algo]);if(n.algo.match(/^rsa-/))a.writeNull();a.endSequence();var s=n.signature.toBuffer("asn1");var c=o.alloc(s.length+1);c[0]=0;s.copy(c,1);a.writeBuffer(c,i.Ber.BitString);a.endSequence();return a.buffer}function writeTBSCert(e,t){var n=e.signatures.x509;r.object(n,"x509 signature");t.startSequence();t.startSequence(Local(0));t.writeInt(2);t.endSequence();t.writeBuffer(s.mpNormalize(e.serial),i.Ber.Integer);t.startSequence();t.writeOID(m[n.algo]);if(n.algo.match(/^rsa-/))t.writeNull();t.endSequence();e.issuer.toAsn1(t);t.startSequence();writeDate(t,e.validFrom);writeDate(t,e.validUntil);t.endSequence();var o=e.subjects[0];var a=e.subjects.slice(1);o.toAsn1(t);h.writePkcs8(t,e.subjectKey);if(n.extras&&n.extras.issuerUniqueID){t.writeBuffer(n.extras.issuerUniqueID,Local(1))}if(n.extras&&n.extras.subjectUniqueID){t.writeBuffer(n.extras.subjectUniqueID,Local(2))}if(a.length>0||o.type==="host"||e.purposes!==undefined&&e.purposes.length>0||n.extras&&n.extras.exts){t.startSequence(Local(3));t.startSequence();var c=[];if(e.purposes!==undefined&&e.purposes.length>0){c.push({oid:v.basicConstraints,critical:true});c.push({oid:v.keyUsage,critical:true});c.push({oid:v.extKeyUsage,critical:true})}c.push({oid:v.altName});if(n.extras&&n.extras.exts)c=n.extras.exts;for(var u=0;u<c.length;++u){t.startSequence();t.writeOID(c[u].oid);if(c[u].critical!==undefined)t.writeBoolean(c[u].critical);if(c[u].oid===v.altName){t.startSequence(i.Ber.OctetString);t.startSequence();if(o.type==="host"){t.writeString(o.hostname,Context(2))}for(var l=0;l<a.length;++l){if(a[l].type==="host"){t.writeString(a[l].hostname,g.DNSName)}else if(a[l].type==="email"){t.writeString(a[l].email,g.RFC822Name)}else{t.startSequence(g.DirectoryName);a[l].toAsn1(t);t.endSequence()}}t.endSequence();t.endSequence()}else if(c[u].oid===v.basicConstraints){t.startSequence(i.Ber.OctetString);t.startSequence();var f=e.purposes.indexOf("ca")!==-1;var p=c[u].pathLen;t.writeBoolean(f);if(p!==undefined)t.writeInt(p);t.endSequence();t.endSequence()}else if(c[u].oid===v.extKeyUsage){t.startSequence(i.Ber.OctetString);t.startSequence();e.purposes.forEach(function(e){if(e==="ca")return;if(w.indexOf(e)!==-1)return;var n=e;if(y[e]!==undefined)n=y[e];t.writeOID(n)});t.endSequence();t.endSequence()}else if(c[u].oid===v.keyUsage){t.startSequence(i.Ber.OctetString);if(c[u].bits!==undefined){t.writeBuffer(c[u].bits,i.Ber.BitString)}else{var d=writeBitField(e.purposes,w);t.writeBuffer(d,i.Ber.BitString)}t.endSequence()}else{t.writeBuffer(c[u].data,i.Ber.OctetString)}t.endSequence()}t.endSequence();t.endSequence()}t.endSequence()}function readBitField(e,t){var n=8*(e.length-1)-e[0];var r={};for(var i=0;i<n;++i){var o=1+Math.floor(i/8);var a=7-i%8;var s=1<<a;var c=(e[o]&s)!==0;var u=t[i];if(c&&typeof u==="string"){r[u]=true}}return Object.keys(r)}function writeBitField(e,t){var n=t.length;var r=Math.ceil(n/8);var i=r*8-n;var a=o.alloc(1+r);a[0]=i;for(var s=0;s<n;++s){var c=1+Math.floor(s/8);var u=7-s%8;var l=1<<u;var f=t[s];if(f===undefined)continue;var p=e.indexOf(f)!==-1;if(p){a[c]|=l}}return a}},4236:function(e,t,n){"use strict";e.exports=function(e,t,r){var i=n(4730);var o=n(2659).RangeError;var a=n(2659).AggregateError;var s=i.isArray;var c={};function SomePromiseArray(e){this.constructor$(e);this._howMany=0;this._unwrap=false;this._initialized=false}i.inherits(SomePromiseArray,t);SomePromiseArray.prototype._init=function(){if(!this._initialized){return}if(this._howMany===0){this._resolve([]);return}this._init$(undefined,-5);var e=s(this._values);if(!this._isResolved()&&e&&this._howMany>this._canPossiblyFulfill()){this._reject(this._getRangeError(this.length()))}};SomePromiseArray.prototype.init=function(){this._initialized=true;this._init()};SomePromiseArray.prototype.setUnwrap=function(){this._unwrap=true};SomePromiseArray.prototype.howMany=function(){return this._howMany};SomePromiseArray.prototype.setHowMany=function(e){this._howMany=e};SomePromiseArray.prototype._promiseFulfilled=function(e){this._addFulfilled(e);if(this._fulfilled()===this.howMany()){this._values.length=this.howMany();if(this.howMany()===1&&this._unwrap){this._resolve(this._values[0])}else{this._resolve(this._values)}return true}return false};SomePromiseArray.prototype._promiseRejected=function(e){this._addRejected(e);return this._checkOutcome()};SomePromiseArray.prototype._promiseCancelled=function(){if(this._values instanceof e||this._values==null){return this._cancel()}this._addRejected(c);return this._checkOutcome()};SomePromiseArray.prototype._checkOutcome=function(){if(this.howMany()>this._canPossiblyFulfill()){var e=new a;for(var t=this.length();t<this._values.length;++t){if(this._values[t]!==c){e.push(this._values[t])}}if(e.length>0){this._reject(e)}else{this._cancel()}return true}return false};SomePromiseArray.prototype._fulfilled=function(){return this._totalResolved};SomePromiseArray.prototype._rejected=function(){return this._values.length-this.length()};SomePromiseArray.prototype._addRejected=function(e){this._values.push(e)};SomePromiseArray.prototype._addFulfilled=function(e){this._values[this._totalResolved++]=e};SomePromiseArray.prototype._canPossiblyFulfill=function(){return this.length()-this._rejected()};SomePromiseArray.prototype._getRangeError=function(e){var t="Input array must contain at least "+this._howMany+" items but contains only "+e+" items";return new o(t)};SomePromiseArray.prototype._resolveEmptyArray=function(){this._reject(this._getRangeError(0))};function some(e,t){if((t|0)!==t||t<0){return r("expecting a positive integer\n\n See http://goo.gl/MqrFmX\n")}var n=new SomePromiseArray(e);var i=n.promise();n.setHowMany(t);n.init();return i}e.some=function(e,t){return some(e,t)};e.prototype.some=function(e){return some(this,e)};e._SomePromiseArray=SomePromiseArray}},4239:function(e,t,n){"use strict";e.exports=function(){var t=function(){return new p("circular promise resolution chain\n\n See http://goo.gl/MqrFmX\n")};var r=function(){return new Promise.PromiseInspection(this._target())};var i=function(e){return Promise.reject(new p(e))};function Proxyable(){}var o={};var a=n(4730);var s;if(a.isNode){s=function(){var e=process.domain;if(e===undefined)e=null;return e}}else{s=function(){return null}}a.notEnumerableProp(Promise,"_getDomain",s);var c=n(5467);var u=n(6309);var l=new u;c.defineProperty(Promise,"_async",{value:l});var f=n(2659);var p=Promise.TypeError=f.TypeError;Promise.RangeError=f.RangeError;var d=Promise.CancellationError=f.CancellationError;Promise.TimeoutError=f.TimeoutError;Promise.OperationalError=f.OperationalError;Promise.RejectionError=f.OperationalError;Promise.AggregateError=f.AggregateError;var h=function(){};var m={};var v={};var g=n(7782)(Promise,h);var y=n(6327)(Promise,h,g,i,Proxyable);var b=n(6451)(Promise);var w=b.create;var x=n(2165)(Promise,b);var k=x.CapturedTrace;var j=n(1580)(Promise,g,v);var S=n(4907)(v);var E=n(9370);var _=a.errorObj;var C=a.tryCatch;function check(e,t){if(e==null||e.constructor!==Promise){throw new p("the promise constructor cannot be invoked directly\n\n See http://goo.gl/MqrFmX\n")}if(typeof t!=="function"){throw new p("expecting a function but got "+a.classString(t))}}function Promise(e){if(e!==h){check(this,e)}this._bitField=0;this._fulfillmentHandler0=undefined;this._rejectionHandler0=undefined;this._promise0=undefined;this._receiver0=undefined;this._resolveFromExecutor(e);this._promiseCreated();this._fireEvent("promiseCreated",this)}Promise.prototype.toString=function(){return"[object Promise]"};Promise.prototype.caught=Promise.prototype["catch"]=function(e){var t=arguments.length;if(t>1){var n=new Array(t-1),r=0,o;for(o=0;o<t-1;++o){var s=arguments[o];if(a.isObject(s)){n[r++]=s}else{return i("Catch statement predicate: "+"expecting an object but got "+a.classString(s))}}n.length=r;e=arguments[o];if(typeof e!=="function"){throw new p("The last argument to .catch() "+"must be a function, got "+a.toString(e))}return this.then(undefined,S(n,e,this))}return this.then(undefined,e)};Promise.prototype.reflect=function(){return this._then(r,r,undefined,this,undefined)};Promise.prototype.then=function(e,t){if(x.warnings()&&arguments.length>0&&typeof e!=="function"&&typeof t!=="function"){var n=".then() only accepts functions but was passed: "+a.classString(e);if(arguments.length>1){n+=", "+a.classString(t)}this._warn(n)}return this._then(e,t,undefined,undefined,undefined)};Promise.prototype.done=function(e,t){var n=this._then(e,t,undefined,undefined,undefined);n._setIsFinal()};Promise.prototype.spread=function(e){if(typeof e!=="function"){return i("expecting a function but got "+a.classString(e))}return this.all()._then(e,undefined,undefined,m,undefined)};Promise.prototype.toJSON=function(){var e={isFulfilled:false,isRejected:false,fulfillmentValue:undefined,rejectionReason:undefined};if(this.isFulfilled()){e.fulfillmentValue=this.value();e.isFulfilled=true}else if(this.isRejected()){e.rejectionReason=this.reason();e.isRejected=true}return e};Promise.prototype.all=function(){if(arguments.length>0){this._warn(".all() was passed arguments but it does not take any")}return new y(this).promise()};Promise.prototype.error=function(e){return this.caught(a.originatesFromRejection,e)};Promise.getNewLibraryCopy=e.exports;Promise.is=function(e){return e instanceof Promise};Promise.fromNode=Promise.fromCallback=function(e){var t=new Promise(h);t._captureStackTrace();var n=arguments.length>1?!!Object(arguments[1]).multiArgs:false;var r=C(e)(E(t,n));if(r===_){t._rejectCallback(r.e,true)}if(!t._isFateSealed())t._setAsyncGuaranteed();return t};Promise.all=function(e){return new y(e).promise()};Promise.cast=function(e){var t=g(e);if(!(t instanceof Promise)){t=new Promise(h);t._captureStackTrace();t._setFulfilled();t._rejectionHandler0=e}return t};Promise.resolve=Promise.fulfilled=Promise.cast;Promise.reject=Promise.rejected=function(e){var t=new Promise(h);t._captureStackTrace();t._rejectCallback(e,true);return t};Promise.setScheduler=function(e){if(typeof e!=="function"){throw new p("expecting a function but got "+a.classString(e))}return l.setScheduler(e)};Promise.prototype._then=function(e,t,n,r,i){var o=i!==undefined;var c=o?i:new Promise(h);var u=this._target();var f=u._bitField;if(!o){c._propagateFrom(this,3);c._captureStackTrace();if(r===undefined&&(this._bitField&2097152)!==0){if(!((f&50397184)===0)){r=this._boundValue()}else{r=u===this?undefined:this._boundTo}}this._fireEvent("promiseChained",this,c)}var p=s();if(!((f&50397184)===0)){var m,v,g=u._settlePromiseCtx;if((f&33554432)!==0){v=u._rejectionHandler0;m=e}else if((f&16777216)!==0){v=u._fulfillmentHandler0;m=t;u._unsetRejectionIsUnhandled()}else{g=u._settlePromiseLateCancellationObserver;v=new d("late cancellation observer");u._attachExtraTrace(v);m=t}l.invoke(g,u,{handler:p===null?m:typeof m==="function"&&a.domainBind(p,m),promise:c,receiver:r,value:v})}else{u._addCallbacks(e,t,c,r,p)}return c};Promise.prototype._length=function(){return this._bitField&65535};Promise.prototype._isFateSealed=function(){return(this._bitField&117506048)!==0};Promise.prototype._isFollowing=function(){return(this._bitField&67108864)===67108864};Promise.prototype._setLength=function(e){this._bitField=this._bitField&-65536|e&65535};Promise.prototype._setFulfilled=function(){this._bitField=this._bitField|33554432;this._fireEvent("promiseFulfilled",this)};Promise.prototype._setRejected=function(){this._bitField=this._bitField|16777216;this._fireEvent("promiseRejected",this)};Promise.prototype._setFollowing=function(){this._bitField=this._bitField|67108864;this._fireEvent("promiseResolved",this)};Promise.prototype._setIsFinal=function(){this._bitField=this._bitField|4194304};Promise.prototype._isFinal=function(){return(this._bitField&4194304)>0};Promise.prototype._unsetCancelled=function(){this._bitField=this._bitField&~65536};Promise.prototype._setCancelled=function(){this._bitField=this._bitField|65536;this._fireEvent("promiseCancelled",this)};Promise.prototype._setWillBeCancelled=function(){this._bitField=this._bitField|8388608};Promise.prototype._setAsyncGuaranteed=function(){if(l.hasCustomScheduler())return;this._bitField=this._bitField|134217728};Promise.prototype._receiverAt=function(e){var t=e===0?this._receiver0:this[e*4-4+3];if(t===o){return undefined}else if(t===undefined&&this._isBound()){return this._boundValue()}return t};Promise.prototype._promiseAt=function(e){return this[e*4-4+2]};Promise.prototype._fulfillmentHandlerAt=function(e){return this[e*4-4+0]};Promise.prototype._rejectionHandlerAt=function(e){return this[e*4-4+1]};Promise.prototype._boundValue=function(){};Promise.prototype._migrateCallback0=function(e){var t=e._bitField;var n=e._fulfillmentHandler0;var r=e._rejectionHandler0;var i=e._promise0;var a=e._receiverAt(0);if(a===undefined)a=o;this._addCallbacks(n,r,i,a,null)};Promise.prototype._migrateCallbackAt=function(e,t){var n=e._fulfillmentHandlerAt(t);var r=e._rejectionHandlerAt(t);var i=e._promiseAt(t);var a=e._receiverAt(t);if(a===undefined)a=o;this._addCallbacks(n,r,i,a,null)};Promise.prototype._addCallbacks=function(e,t,n,r,i){var o=this._length();if(o>=65535-4){o=0;this._setLength(0)}if(o===0){this._promise0=n;this._receiver0=r;if(typeof e==="function"){this._fulfillmentHandler0=i===null?e:a.domainBind(i,e)}if(typeof t==="function"){this._rejectionHandler0=i===null?t:a.domainBind(i,t)}}else{var s=o*4-4;this[s+2]=n;this[s+3]=r;if(typeof e==="function"){this[s+0]=i===null?e:a.domainBind(i,e)}if(typeof t==="function"){this[s+1]=i===null?t:a.domainBind(i,t)}}this._setLength(o+1);return o};Promise.prototype._proxy=function(e,t){this._addCallbacks(undefined,undefined,t,e,null)};Promise.prototype._resolveCallback=function(e,n){if((this._bitField&117506048)!==0)return;if(e===this)return this._rejectCallback(t(),false);var r=g(e,this);if(!(r instanceof Promise))return this._fulfill(e);if(n)this._propagateFrom(r,2);var i=r._target();if(i===this){this._reject(t());return}var o=i._bitField;if((o&50397184)===0){var a=this._length();if(a>0)i._migrateCallback0(this);for(var s=1;s<a;++s){i._migrateCallbackAt(this,s)}this._setFollowing();this._setLength(0);this._setFollowee(i)}else if((o&33554432)!==0){this._fulfill(i._value())}else if((o&16777216)!==0){this._reject(i._reason())}else{var c=new d("late cancellation observer");i._attachExtraTrace(c);this._reject(c)}};Promise.prototype._rejectCallback=function(e,t,n){var r=a.ensureErrorObject(e);var i=r===e;if(!i&&!n&&x.warnings()){var o="a promise was rejected with a non-error: "+a.classString(e);this._warn(o,true)}this._attachExtraTrace(r,t?i:false);this._reject(e)};Promise.prototype._resolveFromExecutor=function(e){if(e===h)return;var t=this;this._captureStackTrace();this._pushContext();var n=true;var r=this._execute(e,function(e){t._resolveCallback(e)},function(e){t._rejectCallback(e,n)});n=false;this._popContext();if(r!==undefined){t._rejectCallback(r,true)}};Promise.prototype._settlePromiseFromHandler=function(e,t,n,r){var i=r._bitField;if((i&65536)!==0)return;r._pushContext();var o;if(t===m){if(!n||typeof n.length!=="number"){o=_;o.e=new p("cannot .spread() a non-array: "+a.classString(n))}else{o=C(e).apply(this._boundValue(),n)}}else{o=C(e).call(t,n)}var s=r._popContext();i=r._bitField;if((i&65536)!==0)return;if(o===v){r._reject(n)}else if(o===_){r._rejectCallback(o.e,false)}else{x.checkForgottenReturns(o,s,"",r,this);r._resolveCallback(o)}};Promise.prototype._target=function(){var e=this;while(e._isFollowing())e=e._followee();return e};Promise.prototype._followee=function(){return this._rejectionHandler0};Promise.prototype._setFollowee=function(e){this._rejectionHandler0=e};Promise.prototype._settlePromise=function(e,t,n,i){var o=e instanceof Promise;var a=this._bitField;var s=(a&134217728)!==0;if((a&65536)!==0){if(o)e._invokeInternalOnCancel();if(n instanceof j&&n.isFinallyHandler()){n.cancelPromise=e;if(C(t).call(n,i)===_){e._reject(_.e)}}else if(t===r){e._fulfill(r.call(n))}else if(n instanceof Proxyable){n._promiseCancelled(e)}else if(o||e instanceof y){e._cancel()}else{n.cancel()}}else if(typeof t==="function"){if(!o){t.call(n,i,e)}else{if(s)e._setAsyncGuaranteed();this._settlePromiseFromHandler(t,n,i,e)}}else if(n instanceof Proxyable){if(!n._isResolved()){if((a&33554432)!==0){n._promiseFulfilled(i,e)}else{n._promiseRejected(i,e)}}}else if(o){if(s)e._setAsyncGuaranteed();if((a&33554432)!==0){e._fulfill(i)}else{e._reject(i)}}};Promise.prototype._settlePromiseLateCancellationObserver=function(e){var t=e.handler;var n=e.promise;var r=e.receiver;var i=e.value;if(typeof t==="function"){if(!(n instanceof Promise)){t.call(r,i,n)}else{this._settlePromiseFromHandler(t,r,i,n)}}else if(n instanceof Promise){n._reject(i)}};Promise.prototype._settlePromiseCtx=function(e){this._settlePromise(e.promise,e.handler,e.receiver,e.value)};Promise.prototype._settlePromise0=function(e,t,n){var r=this._promise0;var i=this._receiverAt(0);this._promise0=undefined;this._receiver0=undefined;this._settlePromise(r,e,i,t)};Promise.prototype._clearCallbackDataAtIndex=function(e){var t=e*4-4;this[t+2]=this[t+3]=this[t+0]=this[t+1]=undefined};Promise.prototype._fulfill=function(e){var n=this._bitField;if((n&117506048)>>>16)return;if(e===this){var r=t();this._attachExtraTrace(r);return this._reject(r)}this._setFulfilled();this._rejectionHandler0=e;if((n&65535)>0){if((n&134217728)!==0){this._settlePromises()}else{l.settlePromises(this)}this._dereferenceTrace()}};Promise.prototype._reject=function(e){var t=this._bitField;if((t&117506048)>>>16)return;this._setRejected();this._fulfillmentHandler0=e;if(this._isFinal()){return l.fatalError(e,a.isNode)}if((t&65535)>0){l.settlePromises(this)}else{this._ensurePossibleRejectionHandled()}};Promise.prototype._fulfillPromises=function(e,t){for(var n=1;n<e;n++){var r=this._fulfillmentHandlerAt(n);var i=this._promiseAt(n);var o=this._receiverAt(n);this._clearCallbackDataAtIndex(n);this._settlePromise(i,r,o,t)}};Promise.prototype._rejectPromises=function(e,t){for(var n=1;n<e;n++){var r=this._rejectionHandlerAt(n);var i=this._promiseAt(n);var o=this._receiverAt(n);this._clearCallbackDataAtIndex(n);this._settlePromise(i,r,o,t)}};Promise.prototype._settlePromises=function(){var e=this._bitField;var t=e&65535;if(t>0){if((e&16842752)!==0){var n=this._fulfillmentHandler0;this._settlePromise0(this._rejectionHandler0,n,e);this._rejectPromises(t,n)}else{var r=this._rejectionHandler0;this._settlePromise0(this._fulfillmentHandler0,r,e);this._fulfillPromises(t,r)}this._setLength(0)}this._clearCancellationData()};Promise.prototype._settledValue=function(){var e=this._bitField;if((e&33554432)!==0){return this._rejectionHandler0}else if((e&16777216)!==0){return this._fulfillmentHandler0}};if(typeof Symbol!=="undefined"&&Symbol.toStringTag){c.defineProperty(Promise.prototype,Symbol.toStringTag,{get:function(){return"Object"}})}function deferResolve(e){this.promise._resolveCallback(e)}function deferReject(e){this.promise._rejectCallback(e,false)}Promise.defer=Promise.pending=function(){x.deprecated("Promise.defer","new Promise");var e=new Promise(h);return{promise:e,resolve:deferResolve,reject:deferReject}};a.notEnumerableProp(Promise,"_makeSelfResolutionError",t);n(9137)(Promise,h,g,i,x);n(2011)(Promise,h,g,x);n(8540)(Promise,y,i,x);n(4766)(Promise);n(428)(Promise);n(5944)(Promise,y,g,h,l,s);Promise.Promise=Promise;Promise.version="3.5.5";n(7110)(Promise);n(9719)(Promise,i,h,g,Proxyable,x);n(8077)(Promise,y,i,g,h,x);n(323)(Promise);n(5131)(Promise,h);n(3993)(Promise,y,g,i);n(8237)(Promise,h,g,i);n(3584)(Promise,y,i,g,h,x);n(6006)(Promise,y,x);n(4236)(Promise,y,i);n(6008)(Promise,h,x);n(2448)(Promise,i,g,w,h,x);n(1699)(Promise);n(83)(Promise,h);n(6281)(Promise,h);a.toFastProperties(Promise);a.toFastProperties(Promise.prototype);function fillTypes(e){var t=new Promise(h);t._fulfillmentHandler0=e;t._rejectionHandler0=e;t._promise0=e;t._receiver0=e}fillTypes({a:1});fillTypes({b:2});fillTypes({c:3});fillTypes(1);fillTypes(function(){});fillTypes(undefined);fillTypes(false);fillTypes(new Promise(h));x.setBounds(u.firstLineError,a.lastLineError);return Promise}},4242:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(4580);t.Severity=i.Severity;t.Status=i.Status;var o=n(635);t.addGlobalEventProcessor=o.addGlobalEventProcessor;t.addBreadcrumb=o.addBreadcrumb;t.captureException=o.captureException;t.captureEvent=o.captureEvent;t.captureMessage=o.captureMessage;t.configureScope=o.configureScope;t.getCurrentHub=o.getCurrentHub;t.getHubFromCarrier=o.getHubFromCarrier;t.Hub=o.Hub;t.Scope=o.Scope;t.setContext=o.setContext;t.setExtra=o.setExtra;t.setExtras=o.setExtras;t.setTag=o.setTag;t.setTags=o.setTags;t.setUser=o.setUser;t.Span=o.Span;t.withScope=o.withScope;var a=n(3542);t.NodeClient=a.NodeClient;var s=n(2038);t.defaultIntegrations=s.defaultIntegrations;t.init=s.init;t.lastEventId=s.lastEventId;t.flush=s.flush;t.close=s.close;var c=n(40);t.SDK_NAME=c.SDK_NAME;t.SDK_VERSION=c.SDK_VERSION;var u=n(635);var l=n(1781);t.Handlers=l;var f=n(5862);var p=n(9248);t.Transports=p;var d=r.__assign({},u.Integrations,f);t.Integrations=d},4244:function(e){"use strict";class DoublyLinkedList{constructor(){this.head=null;this.tail=null;this.length=0}insertBeginning(e){if(this.head===null){this.head=e;this.tail=e;e.prev=null;e.next=null;this.length++}else{this.insertBefore(this.head,e)}}insertEnd(e){if(this.tail===null){this.insertBeginning(e)}else{this.insertAfter(this.tail,e)}}insertAfter(e,t){t.prev=e;t.next=e.next;if(e.next===null){this.tail=t}else{e.next.prev=t}e.next=t;this.length++}insertBefore(e,t){t.prev=e.prev;t.next=e;if(e.prev===null){this.head=t}else{e.prev.next=t}e.prev=t;this.length++}remove(e){if(e.prev===null){this.head=e.next}else{e.prev.next=e.next}if(e.next===null){this.tail=e.prev}else{e.next.prev=e.prev}e.prev=null;e.next=null;this.length--}static createNode(e){return{prev:null,next:null,data:e}}}e.exports=DoublyLinkedList},4247:function(e,t,n){"use strict";var r=n(2667);var i=n(6207);e.exports=Object.assign||function(e){if(e===null||typeof e==="undefined"){throw new TypeError("Cannot convert undefined or null to object")}if(!isObject(e)){e={}}for(var t=1;t<arguments.length;t++){var n=arguments[t];if(isString(n)){n=toObject(n)}if(isObject(n)){assign(e,n);i(e,n)}}return e};function assign(e,t){for(var n in t){if(hasOwn(t,n)){e[n]=t[n]}}}function isString(e){return e&&typeof e==="string"}function toObject(e){var t={};for(var n in e){t[n]=e[n]}return t}function isObject(e){return e&&typeof e==="object"||r(e)}function hasOwn(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function isEnum(e,t){return Object.prototype.propertyIsEnumerable.call(e,t)}},4249:function(e,t,n){"use strict";var r=n(7227);var i=n(1680);e.exports=function(e,t,n){var o;if(typeof n==="string"&&t in e){var a=[].slice.call(arguments,2);o=e[t].apply(e,a)}else if(Array.isArray(n)){o=i.apply(null,arguments)}else{o=r.apply(null,arguments)}if(typeof o!=="undefined"){return o}return e}},4256:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});const r=n(774);function listen(e,...t){return new Promise((n,i)=>{function cleanup(){e.removeListener("error",onError)}function onError(e){cleanup();i(e)}t.push(t=>{cleanup();if(t)return i(t);const o=e.address();if(typeof o==="string"){n(o)}else{const e="http:";const{address:t,port:i}=o;const a=r.format({protocol:e,hostname:t,port:i});n(a)}});e.on("error",onError);try{e.listen(...t)}catch(e){onError(e)}})}t.default=listen},4261:function(e,t,n){"use strict";var r=n(1623);var i=n(6207);e.exports=Object.assign||function(e){if(e===null||typeof e==="undefined"){throw new TypeError("Cannot convert undefined or null to object")}if(!isObject(e)){e={}}for(var t=1;t<arguments.length;t++){var n=arguments[t];if(isString(n)){n=toObject(n)}if(isObject(n)){assign(e,n);i(e,n)}}return e};function assign(e,t){for(var n in t){if(hasOwn(t,n)){e[n]=t[n]}}}function isString(e){return e&&typeof e==="string"}function toObject(e){var t={};for(var n in e){t[n]=e[n]}return t}function isObject(e){return e&&typeof e==="object"||r(e)}function hasOwn(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function isEnum(e,t){return Object.prototype.propertyIsEnumerable.call(e,t)}},4278:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(662);const a=n(5897);const s=n(8715);const c=i(n(8950));function createCertFromFile(e,t,n,i,u){return r(this,void 0,void 0,function*(){const r=c.default("Adding your custom certificate");const l=o.readFileSync(a.resolve(n),"utf8");const f=o.readFileSync(a.resolve(t),"utf8");const p=o.readFileSync(a.resolve(i),"utf8");try{const t=yield e.fetch("/v3/now/certs",{method:"PUT",body:{ca:p,cert:l,key:f}});r();return t}catch(e){r();if(e.code==="invalid_cert"){return new s.InvalidCert}if(e.code==="forbidden"){return new s.DomainPermissionDenied(e.domain,u)}throw e}})}t.default=createCertFromFile},4280:function(e){"use strict";var t=["ETIMEDOUT","ECONNRESET","EADDRINUSE","ESOCKETTIMEDOUT","ECONNREFUSED","EPIPE"];var n=["ENOTFOUND","ENETUNREACH","UNABLE_TO_GET_ISSUER_CERT","UNABLE_TO_GET_CRL","UNABLE_TO_DECRYPT_CERT_SIGNATURE","UNABLE_TO_DECRYPT_CRL_SIGNATURE","UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY","CERT_SIGNATURE_FAILURE","CRL_SIGNATURE_FAILURE","CERT_NOT_YET_VALID","CERT_HAS_EXPIRED","CRL_NOT_YET_VALID","CRL_HAS_EXPIRED","ERROR_IN_CERT_NOT_BEFORE_FIELD","ERROR_IN_CERT_NOT_AFTER_FIELD","ERROR_IN_CRL_LAST_UPDATE_FIELD","ERROR_IN_CRL_NEXT_UPDATE_FIELD","OUT_OF_MEM","DEPTH_ZERO_SELF_SIGNED_CERT","SELF_SIGNED_CERT_IN_CHAIN","UNABLE_TO_GET_ISSUER_CERT_LOCALLY","UNABLE_TO_VERIFY_LEAF_SIGNATURE","CERT_CHAIN_TOO_LONG","CERT_REVOKED","INVALID_CA","PATH_LENGTH_EXCEEDED","INVALID_PURPOSE","CERT_UNTRUSTED","CERT_REJECTED"];e.exports=function(e){if(!e||!e.code){return true}if(t.indexOf(e.code)!==-1){return true}if(n.indexOf(e.code)!==-1){return false}return true}},4312:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({path:"recipients",includeBasic:["create","list","retrieve","update","del","setMetadata","getMetadata"],createCard:i({method:"POST",path:"/{recipientId}/cards",urlParams:["recipientId"]}),listCards:i({method:"GET",path:"/{recipientId}/cards",urlParams:["recipientId"]}),retrieveCard:i({method:"GET",path:"/{recipientId}/cards/{cardId}",urlParams:["recipientId","cardId"]}),updateCard:i({method:"POST",path:"/{recipientId}/cards/{cardId}",urlParams:["recipientId","cardId"]}),deleteCard:i({method:"DELETE",path:"/{recipientId}/cards/{cardId}",urlParams:["recipientId","cardId"]})})},4316:function(e){e.exports=require("os")},4336:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(2721));function getDomainStatus(e,t){return r(this,void 0,void 0,function*(){return e.fetch(`/v3/domains/status?${o.default.stringify({name:t})}`)})}t.default=getDomainStatus},4337:function(e){e.exports={EOC:0,Boolean:1,Integer:2,BitString:3,OctetString:4,Null:5,OID:6,ObjectDescriptor:7,External:8,Real:9,Enumeration:10,PDV:11,Utf8String:12,RelativeOID:13,Sequence:16,Set:17,NumericString:18,PrintableString:19,T61String:20,VideotexString:21,IA5String:22,UTCTime:23,GeneralizedTime:24,GraphicString:25,VisibleString:26,GeneralString:28,UniversalString:29,CharacterString:30,BMPString:31,Constructor:32,Context:128}},4338:function(e,t,n){"use strict";e.exports=Transform;var r=n(1178);var i=n(8107);i.inherits=n(8368);i.inherits(Transform,r);function afterTransform(e,t){var n=this._transformState;n.transforming=false;var r=n.writecb;if(!r){return this.emit("error",new Error("write callback called multiple times"))}n.writechunk=null;n.writecb=null;if(t!=null)this.push(t);r(e);var i=this._readableState;i.reading=false;if(i.needReadable||i.length<i.highWaterMark){this._read(i.highWaterMark)}}function Transform(e){if(!(this instanceof Transform))return new Transform(e);r.call(this,e);this._transformState={afterTransform:afterTransform.bind(this),needTransform:false,transforming:false,writecb:null,writechunk:null,writeencoding:null};this._readableState.needReadable=true;this._readableState.sync=false;if(e){if(typeof e.transform==="function")this._transform=e.transform;if(typeof e.flush==="function")this._flush=e.flush}this.on("prefinish",prefinish)}function prefinish(){var e=this;if(typeof this._flush==="function"){this._flush(function(t,n){done(e,t,n)})}else{done(this,null,null)}}Transform.prototype.push=function(e,t){this._transformState.needTransform=false;return r.prototype.push.call(this,e,t)};Transform.prototype._transform=function(e,t,n){throw new Error("_transform() is not implemented")};Transform.prototype._write=function(e,t,n){var r=this._transformState;r.writecb=n;r.writechunk=e;r.writeencoding=t;if(!r.transforming){var i=this._readableState;if(r.needTransform||i.needReadable||i.length<i.highWaterMark)this._read(i.highWaterMark)}};Transform.prototype._read=function(e){var t=this._transformState;if(t.writechunk!==null&&t.writecb&&!t.transforming){t.transforming=true;this._transform(t.writechunk,t.writeencoding,t.afterTransform)}else{t.needTransform=true}};Transform.prototype._destroy=function(e,t){var n=this;r.prototype._destroy.call(this,e,function(e){t(e);n.emit("close")})};function done(e,t,n){if(t)return e.emit("error",t);if(n!=null)e.push(n);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)}},4340:function(e,t,n){var r=n(8901);var i=n(649);var o=n(9544);var a=n(5311);var s=n(9159);var c=n(7007);var u=n(1471);var l=n(7063);var f=n(6828);e.exports=Prompt;function Prompt(){u.apply(this,arguments);if(!this.opt.choices){this.throwParamError("choices")}this.firstRender=true;this.selected=0;var e=this.opt.default;if(r.isNumber(e)&&e>=0&&e<this.opt.choices.realLength){this.selected=e}else if(!r.isNumber(e)&&e!=null){this.selected=this.opt.choices.pluck("value").indexOf(e)}this.opt.default=null;this.paginator=new f}i.inherits(Prompt,u);Prompt.prototype._run=function(e){this.done=e;var t=this;var n=l(this.rl);n.normalizedUpKey.takeUntil(n.line).forEach(this.onUpKey.bind(this));n.normalizedDownKey.takeUntil(n.line).forEach(this.onDownKey.bind(this));n.numberKey.takeUntil(n.line).forEach(this.onNumberKey.bind(this));n.line.take(1).map(this.getCurrentValue.bind(this)).flatMap(function(e){return c(t.opt.filter)(e).catch(function(e){return e})}).forEach(this.onSubmit.bind(this));s.hide();this.render();return this};Prompt.prototype.render=function(){var e=this.getQuestion();if(this.firstRender){e+=o.dim("(Use arrow keys)")}if(this.status==="answered"){e+=o.cyan(this.opt.choices.getChoice(this.selected).short)}else{var t=listRender(this.opt.choices,this.selected);var n=this.opt.choices.indexOf(this.opt.choices.getChoice(this.selected));e+="\n"+this.paginator.paginate(t,n,this.opt.pageSize)}this.firstRender=false;this.screen.render(e)};Prompt.prototype.onSubmit=function(e){this.status="answered";this.render();this.screen.done();s.show();this.done(e)};Prompt.prototype.getCurrentValue=function(){return this.opt.choices.getChoice(this.selected).value};Prompt.prototype.onUpKey=function(){var e=this.opt.choices.realLength;this.selected=this.selected>0?this.selected-1:e-1;this.render()};Prompt.prototype.onDownKey=function(){var e=this.opt.choices.realLength;this.selected=this.selected<e-1?this.selected+1:0;this.render()};Prompt.prototype.onNumberKey=function(e){if(e<=this.opt.choices.realLength){this.selected=e-1}this.render()};function listRender(e,t){var n="";var i=0;e.forEach(function(e,s){if(e.type==="separator"){i++;n+=" "+e+"\n";return}if(e.disabled){i++;n+=" - "+e.name;n+=" ("+(r.isString(e.disabled)?e.disabled:"Disabled")+")";n+="\n";return}var c=s-i===t;var u=(c?a.pointer+" ":" ")+e.name;if(c){u=o.cyan(u)}n+=u+" \n"});return n.replace(/\n$/,"")}},4348:function(e,t,n){"use strict";const r=n(4244);const i=n(8413);class Deque{constructor(){this._list=new r}shift(){if(this.length===0){return undefined}const e=this._list.head;this._list.remove(e);return e.data}unshift(e){const t=r.createNode(e);this._list.insertBeginning(t)}push(e){const t=r.createNode(e);this._list.insertEnd(t)}pop(){if(this.length===0){return undefined}const e=this._list.tail;this._list.remove(e);return e.data}[Symbol.iterator](){return new i(this._list)}iterator(){return new i(this._list)}reverseIterator(){return new i(this._list,true)}get head(){if(this.length===0){return undefined}const e=this._list.head;return e.data}get tail(){if(this.length===0){return undefined}const e=this._list.tail;return e.data}get length(){return this._list.length}}e.exports=Deque},4354:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(2740);const o=n(5869);function init({cacheDir:e}){return r(this,void 0,void 0,function*(){yield Promise.all([o.initializeRuntime(o.runtimes.nodejs),i.installNode(e,"10.15.3")])})}t.init=init},4356:function(e,t,n){"use strict";const r=n(5897);function getRootPath(e){e=r.normalize(r.resolve(e)).split(r.sep);if(e.length>0)return e[0];return null}const i=/[<>:"|?*]/;function invalidWin32Path(e){const t=getRootPath(e);e=e.replace(t,"");return i.test(e)}e.exports={getRootPath:getRootPath,invalidWin32Path:invalidWin32Path}},4362:function(e,t,n){"use strict";e.exports=Object.assign({},n(1173),n(5850),n(6601),n(2208),n(5065),n(6226),n(7184),n(6650),n(6003),n(4099),n(5527),n(5012));const r=n(662);if(Object.getOwnPropertyDescriptor(r,"promises")){Object.defineProperty(e.exports,"promises",{get(){return r.promises}})}},4363:function(e,t){"use strict";var n=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});function checkTransfer(e,t){return n(this,void 0,void 0,function*(){return e.fetch(`/v4/domains/${t}/registry`)})}t.default=checkTransfer},4365:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=n(8715);const o=r(n(291));const a=r(n(5503));function getRawMinFromArgs(e){if(a.default(e[2])){return o.default(e[2])}if(a.default(e[3])){return o.default(e[3])}if(e[3]){return new i.InvalidMinForScale(e[3])}return 0}t.default=getRawMinFromArgs},4390:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({create:i({method:"POST",validator:function(e,t){if(!t.headers||!t.headers["Stripe-Version"]){throw new Error("stripe_version must be specified to create an ephemeral key")}}}),path:"ephemeral_keys",includeBasic:["del"]})},4393:function(e){"use strict";var t=Object.prototype.hasOwnProperty;var n=Object.prototype.toString;var r=Object.defineProperty;var i=Object.getOwnPropertyDescriptor;var o=function isArray(e){if(typeof Array.isArray==="function"){return Array.isArray(e)}return n.call(e)==="[object Array]"};var a=function isPlainObject(e){if(!e||n.call(e)!=="[object Object]"){return false}var r=t.call(e,"constructor");var i=e.constructor&&e.constructor.prototype&&t.call(e.constructor.prototype,"isPrototypeOf");if(e.constructor&&!r&&!i){return false}var o;for(o in e){}return typeof o==="undefined"||t.call(e,o)};var s=function setProperty(e,t){if(r&&t.name==="__proto__"){r(e,t.name,{enumerable:true,configurable:true,value:t.newValue,writable:true})}else{e[t.name]=t.newValue}};var c=function getProperty(e,n){if(n==="__proto__"){if(!t.call(e,n)){return void 0}else if(i){return i(e,n).value}}return e[n]};e.exports=function extend(){var e,t,n,r,i,u;var l=arguments[0];var f=1;var p=arguments.length;var d=false;if(typeof l==="boolean"){d=l;l=arguments[1]||{};f=2}if(l==null||typeof l!=="object"&&typeof l!=="function"){l={}}for(;f<p;++f){e=arguments[f];if(e!=null){for(t in e){n=c(l,t);r=c(e,t);if(l!==r){if(d&&r&&(a(r)||(i=o(r)))){if(i){i=false;u=n&&o(n)?n:[]}else{u=n&&a(n)?n:{}}s(l,{name:t,newValue:extend(d,u,r)})}else if(typeof r!=="undefined"){s(l,{name:t,newValue:r})}}}}}return l}},4399:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({path:"transfers",includeBasic:["create","list","retrieve","update","setMetadata","getMetadata"],reverse:i({method:"POST",path:"/{transferId}/reversals",urlParams:["transferId"]}),cancel:i({method:"POST",path:"{transferId}/cancel",urlParams:["transferId"]}),listTransactions:i({method:"GET",path:"{transferId}/transactions",urlParams:["transferId"]}),createReversal:i({method:"POST",path:"/{transferId}/reversals",urlParams:["transferId"]}),listReversals:i({method:"GET",path:"/{transferId}/reversals",urlParams:["transferId"]}),retrieveReversal:i({method:"GET",path:"/{transferId}/reversals/{reversalId}",urlParams:["transferId","reversalId"]}),updateReversal:i({method:"POST",path:"/{transferId}/reversals/{reversalId}",urlParams:["transferId","reversalId"]})})},4402:function(e,t,n){"use strict";var r=n(5468);e.exports=status;status.STATUS_CODES=r;status.codes=populateStatusesMap(status,r);status.redirect={300:true,301:true,302:true,303:true,305:true,307:true,308:true};status.empty={204:true,205:true,304:true};status.retry={502:true,503:true,504:true};function populateStatusesMap(e,t){var n=[];Object.keys(t).forEach(function forEachCode(r){var i=t[r];var o=Number(r);e[o]=i;e[i]=o;e[i.toLowerCase()]=o;n.push(o)});return n}function status(e){if(typeof e==="number"){if(!status[e])throw new Error("invalid status code: "+e);return e}if(typeof e!=="string"){throw new TypeError("code must be a number or string")}var t=parseInt(e,10);if(!isNaN(t)){if(!status[t])throw new Error("invalid status code: "+t);return t}t=status[e.toLowerCase()];if(!t)throw new Error('invalid status message: "'+e+'"');return t}},4406:function(e,t,n){"use strict";const r=n(2617);const i=n(4316);const o=n(5897);function hasMillisResSync(){let e=o.join("millis-test-sync"+Date.now().toString()+Math.random().toString().slice(2));e=o.join(i.tmpdir(),e);const t=new Date(1435410243862);r.writeFileSync(e,"https://github.com/jprichardson/node-fs-extra/pull/141");const n=r.openSync(e,"r+");r.futimesSync(n,t,t);r.closeSync(n);return r.statSync(e).mtime>1435410243e3}function hasMillisRes(e){let t=o.join("millis-test"+Date.now().toString()+Math.random().toString().slice(2));t=o.join(i.tmpdir(),t);const n=new Date(1435410243862);r.writeFile(t,"https://github.com/jprichardson/node-fs-extra/pull/141",i=>{if(i)return e(i);r.open(t,"r+",(i,o)=>{if(i)return e(i);r.futimes(o,n,n,n=>{if(n)return e(n);r.close(o,n=>{if(n)return e(n);r.stat(t,(t,n)=>{if(t)return e(t);e(null,n.mtime>1435410243e3)})})})})})}function timeRemoveMillis(e){if(typeof e==="number"){return Math.floor(e/1e3)*1e3}else if(e instanceof Date){return new Date(Math.floor(e.getTime()/1e3)*1e3)}else{throw new Error("fs-extra: timeRemoveMillis() unknown parameter type")}}function utimesMillis(e,t,n,i){r.open(e,"r+",(e,o)=>{if(e)return i(e);r.futimes(o,t,n,e=>{r.close(o,t=>{if(i)i(e||t)})})})}e.exports={hasMillisRes:hasMillisRes,hasMillisResSync:hasMillisResSync,timeRemoveMillis:timeRemoveMillis,utimesMillis:utimesMillis}},4413:function(e){(function(){var t;function MurmurHash3(e,n){var r=this instanceof MurmurHash3?this:t;r.reset(n);if(typeof e==="string"&&e.length>0){r.hash(e)}if(r!==this){return r}}MurmurHash3.prototype.hash=function(e){var t,n,r,i,o;o=e.length;this.len+=o;n=this.k1;r=0;switch(this.rem){case 0:n^=o>r?e.charCodeAt(r++)&65535:0;case 1:n^=o>r?(e.charCodeAt(r++)&65535)<<8:0;case 2:n^=o>r?(e.charCodeAt(r++)&65535)<<16:0;case 3:n^=o>r?(e.charCodeAt(r)&255)<<24:0;n^=o>r?(e.charCodeAt(r++)&65280)>>8:0}this.rem=o+this.rem&3;o-=this.rem;if(o>0){t=this.h1;while(1){n=n*11601+(n&65535)*3432906752&4294967295;n=n<<15|n>>>17;n=n*13715+(n&65535)*461832192&4294967295;t^=n;t=t<<13|t>>>19;t=t*5+3864292196&4294967295;if(r>=o){break}n=e.charCodeAt(r++)&65535^(e.charCodeAt(r++)&65535)<<8^(e.charCodeAt(r++)&65535)<<16;i=e.charCodeAt(r++);n^=(i&255)<<24^(i&65280)>>8}n=0;switch(this.rem){case 3:n^=(e.charCodeAt(r+2)&65535)<<16;case 2:n^=(e.charCodeAt(r+1)&65535)<<8;case 1:n^=e.charCodeAt(r)&65535}this.h1=t}this.k1=n;return this};MurmurHash3.prototype.result=function(){var e,t;e=this.k1;t=this.h1;if(e>0){e=e*11601+(e&65535)*3432906752&4294967295;e=e<<15|e>>>17;e=e*13715+(e&65535)*461832192&4294967295;t^=e}t^=this.len;t^=t>>>16;t=t*51819+(t&65535)*2246770688&4294967295;t^=t>>>13;t=t*44597+(t&65535)*3266445312&4294967295;t^=t>>>16;return t>>>0};MurmurHash3.prototype.reset=function(e){this.h1=typeof e==="number"?e:0;this.rem=this.k1=this.len=0;return this};t=new MurmurHash3;if(true){e.exports=MurmurHash3}else{}})()},4420:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(9258);e.exports={readJson:r(i.readFile),readJsonSync:i.readFileSync,writeJson:r(i.writeFile),writeJsonSync:i.writeFileSync}},4436:function(e){e.exports=ProtoList;function setProto(e,t){if(typeof Object.setPrototypeOf==="function")return Object.setPrototypeOf(e,t);else e.__proto__=t}function ProtoList(){this.list=[];var e=null;Object.defineProperty(this,"root",{get:function(){return e},set:function(t){e=t;if(this.list.length){setProto(this.list[this.list.length-1],t)}},enumerable:true,configurable:true})}ProtoList.prototype={get length(){return this.list.length},get keys(){var e=[];for(var t in this.list[0])e.push(t);return e},get snapshot(){var e={};this.keys.forEach(function(t){e[t]=this.get(t)},this);return e},get store(){return this.list[0]},push:function(e){if(typeof e!=="object")e={valueOf:e};if(this.list.length>=1){setProto(this.list[this.list.length-1],e)}setProto(e,this.root);return this.list.push(e)},pop:function(){if(this.list.length>=2){setProto(this.list[this.list.length-2],this.root)}return this.list.pop()},unshift:function(e){setProto(e,this.list[0]||this.root);return this.list.unshift(e)},shift:function(){if(this.list.length===1){setProto(this.list[0],this.root)}return this.list.shift()},get:function(e){return this.list[0][e]},set:function(e,t,n){if(!this.length)this.push({});if(n&&this.list[0].hasOwnProperty(e))this.push({});return this.list[0][e]=t},forEach:function(e,t){for(var n in this.list[0])e.call(t,n,this.list[0][n])},slice:function(){return this.list.slice.apply(this.list,arguments)},splice:function(){var e=this.list.splice.apply(this.list,arguments);for(var t=0,n=this.list.length;t<n;t++){setProto(this.list[t],this.list[t+1]||this.root)}return e}}},4443:function(e,t,n){"use strict";const r=n(8980);const i=n(662);const o=n(5897);const a=n(9400);class SymlinkError extends Error{constructor(e,t){super("Cannot extract through symbolic link");this.path=t;this.symlink=e}get name(){return"SylinkError"}}class CwdError extends Error{constructor(e,t){super(t+": Cannot cd into '"+e+"'");this.path=e;this.code=t}get name(){return"CwdError"}}const s=e.exports=((e,t,n)=>{const s=t.umask;const u=t.mode|448;const l=(u&s)!==0;const f=t.uid;const p=t.gid;const d=typeof f==="number"&&typeof p==="number"&&(f!==t.processUid||p!==t.processGid);const h=t.preserve;const m=t.unlink;const v=t.cache;const g=t.cwd;const y=(t,r)=>{if(t)n(t);else{v.set(e,true);if(r&&d)a(r,f,p,e=>y(e));else if(l)i.chmod(e,u,n);else n()}};if(v&&v.get(e)===true)return y();if(e===g)return i.lstat(e,(t,n)=>{if(t||!n.isDirectory())t=new CwdError(e,t&&t.code||"ENOTDIR");y(t)});if(h)return r(e,u,y);const b=o.relative(g,e);const w=b.split(/\/|\\/);c(g,w,u,v,m,g,null,y)});const c=(e,t,n,r,o,a,s,l)=>{if(!t.length)return l(null,s);const f=t.shift();const p=e+"/"+f;if(r.get(p))return c(p,t,n,r,o,a,s,l);i.mkdir(p,n,u(p,t,n,r,o,a,s,l))};const u=(e,t,n,r,a,s,l,f)=>p=>{if(p){if(p.path&&o.dirname(p.path)===s&&(p.code==="ENOTDIR"||p.code==="ENOENT"))return f(new CwdError(s,p.code));i.lstat(e,(o,d)=>{if(o)f(o);else if(d.isDirectory())c(e,t,n,r,a,s,l,f);else if(a)i.unlink(e,o=>{if(o)return f(o);i.mkdir(e,n,u(e,t,n,r,a,s,l,f))});else if(d.isSymbolicLink())return f(new SymlinkError(e,e+"/"+t.join("/")));else f(p)})}else{l=l||e;c(e,t,n,r,a,s,l,f)}};const l=e.exports.sync=((e,t)=>{const n=t.umask;const s=t.mode|448;const c=(s&n)!==0;const u=t.uid;const l=t.gid;const f=typeof u==="number"&&typeof l==="number"&&(u!==t.processUid||l!==t.processGid);const p=t.preserve;const d=t.unlink;const h=t.cache;const m=t.cwd;const v=t=>{h.set(e,true);if(t&&f)a.sync(t,u,l);if(c)i.chmodSync(e,s)};if(h&&h.get(e)===true)return v();if(e===m){let t=false;let n="ENOTDIR";try{t=i.lstatSync(e).isDirectory()}catch(e){n=e.code}finally{if(!t)throw new CwdError(e,n)}v();return}if(p)return v(r.sync(e,s));const g=o.relative(m,e);const y=g.split(/\/|\\/);let b=null;for(let e=y.shift(),t=m;e&&(t+="/"+e);e=y.shift()){if(h.get(t))continue;try{i.mkdirSync(t,s);b=b||t;h.set(t,true)}catch(e){if(e.path&&o.dirname(e.path)===m&&(e.code==="ENOTDIR"||e.code==="ENOENT"))return new CwdError(m,e.code);const n=i.lstatSync(t);if(n.isDirectory()){h.set(t,true);continue}else if(d){i.unlinkSync(t);i.mkdirSync(t,s);b=b||t;h.set(t,true);continue}else if(n.isSymbolicLink())return new SymlinkError(t,t+"/"+y.join("/"))}}return v(b)})},4444:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function isURL(e){return typeof e==="string"&&/^https?:\/\//.test(e)}t.default=isURL},4457:function(e,t,n){"use strict";const r=n(192);const i=n(7044);const o=n(5897);class Pax{constructor(e,t){this.atime=e.atime||null;this.charset=e.charset||null;this.comment=e.comment||null;this.ctime=e.ctime||null;this.gid=e.gid||null;this.gname=e.gname||null;this.linkpath=e.linkpath||null;this.mtime=e.mtime||null;this.path=e.path||null;this.size=e.size||null;this.uid=e.uid||null;this.uname=e.uname||null;this.dev=e.dev||null;this.ino=e.ino||null;this.nlink=e.nlink||null;this.global=t||false}encode(){const e=this.encodeBody();if(e==="")return null;const t=r.byteLength(e);const n=512*Math.ceil(1+t/512);const a=r.allocUnsafe(n);for(let e=0;e<512;e++){a[e]=0}new i({path:("PaxHeader/"+o.basename(this.path)).slice(0,99),mode:this.mode||420,uid:this.uid||null,gid:this.gid||null,size:t,mtime:this.mtime||null,type:this.global?"GlobalExtendedHeader":"ExtendedHeader",linkpath:"",uname:this.uname||"",gname:this.gname||"",devmaj:0,devmin:0,atime:this.atime||null,ctime:this.ctime||null}).encode(a);a.write(e,512,t,"utf8");for(let e=t+512;e<a.length;e++){a[e]=0}return a}encodeBody(){return this.encodeField("path")+this.encodeField("ctime")+this.encodeField("atime")+this.encodeField("dev")+this.encodeField("ino")+this.encodeField("nlink")+this.encodeField("charset")+this.encodeField("comment")+this.encodeField("gid")+this.encodeField("gname")+this.encodeField("linkpath")+this.encodeField("mtime")+this.encodeField("size")+this.encodeField("uid")+this.encodeField("uname")}encodeField(e){if(this[e]===null||this[e]===undefined)return"";const t=this[e]instanceof Date?this[e].getTime()/1e3:this[e];const n=" "+(e==="dev"||e==="ino"||e==="nlink"?"SCHILY.":"")+e+"="+t+"\n";const i=r.byteLength(n);let o=Math.floor(Math.log(i)/Math.log(10))+1;if(i+o>=Math.pow(10,o))o+=1;const a=o+i;return a+n}}Pax.parse=((e,t,n)=>new Pax(a(s(e),t),n));const a=(e,t)=>t?Object.keys(e).reduce((t,n)=>(t[n]=e[n],t),t):e;const s=e=>e.replace(/\n$/,"").split("\n").reduce(c,Object.create(null));const c=(e,t)=>{const n=parseInt(t,10);if(n!==r.byteLength(t)+1)return e;t=t.substr((n+" ").length);const i=t.split("=");const o=i.shift().replace(/^SCHILY\.(dev|ino|nlink)/,"$1");if(!o)return e;const a=i.join("=");e[o]=/^([A-Z]+\.)?([mac]|birth|creation)time$/.test(o)?new Date(a*1e3):/^[0-9]+$/.test(a)?+a:a;return e};e.exports=Pax},4480:function(e){"use strict";var t=e.exports=function(e){return e!==null&&typeof e==="object"&&typeof e.pipe==="function"};t.writable=function(e){return t(e)&&e.writable!==false&&typeof e._write==="function"&&typeof e._writableState==="object"};t.readable=function(e){return t(e)&&e.readable!==false&&typeof e._read==="function"&&typeof e._readableState==="object"};t.duplex=function(e){return t.writable(e)&&t.readable(e)};t.transform=function(e){return t.duplex(e)&&typeof e._transform==="function"&&typeof e._transformState==="object"}},4485:function(e){"use strict";const t={alnum:"[A-Za-z0-9]",word:"[A-Za-z0-9_]",alpha:"[A-Za-z]",blank:"[ \\t]",cntrl:"[\\x00-\\x1F\\x7F]",digit:"\\d",graph:"[\\x21-\\x7E]",lower:"[a-z]",print:"[\\x20-\\x7E]",punct:"[\\]\\[!\"#$%&'()*+,./:;<=>?@\\\\^_`{|}~-]",space:"\\s",upper:"[A-Z]",xdigit:"[A-Fa-f0-9]"};function createPCRE(e,n){e=String(e||"").trim();let r=e;let i;let o="";let a=/^[^a-zA-Z\\\s]/.test(e);if(a){i=e[0];let t=e.lastIndexOf(i);o+=e.substring(t+1);e=e.substring(1,t)}let s=0;e=replaceCaptureGroups(e,e=>{if(/^\(\?[P<']/.test(e)){let t=/^\(\?P?[<']([^>']+)[>']/.exec(e);if(!t){throw new Error(`Failed to extract named captures from ${JSON.stringify(e)}`)}let r=e.substring(t[0].length,e.length-1);if(n){n[s]=t[1]}s++;return`(${r})`}if(e.substring(0,3)==="(?:"){return e}s++;return e});e=e.replace(/\[:([^:]+):\]/g,(e,n)=>{return t[n]||e});let c=new RegExp(e,o);c.delimiter=i;c.pcrePattern=r;c.pcreFlags=o;return c}function replaceCaptureGroups(e,t){let n=0;let r=0;let i=false;for(let o=0;o<e.length;o++){let a=e[o];if(i){i=false;continue}switch(a){case"(":if(r===0){n=o}r++;break;case")":if(r>0){r--;if(r===0){let r=o+1;let i=n===0?"":e.substring(0,n);let a=e.substring(r);let s=String(t(e.substring(n,r)));e=i+s+a;o=n}}break;case"\\":i=true;break;default:break}}return e}createPCRE.characterClasses=t;e.exports=createPCRE},4491:function(e){e.exports=Array.isArray||function(e){return Object.prototype.toString.call(e)=="[object Array]"}},4495:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return Now});var r=n(4316);var i=n.n(r);var o=n(5897);var a=n.n(o);var s=n(4859);var c=n.n(s);var u=n(2721);var l=n.n(u);var f=n(774);var p=n.n(f);var d=n(7930);var h=n.n(d);var m=n(9544);var v=n.n(m);var g=n(2399);var y=n.n(g);var b=n(5979);var w=n.n(b);var x=n(772);var k=n.n(x);var j=n(2229);var S=n.n(j);var E=n(1973);var _=n.n(E);var C=n(1340);var A=n.n(C);var O=n(9028);var F=n.n(O);var D=n(6225);var T=n.n(D);var I=n(5593);var R=n.n(I);var P=n(5242);var B=n.n(P);var N=n(2385);var z=n(586);var L=n.n(z);var M=n(8715);var U=n.n(M);const q=process.platform.startsWith("win");const H=q?"\\":"/";class Now extends c.a{constructor({apiUrl:e,token:t,currentTeam:n,forceNew:r=false,debug:i=false}){super();this._token=t;this._debug=i;this._forceNew=r;this._output=B()({debug:i});this._apiUrl=e;this._onRetry=this._onRetry.bind(this);this.currentTeam=n}async create(e,{forwardNpm:t=false,scale:n={},description:i,type:o="npm",pkg:a={},nowConfig:s={},hasNowJson:c=false,sessionAffinity:u="random",atlas:l=false,name:f,project:p,wantsPublic:d,meta:m,regions:g,quiet:y=false,env:b,build:w,forceNew:x=false,target:k=null,deployStamp:j}){const S={output:this._output,hasNowJson:c};const{log:E,warn:_,debug:A}=this._output;const O=o===null;let F=[];let D={};const I={};let R;let P;let B={};if(O){B={token:this._token,teamId:this.currentTeam,env:b,build:w,public:d||s.public,name:f,project:p,meta:m,regions:g,force:x};if(k){B.target=k}}else if(o==="npm"){F=await Object(C["npm"])(e[0],a,s,S);if(!O&&!hasNpmStart(a)&&!hasFile(e[0],F,"server.js")){const e=new Error("Missing `start` (or `now-start`) script in `package.json`. "+"See: https://docs.npmjs.com/cli/start");throw e}R=s.engines||a.engines;t=t||s.forwardNpm}else if(o==="static"){if(e.length===1){F=await Object(C["staticFiles"])(e[0],s,S)}else{if(!F){F=[]}for(const t of e){const e=await Object(C["staticFiles"])(t,{},S);F=F.concat(e);for(const n of e){I[n]=t}}}}else if(o==="docker"){F=await Object(C["docker"])(e[0],s,S)}const N=L()();if(O){P=await T()({now:this,output:this._output,hashes:D,paths:e,requestBody:B,uploadStamp:N,deployStamp:j,quiet:y,nowConfig:s})}else{let a;if(o==="npm"&&t){a=await readAuthToken(e[0])||await readAuthToken(Object(r["homedir"])())}B={token:this._token,teamId:this.currentTeam,env:b,build:w,meta:m,public:d||s.public,forceNew:x,name:f,project:p,description:i,deploymentType:o,registryAuthToken:a,engines:R,scale:n,sessionAffinity:u,limits:s.limits,atlas:l,config:s};P=await T()({legacy:true,now:this,output:this._output,hashes:D,paths:e,requestBody:B,uploadStamp:N,deployStamp:j,quiet:y,env:b,nowConfig:s})}let z=false;if(P&&P.warnings){let e=0;P.warnings.forEach(t=>{if(t.reason==="size_limit_exceeded"){const{sha:n,limit:r}=t;const i=D[n].names.pop();_(`Skipping file ${i} (size exceeded ${h()(r)}`);D[n].names.unshift(i);e++}else if(t.reason==="node_version_not_found"){_(`Requested node version ${t.wanted} is not available`);z=true}});if(e>0){_(`${e} of the files exceeded the limit for your plan.`);E(`Please upgrade your plan here: ${v.a.cyan("https://zeit.co/account/plan")}`)}}if(!O&&!y&&o==="npm"&&P.nodeVersion){if(R&&R.node&&!z){E(v.a`Using Node.js {bold ${P.nodeVersion}} (requested: {dim \`${R.node}\`})`)}else{E(v.a`Using Node.js {bold ${P.nodeVersion}} (default)`)}}this._id=P.deploymentId;this._host=P.url;this._missing=[];this._fileCount=F.length;return P}async handleDeploymentError(e,{hashes:t,env:n}){if(e.status===429){if(e.code==="builds_rate_limited"){const t=new Error(e.message);t.status=e.status;t.retryAfter="never";t.code=e.code;return t}let t="You have been creating deployments at a very fast pace. ";if(e.limit&&e.limit.reset){const{reset:n}=e.limit;const r=n*1e3-Date.now();t+=`Please retry in ${S()(r,{long:true})}.`}else{t+="Please slow down."}const n=new Error(t);n.status=e.status;n.retryAfter="never";return n}if(e.status===400&&e.code==="cert_missing"){return Object(N["responseError"])(e,null,e)}if(e.status===400&&e.code==="missing_files"){this._missing=e.missing||[];this._fileCount=t.length;return e}if(e.status===404&&e.code==="not_found"){return e}if(e.status>=400&&e.status<500){const t=new Error;const{code:r,unreferencedBuildSpecs:i}=e;if(r==="env_value_invalid_type"){const{key:r}=e;t.message=`The env key ${r} has an invalid type: ${typeof n[r]}. `+"Please supply a String or a Number (https://err.sh/now-cli/env-value-invalid-type)"}else if(r==="unreferenced_build_specifications"){const e=i.length;const n=e===1?"build":"builds";t.message=`You defined ${e} ${n} that did not match any source files (please ensure they are NOT defined in ${R()(".nowignore")}):`+`\n- ${i.map(e=>JSON.stringify(e)).join("\n- ")}`}else{Object.assign(t,e)}return t}if(e.id&&e.id.startsWith("bld_")){return new M["BuildError"]({meta:{entrypoint:e.entrypoint}})}return new Error(e.message)}async listSecrets(){const{secrets:e}=await this.retry(async e=>{const t=await this._fetch("/now/secrets");if(t.status===200){return t.json()}if(t.status>200&&t.status<500){return e(await Object(N["responseError"])(t,"Failed to list secrets"))}throw await Object(N["responseError"])(t,"Failed to list secrets")});return e}async list(e,{version:t=4,meta:n={}}={}){const r=async(e,t={})=>{return this.retry(async n=>{const r=await this._fetch(e,t);if(r.status===200){return r.json()}if(r.status>200&&r.status<500){return n(await Object(N["responseError"])(r,"Failed to list deployments"))}throw await Object(N["responseError"])(r,"Failed to list deployments")},{retries:3,minTimeout:2500,onRetry:this._onRetry})};if(!e&&!Object.keys(n).length){const e=new f["URLSearchParams"]({limit:35});const n=await r(`/v2/projects/?${e}`);const i=await Promise.all(n.map(async({id:e})=>{const n=new f["URLSearchParams"]({limit:1,projectId:e});const{deployments:i}=await r(`/v${t}/now/deployments?${n}`);return i[0]}));return i.filter(e=>e)}const i=new f["URLSearchParams"];if(e){i.set("app",e)}Object.keys(n).map(e=>i.set(`meta-${e}`,n[e]));const{deployments:o}=await r(`/v${t}/now/deployments?${i}`);return o}async listInstances(e){const{instances:t}=await this.retry(async t=>{const n=await this._fetch(`/now/deployments/${e}/instances`);if(n.status===200){return n.json()}if(n.status>200&&n.status<500){return t(await Object(N["responseError"])(n,"Failed to list instances"))}throw await Object(N["responseError"])(n,"Failed to list instances")},{retries:3,minTimeout:2500,onRetry:this._onRetry});return t}async findDeployment(e){const{debug:t}=this._output;let n=e&&!e.includes(".");let r=null;if(!n){let i=e.replace(/^https:\/\//i,"");if(i.slice(-1)==="/"){i=i.slice(0,-1)}const o=`/v3/now/hosts/${encodeURIComponent(i)}?resolve=1&noState=1`;const{deployment:a}=await this.retry(async e=>{const r=await this._fetch(o);if(r.status>=400&&r.status<500){t(`Bailing on getting a deployment due to ${r.status}`);return e(await Object(N["responseError"])(r,`Failed to resolve deployment "${n}"`))}if(r.status!==200){throw new Error("Fetching a deployment failed")}return r.json()},{retries:3,minTimeout:2500,onRetry:this._onRetry});n=a.id;r=a.type==="LAMBDAS"}const i=`/${r?"v9":"v5"}/now/deployments/${encodeURIComponent(n)}`;return this.retry(async e=>{const r=await this._fetch(i);if(r.status>=400&&r.status<500){t(`Bailing on getting a deployment due to ${r.status}`);return e(await Object(N["responseError"])(r,`Failed to resolve deployment "${n}"`))}if(r.status!==200){throw new Error("Fetching a deployment failed")}return r.json()},{retries:3,minTimeout:2500,onRetry:this._onRetry})}async remove(e,{hard:t}){const n=`/now/deployments/${e}?hard=${t?1:0}`;await this.retry(async e=>{const t=await this._fetch(n,{method:"DELETE"});if(t.status===200){}else if(t.status>200&&t.status<500){return e(await Object(N["responseError"])(t,"Failed to remove deployment"))}else{throw await Object(N["responseError"])(t,"Failed to remove deployment")}});return true}retry(e,{retries:t=3,maxTimeout:n=Infinity}={}){return y()(e,{retries:t,maxTimeout:n,onRetry:this._onRetry})}_onRetry(e){this._output.debug(`Retrying: ${e}\n${e.stack}`)}close(){}get id(){return this._id}get url(){return`https://${this._host}`}get fileCount(){return this._fileCount}get host(){return this._host}get syncAmount(){if(!this._syncAmount){this._syncAmount=this._missing.map(e=>this._files.get(e).data.length).reduce((e,t)=>e+t,0)}return this._syncAmount}get syncFileCount(){return this._missing.length}_fetch(e,t={}){if(t.useCurrentTeam!==false&&this.currentTeam){const n=Object(f["parse"])(e,true);const r=n.query;r.teamId=this.currentTeam;e=`${n.pathname}?${l.a.encode(r)}`;delete t.useCurrentTeam}t.headers=t.headers||{};t.headers.accept="application/json";t.headers.Authorization=`Bearer ${this._token}`;t.headers["user-agent"]=F.a;if(t.body&&typeof t.body==="object"&&t.body.constructor===Object){t.body=JSON.stringify(t.body);t.headers["Content-Type"]="application/json"}return this._output.time(`${t.method||"GET"} ${this._apiUrl}${e} ${t.body||""}`,_()(`${this._apiUrl}${e}`,t))}async fetch(e,t={}){return this.retry(async n=>{if(t.json!==false&&t.body&&typeof t.body==="object"){t=Object.assign({},t,{body:JSON.stringify(t.body),headers:Object.assign({},t.headers,{"Content-Type":"application/json"})})}const r=await this._fetch(e,t);if(r.ok){if(t.json===false){return r}if(!r.headers.get("content-type")){return null}return r.headers.get("content-type").includes("application/json")?r.json():r}const i=await Object(N["responseError"])(r);if(r.status>=400&&r.status<500){return n(i)}throw i},t.retry)}async getPlanMax(){return 10}}function toRelative(e,t){const n=t.endsWith(H)?t:t+H;let r=e.substr(n.length);if(r.startsWith(H)){r=r.substr(1)}return r.replace(/\\/g,"/")}function hasNpmStart(e){return e.scripts&&(e.scripts.start||e.scripts["now-start"])}function hasFile(e,t,n){const r=t.map(t=>toRelative(t,e));console.log(731,r);return r.indexOf(n)!==-1}async function readAuthToken(e,t=".npmrc"){try{const n=await k.a.readFile(Object(o["resolve"])(e,t),"utf8");const r=Object(b["parse"])(n);return r["//registry.npmjs.org/:_authToken"]}catch(e){}}},4504:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(662);var o=n(5897);var a;function collectModules(){var e=require.main&&require.main.paths||[];var t=n.c?Object.keys(n.c):[];var r={};var a={};t.forEach(function(t){var n=t;var s=function(){var t=n;n=o.dirname(t);if(!n||t===n||a[t]){return undefined}if(e.indexOf(n)<0){return s()}var c=o.join(t,"package.json");a[t]=true;if(!i.existsSync(c)){return s()}try{var u=JSON.parse(i.readFileSync(c,"utf8"));r[u.name]=u.version}catch(e){}};s()});return r}var s=function(){function Modules(){this.name=Modules.id}Modules.prototype.setupOnce=function(e,t){var n=this;e(function(e){if(!t().getIntegration(Modules)){return e}return r.__assign({},e,{modules:n._getModules()})})};Modules.prototype._getModules=function(){if(!a){a=collectModules()}return a};Modules.id="Modules";return Modules}();t.Modules=s},4510:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function sleep(e){return new Promise(t=>{setTimeout(t,e)})}t.default=sleep},4525:function(e){"use strict";e.exports=(()=>{const e=["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[a-zA-Z\\d]*)*)?\\u0007)","(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PRZcf-ntqry=><~]))"].join("|");return new RegExp(e,"g")})},4532:function(e){e.exports=state;function state(e,t){var n=!Array.isArray(e),r={index:0,keyedList:n||t?Object.keys(e):null,jobs:{},results:n?{}:[],size:n?Object.keys(e).length:e.length};if(t){r.keyedList.sort(n?t:function(n,r){return t(e[n],e[r])})}return r}},4541:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(9726);var i=n(1390);function initAndBind(e,t){if(t.debug===true){i.logger.enable()}r.getCurrentHub().bindClient(new e(t))}t.initAndBind=initAndBind},4550:function(e,t,n){e.exports=SSHBuffer;var r=n(9261);var i=n(3062).Buffer;function SSHBuffer(e){r.object(e,"options");if(e.buffer!==undefined)r.buffer(e.buffer,"options.buffer");this._size=e.buffer?e.buffer.length:1024;this._buffer=e.buffer||i.alloc(this._size);this._offset=0}SSHBuffer.prototype.toBuffer=function(){return this._buffer.slice(0,this._offset)};SSHBuffer.prototype.atEnd=function(){return this._offset>=this._buffer.length};SSHBuffer.prototype.remainder=function(){return this._buffer.slice(this._offset)};SSHBuffer.prototype.skip=function(e){this._offset+=e};SSHBuffer.prototype.expand=function(){this._size*=2;var e=i.alloc(this._size);this._buffer.copy(e,0);this._buffer=e};SSHBuffer.prototype.readPart=function(){return{data:this.readBuffer()}};SSHBuffer.prototype.readBuffer=function(){var e=this._buffer.readUInt32BE(this._offset);this._offset+=4;r.ok(this._offset+e<=this._buffer.length,"length out of bounds at +0x"+this._offset.toString(16)+" (data truncated?)");var t=this._buffer.slice(this._offset,this._offset+e);this._offset+=e;return t};SSHBuffer.prototype.readString=function(){return this.readBuffer().toString()};SSHBuffer.prototype.readCString=function(){var e=this._offset;while(e<this._buffer.length&&this._buffer[e]!==0)e++;r.ok(e<this._buffer.length,"c string does not terminate");var t=this._buffer.slice(this._offset,e).toString();this._offset=e+1;return t};SSHBuffer.prototype.readInt=function(){var e=this._buffer.readUInt32BE(this._offset);this._offset+=4;return e};SSHBuffer.prototype.readInt64=function(){r.ok(this._offset+8<this._buffer.length,"buffer not long enough to read Int64");var e=this._buffer.slice(this._offset,this._offset+8);this._offset+=8;return e};SSHBuffer.prototype.readChar=function(){var e=this._buffer[this._offset++];return e};SSHBuffer.prototype.writeBuffer=function(e){while(this._offset+4+e.length>this._size)this.expand();this._buffer.writeUInt32BE(e.length,this._offset);this._offset+=4;e.copy(this._buffer,this._offset);this._offset+=e.length};SSHBuffer.prototype.writeString=function(e){this.writeBuffer(i.from(e,"utf8"))};SSHBuffer.prototype.writeCString=function(e){while(this._offset+1+e.length>this._size)this.expand();this._buffer.write(e,this._offset);this._offset+=e.length;this._buffer[this._offset++]=0};SSHBuffer.prototype.writeInt=function(e){while(this._offset+4>this._size)this.expand();this._buffer.writeUInt32BE(e,this._offset);this._offset+=4};SSHBuffer.prototype.writeInt64=function(e){r.buffer(e,"value");if(e.length>8){var t=e.slice(0,e.length-8);for(var n=0;n<t.length;++n){r.strictEqual(t[n],0,"must fit in 64 bits of precision")}e=e.slice(e.length-8,e.length)}while(this._offset+8>this._size)this.expand();e.copy(this._buffer,this._offset);this._offset+=8};SSHBuffer.prototype.writeChar=function(e){while(this._offset+1>this._size)this.expand();this._buffer[this._offset++]=e};SSHBuffer.prototype.writePart=function(e){this.writeBuffer(e.data)};SSHBuffer.prototype.write=function(e){while(this._offset+e.length>this._size)this.expand();e.copy(this._buffer,this._offset);this._offset+=e.length}},4557:function(e,t,n){"use strict";const r=n(7577);class PoolOptions{constructor(e){const t=new r;e=e||{};this.fifo=typeof e.fifo==="boolean"?e.fifo:t.fifo;this.priorityRange=e.priorityRange||t.priorityRange;this.testOnBorrow=typeof e.testOnBorrow==="boolean"?e.testOnBorrow:t.testOnBorrow;this.testOnReturn=typeof e.testOnReturn==="boolean"?e.testOnReturn:t.testOnReturn;this.autostart=typeof e.autostart==="boolean"?e.autostart:t.autostart;if(e.acquireTimeoutMillis){this.acquireTimeoutMillis=parseInt(e.acquireTimeoutMillis,10)}if(e.maxWaitingClients){this.maxWaitingClients=parseInt(e.maxWaitingClients,10)}this.max=parseInt(e.max,10);this.min=parseInt(e.min,10);this.max=Math.max(isNaN(this.max)?1:this.max,1);this.min=Math.min(isNaN(this.min)?0:this.min,this.max);this.evictionRunIntervalMillis=e.evictionRunIntervalMillis||t.evictionRunIntervalMillis;this.numTestsPerEvictionRun=e.numTestsPerEvictionRun||t.numTestsPerEvictionRun;this.softIdleTimeoutMillis=e.softIdleTimeoutMillis||t.softIdleTimeoutMillis;this.idleTimeoutMillis=e.idleTimeoutMillis||t.idleTimeoutMillis;this.Promise=e.Promise!=null?e.Promise:t.Promise}}e.exports=PoolOptions},4573:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(2721));const a=n(4859);const s=n(774);const c=i(n(1973));const u=i(n(2399));const l=i(n(8573));const f=i(n(6053));const p=i(n(9028));class Client extends a.EventEmitter{constructor({apiUrl:e,token:t,currentTeam:n,forceNew:r=false,debug:i=false}){super();this._token=t;this._debug=i;this._forceNew=r;this._output=l.default({debug:i});this._apiUrl=e;this._onRetry=this._onRetry.bind(this);this.currentTeam=n}retry(e,{retries:t=3,maxTimeout:n=Infinity}={}){return u.default(e,{retries:t,maxTimeout:n,onRetry:this._onRetry})}_fetch(e,t={}){const n=s.parse(e,true);const r=n.host?`${n.protocol}//${n.host}`:"";if(t.useCurrentTeam!==false&&this.currentTeam){const i=n.query;i.teamId=this.currentTeam;e=`${r}${n.pathname}?${o.default.stringify(i)}`;delete t.useCurrentTeam}if(t.json!==false&&t.body&&typeof t.body==="object"){Object.assign(t,{body:JSON.stringify(t.body),headers:Object.assign({},t.headers,{"Content-Type":"application/json"})})}t.headers=t.headers||{};t.headers.Authorization=`Bearer ${this._token}`;t.headers["user-agent"]=p.default;const i=`${r?"":this._apiUrl}${e}`;return this._output.time(`${t.method||"GET"} ${i} ${JSON.stringify(t.body)||""}`,c.default(i,t))}fetch(e,t={}){return r(this,void 0,void 0,function*(){return this.retry(n=>r(this,void 0,void 0,function*(){const r=yield this._fetch(e,t);if(r.ok){if(t.json===false){return r}if(!r.headers.get("content-type")){return null}return r.headers.get("content-type").includes("application/json")?r.json():r}const i=yield f.default(r);if(r.status>=400&&r.status<500){return n(i)}throw i}),t.retry)})}_onRetry(e){this._output.debug(`Retrying: ${e}\n${e.stack}`)}close(){}}t.default=Client},4578:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(2970));const a=i(n(5077));function getAppLastDeployment(e,t,n,i,s){return r(this,void 0,void 0,function*(){e.debug(`Looking for deployments matching app ${n}`);const r=yield a.default(t,n);const c=r.sort((e,t)=>t.created-e.created).filter(e=>e.state==="READY"&&e.creator.uid===i.uid)[0];if(c){return o.default(t,s,c.uid)}return null})}t.default=getAppLastDeployment},4580:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5958);t.LogLevel=r.LogLevel;var i=n(2447);t.Severity=i.Severity;var o=n(6804);t.Status=o.Status},4581:function(e,t,n){"use strict";const r=n(4316);const i=n(8586);const o=process.env;let a;if(i("no-color")||i("no-colors")||i("color=false")){a=false}else if(i("color")||i("colors")||i("color=true")||i("color=always")){a=true}if("FORCE_COLOR"in o){a=o.FORCE_COLOR.length===0||parseInt(o.FORCE_COLOR,10)!==0}function translateLevel(e){if(e===0){return false}return{level:e,hasBasic:true,has256:e>=2,has16m:e>=3}}function supportsColor(e){if(a===false){return 0}if(i("color=16m")||i("color=full")||i("color=truecolor")){return 3}if(i("color=256")){return 2}if(e&&!e.isTTY&&a!==true){return 0}const t=a?1:0;if(process.platform==="win32"){const e=r.release().split(".");if(Number(process.versions.node.split(".")[0])>=8&&Number(e[0])>=10&&Number(e[2])>=10586){return Number(e[2])>=14931?3:2}return 1}if("CI"in o){if(["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI"].some(e=>e in o)||o.CI_NAME==="codeship"){return 1}return t}if("TEAMCITY_VERSION"in o){return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(o.TEAMCITY_VERSION)?1:0}if(o.COLORTERM==="truecolor"){return 3}if("TERM_PROGRAM"in o){const e=parseInt((o.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(o.TERM_PROGRAM){case"iTerm.app":return e>=3?3:2;case"Apple_Terminal":return 2}}if(/-256(color)?$/i.test(o.TERM)){return 2}if(/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(o.TERM)){return 1}if("COLORTERM"in o){return 1}if(o.TERM==="dumb"){return t}return t}function getSupportLevel(e){const t=supportsColor(e);return translateLevel(t)}e.exports={supportsColor:getSupportLevel,stdout:getSupportLevel(process.stdout),stderr:getSupportLevel(process.stderr)}},4594:function(e,t,n){"use strict";const r=n(136);const i=n(4859).EventEmitter;const o=n(662);const a=process.binding("fs");const s=a.writeBuffers;const c=a.FSReqWrap||a.FSReqCallback;const u=Symbol("_autoClose");const l=Symbol("_close");const f=Symbol("_ended");const p=Symbol("_fd");const d=Symbol("_finished");const h=Symbol("_flags");const m=Symbol("_flush");const v=Symbol("_handleChunk");const g=Symbol("_makeBuf");const y=Symbol("_mode");const b=Symbol("_needDrain");const w=Symbol("_onerror");const x=Symbol("_onopen");const k=Symbol("_onread");const j=Symbol("_onwrite");const S=Symbol("_open");const E=Symbol("_path");const _=Symbol("_pos");const C=Symbol("_queue");const A=Symbol("_read");const O=Symbol("_readSize");const F=Symbol("_reading");const D=Symbol("_remain");const T=Symbol("_size");const I=Symbol("_write");const R=Symbol("_writing");const P=Symbol("_defaultFlag");class ReadStream extends r{constructor(e,t){t=t||{};super(t);this.writable=false;if(typeof e!=="string")throw new TypeError("path must be a string");this[p]=typeof t.fd==="number"?t.fd:null;this[E]=e;this[O]=t.readSize||16*1024*1024;this[F]=false;this[T]=typeof t.size==="number"?t.size:Infinity;this[D]=this[T];this[u]=typeof t.autoClose==="boolean"?t.autoClose:true;if(typeof this[p]==="number")this[A]();else this[S]()}get fd(){return this[p]}get path(){return this[E]}write(){throw new TypeError("this is a readable stream")}end(){throw new TypeError("this is a readable stream")}[S](){o.open(this[E],"r",(e,t)=>this[x](e,t))}[x](e,t){if(e)this[w](e);else{this[p]=t;this.emit("open",t);this[A]()}}[g](){return Buffer.allocUnsafe(Math.min(this[O],this[D]))}[A](){if(!this[F]){this[F]=true;const e=this[g]();if(e.length===0)return process.nextTick(()=>this[k](null,0,e));o.read(this[p],e,0,e.length,null,(e,t,n)=>this[k](e,t,n))}}[k](e,t,n){this[F]=false;if(e)this[w](e);else if(this[v](t,n))this[A]()}[l](){if(this[u]&&typeof this[p]==="number"){o.close(this[p],e=>this.emit("close"));this[p]=null}}[w](e){this[F]=true;this[l]();this.emit("error",e)}[v](e,t){let n=false;this[D]-=e;if(e>0)n=super.write(e<t.length?t.slice(0,e):t);if(e===0||this[D]<=0){n=false;this[l]();super.end()}return n}emit(e,t){switch(e){case"prefinish":case"finish":break;case"drain":if(typeof this[p]==="number")this[A]();break;default:return super.emit(e,t)}}}class ReadStreamSync extends ReadStream{[S](){let e=true;try{this[x](null,o.openSync(this[E],"r"));e=false}finally{if(e)this[l]()}}[A](){let e=true;try{if(!this[F]){this[F]=true;do{const e=this[g]();const t=e.length===0?0:o.readSync(this[p],e,0,e.length,null);if(!this[v](t,e))break}while(true);this[F]=false}e=false}finally{if(e)this[l]()}}[l](){if(this[u]&&typeof this[p]==="number"){try{o.closeSync(this[p])}catch(e){}this[p]=null;this.emit("close")}}}class WriteStream extends i{constructor(e,t){t=t||{};super(t);this.readable=false;this[R]=false;this[f]=false;this[b]=false;this[C]=[];this[E]=e;this[p]=typeof t.fd==="number"?t.fd:null;this[y]=t.mode===undefined?438:t.mode;this[_]=typeof t.start==="number"?t.start:null;this[u]=typeof t.autoClose==="boolean"?t.autoClose:true;const n=this[_]!==null?"r+":"w";this[P]=t.flags===undefined;this[h]=this[P]?n:t.flags;if(this[p]===null)this[S]()}get fd(){return this[p]}get path(){return this[E]}[w](e){this[l]();this[R]=true;this.emit("error",e)}[S](){o.open(this[E],this[h],this[y],(e,t)=>this[x](e,t))}[x](e,t){if(this[P]&&this[h]==="r+"&&e&&e.code==="ENOENT"){this[h]="w";this[S]()}else if(e)this[w](e);else{this[p]=t;this.emit("open",t);this[m]()}}end(e,t){if(e)this.write(e,t);this[f]=true;if(!this[R]&&!this[C].length&&typeof this[p]==="number")this[j](null,0)}write(e,t){if(typeof e==="string")e=new Buffer(e,t);if(this[f]){this.emit("error",new Error("write() after end()"));return false}if(this[p]===null||this[R]||this[C].length){this[C].push(e);this[b]=true;return false}this[R]=true;this[I](e);return true}[I](e){o.write(this[p],e,0,e.length,this[_],(e,t)=>this[j](e,t))}[j](e,t){if(e)this[w](e);else{if(this[_]!==null)this[_]+=t;if(this[C].length)this[m]();else{this[R]=false;if(this[f]&&!this[d]){this[d]=true;this[l]();this.emit("finish")}else if(this[b]){this[b]=false;this.emit("drain")}}}}[m](){if(this[C].length===0){if(this[f])this[j](null,0)}else if(this[C].length===1)this[I](this[C].pop());else{const e=this[C];this[C]=[];B(this[p],e,this[_],(e,t)=>this[j](e,t))}}[l](){if(this[u]&&typeof this[p]==="number"){o.close(this[p],e=>this.emit("close"));this[p]=null}}}class WriteStreamSync extends WriteStream{[S](){let e;try{e=o.openSync(this[E],this[h],this[y])}catch(e){if(this[P]&&this[h]==="r+"&&e&&e.code==="ENOENT"){this[h]="w";return this[S]()}else throw e}this[x](null,e)}[l](){if(this[u]&&typeof this[p]==="number"){try{o.closeSync(this[p])}catch(e){}this[p]=null;this.emit("close")}}[I](e){try{this[j](null,o.writeSync(this[p],e,0,e.length,this[_]))}catch(e){this[j](e,0)}}}const B=(e,t,n,r)=>{const i=(e,n)=>r(e,n,t);const o=new c;o.oncomplete=i;a.writeBuffers(e,t,n,o)};t.ReadStream=ReadStream;t.ReadStreamSync=ReadStreamSync;t.WriteStream=WriteStream;t.WriteStreamSync=WriteStreamSync},4606:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(662);const o=n(5897);const a=n(501);const s=n(6078);const c=r(function emptyDir(e,t){t=t||function(){};i.readdir(e,(n,r)=>{if(n)return a.mkdirs(e,t);r=r.map(t=>o.join(e,t));deleteItem();function deleteItem(){const e=r.pop();if(!e)return t();s.remove(e,e=>{if(e)return t(e);deleteItem()})}})});function emptyDirSync(e){let t;try{t=i.readdirSync(e)}catch(t){return a.mkdirsSync(e)}t.forEach(t=>{t=o.join(e,t);s.removeSync(t)})}e.exports={emptyDirSync:emptyDirSync,emptydirSync:emptyDirSync,emptyDir:c,emptydir:c}},4607:function(e,t,n){"use strict";var r=n(8091);var i=n(8787);e.exports=function(e){return i(r(e))}},4614:function(e,t,n){var r="1.1.1";var i,o,a,s,c,u,l,f,p,d,h,m=[].slice,v=[].indexOf||function(e){for(var t=0,n=this.length;t<n;t++){if(t in this&&this[t]===e)return t}return-1},g={}.hasOwnProperty;l=n(5897);a=function(e){return e instanceof Function};s=function(e){return typeof e==="string"||!!e&&typeof e==="object"&&Object.prototype.toString.call(e)==="[object String]"};h=t;h.VERSION=typeof r!=="undefined"&&r!==null?r:"NO-VERSION";d=function(e){var t;e=e.replace(/\\/g,"/");t=/\/\//;while(e.match(t)){e=e.replace(t,"/")}return e};for(f in l){p=l[f];if(a(p)){h[f]=function(e){return function(){var t,n;t=1<=arguments.length?m.call(arguments,0):[];t=t.map(function(e){if(s(e)){return d(e)}else{return e}});n=l[e].apply(l,t);if(s(n)){return d(n)}else{return n}}}(f)}else{h[f]=p}}h.sep="/";o={toUnix:d,normalizeSafe:function(e){e=d(e);if(e.startsWith("./")){if(e.startsWith("./..")||e==="./"){return h.normalize(e)}else{return"./"+h.normalize(e)}}else{return h.normalize(e)}},normalizeTrim:function(e){e=h.normalizeSafe(e);if(e.endsWith("/")){return e.slice(0,+(e.length-2)+1||9e9)}else{return e}},joinSafe:function(){var e,t;e=1<=arguments.length?m.call(arguments,0):[];t=h.join.apply(null,e);if(e[0].startsWith("./")&&!t.startsWith("./")){t="./"+t}return t},addExt:function(e,t){if(!t){return e}else{if(t[0]!=="."){t="."+t}return e+(e.endsWith(t)?"":t)}},trimExt:function(e,t,n){var r;if(n==null){n=7}r=h.extname(e);if(c(r,t,n)){return e.slice(0,+(e.length-r.length-1)+1||9e9)}else{return e}},removeExt:function(e,t){if(!t){return e}else{t=t[0]==="."?t:"."+t;if(h.extname(e)===t){return h.trimExt(e)}else{return e}}},changeExt:function(e,t,n,r){if(r==null){r=7}return h.trimExt(e,n,r)+(!t?"":t[0]==="."?t:"."+t)},defaultExt:function(e,t,n,r){var i;if(r==null){r=7}i=h.extname(e);if(c(i,n,r)){return e}else{return h.addExt(e,t)}}};c=function(e,t,n){if(t==null){t=[]}return e&&e.length<=n&&v.call(t.map(function(e){return(e&&e[0]!=="."?".":"")+e}),e)<0};for(u in o){if(!g.call(o,u))continue;i=o[u];if(h[u]!==void 0){throw new Error("path."+u+" already exists.")}else{h[u]=i}}},4623:function(e,t,n){"use strict";var r=n(3062).Buffer;var i=n(8459),o=e.exports;o.encodings=null;o.defaultCharUnicode="<22>";o.defaultCharSingleByte="?";o.encode=function encode(e,t,n){e=""+(e||"");var i=o.getEncoder(t,n);var a=i.write(e);var s=i.end();return s&&s.length>0?r.concat([a,s]):a};o.decode=function decode(e,t,n){if(typeof e==="string"){if(!o.skipDecodeWarning){console.error("Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding");o.skipDecodeWarning=true}e=r.from(""+(e||""),"binary")}var i=o.getDecoder(t,n);var a=i.write(e);var s=i.end();return s?a+s:a};o.encodingExists=function encodingExists(e){try{o.getCodec(e);return true}catch(e){return false}};o.toEncoding=o.encode;o.fromEncoding=o.decode;o._codecDataCache={};o.getCodec=function getCodec(e){if(!o.encodings)o.encodings=n(4226);var t=o._canonicalizeEncoding(e);var r={};while(true){var i=o._codecDataCache[t];if(i)return i;var a=o.encodings[t];switch(typeof a){case"string":t=a;break;case"object":for(var s in a)r[s]=a[s];if(!r.encodingName)r.encodingName=t;t=a.type;break;case"function":if(!r.encodingName)r.encodingName=t;i=new a(r,o);o._codecDataCache[r.encodingName]=i;return i;default:throw new Error("Encoding not recognized: '"+e+"' (searched as: '"+t+"')")}}};o._canonicalizeEncoding=function(e){return(""+e).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g,"")};o.getEncoder=function getEncoder(e,t){var n=o.getCodec(e),r=new n.encoder(t,n);if(n.bomAware&&t&&t.addBOM)r=new i.PrependBOM(r,t);return r};o.getDecoder=function getDecoder(e,t){var n=o.getCodec(e),r=new n.decoder(t,n);if(n.bomAware&&!(t&&t.stripBOM===false))r=new i.StripBOM(r,t);return r};var a=typeof process!=="undefined"&&process.versions&&process.versions.node;if(a){var s=a.split(".").map(Number);if(s[0]>0||s[1]>=10){n(4936)(o)}n(5998)(o)}if(false){}},4638:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(8715);function getDomainDNSRecords(e,t,n){return r(this,void 0,void 0,function*(){e.debug(`Fetching for DNS records of domain ${n}`);try{const{records:e}=yield t.fetch(`/v3/domains/${encodeURIComponent(n)}/records`);return e}catch(e){if(e.code==="not_found"){return new i.DomainNotFound(n)}throw e}})}t.default=getDomainDNSRecords},4648:function(e,t,n){"use strict";function _typeof(e){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol"){_typeof=function _typeof(e){return typeof e}}else{_typeof=function _typeof(e){return e&&typeof Symbol==="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e}}return _typeof(e)}t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.storage=localstorage();t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function useColors(){if(typeof window!=="undefined"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs)){return true}if(typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)){return false}return typeof document!=="undefined"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window!=="undefined"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}function formatArgs(t){t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff);if(!this.useColors){return}var n="color: "+this.color;t.splice(1,0,n,"color: inherit");var r=0;var i=0;t[0].replace(/%[a-zA-Z%]/g,function(e){if(e==="%%"){return}r++;if(e==="%c"){i=r}});t.splice(i,0,n)}function log(){var e;return(typeof console==="undefined"?"undefined":_typeof(console))==="object"&&console.log&&(e=console).log.apply(e,arguments)}function save(e){try{if(e){t.storage.setItem("debug",e)}else{t.storage.removeItem("debug")}}catch(e){}}function load(){var e;try{e=t.storage.getItem("debug")}catch(e){}if(!e&&typeof process!=="undefined"&&"env"in process){e=process.env.DEBUG}return e}function localstorage(){try{return localStorage}catch(e){}}e.exports=n(6251)(t);var r=e.exports.formatters;r.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}},4650:function(e,t,n){"use strict";t.extend=n(3462);t.SourceMap=n(6906);t.sourceMapResolve=n(1429);t.unixify=function(e){return e.split(/\\+/).join("/")};t.isString=function(e){return e&&typeof e==="string"};t.arrayify=function(e){if(typeof e==="string")return[e];return e?Array.isArray(e)?e:[e]:[]};t.last=function(e,t){return e[e.length-(t||1)]}},4666:function(e){"use strict";const t=new Map([["C","cwd"],["f","file"],["z","gzip"],["P","preservePaths"],["U","unlink"],["strip-components","strip"],["stripComponents","strip"],["keep-newer","newer"],["keepNewer","newer"],["keep-newer-files","newer"],["keepNewerFiles","newer"],["k","keep"],["keep-existing","keep"],["keepExisting","keep"],["m","noMtime"],["no-mtime","noMtime"],["p","preserveOwner"],["L","follow"],["h","follow"]]);const n=e.exports=(e=>e?Object.keys(e).map(n=>[t.has(n)?t.get(n):n,e[n]]).reduce((e,t)=>(e[t[0]]=t[1],e),Object.create(null)):{})},4674:function(e){"use strict";e.exports=function generate_anyOf(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f="valid"+i;var p="errs__"+i;var d=e.util.copy(e);var h="";d.level++;var m="valid"+d.level;var v=a.every(function(t){return e.opts.strictKeywords?typeof t=="object"&&Object.keys(t).length>0:e.util.schemaHasRules(t,e.RULES.all)});if(v){var g=d.baseId;r+=" var "+p+" = errors; var "+f+" = false; ";var y=e.compositeRule;e.compositeRule=d.compositeRule=true;var b=a;if(b){var w,x=-1,k=b.length-1;while(x<k){w=b[x+=1];d.schema=w;d.schemaPath=s+"["+x+"]";d.errSchemaPath=c+"/"+x;r+=" "+e.validate(d)+" ";d.baseId=g;r+=" "+f+" = "+f+" || "+m+"; if (!"+f+") { ";h+="}"}}e.compositeRule=d.compositeRule=y;r+=" "+h+" if (!"+f+") { var err = ";if(e.createErrors!==false){r+=" { keyword: '"+"anyOf"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: {} ";if(e.opts.messages!==false){r+=" , message: 'should match some schema in anyOf' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}r+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ";if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(vErrors); "}else{r+=" validate.errors = vErrors; return false; "}}r+=" } else { errors = "+p+"; if (vErrors !== null) { if ("+p+") vErrors.length = "+p+"; else vErrors = null; } ";if(e.opts.allErrors){r+=" } "}r=e.util.cleanUpCode(r)}else{if(u){r+=" if (true) { "}}return r}},4680:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(4874));function eraseLines(e){return i.default.eraseLines(e)}t.default=eraseLines},4681:function(e){"use strict";e.exports=(e=>{if(Number.isNaN(e)){return false}if(e>=4352&&(e<=4447||e===9001||e===9002||11904<=e&&e<=12871&&e!==12351||12880<=e&&e<=19903||19968<=e&&e<=42182||43360<=e&&e<=43388||44032<=e&&e<=55203||63744<=e&&e<=64255||65040<=e&&e<=65049||65072<=e&&e<=65131||65281<=e&&e<=65376||65504<=e&&e<=65510||110592<=e&&e<=110593||127488<=e&&e<=127569||131072<=e&&e<=262141)){return true}return false})},4691:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(5897));const a=n(8715);const s=i(n(7905));const c=i(n(1146));const u=i(n(7283));let l;function getConfig(e,t){return r(this,void 0,void 0,function*(){const n=process.cwd();if(l){return l}if(t){const r=o.default.resolve(n,t);e.debug(`Found config in provided --local-config path ${r}`);const i=yield c.default(r);if(i instanceof a.CantParseJSONFile){return i}if(i!==null){l=i;return l}}const r=o.default.resolve(n,"now.json");const i=yield c.default(r);if(i instanceof a.CantParseJSONFile){return i}if(i!==null){e.debug(`Found config in file ${r}`);const t=i;l=t;return l}const u=o.default.resolve(n,"package.json");const f=yield readConfigFromPackage(u);if(f instanceof a.CantParseJSONFile){return f}if(f){e.debug(`Found config in package ${r}`);const t=f;l=t;return l}return new a.CantFindConfig([r,u].map(s.default))})}t.default=getConfig;function readConfigFromPackage(e){return r(this,void 0,void 0,function*(){const t=yield u.default(e);if(t instanceof a.CantParseJSONFile){return t}return t!==null?t.now:null})}},4703:function(){throw new Error('Module parse failed: Unexpected token (1:0)\nYou may need an appropriate loader to handle this file type.\n> <header>\n| <div class="header-item first{{? it.app_error }} active{{?}}">\n| <svg class="header-item-icon" width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">')},4707:function(e,t,n){"use strict";var r=n(7547);e.exports=function defineProperty(e,t,n){if(typeof e!=="object"&&typeof e!=="function"){throw new TypeError("expected an object or function.")}if(typeof t!=="string"){throw new TypeError("expected `prop` to be a string.")}if(r(n)&&("set"in n||"get"in n)){return Object.defineProperty(e,t,n)}return Object.defineProperty(e,t,{configurable:true,enumerable:false,writable:true,value:n})}},4714:function(e){"use strict";var t=Object.prototype.hasOwnProperty;e.exports=MapCache;function MapCache(e){this.__data__=e||{}}MapCache.prototype.set=function mapSet(e,t){if(e!=="__proto__"){this.__data__[e]=t}return this};MapCache.prototype.get=function mapGet(e){return e==="__proto__"?undefined:this.__data__[e]};MapCache.prototype.has=function mapHas(e){return e!=="__proto__"&&t.call(this.__data__,e)};MapCache.prototype.del=function mapDelete(e){return this.has(e)&&delete this.__data__[e]}},4730:function(module,__unusedexports,__webpack_require__){"use strict";var es5=__webpack_require__(5467);var canEvaluate=typeof navigator=="undefined";var errorObj={e:{}};var tryCatchTarget;var globalObject=typeof self!=="undefined"?self:typeof window!=="undefined"?window:typeof global!=="undefined"?global:this!==undefined?this:null;function tryCatcher(){try{var e=tryCatchTarget;tryCatchTarget=null;return e.apply(this,arguments)}catch(e){errorObj.e=e;return errorObj}}function tryCatch(e){tryCatchTarget=e;return tryCatcher}var inherits=function(e,t){var n={}.hasOwnProperty;function T(){this.constructor=e;this.constructor$=t;for(var r in t.prototype){if(n.call(t.prototype,r)&&r.charAt(r.length-1)!=="$"){this[r+"$"]=t.prototype[r]}}}T.prototype=t.prototype;e.prototype=new T;return e.prototype};function isPrimitive(e){return e==null||e===true||e===false||typeof e==="string"||typeof e==="number"}function isObject(e){return typeof e==="function"||typeof e==="object"&&e!==null}function maybeWrapAsError(e){if(!isPrimitive(e))return e;return new Error(safeToString(e))}function withAppended(e,t){var n=e.length;var r=new Array(n+1);var i;for(i=0;i<n;++i){r[i]=e[i]}r[i]=t;return r}function getDataPropertyOrDefault(e,t,n){if(es5.isES5){var r=Object.getOwnPropertyDescriptor(e,t);if(r!=null){return r.get==null&&r.set==null?r.value:n}}else{return{}.hasOwnProperty.call(e,t)?e[t]:undefined}}function notEnumerableProp(e,t,n){if(isPrimitive(e))return e;var r={value:n,configurable:true,enumerable:false,writable:true};es5.defineProperty(e,t,r);return e}function thrower(e){throw e}var inheritedDataKeys=function(){var e=[Array.prototype,Object.prototype,Function.prototype];var t=function(t){for(var n=0;n<e.length;++n){if(e[n]===t){return true}}return false};if(es5.isES5){var n=Object.getOwnPropertyNames;return function(e){var r=[];var i=Object.create(null);while(e!=null&&!t(e)){var o;try{o=n(e)}catch(e){return r}for(var a=0;a<o.length;++a){var s=o[a];if(i[s])continue;i[s]=true;var c=Object.getOwnPropertyDescriptor(e,s);if(c!=null&&c.get==null&&c.set==null){r.push(s)}}e=es5.getPrototypeOf(e)}return r}}else{var r={}.hasOwnProperty;return function(n){if(t(n))return[];var i=[];e:for(var o in n){if(r.call(n,o)){i.push(o)}else{for(var a=0;a<e.length;++a){if(r.call(e[a],o)){continue e}}i.push(o)}}return i}}}();var thisAssignmentPattern=/this\s*\.\s*\S+\s*=/;function isClass(e){try{if(typeof e==="function"){var t=es5.names(e.prototype);var n=es5.isES5&&t.length>1;var r=t.length>0&&!(t.length===1&&t[0]==="constructor");var i=thisAssignmentPattern.test(e+"")&&es5.names(e).length>0;if(n||r||i){return true}}return false}catch(e){return false}}function toFastProperties(obj){function FakeConstructor(){}FakeConstructor.prototype=obj;var receiver=new FakeConstructor;function ic(){return typeof receiver.foo}ic();ic();return obj;eval(obj)}var rident=/^[a-z$_][a-z$_0-9]*$/i;function isIdentifier(e){return rident.test(e)}function filledRange(e,t,n){var r=new Array(e);for(var i=0;i<e;++i){r[i]=t+i+n}return r}function safeToString(e){try{return e+""}catch(e){return"[no string representation]"}}function isError(e){return e instanceof Error||e!==null&&typeof e==="object"&&typeof e.message==="string"&&typeof e.name==="string"}function markAsOriginatingFromRejection(e){try{notEnumerableProp(e,"isOperational",true)}catch(e){}}function originatesFromRejection(e){if(e==null)return false;return e instanceof Error["__BluebirdErrorTypes__"].OperationalError||e["isOperational"]===true}function canAttachTrace(e){return isError(e)&&es5.propertyIsWritable(e,"stack")}var ensureErrorObject=function(){if(!("stack"in new Error)){return function(e){if(canAttachTrace(e))return e;try{throw new Error(safeToString(e))}catch(e){return e}}}else{return function(e){if(canAttachTrace(e))return e;return new Error(safeToString(e))}}}();function classString(e){return{}.toString.call(e)}function copyDescriptors(e,t,n){var r=es5.names(e);for(var i=0;i<r.length;++i){var o=r[i];if(n(o)){try{es5.defineProperty(t,o,es5.getDescriptor(e,o))}catch(e){}}}}var asArray=function(e){if(es5.isArray(e)){return e}return null};if(typeof Symbol!=="undefined"&&Symbol.iterator){var ArrayFrom=typeof Array.from==="function"?function(e){return Array.from(e)}:function(e){var t=[];var n=e[Symbol.iterator]();var r;while(!(r=n.next()).done){t.push(r.value)}return t};asArray=function(e){if(es5.isArray(e)){return e}else if(e!=null&&typeof e[Symbol.iterator]==="function"){return ArrayFrom(e)}return null}}var isNode=typeof process!=="undefined"&&classString(process).toLowerCase()==="[object process]";var hasEnvVariables=typeof process!=="undefined"&&typeof process.env!=="undefined";function env(e){return hasEnvVariables?process.env[e]:undefined}function getNativePromise(){if(typeof Promise==="function"){try{var e=new Promise(function(){});if({}.toString.call(e)==="[object Promise]"){return Promise}}catch(e){}}}function domainBind(e,t){return e.bind(t)}var ret={isClass:isClass,isIdentifier:isIdentifier,inheritedDataKeys:inheritedDataKeys,getDataPropertyOrDefault:getDataPropertyOrDefault,thrower:thrower,isArray:es5.isArray,asArray:asArray,notEnumerableProp:notEnumerableProp,isPrimitive:isPrimitive,isObject:isObject,isError:isError,canEvaluate:canEvaluate,errorObj:errorObj,tryCatch:tryCatch,inherits:inherits,withAppended:withAppended,maybeWrapAsError:maybeWrapAsError,toFastProperties:toFastProperties,filledRange:filledRange,toString:safeToString,canAttachTrace:canAttachTrace,ensureErrorObject:ensureErrorObject,originatesFromRejection:originatesFromRejection,markAsOriginatingFromRejection:markAsOriginatingFromRejection,classString:classString,copyDescriptors:copyDescriptors,hasDevTools:typeof chrome!=="undefined"&&chrome&&typeof chrome.loadTimes==="function",isNode:isNode,hasEnvVariables:hasEnvVariables,env:env,global:globalObject,getNativePromise:getNativePromise,domainBind:domainBind};ret.isRecentNode=ret.isNode&&function(){var e;if(process.versions&&process.versions.node){e=process.versions.node.split(".").map(Number)}else if(process.version){e=process.version.split(".").map(Number)}return e[0]===0&&e[1]>10||e[0]>0}();if(ret.isNode)ret.toFastProperties(process);try{throw new Error}catch(e){ret.lastLineError=e}module.exports=ret},4733:function(e,t,n){var r=n(6354);var i=function(){};var o=function(e){return e.setHeader&&typeof e.abort==="function"};var a=function(e){return e.stdio&&Array.isArray(e.stdio)&&e.stdio.length===3};var s=function(e,t,n){if(typeof t==="function")return s(e,null,t);if(!t)t={};n=r(n||i);var c=e._writableState;var u=e._readableState;var l=t.readable||t.readable!==false&&e.readable;var f=t.writable||t.writable!==false&&e.writable;var p=function(){if(!e.writable)d()};var d=function(){f=false;if(!l)n.call(e)};var h=function(){l=false;if(!f)n.call(e)};var m=function(t){n.call(e,t?new Error("exited with error code: "+t):null)};var v=function(t){n.call(e,t)};var g=function(){if(l&&!(u&&u.ended))return n.call(e,new Error("premature close"));if(f&&!(c&&c.ended))return n.call(e,new Error("premature close"))};var y=function(){e.req.on("finish",d)};if(o(e)){e.on("complete",d);e.on("abort",g);if(e.req)y();else e.on("request",y)}else if(f&&!c){e.on("end",p);e.on("close",p)}if(a(e))e.on("exit",m);e.on("end",h);e.on("finish",d);if(t.error!==false)e.on("error",v);e.on("close",g);return function(){e.removeListener("complete",d);e.removeListener("abort",g);e.removeListener("request",y);if(e.req)e.req.removeListener("finish",d);e.removeListener("end",p);e.removeListener("close",p);e.removeListener("finish",d);e.removeListener("exit",m);e.removeListener("end",h);e.removeListener("error",v);e.removeListener("close",g)}};e.exports=s},4734:function(e,t,n){"use strict";var r=n(3930);var i=n(8901);var o=n(6268);var a=n(7789);var s=e.exports=function(e,t){this.choices=e.map(function(e){if(e.type==="separator"){if(!(e instanceof o)){e=new o(e.line)}return e}return new a(e,t)});this.realChoices=this.choices.filter(o.exclude).filter(function(e){return!e.disabled});Object.defineProperty(this,"length",{get:function(){return this.choices.length},set:function(e){this.choices.length=e}});Object.defineProperty(this,"realLength",{get:function(){return this.realChoices.length},set:function(){throw new Error("Cannot set `realLength` of a Choices collection")}})};s.prototype.getChoice=function(e){r(i.isNumber(e));return this.realChoices[e]};s.prototype.get=function(e){r(i.isNumber(e));return this.choices[e]};s.prototype.where=function(e){return i.filter(this.realChoices,e)};s.prototype.pluck=function(e){return i.map(this.realChoices,e)};s.prototype.indexOf=function(){return this.choices.indexOf.apply(this.choices,arguments)};s.prototype.forEach=function(){return this.choices.forEach.apply(this.choices,arguments)};s.prototype.filter=function(){return this.choices.filter.apply(this.choices,arguments)};s.prototype.find=function(e){return i.find(this.choices,e)};s.prototype.push=function(){var e=i.map(arguments,function(e){return new a(e)});this.choices.push.apply(this.choices,e);this.realChoices=this.choices.filter(o.exclude);return this.choices}},4738:function(e,t,n){"use strict";var r=n(5474);var i=n(1974);var o;var a="[\\[!*+?$^\"'.\\\\/]+";var s=createTextRegex(a);e.exports=function(e,t){var n=e.parser;var r=n.options;n.state={slashes:0,paths:[]};n.ast.state=n.state;n.capture("prefix",function(){if(this.parsed)return;var e=this.match(/^\.[\\\/]/);if(!e)return;this.state.strictOpen=!!this.options.strictOpen;this.state.addPrefix=true}).capture("escape",function(){if(this.isInside("bracket"))return;var e=this.position();var t=this.match(/^(?:\\(.)|([$^]))/);if(!t)return;return e({type:"escape",val:t[2]||t[1]})}).capture("quoted",function(){var e=this.position();var t=this.match(/^["']/);if(!t)return;var n=t[0];if(this.input.indexOf(n)===-1){return e({type:"escape",val:n})}var r=advanceTo(this.input,n);this.consume(r.len);return e({type:"quoted",val:r.esc})}).capture("not",function(){var e=this.parsed;var t=this.position();var n=this.match(this.notRegex||/^!+/);if(!n)return;var r=n[0];var i=r.length%2===1;if(e===""&&!i){r=""}if(e===""&&i&&this.options.nonegate!==true){this.bos.val="(?!^(?:";this.append=")$).*";r=""}return t({type:"not",val:r})}).capture("dot",function(){var e=this.parsed;var t=this.position();var n=this.match(/^\.+/);if(!n)return;var r=n[0];this.state.dot=r==="."&&(e===""||e.slice(-1)==="/");return t({type:"dot",dotfiles:this.state.dot,val:r})}).capture("plus",/^\+(?!\()/).capture("qmark",function(){var e=this.parsed;var t=this.position();var n=this.match(/^\?+(?!\()/);if(!n)return;this.state.metachar=true;this.state.qmark=true;return t({type:"qmark",parsed:e,val:n[0]})}).capture("globstar",function(){var e=this.parsed;var t=this.position();var n=this.match(/^\*{2}(?![*(])(?=[,)\/]|$)/);if(!n)return;var i=r.noglobstar!==true?"globstar":"star";var o=t({type:i,parsed:e});this.state.metachar=true;while(this.input.slice(0,4)==="/**/"){this.input=this.input.slice(3)}o.isInside={brace:this.isInside("brace"),paren:this.isInside("paren")};if(i==="globstar"){this.state.globstar=true;o.val="**"}else{this.state.star=true;o.val="*"}return o}).capture("star",function(){var e=this.position();var t=/^(?:\*(?![*(])|[*]{3,}(?!\()|[*]{2}(?![(\/]|$)|\*(?=\*\())/;var n=this.match(t);if(!n)return;this.state.metachar=true;this.state.star=true;return e({type:"star",val:n[0]})}).capture("slash",function(){var e=this.position();var t=this.match(/^\//);if(!t)return;this.state.slashes++;return e({type:"slash",val:t[0]})}).capture("backslash",function(){var e=this.position();var t=this.match(/^\\(?![*+?(){}[\]'"])/);if(!t)return;var n=t[0];if(this.isInside("bracket")){n="\\"}else if(n.length>1){n="\\\\"}return e({type:"backslash",val:n})}).capture("square",function(){if(this.isInside("bracket"))return;var e=this.position();var t=this.match(/^\[([^!^\\])\]/);if(!t)return;return e({type:"square",val:t[1]})}).capture("bracket",function(){var e=this.position();var t=this.match(/^(?:\[([!^]?)([^\]]+|\]-)(\]|[^*+?]+)|\[)/);if(!t)return;var n=t[0];var r=t[1]?"^":"";var i=(t[2]||"").replace(/\\\\+/,"\\\\");var o=t[3]||"";if(t[2]&&i.length<t[2].length){n=n.replace(/\\\\+/,"\\\\")}var a=this.input.slice(0,2);if(i===""&&a==="\\]"){i+=a;this.consume(2);var s=this.input;var c=-1;var u;while(u=s[++c]){this.consume(1);if(u==="]"){o=u;break}i+=u}}return e({type:"bracket",val:n,escaped:o!=="]",negated:r,inner:i,close:o})}).capture("text",function(){if(this.isInside("bracket"))return;var e=this.position();var t=this.match(s);if(!t||!t[0])return;return e({type:"text",val:t[0]})});if(t&&typeof t.parsers==="function"){t.parsers(e.parser)}};function advanceTo(e,t){var n=e.charAt(0);var r={len:1,val:"",esc:""};var i=0;function advance(){if(n!=="\\"){r.esc+="\\"+n;r.val+=n}n=e.charAt(++i);r.len++;if(n==="\\"){advance();advance()}}while(n&&n!==t){advance()}return r}function createTextRegex(e){if(o)return o;var t={contains:true,strictClose:false};var n=r.create(e,t);var a=i("^(?:[*]\\((?=.)|"+n+")",t);return o=a}e.exports.not=a},4746:function(e,t,n){"use strict";n.r(t);n.d(t,"getDefaultConfig",function(){return r});n.d(t,"getDefaultAuthConfig",function(){return i});const r=async e=>{let t=false;const n={_:"This is your Now config file. For more information see the global configuration documentation: https://zeit.co/docs/v2/advanced/global-configuration",collectMetrics:true};if(e){const r=["_","currentTeam","desktop","updateChannel","collectMetrics","api","shownTips"];try{const i=Object.assign({},e);const o=Object.assign({},i.sh||{});Object.assign(n,i,o);for(const e of Object.keys(n)){if(!r.includes(e)){delete n[e]}}if(typeof n.currentTeam==="object"){n.currentTeam=n.currentTeam.id}if(typeof n.user==="object"){n.user=n.user.uid||n.user.id}if(n.shownTips){if(n.desktop){n.desktop.shownTips=n.shownTips}else{n.desktop={shownTips:n.shownTips}}delete n.shownTips}t=true}catch(e){}}return{config:n,migrated:t}};const i=async e=>{let t=false;const n={_:"This is your Now credentials file. DO NOT SHARE! More: https://zeit.co/docs/v2/advanced/global-configuration"};if(e){try{const r=e.credentials.find(e=>e.provider==="sh");if(r){n.token=r.token}t=true}catch(e){}}return{config:n,migrated:t}}},4749:function(e,t,n){"use strict";var r=n(5325);var i=n(7547);var o=typeof Reflect!=="undefined"&&Reflect.defineProperty?Reflect.defineProperty:Object.defineProperty;e.exports=function defineProperty(e,t,n){if(!r(e)&&typeof e!=="function"&&!Array.isArray(e)){throw new TypeError("expected an object, function, or array")}if(typeof t!=="string"){throw new TypeError('expected "key" to be a string')}if(i(n)){o(e,t,n);return e}o(e,t,{configurable:true,enumerable:false,writable:true,value:n});return e}},4751:function(e,t,n){var r=n(8859);var i=n(649);t=e.exports=n(6677);t.init=init;t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.colors=[6,2,3,4,5,1];t.inspectOpts=Object.keys(process.env).filter(function(e){return/^debug_/i.test(e)}).reduce(function(e,t){var n=t.substring(6).toLowerCase().replace(/_([a-z])/g,function(e,t){return t.toUpperCase()});var r=process.env[t];if(/^(yes|on|true|enabled)$/i.test(r))r=true;else if(/^(no|off|false|disabled)$/i.test(r))r=false;else if(r==="null")r=null;else r=Number(r);e[n]=r;return e},{});var o=parseInt(process.env.DEBUG_FD,10)||2;if(1!==o&&2!==o){i.deprecate(function(){},"except for stderr(2) and stdout(1), any other usage of DEBUG_FD is deprecated. Override debug.log if you want to use a different log function (https://git.io/debug_fd)")()}var a=1===o?process.stdout:2===o?process.stderr:createWritableStdioStream(o);function useColors(){return"colors"in t.inspectOpts?Boolean(t.inspectOpts.colors):r.isatty(o)}t.formatters.o=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts).split("\n").map(function(e){return e.trim()}).join(" ")};t.formatters.O=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts)};function formatArgs(e){var n=this.namespace;var r=this.useColors;if(r){var i=this.color;var o=" [3"+i+";1m"+n+" "+"";e[0]=o+e[0].split("\n").join("\n"+o);e.push("[3"+i+"m+"+t.humanize(this.diff)+"")}else{e[0]=(new Date).toUTCString()+" "+n+" "+e[0]}}function log(){return a.write(i.format.apply(i,arguments)+"\n")}function save(e){if(null==e){delete process.env.DEBUG}else{process.env.DEBUG=e}}function load(){return process.env.DEBUG}function createWritableStdioStream(e){var t;var i=process.binding("tty_wrap");switch(i.guessHandleType(e)){case"TTY":t=new r.WriteStream(e);t._type="tty";if(t._handle&&t._handle.unref){t._handle.unref()}break;case"FILE":var o=n(662);t=new o.SyncWriteStream(e,{autoClose:false});t._type="fs";break;case"PIPE":case"TCP":var a=n(1939);t=new a.Socket({fd:e,readable:false,writable:true});t.readable=false;t.read=null;t._type="pipe";if(t._handle&&t._handle.unref){t._handle.unref()}break;default:throw new Error("Implement me. Unknown stream file type!")}t.fd=e;t._isStdio=true;return t}function init(e){e.inspectOpts={};var n=Object.keys(t.inspectOpts);for(var r=0;r<n.length;r++){e.inspectOpts[n[r]]=t.inspectOpts[n[r]]}}t.enable(load())},4766:function(e){"use strict";e.exports=function(e){function returner(){return this.value}function thrower(){throw this.reason}e.prototype["return"]=e.prototype.thenReturn=function(t){if(t instanceof e)t.suppressUnhandledRejections();return this._then(returner,undefined,undefined,{value:t},undefined)};e.prototype["throw"]=e.prototype.thenThrow=function(e){return this._then(thrower,undefined,undefined,{reason:e},undefined)};e.prototype.catchThrow=function(e){if(arguments.length<=1){return this._then(undefined,thrower,undefined,{reason:e},undefined)}else{var t=arguments[1];var n=function(){throw t};return this.caught(e,n)}};e.prototype.catchReturn=function(t){if(arguments.length<=1){if(t instanceof e)t.suppressUnhandledRejections();return this._then(undefined,returner,undefined,{value:t},undefined)}else{var n=arguments[1];if(n instanceof e)n.suppressUnhandledRejections();var r=function(){return n};return this.caught(t,r)}}}},4769:function(e,t,n){var r=n(4402);var i=n(6250);function toIdentifier(e){return e.split(" ").map(function(e){return e.slice(0,1).toUpperCase()+e.slice(1)}).join("").replace(/[^ _0-9a-z]/gi,"")}t=e.exports=function httpError(){var e;var n;var i=500;var o={};for(var a=0;a<arguments.length;a++){var s=arguments[a];if(s instanceof Error){e=s;i=e.status||e.statusCode||i;continue}switch(typeof s){case"string":n=s;break;case"number":i=s;break;case"object":o=s;break}}if(typeof i!=="number"||!r[i]){i=500}var c=t[i];if(!e){e=c?new c(n):new Error(n||r[i]);Error.captureStackTrace(e,httpError)}if(!c||!(e instanceof c)){e.expose=i<500;e.status=e.statusCode=i}for(var u in o){if(u!=="status"&&u!=="statusCode"){e[u]=o[u]}}return e};var o=t.HttpError=function HttpError(){throw new TypeError("cannot construct abstract class")};i(o,Error);var a=r.codes.filter(function(e){return e>=400});a.forEach(function(e){var n=toIdentifier(r[e]);var a=n.match(/Error$/)?n:n+"Error";if(e>=500){var s=function ServerError(t){var n=new Error(t!=null?t:r[e]);Error.captureStackTrace(n,ServerError);n.__proto__=ServerError.prototype;Object.defineProperty(n,"name",{enumerable:false,configurable:true,value:a,writable:true});return n};i(s,o);s.prototype.status=s.prototype.statusCode=e;s.prototype.expose=false;t[e]=t[n]=s;return}var c=function ClientError(t){var n=new Error(t!=null?t:r[e]);Error.captureStackTrace(n,ClientError);n.__proto__=ClientError.prototype;Object.defineProperty(n,"name",{enumerable:false,configurable:true,value:a,writable:true});return n};i(c,o);c.prototype.status=c.prototype.statusCode=e;c.prototype.expose=true;t[e]=t[n]=c;return});t["I'mateapot"]=t.ImATeapot},4774:function(e,t,n){var r=process.versions&&process.versions.node&&process.versions.node.split(".")||[];function specifierIncluded(e){var t=e.split(" ");var n=t.length>1?t[0]:"=";var i=(t.length>1?t[1]:t[0]).split(".");for(var o=0;o<3;++o){var a=Number(r[o]||0);var s=Number(i[o]||0);if(a===s){continue}if(n==="<"){return a<s}else if(n===">="){return a>=s}else{return false}}return n===">="}function matchesRange(e){var t=e.split(/ ?&& ?/);if(t.length===0){return false}for(var n=0;n<t.length;++n){if(!specifierIncluded(t[n])){return false}}return true}function versionIncluded(e){if(typeof e==="boolean"){return e}if(e&&typeof e==="object"){for(var t=0;t<e.length;++t){if(matchesRange(e[t])){return true}}return false}return matchesRange(e)}var i=n(487);var o={};for(var a in i){if(Object.prototype.hasOwnProperty.call(i,a)){o[a]=versionIncluded(i[a])}}e.exports=o},4787:function(e,t,n){"use strict";const r=n(192);const i=n(4666);const o=n(2052);const a=n(662);const s=n(4594);const c=n(5897);const u=e.exports=((e,t,n)=>{if(typeof e==="function")n=e,t=null,e={};else if(Array.isArray(e))t=e,e={};if(typeof t==="function")n=t,t=null;if(!t)t=[];else t=Array.from(t);const r=i(e);if(r.sync&&typeof n==="function")throw new TypeError("callback not supported for sync tar functions");if(!r.file&&typeof n==="function")throw new TypeError("callback only supported with file option");if(t.length)f(r,t);if(!r.noResume)l(r);return r.file&&r.sync?p(r):r.file?d(r,n):h(r)});const l=e=>{const t=e.onentry;e.onentry=t?e=>{t(e);e.resume()}:e=>e.resume()};const f=(e,t)=>{const n=new Map(t.map(e=>[e.replace(/\/+$/,""),true]));const r=e.filter;const i=(e,t)=>{const r=t||c.parse(e).root||".";const o=e===r?false:n.has(e)?n.get(e):i(c.dirname(e),r);n.set(e,o);return o};e.filter=r?(e,t)=>r(e,t)&&i(e.replace(/\/+$/,"")):e=>i(e.replace(/\/+$/,""))};const p=e=>{const t=h(e);const n=e.file;let i=true;let o;try{const s=a.statSync(n);const c=e.maxReadSize||16*1024*1024;if(s.size<c){t.end(a.readFileSync(n))}else{let e=0;const i=r.allocUnsafe(c);o=a.openSync(n,"r");while(e<s.size){let n=a.readSync(o,i,0,c,e);e+=n;t.write(i.slice(0,n))}t.end()}i=false}finally{if(i&&o)try{a.closeSync(o)}catch(e){}}};const d=(e,t)=>{const n=new o(e);const r=e.maxReadSize||16*1024*1024;const i=e.file;const c=new Promise((e,t)=>{n.on("error",t);n.on("end",e);a.stat(i,(e,o)=>{if(e)t(e);else{const e=new s.ReadStream(i,{readSize:r,size:o.size});e.on("error",t);e.pipe(n)}})});return t?c.then(t,t):c};const h=e=>new o(e)},4793:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(6097);const a=i(n(1991));const s=i(n(4223));function getTargetsForAlias(e,t,n){return r(this,void 0,void 0,function*(){const r=yield getTargets(e,t,n);return r instanceof o.NowError?r:targetsToHosts(r)})}t.default=getTargetsForAlias;function targetsToHosts(e){return e.map(targetToHost).filter(e=>e)}function targetToHost(e){return e.indexOf(".")!==-1?s.default(e):e}function getTargets(e,t,n){return r(this,void 0,void 0,function*(){return t.length===0?a.default(e,n):[t[t.length-1]]})}},4794:function(e,t,n){"use strict";var r=n(2650);e.exports=function isNumber(e){var t=r(e);if(t==="string"){if(!e.trim())return false}else if(t!=="number"){return false}return e-e+1>=0}},4798:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(774);function getDeploymentsByProjectId(e,t,n={from:null,limit:100,continue:false},o=0){return r(this,void 0,void 0,function*(){const r=n.limit||100;const a=new i.URLSearchParams;a.set("projectId",t);a.set("limit",r.toString());if(n.from){a.set("from",n.from.toString())}const{deployments:s}=yield e.fetch(`/v4/now/deployments?${a}`);o+=s.length;if(n.max&&o>=n.max){return s}if(n.continue&&s.length===r){const r=s[s.length-1].created;const i=Object.assign({},n,{from:r});s.push(...yield getDeploymentsByProjectId(e,t,i,o))}return s})}t.default=getDeploymentsByProjectId;function getAllDeploymentsByProjectId(e,t){return r(this,void 0,void 0,function*(){return getDeploymentsByProjectId(e,t,{from:null,limit:100,continue:true})})}t.getAllDeploymentsByProjectId=getAllDeploymentsByProjectId},4801:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(2617);const o=n(5897);const a=n(3819).copy;const s=n(8120).remove;const c=n(5627).mkdirp;const u=n(7346).pathExists;function move(e,t,n,r){if(typeof n==="function"){r=n;n={}}const a=n.overwrite||n.clobber||false;e=o.resolve(e);t=o.resolve(t);if(e===t)return i.access(e,r);i.stat(e,(n,i)=>{if(n)return r(n);if(i.isDirectory()&&isSrcSubdir(e,t)){return r(new Error(`Cannot move '${e}' to a subdirectory of itself, '${t}'.`))}c(o.dirname(t),n=>{if(n)return r(n);return doRename(e,t,a,r)})})}function doRename(e,t,n,r){if(n){return s(t,i=>{if(i)return r(i);return rename(e,t,n,r)})}u(t,(i,o)=>{if(i)return r(i);if(o)return r(new Error("dest already exists."));return rename(e,t,n,r)})}function rename(e,t,n,r){i.rename(e,t,i=>{if(!i)return r();if(i.code!=="EXDEV")return r(i);return moveAcrossDevice(e,t,n,r)})}function moveAcrossDevice(e,t,n,r){const i={overwrite:n,errorOnExist:true};a(e,t,i,t=>{if(t)return r(t);return s(e,r)})}function isSrcSubdir(e,t){const n=e.split(o.sep);const r=t.split(o.sep);return n.reduce((e,t,n)=>{return e&&r[n]===t},true)}e.exports={move:r(move)}},4802:function(e,t,n){"use strict";const r=n(2617);function symlinkType(e,t,n){n=typeof t==="function"?t:n;t=typeof t==="function"?false:t;if(t)return n(null,t);r.lstat(e,(e,r)=>{if(e)return n(null,"file");t=r&&r.isDirectory()?"dir":"file";n(null,t)})}function symlinkTypeSync(e,t){let n;if(t)return t;try{n=r.lstatSync(e)}catch(e){return"file"}return n&&n.isDirectory()?"dir":"file"}e.exports={symlinkType:symlinkType,symlinkTypeSync:symlinkTypeSync}},4810:function(e){e.exports=function(e){return e!=null&&(isBuffer(e)||isSlowBuffer(e)||!!e._isBuffer)};function isBuffer(e){return!!e.constructor&&typeof e.constructor.isBuffer==="function"&&e.constructor.isBuffer(e)}function isSlowBuffer(e){return typeof e.readFloatLE==="function"&&typeof e.slice==="function"&&isBuffer(e.slice(0,0))}},4818:function(e,t,n){var r=n(247);var i=n(3612);e.exports=t.default=function emailPrompt(e){if(e===void 0)e={};var t=e.start;if(t===void 0)t="> Enter your email: ";var n=e.domains;if(n===void 0)n=new Set(["aol.com","gmail.com","google.com","yahoo.com","ymail.com","hotmail.com","live.com","outlook.com","inbox.com","mail.com","gmx.com","icloud.com","zeit.co"]);var o=e.forceLowerCase;if(o===void 0)o=true;var a=e.suggestionColor;if(a===void 0)a="gray";var s=e.autoCompleteChars;if(s===void 0)s=new Set(["\t","\r",""," "]);var c=e.resolveChars;if(c===void 0)c=new Set(["\r"]);var u=e.abortChars;if(u===void 0)u=new Set([""]);var l=e.allowInvalidChars;if(l===void 0)l=false;return new Promise(function(e,f){if(!process.stdin.setRawMode){return f(new Error("stdin lacks setRawMode support"))}var p=process.stdin.isRaw;process.stdout.write(t);process.stdin.setRawMode(true);process.stdin.resume();var d="";var h="";var m=0;var v=Array.from(n);var g=function(n){var p=n.toString();if(u.has(p)){y();return f(new Error("User abort"))}var g="";if(h!==""&&!m&&s.has(p)){d+=h;h=""}else{if(p===""){if(d.length>Math.abs(m)){m--}}else if(p===""){if(m<0){m++}}else if(p==="\b"||p===""){d=d.substr(0,d.length+m-1)+d.substr(d.length+m)}else{if(c.has(p)){y();return e(d)}if(!l){if(/@/.test(d)&&p==="@"){return}if(/[^A-z0-9-+_.@]/.test(p)){return}}var b=o?p.toLowerCase():p;d=d.substr(0,d.length+m)+b+d.substr(d.length+m)}var w=d.split("@");if(w.length===2&&w[1].length>0){var x=w[1];var k=x.toLowerCase();for(var j=0,S=v;j<S.length;j+=1){var E=S[j];if(k===E){break}if(k===E.substr(0,k.length)){h=E.substr(k.length);g=i[a](h);g+=r.cursorBackward(E.length-k.length);break}}}if(g.length===0){h=""}}process.stdout.write(r.eraseLines(1)+t+d+g);if(m){process.stdout.write(r.cursorBackward(Math.abs(m)))}};var y=function(){process.stdin.setRawMode(p);process.stdin.pause();process.stdin.removeListener("data",g)};process.stdin.on("data",g)})}},4831:function(e,t,n){var r=n(1332);var i=n(2449);var o=n(745);var a;function createAjvInstance(){var e=new r({allErrors:true});e.addMetaSchema(n(3152));e.addSchema(o);return e}function validate(e,t){t=t||{};a=a||createAjvInstance();var n=a.getSchema(e+".json");return new Promise(function(e,r){var o=n(t);!o?r(new i(n.errors)):e(t)})}t.afterRequest=function(e){return validate("afterRequest",e)};t.beforeRequest=function(e){return validate("beforeRequest",e)};t.browser=function(e){return validate("browser",e)};t.cache=function(e){return validate("cache",e)};t.content=function(e){return validate("content",e)};t.cookie=function(e){return validate("cookie",e)};t.creator=function(e){return validate("creator",e)};t.entry=function(e){return validate("entry",e)};t.har=function(e){return validate("har",e)};t.header=function(e){return validate("header",e)};t.log=function(e){return validate("log",e)};t.page=function(e){return validate("page",e)};t.pageTimings=function(e){return validate("pageTimings",e)};t.postData=function(e){return validate("postData",e)};t.query=function(e){return validate("query",e)};t.request=function(e){return validate("request",e)};t.response=function(e){return validate("response",e)};t.timings=function(e){return validate("timings",e)}},4833:function(e,t,n){var r=n(8655);e.exports={Ber:r,BerReader:r.Reader,BerWriter:r.Writer}},4839:function(e,t,n){var r=n(5897);"use strict";function urix(e){if(r.sep==="\\"){return e.replace(/\\/g,"/").replace(/^[a-z]:\/?/i,"/")}return e}e.exports=urix},4841:function(e){var t=[0,1,3,7,15,31,63,127,255];var n=function(e){this.stream=e;this.bitOffset=0;this.curByte=0;this.hasByte=false};n.prototype._ensureByte=function(){if(!this.hasByte){this.curByte=this.stream.readByte();this.hasByte=true}};n.prototype.read=function(e){var n=0;while(e>0){this._ensureByte();var r=8-this.bitOffset;if(e>=r){n<<=r;n|=t[r]&this.curByte;this.hasByte=false;this.bitOffset=0;e-=r}else{n<<=e;var i=r-e;n|=(this.curByte&t[e]<<i)>>i;this.bitOffset+=e;e=0}}return n};n.prototype.seek=function(e){var t=e%8;var n=(e-t)/8;this.bitOffset=t;this.stream.seek(n);this.hasByte=false};n.prototype.pi=function(){var e=new Buffer(6),t;for(t=0;t<e.length;t++){e[t]=this.read(8)}return e.toString("hex")};e.exports=n},4848:function(e,t,n){"use strict";const r=n(5897);const i=n(649);const o=n(6247);e.exports=function stripDirs(e,t,n){if(typeof e!=="string"){throw new TypeError(i.inspect(e)+" is not a string. First argument to strip-dirs must be a path string.")}if(r.posix.isAbsolute(e)||r.win32.isAbsolute(e)){throw new Error(`${e} is an absolute path. strip-dirs requires a relative path.`)}if(!o(t,{includeZero:true})){throw new Error("The Second argument of strip-dirs must be a natural number or 0, but received "+i.inspect(t)+".")}if(n){if(typeof n!=="object"){throw new TypeError(i.inspect(n)+" is not an object. Expected an object with a boolean `disallowOverflow` property.")}if(Array.isArray(n)){throw new TypeError(i.inspect(n)+" is an array. Expected an object with a boolean `disallowOverflow` property.")}if("disallowOverflow"in n&&typeof n.disallowOverflow!=="boolean"){throw new TypeError(i.inspect(n.disallowOverflow)+" is neither true nor false. `disallowOverflow` option must be a Boolean value.")}}else{n={disallowOverflow:false}}const a=r.normalize(e).split(r.sep);if(a.length>1&&a[0]==="."){a.shift()}if(t>a.length-1){if(n.disallowOverflow){throw new RangeError("Cannot strip more directories than there are.")}t=a.length-1}return r.join.apply(null,a.slice(t))}},4849:function(e){e.exports=[[768,879],[1155,1158],[1160,1161],[1425,1469],[1471,1471],[1473,1474],[1476,1477],[1479,1479],[1536,1539],[1552,1557],[1611,1630],[1648,1648],[1750,1764],[1767,1768],[1770,1773],[1807,1807],[1809,1809],[1840,1866],[1958,1968],[2027,2035],[2305,2306],[2364,2364],[2369,2376],[2381,2381],[2385,2388],[2402,2403],[2433,2433],[2492,2492],[2497,2500],[2509,2509],[2530,2531],[2561,2562],[2620,2620],[2625,2626],[2631,2632],[2635,2637],[2672,2673],[2689,2690],[2748,2748],[2753,2757],[2759,2760],[2765,2765],[2786,2787],[2817,2817],[2876,2876],[2879,2879],[2881,2883],[2893,2893],[2902,2902],[2946,2946],[3008,3008],[3021,3021],[3134,3136],[3142,3144],[3146,3149],[3157,3158],[3260,3260],[3263,3263],[3270,3270],[3276,3277],[3298,3299],[3393,3395],[3405,3405],[3530,3530],[3538,3540],[3542,3542],[3633,3633],[3636,3642],[3655,3662],[3761,3761],[3764,3769],[3771,3772],[3784,3789],[3864,3865],[3893,3893],[3895,3895],[3897,3897],[3953,3966],[3968,3972],[3974,3975],[3984,3991],[3993,4028],[4038,4038],[4141,4144],[4146,4146],[4150,4151],[4153,4153],[4184,4185],[4448,4607],[4959,4959],[5906,5908],[5938,5940],[5970,5971],[6002,6003],[6068,6069],[6071,6077],[6086,6086],[6089,6099],[6109,6109],[6155,6157],[6313,6313],[6432,6434],[6439,6440],[6450,6450],[6457,6459],[6679,6680],[6912,6915],[6964,6964],[6966,6970],[6972,6972],[6978,6978],[7019,7027],[7616,7626],[7678,7679],[8203,8207],[8234,8238],[8288,8291],[8298,8303],[8400,8431],[12330,12335],[12441,12442],[43014,43014],[43019,43019],[43045,43046],[64286,64286],[65024,65039],[65056,65059],[65279,65279],[65529,65531],[68097,68099],[68101,68102],[68108,68111],[68152,68154],[68159,68159],[119143,119145],[119155,119170],[119173,119179],[119210,119213],[119362,119364],[917505,917505],[917536,917631],[917760,917999]]},4850:function(e,t){var n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");t.encode=function(e){if(0<=e&&e<n.length){return n[e]}throw new TypeError("Must be between 0 and 63: "+e)};t.decode=function(e){var t=65;var n=90;var r=97;var i=122;var o=48;var a=57;var s=43;var c=47;var u=26;var l=52;if(t<=e&&e<=n){return e-t}if(r<=e&&e<=i){return e-r+u}if(o<=e&&e<=a){return e-o+l}if(e==s){return 62}if(e==c){return 63}return-1}},4852:function(e,t,n){var r=n(6886).Stream;e.exports=legacy;function legacy(e){return{ReadStream:ReadStream,WriteStream:WriteStream};function ReadStream(t,n){if(!(this instanceof ReadStream))return new ReadStream(t,n);r.call(this);var i=this;this.path=t;this.fd=null;this.readable=true;this.paused=false;this.flags="r";this.mode=438;this.bufferSize=64*1024;n=n||{};var o=Object.keys(n);for(var a=0,s=o.length;a<s;a++){var c=o[a];this[c]=n[c]}if(this.encoding)this.setEncoding(this.encoding);if(this.start!==undefined){if("number"!==typeof this.start){throw TypeError("start must be a Number")}if(this.end===undefined){this.end=Infinity}else if("number"!==typeof this.end){throw TypeError("end must be a Number")}if(this.start>this.end){throw new Error("start must be <= end")}this.pos=this.start}if(this.fd!==null){process.nextTick(function(){i._read()});return}e.open(this.path,this.flags,this.mode,function(e,t){if(e){i.emit("error",e);i.readable=false;return}i.fd=t;i.emit("open",t);i._read()})}function WriteStream(t,n){if(!(this instanceof WriteStream))return new WriteStream(t,n);r.call(this);this.path=t;this.fd=null;this.writable=true;this.flags="w";this.encoding="binary";this.mode=438;this.bytesWritten=0;n=n||{};var i=Object.keys(n);for(var o=0,a=i.length;o<a;o++){var s=i[o];this[s]=n[s]}if(this.start!==undefined){if("number"!==typeof this.start){throw TypeError("start must be a Number")}if(this.start<0){throw new Error("start must be >= zero")}this.pos=this.start}this.busy=false;this._queue=[];if(this.fd===null){this._open=e.open;this._queue.push([this._open,this.path,this.flags,this.mode,undefined]);this.flush()}}}},4853:function(e,t,n){"use strict";var r=n(3462);var i=n(6875);var o=n(4197);var a=n(9298);var s=n(7586);function Braces(e){this.options=r({},e)}Braces.prototype.init=function(e){if(this.isInitialized)return;this.isInitialized=true;var t=s.createOptions({},this.options,e);this.snapdragon=this.options.snapdragon||new i(t);this.compiler=this.snapdragon.compiler;this.parser=this.snapdragon.parser;o(this.snapdragon,t);a(this.snapdragon,t);s.define(this.snapdragon,"parse",function(e,t){var n=i.prototype.parse.apply(this,arguments);this.parser.ast.input=e;var r=this.parser.stack;while(r.length){addParent({type:"brace.close",val:""},r.pop())}function addParent(e,t){s.define(e,"parent",t);t.nodes.push(e)}s.define(n,"parser",this.parser);return n})};Braces.prototype.parse=function(e,t){if(e&&typeof e==="object"&&e.nodes)return e;this.init(t);return this.snapdragon.parse(e,t)};Braces.prototype.compile=function(e,t){if(typeof e==="string"){e=this.parse(e,t)}else{this.init(t)}return this.snapdragon.compile(e,t)};Braces.prototype.expand=function(e){var t=this.parse(e,{expand:true});return this.compile(t,{expand:true})};Braces.prototype.optimize=function(e){var t=this.parse(e,{optimize:true});return this.compile(t,{optimize:true})};e.exports=Braces},4854:function(e){var t=["M","MM","Q","D","DD","DDD","DDDD","d","E","W","WW","YY","YYYY","GG","GGGG","H","HH","h","hh","m","mm","s","ss","S","SS","SSS","Z","ZZ","X","x"];function buildFormattingTokensRegExp(e){var n=[];for(var r in e){if(e.hasOwnProperty(r)){n.push(r)}}var i=t.concat(n).sort().reverse();var o=new RegExp("(\\[[^\\[]*\\])|(\\\\)?"+"("+i.join("|")+"|.)","g");return o}e.exports=buildFormattingTokensRegExp},4859:function(e){e.exports=require("events")},4869:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});t.default=`.hg\n.git\n.gitmodules\n.svn\n.cache\n.next\n.now\n.npmignore\n.dockerignore\n.gitignore\n.*.swp\n.DS_Store\n.wafpicke-*\n.lock-wscript\n.env\n.env.build\n.venv\nnpm-debug.log\nconfig.gypi\nnode_modules\n__pycache__/\nvenv/\nCVS`},4874:function(e){"use strict";const t=e.exports;const n="[";const r=process.env.TERM_PROGRAM==="Apple_Terminal";t.cursorTo=((e,t)=>{if(typeof e!=="number"){throw new TypeError("The `x` argument is required")}if(typeof t!=="number"){return n+(e+1)+"G"}return n+(t+1)+";"+(e+1)+"H"});t.cursorMove=((e,t)=>{if(typeof e!=="number"){throw new TypeError("The `x` argument is required")}let r="";if(e<0){r+=n+-e+"D"}else if(e>0){r+=n+e+"C"}if(t<0){r+=n+-t+"A"}else if(t>0){r+=n+t+"B"}return r});t.cursorUp=(e=>n+(typeof e==="number"?e:1)+"A");t.cursorDown=(e=>n+(typeof e==="number"?e:1)+"B");t.cursorForward=(e=>n+(typeof e==="number"?e:1)+"C");t.cursorBackward=(e=>n+(typeof e==="number"?e:1)+"D");t.cursorLeft=n+"G";t.cursorSavePosition=n+(r?"7":"s");t.cursorRestorePosition=n+(r?"8":"u");t.cursorGetPosition=n+"6n";t.cursorNextLine=n+"E";t.cursorPrevLine=n+"F";t.cursorHide=n+"?25l";t.cursorShow=n+"?25h";t.eraseLines=(e=>{let n="";for(let r=0;r<e;r++){n+=t.eraseLine+(r<e-1?t.cursorUp():"")}if(e){n+=t.cursorLeft}return n});t.eraseEndLine=n+"K";t.eraseStartLine=n+"1K";t.eraseLine=n+"2K";t.eraseDown=n+"J";t.eraseUp=n+"1J";t.eraseScreen=n+"2J";t.scrollUp=n+"S";t.scrollDown=n+"T";t.clearScreen="c";t.beep="";t.image=((e,t)=>{t=t||{};let n="]1337;File=inline=1";if(t.width){n+=`;width=${t.width}`}if(t.height){n+=`;height=${t.height}`}if(t.preserveAspectRatio===false){n+=";preserveAspectRatio=0"}return n+":"+e.toString("base64")+""});t.iTerm={};t.iTerm.setCwd=(e=>"]50;CurrentDir="+(e||process.cwd())+"")},4877:function(e,t,n){e.exports=globSync;globSync.GlobSync=GlobSync;var r=n(662);var i=n(7352);var o=n(186);var a=o.Minimatch;var s=n(3274).Glob;var c=n(649);var u=n(5897);var l=n(3930);var f=n(7982);var p=n(9228);var d=p.alphasort;var h=p.alphasorti;var m=p.setopts;var v=p.ownProp;var g=p.childrenIgnored;var y=p.isIgnored;function globSync(e,t){if(typeof t==="function"||arguments.length===3)throw new TypeError("callback provided to sync glob\n"+"See: https://github.com/isaacs/node-glob/issues/167");return new GlobSync(e,t).found}function GlobSync(e,t){if(!e)throw new Error("must provide pattern");if(typeof t==="function"||arguments.length===3)throw new TypeError("callback provided to sync glob\n"+"See: https://github.com/isaacs/node-glob/issues/167");if(!(this instanceof GlobSync))return new GlobSync(e,t);m(this,e,t);if(this.noprocess)return this;var n=this.minimatch.set.length;this.matches=new Array(n);for(var r=0;r<n;r++){this._process(this.minimatch.set[r],r,false)}this._finish()}GlobSync.prototype._finish=function(){l(this instanceof GlobSync);if(this.realpath){var e=this;this.matches.forEach(function(t,n){var r=e.matches[n]=Object.create(null);for(var o in t){try{o=e._makeAbs(o);var a=i.realpathSync(o,e.realpathCache);r[a]=true}catch(t){if(t.syscall==="stat")r[e._makeAbs(o)]=true;else throw t}}})}p.finish(this)};GlobSync.prototype._process=function(e,t,n){l(this instanceof GlobSync);var r=0;while(typeof e[r]==="string"){r++}var i;switch(r){case e.length:this._processSimple(e.join("/"),t);return;case 0:i=null;break;default:i=e.slice(0,r).join("/");break}var a=e.slice(r);var s;if(i===null)s=".";else if(f(i)||f(e.join("/"))){if(!i||!f(i))i="/"+i;s=i}else s=i;var c=this._makeAbs(s);if(g(this,s))return;var u=a[0]===o.GLOBSTAR;if(u)this._processGlobStar(i,s,c,a,t,n);else this._processReaddir(i,s,c,a,t,n)};GlobSync.prototype._processReaddir=function(e,t,n,r,i,o){var a=this._readdir(n,o);if(!a)return;var s=r[0];var c=!!this.minimatch.negate;var l=s._glob;var f=this.dot||l.charAt(0)===".";var p=[];for(var d=0;d<a.length;d++){var h=a[d];if(h.charAt(0)!=="."||f){var m;if(c&&!e){m=!h.match(s)}else{m=h.match(s)}if(m)p.push(h)}}var v=p.length;if(v===0)return;if(r.length===1&&!this.mark&&!this.stat){if(!this.matches[i])this.matches[i]=Object.create(null);for(var d=0;d<v;d++){var h=p[d];if(e){if(e.slice(-1)!=="/")h=e+"/"+h;else h=e+h}if(h.charAt(0)==="/"&&!this.nomount){h=u.join(this.root,h)}this._emitMatch(i,h)}return}r.shift();for(var d=0;d<v;d++){var h=p[d];var g;if(e)g=[e,h];else g=[h];this._process(g.concat(r),i,o)}};GlobSync.prototype._emitMatch=function(e,t){if(y(this,t))return;var n=this._makeAbs(t);if(this.mark)t=this._mark(t);if(this.absolute){t=n}if(this.matches[e][t])return;if(this.nodir){var r=this.cache[n];if(r==="DIR"||Array.isArray(r))return}this.matches[e][t]=true;if(this.stat)this._stat(t)};GlobSync.prototype._readdirInGlobStar=function(e){if(this.follow)return this._readdir(e,false);var t;var n;var i;try{n=r.lstatSync(e)}catch(e){if(e.code==="ENOENT"){return null}}var o=n&&n.isSymbolicLink();this.symlinks[e]=o;if(!o&&n&&!n.isDirectory())this.cache[e]="FILE";else t=this._readdir(e,false);return t};GlobSync.prototype._readdir=function(e,t){var n;if(t&&!v(this.symlinks,e))return this._readdirInGlobStar(e);if(v(this.cache,e)){var i=this.cache[e];if(!i||i==="FILE")return null;if(Array.isArray(i))return i}try{return this._readdirEntries(e,r.readdirSync(e))}catch(t){this._readdirError(e,t);return null}};GlobSync.prototype._readdirEntries=function(e,t){if(!this.mark&&!this.stat){for(var n=0;n<t.length;n++){var r=t[n];if(e==="/")r=e+r;else r=e+"/"+r;this.cache[r]=true}}this.cache[e]=t;return t};GlobSync.prototype._readdirError=function(e,t){switch(t.code){case"ENOTSUP":case"ENOTDIR":var n=this._makeAbs(e);this.cache[n]="FILE";if(n===this.cwdAbs){var r=new Error(t.code+" invalid cwd "+this.cwd);r.path=this.cwd;r.code=t.code;throw r}break;case"ENOENT":case"ELOOP":case"ENAMETOOLONG":case"UNKNOWN":this.cache[this._makeAbs(e)]=false;break;default:this.cache[this._makeAbs(e)]=false;if(this.strict)throw t;if(!this.silent)console.error("glob error",t);break}};GlobSync.prototype._processGlobStar=function(e,t,n,r,i,o){var a=this._readdir(n,o);if(!a)return;var s=r.slice(1);var c=e?[e]:[];var u=c.concat(s);this._process(u,i,false);var l=a.length;var f=this.symlinks[n];if(f&&o)return;for(var p=0;p<l;p++){var d=a[p];if(d.charAt(0)==="."&&!this.dot)continue;var h=c.concat(a[p],s);this._process(h,i,true);var m=c.concat(a[p],r);this._process(m,i,true)}};GlobSync.prototype._processSimple=function(e,t){var n=this._stat(e);if(!this.matches[t])this.matches[t]=Object.create(null);if(!n)return;if(e&&f(e)&&!this.nomount){var r=/[\/\\]$/.test(e);if(e.charAt(0)==="/"){e=u.join(this.root,e)}else{e=u.resolve(this.root,e);if(r)e+="/"}}if(process.platform==="win32")e=e.replace(/\\/g,"/");this._emitMatch(t,e)};GlobSync.prototype._stat=function(e){var t=this._makeAbs(e);var n=e.slice(-1)==="/";if(e.length>this.maxLength)return false;if(!this.stat&&v(this.cache,t)){var i=this.cache[t];if(Array.isArray(i))i="DIR";if(!n||i==="DIR")return i;if(n&&i==="FILE")return false}var o;var a=this.statCache[t];if(!a){var s;try{s=r.lstatSync(t)}catch(e){if(e&&(e.code==="ENOENT"||e.code==="ENOTDIR")){this.statCache[t]=false;return false}}if(s&&s.isSymbolicLink()){try{a=r.statSync(t)}catch(e){a=s}}else{a=s}}this.statCache[t]=a;var i=true;if(a)i=a.isDirectory()?"DIR":"FILE";this.cache[t]=this.cache[t]||i;if(n&&i==="FILE")return false;return i};GlobSync.prototype._mark=function(e){return p.mark(this,e)};GlobSync.prototype._makeAbs=function(e){return p.makeAbs(this,e)}},4882:function(e,t,n){"use strict";var r=n(9714);var i=n(9799);var o=n(8732)("snapdragon:compiler");var a=n(4650);function Compiler(e,t){o("initializing",__filename);this.options=a.extend({source:"string"},e);this.state=t||{};this.compilers={};this.output="";this.set("eos",function(e){return this.emit(e.val,e)});this.set("noop",function(e){return this.emit(e.val,e)});this.set("bos",function(e){return this.emit(e.val,e)});r(this)}Compiler.prototype={error:function(e,t){var n=t.position||{start:{column:0}};var r=this.options.source+" column:"+n.start.column+": "+e;var i=new Error(r);i.reason=e;i.column=n.start.column;i.source=this.pattern;if(this.options.silent){this.errors.push(i)}else{throw i}},define:function(e,t){i(this,e,t);return this},emit:function(e,t){this.output+=e;return e},set:function(e,t){this.compilers[e]=t;return this},get:function(e){return this.compilers[e]},prev:function(e){return this.ast.nodes[this.idx-(e||1)]||{type:"bos",val:""}},next:function(e){return this.ast.nodes[this.idx+(e||1)]||{type:"eos",val:""}},visit:function(e,t,n){var r=this.compilers[e.type];this.idx=n;if(typeof r!=="function"){throw this.error('compiler "'+e.type+'" is not registered',e)}return r.call(this,e,t,n)},mapVisit:function(e){if(!Array.isArray(e)){throw new TypeError("expected an array")}var t=e.length;var n=-1;while(++n<t){this.visit(e[n],e,n)}return this},compile:function(e,t){var r=a.extend({},this.options,t);this.ast=e;this.parsingErrors=this.ast.errors;this.output="";if(r.sourcemap){var i=n(6641);i(this);this.mapVisit(this.ast.nodes);this.applySourceMaps();this.map=r.sourcemap==="generator"?this.map:this.map.toJSON();return this}this.mapVisit(this.ast.nodes);return this}};e.exports=Compiler},4887:function(e){var t=0;var n=Math.random();e.exports=function(e){return"Symbol(".concat(e===undefined?"":e,")_",(++t+n).toString(36))}},4892:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(8715);function addDNSRecord(e,t,n){return r(this,void 0,void 0,function*(){try{const r=yield e.fetch(`/v3/domains/${t}/records`,{body:n,method:"POST"});return r}catch(e){if(e.status===400&&e.code==="invalid_type"){return new i.DNSInvalidType(n.type)}if(e.status===400&&e.message.includes("port")){return new i.DNSInvalidPort}if(e.status===400){return e}if(e.status===403){return new i.DNSPermissionDenied(t)}if(e.status===404){return new i.DomainNotFound(t)}if(e.status===409){const{oldId:t=""}=e;return new i.DNSConflictingRecord(t)}throw e}})}t.default=addDNSRecord},4907:function(e,t,n){"use strict";e.exports=function(e){var t=n(4730);var r=n(5467).keys;var i=t.tryCatch;var o=t.errorObj;function catchFilter(n,a,s){return function(c){var u=s._boundValue();e:for(var l=0;l<n.length;++l){var f=n[l];if(f===Error||f!=null&&f.prototype instanceof Error){if(c instanceof f){return i(a).call(u,c)}}else if(typeof f==="function"){var p=i(f).call(u,c);if(p===o){return p}else if(p){return i(a).call(u,c)}}else if(t.isObject(c)){var d=r(f);for(var h=0;h<d.length;++h){var m=d[h];if(f[m]!=c[m]){continue e}}return i(a).call(u,c)}}return e}}return catchFilter}},4912:function(e,t,n){"use strict";var r=n(1486);var i=n(1539);var o=n(5897);var a=function(e){return e==null?[]:Array.isArray(e)?e:[e]};var s=function(e,t,n,c,u){e=a(e);t=a(t);if(arguments.length===1){return s.bind(null,e.map(function(e){return typeof e==="string"&&e[0]!=="!"?r.matcher(e):e}))}c=c||0;var l=t[0];var f,p;var d=false;var h=-1;function testCriteria(e,n){var i;switch(Object.prototype.toString.call(e)){case"[object String]":i=l===e||f&&f===e;i=i||r.isMatch(l,e);break;case"[object RegExp]":i=e.test(l)||f&&e.test(f);break;case"[object Function]":i=e.apply(null,t);i=i||p&&e.apply(null,p);break;default:i=false}if(i){h=n+c}return i}var m=e;var v=m.reduce(function(t,n,r){if(typeof n==="string"&&n[0]==="!"){if(m===e){m=m.slice()}m[r]=null;t.push(n.substr(1))}return t},[]);if(!v.length||!r.any(l,v)){if(o.sep==="\\"&&typeof l==="string"){f=i(l);f=f===l?null:f;if(f)p=[f].concat(t.slice(1))}d=m.slice(c,u).some(testCriteria)}return n===true?h:d};e.exports=s},4914:function(e,t,n){"use strict";const r=n(649);let i;if(typeof r.getSystemErrorName==="function"){e.exports=r.getSystemErrorName}else{try{i=process.binding("uv");if(typeof i.errname!=="function"){throw new TypeError("uv.errname is not a function")}}catch(e){console.error("execa/lib/errname: unable to establish process.binding('uv')",e);i=null}e.exports=(e=>errname(i,e))}e.exports.__test__=errname;function errname(e,t){if(e){return e.errname(t)}if(!(t<0)){throw new Error("err >= 0")}return`Unknown system error ${t}`}},4936:function(e,t,n){"use strict";var r=n(9423).Buffer,i=n(6886).Transform;e.exports=function(e){e.encodeStream=function encodeStream(t,n){return new IconvLiteEncoderStream(e.getEncoder(t,n),n)};e.decodeStream=function decodeStream(t,n){return new IconvLiteDecoderStream(e.getDecoder(t,n),n)};e.supportsStreams=true;e.IconvLiteEncoderStream=IconvLiteEncoderStream;e.IconvLiteDecoderStream=IconvLiteDecoderStream;e._collect=IconvLiteDecoderStream.prototype.collect};function IconvLiteEncoderStream(e,t){this.conv=e;t=t||{};t.decodeStrings=false;i.call(this,t)}IconvLiteEncoderStream.prototype=Object.create(i.prototype,{constructor:{value:IconvLiteEncoderStream}});IconvLiteEncoderStream.prototype._transform=function(e,t,n){if(typeof e!="string")return n(new Error("Iconv encoding stream needs strings as its input."));try{var r=this.conv.write(e);if(r&&r.length)this.push(r);n()}catch(e){n(e)}};IconvLiteEncoderStream.prototype._flush=function(e){try{var t=this.conv.end();if(t&&t.length)this.push(t);e()}catch(t){e(t)}};IconvLiteEncoderStream.prototype.collect=function(e){var t=[];this.on("error",e);this.on("data",function(e){t.push(e)});this.on("end",function(){e(null,r.concat(t))});return this};function IconvLiteDecoderStream(e,t){this.conv=e;t=t||{};t.encoding=this.encoding="utf8";i.call(this,t)}IconvLiteDecoderStream.prototype=Object.create(i.prototype,{constructor:{value:IconvLiteDecoderStream}});IconvLiteDecoderStream.prototype._transform=function(e,t,n){if(!r.isBuffer(e))return n(new Error("Iconv decoding stream needs buffers as its input."));try{var i=this.conv.write(e);if(i&&i.length)this.push(i,this.encoding);n()}catch(e){n(e)}};IconvLiteDecoderStream.prototype._flush=function(e){try{var t=this.conv.end();if(t&&t.length)this.push(t,this.encoding);e()}catch(t){e(t)}};IconvLiteDecoderStream.prototype.collect=function(e){var t="";this.on("error",e);this.on("data",function(e){t+=e});this.on("end",function(){e(null,t)});return this}},4937:function(e,t,n){function setup(e){createDebug.debug=createDebug;createDebug.default=createDebug;createDebug.coerce=coerce;createDebug.disable=disable;createDebug.enable=enable;createDebug.enabled=enabled;createDebug.humanize=n(2229);Object.keys(e).forEach(t=>{createDebug[t]=e[t]});createDebug.instances=[];createDebug.names=[];createDebug.skips=[];createDebug.formatters={};function selectColor(e){let t=0;for(let n=0;n<e.length;n++){t=(t<<5)-t+e.charCodeAt(n);t|=0}return createDebug.colors[Math.abs(t)%createDebug.colors.length]}createDebug.selectColor=selectColor;function createDebug(e){let t;function debug(...e){if(!debug.enabled){return}const n=debug;const r=Number(new Date);const i=r-(t||r);n.diff=i;n.prev=t;n.curr=r;t=r;e[0]=createDebug.coerce(e[0]);if(typeof e[0]!=="string"){e.unshift("%O")}let o=0;e[0]=e[0].replace(/%([a-zA-Z%])/g,(t,r)=>{if(t==="%%"){return t}o++;const i=createDebug.formatters[r];if(typeof i==="function"){const r=e[o];t=i.call(n,r);e.splice(o,1);o--}return t});createDebug.formatArgs.call(n,e);const a=n.log||createDebug.log;a.apply(n,e)}debug.namespace=e;debug.enabled=createDebug.enabled(e);debug.useColors=createDebug.useColors();debug.color=selectColor(e);debug.destroy=destroy;debug.extend=extend;if(typeof createDebug.init==="function"){createDebug.init(debug)}createDebug.instances.push(debug);return debug}function destroy(){const e=createDebug.instances.indexOf(this);if(e!==-1){createDebug.instances.splice(e,1);return true}return false}function extend(e,t){const n=createDebug(this.namespace+(typeof t==="undefined"?":":t)+e);n.log=this.log;return n}function enable(e){createDebug.save(e);createDebug.names=[];createDebug.skips=[];let t;const n=(typeof e==="string"?e:"").split(/[\s,]+/);const r=n.length;for(t=0;t<r;t++){if(!n[t]){continue}e=n[t].replace(/\*/g,".*?");if(e[0]==="-"){createDebug.skips.push(new RegExp("^"+e.substr(1)+"$"))}else{createDebug.names.push(new RegExp("^"+e+"$"))}}for(t=0;t<createDebug.instances.length;t++){const e=createDebug.instances[t];e.enabled=createDebug.enabled(e.namespace)}}function disable(){const e=[...createDebug.names.map(toNamespace),...createDebug.skips.map(toNamespace).map(e=>"-"+e)].join(",");createDebug.enable("");return e}function enabled(e){if(e[e.length-1]==="*"){return true}let t;let n;for(t=0,n=createDebug.skips.length;t<n;t++){if(createDebug.skips[t].test(e)){return false}}for(t=0,n=createDebug.names.length;t<n;t++){if(createDebug.names[t].test(e)){return true}}return false}function toNamespace(e){return e.toString().substring(2,e.toString().length-2).replace(/\.\*\?$/,"*")}function coerce(e){if(e instanceof Error){return e.stack||e.message}return e}createDebug.enable(createDebug.load());return createDebug}e.exports=setup},4940:function(e){"use strict";const t=["destroy","setTimeout","socket","headers","trailers","rawHeaders","statusCode","httpVersion","httpVersionMinor","httpVersionMajor","rawTrailers","statusMessage"];e.exports=((e,n)=>{const r=new Set(Object.keys(e).concat(t));for(const t of r){if(t in n){continue}n[t]=typeof e[t]==="function"?e[t].bind(e):e[t]}})},4948:function(e){e.exports=["3dm","3ds","3g2","3gp","7z","a","aac","adp","ai","aif","aiff","alz","ape","apk","ar","arj","asf","au","avi","bak","baml","bh","bin","bk","bmp","btif","bz2","bzip2","cab","caf","cgm","class","cmx","cpio","cr2","cur","dat","dcm","deb","dex","djvu","dll","dmg","dng","doc","docm","docx","dot","dotm","dra","DS_Store","dsk","dts","dtshd","dvb","dwg","dxf","ecelp4800","ecelp7470","ecelp9600","egg","eol","eot","epub","exe","f4v","fbs","fh","fla","flac","fli","flv","fpx","fst","fvt","g3","gh","gif","graffle","gz","gzip","h261","h263","h264","icns","ico","ief","img","ipa","iso","jar","jpeg","jpg","jpgv","jpm","jxr","key","ktx","lha","lib","lvp","lz","lzh","lzma","lzo","m3u","m4a","m4v","mar","mdi","mht","mid","midi","mj2","mka","mkv","mmr","mng","mobi","mov","movie","mp3","mp4","mp4a","mpeg","mpg","mpga","mxu","nef","npx","numbers","nupkg","o","oga","ogg","ogv","otf","pages","pbm","pcx","pdb","pdf","pea","pgm","pic","png","pnm","pot","potm","potx","ppa","ppam","ppm","pps","ppsm","ppsx","ppt","pptm","pptx","psd","pya","pyc","pyo","pyv","qt","rar","ras","raw","resources","rgb","rip","rlc","rmf","rmvb","rtf","rz","s3m","s7z","scpt","sgi","shar","sil","sketch","slk","smv","snk","so","stl","suo","sub","swf","tar","tbz","tbz2","tga","tgz","thmx","tif","tiff","tlz","ttc","ttf","txz","udf","uvh","uvi","uvm","uvp","uvs","uvu","viv","vob","war","wav","wax","wbmp","wdp","weba","webm","webp","whl","wim","wm","wma","wmv","wmx","woff","woff2","wrm","wvx","xbm","xif","xla","xlam","xls","xlsb","xlsm","xlsx","xlt","xltm","xltx","xm","xmind","xpi","xpm","xwd","xz","z","zip","zipx"]},4968:function(e,t,n){"use strict";const r=Object.assign({},n(3782));e.exports=r;e.exports.default=r},4974:function(e,t,n){var r=n(774);var i=n(8807);var o=i.decodeBase64;var a=i.encodeBase64;var s=":_authToken";var c=":username";var u=":_password";e.exports=function(){var e;var t;if(arguments.length>=2){e=arguments[0];t=arguments[1]}else if(typeof arguments[0]==="string"){e=arguments[0]}else{t=arguments[0]}t=t||{};t.npmrc=t.npmrc||n(6011)("npm",{registry:"https://registry.npmjs.org/"});e=e||t.npmrc.registry;return getRegistryAuthInfo(e,t)||getLegacyAuthInfo(t.npmrc)};function getRegistryAuthInfo(e,t){var n=r.parse(e,false,true);var i;while(i!=="/"&&n.pathname!==i){i=n.pathname||"/";var o="//"+n.host+i.replace(/\/$/,"");var a=getAuthInfoForUrl(o,t.npmrc);if(a){return a}if(!t.recursive){return/\/$/.test(e)?undefined:getRegistryAuthInfo(r.resolve(e,"."),t)}n.pathname=r.resolve(normalizePath(i),"..")||"/"}return undefined}function getLegacyAuthInfo(e){if(e._auth){return{token:e._auth,type:"Basic"}}return undefined}function normalizePath(e){return e[e.length-1]==="/"?e:e+"/"}function getAuthInfoForUrl(e,t){var n=getBearerToken(t[e+s]||t[e+"/"+s]);if(n){return n}var r=t[e+c]||t[e+"/"+c];var i=t[e+u]||t[e+"/"+u];var o=getTokenForUsernameAndPassword(r,i);if(o){return o}return undefined}function getBearerToken(e){if(!e){return undefined}var t=e.replace(/^\$\{?([^}]*)\}?$/,function(e,t){return process.env[t]});return{token:t,type:"Bearer"}}function getTokenForUsernameAndPassword(e,t){if(!e||!t){return undefined}var n=o(t.replace(/^\$\{?([^}]*)\}?$/,function(e,t){return process.env[t]}));var r=a(e+":"+n);return{token:r,type:"Basic",password:n,username:e}}},4999:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});t.default=process.platform==="win32"?"Δ":"𝚫"},5000:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);const o=e=>`${Object(r["gray"])(`+ ${e}`)}`;t["default"]=o},5008:function(e){e.exports={$id:"request.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",required:["method","url","httpVersion","cookies","headers","queryString","headersSize","bodySize"],properties:{method:{type:"string"},url:{type:"string",format:"uri"},httpVersion:{type:"string"},cookies:{type:"array",items:{$ref:"cookie.json#"}},headers:{type:"array",items:{$ref:"header.json#"}},queryString:{type:"array",items:{$ref:"query.json#"}},postData:{$ref:"postData.json#"},headersSize:{type:"integer"},bodySize:{type:"integer"},comment:{type:"string"}}}},5012:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5700);e.exports={remove:r(i),removeSync:i.sync}},5026:function(e,t,n){"use strict";var r=n(7409);e.exports=r.extend({path:"country_specs",includeBasic:["list","retrieve"]})},5032:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(4874));const s=i(n(6244));const c=i(n(2688));const u=i(n(4680));const l={LEFT:"",RIGHT:"",CTRL_C:"",BACKSPACE:"\b",CTRL_H:"",CARRIAGE:"\r"};const f=e=>e.replace(/\s/g,"").replace(/(.{4})/g,"$1 ").trim();function text({label:e="",initialValue:t="",valid:n=true,mask:i=false,placeholder:p="",abortSequences:d=new Set([""]),eraseSequences:h=new Set([l.BACKSPACE,l.CTRL_H]),resolveChars:m=new Set([l.CARRIAGE]),stdin:v=process.stdin,stdout:g=process.stdout,trailing:y=a.default.eraseLines(1),validateKeypress:b=((e,t)=>true),validateValue:w=(e=>true),autoComplete:x=(e=>false),autoCompleteChars:k=new Set(["\t",""]),forceLowerCase:j=false}={}){return new Promise((S,E)=>{const _=process.stdin.isRaw||false;let C;let A=0;let O;let F="";if(n){g.write(e)}else{const t=e.replace("-","✖");g.write(o.default.red(t))}C=t;g.write(t);if(i){if(!C){C=o.default.gray(p);A=0-c.default(C).length;g.write(C);g.write(a.default.cursorBackward(Math.abs(A)))}const e=p.split("").reduce((e,t)=>{if(t!==" "&&!e.includes(t)){if(t==="/"){e.push(" / ")}else{e.push(t)}}return e},[]).join("|");O=new RegExp(`(${e})`,"g")}if(v.setRawMode){v.setRawMode(true)}v.resume();function restore(){if(v.setRawMode){v.setRawMode(_)}v.pause();v.removeListener("data",onData);if(y){g.write(y)}}function onData(t){return r(this,void 0,void 0,function*(){let n=t.toString();C=c.default(C);if(d.has(n)){restore();const e=new Error("USER_ABORT");return E(e)}if(j){n=n.toLowerCase()}if(F!==""&&!A&&k.has(n)){C+=c.default(F);F=""}else if(n===l.LEFT){if(C.length>Math.abs(A)){A--}}else if(n===l.RIGHT){if(A<0){A++}}else if(h.has(n)){let e;if(i&&C.length>Math.abs(A)){if(C[C.length+A-1]===" "){if(C[C.length+A-2]==="/"){A-=1}e=p[C.length+A];C=C.substr(0,C.length+A-2)+e+C.substr(C.length+A-1);A--}else{e=p[C.length+A-1];C=C.substr(0,C.length+A-1)+e+C.substr(C.length+A)}A--}else{C=C.substr(0,C.length+A-1)+C.substr(C.length+A)}F=""}else if(m.has(n)){if(w(C)){restore();S(C)}else{if(i==="cc"||i==="ccv"){C=f(C);C=C.replace(O,o.default.gray("$1"))}else if(i==="expDate"){C=C.replace(O,o.default.gray("$1"))}const t=o.default.red(e.replace("-","✖"));g.write(u.default(1));g.write(t+C+a.default.beep);if(A){process.stdout.write(a.default.cursorBackward(Math.abs(A)))}}return}else if(!s.default().test(n)){let e=C.substr(0,C.length+A)+n+C.substr(C.length+A);if(i){if(/\d/.test(n)&&A!==0){let t=n;if(i==="cc"||i==="ccv"){t=f(n)}if(C[C.length+A+1]===" "){e=C.substr(0,C.length+A)+t+C.substr(C.length+A+t.length);A+=t.length+1;if(C[C.length+A]==="/"){A+=t.length+1}}else{e=C.substr(0,C.length+A)+t+C.substr(C.length+A+t.length);A+=t.length}}else if(/\s/.test(n)&&A<0){A++;e=C}else{return g.write(a.default.beep)}C=e}else if(b(n,C)){C=e;if(A===0){const e=yield x(C);if(e){F=o.default.gray(e);F+=a.default.cursorBackward(e.length)}else{F=""}}}else{return g.write(a.default.beep)}}if(i==="cc"||i==="ccv"){C=f(C);C=C.replace(O,o.default.gray("$1"))}else if(i==="expDate"){C=C.replace(O,o.default.gray("$1"))}g.write(u.default(1));g.write(e+C+F);if(A){process.stdout.write(a.default.cursorBackward(Math.abs(A)))}})}v.on("data",onData)})}t.default=text},5038:function(e){if(typeof Object.create==="function"){e.exports=function inherits(e,t){if(t){e.super_=t;e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:false,writable:true,configurable:true}})}}}else{e.exports=function inherits(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype;e.prototype=new n;e.prototype.constructor=e}}}},5041:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return getCreditCards});async function getCreditCards(e){const t=await e.fetch("/stripe/sources/");const n=t.sources;return n}},5047:function(e,t){t=e.exports=SemVer;var n;if(typeof process==="object"&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)){n=function(){var e=Array.prototype.slice.call(arguments,0);e.unshift("SEMVER");console.log.apply(console,e)}}else{n=function(){}}t.SEMVER_SPEC_VERSION="2.0.0";var r=256;var i=Number.MAX_SAFE_INTEGER||9007199254740991;var o=16;var a=t.re=[];var s=t.src=[];var c=0;var u=c++;s[u]="0|[1-9]\\d*";var l=c++;s[l]="[0-9]+";var f=c++;s[f]="\\d*[a-zA-Z-][a-zA-Z0-9-]*";var p=c++;s[p]="("+s[u]+")\\."+"("+s[u]+")\\."+"("+s[u]+")";var d=c++;s[d]="("+s[l]+")\\."+"("+s[l]+")\\."+"("+s[l]+")";var h=c++;s[h]="(?:"+s[u]+"|"+s[f]+")";var m=c++;s[m]="(?:"+s[l]+"|"+s[f]+")";var v=c++;s[v]="(?:-("+s[h]+"(?:\\."+s[h]+")*))";var g=c++;s[g]="(?:-?("+s[m]+"(?:\\."+s[m]+")*))";var y=c++;s[y]="[0-9A-Za-z-]+";var b=c++;s[b]="(?:\\+("+s[y]+"(?:\\."+s[y]+")*))";var w=c++;var x="v?"+s[p]+s[v]+"?"+s[b]+"?";s[w]="^"+x+"$";var k="[v=\\s]*"+s[d]+s[g]+"?"+s[b]+"?";var j=c++;s[j]="^"+k+"$";var S=c++;s[S]="((?:<|>)?=?)";var E=c++;s[E]=s[l]+"|x|X|\\*";var _=c++;s[_]=s[u]+"|x|X|\\*";var C=c++;s[C]="[v=\\s]*("+s[_]+")"+"(?:\\.("+s[_]+")"+"(?:\\.("+s[_]+")"+"(?:"+s[v]+")?"+s[b]+"?"+")?)?";var A=c++;s[A]="[v=\\s]*("+s[E]+")"+"(?:\\.("+s[E]+")"+"(?:\\.("+s[E]+")"+"(?:"+s[g]+")?"+s[b]+"?"+")?)?";var O=c++;s[O]="^"+s[S]+"\\s*"+s[C]+"$";var F=c++;s[F]="^"+s[S]+"\\s*"+s[A]+"$";var D=c++;s[D]="(?:^|[^\\d])"+"(\\d{1,"+o+"})"+"(?:\\.(\\d{1,"+o+"}))?"+"(?:\\.(\\d{1,"+o+"}))?"+"(?:$|[^\\d])";var T=c++;s[T]="(?:~>?)";var I=c++;s[I]="(\\s*)"+s[T]+"\\s+";a[I]=new RegExp(s[I],"g");var R="$1~";var P=c++;s[P]="^"+s[T]+s[C]+"$";var B=c++;s[B]="^"+s[T]+s[A]+"$";var N=c++;s[N]="(?:\\^)";var z=c++;s[z]="(\\s*)"+s[N]+"\\s+";a[z]=new RegExp(s[z],"g");var L="$1^";var M=c++;s[M]="^"+s[N]+s[C]+"$";var U=c++;s[U]="^"+s[N]+s[A]+"$";var q=c++;s[q]="^"+s[S]+"\\s*("+k+")$|^$";var H=c++;s[H]="^"+s[S]+"\\s*("+x+")$|^$";var G=c++;s[G]="(\\s*)"+s[S]+"\\s*("+k+"|"+s[C]+")";a[G]=new RegExp(s[G],"g");var W="$1$2$3";var V=c++;s[V]="^\\s*("+s[C]+")"+"\\s+-\\s+"+"("+s[C]+")"+"\\s*$";var J=c++;s[J]="^\\s*("+s[A]+")"+"\\s+-\\s+"+"("+s[A]+")"+"\\s*$";var Y=c++;s[Y]="(<|>)?=?\\s*\\*";for(var Z=0;Z<c;Z++){n(Z,s[Z]);if(!a[Z]){a[Z]=new RegExp(s[Z])}}t.parse=parse;function parse(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof SemVer){return e}if(typeof e!=="string"){return null}if(e.length>r){return null}var n=t.loose?a[j]:a[w];if(!n.test(e)){return null}try{return new SemVer(e,t)}catch(e){return null}}t.valid=valid;function valid(e,t){var n=parse(e,t);return n?n.version:null}t.clean=clean;function clean(e,t){var n=parse(e.trim().replace(/^[=v]+/,""),t);return n?n.version:null}t.SemVer=SemVer;function SemVer(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof SemVer){if(e.loose===t.loose){return e}else{e=e.version}}else if(typeof e!=="string"){throw new TypeError("Invalid Version: "+e)}if(e.length>r){throw new TypeError("version is longer than "+r+" characters")}if(!(this instanceof SemVer)){return new SemVer(e,t)}n("SemVer",e,t);this.options=t;this.loose=!!t.loose;var o=e.trim().match(t.loose?a[j]:a[w]);if(!o){throw new TypeError("Invalid Version: "+e)}this.raw=e;this.major=+o[1];this.minor=+o[2];this.patch=+o[3];if(this.major>i||this.major<0){throw new TypeError("Invalid major version")}if(this.minor>i||this.minor<0){throw new TypeError("Invalid minor version")}if(this.patch>i||this.patch<0){throw new TypeError("Invalid patch version")}if(!o[4]){this.prerelease=[]}else{this.prerelease=o[4].split(".").map(function(e){if(/^[0-9]+$/.test(e)){var t=+e;if(t>=0&&t<i){return t}}return e})}this.build=o[5]?o[5].split("."):[];this.format()}SemVer.prototype.format=function(){this.version=this.major+"."+this.minor+"."+this.patch;if(this.prerelease.length){this.version+="-"+this.prerelease.join(".")}return this.version};SemVer.prototype.toString=function(){return this.version};SemVer.prototype.compare=function(e){n("SemVer.compare",this.version,this.options,e);if(!(e instanceof SemVer)){e=new SemVer(e,this.options)}return this.compareMain(e)||this.comparePre(e)};SemVer.prototype.compareMain=function(e){if(!(e instanceof SemVer)){e=new SemVer(e,this.options)}return compareIdentifiers(this.major,e.major)||compareIdentifiers(this.minor,e.minor)||compareIdentifiers(this.patch,e.patch)};SemVer.prototype.comparePre=function(e){if(!(e instanceof SemVer)){e=new SemVer(e,this.options)}if(this.prerelease.length&&!e.prerelease.length){return-1}else if(!this.prerelease.length&&e.prerelease.length){return 1}else if(!this.prerelease.length&&!e.prerelease.length){return 0}var t=0;do{var r=this.prerelease[t];var i=e.prerelease[t];n("prerelease compare",t,r,i);if(r===undefined&&i===undefined){return 0}else if(i===undefined){return 1}else if(r===undefined){return-1}else if(r===i){continue}else{return compareIdentifiers(r,i)}}while(++t)};SemVer.prototype.inc=function(e,t){switch(e){case"premajor":this.prerelease.length=0;this.patch=0;this.minor=0;this.major++;this.inc("pre",t);break;case"preminor":this.prerelease.length=0;this.patch=0;this.minor++;this.inc("pre",t);break;case"prepatch":this.prerelease.length=0;this.inc("patch",t);this.inc("pre",t);break;case"prerelease":if(this.prerelease.length===0){this.inc("patch",t)}this.inc("pre",t);break;case"major":if(this.minor!==0||this.patch!==0||this.prerelease.length===0){this.major++}this.minor=0;this.patch=0;this.prerelease=[];break;case"minor":if(this.patch!==0||this.prerelease.length===0){this.minor++}this.patch=0;this.prerelease=[];break;case"patch":if(this.prerelease.length===0){this.patch++}this.prerelease=[];break;case"pre":if(this.prerelease.length===0){this.prerelease=[0]}else{var n=this.prerelease.length;while(--n>=0){if(typeof this.prerelease[n]==="number"){this.prerelease[n]++;n=-2}}if(n===-1){this.prerelease.push(0)}}if(t){if(this.prerelease[0]===t){if(isNaN(this.prerelease[1])){this.prerelease=[t,0]}}else{this.prerelease=[t,0]}}break;default:throw new Error("invalid increment argument: "+e)}this.format();this.raw=this.version;return this};t.inc=inc;function inc(e,t,n,r){if(typeof n==="string"){r=n;n=undefined}try{return new SemVer(e,n).inc(t,r).version}catch(e){return null}}t.diff=diff;function diff(e,t){if(eq(e,t)){return null}else{var n=parse(e);var r=parse(t);var i="";if(n.prerelease.length||r.prerelease.length){i="pre";var o="prerelease"}for(var a in n){if(a==="major"||a==="minor"||a==="patch"){if(n[a]!==r[a]){return i+a}}}return o}}t.compareIdentifiers=compareIdentifiers;var X=/^[0-9]+$/;function compareIdentifiers(e,t){var n=X.test(e);var r=X.test(t);if(n&&r){e=+e;t=+t}return e===t?0:n&&!r?-1:r&&!n?1:e<t?-1:1}t.rcompareIdentifiers=rcompareIdentifiers;function rcompareIdentifiers(e,t){return compareIdentifiers(t,e)}t.major=major;function major(e,t){return new SemVer(e,t).major}t.minor=minor;function minor(e,t){return new SemVer(e,t).minor}t.patch=patch;function patch(e,t){return new SemVer(e,t).patch}t.compare=compare;function compare(e,t,n){return new SemVer(e,n).compare(new SemVer(t,n))}t.compareLoose=compareLoose;function compareLoose(e,t){return compare(e,t,true)}t.rcompare=rcompare;function rcompare(e,t,n){return compare(t,e,n)}t.sort=sort;function sort(e,n){return e.sort(function(e,r){return t.compare(e,r,n)})}t.rsort=rsort;function rsort(e,n){return e.sort(function(e,r){return t.rcompare(e,r,n)})}t.gt=gt;function gt(e,t,n){return compare(e,t,n)>0}t.lt=lt;function lt(e,t,n){return compare(e,t,n)<0}t.eq=eq;function eq(e,t,n){return compare(e,t,n)===0}t.neq=neq;function neq(e,t,n){return compare(e,t,n)!==0}t.gte=gte;function gte(e,t,n){return compare(e,t,n)>=0}t.lte=lte;function lte(e,t,n){return compare(e,t,n)<=0}t.cmp=cmp;function cmp(e,t,n,r){switch(t){case"===":if(typeof e==="object")e=e.version;if(typeof n==="object")n=n.version;return e===n;case"!==":if(typeof e==="object")e=e.version;if(typeof n==="object")n=n.version;return e!==n;case"":case"=":case"==":return eq(e,n,r);case"!=":return neq(e,n,r);case">":return gt(e,n,r);case">=":return gte(e,n,r);case"<":return lt(e,n,r);case"<=":return lte(e,n,r);default:throw new TypeError("Invalid operator: "+t)}}t.Comparator=Comparator;function Comparator(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof Comparator){if(e.loose===!!t.loose){return e}else{e=e.value}}if(!(this instanceof Comparator)){return new Comparator(e,t)}n("comparator",e,t);this.options=t;this.loose=!!t.loose;this.parse(e);if(this.semver===Q){this.value=""}else{this.value=this.operator+this.semver.version}n("comp",this)}var Q={};Comparator.prototype.parse=function(e){var t=this.options.loose?a[q]:a[H];var n=e.match(t);if(!n){throw new TypeError("Invalid comparator: "+e)}this.operator=n[1];if(this.operator==="="){this.operator=""}if(!n[2]){this.semver=Q}else{this.semver=new SemVer(n[2],this.options.loose)}};Comparator.prototype.toString=function(){return this.value};Comparator.prototype.test=function(e){n("Comparator.test",e,this.options.loose);if(this.semver===Q){return true}if(typeof e==="string"){e=new SemVer(e,this.options)}return cmp(e,this.operator,this.semver,this.options)};Comparator.prototype.intersects=function(e,t){if(!(e instanceof Comparator)){throw new TypeError("a Comparator is required")}if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}var n;if(this.operator===""){n=new Range(e.value,t);return satisfies(this.value,n,t)}else if(e.operator===""){n=new Range(this.value,t);return satisfies(e.semver,n,t)}var r=(this.operator===">="||this.operator===">")&&(e.operator===">="||e.operator===">");var i=(this.operator==="<="||this.operator==="<")&&(e.operator==="<="||e.operator==="<");var o=this.semver.version===e.semver.version;var a=(this.operator===">="||this.operator==="<=")&&(e.operator===">="||e.operator==="<=");var s=cmp(this.semver,"<",e.semver,t)&&((this.operator===">="||this.operator===">")&&(e.operator==="<="||e.operator==="<"));var c=cmp(this.semver,">",e.semver,t)&&((this.operator==="<="||this.operator==="<")&&(e.operator===">="||e.operator===">"));return r||i||o&&a||s||c};t.Range=Range;function Range(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof Range){if(e.loose===!!t.loose&&e.includePrerelease===!!t.includePrerelease){return e}else{return new Range(e.raw,t)}}if(e instanceof Comparator){return new Range(e.value,t)}if(!(this instanceof Range)){return new Range(e,t)}this.options=t;this.loose=!!t.loose;this.includePrerelease=!!t.includePrerelease;this.raw=e;this.set=e.split(/\s*\|\|\s*/).map(function(e){return this.parseRange(e.trim())},this).filter(function(e){return e.length});if(!this.set.length){throw new TypeError("Invalid SemVer Range: "+e)}this.format()}Range.prototype.format=function(){this.range=this.set.map(function(e){return e.join(" ").trim()}).join("||").trim();return this.range};Range.prototype.toString=function(){return this.range};Range.prototype.parseRange=function(e){var t=this.options.loose;e=e.trim();var r=t?a[J]:a[V];e=e.replace(r,hyphenReplace);n("hyphen replace",e);e=e.replace(a[G],W);n("comparator trim",e,a[G]);e=e.replace(a[I],R);e=e.replace(a[z],L);e=e.split(/\s+/).join(" ");var i=t?a[q]:a[H];var o=e.split(" ").map(function(e){return parseComparator(e,this.options)},this).join(" ").split(/\s+/);if(this.options.loose){o=o.filter(function(e){return!!e.match(i)})}o=o.map(function(e){return new Comparator(e,this.options)},this);return o};Range.prototype.intersects=function(e,t){if(!(e instanceof Range)){throw new TypeError("a Range is required")}return this.set.some(function(n){return n.every(function(n){return e.set.some(function(e){return e.every(function(e){return n.intersects(e,t)})})})})};t.toComparators=toComparators;function toComparators(e,t){return new Range(e,t).set.map(function(e){return e.map(function(e){return e.value}).join(" ").trim().split(" ")})}function parseComparator(e,t){n("comp",e,t);e=replaceCarets(e,t);n("caret",e);e=replaceTildes(e,t);n("tildes",e);e=replaceXRanges(e,t);n("xrange",e);e=replaceStars(e,t);n("stars",e);return e}function isX(e){return!e||e.toLowerCase()==="x"||e==="*"}function replaceTildes(e,t){return e.trim().split(/\s+/).map(function(e){return replaceTilde(e,t)}).join(" ")}function replaceTilde(e,t){var r=t.loose?a[B]:a[P];return e.replace(r,function(t,r,i,o,a){n("tilde",e,t,r,i,o,a);var s;if(isX(r)){s=""}else if(isX(i)){s=">="+r+".0.0 <"+(+r+1)+".0.0"}else if(isX(o)){s=">="+r+"."+i+".0 <"+r+"."+(+i+1)+".0"}else if(a){n("replaceTilde pr",a);s=">="+r+"."+i+"."+o+"-"+a+" <"+r+"."+(+i+1)+".0"}else{s=">="+r+"."+i+"."+o+" <"+r+"."+(+i+1)+".0"}n("tilde return",s);return s})}function replaceCarets(e,t){return e.trim().split(/\s+/).map(function(e){return replaceCaret(e,t)}).join(" ")}function replaceCaret(e,t){n("caret",e,t);var r=t.loose?a[U]:a[M];return e.replace(r,function(t,r,i,o,a){n("caret",e,t,r,i,o,a);var s;if(isX(r)){s=""}else if(isX(i)){s=">="+r+".0.0 <"+(+r+1)+".0.0"}else if(isX(o)){if(r==="0"){s=">="+r+"."+i+".0 <"+r+"."+(+i+1)+".0"}else{s=">="+r+"."+i+".0 <"+(+r+1)+".0.0"}}else if(a){n("replaceCaret pr",a);if(r==="0"){if(i==="0"){s=">="+r+"."+i+"."+o+"-"+a+" <"+r+"."+i+"."+(+o+1)}else{s=">="+r+"."+i+"."+o+"-"+a+" <"+r+"."+(+i+1)+".0"}}else{s=">="+r+"."+i+"."+o+"-"+a+" <"+(+r+1)+".0.0"}}else{n("no pr");if(r==="0"){if(i==="0"){s=">="+r+"."+i+"."+o+" <"+r+"."+i+"."+(+o+1)}else{s=">="+r+"."+i+"."+o+" <"+r+"."+(+i+1)+".0"}}else{s=">="+r+"."+i+"."+o+" <"+(+r+1)+".0.0"}}n("caret return",s);return s})}function replaceXRanges(e,t){n("replaceXRanges",e,t);return e.split(/\s+/).map(function(e){return replaceXRange(e,t)}).join(" ")}function replaceXRange(e,t){e=e.trim();var r=t.loose?a[F]:a[O];return e.replace(r,function(t,r,i,o,a,s){n("xRange",e,t,r,i,o,a,s);var c=isX(i);var u=c||isX(o);var l=u||isX(a);var f=l;if(r==="="&&f){r=""}if(c){if(r===">"||r==="<"){t="<0.0.0"}else{t="*"}}else if(r&&f){if(u){o=0}a=0;if(r===">"){r=">=";if(u){i=+i+1;o=0;a=0}else{o=+o+1;a=0}}else if(r==="<="){r="<";if(u){i=+i+1}else{o=+o+1}}t=r+i+"."+o+"."+a}else if(u){t=">="+i+".0.0 <"+(+i+1)+".0.0"}else if(l){t=">="+i+"."+o+".0 <"+i+"."+(+o+1)+".0"}n("xRange return",t);return t})}function replaceStars(e,t){n("replaceStars",e,t);return e.trim().replace(a[Y],"")}function hyphenReplace(e,t,n,r,i,o,a,s,c,u,l,f,p){if(isX(n)){t=""}else if(isX(r)){t=">="+n+".0.0"}else if(isX(i)){t=">="+n+"."+r+".0"}else{t=">="+t}if(isX(c)){s=""}else if(isX(u)){s="<"+(+c+1)+".0.0"}else if(isX(l)){s="<"+c+"."+(+u+1)+".0"}else if(f){s="<="+c+"."+u+"."+l+"-"+f}else{s="<="+s}return(t+" "+s).trim()}Range.prototype.test=function(e){if(!e){return false}if(typeof e==="string"){e=new SemVer(e,this.options)}for(var t=0;t<this.set.length;t++){if(testSet(this.set[t],e,this.options)){return true}}return false};function testSet(e,t,r){for(var i=0;i<e.length;i++){if(!e[i].test(t)){return false}}if(t.prerelease.length&&!r.includePrerelease){for(i=0;i<e.length;i++){n(e[i].semver);if(e[i].semver===Q){continue}if(e[i].semver.prerelease.length>0){var o=e[i].semver;if(o.major===t.major&&o.minor===t.minor&&o.patch===t.patch){return true}}}return false}return true}t.satisfies=satisfies;function satisfies(e,t,n){try{t=new Range(t,n)}catch(e){return false}return t.test(e)}t.maxSatisfying=maxSatisfying;function maxSatisfying(e,t,n){var r=null;var i=null;try{var o=new Range(t,n)}catch(e){return null}e.forEach(function(e){if(o.test(e)){if(!r||i.compare(e)===-1){r=e;i=new SemVer(r,n)}}});return r}t.minSatisfying=minSatisfying;function minSatisfying(e,t,n){var r=null;var i=null;try{var o=new Range(t,n)}catch(e){return null}e.forEach(function(e){if(o.test(e)){if(!r||i.compare(e)===1){r=e;i=new SemVer(r,n)}}});return r}t.minVersion=minVersion;function minVersion(e,t){e=new Range(e,t);var n=new SemVer("0.0.0");if(e.test(n)){return n}n=new SemVer("0.0.0-0");if(e.test(n)){return n}n=null;for(var r=0;r<e.set.length;++r){var i=e.set[r];i.forEach(function(e){var t=new SemVer(e.semver.version);switch(e.operator){case">":if(t.prerelease.length===0){t.patch++}else{t.prerelease.push(0)}t.raw=t.format();case"":case">=":if(!n||gt(n,t)){n=t}break;case"<":case"<=":break;default:throw new Error("Unexpected operation: "+e.operator)}})}if(n&&e.test(n)){return n}return null}t.validRange=validRange;function validRange(e,t){try{return new Range(e,t).range||"*"}catch(e){return null}}t.ltr=ltr;function ltr(e,t,n){return outside(e,t,"<",n)}t.gtr=gtr;function gtr(e,t,n){return outside(e,t,">",n)}t.outside=outside;function outside(e,t,n,r){e=new SemVer(e,r);t=new Range(t,r);var i,o,a,s,c;switch(n){case">":i=gt;o=lte;a=lt;s=">";c=">=";break;case"<":i=lt;o=gte;a=gt;s="<";c="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(satisfies(e,t,r)){return false}for(var u=0;u<t.set.length;++u){var l=t.set[u];var f=null;var p=null;l.forEach(function(e){if(e.semver===Q){e=new Comparator(">=0.0.0")}f=f||e;p=p||e;if(i(e.semver,f.semver,r)){f=e}else if(a(e.semver,p.semver,r)){p=e}});if(f.operator===s||f.operator===c){return false}if((!p.operator||p.operator===s)&&o(e,p.semver)){return false}else if(p.operator===c&&a(e,p.semver)){return false}}return true}t.prerelease=prerelease;function prerelease(e,t){var n=parse(e,t);return n&&n.prerelease.length?n.prerelease:null}t.intersects=intersects;function intersects(e,t,n){e=new Range(e,n);t=new Range(t,n);return e.intersects(t)}t.coerce=coerce;function coerce(e){if(e instanceof SemVer){return e}if(typeof e!=="string"){return null}var t=e.match(a[D]);if(t==null){return null}return parse(t[1]+"."+(t[2]||"0")+"."+(t[3]||"0"))}},5065:function(e,t,n){"use strict";const r=n(6164);const i=n(6505);const o=n(555);e.exports={createFile:r.createFile,createFileSync:r.createFileSync,ensureFile:r.createFile,ensureFileSync:r.createFileSync,createLink:i.createLink,createLinkSync:i.createLinkSync,ensureLink:i.createLink,ensureLinkSync:i.createLinkSync,createSymlink:o.createSymlink,createSymlinkSync:o.createSymlinkSync,ensureSymlink:o.createSymlink,ensureSymlinkSync:o.createSymlinkSync}},5077:function(e,t){"use strict";var n=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});function fetchDeploymentsByAppName(e,t){return n(this,void 0,void 0,function*(){const{deployments:n}=yield e.fetch(`/v3/now/deployments?app=${encodeURIComponent(t)}`);return n})}t.default=fetchDeploymentsByAppName},5083:function(e,t,n){"use strict";var r=n(8901);var i=n(5091);var o=n(7007);t.fetchAsyncQuestionProperty=function(e,t,n){if(!r.isFunction(e[t])){return i.Observable.return(e)}return i.Observable.fromPromise(o(e[t])(n).then(function(n){e[t]=n;return e}))}},5089:function(e,t,n){var r=n(6594);var i=n(9175);var o=n(6365).ArraySet;var a=n(657).MappingList;function SourceMapGenerator(e){if(!e){e={}}this._file=i.getArg(e,"file",null);this._sourceRoot=i.getArg(e,"sourceRoot",null);this._skipValidation=i.getArg(e,"skipValidation",false);this._sources=new o;this._names=new o;this._mappings=new a;this._sourcesContents=null}SourceMapGenerator.prototype._version=3;SourceMapGenerator.fromSourceMap=function SourceMapGenerator_fromSourceMap(e){var t=e.sourceRoot;var n=new SourceMapGenerator({file:e.file,sourceRoot:t});e.eachMapping(function(e){var r={generated:{line:e.generatedLine,column:e.generatedColumn}};if(e.source!=null){r.source=e.source;if(t!=null){r.source=i.relative(t,r.source)}r.original={line:e.originalLine,column:e.originalColumn};if(e.name!=null){r.name=e.name}}n.addMapping(r)});e.sources.forEach(function(t){var r=e.sourceContentFor(t);if(r!=null){n.setSourceContent(t,r)}});return n};SourceMapGenerator.prototype.addMapping=function SourceMapGenerator_addMapping(e){var t=i.getArg(e,"generated");var n=i.getArg(e,"original",null);var r=i.getArg(e,"source",null);var o=i.getArg(e,"name",null);if(!this._skipValidation){this._validateMapping(t,n,r,o)}if(r!=null){r=String(r);if(!this._sources.has(r)){this._sources.add(r)}}if(o!=null){o=String(o);if(!this._names.has(o)){this._names.add(o)}}this._mappings.add({generatedLine:t.line,generatedColumn:t.column,originalLine:n!=null&&n.line,originalColumn:n!=null&&n.column,source:r,name:o})};SourceMapGenerator.prototype.setSourceContent=function SourceMapGenerator_setSourceContent(e,t){var n=e;if(this._sourceRoot!=null){n=i.relative(this._sourceRoot,n)}if(t!=null){if(!this._sourcesContents){this._sourcesContents=Object.create(null)}this._sourcesContents[i.toSetString(n)]=t}else if(this._sourcesContents){delete this._sourcesContents[i.toSetString(n)];if(Object.keys(this._sourcesContents).length===0){this._sourcesContents=null}}};SourceMapGenerator.prototype.applySourceMap=function SourceMapGenerator_applySourceMap(e,t,n){var r=t;if(t==null){if(e.file==null){throw new Error("SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, "+'or the source map\'s "file" property. Both were omitted.')}r=e.file}var a=this._sourceRoot;if(a!=null){r=i.relative(a,r)}var s=new o;var c=new o;this._mappings.unsortedForEach(function(t){if(t.source===r&&t.originalLine!=null){var o=e.originalPositionFor({line:t.originalLine,column:t.originalColumn});if(o.source!=null){t.source=o.source;if(n!=null){t.source=i.join(n,t.source)}if(a!=null){t.source=i.relative(a,t.source)}t.originalLine=o.line;t.originalColumn=o.column;if(o.name!=null){t.name=o.name}}}var u=t.source;if(u!=null&&!s.has(u)){s.add(u)}var l=t.name;if(l!=null&&!c.has(l)){c.add(l)}},this);this._sources=s;this._names=c;e.sources.forEach(function(t){var r=e.sourceContentFor(t);if(r!=null){if(n!=null){t=i.join(n,t)}if(a!=null){t=i.relative(a,t)}this.setSourceContent(t,r)}},this)};SourceMapGenerator.prototype._validateMapping=function SourceMapGenerator_validateMapping(e,t,n,r){if(t&&typeof t.line!=="number"&&typeof t.column!=="number"){throw new Error("original.line and original.column are not numbers -- you probably meant to omit "+"the original mapping entirely and only map the generated position. If so, pass "+"null for the original mapping instead of an object with empty or null values.")}if(e&&"line"in e&&"column"in e&&e.line>0&&e.column>=0&&!t&&!n&&!r){return}else if(e&&"line"in e&&"column"in e&&t&&"line"in t&&"column"in t&&e.line>0&&e.column>=0&&t.line>0&&t.column>=0&&n){return}else{throw new Error("Invalid mapping: "+JSON.stringify({generated:e,source:n,original:t,name:r}))}};SourceMapGenerator.prototype._serializeMappings=function SourceMapGenerator_serializeMappings(){var e=0;var t=1;var n=0;var o=0;var a=0;var s=0;var c="";var u;var l;var f;var p;var d=this._mappings.toArray();for(var h=0,m=d.length;h<m;h++){l=d[h];u="";if(l.generatedLine!==t){e=0;while(l.generatedLine!==t){u+=";";t++}}else{if(h>0){if(!i.compareByGeneratedPositionsInflated(l,d[h-1])){continue}u+=","}}u+=r.encode(l.generatedColumn-e);e=l.generatedColumn;if(l.source!=null){p=this._sources.indexOf(l.source);u+=r.encode(p-s);s=p;u+=r.encode(l.originalLine-1-o);o=l.originalLine-1;u+=r.encode(l.originalColumn-n);n=l.originalColumn;if(l.name!=null){f=this._names.indexOf(l.name);u+=r.encode(f-a);a=f}}c+=u}return c};SourceMapGenerator.prototype._generateSourcesContent=function SourceMapGenerator_generateSourcesContent(e,t){return e.map(function(e){if(!this._sourcesContents){return null}if(t!=null){e=i.relative(t,e)}var n=i.toSetString(e);return Object.prototype.hasOwnProperty.call(this._sourcesContents,n)?this._sourcesContents[n]:null},this)};SourceMapGenerator.prototype.toJSON=function SourceMapGenerator_toJSON(){var e={version:this._version,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};if(this._file!=null){e.file=this._file}if(this._sourceRoot!=null){e.sourceRoot=this._sourceRoot}if(this._sourcesContents){e.sourcesContent=this._generateSourcesContent(e.sources,e.sourceRoot)}return e};SourceMapGenerator.prototype.toString=function SourceMapGenerator_toString(){return JSON.stringify(this.toJSON())};t.SourceMapGenerator=SourceMapGenerator},5091:function(e,t,n){e=n.nmd(e);(function(r){var i={function:true,object:true};function checkGlobal(e){return e&&e.Object===Object?e:null}var o=i[typeof t]&&t&&!t.nodeType?t:null;var a=i["object"]&&e&&!e.nodeType?e:null;var s=checkGlobal(o&&a&&typeof global==="object"&&global);var c=checkGlobal(i[typeof self]&&self);var u=checkGlobal(i[typeof window]&&window);var l=a&&a.exports===o?o:null;var f=checkGlobal(i[typeof this]&&this);var p=s||u!==(f&&f.window)&&u||c||f||Function("return this")();if(typeof define==="function"&&define.amd){define(["./rx.lite"],function(e,t){return r(p,t,e)})}else if(true&&e&&e.exports===o){e.exports=r(p,e.exports,n(4015))}else{p.Rx=r(p,{},p.Rx)}}).call(this,function(e,t,n,r){var i=n.Observable,o=i.prototype,a=n.BinaryDisposable,s=n.AnonymousObservable,c=n.internals.AbstractObserver,u=n.Disposable.empty,l=n.helpers,f=l.defaultComparer,p=l.identity,d=l.defaultSubComparer,h=l.isFunction,m=l.isPromise,v=l.isArrayLike,g=l.isIterable,y=n.internals.inherits,b=i.fromPromise,w=i.from,x=n.internals.bindCallback,k=n.EmptyError,j=n.ObservableBase,S=n.ArgumentOutOfRangeError;var E={e:{}};function tryCatcherGen(e){return function tryCatcher(){try{return e.apply(this,arguments)}catch(e){E.e=e;return E}}}var _=n.internals.tryCatch=function tryCatch(e){if(!h(e)){throw new TypeError("fn must be a function")}return tryCatcherGen(e)};function thrower(e){throw e}var C=function(e){y(ExtremaByObservable,e);function ExtremaByObservable(t,n,r){this.source=t;this._k=n;this._c=r;e.call(this)}ExtremaByObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new A(e,this._k,this._c))};return ExtremaByObservable}(j);var A=function(e){y(ExtremaByObserver,e);function ExtremaByObserver(t,n,r){this._o=t;this._k=n;this._c=r;this._v=null;this._hv=false;this._l=[];e.call(this)}ExtremaByObserver.prototype.next=function(e){var t=_(this._k)(e);if(t===E){return this._o.onError(t.e)}var n=0;if(!this._hv){this._hv=true;this._v=t}else{n=_(this._c)(t,this._v);if(n===E){return this._o.onError(n.e)}}if(n>0){this._v=t;this._l=[]}if(n>=0){this._l.push(e)}};ExtremaByObserver.prototype.error=function(e){this._o.onError(e)};ExtremaByObserver.prototype.completed=function(){this._o.onNext(this._l);this._o.onCompleted()};return ExtremaByObserver}(c);function firstOnly(e){if(e.length===0){throw new k}return e[0]}var O=function(e){y(ReduceObservable,e);function ReduceObservable(t,n,r,i){this.source=t;this.accumulator=n;this.hasSeed=r;this.seed=i;e.call(this)}ReduceObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new F(e,this))};return ReduceObservable}(j);var F=function(e){y(ReduceObserver,e);function ReduceObserver(t,n){this._o=t;this._p=n;this._fn=n.accumulator;this._hs=n.hasSeed;this._s=n.seed;this._ha=false;this._a=null;this._hv=false;this._i=0;e.call(this)}ReduceObserver.prototype.next=function(e){!this._hv&&(this._hv=true);if(this._ha){this._a=_(this._fn)(this._a,e,this._i,this._p)}else{this._a=this._hs?_(this._fn)(this._s,e,this._i,this._p):e;this._ha=true}if(this._a===E){return this._o.onError(this._a.e)}this._i++};ReduceObserver.prototype.error=function(e){this._o.onError(e)};ReduceObserver.prototype.completed=function(){this._hv&&this._o.onNext(this._a);!this._hv&&this._hs&&this._o.onNext(this._s);!this._hv&&!this._hs&&this._o.onError(new k);this._o.onCompleted()};return ReduceObserver}(c);o.reduce=function(){var e=false,t,n=arguments[0];if(arguments.length===2){e=true;t=arguments[1]}return new O(this,n,e,t)};var D=function(e){y(SomeObservable,e);function SomeObservable(t,n){this.source=t;this._fn=n;e.call(this)}SomeObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new T(e,this._fn,this.source))};return SomeObservable}(j);var T=function(e){y(SomeObserver,e);function SomeObserver(t,n,r){this._o=t;this._fn=n;this._s=r;this._i=0;e.call(this)}SomeObserver.prototype.next=function(e){var t=_(this._fn)(e,this._i++,this._s);if(t===E){return this._o.onError(t.e)}if(Boolean(t)){this._o.onNext(true);this._o.onCompleted()}};SomeObserver.prototype.error=function(e){this._o.onError(e)};SomeObserver.prototype.completed=function(){this._o.onNext(false);this._o.onCompleted()};return SomeObserver}(c);o.some=function(e,t){var n=x(e,t,3);return new D(this,n)};var I=function(e){y(IsEmptyObservable,e);function IsEmptyObservable(t){this.source=t;e.call(this)}IsEmptyObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new R(e))};return IsEmptyObservable}(j);var R=function(e){y(IsEmptyObserver,e);function IsEmptyObserver(t){this._o=t;e.call(this)}IsEmptyObserver.prototype.next=function(){this._o.onNext(false);this._o.onCompleted()};IsEmptyObserver.prototype.error=function(e){this._o.onError(e)};IsEmptyObserver.prototype.completed=function(){this._o.onNext(true);this._o.onCompleted()};return IsEmptyObserver}(c);o.isEmpty=function(){return new I(this)};var P=function(e){y(EveryObservable,e);function EveryObservable(t,n){this.source=t;this._fn=n;e.call(this)}EveryObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new B(e,this._fn,this.source))};return EveryObservable}(j);var B=function(e){y(EveryObserver,e);function EveryObserver(t,n,r){this._o=t;this._fn=n;this._s=r;this._i=0;e.call(this)}EveryObserver.prototype.next=function(e){var t=_(this._fn)(e,this._i++,this._s);if(t===E){return this._o.onError(t.e)}if(!Boolean(t)){this._o.onNext(false);this._o.onCompleted()}};EveryObserver.prototype.error=function(e){this._o.onError(e)};EveryObserver.prototype.completed=function(){this._o.onNext(true);this._o.onCompleted()};return EveryObserver}(c);o.every=function(e,t){var n=x(e,t,3);return new P(this,n)};var N=function(e){y(IncludesObservable,e);function IncludesObservable(t,n,r){var i=+r||0;Math.abs(i)===Infinity&&(i=0);this.source=t;this._elem=n;this._n=i;e.call(this)}IncludesObservable.prototype.subscribeCore=function(e){if(this._n<0){e.onNext(false);e.onCompleted();return u}return this.source.subscribe(new z(e,this._elem,this._n))};return IncludesObservable}(j);var z=function(e){y(IncludesObserver,e);function IncludesObserver(t,n,r){this._o=t;this._elem=n;this._n=r;this._i=0;e.call(this)}function comparer(e,t){return e===0&&t===0||(e===t||isNaN(e)&&isNaN(t))}IncludesObserver.prototype.next=function(e){if(this._i++>=this._n&&comparer(e,this._elem)){this._o.onNext(true);this._o.onCompleted()}};IncludesObserver.prototype.error=function(e){this._o.onError(e)};IncludesObserver.prototype.completed=function(){this._o.onNext(false);this._o.onCompleted()};return IncludesObserver}(c);o.includes=function(e,t){return new N(this,e,t)};var L=function(e){y(CountObservable,e);function CountObservable(t,n){this.source=t;this._fn=n;e.call(this)}CountObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new M(e,this._fn,this.source))};return CountObservable}(j);var M=function(e){y(CountObserver,e);function CountObserver(t,n,r){this._o=t;this._fn=n;this._s=r;this._i=0;this._c=0;e.call(this)}CountObserver.prototype.next=function(e){if(this._fn){var t=_(this._fn)(e,this._i++,this._s);if(t===E){return this._o.onError(t.e)}Boolean(t)&&this._c++}else{this._c++}};CountObserver.prototype.error=function(e){this._o.onError(e)};CountObserver.prototype.completed=function(){this._o.onNext(this._c);this._o.onCompleted()};return CountObserver}(c);o.count=function(e,t){var n=x(e,t,3);return new L(this,n)};var U=function(e){y(IndexOfObservable,e);function IndexOfObservable(t,n,r){this.source=t;this._e=n;this._n=r;e.call(this)}IndexOfObservable.prototype.subscribeCore=function(e){if(this._n<0){e.onNext(-1);e.onCompleted();return u}return this.source.subscribe(new q(e,this._e,this._n))};return IndexOfObservable}(j);var q=function(e){y(IndexOfObserver,e);function IndexOfObserver(t,n,r){this._o=t;this._e=n;this._n=r;this._i=0;e.call(this)}IndexOfObserver.prototype.next=function(e){if(this._i>=this._n&&e===this._e){this._o.onNext(this._i);this._o.onCompleted()}this._i++};IndexOfObserver.prototype.error=function(e){this._o.onError(e)};IndexOfObserver.prototype.completed=function(){this._o.onNext(-1);this._o.onCompleted()};return IndexOfObserver}(c);o.indexOf=function(e,t){var n=+t||0;Math.abs(n)===Infinity&&(n=0);return new U(this,e,n)};var H=function(e){y(SumObservable,e);function SumObservable(t,n){this.source=t;this._fn=n;e.call(this)}SumObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new G(e,this._fn,this.source))};return SumObservable}(j);var G=function(e){y(SumObserver,e);function SumObserver(t,n,r){this._o=t;this._fn=n;this._s=r;this._i=0;this._c=0;e.call(this)}SumObserver.prototype.next=function(e){if(this._fn){var t=_(this._fn)(e,this._i++,this._s);if(t===E){return this._o.onError(t.e)}this._c+=t}else{this._c+=e}};SumObserver.prototype.error=function(e){this._o.onError(e)};SumObserver.prototype.completed=function(){this._o.onNext(this._c);this._o.onCompleted()};return SumObserver}(c);o.sum=function(e,t){var n=x(e,t,3);return new H(this,n)};o.minBy=function(e,t){t||(t=d);return new C(this,e,function(e,n){return t(e,n)*-1})};o.min=function(e){return this.minBy(p,e).map(firstOnly)};o.maxBy=function(e,t){t||(t=d);return new C(this,e,t)};o.max=function(e){return this.maxBy(p,e).map(firstOnly)};var W=function(e){y(AverageObservable,e);function AverageObservable(t,n){this.source=t;this._fn=n;e.call(this)}AverageObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new V(e,this._fn,this.source))};return AverageObservable}(j);var V=function(e){y(AverageObserver,e);function AverageObserver(t,n,r){this._o=t;this._fn=n;this._s=r;this._c=0;this._t=0;e.call(this)}AverageObserver.prototype.next=function(e){if(this._fn){var t=_(this._fn)(e,this._c++,this._s);if(t===E){return this._o.onError(t.e)}this._t+=t}else{this._c++;this._t+=e}};AverageObserver.prototype.error=function(e){this._o.onError(e)};AverageObserver.prototype.completed=function(){if(this._c===0){return this._o.onError(new k)}this._o.onNext(this._t/this._c);this._o.onCompleted()};return AverageObserver}(c);o.average=function(e,t){var n=this,r;if(h(e)){r=x(e,t,3)}return new W(n,r)};o.sequenceEqual=function(e,t){var n=this;t||(t=f);return new s(function(r){var i=false,o=false,s=[],c=[];var u=n.subscribe(function(e){if(c.length>0){var n=c.shift();var i=_(t)(n,e);if(i===E){return r.onError(i.e)}if(!i){r.onNext(false);r.onCompleted()}}else if(o){r.onNext(false);r.onCompleted()}else{s.push(e)}},function(e){r.onError(e)},function(){i=true;if(s.length===0){if(c.length>0){r.onNext(false);r.onCompleted()}else if(o){r.onNext(true);r.onCompleted()}}});(v(e)||g(e))&&(e=w(e));m(e)&&(e=b(e));var l=e.subscribe(function(e){if(s.length>0){var n=s.shift();var o=_(t)(n,e);if(o===E){return r.onError(o.e)}if(!o){r.onNext(false);r.onCompleted()}}else if(i){r.onNext(false);r.onCompleted()}else{c.push(e)}},function(e){r.onError(e)},function(){o=true;if(c.length===0){if(s.length>0){r.onNext(false);r.onCompleted()}else if(i){r.onNext(true);r.onCompleted()}}});return new a(u,l)},n)};var J=function(e){y(ElementAtObservable,e);function ElementAtObservable(t,n,r){this.source=t;this._i=n;this._d=r;e.call(this)}ElementAtObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new Y(e,this._i,this._d))};return ElementAtObservable}(j);var Y=function(e){y(ElementAtObserver,e);function ElementAtObserver(t,n,r){this._o=t;this._i=n;this._d=r;e.call(this)}ElementAtObserver.prototype.next=function(e){if(this._i--===0){this._o.onNext(e);this._o.onCompleted()}};ElementAtObserver.prototype.error=function(e){this._o.onError(e)};ElementAtObserver.prototype.completed=function(){if(this._d===r){this._o.onError(new S)}else{this._o.onNext(this._d);this._o.onCompleted()}};return ElementAtObserver}(c);o.elementAt=function(e,t){if(e<0){throw new S}return new J(this,e,t)};var Z=function(e){y(SingleObserver,e);function SingleObserver(t,n,r){this._o=t;this._obj=n;this._s=r;this._i=0;this._hv=false;this._v=null;e.call(this)}SingleObserver.prototype.next=function(e){var t=false;if(this._obj.predicate){var n=_(this._obj.predicate)(e,this._i++,this._s);if(n===E){return this._o.onError(n.e)}Boolean(n)&&(t=true)}else if(!this._obj.predicate){t=true}if(t){if(this._hv){return this._o.onError(new Error("Sequence contains more than one matching element"))}this._hv=true;this._v=e}};SingleObserver.prototype.error=function(e){this._o.onError(e)};SingleObserver.prototype.completed=function(){if(this._hv){this._o.onNext(this._v);this._o.onCompleted()}else if(this._obj.defaultValue===r){this._o.onError(new k)}else{this._o.onNext(this._obj.defaultValue);this._o.onCompleted()}};return SingleObserver}(c);o.single=function(e,t){var n={},r=this;if(typeof arguments[0]==="object"){n=arguments[0]}else{n={predicate:arguments[0],thisArg:arguments[1],defaultValue:arguments[2]}}if(h(n.predicate)){var i=n.predicate;n.predicate=x(i,n.thisArg,3)}return new s(function(e){return r.subscribe(new Z(e,n,r))},r)};var X=function(e){y(FirstObservable,e);function FirstObservable(t,n){this.source=t;this._obj=n;e.call(this)}FirstObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new Q(e,this._obj,this.source))};return FirstObservable}(j);var Q=function(e){y(FirstObserver,e);function FirstObserver(t,n,r){this._o=t;this._obj=n;this._s=r;this._i=0;e.call(this)}FirstObserver.prototype.next=function(e){if(this._obj.predicate){var t=_(this._obj.predicate)(e,this._i++,this._s);if(t===E){return this._o.onError(t.e)}if(Boolean(t)){this._o.onNext(e);this._o.onCompleted()}}else if(!this._obj.predicate){this._o.onNext(e);this._o.onCompleted()}};FirstObserver.prototype.error=function(e){this._o.onError(e)};FirstObserver.prototype.completed=function(){if(this._obj.defaultValue===r){this._o.onError(new k)}else{this._o.onNext(this._obj.defaultValue);this._o.onCompleted()}};return FirstObserver}(c);o.first=function(){var e={},t=this;if(typeof arguments[0]==="object"){e=arguments[0]}else{e={predicate:arguments[0],thisArg:arguments[1],defaultValue:arguments[2]}}if(h(e.predicate)){var n=e.predicate;e.predicate=x(n,e.thisArg,3)}return new X(this,e)};var K=function(e){y(LastObservable,e);function LastObservable(t,n){this.source=t;this._obj=n;e.call(this)}LastObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new $(e,this._obj,this.source))};return LastObservable}(j);var $=function(e){y(LastObserver,e);function LastObserver(t,n,r){this._o=t;this._obj=n;this._s=r;this._i=0;this._hv=false;this._v=null;e.call(this)}LastObserver.prototype.next=function(e){var t=false;if(this._obj.predicate){var n=_(this._obj.predicate)(e,this._i++,this._s);if(n===E){return this._o.onError(n.e)}Boolean(n)&&(t=true)}else if(!this._obj.predicate){t=true}if(t){this._hv=true;this._v=e}};LastObserver.prototype.error=function(e){this._o.onError(e)};LastObserver.prototype.completed=function(){if(this._hv){this._o.onNext(this._v);this._o.onCompleted()}else if(this._obj.defaultValue===r){this._o.onError(new k)}else{this._o.onNext(this._obj.defaultValue);this._o.onCompleted()}};return LastObserver}(c);o.last=function(){var e={},t=this;if(typeof arguments[0]==="object"){e=arguments[0]}else{e={predicate:arguments[0],thisArg:arguments[1],defaultValue:arguments[2]}}if(h(e.predicate)){var n=e.predicate;e.predicate=x(n,e.thisArg,3)}return new K(this,e)};var ee=function(e){y(FindValueObserver,e);function FindValueObserver(t,n,r,i){this._o=t;this._s=n;this._cb=r;this._y=i;this._i=0;e.call(this)}FindValueObserver.prototype.next=function(e){var t=_(this._cb)(e,this._i,this._s);if(t===E){return this._o.onError(t.e)}if(t){this._o.onNext(this._y?this._i:e);this._o.onCompleted()}else{this._i++}};FindValueObserver.prototype.error=function(e){this._o.onError(e)};FindValueObserver.prototype.completed=function(){this._y&&this._o.onNext(-1);this._o.onCompleted()};return FindValueObserver}(c);function findValue(e,t,n,r){var i=x(t,n,3);return new s(function(t){return e.subscribe(new ee(t,e,i,r))},e)}o.find=function(e,t){return findValue(this,e,t,false)};o.findIndex=function(e,t){return findValue(this,e,t,true)};var te=function(e){y(ToSetObservable,e);function ToSetObservable(t){this.source=t;e.call(this)}ToSetObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new ne(e))};return ToSetObservable}(j);var ne=function(t){y(ToSetObserver,t);function ToSetObserver(n){this._o=n;this._s=new e.Set;t.call(this)}ToSetObserver.prototype.next=function(e){this._s.add(e)};ToSetObserver.prototype.error=function(e){this._o.onError(e)};ToSetObserver.prototype.completed=function(){this._o.onNext(this._s);this._o.onCompleted()};return ToSetObserver}(c);o.toSet=function(){if(typeof e.Set==="undefined"){throw new TypeError}return new te(this)};var re=function(e){y(ToMapObservable,e);function ToMapObservable(t,n,r){this.source=t;this._k=n;this._e=r;e.call(this)}ToMapObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new ie(e,this._k,this._e))};return ToMapObservable}(j);var ie=function(t){y(ToMapObserver,t);function ToMapObserver(n,r,i){this._o=n;this._k=r;this._e=i;this._m=new e.Map;t.call(this)}ToMapObserver.prototype.next=function(e){var t=_(this._k)(e);if(t===E){return this._o.onError(t.e)}var n=e;if(this._e){n=_(this._e)(e);if(n===E){return this._o.onError(n.e)}}this._m.set(t,n)};ToMapObserver.prototype.error=function(e){this._o.onError(e)};ToMapObserver.prototype.completed=function(){this._o.onNext(this._m);this._o.onCompleted()};return ToMapObserver}(c);o.toMap=function(t,n){if(typeof e.Map==="undefined"){throw new TypeError}return new re(this,t,n)};var oe=function(e){y(SliceObservable,e);function SliceObservable(t,n,r){this.source=t;this._b=n;this._e=r;e.call(this)}SliceObservable.prototype.subscribeCore=function(e){return this.source.subscribe(new ae(e,this._b,this._e))};return SliceObservable}(j);var ae=function(e){y(SliceObserver,e);function SliceObserver(t,n,r){this._o=t;this._b=n;this._e=r;this._i=0;e.call(this)}SliceObserver.prototype.next=function(e){if(this._i>=this._b){if(this._e===this._i){this._o.onCompleted()}else{this._o.onNext(e)}}this._i++};SliceObserver.prototype.error=function(e){this._o.onError(e)};SliceObserver.prototype.completed=function(){this._o.onCompleted()};return SliceObserver}(c);o.slice=function(e,t){var r=e||0;if(r<0){throw new n.ArgumentOutOfRangeError}if(typeof t==="number"&&t<r){throw new n.ArgumentOutOfRangeError}return new oe(this,r,t)};var se=function(e){y(LastIndexOfObservable,e);function LastIndexOfObservable(t,n,r){this.source=t;this._e=n;this._n=r;e.call(this)}LastIndexOfObservable.prototype.subscribeCore=function(e){if(this._n<0){e.onNext(-1);e.onCompleted();return u}return this.source.subscribe(new ce(e,this._e,this._n))};return LastIndexOfObservable}(j);var ce=function(e){y(LastIndexOfObserver,e);function LastIndexOfObserver(t,n,r){this._o=t;this._e=n;this._n=r;this._v=0;this._hv=false;this._i=0;e.call(this)}LastIndexOfObserver.prototype.next=function(e){if(this._i>=this._n&&e===this._e){this._hv=true;this._v=this._i}this._i++};LastIndexOfObserver.prototype.error=function(e){this._o.onError(e)};LastIndexOfObserver.prototype.completed=function(){if(this._hv){this._o.onNext(this._v)}else{this._o.onNext(-1)}this._o.onCompleted()};return LastIndexOfObserver}(c);o.lastIndexOf=function(e,t){var n=+t||0;Math.abs(n)===Infinity&&(n=0);return new se(this,e,n)};return n})},5092:function(e){(function(){var t,n=function(e,t){for(var n in t){if(r.call(t,n))e[n]=t[n]}function ctor(){this.constructor=e}ctor.prototype=t.prototype;e.prototype=new ctor;e.__super__=t.prototype;return e},r={}.hasOwnProperty;t=function(e){n(RemoveFileError,e);RemoveFileError.prototype.message="Failed to cleanup temporary file";function RemoveFileError(e){this.original_error=e}return RemoveFileError}(Error);e.exports=t}).call(this)},5094:function(e,t,n){"use strict";e.exports=Yallist;Yallist.Node=Node;Yallist.create=Yallist;function Yallist(e){var t=this;if(!(t instanceof Yallist)){t=new Yallist}t.tail=null;t.head=null;t.length=0;if(e&&typeof e.forEach==="function"){e.forEach(function(e){t.push(e)})}else if(arguments.length>0){for(var n=0,r=arguments.length;n<r;n++){t.push(arguments[n])}}return t}Yallist.prototype.removeNode=function(e){if(e.list!==this){throw new Error("removing node which does not belong to this list")}var t=e.next;var n=e.prev;if(t){t.prev=n}if(n){n.next=t}if(e===this.head){this.head=t}if(e===this.tail){this.tail=n}e.list.length--;e.next=null;e.prev=null;e.list=null};Yallist.prototype.unshiftNode=function(e){if(e===this.head){return}if(e.list){e.list.removeNode(e)}var t=this.head;e.list=this;e.next=t;if(t){t.prev=e}this.head=e;if(!this.tail){this.tail=e}this.length++};Yallist.prototype.pushNode=function(e){if(e===this.tail){return}if(e.list){e.list.removeNode(e)}var t=this.tail;e.list=this;e.prev=t;if(t){t.next=e}this.tail=e;if(!this.head){this.head=e}this.length++};Yallist.prototype.push=function(){for(var e=0,t=arguments.length;e<t;e++){push(this,arguments[e])}return this.length};Yallist.prototype.unshift=function(){for(var e=0,t=arguments.length;e<t;e++){unshift(this,arguments[e])}return this.length};Yallist.prototype.pop=function(){if(!this.tail){return undefined}var e=this.tail.value;this.tail=this.tail.prev;if(this.tail){this.tail.next=null}else{this.head=null}this.length--;return e};Yallist.prototype.shift=function(){if(!this.head){return undefined}var e=this.head.value;this.head=this.head.next;if(this.head){this.head.prev=null}else{this.tail=null}this.length--;return e};Yallist.prototype.forEach=function(e,t){t=t||this;for(var n=this.head,r=0;n!==null;r++){e.call(t,n.value,r,this);n=n.next}};Yallist.prototype.forEachReverse=function(e,t){t=t||this;for(var n=this.tail,r=this.length-1;n!==null;r--){e.call(t,n.value,r,this);n=n.prev}};Yallist.prototype.get=function(e){for(var t=0,n=this.head;n!==null&&t<e;t++){n=n.next}if(t===e&&n!==null){return n.value}};Yallist.prototype.getReverse=function(e){for(var t=0,n=this.tail;n!==null&&t<e;t++){n=n.prev}if(t===e&&n!==null){return n.value}};Yallist.prototype.map=function(e,t){t=t||this;var n=new Yallist;for(var r=this.head;r!==null;){n.push(e.call(t,r.value,this));r=r.next}return n};Yallist.prototype.mapReverse=function(e,t){t=t||this;var n=new Yallist;for(var r=this.tail;r!==null;){n.push(e.call(t,r.value,this));r=r.prev}return n};Yallist.prototype.reduce=function(e,t){var n;var r=this.head;if(arguments.length>1){n=t}else if(this.head){r=this.head.next;n=this.head.value}else{throw new TypeError("Reduce of empty list with no initial value")}for(var i=0;r!==null;i++){n=e(n,r.value,i);r=r.next}return n};Yallist.prototype.reduceReverse=function(e,t){var n;var r=this.tail;if(arguments.length>1){n=t}else if(this.tail){r=this.tail.prev;n=this.tail.value}else{throw new TypeError("Reduce of empty list with no initial value")}for(var i=this.length-1;r!==null;i--){n=e(n,r.value,i);r=r.prev}return n};Yallist.prototype.toArray=function(){var e=new Array(this.length);for(var t=0,n=this.head;n!==null;t++){e[t]=n.value;n=n.next}return e};Yallist.prototype.toArrayReverse=function(){var e=new Array(this.length);for(var t=0,n=this.tail;n!==null;t++){e[t]=n.value;n=n.prev}return e};Yallist.prototype.slice=function(e,t){t=t||this.length;if(t<0){t+=this.length}e=e||0;if(e<0){e+=this.length}var n=new Yallist;if(t<e||t<0){return n}if(e<0){e=0}if(t>this.length){t=this.length}for(var r=0,i=this.head;i!==null&&r<e;r++){i=i.next}for(;i!==null&&r<t;r++,i=i.next){n.push(i.value)}return n};Yallist.prototype.sliceReverse=function(e,t){t=t||this.length;if(t<0){t+=this.length}e=e||0;if(e<0){e+=this.length}var n=new Yallist;if(t<e||t<0){return n}if(e<0){e=0}if(t>this.length){t=this.length}for(var r=this.length,i=this.tail;i!==null&&r>t;r--){i=i.prev}for(;i!==null&&r>e;r--,i=i.prev){n.push(i.value)}return n};Yallist.prototype.reverse=function(){var e=this.head;var t=this.tail;for(var n=e;n!==null;n=n.prev){var r=n.prev;n.prev=n.next;n.next=r}this.head=t;this.tail=e;return this};function push(e,t){e.tail=new Node(t,e.tail,null,e);if(!e.head){e.head=e.tail}e.length++}function unshift(e,t){e.head=new Node(t,null,e.head,e);if(!e.tail){e.tail=e.head}e.length++}function Node(e,t,n,r){if(!(this instanceof Node)){return new Node(e,t,n,r)}this.list=r;this.value=e;if(t){t.next=this;this.prev=t}else{this.prev=null}if(n){n.prev=this;this.next=n}else{this.next=null}}try{n(1824)(Yallist)}catch(e){}},5095:function(e,t,n){var r=n(774);var i=r.URL;var o=n(4219);var a=n(2307);var s=n(3930);var c=n(6886).Writable;var u=n(3035)("follow-redirects");var l={GET:true,HEAD:true,OPTIONS:true,TRACE:true};var f=Object.create(null);["abort","aborted","error","socket","timeout"].forEach(function(e){f[e]=function(t){this._redirectable.emit(e,t)}});function RedirectableRequest(e,t){c.call(this);e.headers=e.headers||{};this._options=e;this._ended=false;this._ending=false;this._redirectCount=0;this._redirects=[];this._requestBodyLength=0;this._requestBodyBuffers=[];if(e.host){if(!e.hostname){e.hostname=e.host}delete e.host}if(t){this.on("response",t)}var n=this;this._onNativeResponse=function(e){n._processResponse(e)};if(!e.pathname&&e.path){var r=e.path.indexOf("?");if(r<0){e.pathname=e.path}else{e.pathname=e.path.substring(0,r);e.search=e.path.substring(r)}}this._performRequest()}RedirectableRequest.prototype=Object.create(c.prototype);RedirectableRequest.prototype.write=function(e,t,n){if(this._ending){throw new Error("write after end")}if(!(typeof e==="string"||typeof e==="object"&&"length"in e)){throw new Error("data should be a string, Buffer or Uint8Array")}if(typeof t==="function"){n=t;t=null}if(e.length===0){if(n){n()}return}if(this._requestBodyLength+e.length<=this._options.maxBodyLength){this._requestBodyLength+=e.length;this._requestBodyBuffers.push({data:e,encoding:t});this._currentRequest.write(e,t,n)}else{this.emit("error",new Error("Request body larger than maxBodyLength limit"));this.abort()}};RedirectableRequest.prototype.end=function(e,t,n){if(typeof e==="function"){n=e;e=t=null}else if(typeof t==="function"){n=t;t=null}if(!e){this._ended=this._ending=true;this._currentRequest.end(null,null,n)}else{var r=this;var i=this._currentRequest;this.write(e,t,function(){r._ended=true;i.end(null,null,n)});this._ending=true}};RedirectableRequest.prototype.setHeader=function(e,t){this._options.headers[e]=t;this._currentRequest.setHeader(e,t)};RedirectableRequest.prototype.removeHeader=function(e){delete this._options.headers[e];this._currentRequest.removeHeader(e)};RedirectableRequest.prototype.setTimeout=function(e,t){if(t){this.once("timeout",t)}if(this.socket){startTimer(this,e)}else{var n=this;this._currentRequest.once("socket",function(){startTimer(n,e)})}this.once("response",clearTimer);this.once("error",clearTimer);return this};function startTimer(e,t){clearTimeout(e._timeout);e._timeout=setTimeout(function(){e.emit("timeout")},t)}function clearTimer(){clearTimeout(this._timeout)}["abort","flushHeaders","getHeader","setNoDelay","setSocketKeepAlive"].forEach(function(e){RedirectableRequest.prototype[e]=function(t,n){return this._currentRequest[e](t,n)}});["aborted","connection","socket"].forEach(function(e){Object.defineProperty(RedirectableRequest.prototype,e,{get:function(){return this._currentRequest[e]}})});RedirectableRequest.prototype._performRequest=function(){var e=this._options.protocol;var t=this._options.nativeProtocols[e];if(!t){this.emit("error",new Error("Unsupported protocol "+e));return}if(this._options.agents){var n=e.substr(0,e.length-1);this._options.agent=this._options.agents[n]}var i=this._currentRequest=t.request(this._options,this._onNativeResponse);this._currentUrl=r.format(this._options);i._redirectable=this;for(var o in f){if(o){i.on(o,f[o])}}if(this._isRedirect){var a=0;var s=this;var c=this._requestBodyBuffers;(function writeNext(e){if(i===s._currentRequest){if(e){s.emit("error",e)}else if(a<c.length){var t=c[a++];if(!i.finished){i.write(t.data,t.encoding,writeNext)}}else if(s._ended){i.end()}}})()}};RedirectableRequest.prototype._processResponse=function(e){if(this._options.trackRedirects){this._redirects.push({url:this._currentUrl,headers:e.headers,statusCode:e.statusCode})}var t=e.headers.location;if(t&&this._options.followRedirects!==false&&e.statusCode>=300&&e.statusCode<400){this._currentRequest.removeAllListeners();this._currentRequest.on("error",noop);this._currentRequest.abort();if(++this._redirectCount>this._options.maxRedirects){this.emit("error",new Error("Max redirects exceeded."));return}var n;var i=this._options.headers;if(e.statusCode!==307&&!(this._options.method in l)){this._options.method="GET";this._requestBodyBuffers=[];for(n in i){if(/^content-/i.test(n)){delete i[n]}}}if(!this._isRedirect){for(n in i){if(/^host$/i.test(n)){delete i[n]}}}var o=r.resolve(this._currentUrl,t);u("redirecting to",o);Object.assign(this._options,r.parse(o));this._isRedirect=true;this._performRequest();e.destroy()}else{e.responseUrl=this._currentUrl;e.redirects=this._redirects;this.emit("response",e);this._requestBodyBuffers=[]}};function wrap(e){var t={maxRedirects:21,maxBodyLength:10*1024*1024};var n={};Object.keys(e).forEach(function(o){var a=o+":";var c=n[a]=e[o];var l=t[o]=Object.create(c);l.request=function(e,o,c){if(typeof e==="string"){var l=e;try{e=urlToOptions(new i(l))}catch(t){e=r.parse(l)}}else if(i&&e instanceof i){e=urlToOptions(e)}else{c=o;o=e;e={protocol:a}}if(typeof o==="function"){c=o;o=null}o=Object.assign({maxRedirects:t.maxRedirects,maxBodyLength:t.maxBodyLength},e,o);o.nativeProtocols=n;s.equal(o.protocol,a,"protocol mismatch");u("options",o);return new RedirectableRequest(o,c)};l.get=function(e,t,n){var r=l.request(e,t,n);r.end();return r}});return t}function noop(){}function urlToOptions(e){var t={protocol:e.protocol,hostname:e.hostname.startsWith("[")?e.hostname.slice(1,-1):e.hostname,hash:e.hash,search:e.search,pathname:e.pathname,path:e.pathname+e.search,href:e.href};if(e.port!==""){t.port=Number(e.port)}return t}e.exports=wrap({http:o,https:a});e.exports.wrap=wrap},5098:function(e,t,n){var r=n(6521);e.exports=function(){this.name=function(){return"UTF-8"};this.match=function(e){var t=false,n=0,i=0,o=e.fRawInput,a=0,s;if(e.fRawLength>=3&&(o[0]&255)==239&&(o[1]&255)==187&&(o[2]&255)==191){t=true}for(var c=0;c<e.fRawLength;c++){var u=o[c];if((u&128)==0)continue;if((u&224)==192){a=1}else if((u&240)==224){a=2}else if((u&248)==240){a=3}else{i++;if(i>5)break;a=0}for(;;){c++;if(c>=e.fRawLength)break;if((o[c]&192)!=128){i++;break}if(--a==0){n++;break}}}s=0;if(t&&i==0)s=100;else if(t&&n>i*10)s=80;else if(n>3&&i==0)s=100;else if(n>0&&i==0)s=80;else if(n==0&&i==0)s=10;else if(n>i*10)s=25;else return null;return new r(e,this,s)}}},5119:function(e,t,n){"use strict";var r=n(9563);var i=n(6116);var o=n(2415);e.exports=function isDescriptor(e,t){if(r(e)!=="object"){return false}if("get"in e){return i(e,t)}return o(e,t)}},5125:function(e){"use strict";class StreamError extends Error{constructor(e,t){const n=e&&e.message||e;super(n);this.source=t;this.originalError=e}}const t=["error","end","close","finish"];function cleanupEventHandlers(e,n){t.map(t=>e.removeListener(t,n))}function streamPromise(e,n){if(e===process.stdout||e===process.stderr){return Promise.resolve(e)}const r=e.readable||typeof e._read==="function";function on(t){function executor(i,o){const a=t==="error"?t=>o(new StreamError(t,e)):()=>{if(r&&t==="finish"&&!n.error){return}cleanupEventHandlers(e,a);i(e)};e.on(t,a)}return new Promise(executor)}return Promise.race(t.map(on))}function promisePipe(e){let t=arguments.length;const n=[];while(t--)n[t]=arguments[t];const r=n.reduce((e,t)=>e.concat(t),[]);r.reduce((e,t)=>e.pipe(t));return allStreamsDone(n)}function allStreamsDone(e){let t={};let n;return Promise.all(e.map(r=>streamPromise(r,t).catch(r=>{if(!n){n=r;t.error=true;e.forEach(e=>{if(e!==process.stdout&&e!==process.stderr){e.destroy()}})}}))).then(e=>{if(n){throw n}return e})}e.exports=Object.assign(promisePipe,{__esModule:true,default:promisePipe,justPromise:e=>allStreamsDone(e),StreamError:StreamError})},5131:function(e,t,n){"use strict";e.exports=function(e,t){var r={};var i=n(4730);var o=n(9370);var a=i.withAppended;var s=i.maybeWrapAsError;var c=i.canEvaluate;var u=n(2659).TypeError;var l="Async";var f={__isPromisified__:true};var p=["arity","length","name","arguments","caller","callee","prototype","__isPromisified__"];var d=new RegExp("^(?:"+p.join("|")+")$");var h=function(e){return i.isIdentifier(e)&&e.charAt(0)!=="_"&&e!=="constructor"};function propsFilter(e){return!d.test(e)}function isPromisified(e){try{return e.__isPromisified__===true}catch(e){return false}}function hasPromisified(e,t,n){var r=i.getDataPropertyOrDefault(e,t+n,f);return r?isPromisified(r):false}function checkValid(e,t,n){for(var r=0;r<e.length;r+=2){var i=e[r];if(n.test(i)){var o=i.replace(n,"");for(var a=0;a<e.length;a+=2){if(e[a]===o){throw new u("Cannot promisify an API that has normal methods with '%s'-suffix\n\n See http://goo.gl/MqrFmX\n".replace("%s",t))}}}}}function promisifiableMethods(e,t,n,r){var o=i.inheritedDataKeys(e);var a=[];for(var s=0;s<o.length;++s){var c=o[s];var u=e[c];var l=r===h?true:h(c,u,e);if(typeof u==="function"&&!isPromisified(u)&&!hasPromisified(e,c,t)&&r(c,u,e,l)){a.push(c,u)}}checkValid(a,t,n);return a}var m=function(e){return e.replace(/([$])/,"\\$")};var v;if(true){var g=function(e){var t=[e];var n=Math.max(0,e-1-3);for(var r=e-1;r>=n;--r){t.push(r)}for(var r=e+1;r<=3;++r){t.push(r)}return t};var y=function(e){return i.filledRange(e,"_arg","")};var b=function(e){return i.filledRange(Math.max(e,3),"_arg","")};var w=function(e){if(typeof e.length==="number"){return Math.max(Math.min(e.length,1023+1),0)}return 0};v=function(n,c,u,l,f,p){var d=Math.max(0,w(l)-1);var h=g(d);var m=typeof n==="string"||c===r;function generateCallForArgumentCount(e){var t=y(e).join(", ");var n=e>0?", ":"";var r;if(m){r="ret = callback.call(this, {{args}}, nodeback); break;\n"}else{r=c===undefined?"ret = callback({{args}}, nodeback); break;\n":"ret = callback.call(receiver, {{args}}, nodeback); break;\n"}return r.replace("{{args}}",t).replace(", ",n)}function generateArgumentSwitchCase(){var e="";for(var t=0;t<h.length;++t){e+="case "+h[t]+":"+generateCallForArgumentCount(h[t])}e+=" \n default: \n var args = new Array(len + 1); \n var i = 0; \n for (var i = 0; i < len; ++i) { \n args[i] = arguments[i]; \n } \n args[i] = nodeback; \n [CodeForCall] \n break; \n ".replace("[CodeForCall]",m?"ret = callback.apply(this, args);\n":"ret = callback.apply(receiver, args);\n");return e}var v=typeof n==="string"?"this != null ? this['"+n+"'] : fn":"fn";var x="'use strict'; \n var ret = function (Parameters) { \n 'use strict'; \n var len = arguments.length; \n var promise = new Promise(INTERNAL); \n promise._captureStackTrace(); \n var nodeback = nodebackForPromise(promise, "+p+"); \n var ret; \n var callback = tryCatch([GetFunctionCode]); \n switch(len) { \n [CodeForSwitchCase] \n } \n if (ret === errorObj) { \n promise._rejectCallback(maybeWrapAsError(ret.e), true, true);\n } \n if (!promise._isFateSealed()) promise._setAsyncGuaranteed(); \n return promise; \n }; \n notEnumerableProp(ret, '__isPromisified__', true); \n return ret; \n ".replace("[CodeForSwitchCase]",generateArgumentSwitchCase()).replace("[GetFunctionCode]",v);x=x.replace("Parameters",b(d));return new Function("Promise","fn","receiver","withAppended","maybeWrapAsError","nodebackForPromise","tryCatch","errorObj","notEnumerableProp","INTERNAL",x)(e,l,c,a,s,o,i.tryCatch,i.errorObj,i.notEnumerableProp,t)}}function makeNodePromisifiedClosure(n,c,u,l,f,p){var d=function(){return this}();var h=n;if(typeof h==="string"){n=l}function promisified(){var i=c;if(c===r)i=this;var u=new e(t);u._captureStackTrace();var l=typeof h==="string"&&this!==d?this[h]:n;var f=o(u,p);try{l.apply(i,a(arguments,f))}catch(e){u._rejectCallback(s(e),true,true)}if(!u._isFateSealed())u._setAsyncGuaranteed();return u}i.notEnumerableProp(promisified,"__isPromisified__",true);return promisified}var x=c?v:makeNodePromisifiedClosure;function promisifyAll(e,t,n,o,a){var s=new RegExp(m(t)+"$");var c=promisifiableMethods(e,t,s,n);for(var u=0,l=c.length;u<l;u+=2){var f=c[u];var p=c[u+1];var d=f+t;if(o===x){e[d]=x(f,r,f,p,t,a)}else{var h=o(p,function(){return x(f,r,f,p,t,a)});i.notEnumerableProp(h,"__isPromisified__",true);e[d]=h}}i.toFastProperties(e);return e}function promisify(e,t,n){return x(e,t,undefined,e,null,n)}e.promisify=function(e,t){if(typeof e!=="function"){throw new u("expecting a function but got "+i.classString(e))}if(isPromisified(e)){return e}t=Object(t);var n=t.context===undefined?r:t.context;var o=!!t.multiArgs;var a=promisify(e,n,o);i.copyDescriptors(e,a,propsFilter);return a};e.promisifyAll=function(e,t){if(typeof e!=="function"&&typeof e!=="object"){throw new u("the target of promisifyAll must be an object or a function\n\n See http://goo.gl/MqrFmX\n")}t=Object(t);var n=!!t.multiArgs;var r=t.suffix;if(typeof r!=="string")r=l;var o=t.filter;if(typeof o!=="function")o=h;var a=t.promisifier;if(typeof a!=="function")a=x;if(!i.isIdentifier(r)){throw new RangeError("suffix must be a valid identifier\n\n See http://goo.gl/MqrFmX\n")}var s=i.inheritedDataKeys(e);for(var c=0;c<s.length;++c){var f=e[s[c]];if(s[c]!=="constructor"&&i.isClass(f)){promisifyAll(f.prototype,r,o,a,n);promisifyAll(f,r,o,a,n)}}return promisifyAll(e,r,o,a,n)}}},5133:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(635);var o=n(4580);var a=n(1390);var s=n(662);var c=n(40);var u=function(){function BaseTransport(e){this.options=e;this._buffer=new a.PromiseBuffer(30);this._api=new i.API(e.dsn)}BaseTransport.prototype._getRequestOptions=function(){var e=r.__assign({},this._api.getRequestHeaders(c.SDK_NAME,c.SDK_VERSION),this.options.headers);var t=this._api.getDsn();var n={agent:this.client,headers:e,hostname:t.host,method:"POST",path:this._api.getStoreEndpointPath(),port:t.port,protocol:t.protocol+":"};if(this.options.caCerts){n.ca=s.readFileSync(this.options.caCerts)}return n};BaseTransport.prototype._sendWithModule=function(e,t){return r.__awaiter(this,void 0,void 0,function(){var n=this;return r.__generator(this,function(r){if(!this._buffer.isReady()){return[2,Promise.reject(new a.SentryError("Not adding Promise due to buffer limit reached."))]}return[2,this._buffer.add(new Promise(function(r,i){var s=e.request(n._getRequestOptions(),function(e){e.setEncoding("utf8");if(e.statusCode&&e.statusCode>=200&&e.statusCode<300){r({status:o.Status.fromHttpCode(e.statusCode)})}else{if(e.headers&&e.headers["x-sentry-error"]){var t=e.headers["x-sentry-error"];i(new a.SentryError("HTTP Error ("+e.statusCode+"): "+t))}else{i(new a.SentryError("HTTP Error ("+e.statusCode+")"))}}e.on("data",function(){});e.on("end",function(){})});s.on("error",i);s.end(JSON.stringify(t))}))]})})};BaseTransport.prototype.sendEvent=function(e){throw new a.SentryError("Transport Class has to implement `sendEvent` method.")};BaseTransport.prototype.close=function(e){return this._buffer.drain(e)};return BaseTransport}();t.BaseTransport=u},5152:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);var o=n(6904);var a=n.n(o);const s=e=>`${Object(r["cyan"])(a.a.tick)} ${e}`;t["default"]=s},5160:function(e){e.exports={$schema:"http://json-schema.org/draft-07/schema#",$id:"https://raw.githubusercontent.com/epoberezkin/ajv/master/lib/refs/data.json#",description:"Meta-schema for $data reference (JSON Schema extension proposal)",type:"object",required:["$data"],properties:{$data:{type:"string",anyOf:[{format:"relative-json-pointer"},{format:"json-pointer"}]}},additionalProperties:false}},5165:function(e,t,n){"use strict";var r=n(7409);e.exports=r.extend({path:"refunds",includeBasic:["create","list","retrieve","update"]})},5173:function(e){var t;var n;var r;var i;var o;var a;var s;var c;var u;var l;var f;var p;var d;var h;var m;var v;var g;var y;var b;var w;(function(t){var n=typeof global==="object"?global:typeof self==="object"?self:typeof this==="object"?this:{};if(typeof define==="function"&&define.amd){define("tslib",["exports"],function(e){t(createExporter(n,createExporter(e)))})}else if(true&&typeof e.exports==="object"){t(createExporter(n,createExporter(e.exports)))}else{t(createExporter(n))}function createExporter(e,t){if(e!==n){if(typeof Object.create==="function"){Object.defineProperty(e,"__esModule",{value:true})}else{e.__esModule=true}}return function(n,r){return e[n]=t?t(n,r):r}}})(function(e){var x=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)if(t.hasOwnProperty(n))e[n]=t[n]};t=function(e,t){x(e,t);function __(){this.constructor=e}e.prototype=t===null?Object.create(t):(__.prototype=t.prototype,new __)};n=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++){t=arguments[n];for(var i in t)if(Object.prototype.hasOwnProperty.call(t,i))e[i]=t[i]}return e};r=function(e,t){var n={};for(var r in e)if(Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0)n[r]=e[r];if(e!=null&&typeof Object.getOwnPropertySymbols==="function")for(var i=0,r=Object.getOwnPropertySymbols(e);i<r.length;i++){if(t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i]))n[r[i]]=e[r[i]]}return n};i=function(e,t,n,r){var i=arguments.length,o=i<3?t:r===null?r=Object.getOwnPropertyDescriptor(t,n):r,a;if(typeof Reflect==="object"&&typeof Reflect.decorate==="function")o=Reflect.decorate(e,t,n,r);else for(var s=e.length-1;s>=0;s--)if(a=e[s])o=(i<3?a(o):i>3?a(t,n,o):a(t,n))||o;return i>3&&o&&Object.defineProperty(t,n,o),o};o=function(e,t){return function(n,r){t(n,r,e)}};a=function(e,t){if(typeof Reflect==="object"&&typeof Reflect.metadata==="function")return Reflect.metadata(e,t)};s=function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};c=function(e,t){var n={label:0,sent:function(){if(o[0]&1)throw o[1];return o[1]},trys:[],ops:[]},r,i,o,a;return a={next:verb(0),throw:verb(1),return:verb(2)},typeof Symbol==="function"&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError("Generator is already executing.");while(n)try{if(r=1,i&&(o=a[0]&2?i["return"]:a[0]?i["throw"]||((o=i["return"])&&o.call(i),0):i.next)&&!(o=o.call(i,a[1])).done)return o;if(i=0,o)a=[a[0]&2,o.value];switch(a[0]){case 0:case 1:o=a;break;case 4:n.label++;return{value:a[1],done:false};case 5:n.label++;i=a[1];a=[0];continue;case 7:a=n.ops.pop();n.trys.pop();continue;default:if(!(o=n.trys,o=o.length>0&&o[o.length-1])&&(a[0]===6||a[0]===2)){n=0;continue}if(a[0]===3&&(!o||a[1]>o[0]&&a[1]<o[3])){n.label=a[1];break}if(a[0]===6&&n.label<o[1]){n.label=o[1];o=a;break}if(o&&n.label<o[2]){n.label=o[2];n.ops.push(a);break}if(o[2])n.ops.pop();n.trys.pop();continue}a=t.call(e,n)}catch(e){a=[6,e];i=0}finally{r=o=0}if(a[0]&5)throw a[1];return{value:a[0]?a[1]:void 0,done:true}}};u=function(e,t){for(var n in e)if(!t.hasOwnProperty(n))t[n]=e[n]};l=function(e){var t=typeof Symbol==="function"&&e[Symbol.iterator],n=0;if(t)return t.call(e);return{next:function(){if(e&&n>=e.length)e=void 0;return{value:e&&e[n++],done:!e}}}};f=function(e,t){var n=typeof Symbol==="function"&&e[Symbol.iterator];if(!n)return e;var r=n.call(e),i,o=[],a;try{while((t===void 0||t-- >0)&&!(i=r.next()).done)o.push(i.value)}catch(e){a={error:e}}finally{try{if(i&&!i.done&&(n=r["return"]))n.call(r)}finally{if(a)throw a.error}}return o};p=function(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(f(arguments[t]));return e};d=function(){for(var e=0,t=0,n=arguments.length;t<n;t++)e+=arguments[t].length;for(var r=Array(e),i=0,t=0;t<n;t++)for(var o=arguments[t],a=0,s=o.length;a<s;a++,i++)r[i]=o[a];return r};h=function(e){return this instanceof h?(this.v=e,this):new h(e)};m=function(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=n.apply(e,t||[]),i,o=[];return i={},verb("next"),verb("throw"),verb("return"),i[Symbol.asyncIterator]=function(){return this},i;function verb(e){if(r[e])i[e]=function(t){return new Promise(function(n,r){o.push([e,t,n,r])>1||resume(e,t)})}}function resume(e,t){try{step(r[e](t))}catch(e){settle(o[0][3],e)}}function step(e){e.value instanceof h?Promise.resolve(e.value.v).then(fulfill,reject):settle(o[0][2],e)}function fulfill(e){resume("next",e)}function reject(e){resume("throw",e)}function settle(e,t){if(e(t),o.shift(),o.length)resume(o[0][0],o[0][1])}};v=function(e){var t,n;return t={},verb("next"),verb("throw",function(e){throw e}),verb("return"),t[Symbol.iterator]=function(){return this},t;function verb(r,i){t[r]=e[r]?function(t){return(n=!n)?{value:h(e[r](t)),done:r==="return"}:i?i(t):t}:i}};g=function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof l==="function"?l(e):e[Symbol.iterator](),n={},verb("next"),verb("throw"),verb("return"),n[Symbol.asyncIterator]=function(){return this},n);function verb(t){n[t]=e[t]&&function(n){return new Promise(function(r,i){n=e[t](n),settle(r,i,n.done,n.value)})}}function settle(e,t,n,r){Promise.resolve(r).then(function(t){e({value:t,done:n})},t)}};y=function(e,t){if(Object.defineProperty){Object.defineProperty(e,"raw",{value:t})}else{e.raw=t}return e};b=function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};w=function(e){return e&&e.__esModule?e:{default:e}};e("__extends",t);e("__assign",n);e("__rest",r);e("__decorate",i);e("__param",o);e("__metadata",a);e("__awaiter",s);e("__generator",c);e("__exportStar",u);e("__values",l);e("__read",f);e("__spread",p);e("__spreadArrays",d);e("__await",h);e("__asyncGenerator",m);e("__asyncDelegator",v);e("__asyncValues",g);e("__makeTemplateObject",y);e("__importStar",b);e("__importDefault",w)})},5181:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=i(n(2399));const c=o(n(8715));const u=i(n(8950));function verifyDomain(e,t,n){return r(this,void 0,void 0,function*(){const r=u.default(`Verifying domain ${t} under ${a.default.bold(n)}`);try{const{domain:n}=yield performVerifyDomain(e,t);r();return n}catch(e){r();if(e.code==="verification_failed"){return new c.DomainVerificationFailed({purchased:false,domain:e.name,nsVerification:e.nsVerification,txtVerification:e.txtVerification})}throw e}})}t.default=verifyDomain;function performVerifyDomain(e,t){return r(this,void 0,void 0,function*(){return s.default(()=>r(this,void 0,void 0,function*(){return e.fetch(`/v4/domains/${encodeURIComponent(t)}/verify`,{body:{},method:"POST"})}),{retries:5,maxTimeout:8e3})})}},5195:function(e){function isDate(e){return e instanceof Date}e.exports=isDate},5212:function(e){e.exports=function(e){return typeof e==="object"?e!==null:typeof e==="function"}},5231:function(e,t,n){"use strict";const r=n(5897);const i=n(2617);const o=n(5527).pathExists;function symlinkPaths(e,t,n){if(r.isAbsolute(e)){return i.lstat(e,t=>{if(t){t.message=t.message.replace("lstat","ensureSymlink");return n(t)}return n(null,{toCwd:e,toDst:e})})}else{const a=r.dirname(t);const s=r.join(a,e);return o(s,(t,o)=>{if(t)return n(t);if(o){return n(null,{toCwd:s,toDst:e})}else{return i.lstat(e,t=>{if(t){t.message=t.message.replace("lstat","ensureSymlink");return n(t)}return n(null,{toCwd:e,toDst:r.relative(a,e)})})}})}}function symlinkPathsSync(e,t){let n;if(r.isAbsolute(e)){n=i.existsSync(e);if(!n)throw new Error("absolute srcpath does not exist");return{toCwd:e,toDst:e}}else{const o=r.dirname(t);const a=r.join(o,e);n=i.existsSync(a);if(n){return{toCwd:a,toDst:e}}else{n=i.existsSync(e);if(!n)throw new Error("relative srcpath does not exist");return{toCwd:e,toDst:r.relative(o,e)}}}}e.exports={symlinkPaths:symlinkPaths,symlinkPathsSync:symlinkPathsSync}},5235:function(e){e.exports=extractDescription;function extractDescription(e){if(!e)return;if(e==="ERROR: No README data found!")return;e=e.trim().split("\n");for(var t=0;e[t]&&e[t].trim().match(/^(#|$)/);t++);var n=e.length;for(var r=t+1;r<n&&e[r].trim();r++);return e.slice(t,r).join(" ").trim()}},5236:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(635);var i=n(4580);var o=n(1390);var a=n(1781);var s=function(){function OnUncaughtException(e){if(e===void 0){e={}}this._options=e;this.name=OnUncaughtException.id;this.handler=this._makeErrorHandler()}OnUncaughtException.prototype.setupOnce=function(){global.process.on("uncaughtException",this.handler.bind(this))};OnUncaughtException.prototype._makeErrorHandler=function(){var e=this;var t=2e3;var n=false;var s=false;var c=false;var u;return function(l){var f=a.defaultOnFatalError;var p=r.getCurrentHub().getClient();if(e._options.onFatalError){f=e._options.onFatalError}else if(p&&p.getOptions().onFatalError){f=p.getOptions().onFatalError}if(!n){var d=r.getCurrentHub();u=l;n=true;if(d.getIntegration(OnUncaughtException)){d.withScope(function(e){e.setLevel(i.Severity.Fatal);d.captureException(l,{originalException:l});if(!c){c=true;f(l)}})}else{if(!c){c=true;f(l)}}}else if(c){o.logger.warn("uncaught exception after calling fatal error shutdown callback - this is bad! forcing shutdown");a.defaultOnFatalError(l)}else if(!s){s=true;setTimeout(function(){if(!c){c=true;f(u,l)}else{}},t)}}};OnUncaughtException.id="OnUncaughtException";return OnUncaughtException}();t.OnUncaughtException=s},5242:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});var r=n(8573);t.default=r.default},5246:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(5897));const o=r(n(8185));try{const e=i.default.dirname(process.execPath);o.default._npmPkg=n(8560)(`${i.default.join(e,"../../package.json")}`)}catch(e){o.default._npmPkg=null}t.default=o.default},5248:function(e,t,n){"use strict";var r=e.exports;var i=n(5897);var o=n(6875);r.define=n(2024);r.diff=n(2546);r.extend=n(5343);r.pick=n(1611);r.typeOf=n(796);r.unique=n(430);r.isWindows=function(){return i.sep==="\\"||process.platform==="win32"};r.instantiate=function(e,t){var n;if(r.typeOf(e)==="object"&&e.snapdragon){n=e.snapdragon}else if(r.typeOf(t)==="object"&&t.snapdragon){n=t.snapdragon}else{n=new o(t)}r.define(n,"parse",function(e,t){var n=o.prototype.parse.apply(this,arguments);n.input=e;var i=this.parser.stack.pop();if(i&&this.options.strictErrors!==true){var a=i.nodes[0];var s=i.nodes[1];if(i.type==="bracket"){if(s.val.charAt(0)==="["){s.val="\\"+s.val}}else{a.val="\\"+a.val;var c=a.parent.nodes[1];if(c.type==="star"){c.loose=true}}}r.define(n,"parser",this.parser);return n});return n};r.createKey=function(e,t){if(r.typeOf(t)!=="object"){return e}var n=e;var i=Object.keys(t);for(var o=0;o<i.length;o++){var a=i[o];n+=";"+a+"="+String(t[a])}return n};r.arrayify=function(e){if(typeof e==="string")return[e];return e?Array.isArray(e)?e:[e]:[]};r.isString=function(e){return typeof e==="string"};r.isObject=function(e){return r.typeOf(e)==="object"};r.hasSpecialChars=function(e){return/(?:(?:(^|\/)[!.])|[*?+()|\[\]{}]|[+@]\()/.test(e)};r.escapeRegex=function(e){return e.replace(/[-[\]{}()^$|*+?.\\\/\s]/g,"\\$&")};r.toPosixPath=function(e){return e.replace(/\\+/g,"/")};r.unescape=function(e){return r.toPosixPath(e.replace(/\\(?=[*+?!.])/g,""))};r.stripPrefix=function(e){if(e.charAt(0)!=="."){return e}var t=e.charAt(1);if(r.isSlash(t)){return e.slice(2)}return e};r.isSlash=function(e){return e==="/"||e==="\\/"||e==="\\"||e==="\\\\"};r.matchPath=function(e,t){return t&&t.contains?r.containsPattern(e,t):r.equalsPattern(e,t)};r._equals=function(e,t,n){return n===e||n===t};r._contains=function(e,t,n){return e.indexOf(n)!==-1||t.indexOf(n)!==-1};r.equalsPattern=function(e,t){var n=r.unixify(t);t=t||{};return function fn(i){var o=r._equals(i,n(i),e);if(o===true||t.nocase!==true){return o}var a=i.toLowerCase();return r._equals(a,n(a),e)}};r.containsPattern=function(e,t){var n=r.unixify(t);t=t||{};return function(i){var o=r._contains(i,n(i),e);if(o===true||t.nocase!==true){return o}var a=i.toLowerCase();return r._contains(a,n(a),e)}};r.matchBasename=function(e){return function(t){return e.test(i.basename(t))}};r.value=function(e,t,n){if(n&&n.unixify===false){return e}return t(e)};r.unixify=function(e){e=e||{};return function(t){if(r.isWindows()||e.unixify===true){t=r.toPosixPath(t)}if(e.stripPrefix!==false){t=r.stripPrefix(t)}if(e.unescape===true){t=r.unescape(t)}return t}}},5257:function(e,t,n){var r=n(4607);var i=n(3199);function valid(e){try{r(e);return true}catch(e){return false}}var o=[["APGL","AGPL"],["Gpl","GPL"],["GLP","GPL"],["APL","Apache"],["ISD","ISC"],["GLP","GPL"],["IST","ISC"],["Claude","Clause"],[" or later","+"],[" International",""],["GNU","GPL"],["GUN","GPL"],["+",""],["GNU GPL","GPL"],["GNU/GPL","GPL"],["GNU GLP","GPL"],["GNU General Public License","GPL"],["Gnu public license","GPL"],["GNU Public License","GPL"],["GNU GENERAL PUBLIC LICENSE","GPL"],["MTI","MIT"],["Mozilla Public License","MPL"],["WTH","WTF"],["-License",""]];var a=0;var s=1;var c=[function(e){return e.toUpperCase()},function(e){return e.trim()},function(e){return e.replace(/\./g,"")},function(e){return e.replace(/\s+/g,"")},function(e){return e.replace(/\s+/g,"-")},function(e){return e.replace("v","-")},function(e){return e.replace(/,?\s*(\d)/,"-$1")},function(e){return e.replace(/,?\s*(\d)/,"-$1.0")},function(e){return e.replace(/,?\s*(V\.|v\.|V|v|Version|version)\s*(\d)/,"-$2")},function(e){return e.replace(/,?\s*(V\.|v\.|V|v|Version|version)\s*(\d)/,"-$2.0")},function(e){return e[0].toUpperCase()+e.slice(1)},function(e){return e.replace("/","-")},function(e){return e.replace(/\s*V\s*(\d)/,"-$1").replace(/(\d)$/,"$1.0")},function(e){if(e.indexOf("3.0")!==-1){return e+"-or-later"}else{return e+"-only"}},function(e){return e+"only"},function(e){return e.replace(/(\d)$/,"-$1.0")},function(e){return e.replace(/(-| )?(\d)$/,"-$2-Clause")},function(e){return e.replace(/(-| )clause(-| )(\d)/,"-$3-Clause")},function(e){return"CC-"+e},function(e){return"CC-"+e+"-4.0"},function(e){return e.replace("Attribution","BY").replace("NonCommercial","NC").replace("NoDerivatives","ND").replace(/ (\d)/,"-$1").replace(/ ?International/,"")},function(e){return"CC-"+e.replace("Attribution","BY").replace("NonCommercial","NC").replace("NoDerivatives","ND").replace(/ (\d)/,"-$1").replace(/ ?International/,"")+"-4.0"}];var u=i.map(function(e){var t=/^(.*)-\d+\.\d+$/.exec(e);return t?[t[0],t[1]]:[e,null]}).reduce(function(e,t){var n=t[1];e[n]=e[n]||[];e[n].push(t[0]);return e},{});var l=Object.keys(u).map(function makeEntries(e){return[e,u[e]]}).filter(function identifySoleVersions(e){return e[1].length===1&&e[0]!==null&&e[0]!=="APL"}).map(function createLastResorts(e){return[e[0],e[1][0]]});u=undefined;var f=[["UNLI","Unlicense"],["WTF","WTFPL"],["2 CLAUSE","BSD-2-Clause"],["2-CLAUSE","BSD-2-Clause"],["3 CLAUSE","BSD-3-Clause"],["3-CLAUSE","BSD-3-Clause"],["AFFERO","AGPL-3.0-or-later"],["AGPL","AGPL-3.0-or-later"],["APACHE","Apache-2.0"],["ARTISTIC","Artistic-2.0"],["Affero","AGPL-3.0-or-later"],["BEER","Beerware"],["BOOST","BSL-1.0"],["BSD","BSD-2-Clause"],["CDDL","CDDL-1.1"],["ECLIPSE","EPL-1.0"],["FUCK","WTFPL"],["GNU","GPL-3.0-or-later"],["LGPL","LGPL-3.0-or-later"],["GPLV1","GPL-1.0-only"],["GPL-1","GPL-1.0-only"],["GPLV2","GPL-2.0-only"],["GPL-2","GPL-2.0-only"],["GPL","GPL-3.0-or-later"],["MIT +NO-FALSE-ATTRIBS","MITNFA"],["MIT","MIT"],["MPL","MPL-2.0"],["X11","X11"],["ZLIB","Zlib"]].concat(l);var p=0;var d=1;var h=function(e){for(var t=0;t<c.length;t++){var n=c[t](e).trim();if(n!==e&&valid(n)){return n}}return null};var m=function(e){var t=e.toUpperCase();for(var n=0;n<f.length;n++){var r=f[n];if(t.indexOf(r[p])>-1){return r[d]}}return null};var v=function(e,t){for(var n=0;n<o.length;n++){var r=o[n];var i=r[a];if(e.indexOf(i)>-1){var c=e.replace(i,r[s]);var u=t(c);if(u!==null){return u}}}return null};e.exports=function(e,t){t=t||{};var n=t.upgrade===undefined?true:!!t.upgrade;function postprocess(e){return n?upgradeGPLs(e):e}var r=typeof e==="string"&&e.trim().length!==0;if(!r){throw Error("Invalid argument. Expected non-empty string.")}e=e.trim();if(valid(e)){return postprocess(e)}var i=e.replace(/\+$/,"").trim();if(valid(i)){return postprocess(i)}var o=h(e);if(o!==null){return postprocess(o)}o=v(e,function(e){if(valid(e)){return e}return h(e)});if(o!==null){return postprocess(o)}o=m(e);if(o!==null){return postprocess(o)}o=v(e,m);if(o!==null){return postprocess(o)}return null};function upgradeGPLs(e){if(["GPL-1.0","LGPL-1.0","AGPL-1.0","GPL-2.0","LGPL-2.0","AGPL-2.0","LGPL-2.1"].indexOf(e)!==-1){return e+"-only"}else if(["GPL-1.0+","GPL-2.0+","GPL-3.0+","LGPL-2.0+","LGPL-2.1+","LGPL-3.0+","AGPL-1.0+","AGPL-3.0+"].indexOf(e)!==-1){return e.replace(/\+$/,"-or-later")}else if(["GPL-3.0","LGPL-3.0","AGPL-3.0"].indexOf(e)!==-1){return e+"-or-later"}else{return e}}},5264:function(e,t,n){"use strict";e.exports={$ref:n(9767),allOf:n(2168),anyOf:n(4674),$comment:n(1293),const:n(5760),contains:n(9539),dependencies:n(4036),enum:n(2839),format:n(209),if:n(1051),items:n(7276),maximum:n(6211),minimum:n(6211),maxItems:n(2499),minItems:n(2499),maxLength:n(8603),minLength:n(8603),maxProperties:n(3952),minProperties:n(3952),multipleOf:n(3985),not:n(424),oneOf:n(1357),pattern:n(3198),properties:n(3354),propertyNames:n(7023),required:n(4181),uniqueItems:n(315),validate:n(5807)}},5271:function(e,t,n){e.exports={bufferSplit:bufferSplit,addRSAMissing:addRSAMissing,calculateDSAPublic:calculateDSAPublic,calculateED25519Public:calculateED25519Public,calculateX25519Public:calculateX25519Public,mpNormalize:mpNormalize,mpDenormalize:mpDenormalize,ecNormalize:ecNormalize,countZeros:countZeros,assertCompatible:assertCompatible,isCompatible:isCompatible,opensslKeyDeriv:opensslKeyDeriv,opensshCipherInfo:opensshCipherInfo,publicFromPrivateECDSA:publicFromPrivateECDSA,zeroPadToLength:zeroPadToLength,writeBitString:writeBitString,readBitString:readBitString,pbkdf2:pbkdf2};var r=n(9261);var i=n(3062).Buffer;var o=n(1946);var a=n(120);var s=n(2984);var c=n(6977);var u=n(4833);var l=n(7884);var f=n(7176).BigInteger;var p=n(1449);var d=3;function isCompatible(e,t,n){if(e===null||typeof e!=="object")return false;if(n===undefined)n=t.prototype._sshpkApiVersion;if(e instanceof t&&t.prototype._sshpkApiVersion[0]==n[0])return true;var r=Object.getPrototypeOf(e);var i=0;while(r.constructor.name!==t.name){r=Object.getPrototypeOf(r);if(!r||++i>d)return false}if(r.constructor.name!==t.name)return false;var o=r._sshpkApiVersion;if(o===undefined)o=t._oldVersionDetect(e);if(o[0]!=n[0]||o[1]<n[1])return false;return true}function assertCompatible(e,t,n,i){if(i===undefined)i="object";r.ok(e,i+" must not be null");r.object(e,i+" must be an object");if(n===undefined)n=t.prototype._sshpkApiVersion;if(e instanceof t&&t.prototype._sshpkApiVersion[0]==n[0])return;var o=Object.getPrototypeOf(e);var a=0;while(o.constructor.name!==t.name){o=Object.getPrototypeOf(o);r.ok(o&&++a<=d,i+" must be a "+t.name+" instance")}r.strictEqual(o.constructor.name,t.name,i+" must be a "+t.name+" instance");var s=o._sshpkApiVersion;if(s===undefined)s=t._oldVersionDetect(e);r.ok(s[0]==n[0]&&s[1]>=n[1],i+" must be compatible with "+t.name+" klass "+"version "+n[0]+"."+n[1])}var h={"des-ede3-cbc":{key:24,iv:8},"aes-128-cbc":{key:16,iv:16},"aes-256-cbc":{key:32,iv:16}};var m=8;function opensslKeyDeriv(e,t,n,o){r.buffer(t,"salt");r.buffer(n,"passphrase");r.number(o,"iteration count");var a=h[e];r.object(a,"supported cipher");t=t.slice(0,m);var c,u,l;var f=i.alloc(0);while(f.length<a.key+a.iv){l=[];if(u)l.push(u);l.push(n);l.push(t);c=i.concat(l);for(var p=0;p<o;++p)c=s.createHash("md5").update(c).digest();f=i.concat([f,c]);u=c}return{key:f.slice(0,a.key),iv:f.slice(a.key,a.key+a.iv)}}function pbkdf2(e,t,n,r,o){var a=i.alloc(t.length+4);t.copy(a);var c=0,u=[];var l=1;while(c<r){var f=T(l++);c+=f.length;u.push(f)}return i.concat(u).slice(0,r);function T(t){a.writeUInt32BE(t,a.length-4);var r=s.createHmac(e,o);r.update(a);var i=r.digest();var c=i;var u=1;while(u++<n){r=s.createHmac(e,o);r.update(c);c=r.digest();for(var l=0;l<i.length;++l)i[l]^=c[l]}return i}}function countZeros(e){var t=0,n=8;while(t<e.length){var r=1<<n;if((e[t]&r)===r)break;n--;if(n<0){t++;n=8}}return t*8+(8-n)-1}function bufferSplit(e,t){r.buffer(e);r.string(t);var n=[];var i=0;var o=0;for(var a=0;a<e.length;++a){if(e[a]===t.charCodeAt(o))++o;else if(e[a]===t.charCodeAt(0))o=1;else o=0;if(o>=t.length){var s=a+1;n.push(e.slice(i,s-o));i=s;o=0}}if(i<=e.length)n.push(e.slice(i,e.length));return n}function ecNormalize(e,t){r.buffer(e);if(e[0]===0&&e[1]===4){if(t)return e;return e.slice(1)}else if(e[0]===4){if(!t)return e}else{while(e[0]===0)e=e.slice(1);if(e[0]===2||e[0]===3)throw new Error("Compressed elliptic curve points "+"are not supported");if(e[0]!==4)throw new Error("Not a valid elliptic curve point");if(!t)return e}var n=i.alloc(e.length+1);n[0]=0;e.copy(n,1);return n}function readBitString(e,t){if(t===undefined)t=u.Ber.BitString;var n=e.readString(t,true);r.strictEqual(n[0],0,"bit strings with unused bits are "+"not supported (0x"+n[0].toString(16)+")");return n.slice(1)}function writeBitString(e,t,n){if(n===undefined)n=u.Ber.BitString;var r=i.alloc(t.length+1);r[0]=0;t.copy(r,1);e.writeBuffer(r,n)}function mpNormalize(e){r.buffer(e);while(e.length>1&&e[0]===0&&(e[1]&128)===0)e=e.slice(1);if((e[0]&128)===128){var t=i.alloc(e.length+1);t[0]=0;e.copy(t,1);e=t}return e}function mpDenormalize(e){r.buffer(e);while(e.length>1&&e[0]===0)e=e.slice(1);return e}function zeroPadToLength(e,t){r.buffer(e);r.number(t);while(e.length>t){r.equal(e[0],0);e=e.slice(1)}while(e.length<t){var n=i.alloc(e.length+1);n[0]=0;e.copy(n,1);e=n}return e}function bigintToMpBuf(e){var t=i.from(e.toByteArray());t=mpNormalize(t);return t}function calculateDSAPublic(e,t,n){r.buffer(e);r.buffer(t);r.buffer(n);e=new f(e);t=new f(t);n=new f(n);var i=e.modPow(n,t);var o=bigintToMpBuf(i);return o}function calculateED25519Public(e){r.buffer(e);var t=p.sign.keyPair.fromSeed(new Uint8Array(e));return i.from(t.publicKey)}function calculateX25519Public(e){r.buffer(e);var t=p.box.keyPair.fromSeed(new Uint8Array(e));return i.from(t.publicKey)}function addRSAMissing(e){r.object(e);assertCompatible(e,o,[1,1]);var t=new f(e.part.d.data);var n;if(!e.part.dmodp){var i=new f(e.part.p.data);var a=t.mod(i.subtract(1));n=bigintToMpBuf(a);e.part.dmodp={name:"dmodp",data:n};e.parts.push(e.part.dmodp)}if(!e.part.dmodq){var s=new f(e.part.q.data);var c=t.mod(s.subtract(1));n=bigintToMpBuf(c);e.part.dmodq={name:"dmodq",data:n};e.parts.push(e.part.dmodq)}}function publicFromPrivateECDSA(e,t){r.string(e,"curveName");r.buffer(t);var n=c.curves[e];var o=new f(n.p);var s=new f(n.a);var u=new f(n.b);var p=new l.ECCurveFp(o,s,u);var d=p.decodePointHex(n.G.toString("hex"));var h=new f(mpNormalize(t));var m=d.multiply(h);m=i.from(p.encodePointHex(m),"hex");var v=[];v.push({name:"curve",data:i.from(e)});v.push({name:"Q",data:m});var g=new a({type:"ecdsa",curve:p,parts:v});return g}function opensshCipherInfo(e){var t={};switch(e){case"3des-cbc":t.keySize=24;t.blockSize=8;t.opensslName="des-ede3-cbc";break;case"blowfish-cbc":t.keySize=16;t.blockSize=8;t.opensslName="bf-cbc";break;case"aes128-cbc":case"aes128-ctr":case"aes128-gcm@openssh.com":t.keySize=16;t.blockSize=16;t.opensslName="aes-128-"+e.slice(7,10);break;case"aes192-cbc":case"aes192-ctr":case"aes192-gcm@openssh.com":t.keySize=24;t.blockSize=16;t.opensslName="aes-192-"+e.slice(7,10);break;case"aes256-cbc":case"aes256-ctr":case"aes256-gcm@openssh.com":t.keySize=32;t.blockSize=16;t.opensslName="aes-256-"+e.slice(7,10);break;default:throw new Error('Unsupported openssl cipher "'+e+'"')}return t}},5276:function(e){e.exports=function(e){if(typeof Buffer.allocUnsafe==="function"){try{return Buffer.allocUnsafe(e)}catch(t){return new Buffer(e)}}return new Buffer(e)}},5283:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return createDeploy});var r=n(7408);var i=n.n(r);var o=n(8715);var a=n.n(o);var s=n(1612);var c=n.n(s);var u=n(6097);var l=n.n(u);var f=n(3147);var p=n.n(f);async function createDeploy(e,t,n,r,a){try{return await t.create(r,a)}catch(c){if(c.code==="rate_limited"){throw new o["DeploymentsRateLimited"](c.message)}if(c.code==="domain_missing"){throw new o["DomainNotFound"](c.value)}if(c.code==="domain_not_found"&&c.domain){throw new o["DomainNotFound"](c.domain)}if(c.code==="domain_not_verified"&&c.domain){throw new o["DomainNotVerified"](c.domain)}if(c.code==="domain_not_verified"&&c.value){throw new o["DomainVerificationFailed"](c.value)}if(c.code==="not_domain_owner"){throw new o["NotDomainOwner"](c.message)}if(c.code==="builds_rate_limited"){throw new o["BuildsRateLimited"](c.message)}if(c.code==="forbidden"){throw new o["DomainPermissionDenied"](c.value,n)}if(c.code==="bad_request"&&c.keyword){throw new s["SchemaValidationFailed"](c.message,c.keyword,c.dataPath,c.params)}if(c.code==="domain_configured"){throw new o["AliasDomainConfigured"](c)}if(c.code==="missing_build_script"){throw new o["MissingBuildScript"](c)}if(c.code==="conflicting_file_path"){throw new o["ConflictingFilePath"](c)}if(c.code==="conflicting_path_segment"){throw new o["ConflictingPathSegment"](c)}if(c.code==="cert_missing"){const o=await i()(e,t,n,c.value);if(o instanceof u["NowError"]){return o}return createDeploy(e,t,n,r,a)}if(c.code==="not_found"){throw new o["DeploymentNotFound"]({context:n})}const l=p()(c);if(l){return l}throw c}}},5302:function(e,t,n){e.exports={read:read,write:write};var r=n(9261);var i=n(4833);var o=n(2984);var a=n(3062).Buffer;var s=n(6977);var c=n(5271);var u=n(120);var l=n(1946);var f=n(2292);var p=n(6109);var d=n(9755);var h=n(2046);var m=n(7825);var v="1.2.840.113549.1.5.13";var g="1.2.840.113549.1.5.12";var y={"1.2.840.113549.3.7":"3des-cbc","2.16.840.1.101.3.4.1.2":"aes128-cbc","2.16.840.1.101.3.4.1.42":"aes256-cbc"};var b={};Object.keys(y).forEach(function(e){b[y[e]]=e});var w={"1.2.840.113549.2.7":"sha1","1.2.840.113549.2.9":"sha256","1.2.840.113549.2.11":"sha512"};var x={};Object.keys(w).forEach(function(e){x[w[e]]=e});function read(e,t,n){var s=e;if(typeof e!=="string"){r.buffer(e,"buf");e=e.toString("ascii")}var u=e.trim().split(/[\r\n]+/g);var l;var b=-1;while(!l&&b<u.length){l=u[++b].match(/[-]+[ ]*BEGIN ([A-Z0-9][A-Za-z0-9]+ )?(PUBLIC|PRIVATE) KEY[ ]*[-]+/)}r.ok(l,"invalid PEM header");var x;var k=u.length;while(!x&&k>0){x=u[--k].match(/[-]+[ ]*END ([A-Z0-9][A-Za-z0-9]+ )?(PUBLIC|PRIVATE) KEY[ ]*[-]+/)}r.ok(x,"invalid PEM footer");r.equal(l[2],x[2]);var j=l[2].toLowerCase();var S;if(l[1]){r.equal(l[1],x[1],"PEM header and footer mismatch");S=l[1].trim()}u=u.slice(b,k+1);var E={};while(true){u=u.slice(1);l=u[0].match(/^([A-Za-z0-9-]+): (.+)$/);if(!l)break;E[l[1].toLowerCase()]=l[2]}u=u.slice(0,-1).join("");e=a.from(u,"base64");var _,C,A;if(E["proc-type"]){var O=E["proc-type"].split(",");if(O[0]==="4"&&O[1]==="ENCRYPTED"){if(typeof t.passphrase==="string"){t.passphrase=a.from(t.passphrase,"utf-8")}if(!a.isBuffer(t.passphrase)){throw new m.KeyEncryptedError(t.filename,"PEM")}else{O=E["dek-info"].split(",");r.ok(O.length===2);_=O[0].toLowerCase();A=a.from(O[1],"hex");C=c.opensslKeyDeriv(_,A,t.passphrase,1).key}}}if(S&&S.toLowerCase()==="encrypted"){var F=new i.BerReader(e);var D;F.readSequence();F.readSequence();D=F.offset+F.length;var T=F.readOID();if(T!==v){throw new Error("Unsupported PEM/PKCS8 encryption "+"scheme: "+T)}F.readSequence();F.readSequence();var I=F.offset+F.length;var R=F.readOID();if(R!==g)throw new Error("Unsupported PBES2 KDF: "+R);F.readSequence();var P=F.readString(i.Ber.OctetString,true);var B=F.readInt();var N="sha1";if(F.offset<I){F.readSequence();var z=F.readOID();N=w[z];if(N===undefined){throw new Error("Unsupported PBKDF2 hash: "+z)}}F._offset=I;F.readSequence();var L=F.readOID();_=y[L];if(_===undefined){throw new Error("Unsupported PBES2 cipher: "+L)}A=F.readString(i.Ber.OctetString,true);F._offset=D;e=F.readString(i.Ber.OctetString,true);if(typeof t.passphrase==="string"){t.passphrase=a.from(t.passphrase,"utf-8")}if(!a.isBuffer(t.passphrase)){throw new m.KeyEncryptedError(t.filename,"PEM")}var M=c.opensshCipherInfo(_);_=M.opensslName;C=c.pbkdf2(N,P,B,M.keySize,t.passphrase);S=undefined}if(_&&C&&A){var U=o.createDecipheriv(_,C,A);var q,H=[];U.once("error",function(e){if(e.toString().indexOf("bad decrypt")!==-1){throw new Error("Incorrect passphrase "+"supplied, could not decrypt key")}throw e});U.write(e);U.end();while((q=U.read())!==null)H.push(q);e=a.concat(H)}if(S&&S.toLowerCase()==="openssh")return d.readSSHPrivate(j,e,t);if(S&&S.toLowerCase()==="ssh2")return h.readType(j,e,t);var G=new i.BerReader(e);G.originalInput=s;G.readSequence();if(S){if(n)r.strictEqual(n,"pkcs1");return f.readPkcs1(S,j,G)}else{if(n)r.strictEqual(n,"pkcs8");return p.readPkcs8(S,j,G)}}function write(e,t,n){r.object(e);var o={ecdsa:"EC",rsa:"RSA",dsa:"DSA",ed25519:"EdDSA"}[e.type];var s;var c=new i.BerWriter;if(l.isPrivateKey(e)){if(n&&n==="pkcs8"){s="PRIVATE KEY";p.writePkcs8(c,e)}else{if(n)r.strictEqual(n,"pkcs1");s=o+" PRIVATE KEY";f.writePkcs1(c,e)}}else if(u.isKey(e)){if(n&&n==="pkcs1"){s=o+" PUBLIC KEY";f.writePkcs1(c,e)}else{if(n)r.strictEqual(n,"pkcs8");s="PUBLIC KEY";p.writePkcs8(c,e)}}else{throw new Error("key is not a Key or PrivateKey")}var d=c.buffer.toString("base64");var h=d.length+d.length/64+18+16+s.length*2+10;var m=a.alloc(h);var v=0;v+=m.write("-----BEGIN "+s+"-----\n",v);for(var g=0;g<d.length;){var y=g+64;if(y>d.length)y=d.length;v+=m.write(d.slice(g,y),v);m[v++]=10;g=y}v+=m.write("-----END "+s+"-----\n",v);return m.slice(0,v)}},5306:function(e,t,n){"use strict";var r=n(9714);var i=n(649);var o=n(4714);var a=n(9799);var s=n(8732)("snapdragon:parser");var c=n(6328);var u=n(4650);function Parser(e){s("initializing",__filename);this.options=u.extend({source:"string"},e);this.init(this.options);r(this)}Parser.prototype={constructor:Parser,init:function(e){this.orig="";this.input="";this.parsed="";this.column=1;this.line=1;this.regex=new o;this.errors=this.errors||[];this.parsers=this.parsers||{};this.types=this.types||[];this.sets=this.sets||{};this.fns=this.fns||[];this.currentType="root";var t=this.position();this.bos=t({type:"bos",val:""});this.ast={type:"root",errors:this.errors,nodes:[this.bos]};a(this.bos,"parent",this.ast);this.nodes=[this.ast];this.count=0;this.setCount=0;this.stack=[]},error:function(e,t){var n=t.position||{start:{column:0,line:0}};var r=n.start.line;var i=n.start.column;var o=this.options.source;var a=o+" <line:"+r+" column:"+i+">: "+e;var s=new Error(a);s.source=o;s.reason=e;s.pos=n;if(this.options.silent){this.errors.push(s)}else{throw s}},define:function(e,t){a(this,e,t);return this},position:function(){var e={line:this.line,column:this.column};var t=this;return function(n){a(n,"position",new c(e,t));return n}},set:function(e,t){if(this.types.indexOf(e)===-1){this.types.push(e)}this.parsers[e]=t.bind(this);return this},get:function(e){return this.parsers[e]},push:function(e,t){this.sets[e]=this.sets[e]||[];this.count++;this.stack.push(t);return this.sets[e].push(t)},pop:function(e){this.sets[e]=this.sets[e]||[];this.count--;this.stack.pop();return this.sets[e].pop()},isInside:function(e){this.sets[e]=this.sets[e]||[];return this.sets[e].length>0},isType:function(e,t){return e&&e.type===t},prev:function(e){return this.stack.length>0?u.last(this.stack,e):u.last(this.nodes,e)},consume:function(e){this.input=this.input.substr(e)},updatePosition:function(e,t){var n=e.match(/\n/g);if(n)this.line+=n.length;var r=e.lastIndexOf("\n");this.column=~r?t-r:this.column+t;this.parsed+=e;this.consume(t)},match:function(e){var t=e.exec(this.input);if(t){this.updatePosition(t[0],t[0].length);return t}},capture:function(e,t){if(typeof t==="function"){return this.set.apply(this,arguments)}this.regex.set(e,t);this.set(e,function(){var n=this.parsed;var r=this.position();var i=this.match(t);if(!i||!i[0])return;var o=this.prev();var s=r({type:e,val:i[0],parsed:n,rest:this.input});if(i[1]){s.inner=i[1]}a(s,"inside",this.stack.length>0);a(s,"parent",o);o.nodes.push(s)}.bind(this));return this},capturePair:function(e,t,n,r){this.sets[e]=this.sets[e]||[];this.set(e+".open",function(){var n=this.parsed;var i=this.position();var o=this.match(t);if(!o||!o[0])return;var s=o[0];this.setCount++;this.specialChars=true;var c=i({type:e+".open",val:s,rest:this.input});if(typeof o[1]!=="undefined"){c.inner=o[1]}var u=this.prev();var l=i({type:e,nodes:[c]});a(l,"rest",this.input);a(l,"parsed",n);a(l,"prefix",o[1]);a(l,"parent",u);a(c,"parent",l);if(typeof r==="function"){r.call(this,c,l)}this.push(e,l);u.nodes.push(l)});this.set(e+".close",function(){var t=this.position();var r=this.match(n);if(!r||!r[0])return;var i=this.pop(e);var o=t({type:e+".close",rest:this.input,suffix:r[1],val:r[0]});if(!this.isType(i,e)){if(this.options.strict){throw new Error('missing opening "'+e+'"')}this.setCount--;o.escaped=true;return o}if(o.suffix==="\\"){i.escaped=true;o.escaped=true}i.nodes.push(o);a(o,"parent",i)});return this},eos:function(){var e=this.position();if(this.input)return;var t=this.prev();while(t.type!=="root"&&!t.visited){if(this.options.strict===true){throw new SyntaxError("invalid syntax:"+i.inspect(t,null,2))}if(!hasDelims(t)){t.parent.escaped=true;t.escaped=true}visit(t,function(e){if(!hasDelims(e.parent)){e.parent.escaped=true;e.escaped=true}});t=t.parent}var n=e({type:"eos",val:this.append||""});a(n,"parent",this.ast);return n},next:function(){var e=this.parsed;var t=this.types.length;var n=-1;var r;while(++n<t){if(r=this.parsers[this.types[n]].call(this)){a(r,"rest",this.input);a(r,"parsed",e);this.last=r;return r}}},parse:function(e){if(typeof e!=="string"){throw new TypeError("expected a string")}this.init(this.options);this.orig=e;this.input=e;var t=this;function parse(){e=t.input;var n=t.next();if(n){var r=t.prev();if(r){a(n,"parent",r);if(r.nodes){r.nodes.push(n)}}if(t.sets.hasOwnProperty(r.type)){t.currentType=r.type}}if(t.input&&e===t.input){throw new Error('no parsers registered for: "'+t.input.slice(0,5)+'"')}}while(this.input)parse();if(this.stack.length&&this.options.strict){var n=this.stack.pop();throw this.error("missing opening "+n.type+': "'+this.orig+'"')}var r=this.eos();var i=this.prev();if(i.type!=="eos"){this.ast.nodes.push(r)}return this.ast}};function visit(e,t){if(!e.visited){a(e,"visited",true);return e.nodes?mapVisit(e.nodes,t):t(e)}return e}function mapVisit(e,t){var n=e.length;var r=-1;while(++r<n){visit(e[r],t)}}function hasOpen(e){return e.nodes&&e.nodes[0].type===e.type+".open"}function hasClose(e){return e.nodes&&u.last(e.nodes).type===e.type+".close"}function hasDelims(e){return hasOpen(e)&&hasClose(e)}e.exports=Parser},5311:function(e,t,n){"use strict";const r=n(1964);const i=process.platform;const o={tick:"✔",cross:"✖",star:"★",square:"▇",squareSmall:"◻",squareSmallFilled:"◼",play:"▶",circle:"◯",circleFilled:"◉",circleDotted:"◌",circleDouble:"◎",circleCircle:"ⓞ",circleCross:"ⓧ",circlePipe:"Ⓘ",circleQuestionMark:"?⃝",bullet:"●",dot:"",line:"─",ellipsis:"…",pointer:"",pointerSmall:"",info:"",warning:"⚠",hamburger:"☰",smiley:"㋡",mustache:"෴",heart:"♥",arrowUp:"↑",arrowDown:"↓",arrowLeft:"←",arrowRight:"→",radioOn:"◉",radioOff:"◯",checkboxOn:"☒",checkboxOff:"☐",checkboxCircleOn:"ⓧ",checkboxCircleOff:"Ⓘ",questionMarkPrefix:"?⃝",oneHalf:"½",oneThird:"⅓",oneQuarter:"¼",oneFifth:"⅕",oneSixth:"⅙",oneSeventh:"⅐",oneEighth:"⅛",oneNinth:"⅑",oneTenth:"⅒",twoThirds:"⅔",twoFifths:"⅖",threeQuarters:"¾",threeFifths:"⅗",threeEighths:"⅜",fourFifths:"⅘",fiveSixths:"⅚",fiveEighths:"⅝",sevenEighths:"⅞"};const a={tick:"√",cross:"×",star:"*",square:"█",squareSmall:"[ ]",squareSmallFilled:"[█]",play:"►",circle:"( )",circleFilled:"(*)",circleDotted:"( )",circleDouble:"( )",circleCircle:"(○)",circleCross:"(×)",circlePipe:"(│)",circleQuestionMark:"(?)",bullet:"*",dot:".",line:"─",ellipsis:"...",pointer:">",pointerSmall:"»",info:"i",warning:"‼",hamburger:"≡",smiley:"☺",mustache:"┌─┐",heart:o.heart,arrowUp:o.arrowUp,arrowDown:o.arrowDown,arrowLeft:o.arrowLeft,arrowRight:o.arrowRight,radioOn:"(*)",radioOff:"( )",checkboxOn:"[×]",checkboxOff:"[ ]",checkboxCircleOn:"(×)",checkboxCircleOff:"( )",questionMarkPrefix:"",oneHalf:"1/2",oneThird:"1/3",oneQuarter:"1/4",oneFifth:"1/5",oneSixth:"1/6",oneSeventh:"1/7",oneEighth:"1/8",oneNinth:"1/9",oneTenth:"1/10",twoThirds:"2/3",twoFifths:"2/5",threeQuarters:"3/4",threeFifths:"3/5",threeEighths:"3/8",fourFifths:"4/5",fiveSixths:"5/6",fiveEighths:"5/8",sevenEighths:"7/8"};if(i==="linux"){o.questionMarkPrefix="?"}const s=i==="win32"?a:o;const c=e=>{if(s===o){return e}Object.keys(o).forEach(t=>{if(o[t]===s[t]){return}e=e.replace(new RegExp(r(o[t]),"g"),s[t])});return e};e.exports=Object.assign(c,s)},5313:function(e,t,n){var r=n(662),i=n(5897),o=n(2984),a=n(1678),s=process.binding("constants");var c=a(),u="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",l=/XXXXXX/,f=3,p=(s.O_CREAT||s.fs.O_CREAT)|(s.O_EXCL||s.fs.O_EXCL)|(s.O_RDWR||s.fs.O_RDWR),d=s.EBADF||s.os.errno.EBADF,h=s.ENOENT||s.os.errno.ENOENT,m=448,v=384,g=[],y=false,b=false;function _randomChars(e){var t=[],n=null;try{n=o.randomBytes(e)}catch(t){n=o.pseudoRandomBytes(e)}for(var r=0;r<e;r++){t.push(u[n[r]%u.length])}return t.join("")}function _isUndefined(e){return typeof e==="undefined"}function _parseArguments(e,t){if(typeof e=="function"){var n=e,e=t||{},t=n}else if(typeof e=="undefined"){e={}}return[e,t]}function _generateTmpName(e){if(e.name){return i.join(e.dir||c,e.name)}if(e.template){return e.template.replace(l,_randomChars(6))}var t=[e.prefix||"tmp-",process.pid,_randomChars(12),e.postfix||""].join("");return i.join(e.dir||c,t)}function _getTmpName(e,t){var n=_parseArguments(e,t),i=n[0],o=n[1],a=i.tries||f;if(isNaN(a)||a<0)return o(new Error("Invalid tries"));if(i.template&&!i.template.match(l))return o(new Error("Invalid template provided"));(function _getUniqueName(){var e=_generateTmpName(i);r.stat(e,function(t){if(!t){if(a-- >0)return _getUniqueName();return o(new Error("Could not get a unique tmp filename, max tries reached "+e))}o(null,e)})})()}function _getTmpNameSync(e){var t=_parseArguments(e),n=t[0],i=n.tries||f;if(isNaN(i)||i<0)throw new Error("Invalid tries");if(n.template&&!n.template.match(l))throw new Error("Invalid template provided");do{var o=_generateTmpName(n);try{r.statSync(o)}catch(e){return o}}while(i-- >0);throw new Error("Could not get a unique tmp filename, max tries reached")}function _createTmpFile(e,t){var n=_parseArguments(e,t),i=n[0],o=n[1];i.postfix=_isUndefined(i.postfix)?".tmp":i.postfix;_getTmpName(i,function _tmpNameCreated(e,t){if(e)return o(e);r.open(t,p,i.mode||v,function _fileCreated(e,n){if(e)return o(e);if(i.discardDescriptor){return r.close(n,function _discardCallback(e){if(e){try{r.unlinkSync(t)}catch(t){e=t}return o(e)}o(null,t,undefined,_prepareTmpFileRemoveCallback(t,-1,i))})}if(i.detachDescriptor){return o(null,t,n,_prepareTmpFileRemoveCallback(t,-1,i))}o(null,t,n,_prepareTmpFileRemoveCallback(t,n,i))})})}function _createTmpFileSync(e){var t=_parseArguments(e),n=t[0];n.postfix=n.postfix||".tmp";var i=_getTmpNameSync(n);var o=r.openSync(i,p,n.mode||v);return{name:i,fd:o,removeCallback:_prepareTmpFileRemoveCallback(i,o,n)}}function _rmdirRecursiveSync(e){var t=[e];do{var n=t.pop(),o=false,a=r.readdirSync(n);for(var s=0,c=a.length;s<c;s++){var u=i.join(n,a[s]),l=r.lstatSync(u);if(l.isDirectory()){if(!o){o=true;t.push(n)}t.push(u)}else{r.unlinkSync(u)}}if(!o){r.rmdirSync(n)}}while(t.length!==0)}function _createTmpDir(e,t){var n=_parseArguments(e,t),i=n[0],o=n[1];_getTmpName(i,function _tmpNameCreated(e,t){if(e)return o(e);r.mkdir(t,i.mode||m,function _dirCreated(e){if(e)return o(e);o(null,t,_prepareTmpDirRemoveCallback(t,i))})})}function _createTmpDirSync(e){var t=_parseArguments(e),n=t[0];var i=_getTmpNameSync(n);r.mkdirSync(i,n.mode||m);return{name:i,removeCallback:_prepareTmpDirRemoveCallback(i,n)}}function _prepareTmpFileRemoveCallback(e,t,n){var i=_prepareRemoveCallback(function _removeCallback(e){try{if(0<=e[0]){r.closeSync(e[0])}}catch(e){if(e.errno!=-d&&e.errno!=-h){throw e}}r.unlinkSync(e[1])},[t,e]);if(!n.keep){g.unshift(i)}return i}function _prepareTmpDirRemoveCallback(e,t){var n=t.unsafeCleanup?_rmdirRecursiveSync:r.rmdirSync.bind(r);var i=_prepareRemoveCallback(n,e);if(!t.keep){g.unshift(i)}return i}function _prepareRemoveCallback(e,t){var n=false;return function _cleanupCallback(r){if(!n){var i=g.indexOf(_cleanupCallback);if(i>=0){g.splice(i,1)}n=true;e(t)}if(r)r(null)}}function _garbageCollector(){if(b&&!y){return}while(g.length){try{g[0].call(null)}catch(e){}}}function _setGracefulCleanup(){y=true}var w=process.versions.node.split(".").map(function(e){return parseInt(e,10)});if(w[0]===0&&(w[1]<9||w[1]===9&&w[2]<5)){process.addListener("uncaughtException",function _uncaughtExceptionThrown(e){b=true;_garbageCollector();throw e})}process.addListener("exit",function _exit(e){if(e)b=true;_garbageCollector()});e.exports.tmpdir=c;e.exports.dir=_createTmpDir;e.exports.dirSync=_createTmpDirSync;e.exports.file=_createTmpFile;e.exports.fileSync=_createTmpFileSync;e.exports.tmpName=_getTmpName;e.exports.tmpNameSync=_getTmpNameSync;e.exports.setGracefulCleanup=_setGracefulCleanup},5320:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(8715));function removeDomainByName(e,t,n){return r(this,void 0,void 0,function*(){try{return yield e.fetch(`/v3/domains/${n}`,{method:"DELETE"})}catch(e){if(e.code==="not_found"){return new o.DomainNotFound(n)}if(e.code==="forbidden"){return new o.DomainPermissionDenied(n,t)}if(e.code==="domain_removal_conflict"){return new o.DomainRemovalConflict({aliases:e.aliases,certs:e.certs,message:e.message,pendingAsyncPurchase:e.pendingAsyncPurchase,resolvable:e.resolvable,suffix:e.suffix,transferring:e.transferring})}throw e}})}t.default=removeDomainByName},5325:function(e){"use strict";e.exports=function isObject(e){return e!=null&&typeof e==="object"&&Array.isArray(e)===false}},5327:function(e,t,n){"use strict";var r=n(7409);e.exports=r.extend({path:"recipients/{recipientId}/cards",includeBasic:["create","list","retrieve","update","del"]})},5341:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(1390);t.TRACEPARENT_REGEXP=/^[ \t]*([0-9a-f]{32})?-?([0-9a-f]{16})?-?([01])?[ \t]*$/;var i=function(){function Span(e,t,n,i){if(e===void 0){e=r.uuid4()}if(t===void 0){t=r.uuid4().substring(16)}this._traceId=e;this._spanId=t;this._sampled=n;this._parent=i}Span.prototype.setParent=function(e){this._parent=e;return this};Span.prototype.setSampled=function(e){this._sampled=e;return this};Span.fromTraceparent=function(e){var n=e.match(t.TRACEPARENT_REGEXP);if(n){var r=void 0;if(n[3]==="1"){r=true}else if(n[3]==="0"){r=false}var i=new Span(n[1],n[2],r);return new Span(n[1],undefined,r,i)}return undefined};Span.prototype.toTraceparent=function(){var e="";if(this._sampled===true){e="-1"}else if(this._sampled===false){e="-0"}return this._traceId+"-"+this._spanId+e};Span.prototype.toJSON=function(){return{parent:this._parent&&this._parent.toJSON()||undefined,sampled:this._sampled,span_id:this._spanId,trace_id:this._traceId}};return Span}();t.Span=i},5343:function(e,t,n){"use strict";var r=n(3596);var i=n(6207);e.exports=Object.assign||function(e){if(e===null||typeof e==="undefined"){throw new TypeError("Cannot convert undefined or null to object")}if(!isObject(e)){e={}}for(var t=1;t<arguments.length;t++){var n=arguments[t];if(isString(n)){n=toObject(n)}if(isObject(n)){assign(e,n);i(e,n)}}return e};function assign(e,t){for(var n in t){if(hasOwn(t,n)){e[n]=t[n]}}}function isString(e){return e&&typeof e==="string"}function toObject(e){var t={};for(var n in e){t[n]=e[n]}return t}function isObject(e){return e&&typeof e==="object"||r(e)}function hasOwn(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function isEnum(e,t){return Object.prototype.propertyIsEnumerable.call(e,t)}},5348:function(e,t,n){"use strict";n.r(t);var r=n(5441);function regionOrDCToDC(e){const t=Object.keys(r["REGION_TO_DC"]).map(e=>r["REGION_TO_DC"][e]);if(Object.keys(r["REGION_TO_DC"]).includes(e)){return r["REGION_TO_DC"][e]}if(t.includes(e)){return e}}t["default"]=regionOrDCToDC},5359:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9544));function success(e){return`${i.default.cyan("> Success!")} ${e}`}t.default=success},5361:function(e,t,n){var r=n(2984);var i=n(1249);var o=n(9249);var a={DEFAULT_TOLERANCE:300,constructEvent:function(e,t,n,r){var i=JSON.parse(e);this.signature.verifyHeader(e,t,n,r||a.DEFAULT_TOLERANCE);return i}};var s={EXPECTED_SCHEME:"v1",_computeSignature:function(e,t){return r.createHmac("sha256",t).update(e,"utf8").digest("hex")},verifyHeader:function(e,t,n,r){var a=parseHeader(t,this.EXPECTED_SCHEME);if(!a||a.timestamp===-1){throw new o.StripeSignatureVerificationError({message:"Unable to extract timestamp and signatures from header",detail:{header:t,payload:e}})}if(!a.signatures.length){throw new o.StripeSignatureVerificationError({message:"No signatures found with expected scheme",detail:{header:t,payload:e}})}var s=this._computeSignature(a.timestamp+"."+e,n);var c=!!a.signatures.filter(i.secureCompare.bind(i,s)).length;if(!c){throw new o.StripeSignatureVerificationError({message:"No signatures found matching the expected signature for payload",detail:{header:t,payload:e}})}var u=Math.floor(Date.now()/1e3)-a.timestamp;if(r>0&&u>r){throw new o.StripeSignatureVerificationError({message:"Timestamp outside the tolerance zone",detail:{header:t,payload:e}})}return true}};function parseHeader(e,t){if(typeof e!=="string"){return null}return e.split(",").reduce(function(e,n){var r=n.split("=");if(r[0]==="t"){e.timestamp=r[1]}if(r[0]===t){e.signatures.push(r[1])}return e},{timestamp:-1,signatures:[]})}a.signature=s;e.exports=a},5363:function(e){"use strict";e.exports=function hasValue(e,t){if(e===null||e===undefined){return false}if(typeof e==="boolean"){return true}if(typeof e==="number"){if(e===0&&t===true){return false}return true}if(e.length!==undefined){return e.length!==0}for(var n in e){if(e.hasOwnProperty(n)){return true}}return false}},5368:function(e,t,n){"use strict";e.exports={moveSync:n(2655)}},5372:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return formatLogCmd});var r=n(8323);function formatLogCmd(e){return`▲ ${Object(r["default"])(e)}`}},5381:function(e){e.exports=extend;var t=Object.prototype.hasOwnProperty;function extend(){var e={};for(var n=0;n<arguments.length;n++){var r=arguments[n];for(var i in r){if(t.call(r,i)){e[i]=r[i]}}}return e}},5403:function(e,t,n){"use strict";var r=n(649);var i=n(6980);var o=n(9799);var a=n(1533);var s=n(5325);var c=e.exports;c.isObject=function isObject(e){return s(e)||typeof e==="function"};c.has=function has(e,t){t=c.arrayify(t);var n=t.length;if(c.isObject(e)){for(var r in e){if(t.indexOf(r)>-1){return true}}var i=c.nativeKeys(e);return c.has(i,t)}if(Array.isArray(e)){var o=e;while(n--){if(o.indexOf(t[n])>-1){return true}}return false}throw new TypeError("expected an array or object.")};c.hasAll=function hasAll(e,t){t=c.arrayify(t);var n=t.length;while(n--){if(!c.has(e,t[n])){return false}}return true};c.arrayify=function arrayify(e){return e?Array.isArray(e)?e:[e]:[]};c.noop=function noop(){return};c.identity=function identity(e){return e};c.hasConstructor=function hasConstructor(e){return c.isObject(e)&&typeof e.constructor!=="undefined"};c.nativeKeys=function nativeKeys(e){if(!c.hasConstructor(e))return[];var t=Object.getOwnPropertyNames(e);if("caller"in e)t.push("caller");return t};c.getDescriptor=function getDescriptor(e,t){if(!c.isObject(e)){throw new TypeError("expected an object.")}if(typeof t!=="string"){throw new TypeError("expected key to be a string.")}return Object.getOwnPropertyDescriptor(e,t)};c.copyDescriptor=function copyDescriptor(e,t,n){if(!c.isObject(e)){throw new TypeError("expected receiving object to be an object.")}if(!c.isObject(t)){throw new TypeError("expected providing object to be an object.")}if(typeof n!=="string"){throw new TypeError("expected name to be a string.")}var r=c.getDescriptor(t,n);if(r)Object.defineProperty(e,n,r)};c.copy=function copy(e,t,n){if(!c.isObject(e)){throw new TypeError("expected receiving object to be an object.")}if(!c.isObject(t)){throw new TypeError("expected providing object to be an object.")}var r=Object.getOwnPropertyNames(t);var i=Object.keys(t);var a=r.length,s;n=c.arrayify(n);while(a--){s=r[a];if(c.has(i,s)){o(e,s,t[s])}else if(!(s in e)&&!c.has(n,s)){c.copyDescriptor(e,t,s)}}};c.inherit=function inherit(e,t,n){if(!c.isObject(e)){throw new TypeError("expected receiving object to be an object.")}if(!c.isObject(t)){throw new TypeError("expected providing object to be an object.")}var r=[];for(var i in t){r.push(i);e[i]=t[i]}r=r.concat(c.arrayify(n));var o=t.prototype||t;var a=e.prototype||e;c.copy(a,o,r)};c.extend=function(){return a.apply(null,arguments)};c.bubble=function(e,t){t=t||[];e.bubble=function(n,r){if(Array.isArray(r)){t=i([],t,r)}var o=t.length;var a=-1;while(++a<o){var s=t[a];e.on(s,n.emit.bind(n,s))}c.bubble(n,t)}}},5404:function(e){"use strict";function isSpecificValue(e){return e instanceof Buffer||e instanceof Date||e instanceof RegExp?true:false}function cloneSpecificValue(e){if(e instanceof Buffer){var t=Buffer.alloc?Buffer.alloc(e.length):new Buffer(e.length);e.copy(t);return t}else if(e instanceof Date){return new Date(e.getTime())}else if(e instanceof RegExp){return new RegExp(e)}else{throw new Error("Unexpected situation")}}function deepCloneArray(e){var n=[];e.forEach(function(e,r){if(typeof e==="object"&&e!==null){if(Array.isArray(e)){n[r]=deepCloneArray(e)}else if(isSpecificValue(e)){n[r]=cloneSpecificValue(e)}else{n[r]=t({},e)}}else{n[r]=e}});return n}function safeGetProperty(e,t){return t==="__proto__"?undefined:e[t]}var t=e.exports=function(){if(arguments.length<1||typeof arguments[0]!=="object"){return false}if(arguments.length<2){return arguments[0]}var e=arguments[0];var n=Array.prototype.slice.call(arguments,1);var r,i,o;n.forEach(function(n){if(typeof n!=="object"||n===null||Array.isArray(n)){return}Object.keys(n).forEach(function(o){i=safeGetProperty(e,o);r=safeGetProperty(n,o);if(r===e){return}else if(typeof r!=="object"||r===null){e[o]=r;return}else if(Array.isArray(r)){e[o]=deepCloneArray(r);return}else if(isSpecificValue(r)){e[o]=cloneSpecificValue(r);return}else if(typeof i!=="object"||i===null||Array.isArray(i)){e[o]=t({},r);return}else{e[o]=t(i,r);return}})});return e}},5414:function(e,t,n){"use strict";e.exports={copySync:n(2943)}},5423:function(e){"use strict";class ExtendableError extends Error{constructor(e){super(e);this.name=this.constructor.name;this.message=e;if(typeof Error.captureStackTrace==="function"){Error.captureStackTrace(this,this.constructor)}else{this.stack=new Error(e).stack}}}class TimeoutError extends ExtendableError{constructor(e){super(e)}}e.exports={TimeoutError:TimeoutError}},5429:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});const r=n(5897);t.version=2;function build({files:e,entrypoint:t}){const n={[t]:e[t]};const r=[t];return{output:n,routes:[],watch:r}}t.build=build;function shouldServe({entrypoint:e,files:t,requestPath:n}){if(isIndex(e)){const i=r.join(n,r.basename(e));if(e===i&&i in t){return true}}return e===n&&n in t}t.shouldServe=shouldServe;function isIndex(e){const t=r.extname(e);const n=r.basename(e,t);return n==="index"}},5441:function(e,t,n){"use strict";n.r(t);n.d(t,"REGION_TO_DC",function(){return r});const r={all:"all",bru:"bru1",gru:"gru1",sfo:"sfo1",iad:"iad1"}},5457:function(e,t,n){"use strict";var r=e.exports;var i=n(5897);var o=n(6625)();var a=n(6875);r.define=n(4749);r.diff=n(2546);r.extend=n(4261);r.pick=n(1611);r.typeOf=n(8910);r.unique=n(430);r.isEmptyString=function(e){return String(e)===""||String(e)==="./"};r.isWindows=function(){return i.sep==="\\"||o===true};r.last=function(e,t){return e[e.length-(t||1)]};r.instantiate=function(e,t){var n;if(r.typeOf(e)==="object"&&e.snapdragon){n=e.snapdragon}else if(r.typeOf(t)==="object"&&t.snapdragon){n=t.snapdragon}else{n=new a(t)}r.define(n,"parse",function(e,t){var n=a.prototype.parse.call(this,e,t);n.input=e;var i=this.parser.stack.pop();if(i&&this.options.strictErrors!==true){var o=i.nodes[0];var s=i.nodes[1];if(i.type==="bracket"){if(s.val.charAt(0)==="["){s.val="\\"+s.val}}else{o.val="\\"+o.val;var c=o.parent.nodes[1];if(c.type==="star"){c.loose=true}}}r.define(n,"parser",this.parser);return n});return n};r.createKey=function(e,t){if(typeof t==="undefined"){return e}var n=e;for(var r in t){if(t.hasOwnProperty(r)){n+=";"+r+"="+String(t[r])}}return n};r.arrayify=function(e){if(typeof e==="string")return[e];return e?Array.isArray(e)?e:[e]:[]};r.isString=function(e){return typeof e==="string"};r.isRegex=function(e){return r.typeOf(e)==="regexp"};r.isObject=function(e){return r.typeOf(e)==="object"};r.escapeRegex=function(e){return e.replace(/[-[\]{}()^$|*+?.\\\/\s]/g,"\\$&")};r.combineDupes=function(e,t){t=r.arrayify(t).join("|").split("|");t=t.map(function(e){return e.replace(/\\?([+*\\\/])/g,"\\$1")});var n=t.join("|");var i=new RegExp("("+n+")(?=\\1)","g");return e.replace(i,"")};r.hasSpecialChars=function(e){return/(?:(?:(^|\/)[!.])|[*?+()|[\]{}]|[+@]\()/.test(e)};r.toPosixPath=function(e){return e.replace(/\\+/g,"/")};r.unescape=function(e){return r.toPosixPath(e.replace(/\\(?=[*+?!.])/g,""))};r.stripDrive=function(e){return r.isWindows()?e.replace(/^[a-z]:[\\\/]+?/i,"/"):e};r.stripPrefix=function(e){if(e.charAt(0)==="."&&(e.charAt(1)==="/"||e.charAt(1)==="\\")){return e.slice(2)}return e};r.isSimpleChar=function(e){return e.trim()===""||e==="."};r.isSlash=function(e){return e==="/"||e==="\\/"||e==="\\"||e==="\\\\"};r.matchPath=function(e,t){return t&&t.contains?r.containsPattern(e,t):r.equalsPattern(e,t)};r._equals=function(e,t,n){return n===e||n===t};r._contains=function(e,t,n){return e.indexOf(n)!==-1||t.indexOf(n)!==-1};r.equalsPattern=function(e,t){var n=r.unixify(t);t=t||{};return function fn(i){var o=r._equals(i,n(i),e);if(o===true||t.nocase!==true){return o}var a=i.toLowerCase();return r._equals(a,n(a),e)}};r.containsPattern=function(e,t){var n=r.unixify(t);t=t||{};return function(i){var o=r._contains(i,n(i),e);if(o===true||t.nocase!==true){return o}var a=i.toLowerCase();return r._contains(a,n(a),e)}};r.matchBasename=function(e){return function(t){return e.test(t)||e.test(i.basename(t))}};r.identity=function(e){return e};r.value=function(e,t,n){if(n&&n.unixify===false){return e}if(n&&typeof n.unixify==="function"){return n.unixify(e)}return t(e)};r.unixify=function(e){var t=e||{};return function(e){if(t.stripPrefix!==false){e=r.stripPrefix(e)}if(t.unescape===true){e=r.unescape(e)}if(t.unixify===true||r.isWindows()){e=r.toPosixPath(e)}return e}}},5461:function(e){"use strict";const t=(e,t)=>(function(){const n=t.promiseModule;const r=new Array(arguments.length);for(let e=0;e<arguments.length;e++){r[e]=arguments[e]}return new n((n,i)=>{if(t.errorFirst){r.push(function(e,r){if(t.multiArgs){const t=new Array(arguments.length-1);for(let e=1;e<arguments.length;e++){t[e-1]=arguments[e]}if(e){t.unshift(e);i(t)}else{n(t)}}else if(e){i(e)}else{n(r)}})}else{r.push(function(e){if(t.multiArgs){const e=new Array(arguments.length-1);for(let t=0;t<arguments.length;t++){e[t]=arguments[t]}n(e)}else{n(e)}})}e.apply(this,r)})});e.exports=((e,n)=>{n=Object.assign({exclude:[/.+(Sync|Stream)$/],errorFirst:true,promiseModule:Promise},n);const r=e=>{const t=t=>typeof t==="string"?e===t:t.test(e);return n.include?n.include.some(t):!n.exclude.some(t)};let i;if(typeof e==="function"){i=function(){if(n.excludeMain){return e.apply(this,arguments)}return t(e,n).apply(this,arguments)}}else{i=Object.create(Object.getPrototypeOf(e))}for(const o in e){const a=e[o];i[o]=typeof a==="function"&&r(o)?t(a,n):a}return i})},5466:function(e,t,n){"use strict";var r=n(774);var i=n(9055);var o=["accept","accept-charset","accept-encoding","accept-language","accept-ranges","cache-control","content-encoding","content-language","content-location","content-md5","content-range","content-type","connection","date","expect","max-forwards","pragma","referer","te","user-agent","via"];var a=["proxy-authorization"];function constructProxyHost(e){var t=e.port;var n=e.protocol;var r=e.hostname+":";if(t){r+=t}else if(n==="https:"){r+="443"}else{r+="80"}return r}function constructProxyHeaderWhiteList(e,t){var n=t.reduce(function(e,t){e[t.toLowerCase()]=true;return e},{});return Object.keys(e).filter(function(e){return n[e.toLowerCase()]}).reduce(function(t,n){t[n]=e[n];return t},{})}function constructTunnelOptions(e,t){var n=e.proxy;var r={proxy:{host:n.hostname,port:+n.port,proxyAuth:n.auth,headers:t},headers:e.headers,ca:e.ca,cert:e.cert,key:e.key,passphrase:e.passphrase,pfx:e.pfx,ciphers:e.ciphers,rejectUnauthorized:e.rejectUnauthorized,secureOptions:e.secureOptions,secureProtocol:e.secureProtocol};return r}function constructTunnelFnName(e,t){var n=e.protocol==="https:"?"https":"http";var r=t.protocol==="https:"?"Https":"Http";return[n,r].join("Over")}function getTunnelFn(e){var t=e.uri;var n=e.proxy;var r=constructTunnelFnName(t,n);return i[r]}function Tunnel(e){this.request=e;this.proxyHeaderWhiteList=o;this.proxyHeaderExclusiveList=[];if(typeof e.tunnel!=="undefined"){this.tunnelOverride=e.tunnel}}Tunnel.prototype.isEnabled=function(){var e=this;var t=e.request;if(typeof e.tunnelOverride!=="undefined"){return e.tunnelOverride}if(t.uri.protocol==="https:"){return true}return false};Tunnel.prototype.setup=function(e){var t=this;var n=t.request;e=e||{};if(typeof n.proxy==="string"){n.proxy=r.parse(n.proxy)}if(!n.proxy||!n.tunnel){return false}if(e.proxyHeaderWhiteList){t.proxyHeaderWhiteList=e.proxyHeaderWhiteList}if(e.proxyHeaderExclusiveList){t.proxyHeaderExclusiveList=e.proxyHeaderExclusiveList}var i=t.proxyHeaderExclusiveList.concat(a);var o=t.proxyHeaderWhiteList.concat(i);var s=constructProxyHeaderWhiteList(n.headers,o);s.host=constructProxyHost(n.uri);i.forEach(n.removeHeader,n);var c=getTunnelFn(n);var u=constructTunnelOptions(n,s);n.agent=c(u);return true};Tunnel.defaultProxyHeaderWhiteList=o;Tunnel.defaultProxyHeaderExclusiveList=a;t.Tunnel=Tunnel},5467:function(e){var t=function(){"use strict";return this===undefined}();if(t){e.exports={freeze:Object.freeze,defineProperty:Object.defineProperty,getDescriptor:Object.getOwnPropertyDescriptor,keys:Object.keys,names:Object.getOwnPropertyNames,getPrototypeOf:Object.getPrototypeOf,isArray:Array.isArray,isES5:t,propertyIsWritable:function(e,t){var n=Object.getOwnPropertyDescriptor(e,t);return!!(!n||n.writable||n.set)}}}else{var n={}.hasOwnProperty;var r={}.toString;var i={}.constructor.prototype;var o=function(e){var t=[];for(var r in e){if(n.call(e,r)){t.push(r)}}return t};var a=function(e,t){return{value:e[t]}};var s=function(e,t,n){e[t]=n.value;return e};var c=function(e){return e};var u=function(e){try{return Object(e).constructor.prototype}catch(e){return i}};var l=function(e){try{return r.call(e)==="[object Array]"}catch(e){return false}};e.exports={isArray:l,keys:o,names:o,defineProperty:s,getDescriptor:a,freeze:c,getPrototypeOf:u,isES5:t,propertyIsWritable:function(){return true}}}},5468:function(e){e.exports={100:"Continue",101:"Switching Protocols",102:"Processing",103:"Early Hints",200:"OK",201:"Created",202:"Accepted",203:"Non-Authoritative Information",204:"No Content",205:"Reset Content",206:"Partial Content",207:"Multi-Status",208:"Already Reported",226:"IM Used",300:"Multiple Choices",301:"Moved Permanently",302:"Found",303:"See Other",304:"Not Modified",305:"Use Proxy",306:"(Unused)",307:"Temporary Redirect",308:"Permanent Redirect",400:"Bad Request",401:"Unauthorized",402:"Payment Required",403:"Forbidden",404:"Not Found",405:"Method Not Allowed",406:"Not Acceptable",407:"Proxy Authentication Required",408:"Request Timeout",409:"Conflict",410:"Gone",411:"Length Required",412:"Precondition Failed",413:"Payload Too Large",414:"URI Too Long",415:"Unsupported Media Type",416:"Range Not Satisfiable",417:"Expectation Failed",418:"I'm a teapot",421:"Misdirected Request",422:"Unprocessable Entity",423:"Locked",424:"Failed Dependency",425:"Unordered Collection",426:"Upgrade Required",428:"Precondition Required",429:"Too Many Requests",431:"Request Header Fields Too Large",451:"Unavailable For Legal Reasons",500:"Internal Server Error",501:"Not Implemented",502:"Bad Gateway",503:"Service Unavailable",504:"Gateway Timeout",505:"HTTP Version Not Supported",506:"Variant Also Negotiates",507:"Insufficient Storage",508:"Loop Detected",509:"Bandwidth Limit Exceeded",510:"Not Extended",511:"Network Authentication Required"}},5469:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5844);var i;(function(e){e["PENDING"]="PENDING";e["RESOLVED"]="RESOLVED";e["REJECTED"]="REJECTED"})(i||(i={}));var o=function(){function SyncPromise(e){var t=this;this._state=i.PENDING;this._handlers=[];this._resolve=function(e){t._setResult(e,i.RESOLVED)};this._reject=function(e){t._setResult(e,i.REJECTED)};this._setResult=function(e,n){if(t._state!==i.PENDING){return}if(r.isThenable(e)){e.then(t._resolve,t._reject);return}t._value=e;t._state=n;t._executeHandlers()};this._executeHandlers=function(){if(t._state===i.PENDING){return}if(t._state===i.REJECTED){t._handlers.forEach(function(e){return e.onFail&&e.onFail(t._value)})}else{t._handlers.forEach(function(e){return e.onSuccess&&e.onSuccess(t._value)})}t._handlers=[];return};this._attachHandler=function(e){t._handlers=t._handlers.concat(e);t._executeHandlers()};try{e(this._resolve,this._reject)}catch(e){this._reject(e)}}SyncPromise.prototype.then=function(e,t){var n=this;return new SyncPromise(function(r,i){n._attachHandler({onFail:function(e){if(!t){i(e);return}try{r(t(e));return}catch(e){i(e);return}},onSuccess:function(t){if(!e){r(t);return}try{r(e(t));return}catch(e){i(e);return}}})})};SyncPromise.prototype.catch=function(e){return this.then(function(e){return e},e)};SyncPromise.prototype.toString=function(){return"[object SyncPromise]"};SyncPromise.resolve=function(e){return new SyncPromise(function(t){t(e)})};SyncPromise.reject=function(e){return new SyncPromise(function(t,n){n(e)})};return SyncPromise}();t.SyncPromise=o},5474:function(e,t,n){"use strict";var r=n(313);var i=n(2551);function toRegex(e,t){return new RegExp(toRegex.create(e,t))}toRegex.create=function(e,t){if(typeof e!=="string"){throw new TypeError("expected a string")}var n=r({},t);if(n.contains===true){n.strictNegate=false}var o=n.strictOpen!==false?"^":"";var a=n.strictClose!==false?"$":"";var s=n.endChar?n.endChar:"+";var c=e;if(n.strictNegate===false){c="(?:(?!(?:"+e+")).)"+s}else{c="(?:(?!^(?:"+e+")$).)"+s}var u=o+c+a;if(n.safe===true&&i(u)===false){throw new Error("potentially unsafe regular expression: "+u)}return u};e.exports=toRegex},5479:function(e,t,n){t.SourceMapGenerator=n(6463).SourceMapGenerator;t.SourceMapConsumer=n(7532).SourceMapConsumer;t.SourceNode=n(9761).SourceNode},5487:function(e){e.exports={$id:"entry.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",optional:true,required:["startedDateTime","time","request","response","cache","timings"],properties:{pageref:{type:"string"},startedDateTime:{type:"string",format:"date-time",pattern:"^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))"},time:{type:"number",min:0},request:{$ref:"request.json#"},response:{$ref:"response.json#"},cache:{$ref:"cache.json#"},timings:{$ref:"timings.json#"},serverIPAddress:{type:"string",oneOf:[{format:"ipv4"},{format:"ipv6"}]},connection:{type:"string"},comment:{type:"string"}}}},5495:function(e){e.exports={$id:"pageTimings.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",properties:{onContentLoad:{type:"number",min:-1},onLoad:{type:"number",min:-1},comment:{type:"string"}}}},5503:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function isValidValueForMinOrMax(e){return e==="auto"||/^\d+$/.test(e)}t.default=isValidValueForMinOrMax},5509:function(e,t,n){(function(){var t=n(4859);var r=n(649);function intercept(e,t){var n;if(typeof t!=="function"){throw new TypeError("interceptor must be a function")}this.emit("newInterceptor",e,t);if(!this._interceptors[e]){this._interceptors[e]=[t]}else{this._interceptors[e].push(t)}if(!this._interceptors[e].warned){if(typeof this._maxInterceptors!=="undefined"){n=this._maxInterceptors}else{n=EventEmitter.defaultMaxInterceptors}if(n&&n>0&&this._interceptors[e].length>n){this._interceptors[e].warned=true;console.error("(node) warning: possible events-intercept EventEmitter memory "+"leak detected. %d interceptors added. "+"Use emitter.setMaxInterceptors(n) to increase limit.",this._interceptors[e].length);console.trace()}}return this}function emitFactory(e){return function(t){var n,r,i=this;function next(o){var a;if(o){i.emit("error",o)}else if(n===r.length){return e.apply(i,[t].concat(Array.prototype.slice.call(arguments).slice(1)))}else{a=Array.prototype.slice.call(arguments).slice(1).concat([next]);n+=1;return r[n-1].apply(i,a)}}if(!i._interceptors){i._interceptors={}}r=i._interceptors[t];if(!r){return e.apply(i,arguments)}else{n=0;return next.apply(i,[null].concat(Array.prototype.slice.call(arguments).slice(1)))}}}function interceptors(e){var t;if(!this._interceptors||!this._interceptors[e]){t=[]}else{t=this._interceptors[e].slice()}return t}function removeInterceptor(e,t){var n,r,i,o;if(typeof t!=="function"){throw new TypeError("interceptor must be a function")}if(!this._interceptors||!this._interceptors[e]){return this}n=this._interceptors[e];i=n.length;r=-1;for(o=i-1;o>=0;o--){if(n[o]===t){r=o;break}}if(r<0){return this}if(i===1){delete this._interceptors[e]}else{n.splice(r,1)}this.emit("removeInterceptor",e,t);return this}function listenersFactory(e){return function(t){var n=e.call(this,t);var r;var i=n.slice();if(t==="newListener"||t==="removeListener"){r=n.indexOf(fakeFunction);if(r!==-1){i.splice(r,1)}return i}return n}}function fakeFunction(){}function fixListeners(e){e.on("newListener",fakeFunction);e.on("removeListener",fakeFunction)}function setMaxInterceptors(e){if(typeof e!=="number"||e<0||isNaN(e)){throw new TypeError("n must be a positive number")}this._maxInterceptors=e;return this}function removeAllInterceptors(e){var t,n,r,i;if(!this._interceptors||Object.getOwnPropertyNames(this._interceptors).length===0){return this}if(arguments.length===0){for(t in this._interceptors){if(this._interceptors.hasOwnProperty(t)&&t!=="removeInterceptor"){this.removeAllInterceptors(t)}}this.removeAllInterceptors("removeInterceptor");this._interceptors={}}else if(this._interceptors[e]){n=this._interceptors[e];r=n.length;for(i=r-1;i>=0;i--){this.removeInterceptor(e,n[i])}delete this._interceptors[e]}return this}function EventEmitter(){t.EventEmitter.call(this);fixListeners(this)}r.inherits(EventEmitter,t.EventEmitter);EventEmitter.prototype.intercept=intercept;EventEmitter.prototype.emit=emitFactory(EventEmitter.super_.prototype.emit);EventEmitter.prototype.interceptors=interceptors;EventEmitter.prototype.removeInterceptor=removeInterceptor;EventEmitter.prototype.removeAllInterceptors=removeAllInterceptors;EventEmitter.prototype.setMaxInterceptors=setMaxInterceptors;EventEmitter.prototype.listeners=listenersFactory(EventEmitter.super_.prototype.listeners);EventEmitter.defaultMaxInterceptors=10;function monkeyPatch(e){var t=e.emit;var n=e.listeners;e.emit=emitFactory(t);e.intercept=intercept;e.interceptors=interceptors;e.removeInterceptor=removeInterceptor;e.removeAllInterceptors=removeAllInterceptors;e.setMaxInterceptors=setMaxInterceptors;e.listeners=listenersFactory(n);fixListeners(e)}e.exports={EventEmitter:EventEmitter,patch:monkeyPatch}})()},5511:function(e,t,n){e.exports=Signature;var r=n(9261);var i=n(3062).Buffer;var o=n(6977);var a=n(2984);var s=n(7825);var c=n(5271);var u=n(4833);var l=n(4550);var f=s.InvalidAlgorithmError;var p=s.SignatureParseError;function Signature(e){r.object(e,"options");r.arrayOfObject(e.parts,"options.parts");r.string(e.type,"options.type");var t={};for(var n=0;n<e.parts.length;++n){var i=e.parts[n];t[i.name]=i}this.type=e.type;this.hashAlgorithm=e.hashAlgo;this.curve=e.curve;this.parts=e.parts;this.part=t}Signature.prototype.toBuffer=function(e){if(e===undefined)e="asn1";r.string(e,"format");var t;var n="ssh-"+this.type;switch(this.type){case"rsa":switch(this.hashAlgorithm){case"sha256":n="rsa-sha2-256";break;case"sha512":n="rsa-sha2-512";break;case"sha1":case undefined:break;default:throw new Error("SSH signature "+"format does not support hash "+"algorithm "+this.hashAlgorithm)}if(e==="ssh"){t=new l({});t.writeString(n);t.writePart(this.part.sig);return t.toBuffer()}else{return this.part.sig.data}break;case"ed25519":if(e==="ssh"){t=new l({});t.writeString(n);t.writePart(this.part.sig);return t.toBuffer()}else{return this.part.sig.data}break;case"dsa":case"ecdsa":var o,a;if(e==="asn1"){var s=new u.BerWriter;s.startSequence();o=c.mpNormalize(this.part.r.data);a=c.mpNormalize(this.part.s.data);s.writeBuffer(o,u.Ber.Integer);s.writeBuffer(a,u.Ber.Integer);s.endSequence();return s.buffer}else if(e==="ssh"&&this.type==="dsa"){t=new l({});t.writeString("ssh-dss");o=this.part.r.data;if(o.length>20&&o[0]===0)o=o.slice(1);a=this.part.s.data;if(a.length>20&&a[0]===0)a=a.slice(1);if(this.hashAlgorithm&&this.hashAlgorithm!=="sha1"||o.length+a.length!==40){throw new Error("OpenSSH only supports "+"DSA signatures with SHA1 hash")}t.writeBuffer(i.concat([o,a]));return t.toBuffer()}else if(e==="ssh"&&this.type==="ecdsa"){var f=new l({});o=this.part.r.data;f.writeBuffer(o);f.writePart(this.part.s);t=new l({});var p;if(o[0]===0)o=o.slice(1);var d=o.length*8;if(d===256)p="nistp256";else if(d===384)p="nistp384";else if(d===528)p="nistp521";t.writeString("ecdsa-sha2-"+p);t.writeBuffer(f.toBuffer());return t.toBuffer()}throw new Error("Invalid signature format");default:throw new Error("Invalid signature data")}};Signature.prototype.toString=function(e){r.optionalString(e,"format");return this.toBuffer(e).toString("base64")};Signature.parse=function(e,t,n){if(typeof e==="string")e=i.from(e,"base64");r.buffer(e,"data");r.string(n,"format");r.string(t,"type");var o={};o.type=t.toLowerCase();o.parts=[];try{r.ok(e.length>0,"signature must not be empty");switch(o.type){case"rsa":return parseOneNum(e,t,n,o);case"ed25519":return parseOneNum(e,t,n,o);case"dsa":case"ecdsa":if(n==="asn1")return parseDSAasn1(e,t,n,o);else if(o.type==="dsa")return parseDSA(e,t,n,o);else return parseECDSA(e,t,n,o);default:throw new f(t)}}catch(e){if(e instanceof f)throw e;throw new p(t,n,e)}};function parseOneNum(e,t,n,i){if(n==="ssh"){try{var o=new l({buffer:e});var a=o.readString()}catch(e){}if(o!==undefined){var s="SSH signature does not match expected "+"type (expected "+t+", got "+a+")";switch(a){case"ssh-rsa":r.strictEqual(t,"rsa",s);i.hashAlgo="sha1";break;case"rsa-sha2-256":r.strictEqual(t,"rsa",s);i.hashAlgo="sha256";break;case"rsa-sha2-512":r.strictEqual(t,"rsa",s);i.hashAlgo="sha512";break;case"ssh-ed25519":r.strictEqual(t,"ed25519",s);i.hashAlgo="sha512";break;default:throw new Error("Unknown SSH signature "+"type: "+a)}var c=o.readPart();r.ok(o.atEnd(),"extra trailing bytes");c.name="sig";i.parts.push(c);return new Signature(i)}}i.parts.push({name:"sig",data:e});return new Signature(i)}function parseDSAasn1(e,t,n,r){var i=new u.BerReader(e);i.readSequence();var o=i.readString(u.Ber.Integer,true);var a=i.readString(u.Ber.Integer,true);r.parts.push({name:"r",data:c.mpNormalize(o)});r.parts.push({name:"s",data:c.mpNormalize(a)});return new Signature(r)}function parseDSA(e,t,n,i){if(e.length!=40){var o=new l({buffer:e});var a=o.readBuffer();if(a.toString("ascii")==="ssh-dss")a=o.readBuffer();r.ok(o.atEnd(),"extra trailing bytes");r.strictEqual(a.length,40,"invalid inner length");e=a}i.parts.push({name:"r",data:e.slice(0,20)});i.parts.push({name:"s",data:e.slice(20,40)});return new Signature(i)}function parseECDSA(e,t,n,i){var o=new l({buffer:e});var a,s;var c=o.readBuffer();var u=c.toString("ascii");if(u.slice(0,6)==="ecdsa-"){var f=u.split("-");r.strictEqual(f[0],"ecdsa");r.strictEqual(f[1],"sha2");i.curve=f[2];switch(i.curve){case"nistp256":i.hashAlgo="sha256";break;case"nistp384":i.hashAlgo="sha384";break;case"nistp521":i.hashAlgo="sha512";break;default:throw new Error("Unsupported ECDSA curve: "+i.curve)}c=o.readBuffer();r.ok(o.atEnd(),"extra trailing bytes on outer");o=new l({buffer:c});a=o.readPart()}else{a={data:c}}s=o.readPart();r.ok(o.atEnd(),"extra trailing bytes");a.name="r";s.name="s";i.parts.push(a);i.parts.push(s);return new Signature(i)}Signature.isSignature=function(e,t){return c.isCompatible(e,Signature,t)};Signature.prototype._sshpkApiVersion=[2,1];Signature._oldVersionDetect=function(e){r.func(e.toBuffer);if(e.hasOwnProperty("hashAlgorithm"))return[2,0];return[1,0]}},5517:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(9146).copySync;const a=n(8120).removeSync;const s=n(5627).mkdirsSync;const c=n(5718);function moveSync(e,t,n){n=n||{};const o=n.overwrite||n.clobber||false;e=i.resolve(e);t=i.resolve(t);if(e===t)return r.accessSync(e);if(isSrcSubdir(e,t))throw new Error(`Cannot move '${e}' into itself '${t}'.`);s(i.dirname(t));tryRenameSync();function tryRenameSync(){if(o){try{return r.renameSync(e,t)}catch(r){if(r.code==="ENOTEMPTY"||r.code==="EEXIST"||r.code==="EPERM"){a(t);n.overwrite=false;return moveSync(e,t,n)}if(r.code!=="EXDEV")throw r;return moveSyncAcrossDevice(e,t,o)}}else{try{r.linkSync(e,t);return r.unlinkSync(e)}catch(n){if(n.code==="EXDEV"||n.code==="EISDIR"||n.code==="EPERM"||n.code==="ENOTSUP"){return moveSyncAcrossDevice(e,t,o)}throw n}}}}function moveSyncAcrossDevice(e,t,n){const i=r.statSync(e);if(i.isDirectory()){return moveDirSyncAcrossDevice(e,t,n)}else{return moveFileSyncAcrossDevice(e,t,n)}}function moveFileSyncAcrossDevice(e,t,n){const i=64*1024;const o=c(i);const a=n?"w":"wx";const s=r.openSync(e,"r");const u=r.fstatSync(s);const l=r.openSync(t,a,u.mode);let f=0;while(f<u.size){const e=r.readSync(s,o,0,i,f);r.writeSync(l,o,0,e);f+=e}r.closeSync(s);r.closeSync(l);return r.unlinkSync(e)}function moveDirSyncAcrossDevice(e,t,n){const r={overwrite:false};if(n){a(t);tryCopySync()}else{tryCopySync()}function tryCopySync(){o(e,t,r);return a(e)}}function isSrcSubdir(e,t){try{return r.statSync(e).isDirectory()&&e!==t&&t.indexOf(e)>-1&&t.split(i.dirname(e)+i.sep)[1].split(i.sep)[0]===i.basename(e)}catch(e){return false}}e.exports={moveSync:moveSync}},5519:function(e,t,n){t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.storage=localstorage();t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function useColors(){if(typeof window!=="undefined"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs)){return true}if(typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)){return false}return typeof document!=="undefined"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window!=="undefined"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}function formatArgs(t){t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff);if(!this.useColors){return}const n="color: "+this.color;t.splice(1,0,n,"color: inherit");let r=0;let i=0;t[0].replace(/%[a-zA-Z%]/g,e=>{if(e==="%%"){return}r++;if(e==="%c"){i=r}});t.splice(i,0,n)}function log(...e){return typeof console==="object"&&console.log&&console.log(...e)}function save(e){try{if(e){t.storage.setItem("debug",e)}else{t.storage.removeItem("debug")}}catch(e){}}function load(){let e;try{e=t.storage.getItem("debug")}catch(e){}if(!e&&typeof process!=="undefined"&&"env"in process){e=process.env.DEBUG}return e}function localstorage(){try{return localStorage}catch(e){}}e.exports=n(4937)(t);const{formatters:r}=e.exports;r.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}},5523:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=o(n(8715));const c=i(n(8911));const u=i(n(8950));const l=i(n(3147));function createCertForCns(e,t,n){return r(this,void 0,void 0,function*(){const r=u.default(`Issuing a certificate for ${a.default.bold(t.join(", "))}`);try{const i=yield c.default(e,t);r();return i}catch(e){r();if(e.code==="forbidden"){return new s.DomainPermissionDenied(e.domain,n)}const i=l.default(e,t);if(i){return i}throw e}})}t.default=createCertForCns},5527:function(e,t,n){"use strict";const r=n(2255).fromPromise;const i=n(1173);function pathExists(e){return i.access(e).then(()=>true).catch(()=>false)}e.exports={pathExists:r(pathExists),pathExistsSync:i.existsSync}},5528:function(e,t,n){var r=n(9261);var i=n(2984);var o=n(4219);var a=n(649);var s=n(8162);var c=n(4008);var u=n(7788);var l=n(649).format;var f=u.HASH_ALGOS;var p=u.PK_ALGOS;var d=u.InvalidAlgorithmError;var h=u.HttpSignatureError;var m=u.validateAlgorithm;var v='Signature keyId="%s",algorithm="%s",headers="%s",signature="%s"';function MissingHeaderError(e){h.call(this,e,MissingHeaderError)}a.inherits(MissingHeaderError,h);function StrictParsingError(e){h.call(this,e,StrictParsingError)}a.inherits(StrictParsingError,h);function RequestSigner(e){r.object(e,"options");var t=[];if(e.algorithm!==undefined){r.string(e.algorithm,"options.algorithm");t=m(e.algorithm)}this.rs_alg=t;if(e.sign!==undefined){r.func(e.sign,"options.sign");this.rs_signFunc=e.sign}else if(t[0]==="hmac"&&e.key!==undefined){r.string(e.keyId,"options.keyId");this.rs_keyId=e.keyId;if(typeof e.key!=="string"&&!Buffer.isBuffer(e.key))throw new TypeError("options.key for HMAC must be a string or Buffer");this.rs_signer=i.createHmac(t[1].toUpperCase(),e.key);this.rs_signer.sign=function(){var e=this.digest("base64");return{hashAlgorithm:t[1],toString:function(){return e}}}}else if(e.key!==undefined){var n=e.key;if(typeof n==="string"||Buffer.isBuffer(n))n=s.parsePrivateKey(n);r.ok(s.PrivateKey.isPrivateKey(n,[1,2]),"options.key must be a sshpk.PrivateKey");this.rs_key=n;r.string(e.keyId,"options.keyId");this.rs_keyId=e.keyId;if(!p[n.type]){throw new d(n.type.toUpperCase()+" type "+"keys are not supported")}if(t[0]!==undefined&&n.type!==t[0]){throw new d("options.key must be a "+t[0].toUpperCase()+" key, was given a "+n.type.toUpperCase()+" key instead")}this.rs_signer=n.createSign(t[1])}else{throw new TypeError("options.sign (func) or options.key is required")}this.rs_headers=[];this.rs_lines=[]}RequestSigner.prototype.writeHeader=function(e,t){r.string(e,"header");e=e.toLowerCase();r.string(t,"value");this.rs_headers.push(e);if(this.rs_signFunc){this.rs_lines.push(e+": "+t)}else{var n=e+": "+t;if(this.rs_headers.length>0)n="\n"+n;this.rs_signer.update(n)}return t};RequestSigner.prototype.writeDateHeader=function(){return this.writeHeader("date",c.rfc1123(new Date))};RequestSigner.prototype.writeTarget=function(e,t){r.string(e,"method");r.string(t,"path");e=e.toLowerCase();this.writeHeader("(request-target)",e+" "+t)};RequestSigner.prototype.sign=function(e){r.func(e,"callback");if(this.rs_headers.length<1)throw new Error("At least one header must be signed");var t,n;if(this.rs_signFunc){var i=this.rs_lines.join("\n");var o=this;this.rs_signFunc(i,function(i,a){if(i){e(i);return}try{r.object(a,"signature");r.string(a.keyId,"signature.keyId");r.string(a.algorithm,"signature.algorithm");r.string(a.signature,"signature.signature");t=m(a.algorithm);n=l(v,a.keyId,a.algorithm,o.rs_headers.join(" "),a.signature)}catch(t){e(t);return}e(null,n)})}else{try{var a=this.rs_signer.sign()}catch(t){e(t);return}t=(this.rs_alg[0]||this.rs_key.type)+"-"+a.hashAlgorithm;var s=a.toString();n=l(v,this.rs_keyId,t,this.rs_headers.join(" "),s);e(null,n)}};e.exports={isSigner:function(e){if(typeof e==="object"&&e instanceof RequestSigner)return true;return false},createSigner:function createSigner(e){return new RequestSigner(e)},signRequest:function signRequest(e,t){r.object(e,"request");r.object(t,"options");r.optionalString(t.algorithm,"options.algorithm");r.string(t.keyId,"options.keyId");r.optionalArrayOfString(t.headers,"options.headers");r.optionalString(t.httpVersion,"options.httpVersion");if(!e.getHeader("Date"))e.setHeader("Date",c.rfc1123(new Date));if(!t.headers)t.headers=["date"];if(!t.httpVersion)t.httpVersion="1.1";var n=[];if(t.algorithm){t.algorithm=t.algorithm.toLowerCase();n=m(t.algorithm)}var o;var a="";for(o=0;o<t.headers.length;o++){if(typeof t.headers[o]!=="string")throw new TypeError("options.headers must be an array of Strings");var u=t.headers[o].toLowerCase();if(u==="request-line"){if(!t.strict){a+=e.method+" "+e.path+" HTTP/"+t.httpVersion}else{throw new StrictParsingError("request-line is not a valid header "+"with strict parsing enabled.")}}else if(u==="(request-target)"){a+="(request-target): "+e.method.toLowerCase()+" "+e.path}else{var h=e.getHeader(u);if(h===undefined||h===""){throw new MissingHeaderError(u+" was not in the request")}a+=u+": "+h}if(o+1<t.headers.length)a+="\n"}if(e.hasOwnProperty("_stringToSign")){e._stringToSign=a}var g;if(n[0]==="hmac"){if(typeof t.key!=="string"&&!Buffer.isBuffer(t.key))throw new TypeError("options.key must be a string or Buffer");var y=i.createHmac(n[1].toUpperCase(),t.key);y.update(a);g=y.digest("base64")}else{var b=t.key;if(typeof b==="string"||Buffer.isBuffer(b))b=s.parsePrivateKey(t.key);r.ok(s.PrivateKey.isPrivateKey(b,[1,2]),"options.key must be a sshpk.PrivateKey");if(!p[b.type]){throw new d(b.type.toUpperCase()+" type "+"keys are not supported")}if(n[0]!==undefined&&b.type!==n[0]){throw new d("options.key must be a "+n[0].toUpperCase()+" key, was given a "+b.type.toUpperCase()+" key instead")}var w=b.createSign(n[1]);w.update(a);var x=w.sign();if(!f[x.hashAlgorithm]){throw new d(x.hashAlgorithm.toUpperCase()+" is not a supported hash algorithm")}t.algorithm=b.type+"-"+x.hashAlgorithm;g=x.toString();r.notStrictEqual(g,"","empty signature produced")}var k=t.authorizationHeaderName||"Authorization";e.setHeader(k,l(v,t.keyId,t.algorithm,t.headers.join(" "),g));return true}}},5529:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(7840);e.exports={readJson:r(i.readFile),readJsonSync:i.readFileSync,writeJson:r(i.writeFile),writeJsonSync:i.writeFileSync}},5531:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(5897));const o=r(n(816));const a=n(1612);const s=e=>{const t=o.default(process.argv.slice(2),{string:["local-config"],alias:{"local-config":"A"}});const n=t["local-config"];if(Array.isArray(n)){throw new a.InvalidLocalConfig(n)}if(!n){return i.default.join(e,"now.json")}return i.default.resolve(e,n)};t.default=s},5548:function(e,t,n){"use strict";var r=n(774);var i=n(6401);var o=n(7822);var a=n(9217);var s=n(2350);var c=n(2984);var u=n(9335).Buffer;function OAuth(e){this.request=e;this.params=null}OAuth.prototype.buildParams=function(e,t,n,r,i,o){var c={};for(var u in e){c["oauth_"+u]=e[u]}if(!c.oauth_version){c.oauth_version="1.0"}if(!c.oauth_timestamp){c.oauth_timestamp=Math.floor(Date.now()/1e3).toString()}if(!c.oauth_nonce){c.oauth_nonce=a().replace(/-/g,"")}if(!c.oauth_signature_method){c.oauth_signature_method="HMAC-SHA1"}var l=c.oauth_consumer_secret||c.oauth_private_key;delete c.oauth_consumer_secret;delete c.oauth_private_key;var f=c.oauth_token_secret;delete c.oauth_token_secret;var p=c.oauth_realm;delete c.oauth_realm;delete c.oauth_transport_method;var d=t.protocol+"//"+t.host+t.pathname;var h=o.parse([].concat(r,i,o.stringify(c)).join("&"));c.oauth_signature=s.sign(c.oauth_signature_method,n,d,h,l,f);if(p){c.realm=p}return c};OAuth.prototype.buildBodyHash=function(e,t){if(["HMAC-SHA1","RSA-SHA1"].indexOf(e.signature_method||"HMAC-SHA1")<0){this.request.emit("error",new Error("oauth: "+e.signature_method+" signature_method not supported with body_hash signing."))}var n=c.createHash("sha1");n.update(t||"");var r=n.digest("hex");return u.from(r,"hex").toString("base64")};OAuth.prototype.concatParams=function(e,t,n){n=n||"";var r=Object.keys(e).filter(function(e){return e!=="realm"&&e!=="oauth_signature"}).sort();if(e.realm){r.splice(0,0,"realm")}r.push("oauth_signature");return r.map(function(t){return t+"="+n+s.rfc3986(e[t])+n}).join(t)};OAuth.prototype.onRequest=function(e){var t=this;t.params=e;var n=t.request.uri||{};var a=t.request.method||"";var s=o(t.request.headers);var c=t.request.body||"";var u=t.request.qsLib||i;var l;var f;var p=s.get("content-type")||"";var d="application/x-www-form-urlencoded";var h=e.transport_method||"header";if(p.slice(0,d.length)===d){p=d;l=c}if(n.query){f=n.query}if(h==="body"&&(a!=="POST"||p!==d)){t.request.emit("error",new Error("oauth: transport_method of body requires POST "+"and content-type "+d))}if(!l&&typeof e.body_hash==="boolean"){e.body_hash=t.buildBodyHash(e,t.request.body.toString())}var m=t.buildParams(e,n,a,f,l,u);switch(h){case"header":t.request.setHeader("Authorization","OAuth "+t.concatParams(m,",",'"'));break;case"query":var v=t.request.uri.href+=(f?"&":"?")+t.concatParams(m,"&");t.request.uri=r.parse(v);t.request.path=t.request.uri.path;break;case"body":t.request.body=(l?l+"&":"")+t.concatParams(m,"&");break;default:t.request.emit("error",new Error("oauth: transport_method invalid"))}};t.OAuth=OAuth},5568:function(e,t,n){var r=n(5994);var i=n(6878);function startOfISOYear(e){var t=r(e);var n=new Date(0);n.setFullYear(t,0,4);n.setHours(0,0,0,0);var o=i(n);return o}e.exports=startOfISOYear},5576:function(e){"use strict";e.exports=function copyDescriptor(e,t,n,r){if(!isObject(t)&&typeof t!=="function"){r=n;n=t;t=e}if(!isObject(e)&&typeof e!=="function"){throw new TypeError("expected the first argument to be an object")}if(!isObject(t)&&typeof t!=="function"){throw new TypeError("expected provider to be an object")}if(typeof r!=="string"){r=n}if(typeof n!=="string"){throw new TypeError("expected key to be a string")}if(!(n in t)){throw new Error('property "'+n+'" does not exist')}var i=Object.getOwnPropertyDescriptor(t,n);if(i)Object.defineProperty(e,r,i)};function isObject(e){return{}.toString.call(e)==="[object Object]"}},5580:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(7687));const o=r(n(5733));function getArgs(e,t,n={}){return i.default(Object.assign({},o.default(),t),Object.assign({},n,{argv:e}))}t.default=getArgs},5586:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(1647));function getTeamById(e,t){return r(this,void 0,void 0,function*(){const n=yield o.default(e);return n.find(e=>e.id===t)||null})}t.default=getTeamById},5593:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9544));function highlight(e){return i.default.bold.underline(e)}t.default=highlight},5594:function(e,t){"use strict";t.name=new Map([["0","File"],["","OldFile"],["1","Link"],["2","SymbolicLink"],["3","CharacterDevice"],["4","BlockDevice"],["5","Directory"],["6","FIFO"],["7","ContiguousFile"],["g","GlobalExtendedHeader"],["x","ExtendedHeader"],["A","SolarisACL"],["D","GNUDumpDir"],["I","Inode"],["K","NextFileHasLongLinkpath"],["L","NextFileHasLongPath"],["M","ContinuationFile"],["N","OldGnuLongPath"],["S","SparseFile"],["V","TapeVolumeHeader"],["X","OldExtendedHeader"]]);t.code=new Map(Array.from(t.name).map(e=>[e[1],e[0]]))},5598:function(e,t,n){t.f=n(5995)},5627:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=r(n(550));const o=n(7981);e.exports={mkdirs:i,mkdirsSync:o,mkdirp:i,mkdirpSync:o,ensureDir:i,ensureDirSync:o}},5633:function(e,t,n){var r=n(7774);var i=n(9476);var o="@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^ ?";var a={0:0,t:9,n:10,v:11,f:12,r:13};t.strToChars=function(e){var t=/(\[\\b\])|(\\)?\\(?:u([A-F0-9]{4})|x([A-F0-9]{2})|(0?[0-7]{2})|c([@A-Z\[\\\]\^?])|([0tnvfr]))/g;e=e.replace(t,function(e,t,n,r,i,s,c,u){if(n){return e}var l=t?8:r?parseInt(r,16):i?parseInt(i,16):s?parseInt(s,8):c?o.indexOf(c):a[u];var f=String.fromCharCode(l);if(/[\[\]{}\^$.|?*+()]/.test(f)){f="\\"+f}return f});return e};t.tokenizeClass=function(e,n){var o=[];var a=/\\(?:(w)|(d)|(s)|(W)|(D)|(S))|((?:(?:\\)(.)|([^\]\\]))-(?:\\)?([^\]]))|(\])|(?:\\)?(.)/g;var s,c;while((s=a.exec(e))!=null){if(s[1]){o.push(i.words())}else if(s[2]){o.push(i.ints())}else if(s[3]){o.push(i.whitespace())}else if(s[4]){o.push(i.notWords())}else if(s[5]){o.push(i.notInts())}else if(s[6]){o.push(i.notWhitespace())}else if(s[7]){o.push({type:r.RANGE,from:(s[8]||s[9]).charCodeAt(0),to:s[10].charCodeAt(0)})}else if(c=s[12]){o.push({type:r.CHAR,value:c.charCodeAt(0)})}else{return[o,a.lastIndex]}}t.error(n,"Unterminated character class")};t.error=function(e,t){throw new SyntaxError("Invalid regular expression: /"+e+"/: "+t)}},5635:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5897);const o=n(2617);const a=n(5627);const s=a.mkdirs;const c=a.mkdirsSync;const u=n(9034);const l=u.symlinkPaths;const f=u.symlinkPathsSync;const p=n(4802);const d=p.symlinkType;const h=p.symlinkTypeSync;const m=n(7346).pathExists;function createSymlink(e,t,n,r){r=typeof n==="function"?n:r;n=typeof n==="function"?false:n;m(t,(a,c)=>{if(a)return r(a);if(c)return r(null);l(e,t,(a,c)=>{if(a)return r(a);e=c.toDst;d(c.toCwd,n,(n,a)=>{if(n)return r(n);const c=i.dirname(t);m(c,(n,i)=>{if(n)return r(n);if(i)return o.symlink(e,t,a,r);s(c,n=>{if(n)return r(n);o.symlink(e,t,a,r)})})})})})}function createSymlinkSync(e,t,n){const r=o.existsSync(t);if(r)return undefined;const a=f(e,t);e=a.toDst;n=h(a.toCwd,n);const s=i.dirname(t);const u=o.existsSync(s);if(u)return o.symlinkSync(e,t,n);c(s);return o.symlinkSync(e,t,n)}e.exports={createSymlink:r(createSymlink),createSymlinkSync:createSymlinkSync}},5637:function(e,t){"use strict";var n=this&&this.__await||function(e){return this instanceof n?(this.v=e,this):new n(e)};var r=this&&this.__asyncGenerator||function(e,t,r){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var i=r.apply(e,t||[]),o,a=[];return o={},verb("next"),verb("throw"),verb("return"),o[Symbol.asyncIterator]=function(){return this},o;function verb(e){if(i[e])o[e]=function(t){return new Promise(function(n,r){a.push([e,t,n,r])>1||resume(e,t)})}}function resume(e,t){try{step(i[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof n?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume("next",e)}function reject(e){resume("throw",e)}function settle(e,t){if(e(t),a.shift(),a.length)resume(a[0][0],a[0][1])}};Object.defineProperty(t,"__esModule",{value:true});function eventListenerToGenerator(e,t){return r(this,arguments,function*eventListenerToGenerator_1(){while(true){yield yield n(new Promise(n=>{const r=(...i)=>{t.removeListener(e,r);n(...i)};t.on(e,r)}))}})}t.default=eventListenerToGenerator},5638:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function isDomainExternal(e){return e.serviceType!=="zeit.world"}t.default=isDomainExternal},5662:function(e,t,n){"use strict";const r=n(2255).fromCallback;e.exports={copy:r(n(8153))}},5667:function(e,t,n){"use strict";function Url(){this._protocol=null;this._href="";this._port=-1;this._query=null;this.auth=null;this.slashes=null;this.host=null;this.hostname=null;this.hash=null;this.search=null;this.pathname=null;this._prependSlash=false}var r=n(2721);Url.queryString=r;Url.prototype.parse=function Url$parse(e,t,n,r){if(typeof e!=="string"){throw new TypeError("Parameter 'url' must be a string, not "+typeof e)}var i=0;var o=e.length-1;while(e.charCodeAt(i)<=32)i++;while(e.charCodeAt(o)<=32)o--;i=this._parseProtocol(e,i,o);if(this._protocol!=="javascript"){i=this._parseHost(e,i,o,n);var a=this._protocol;if(!this.hostname&&(this.slashes||a&&!m[a])){this.hostname=this.host=""}}if(i<=o){var s=e.charCodeAt(i);if(s===47||s===92){this._parsePath(e,i,o,r)}else if(s===63){this._parseQuery(e,i,o,r)}else if(s===35){this._parseHash(e,i,o,r)}else if(this._protocol!=="javascript"){this._parsePath(e,i,o,r)}else{this.pathname=e.slice(i,o+1)}}if(!this.pathname&&this.hostname&&this._slashProtocols[this._protocol]){this.pathname="/"}if(t){var c=this.search;if(c==null){c=this.search=""}if(c.charCodeAt(0)===63){c=c.slice(1)}this.query=Url.queryString.parse(c)}};Url.prototype.resolve=function Url$resolve(e){return this.resolveObject(Url.parse(e,false,true)).format()};Url.prototype.format=function Url$format(){var e=this.auth||"";if(e){e=encodeURIComponent(e);e=e.replace(/%3A/i,":");e+="@"}var t=this.protocol||"";var n=this.pathname||"";var r=this.hash||"";var i=this.search||"";var s="";var c=this.hostname||"";var u=this.port||"";var l=false;var f="";var p=this.query;if(p&&typeof p==="object"){s=Url.queryString.stringify(p)}if(!i){i=s?"?"+s:""}if(t&&t.charCodeAt(t.length-1)!==58)t+=":";if(this.host){l=e+this.host}else if(c){var d=c.indexOf(":")>-1;if(d)c="["+c+"]";l=e+c+(u?":"+u:"")}var h=this.slashes||(!t||m[t])&&l!==false;if(t)f=t+(h?"//":"");else if(h)f="//";if(h&&n&&n.charCodeAt(0)!==47){n="/"+n}if(i&&i.charCodeAt(0)!==63)i="?"+i;if(r&&r.charCodeAt(0)!==35)r="#"+r;n=o(n);i=a(i);return f+(l===false?"":l)+n+i+r};Url.prototype.resolveObject=function Url$resolveObject(e){if(typeof e==="string")e=Url.parse(e,false,true);var t=this._clone();t.hash=e.hash;if(!e.href){t._href="";return t}if(e.slashes&&!e._protocol){e._copyPropsTo(t,true);if(m[t._protocol]&&t.hostname&&!t.pathname){t.pathname="/"}t._href="";return t}if(e._protocol&&e._protocol!==t._protocol){if(!m[e._protocol]){e._copyPropsTo(t,false);t._href="";return t}t._protocol=e._protocol;if(!e.host&&e._protocol!=="javascript"){var n=(e.pathname||"").split("/");while(n.length&&!(e.host=n.shift()));if(!e.host)e.host="";if(!e.hostname)e.hostname="";if(n[0]!=="")n.unshift("");if(n.length<2)n.unshift("");t.pathname=n.join("/")}else{t.pathname=e.pathname}t.search=e.search;t.host=e.host||"";t.auth=e.auth;t.hostname=e.hostname||e.host;t._port=e._port;t.slashes=t.slashes||e.slashes;t._href="";return t}var r=t.pathname&&t.pathname.charCodeAt(0)===47;var i=e.host||e.pathname&&e.pathname.charCodeAt(0)===47;var o=i||r||t.host&&e.pathname;var a=o;var s=t.pathname&&t.pathname.split("/")||[];var n=e.pathname&&e.pathname.split("/")||[];var c=t._protocol&&!m[t._protocol];if(c){t.hostname="";t._port=-1;if(t.host){if(s[0]==="")s[0]=t.host;else s.unshift(t.host)}t.host="";if(e._protocol){e.hostname="";e._port=-1;if(e.host){if(n[0]==="")n[0]=e.host;else n.unshift(e.host)}e.host=""}o=o&&(n[0]===""||s[0]==="")}if(i){t.host=e.host?e.host:t.host;t.hostname=e.hostname?e.hostname:t.hostname;t.search=e.search;s=n}else if(n.length){if(!s)s=[];s.pop();s=s.concat(n);t.search=e.search}else if(e.search){if(c){t.hostname=t.host=s.shift();var u=t.host&&t.host.indexOf("@")>0?t.host.split("@"):false;if(u){t.auth=u.shift();t.host=t.hostname=u.shift()}}t.search=e.search;t._href="";return t}if(!s.length){t.pathname=null;t._href="";return t}var l=s.slice(-1)[0];var f=(t.host||e.host)&&(l==="."||l==="..")||l==="";var p=0;for(var d=s.length;d>=0;d--){l=s[d];if(l==="."){s.splice(d,1)}else if(l===".."){s.splice(d,1);p++}else if(p){s.splice(d,1);p--}}if(!o&&!a){for(;p--;p){s.unshift("..")}}if(o&&s[0]!==""&&(!s[0]||s[0].charCodeAt(0)!==47)){s.unshift("")}if(f&&s.join("/").substr(-1)!=="/"){s.push("")}var h=s[0]===""||s[0]&&s[0].charCodeAt(0)===47;if(c){t.hostname=t.host=h?"":s.length?s.shift():"";var u=t.host&&t.host.indexOf("@")>0?t.host.split("@"):false;if(u){t.auth=u.shift();t.host=t.hostname=u.shift()}}o=o||t.host&&s.length;if(o&&!h){s.unshift("")}t.pathname=s.length===0?null:s.join("/");t.auth=e.auth||t.auth;t.slashes=t.slashes||e.slashes;t._href="";return t};var i=n(8053);Url.prototype._hostIdna=function Url$_hostIdna(e){return i.toASCII(e)};var o=Url.prototype._escapePathName=function Url$_escapePathName(e){if(!containsCharacter2(e,35,63)){return e}return _escapePath(e)};var a=Url.prototype._escapeSearch=function Url$_escapeSearch(e){if(!containsCharacter2(e,35,-1))return e;return _escapeSearch(e)};Url.prototype._parseProtocol=function Url$_parseProtocol(e,t,n){var r=false;var i=this._protocolCharacters;for(var o=t;o<=n;++o){var a=e.charCodeAt(o);if(a===58){var s=e.slice(t,o);if(r)s=s.toLowerCase();this._protocol=s;return o+1}else if(i[a]===1){if(a<97)r=true}else{return t}}return t};Url.prototype._parseAuth=function Url$_parseAuth(e,t,n,r){var i=e.slice(t,n+1);if(r){i=decodeURIComponent(i)}this.auth=i};Url.prototype._parsePort=function Url$_parsePort(e,t,n){var r=0;var i=false;var o=true;for(var a=t;a<=n;++a){var s=e.charCodeAt(a);if(48<=s&&s<=57){r=10*r+(s-48);i=true}else{o=false;if(s===92||s===47){o=true}break}}if(r===0&&!i||!o){if(!o){this._port=-2}return 0}this._port=r;return a-t};Url.prototype._parseHost=function Url$_parseHost(e,t,n,r){var i=this._hostEndingCharacters;var o=e.charCodeAt(t);var a=e.charCodeAt(t+1);if((o===47||o===92)&&(a===47||a===92)){this.slashes=true;if(t===0){if(n<2)return t;var s=containsCharacter(e,64,2,i);if(!s&&!r){this.slashes=null;return t}}t+=2}else if(!this._protocol||m[this._protocol]){return t}var c=false;var u=false;var l=t;var f=n;var p=-1;var d=0;var h=0;var v=false;var g=-1;for(var y=t;y<=n;++y){var b=e.charCodeAt(y);if(b===64){g=y}else if(b===37){v=true}else if(i[b]===1){break}}if(g>-1){this._parseAuth(e,t,g-1,v);t=l=g+1}if(e.charCodeAt(t)===91){for(var y=t+1;y<=n;++y){var b=e.charCodeAt(y);if(b===93){if(e.charCodeAt(y+1)===58){d=this._parsePort(e,y+2,n)+1}var w=e.slice(t+1,y).toLowerCase();this.hostname=w;this.host=this._port>0?"["+w+"]:"+this._port:"["+w+"]";this.pathname="/";return y+d+1}}return t}for(var y=t;y<=n;++y){if(h>62){this.hostname=this.host=e.slice(t,y);return y}var b=e.charCodeAt(y);if(b===58){d=this._parsePort(e,y+1,n)+1;f=y-1;break}else if(b<97){if(b===46){h=-1}else if(65<=b&&b<=90){c=true}else if(!(b===45||b===95||b===43||48<=b&&b<=57)){if(i[b]===0&&this._noPrependSlashHostEnders[b]===0){this._prependSlash=true}f=y-1;break}}else if(b>=123){if(b<=126){if(this._noPrependSlashHostEnders[b]===0){this._prependSlash=true}f=y-1;break}u=true}p=b;h++}if(f+1!==t&&f-l<=256){var w=e.slice(l,f+1);if(c)w=w.toLowerCase();if(u)w=this._hostIdna(w);this.hostname=w;this.host=this._port>0?w+":"+this._port:w}return f+1+d};Url.prototype._copyPropsTo=function Url$_copyPropsTo(e,t){if(!t){e._protocol=this._protocol}e._href=this._href;e._port=this._port;e._prependSlash=this._prependSlash;e.auth=this.auth;e.slashes=this.slashes;e.host=this.host;e.hostname=this.hostname;e.hash=this.hash;e.search=this.search;e.pathname=this.pathname};Url.prototype._clone=function Url$_clone(){var e=new Url;e._protocol=this._protocol;e._href=this._href;e._port=this._port;e._prependSlash=this._prependSlash;e.auth=this.auth;e.slashes=this.slashes;e.host=this.host;e.hostname=this.hostname;e.hash=this.hash;e.search=this.search;e.pathname=this.pathname;return e};Url.prototype._getComponentEscaped=function Url$_getComponentEscaped(e,t,n,r){var i=t;var o=t;var a="";var s=r?this._afterQueryAutoEscapeMap:this._autoEscapeMap;for(;o<=n;++o){var c=e.charCodeAt(o);var u=s[c];if(u!==""&&u!==undefined){if(i<o)a+=e.slice(i,o);a+=u;i=o+1}}if(i<o+1)a+=e.slice(i,o);return a};Url.prototype._parsePath=function Url$_parsePath(e,t,n,r){var i=t;var o=n;var a=false;var s=this._autoEscapeCharacters;var c=this._port===-2?"/:":"";for(var u=t;u<=n;++u){var l=e.charCodeAt(u);if(l===35){this._parseHash(e,u,n,r);o=u-1;break}else if(l===63){this._parseQuery(e,u,n,r);o=u-1;break}else if(!r&&!a&&s[l]===1){a=true}}if(i>o){this.pathname=c===""?"/":c;return}var f;if(a){f=this._getComponentEscaped(e,i,o,false)}else{f=e.slice(i,o+1)}this.pathname=c===""?this._prependSlash?"/"+f:f:c+f};Url.prototype._parseQuery=function Url$_parseQuery(e,t,n,r){var i=t;var o=n;var a=false;var s=this._autoEscapeCharacters;for(var c=t;c<=n;++c){var u=e.charCodeAt(c);if(u===35){this._parseHash(e,c,n,r);o=c-1;break}else if(!r&&!a&&s[u]===1){a=true}}if(i>o){this.search="";return}var l;if(a){l=this._getComponentEscaped(e,i,o,true)}else{l=e.slice(i,o+1)}this.search=l};Url.prototype._parseHash=function Url$_parseHash(e,t,n,r){if(t>n){this.hash="";return}this.hash=r?e.slice(t,n+1):this._getComponentEscaped(e,t,n,true)};Object.defineProperty(Url.prototype,"port",{get:function(){if(this._port>=0){return""+this._port}return null},set:function(e){if(e==null){this._port=-1}else{this._port=parseInt(e,10)}}});Object.defineProperty(Url.prototype,"query",{get:function(){var e=this._query;if(e!=null){return e}var t=this.search;if(t){if(t.charCodeAt(0)===63){t=t.slice(1)}if(t!==""){this._query=t;return t}}return t},set:function(e){this._query=e}});Object.defineProperty(Url.prototype,"path",{get:function(){var e=this.pathname||"";var t=this.search||"";if(e||t){return e+t}return e==null&&t?"/"+t:null},set:function(){}});Object.defineProperty(Url.prototype,"protocol",{get:function(){var e=this._protocol;return e?e+":":e},set:function(e){if(typeof e==="string"){var t=e.length-1;if(e.charCodeAt(t)===58){this._protocol=e.slice(0,t)}else{this._protocol=e}}else if(e==null){this._protocol=null}}});Object.defineProperty(Url.prototype,"href",{get:function(){var e=this._href;if(!e){e=this._href=this.format()}return e},set:function(e){this._href=e}});Url.parse=function Url$Parse(e,t,n,r){if(e instanceof Url)return e;var i=new Url;i.parse(e,!!t,!!n,!!r);return i};Url.format=function Url$Format(e){if(typeof e==="string"){e=Url.parse(e)}if(!(e instanceof Url)){return Url.prototype.format.call(e)}return e.format()};Url.resolve=function Url$Resolve(e,t){return Url.parse(e,false,true).resolve(t)};Url.resolveObject=function Url$ResolveObject(e,t){if(!e)return t;return Url.parse(e,false,true).resolveObject(t)};function _escapePath(e){return e.replace(/[?#]/g,function(e){return encodeURIComponent(e)})}function _escapeSearch(e){return e.replace(/#/g,function(e){return encodeURIComponent(e)})}function containsCharacter(e,t,n,r){var i=e.length;for(var o=n;o<i;++o){var a=e.charCodeAt(o);if(a===t){return true}else if(r[a]===1){return false}}return false}function containsCharacter2(e,t,n){for(var r=0,i=e.length;r<i;++r){var o=e.charCodeAt(r);if(o===t||o===n)return true}return false}function makeAsciiTable(e){var t=new Uint8Array(128);e.forEach(function(e){if(typeof e==="number"){t[e]=1}else{var n=e[0];var r=e[1];for(var i=n;i<=r;++i){t[i]=1}}});return t}var s=["<",">",'"',"`"," ","\r","\n","\t","{","}","|","\\","^","`","'"];var c=new Array(128);for(var u=0,l=c.length;u<l;++u){c[u]=""}for(var u=0,l=s.length;u<l;++u){var p=s[u];var d=encodeURIComponent(p);if(d===p){d=escape(p)}c[p.charCodeAt(0)]=d}var h=c.slice();c[92]="/";var m=Url.prototype._slashProtocols={http:true,https:true,gopher:true,file:true,ftp:true,"http:":true,"https:":true,"gopher:":true,"file:":true,"ftp:":true};function f(){}f.prototype=m;Url.prototype._protocolCharacters=makeAsciiTable([[97,122],[65,90],46,43,45]);Url.prototype._hostEndingCharacters=makeAsciiTable([35,63,47,92]);Url.prototype._autoEscapeCharacters=makeAsciiTable(s.map(function(e){return e.charCodeAt(0)}));Url.prototype._noPrependSlashHostEnders=makeAsciiTable(["<",">","'","`"," ","\r","\n","\t","{","}","|","^","`",'"',"%",";"].map(function(e){return e.charCodeAt(0)}));Url.prototype._autoEscapeMap=c;Url.prototype._afterQueryAutoEscapeMap=h;e.exports=Url;Url.replace=function Url$Replace(){n.c.url={exports:Url}}},5668:function(e){"use strict";e.exports=unpipe;function hasPipeDataListeners(e){var t=e.listeners("data");for(var n=0;n<t.length;n++){if(t[n].name==="ondata"){return true}}return false}function unpipe(e){if(!e){throw new TypeError("argument stream is required")}if(typeof e.unpipe==="function"){e.unpipe();return}if(!hasPipeDataListeners(e)){return}var t;var n=e.listeners("close");for(var r=0;r<n.length;r++){t=n[r];if(t.name!=="cleanup"&&t.name!=="onclose"){continue}t.call(e)}}},5671:function(e,t,n){var r=n(6324);var i=n(3215);var o={};var a=Object.keys(r);function wrapRaw(e){var t=function(t){if(t===undefined||t===null){return t}if(arguments.length>1){t=Array.prototype.slice.call(arguments)}return e(t)};if("conversion"in e){t.conversion=e.conversion}return t}function wrapRounded(e){var t=function(t){if(t===undefined||t===null){return t}if(arguments.length>1){t=Array.prototype.slice.call(arguments)}var n=e(t);if(typeof n==="object"){for(var r=n.length,i=0;i<r;i++){n[i]=Math.round(n[i])}}return n};if("conversion"in e){t.conversion=e.conversion}return t}a.forEach(function(e){o[e]={};Object.defineProperty(o[e],"channels",{value:r[e].channels});Object.defineProperty(o[e],"labels",{value:r[e].labels});var t=i(e);var n=Object.keys(t);n.forEach(function(n){var r=t[n];o[e][n]=wrapRounded(r);o[e][n].raw=wrapRaw(r)})});e.exports=o},5695:function(e,t,n){"use strict";function __export(e){for(var n in e)if(!t.hasOwnProperty(n))t[n]=e[n]}var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});if(!Symbol.asyncIterator){Symbol.asyncIterator=Symbol.for("Symbol.asyncIterator")}const i=r(n(5781));t.createDeployment=i.default(2);t.createLegacyDeployment=i.default(1);__export(n(2347))},5700:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(3930);const a=process.platform==="win32";function defaults(e){const t=["unlink","chmod","stat","lstat","rmdir","readdir"];t.forEach(t=>{e[t]=e[t]||r[t];t=t+"Sync";e[t]=e[t]||r[t]});e.maxBusyTries=e.maxBusyTries||3}function rimraf(e,t,n){let r=0;if(typeof t==="function"){n=t;t={}}o(e,"rimraf: missing path");o.strictEqual(typeof e,"string","rimraf: path should be a string");o.strictEqual(typeof n,"function","rimraf: callback function required");o(t,"rimraf: invalid options argument provided");o.strictEqual(typeof t,"object","rimraf: options should be object");defaults(t);rimraf_(e,t,function CB(i){if(i){if((i.code==="EBUSY"||i.code==="ENOTEMPTY"||i.code==="EPERM")&&r<t.maxBusyTries){r++;const n=r*100;return setTimeout(()=>rimraf_(e,t,CB),n)}if(i.code==="ENOENT")i=null}n(i)})}function rimraf_(e,t,n){o(e);o(t);o(typeof n==="function");t.lstat(e,(r,i)=>{if(r&&r.code==="ENOENT"){return n(null)}if(r&&r.code==="EPERM"&&a){return fixWinEPERM(e,t,r,n)}if(i&&i.isDirectory()){return rmdir(e,t,r,n)}t.unlink(e,r=>{if(r){if(r.code==="ENOENT"){return n(null)}if(r.code==="EPERM"){return a?fixWinEPERM(e,t,r,n):rmdir(e,t,r,n)}if(r.code==="EISDIR"){return rmdir(e,t,r,n)}}return n(r)})})}function fixWinEPERM(e,t,n,r){o(e);o(t);o(typeof r==="function");if(n){o(n instanceof Error)}t.chmod(e,438,i=>{if(i){r(i.code==="ENOENT"?null:n)}else{t.stat(e,(i,o)=>{if(i){r(i.code==="ENOENT"?null:n)}else if(o.isDirectory()){rmdir(e,t,n,r)}else{t.unlink(e,r)}})}})}function fixWinEPERMSync(e,t,n){let r;o(e);o(t);if(n){o(n instanceof Error)}try{t.chmodSync(e,438)}catch(e){if(e.code==="ENOENT"){return}else{throw n}}try{r=t.statSync(e)}catch(e){if(e.code==="ENOENT"){return}else{throw n}}if(r.isDirectory()){rmdirSync(e,t,n)}else{t.unlinkSync(e)}}function rmdir(e,t,n,r){o(e);o(t);if(n){o(n instanceof Error)}o(typeof r==="function");t.rmdir(e,i=>{if(i&&(i.code==="ENOTEMPTY"||i.code==="EEXIST"||i.code==="EPERM")){rmkids(e,t,r)}else if(i&&i.code==="ENOTDIR"){r(n)}else{r(i)}})}function rmkids(e,t,n){o(e);o(t);o(typeof n==="function");t.readdir(e,(r,o)=>{if(r)return n(r);let a=o.length;let s;if(a===0)return t.rmdir(e,n);o.forEach(r=>{rimraf(i.join(e,r),t,r=>{if(s){return}if(r)return n(s=r);if(--a===0){t.rmdir(e,n)}})})})}function rimrafSync(e,t){let n;t=t||{};defaults(t);o(e,"rimraf: missing path");o.strictEqual(typeof e,"string","rimraf: path should be a string");o(t,"rimraf: missing options");o.strictEqual(typeof t,"object","rimraf: options should be object");try{n=t.lstatSync(e)}catch(n){if(n.code==="ENOENT"){return}if(n.code==="EPERM"&&a){fixWinEPERMSync(e,t,n)}}try{if(n&&n.isDirectory()){rmdirSync(e,t,null)}else{t.unlinkSync(e)}}catch(n){if(n.code==="ENOENT"){return}else if(n.code==="EPERM"){return a?fixWinEPERMSync(e,t,n):rmdirSync(e,t,n)}else if(n.code!=="EISDIR"){throw n}rmdirSync(e,t,n)}}function rmdirSync(e,t,n){o(e);o(t);if(n){o(n instanceof Error)}try{t.rmdirSync(e)}catch(r){if(r.code==="ENOTDIR"){throw n}else if(r.code==="ENOTEMPTY"||r.code==="EEXIST"||r.code==="EPERM"){rmkidsSync(e,t)}else if(r.code!=="ENOENT"){throw r}}}function rmkidsSync(e,t){o(e);o(t);t.readdirSync(e).forEach(n=>rimrafSync(i.join(e,n),t));if(a){const n=Date.now();do{try{const n=t.rmdirSync(e,t);return n}catch(e){}}while(Date.now()-n<500)}else{const n=t.rmdirSync(e,t);return n}}e.exports=rimraf;rimraf.sync=rimrafSync},5711:function(e,t,n){var r=n(8901);var i=n(649);var o=n(9544);var a=n(1471);var s=n(7063);e.exports=Prompt;function Prompt(){a.apply(this,arguments);var e=true;r.extend(this.opt,{filter:function(t){var n=e;if(t!=null&&t!==""){n=/^y(es)?/i.test(t)}return n}});if(r.isBoolean(this.opt.default)){e=this.opt.default}this.opt.default=e?"Y/n":"y/N";return this}i.inherits(Prompt,a);Prompt.prototype._run=function(e){this.done=e;var t=s(this.rl);t.keypress.takeUntil(t.line).forEach(this.onKeypress.bind(this));t.line.take(1).forEach(this.onEnd.bind(this));this.render();return this};Prompt.prototype.render=function(e){var t=this.getQuestion();if(typeof e==="boolean"){t+=o.cyan(e?"Yes":"No")}else{t+=this.rl.line}this.screen.render(t);return this};Prompt.prototype.onEnd=function(e){this.status="answered";var t=this.opt.filter(e);this.render(t);this.screen.done();this.done(t)};Prompt.prototype.onKeypress=function(){this.render()}},5718:function(e){"use strict";e.exports=function(e){if(typeof Buffer.allocUnsafe==="function"){try{return Buffer.allocUnsafe(e)}catch(t){return new Buffer(e)}}return new Buffer(e)}},5723:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(6080));const a=i(n(416));const s=i(n(6127));const c=i(n(9735));const u=n(4229);const l=n(5897);const f=n(2041);const p=n(1640);const d=process.platform==="win32";const h=s.default("@zeit/fun:providers/native");class NativeProvider{constructor(e,t){const n={create:this.createProcess.bind(this),destroy:this.destroyProcess.bind(this)};const r={min:0,max:10,acquireTimeoutMillis:o.default("5s")};this.lambda=e;this.params=t;this.runtimeApis=new WeakMap;this.pool=u.createPool(n,r);this.pool.on("factoryCreateError",e=>{console.error("factoryCreateError",{err:e})});this.pool.on("factoryDestroyError",e=>{console.error("factoryDestroyError",{err:e})})}createProcess(){return r(this,void 0,void 0,function*(){const{runtime:e,params:t,region:n,version:i,extractedDir:o}=this.lambda;const s=l.join(e.cacheDir,"bin");const u=l.join(e.cacheDir,d?"bootstrap.js":"bootstrap");const m=new p.RuntimeServer(this.lambda);yield c.default(m,0,"127.0.0.1");const{port:v}=m.address();h("Creating process %o",u);const g=l.resolve(o||t.Code.Directory);const y=t.FunctionName||l.basename(g);const b=typeof t.MemorySize==="number"?t.MemorySize:128;const w=`aws/lambda/${y}`;const x=`2019/01/12/[${i}]${a.default().replace(/\-/g,"")}`;const k=Object.assign({PATH:`${s}${l.delimiter}${process.env.PATH}`,LANG:"en_US.UTF-8"},t.Environment&&t.Environment.Variables,{_HANDLER:t.Handler,AWS_REGION:n,AWS_ACCESS_KEY_ID:t.AccessKeyId,AWS_SECRET_ACCESS_KEY:t.SecretAccessKey,AWS_DEFAULT_REGION:n,AWS_EXECUTION_ENV:`AWS_Lambda_${t.Runtime}`,AWS_LAMBDA_FUNCTION_NAME:y,AWS_LAMBDA_FUNCTION_VERSION:i,AWS_LAMBDA_FUNCTION_MEMORY_SIZE:String(t.MemorySize||128),AWS_LAMBDA_RUNTIME_API:`127.0.0.1:${v}`,AWS_LAMBDA_LOG_GROUP_NAME:w,AWS_LAMBDA_LOG_STREAM_NAME:x,LAMBDA_RUNTIME_DIR:e.cacheDir,LAMBDA_TASK_ROOT:g,TZ:":UTC"});let j=u;const S=[];if(d){S.push(u);j=process.execPath}const E=f.spawn(j,S,{env:k,cwd:g,stdio:["ignore","inherit","inherit"]});this.runtimeApis.set(E,m);E.on("exit",(e,t)=>r(this,void 0,void 0,function*(){h("Process (pid=%o) exited with code %o, signal %o",E.pid,e,t);const n=this.runtimeApis.get(E);if(n){h("Shutting down Runtime API for %o",E.pid);n.close();this.runtimeApis.delete(E)}else{h("No Runtime API server associated with process %o. This SHOULD NOT happen!",E.pid)}}));return E})}destroyProcess(e){return r(this,void 0,void 0,function*(){try{this.unfreezeProcess(e);h("Stopping process %o",e.pid);process.kill(e.pid,"SIGTERM")}catch(e){if(e.code!=="ESRCH"){throw e}}})}freezeProcess(e){if(!d){h("Freezing process %o",e.pid);process.kill(e.pid,"SIGSTOP")}}unfreezeProcess(e){if(!d){h("Unfreezing process %o",e.pid);process.kill(e.pid,"SIGCONT")}}invoke(e){return r(this,void 0,void 0,function*(){let t;const n=yield this.pool.acquire();const r=this.runtimeApis.get(n);if(r.initDeferred){h("Waiting for init on process %o",n.pid);const e=yield r.initDeferred.promise;if(e){h("Lambda got initialization error on process %o",n.pid);yield this.pool.destroy(n);return e}h("Lambda is initialized for process %o",n.pid)}else{this.unfreezeProcess(n)}try{t=yield r.invoke(e)}catch(e){t={StatusCode:200,FunctionError:"Unhandled",ExecutedVersion:"$LATEST",Payload:JSON.stringify({errorMessage:e.message})}}if(t.FunctionError==="Unhandled"){yield this.pool.destroy(n)}else{this.freezeProcess(n);yield this.pool.release(n)}return t})}destroy(){return r(this,void 0,void 0,function*(){h("Draining pool");yield this.pool.drain();this.pool.clear()})}}t.default=NativeProvider},5725:function(e,t,n){var r=n(9705);var i=n(8856);var o=n(7978);e.exports=unbzip2Stream;function unbzip2Stream(){var e=[];var t=0;var n=0;var a=false;var s=false;var c=null;var u=null;function decompressBlock(e){if(!n){n=i.header(c);return true}else{var t=1e5*n;var r=new Int32Array(t);var o=[];var a=function(e){o.push(e)};u=i.decompress(c,a,r,t,u);if(u===null){n=0;return false}else{e(Buffer.from(o));return true}}}var l=0;function decompressAndQueue(e){if(a)return;try{return decompressBlock(function(t){e.queue(t);if(t!==null){l+=t.length}else{}})}catch(t){e.emit("error",t);a=true;return false}}return r(function write(r){e.push(r);t+=r.length;if(c===null){c=o(function(){return e.shift()})}while(!a&&t-c.bytesRead+1>=(25e3+1e5*n||4)){decompressAndQueue(this)}},function end(e){while(!a&&t>c.bytesRead){decompressAndQueue(this)}if(!a){if(u!==null)stream.emit("error",new Error("input stream ended prematurely"));this.queue(null)}})}},5733:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});const n={"--help":Boolean,"-h":"--help","--platform-version":Number,"-V":"--platform-version","--debug":Boolean,"-d":"--debug","--token":String,"-t":"--token","--scope":String,"-S":"--scope","--team":String,"-T":"--team","--local-config":String,"-A":"--local-config","--global-config":String,"-Q":"--global-config","--api":String,"--target":String};t.default=(()=>n)},5760:function(e){"use strict";e.exports=function generate_const(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f="valid"+i;var p=e.opts.$data&&a&&a.$data,d;if(p){r+=" var schema"+i+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ";d="schema"+i}else{d=a}if(!p){r+=" var schema"+i+" = validate.schema"+s+";"}r+="var "+f+" = equal("+l+", schema"+i+"); if (!"+f+") { ";var h=h||[];h.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"const"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { allowedValue: schema"+i+" } ";if(e.opts.messages!==false){r+=" , message: 'should be equal to constant' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var m=r;r=h.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+m+"]); "}else{r+=" validate.errors = ["+m+"]; return false; "}}else{r+=" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+=" }";if(u){r+=" else { "}return r}},5772:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(7889).invalidWin32Path;const a=parseInt("0777",8);function mkdirs(e,t,n,s){if(typeof t==="function"){n=t;t={}}else if(!t||typeof t!=="object"){t={mode:t}}if(process.platform==="win32"&&o(e)){const t=new Error(e+" contains invalid WIN32 path characters.");t.code="EINVAL";return n(t)}let c=t.mode;const u=t.fs||r;if(c===undefined){c=a&~process.umask()}if(!s)s=null;n=n||function(){};e=i.resolve(e);u.mkdir(e,c,r=>{if(!r){s=s||e;return n(null,s)}switch(r.code){case"ENOENT":if(i.dirname(e)===e)return n(r);mkdirs(i.dirname(e),t,(r,i)=>{if(r)n(r,i);else mkdirs(e,t,n,i)});break;default:u.stat(e,(e,t)=>{if(e||!t.isDirectory())n(r,s);else n(null,s)});break}})}e.exports=mkdirs},5774:function(e,t,n){var r=n(1485);var i=n(6878);var o=n(5568);var a=6048e5;function getISOWeek(e){var t=r(e);var n=i(t).getTime()-o(t).getTime();return Math.round(n/a)+1}e.exports=getISOWeek},5775:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(4573));const s=i(n(8303));const c=n(8715);const u=i(n(586));const l=i(n(378));function add(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:f}=e;const{currentTeam:p}=f;const{apiUrl:d}=e;const h=t["--debug"];const m=new a.default({apiUrl:d,token:r,currentTeam:p,debug:h});let v=null;try{({contextName:v}=yield s.default(m))}catch(e){if(e.code==="NOT_AUTHORIZED"){i.error(e.message);return 1}throw e}if(n.length!==2){i.error(`Invalid number of arguments. Usage: ${o.default.cyan("`now dns import <domain> <zonefile>`")}`);return 1}const g=u.default();const[y,b]=n;const w=yield l.default(m,v,y,b);if(w instanceof c.DomainNotFound){i.error(`The domain ${y} can't be found under ${o.default.bold(v)} ${o.default.gray(g())}`);return 1}if(w instanceof c.InvalidDomain){i.error(`The domain ${y} doesn't match with the one found in the Zone file ${o.default.gray(g())}`);return 1}console.log(`${o.default.cyan("> Success!")} ${w.length} DNS records for domain ${o.default.bold(y)} created under ${o.default.bold(v)} ${o.default.gray(g())}`);return 0})}t.default=add},5780:function(e){e.exports=function(e,t){return t||{}}},5781:function(e,t,n){"use strict";var r=this&&this.__await||function(e){return this instanceof r?(this.v=e,this):new r(e)};var i=this&&this.__rest||function(e,t){var n={};for(var r in e)if(Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0)n[r]=e[r];if(e!=null&&typeof Object.getOwnPropertySymbols==="function")for(var i=0,r=Object.getOwnPropertySymbols(e);i<r.length;i++){if(t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i]))n[r[i]]=e[r[i]]}return n};var o=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof __values==="function"?__values(e):e[Symbol.iterator](),n={},verb("next"),verb("throw"),verb("return"),n[Symbol.asyncIterator]=function(){return this},n);function verb(t){n[t]=e[t]&&function(n){return new Promise(function(r,i){n=e[t](n),settle(r,i,n.done,n.value)})}}function settle(e,t,n,r){Promise.resolve(r).then(function(t){e({value:t,done:n})},t)}};var a=this&&this.__asyncGenerator||function(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var i=n.apply(e,t||[]),o,a=[];return o={},verb("next"),verb("throw"),verb("return"),o[Symbol.asyncIterator]=function(){return this},o;function verb(e){if(i[e])o[e]=function(t){return new Promise(function(n,r){a.push([e,t,n,r])>1||resume(e,t)})}}function resume(e,t){try{step(i[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof r?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume("next",e)}function reject(e){resume("throw",e)}function settle(e,t){if(e(t),a.shift(),a.length)resume(a[0][0],a[0][1])}};var s=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var c=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const u=n(7479);const l=s(n(412));const f=n(5897);const p=c(n(8213));const d=s(n(5877));const h=n(8841);const m=n(2347);var v=n(8841);t.EVENTS=v.EVENTS;function buildCreateDeployment(e){return function createDeployment(t,n={},s){return a(this,arguments,function*createDeployment_1(){var a,c;const v=h.createDebug(n.debug);const g=process.cwd();v("Creating deployment...");if(typeof t!=="string"&&!Array.isArray(t)){v(`Error: 'path' is expected to be a string or an array. Received ${typeof t}`);throw new m.DeploymentError({code:"missing_path",message:"Path not provided"})}if(typeof n.token!=="string"){v(`Error: 'token' is expected to be a string. Received ${typeof n.token}`);throw new m.DeploymentError({code:"token_not_provided",message:"Options object must include a `token`"})}const y=!Array.isArray(t)&&u.lstatSync(t).isDirectory();let b;if(y&&!Array.isArray(t)){v(`Provided 'path' is a directory. Reading subpaths... `);b=yield r(u.readdir(t));v(`Read ${b.length} subpaths`)}else if(Array.isArray(t)){v(`Provided 'path' is an array of file paths`);b=t}else{v(`Provided 'path' is a single file`);b=[t]}let w=yield r(h.getNowIgnore(t));v(`Found ${w.ignores.length} rules in .nowignore`);let x;v("Building file tree...");if(y&&!Array.isArray(t)){const e=yield r(l.default(t));const n=e.map(e=>f.relative(process.cwd(),e));x=w.filter(n).map(e=>f.join(process.cwd(),e));v(`Read ${x.length} files in the specified directory`)}else if(Array.isArray(t)){x=t;v(`Assigned ${x.length} files provided explicitly`)}else{x=[t];v(`Deploying the provided path as single file`)}if(!s){const e="now.json";const t=x.find(t=>f.relative(g,t)===e);v(t?`Found ${e}`:`Missing ${e}`);s=yield r(h.parseNowJSON(t))}if(e===1&&s&&Array.isArray(s.files)&&s.files.length>0){v("Filtering file list based on `files` key in now.json");const e=new Set(["Dockerfile"]);const t=new Set;s.files.forEach(n=>{if(u.lstatSync(n).isDirectory()){t.add(n)}else{e.add(n)}});x=x.filter(n=>{const r=f.relative(g,n);if(e.has(r)){return true}for(let e of t){if(r.startsWith(e+"/")){return true}}return false});v(`Found ${x.length} files: ${JSON.stringify(x)}`)}if(x.length===0||x.every(e=>{if(!e){return true}const t=e.split("/");return t[t.length-1].startsWith(".")})){v(`Deployment path has no files (or only dotfiles). Yielding a warning event`);yield yield r({type:"warning",payload:"There are no files (or only files starting with a dot) inside your deployment."})}const k=yield r(p.default(x));v(`Yielding a 'hashes-calculated' event with ${k.size} hashes`);yield yield r({type:"hashes-calculated",payload:p.mapToObject(k)});const{token:j,teamId:S,force:E,defaultName:_,debug:C}=n,A=i(n,["token","teamId","force","defaultName","debug"]);v(`Setting platform version to ${e}`);A.version=e;const O={debug:C,totalFiles:k.size,nowConfig:s,token:j,isDirectory:y,path:t,teamId:S,force:E,defaultName:_,metadata:A};v(`Creating the deployment and starting upload...`);try{for(var F=o(d.default(k,O)),D;D=yield r(F.next()),!D.done;){const e=D.value;v(`Yielding a '${e.type}' event`);yield yield r(e)}}catch(e){a={error:e}}finally{try{if(D&&!D.done&&(c=F.return))yield r(c.call(F))}finally{if(a)throw a.error}}})}}t.default=buildCreateDeployment},5798:function(e,t,n){"use strict";t=e.exports=cliWidth;function normalizeOpts(e){var t={defaultWidth:0,output:process.stdout,tty:n(8859)};if(!e){return t}else{Object.keys(t).forEach(function(n){if(!e[n]){e[n]=t[n]}});return e}}function cliWidth(e){var t=normalizeOpts(e);if(t.output.getWindowSize){return t.output.getWindowSize()[0]||t.defaultWidth}else{if(t.tty.getWindowSize){return t.tty.getWindowSize()[1]||t.defaultWidth}else{if(t.output.columns){return t.output.columns}else{if(process.env.CLI_WIDTH){var n=parseInt(process.env.CLI_WIDTH,10);if(!isNaN(n)&&n!==0){return n}}}return t.defaultWidth}}}},5799:function(e,t){t=e.exports=SemVer;var n;if(typeof process==="object"&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG))n=function(){var e=Array.prototype.slice.call(arguments,0);e.unshift("SEMVER");console.log.apply(console,e)};else n=function(){};t.SEMVER_SPEC_VERSION="2.0.0";var r=256;var i=Number.MAX_SAFE_INTEGER||9007199254740991;var o=16;var a=t.re=[];var s=t.src=[];var c=0;var u=c++;s[u]="0|[1-9]\\d*";var l=c++;s[l]="[0-9]+";var f=c++;s[f]="\\d*[a-zA-Z-][a-zA-Z0-9-]*";var p=c++;s[p]="("+s[u]+")\\."+"("+s[u]+")\\."+"("+s[u]+")";var d=c++;s[d]="("+s[l]+")\\."+"("+s[l]+")\\."+"("+s[l]+")";var h=c++;s[h]="(?:"+s[u]+"|"+s[f]+")";var m=c++;s[m]="(?:"+s[l]+"|"+s[f]+")";var v=c++;s[v]="(?:-("+s[h]+"(?:\\."+s[h]+")*))";var g=c++;s[g]="(?:-?("+s[m]+"(?:\\."+s[m]+")*))";var y=c++;s[y]="[0-9A-Za-z-]+";var b=c++;s[b]="(?:\\+("+s[y]+"(?:\\."+s[y]+")*))";var w=c++;var x="v?"+s[p]+s[v]+"?"+s[b]+"?";s[w]="^"+x+"$";var k="[v=\\s]*"+s[d]+s[g]+"?"+s[b]+"?";var j=c++;s[j]="^"+k+"$";var S=c++;s[S]="((?:<|>)?=?)";var E=c++;s[E]=s[l]+"|x|X|\\*";var _=c++;s[_]=s[u]+"|x|X|\\*";var C=c++;s[C]="[v=\\s]*("+s[_]+")"+"(?:\\.("+s[_]+")"+"(?:\\.("+s[_]+")"+"(?:"+s[v]+")?"+s[b]+"?"+")?)?";var A=c++;s[A]="[v=\\s]*("+s[E]+")"+"(?:\\.("+s[E]+")"+"(?:\\.("+s[E]+")"+"(?:"+s[g]+")?"+s[b]+"?"+")?)?";var O=c++;s[O]="^"+s[S]+"\\s*"+s[C]+"$";var F=c++;s[F]="^"+s[S]+"\\s*"+s[A]+"$";var D=c++;s[D]="(?:^|[^\\d])"+"(\\d{1,"+o+"})"+"(?:\\.(\\d{1,"+o+"}))?"+"(?:\\.(\\d{1,"+o+"}))?"+"(?:$|[^\\d])";var T=c++;s[T]="(?:~>?)";var I=c++;s[I]="(\\s*)"+s[T]+"\\s+";a[I]=new RegExp(s[I],"g");var R="$1~";var P=c++;s[P]="^"+s[T]+s[C]+"$";var B=c++;s[B]="^"+s[T]+s[A]+"$";var N=c++;s[N]="(?:\\^)";var z=c++;s[z]="(\\s*)"+s[N]+"\\s+";a[z]=new RegExp(s[z],"g");var L="$1^";var M=c++;s[M]="^"+s[N]+s[C]+"$";var U=c++;s[U]="^"+s[N]+s[A]+"$";var q=c++;s[q]="^"+s[S]+"\\s*("+k+")$|^$";var H=c++;s[H]="^"+s[S]+"\\s*("+x+")$|^$";var G=c++;s[G]="(\\s*)"+s[S]+"\\s*("+k+"|"+s[C]+")";a[G]=new RegExp(s[G],"g");var W="$1$2$3";var V=c++;s[V]="^\\s*("+s[C]+")"+"\\s+-\\s+"+"("+s[C]+")"+"\\s*$";var J=c++;s[J]="^\\s*("+s[A]+")"+"\\s+-\\s+"+"("+s[A]+")"+"\\s*$";var Y=c++;s[Y]="(<|>)?=?\\s*\\*";for(var Z=0;Z<c;Z++){n(Z,s[Z]);if(!a[Z])a[Z]=new RegExp(s[Z])}t.parse=parse;function parse(e,t){if(e instanceof SemVer)return e;if(typeof e!=="string")return null;if(e.length>r)return null;var n=t?a[j]:a[w];if(!n.test(e))return null;try{return new SemVer(e,t)}catch(e){return null}}t.valid=valid;function valid(e,t){var n=parse(e,t);return n?n.version:null}t.clean=clean;function clean(e,t){var n=parse(e.trim().replace(/^[=v]+/,""),t);return n?n.version:null}t.SemVer=SemVer;function SemVer(e,t){if(e instanceof SemVer){if(e.loose===t)return e;else e=e.version}else if(typeof e!=="string"){throw new TypeError("Invalid Version: "+e)}if(e.length>r)throw new TypeError("version is longer than "+r+" characters");if(!(this instanceof SemVer))return new SemVer(e,t);n("SemVer",e,t);this.loose=t;var o=e.trim().match(t?a[j]:a[w]);if(!o)throw new TypeError("Invalid Version: "+e);this.raw=e;this.major=+o[1];this.minor=+o[2];this.patch=+o[3];if(this.major>i||this.major<0)throw new TypeError("Invalid major version");if(this.minor>i||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>i||this.patch<0)throw new TypeError("Invalid patch version");if(!o[4])this.prerelease=[];else this.prerelease=o[4].split(".").map(function(e){if(/^[0-9]+$/.test(e)){var t=+e;if(t>=0&&t<i)return t}return e});this.build=o[5]?o[5].split("."):[];this.format()}SemVer.prototype.format=function(){this.version=this.major+"."+this.minor+"."+this.patch;if(this.prerelease.length)this.version+="-"+this.prerelease.join(".");return this.version};SemVer.prototype.toString=function(){return this.version};SemVer.prototype.compare=function(e){n("SemVer.compare",this.version,this.loose,e);if(!(e instanceof SemVer))e=new SemVer(e,this.loose);return this.compareMain(e)||this.comparePre(e)};SemVer.prototype.compareMain=function(e){if(!(e instanceof SemVer))e=new SemVer(e,this.loose);return compareIdentifiers(this.major,e.major)||compareIdentifiers(this.minor,e.minor)||compareIdentifiers(this.patch,e.patch)};SemVer.prototype.comparePre=function(e){if(!(e instanceof SemVer))e=new SemVer(e,this.loose);if(this.prerelease.length&&!e.prerelease.length)return-1;else if(!this.prerelease.length&&e.prerelease.length)return 1;else if(!this.prerelease.length&&!e.prerelease.length)return 0;var t=0;do{var r=this.prerelease[t];var i=e.prerelease[t];n("prerelease compare",t,r,i);if(r===undefined&&i===undefined)return 0;else if(i===undefined)return 1;else if(r===undefined)return-1;else if(r===i)continue;else return compareIdentifiers(r,i)}while(++t)};SemVer.prototype.inc=function(e,t){switch(e){case"premajor":this.prerelease.length=0;this.patch=0;this.minor=0;this.major++;this.inc("pre",t);break;case"preminor":this.prerelease.length=0;this.patch=0;this.minor++;this.inc("pre",t);break;case"prepatch":this.prerelease.length=0;this.inc("patch",t);this.inc("pre",t);break;case"prerelease":if(this.prerelease.length===0)this.inc("patch",t);this.inc("pre",t);break;case"major":if(this.minor!==0||this.patch!==0||this.prerelease.length===0)this.major++;this.minor=0;this.patch=0;this.prerelease=[];break;case"minor":if(this.patch!==0||this.prerelease.length===0)this.minor++;this.patch=0;this.prerelease=[];break;case"patch":if(this.prerelease.length===0)this.patch++;this.prerelease=[];break;case"pre":if(this.prerelease.length===0)this.prerelease=[0];else{var n=this.prerelease.length;while(--n>=0){if(typeof this.prerelease[n]==="number"){this.prerelease[n]++;n=-2}}if(n===-1)this.prerelease.push(0)}if(t){if(this.prerelease[0]===t){if(isNaN(this.prerelease[1]))this.prerelease=[t,0]}else this.prerelease=[t,0]}break;default:throw new Error("invalid increment argument: "+e)}this.format();this.raw=this.version;return this};t.inc=inc;function inc(e,t,n,r){if(typeof n==="string"){r=n;n=undefined}try{return new SemVer(e,n).inc(t,r).version}catch(e){return null}}t.diff=diff;function diff(e,t){if(eq(e,t)){return null}else{var n=parse(e);var r=parse(t);if(n.prerelease.length||r.prerelease.length){for(var i in n){if(i==="major"||i==="minor"||i==="patch"){if(n[i]!==r[i]){return"pre"+i}}}return"prerelease"}for(var i in n){if(i==="major"||i==="minor"||i==="patch"){if(n[i]!==r[i]){return i}}}}}t.compareIdentifiers=compareIdentifiers;var X=/^[0-9]+$/;function compareIdentifiers(e,t){var n=X.test(e);var r=X.test(t);if(n&&r){e=+e;t=+t}return n&&!r?-1:r&&!n?1:e<t?-1:e>t?1:0}t.rcompareIdentifiers=rcompareIdentifiers;function rcompareIdentifiers(e,t){return compareIdentifiers(t,e)}t.major=major;function major(e,t){return new SemVer(e,t).major}t.minor=minor;function minor(e,t){return new SemVer(e,t).minor}t.patch=patch;function patch(e,t){return new SemVer(e,t).patch}t.compare=compare;function compare(e,t,n){return new SemVer(e,n).compare(new SemVer(t,n))}t.compareLoose=compareLoose;function compareLoose(e,t){return compare(e,t,true)}t.rcompare=rcompare;function rcompare(e,t,n){return compare(t,e,n)}t.sort=sort;function sort(e,n){return e.sort(function(e,r){return t.compare(e,r,n)})}t.rsort=rsort;function rsort(e,n){return e.sort(function(e,r){return t.rcompare(e,r,n)})}t.gt=gt;function gt(e,t,n){return compare(e,t,n)>0}t.lt=lt;function lt(e,t,n){return compare(e,t,n)<0}t.eq=eq;function eq(e,t,n){return compare(e,t,n)===0}t.neq=neq;function neq(e,t,n){return compare(e,t,n)!==0}t.gte=gte;function gte(e,t,n){return compare(e,t,n)>=0}t.lte=lte;function lte(e,t,n){return compare(e,t,n)<=0}t.cmp=cmp;function cmp(e,t,n,r){var i;switch(t){case"===":if(typeof e==="object")e=e.version;if(typeof n==="object")n=n.version;i=e===n;break;case"!==":if(typeof e==="object")e=e.version;if(typeof n==="object")n=n.version;i=e!==n;break;case"":case"=":case"==":i=eq(e,n,r);break;case"!=":i=neq(e,n,r);break;case">":i=gt(e,n,r);break;case">=":i=gte(e,n,r);break;case"<":i=lt(e,n,r);break;case"<=":i=lte(e,n,r);break;default:throw new TypeError("Invalid operator: "+t)}return i}t.Comparator=Comparator;function Comparator(e,t){if(e instanceof Comparator){if(e.loose===t)return e;else e=e.value}if(!(this instanceof Comparator))return new Comparator(e,t);n("comparator",e,t);this.loose=t;this.parse(e);if(this.semver===Q)this.value="";else this.value=this.operator+this.semver.version;n("comp",this)}var Q={};Comparator.prototype.parse=function(e){var t=this.loose?a[q]:a[H];var n=e.match(t);if(!n)throw new TypeError("Invalid comparator: "+e);this.operator=n[1];if(this.operator==="=")this.operator="";if(!n[2])this.semver=Q;else this.semver=new SemVer(n[2],this.loose)};Comparator.prototype.toString=function(){return this.value};Comparator.prototype.test=function(e){n("Comparator.test",e,this.loose);if(this.semver===Q)return true;if(typeof e==="string")e=new SemVer(e,this.loose);return cmp(e,this.operator,this.semver,this.loose)};Comparator.prototype.intersects=function(e,t){if(!(e instanceof Comparator)){throw new TypeError("a Comparator is required")}var n;if(this.operator===""){n=new Range(e.value,t);return satisfies(this.value,n,t)}else if(e.operator===""){n=new Range(this.value,t);return satisfies(e.semver,n,t)}var r=(this.operator===">="||this.operator===">")&&(e.operator===">="||e.operator===">");var i=(this.operator==="<="||this.operator==="<")&&(e.operator==="<="||e.operator==="<");var o=this.semver.version===e.semver.version;var a=(this.operator===">="||this.operator==="<=")&&(e.operator===">="||e.operator==="<=");var s=cmp(this.semver,"<",e.semver,t)&&((this.operator===">="||this.operator===">")&&(e.operator==="<="||e.operator==="<"));var c=cmp(this.semver,">",e.semver,t)&&((this.operator==="<="||this.operator==="<")&&(e.operator===">="||e.operator===">"));return r||i||o&&a||s||c};t.Range=Range;function Range(e,t){if(e instanceof Range){if(e.loose===t){return e}else{return new Range(e.raw,t)}}if(e instanceof Comparator){return new Range(e.value,t)}if(!(this instanceof Range))return new Range(e,t);this.loose=t;this.raw=e;this.set=e.split(/\s*\|\|\s*/).map(function(e){return this.parseRange(e.trim())},this).filter(function(e){return e.length});if(!this.set.length){throw new TypeError("Invalid SemVer Range: "+e)}this.format()}Range.prototype.format=function(){this.range=this.set.map(function(e){return e.join(" ").trim()}).join("||").trim();return this.range};Range.prototype.toString=function(){return this.range};Range.prototype.parseRange=function(e){var t=this.loose;e=e.trim();n("range",e,t);var r=t?a[J]:a[V];e=e.replace(r,hyphenReplace);n("hyphen replace",e);e=e.replace(a[G],W);n("comparator trim",e,a[G]);e=e.replace(a[I],R);e=e.replace(a[z],L);e=e.split(/\s+/).join(" ");var i=t?a[q]:a[H];var o=e.split(" ").map(function(e){return parseComparator(e,t)}).join(" ").split(/\s+/);if(this.loose){o=o.filter(function(e){return!!e.match(i)})}o=o.map(function(e){return new Comparator(e,t)});return o};Range.prototype.intersects=function(e,t){if(!(e instanceof Range)){throw new TypeError("a Range is required")}return this.set.some(function(n){return n.every(function(n){return e.set.some(function(e){return e.every(function(e){return n.intersects(e,t)})})})})};t.toComparators=toComparators;function toComparators(e,t){return new Range(e,t).set.map(function(e){return e.map(function(e){return e.value}).join(" ").trim().split(" ")})}function parseComparator(e,t){n("comp",e);e=replaceCarets(e,t);n("caret",e);e=replaceTildes(e,t);n("tildes",e);e=replaceXRanges(e,t);n("xrange",e);e=replaceStars(e,t);n("stars",e);return e}function isX(e){return!e||e.toLowerCase()==="x"||e==="*"}function replaceTildes(e,t){return e.trim().split(/\s+/).map(function(e){return replaceTilde(e,t)}).join(" ")}function replaceTilde(e,t){var r=t?a[B]:a[P];return e.replace(r,function(t,r,i,o,a){n("tilde",e,t,r,i,o,a);var s;if(isX(r))s="";else if(isX(i))s=">="+r+".0.0 <"+(+r+1)+".0.0";else if(isX(o))s=">="+r+"."+i+".0 <"+r+"."+(+i+1)+".0";else if(a){n("replaceTilde pr",a);if(a.charAt(0)!=="-")a="-"+a;s=">="+r+"."+i+"."+o+a+" <"+r+"."+(+i+1)+".0"}else s=">="+r+"."+i+"."+o+" <"+r+"."+(+i+1)+".0";n("tilde return",s);return s})}function replaceCarets(e,t){return e.trim().split(/\s+/).map(function(e){return replaceCaret(e,t)}).join(" ")}function replaceCaret(e,t){n("caret",e,t);var r=t?a[U]:a[M];return e.replace(r,function(t,r,i,o,a){n("caret",e,t,r,i,o,a);var s;if(isX(r))s="";else if(isX(i))s=">="+r+".0.0 <"+(+r+1)+".0.0";else if(isX(o)){if(r==="0")s=">="+r+"."+i+".0 <"+r+"."+(+i+1)+".0";else s=">="+r+"."+i+".0 <"+(+r+1)+".0.0"}else if(a){n("replaceCaret pr",a);if(a.charAt(0)!=="-")a="-"+a;if(r==="0"){if(i==="0")s=">="+r+"."+i+"."+o+a+" <"+r+"."+i+"."+(+o+1);else s=">="+r+"."+i+"."+o+a+" <"+r+"."+(+i+1)+".0"}else s=">="+r+"."+i+"."+o+a+" <"+(+r+1)+".0.0"}else{n("no pr");if(r==="0"){if(i==="0")s=">="+r+"."+i+"."+o+" <"+r+"."+i+"."+(+o+1);else s=">="+r+"."+i+"."+o+" <"+r+"."+(+i+1)+".0"}else s=">="+r+"."+i+"."+o+" <"+(+r+1)+".0.0"}n("caret return",s);return s})}function replaceXRanges(e,t){n("replaceXRanges",e,t);return e.split(/\s+/).map(function(e){return replaceXRange(e,t)}).join(" ")}function replaceXRange(e,t){e=e.trim();var r=t?a[F]:a[O];return e.replace(r,function(t,r,i,o,a,s){n("xRange",e,t,r,i,o,a,s);var c=isX(i);var u=c||isX(o);var l=u||isX(a);var f=l;if(r==="="&&f)r="";if(c){if(r===">"||r==="<"){t="<0.0.0"}else{t="*"}}else if(r&&f){if(u)o=0;if(l)a=0;if(r===">"){r=">=";if(u){i=+i+1;o=0;a=0}else if(l){o=+o+1;a=0}}else if(r==="<="){r="<";if(u)i=+i+1;else o=+o+1}t=r+i+"."+o+"."+a}else if(u){t=">="+i+".0.0 <"+(+i+1)+".0.0"}else if(l){t=">="+i+"."+o+".0 <"+i+"."+(+o+1)+".0"}n("xRange return",t);return t})}function replaceStars(e,t){n("replaceStars",e,t);return e.trim().replace(a[Y],"")}function hyphenReplace(e,t,n,r,i,o,a,s,c,u,l,f,p){if(isX(n))t="";else if(isX(r))t=">="+n+".0.0";else if(isX(i))t=">="+n+"."+r+".0";else t=">="+t;if(isX(c))s="";else if(isX(u))s="<"+(+c+1)+".0.0";else if(isX(l))s="<"+c+"."+(+u+1)+".0";else if(f)s="<="+c+"."+u+"."+l+"-"+f;else s="<="+s;return(t+" "+s).trim()}Range.prototype.test=function(e){if(!e)return false;if(typeof e==="string")e=new SemVer(e,this.loose);for(var t=0;t<this.set.length;t++){if(testSet(this.set[t],e))return true}return false};function testSet(e,t){for(var r=0;r<e.length;r++){if(!e[r].test(t))return false}if(t.prerelease.length){for(var r=0;r<e.length;r++){n(e[r].semver);if(e[r].semver===Q)continue;if(e[r].semver.prerelease.length>0){var i=e[r].semver;if(i.major===t.major&&i.minor===t.minor&&i.patch===t.patch)return true}}return false}return true}t.satisfies=satisfies;function satisfies(e,t,n){try{t=new Range(t,n)}catch(e){return false}return t.test(e)}t.maxSatisfying=maxSatisfying;function maxSatisfying(e,t,n){var r=null;var i=null;try{var o=new Range(t,n)}catch(e){return null}e.forEach(function(e){if(o.test(e)){if(!r||i.compare(e)===-1){r=e;i=new SemVer(r,n)}}});return r}t.minSatisfying=minSatisfying;function minSatisfying(e,t,n){var r=null;var i=null;try{var o=new Range(t,n)}catch(e){return null}e.forEach(function(e){if(o.test(e)){if(!r||i.compare(e)===1){r=e;i=new SemVer(r,n)}}});return r}t.validRange=validRange;function validRange(e,t){try{return new Range(e,t).range||"*"}catch(e){return null}}t.ltr=ltr;function ltr(e,t,n){return outside(e,t,"<",n)}t.gtr=gtr;function gtr(e,t,n){return outside(e,t,">",n)}t.outside=outside;function outside(e,t,n,r){e=new SemVer(e,r);t=new Range(t,r);var i,o,a,s,c;switch(n){case">":i=gt;o=lte;a=lt;s=">";c=">=";break;case"<":i=lt;o=gte;a=gt;s="<";c="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(satisfies(e,t,r)){return false}for(var u=0;u<t.set.length;++u){var l=t.set[u];var f=null;var p=null;l.forEach(function(e){if(e.semver===Q){e=new Comparator(">=0.0.0")}f=f||e;p=p||e;if(i(e.semver,f.semver,r)){f=e}else if(a(e.semver,p.semver,r)){p=e}});if(f.operator===s||f.operator===c){return false}if((!p.operator||p.operator===s)&&o(e,p.semver)){return false}else if(p.operator===c&&a(e,p.semver)){return false}}return true}t.prerelease=prerelease;function prerelease(e,t){var n=parse(e,t);return n&&n.prerelease.length?n.prerelease:null}t.intersects=intersects;function intersects(e,t,n){e=new Range(e,n);t=new Range(t,n);return e.intersects(t)}t.coerce=coerce;function coerce(e){if(e instanceof SemVer)return e;if(typeof e!=="string")return null;var t=e.match(a[D]);if(t==null)return null;return parse((t[1]||"0")+"."+(t[2]||"0")+"."+(t[3]||"0"))}},5807:function(e){"use strict";e.exports=function generate_validate(e,t,n){var r="";var i=e.schema.$async===true,o=e.util.schemaHasRulesExcept(e.schema,e.RULES.all,"$ref"),a=e.self._getId(e.schema);if(e.opts.strictKeywords){var s=e.util.schemaUnknownRules(e.schema,e.RULES.keywords);if(s){var c="unknown keyword: "+s;if(e.opts.strictKeywords==="log")e.logger.warn(c);else throw new Error(c)}}if(e.isTop){r+=" var validate = ";if(i){e.async=true;r+="async "}r+="function(data, dataPath, parentData, parentDataProperty, rootData) { 'use strict'; ";if(a&&(e.opts.sourceCode||e.opts.processCode)){r+=" "+("/*# sourceURL="+a+" */")+" "}}if(typeof e.schema=="boolean"||!(o||e.schema.$ref)){var t="false schema";var u=e.level;var l=e.dataLevel;var f=e.schema[t];var p=e.schemaPath+e.util.getProperty(t);var d=e.errSchemaPath+"/"+t;var h=!e.opts.allErrors;var m;var v="data"+(l||"");var g="valid"+u;if(e.schema===false){if(e.isTop){h=true}else{r+=" var "+g+" = false; "}var y=y||[];y.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+(m||"false schema")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(d)+" , params: {} ";if(e.opts.messages!==false){r+=" , message: 'boolean schema is false' "}if(e.opts.verbose){r+=" , schema: false , parentSchema: validate.schema"+e.schemaPath+" , data: "+v+" "}r+=" } "}else{r+=" {} "}var b=r;r=y.pop();if(!e.compositeRule&&h){if(e.async){r+=" throw new ValidationError(["+b+"]); "}else{r+=" validate.errors = ["+b+"]; return false; "}}else{r+=" var err = "+b+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}}else{if(e.isTop){if(i){r+=" return data; "}else{r+=" validate.errors = null; return true; "}}else{r+=" var "+g+" = true; "}}if(e.isTop){r+=" }; return validate; "}return r}if(e.isTop){var w=e.isTop,u=e.level=0,l=e.dataLevel=0,v="data";e.rootId=e.resolve.fullPath(e.self._getId(e.root.schema));e.baseId=e.baseId||e.rootId;delete e.isTop;e.dataPathArr=[undefined];if(e.schema.default!==undefined&&e.opts.useDefaults&&e.opts.strictDefaults){var x="default is ignored in the schema root";if(e.opts.strictDefaults==="log")e.logger.warn(x);else throw new Error(x)}r+=" var vErrors = null; ";r+=" var errors = 0; ";r+=" if (rootData === undefined) rootData = data; "}else{var u=e.level,l=e.dataLevel,v="data"+(l||"");if(a)e.baseId=e.resolve.url(e.baseId,a);if(i&&!e.async)throw new Error("async schema in sync schema");r+=" var errs_"+u+" = errors;"}var g="valid"+u,h=!e.opts.allErrors,k="",j="";var m;var S=e.schema.type,E=Array.isArray(S);if(S&&e.opts.nullable&&e.schema.nullable===true){if(E){if(S.indexOf("null")==-1)S=S.concat("null")}else if(S!="null"){S=[S,"null"];E=true}}if(E&&S.length==1){S=S[0];E=false}if(e.schema.$ref&&o){if(e.opts.extendRefs=="fail"){throw new Error('$ref: validation keywords used in schema at path "'+e.errSchemaPath+'" (see option extendRefs)')}else if(e.opts.extendRefs!==true){o=false;e.logger.warn('$ref: keywords ignored in schema at path "'+e.errSchemaPath+'"')}}if(e.schema.$comment&&e.opts.$comment){r+=" "+e.RULES.all.$comment.code(e,"$comment")}if(S){if(e.opts.coerceTypes){var _=e.util.coerceToTypes(e.opts.coerceTypes,S)}var C=e.RULES.types[S];if(_||E||C===true||C&&!$shouldUseGroup(C)){var p=e.schemaPath+".type",d=e.errSchemaPath+"/type";var p=e.schemaPath+".type",d=e.errSchemaPath+"/type",A=E?"checkDataTypes":"checkDataType";r+=" if ("+e.util[A](S,v,true)+") { ";if(_){var O="dataType"+u,F="coerced"+u;r+=" var "+O+" = typeof "+v+"; ";if(e.opts.coerceTypes=="array"){r+=" if ("+O+" == 'object' && Array.isArray("+v+")) "+O+" = 'array'; "}r+=" var "+F+" = undefined; ";var D="";var T=_;if(T){var I,R=-1,P=T.length-1;while(R<P){I=T[R+=1];if(R){r+=" if ("+F+" === undefined) { ";D+="}"}if(e.opts.coerceTypes=="array"&&I!="array"){r+=" if ("+O+" == 'array' && "+v+".length == 1) { "+F+" = "+v+" = "+v+"[0]; "+O+" = typeof "+v+"; } "}if(I=="string"){r+=" if ("+O+" == 'number' || "+O+" == 'boolean') "+F+" = '' + "+v+"; else if ("+v+" === null) "+F+" = ''; "}else if(I=="number"||I=="integer"){r+=" if ("+O+" == 'boolean' || "+v+" === null || ("+O+" == 'string' && "+v+" && "+v+" == +"+v+" ";if(I=="integer"){r+=" && !("+v+" % 1)"}r+=")) "+F+" = +"+v+"; "}else if(I=="boolean"){r+=" if ("+v+" === 'false' || "+v+" === 0 || "+v+" === null) "+F+" = false; else if ("+v+" === 'true' || "+v+" === 1) "+F+" = true; "}else if(I=="null"){r+=" if ("+v+" === '' || "+v+" === 0 || "+v+" === false) "+F+" = null; "}else if(e.opts.coerceTypes=="array"&&I=="array"){r+=" if ("+O+" == 'string' || "+O+" == 'number' || "+O+" == 'boolean' || "+v+" == null) "+F+" = ["+v+"]; "}}}r+=" "+D+" if ("+F+" === undefined) { ";var y=y||[];y.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+(m||"type")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(d)+" , params: { type: '";if(E){r+=""+S.join(",")}else{r+=""+S}r+="' } ";if(e.opts.messages!==false){r+=" , message: 'should be ";if(E){r+=""+S.join(",")}else{r+=""+S}r+="' "}if(e.opts.verbose){r+=" , schema: validate.schema"+p+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+v+" "}r+=" } "}else{r+=" {} "}var b=r;r=y.pop();if(!e.compositeRule&&h){if(e.async){r+=" throw new ValidationError(["+b+"]); "}else{r+=" validate.errors = ["+b+"]; return false; "}}else{r+=" var err = "+b+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+=" } else { ";var B=l?"data"+(l-1||""):"parentData",N=l?e.dataPathArr[l]:"parentDataProperty";r+=" "+v+" = "+F+"; ";if(!l){r+="if ("+B+" !== undefined)"}r+=" "+B+"["+N+"] = "+F+"; } "}else{var y=y||[];y.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+(m||"type")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(d)+" , params: { type: '";if(E){r+=""+S.join(",")}else{r+=""+S}r+="' } ";if(e.opts.messages!==false){r+=" , message: 'should be ";if(E){r+=""+S.join(",")}else{r+=""+S}r+="' "}if(e.opts.verbose){r+=" , schema: validate.schema"+p+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+v+" "}r+=" } "}else{r+=" {} "}var b=r;r=y.pop();if(!e.compositeRule&&h){if(e.async){r+=" throw new ValidationError(["+b+"]); "}else{r+=" validate.errors = ["+b+"]; return false; "}}else{r+=" var err = "+b+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}}r+=" } "}}if(e.schema.$ref&&!o){r+=" "+e.RULES.all.$ref.code(e,"$ref")+" ";if(h){r+=" } if (errors === ";if(w){r+="0"}else{r+="errs_"+u}r+=") { ";j+="}"}}else{var z=e.RULES;if(z){var C,L=-1,M=z.length-1;while(L<M){C=z[L+=1];if($shouldUseGroup(C)){if(C.type){r+=" if ("+e.util.checkDataType(C.type,v)+") { "}if(e.opts.useDefaults){if(C.type=="object"&&e.schema.properties){var f=e.schema.properties,U=Object.keys(f);var q=U;if(q){var H,G=-1,W=q.length-1;while(G<W){H=q[G+=1];var V=f[H];if(V.default!==undefined){var J=v+e.util.getProperty(H);if(e.compositeRule){if(e.opts.strictDefaults){var x="default is ignored for: "+J;if(e.opts.strictDefaults==="log")e.logger.warn(x);else throw new Error(x)}}else{r+=" if ("+J+" === undefined ";if(e.opts.useDefaults=="empty"){r+=" || "+J+" === null || "+J+" === '' "}r+=" ) "+J+" = ";if(e.opts.useDefaults=="shared"){r+=" "+e.useDefault(V.default)+" "}else{r+=" "+JSON.stringify(V.default)+" "}r+="; "}}}}}else if(C.type=="array"&&Array.isArray(e.schema.items)){var Y=e.schema.items;if(Y){var V,R=-1,Z=Y.length-1;while(R<Z){V=Y[R+=1];if(V.default!==undefined){var J=v+"["+R+"]";if(e.compositeRule){if(e.opts.strictDefaults){var x="default is ignored for: "+J;if(e.opts.strictDefaults==="log")e.logger.warn(x);else throw new Error(x)}}else{r+=" if ("+J+" === undefined ";if(e.opts.useDefaults=="empty"){r+=" || "+J+" === null || "+J+" === '' "}r+=" ) "+J+" = ";if(e.opts.useDefaults=="shared"){r+=" "+e.useDefault(V.default)+" "}else{r+=" "+JSON.stringify(V.default)+" "}r+="; "}}}}}}var X=C.rules;if(X){var Q,K=-1,$=X.length-1;while(K<$){Q=X[K+=1];if($shouldUseRule(Q)){var ee=Q.code(e,Q.keyword,C.type);if(ee){r+=" "+ee+" ";if(h){k+="}"}}}}}if(h){r+=" "+k+" ";k=""}if(C.type){r+=" } ";if(S&&S===C.type&&!_){r+=" else { ";var p=e.schemaPath+".type",d=e.errSchemaPath+"/type";var y=y||[];y.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+(m||"type")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(d)+" , params: { type: '";if(E){r+=""+S.join(",")}else{r+=""+S}r+="' } ";if(e.opts.messages!==false){r+=" , message: 'should be ";if(E){r+=""+S.join(",")}else{r+=""+S}r+="' "}if(e.opts.verbose){r+=" , schema: validate.schema"+p+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+v+" "}r+=" } "}else{r+=" {} "}var b=r;r=y.pop();if(!e.compositeRule&&h){if(e.async){r+=" throw new ValidationError(["+b+"]); "}else{r+=" validate.errors = ["+b+"]; return false; "}}else{r+=" var err = "+b+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+=" } "}}if(h){r+=" if (errors === ";if(w){r+="0"}else{r+="errs_"+u}r+=") { ";j+="}"}}}}}if(h){r+=" "+j+" "}if(w){if(i){r+=" if (errors === 0) return data; ";r+=" else throw new ValidationError(vErrors); "}else{r+=" validate.errors = vErrors; ";r+=" return errors === 0; "}r+=" }; return validate;"}else{r+=" var "+g+" = errors === errs_"+u+";"}r=e.util.cleanUpCode(r);if(w){r=e.util.finalCleanUpCode(r,i)}function $shouldUseGroup(e){var t=e.rules;for(var n=0;n<t.length;n++)if($shouldUseRule(t[n]))return true}function $shouldUseRule(t){return e.schema[t.keyword]!==undefined||t.implements&&$ruleImplementsSomeKeyword(t)}function $ruleImplementsSomeKeyword(t){var n=t.implements;for(var r=0;r<n.length;r++)if(e.schema[n[r]]!==undefined)return true}return r}},5808:function(e,t,n){"use strict";e.exports=typeof Promise==="function"?Promise:n(7939)},5819:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=o(n(8715));const c=i(n(4573));const u=i(n(8685));const l=i(n(1776));const f=i(n(3789));const p=i(n(6760));const d=i(n(8303));const h=i(n(586));const m=i(n(5181));function verify(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:o}=e;const{currentTeam:v}=o;const{apiUrl:g}=e;const y=t["--debug"];const b=new c.default({apiUrl:g,token:r,currentTeam:v,debug:y});let w=null;try{({contextName:w}=yield d.default(b))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){i.error(e.message);return 1}throw e}const[x]=n;if(!x){i.error(`${u.default("now domains verify <domain>")} expects one argument`);return 1}if(n.length!==1){i.error(`Invalid number of arguments. Usage: ${a.default.cyan("`now domains verify <domain>`")}`);return 1}const k=yield p.default(b,w,x);if(k instanceof s.DomainNotFound){i.error(`Domain not found by "${x}" under ${a.default.bold(w)}`);i.log(`Run ${u.default("now domains ls")} to see your domains.`);return 1}if(k instanceof s.DomainPermissionDenied){i.error(`You don't have access to the domain ${x} under ${a.default.bold(w)}`);i.log(`Run ${u.default("now domains ls")} to see your domains.`);return 1}const j=h.default();const S=yield m.default(b,k.name,w);if(S instanceof s.DomainVerificationFailed){const{nsVerification:e,txtVerification:t}=S.meta;i.error(`The domain ${k.name} could not be verified due to the following reasons: ${j()}\n`);i.print(` ${a.default.gray("a)")} Nameservers verification failed since we see a different set than the intended set:`);i.print(`\n${f.default(e.intendedNameservers,e.nameservers,{extraSpace:" "})}\n\n`);i.print(` ${a.default.gray("b)")} DNS TXT verification failed since found no matching records.`);i.print(`\n${l.default([["_now","TXT",t.verificationRecord]],{extraSpace:" "})}\n\n`);i.print(` Once your domain uses either the nameservers or the TXT DNS record from above, run again ${u.default("now domains verify <domain>")}.\n`);i.print(` We will also periodically run a verification check for you and you will receive an email once your domain is verified.\n`);i.print(" Read more: https://err.sh/now/domain-verification\n\n");return 1}if(S.nsVerifiedAt){console.log(`${a.default.cyan("> Success!")} Domain ${a.default.bold(k.name)} was verified using nameservers. ${j()}`);return 0}console.log(`${a.default.cyan("> Success!")} Domain ${a.default.bold(k.name)} was verified using DNS TXT record. ${j()}`);i.print(` You can verify with nameservers too. Run ${u.default(`now domains inspect ${k.name}`)} to find out the intended set.\n`);return 0})}t.default=verify},5821:function(e,t,n){"use strict";n.r(t);var r=n(5897);var i=n.n(r);var o=n(9544);var a=n.n(o);var s=n(1286);var c=n.n(s);var u=n(3050);var l=n.n(u);var f=n(772);var p=n.n(f);var d=n(784);var h=n.n(d);var m=n(8181);var v=n.n(m);var g=n(5531);var y=n.n(g);t["default"]=readMetaData;async function readMetaData(e,{deploymentType:t,deploymentName:n,sessionAffinity:i,quiet:o=false,strict:s=true}){let c;let u=t;let l=n;let f=i;const p=await b(e);let d=await w(y()(e));const h=await x(e);const m=Boolean(d);if(p&&p.now){if(d){const e=new Error("You have a `now` configuration field inside `package.json` "+"but configuration is also present in `now.json`! "+"Please ensure there's a single source of configuration by removing one.");e.code="config_prop_and_file";throw e}else{d=p.now}}if(p&&p.now&&p.now.type){u=d.type}if(!u&&d&&d.type){u=d.type}if(!u){u=await v()(e);if(u==="docker"&&(p&&h)){const e=new Error("Ambiguous deployment (`package.json` and `Dockerfile` found). "+"Please supply `--npm` or `--docker` to disambiguate.");e.code="multiple_manifests";throw e}}if(!l&&d){l=d.name}if(!f&&d){f=d.sessionAffinity}if(u==="npm"){if(p){if(!l&&p.name){l=String(p.name)}c=p.description}}else if(u==="docker"){if(!h){const e=new Error("`Dockerfile` missing");e.code="dockerfile_missing";throw e}if(s&&h.length<=0){const e=new Error("No commands found in `Dockerfile`");e.code="no_dockerfile_commands";throw e}const e={};h.filter(e=>e.name==="LABEL").forEach(({args:t})=>{for(const n of Object.keys(t)){e[n]=t[n].replace(/^"(.+?)"$/g,"$1")}});if(!l&&e.name){l=e.name}c=e.description}else if(u==="static"){}else{const e=new TypeError(`Unsupported "deploymentType": ${u}`);e.code="unsupported_deployment_type";throw e}if(!l){l=Object(r["basename"])(e);if(!o&&u!=="static"){if(u==="docker"){console.log(`> No \`name\` LABEL in \`Dockerfile\`, using ${a.a.bold(l)}`)}else{console.log(`> No \`name\` in \`package.json\`, using ${a.a.bold(l)}`)}}}if(d&&d.version){delete d.version}return{name:l,description:c,type:u,pkg:p,nowConfig:d,hasNowJson:m,deploymentType:u,sessionAffinity:f}}function decorateUserErrors(e){return async(...t)=>{try{const n=await e(...t);return n}catch(e){if(e.code!=="ENOENT"){throw e}}}}const b=decorateUserErrors(l.a);const w=decorateUserErrors(c.a);const x=decorateUserErrors(async(e,t="Dockerfile")=>{const n=await p.a.readFile(Object(r["resolve"])(e,t),"utf8");return Object(d["parse"])(n,{includeComments:true})})},5835:function(e){e.exports=["389-exception","Autoconf-exception-2.0","Autoconf-exception-3.0","Bison-exception-2.2","Bootloader-exception","Classpath-exception-2.0","CLISP-exception-2.0","DigiRule-FOSS-exception","eCos-exception-2.0","Fawkes-Runtime-exception","FLTK-exception","Font-exception-2.0","freertos-exception-2.0","GCC-exception-2.0","GCC-exception-3.1","gnu-javamail-exception","i2p-gpl-java-exception","Libtool-exception","Linux-syscall-note","LLVM-exception","LZMA-exception","mif-exception","Nokia-Qt-exception-1.1","OCCT-exception-1.0","OpenJDK-assembly-exception-1.0","openvpn-openssl-exception","PS-or-PDF-font-exception-20170817","Qt-GPL-exception-1.0","Qt-LGPL-exception-1.1","Qwt-exception-1.0","u-boot-exception-2.0","WxWindows-exception-3.1"]},5837:function(e,t,n){"use strict";const r=n(662);e.exports=(e=>new Promise(t=>{r.access(e,e=>{t(!e)})}));e.exports.sync=(e=>{try{r.accessSync(e);return true}catch(e){return false}})},5842:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof __values==="function"?__values(e):e[Symbol.iterator](),n={},verb("next"),verb("throw"),verb("return"),n[Symbol.asyncIterator]=function(){return this},n);function verb(t){n[t]=e[t]&&function(n){return new Promise(function(r,i){n=e[t](n),settle(r,i,n.done,n.value)})}}function settle(e,t,n,r){Promise.resolve(r).then(function(t){e({value:t,done:n})},t)}};var o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const a=o(n(9544));const s=o(n(3759));const c=n(8715);const u=o(n(6904));const l=o(n(8952));const f=o(n(586));const p=o(n(8109));const d=o(n(8950));function waitForScale(e,t,n,o){return r(this,void 0,void 0,function*(){var r,l;const d=new Set(Object.keys(o));const h=f.default();let m=renderWaitDcs(Array.from(d.keys()));try{for(var v=i(p.default(e,t,n,o)),g;g=yield v.next(),!g.done;){const t=g.value;m();if(Array.isArray(t)){const[n,r]=t;d.delete(n);e.log(`${a.default.cyan(u.default.tick)} Scaled ${s.default("instance",r,true)} in ${a.default.bold(n)} ${h()}`)}else if(t instanceof c.VerifyScaleTimeout){return t}if(d.size>0){m=renderWaitDcs(Array.from(d.keys()))}}}catch(e){r={error:e}}finally{try{if(g&&!g.done&&(l=v.return))yield l.call(v)}finally{if(r)throw r.error}}})}t.default=waitForScale;function renderWaitDcs(e){return d.default(`Waiting for instances in ${l.default(e.map(e=>a.default.bold(e)))} to be ready`)}},5844:function(e,t){Object.defineProperty(t,"__esModule",{value:true});function isError(e){switch(Object.prototype.toString.call(e)){case"[object Error]":return true;case"[object Exception]":return true;case"[object DOMException]":return true;default:return e instanceof Error}}t.isError=isError;function isErrorEvent(e){return Object.prototype.toString.call(e)==="[object ErrorEvent]"}t.isErrorEvent=isErrorEvent;function isDOMError(e){return Object.prototype.toString.call(e)==="[object DOMError]"}t.isDOMError=isDOMError;function isDOMException(e){return Object.prototype.toString.call(e)==="[object DOMException]"}t.isDOMException=isDOMException;function isString(e){return Object.prototype.toString.call(e)==="[object String]"}t.isString=isString;function isPrimitive(e){return e===null||typeof e!=="object"&&typeof e!=="function"}t.isPrimitive=isPrimitive;function isPlainObject(e){return Object.prototype.toString.call(e)==="[object Object]"}t.isPlainObject=isPlainObject;function isRegExp(e){return Object.prototype.toString.call(e)==="[object RegExp]"}t.isRegExp=isRegExp;function isThenable(e){return Boolean(e&&e.then&&typeof e.then==="function")}t.isThenable=isThenable;function isSyntheticEvent(e){return isPlainObject(e)&&"nativeEvent"in e&&"preventDefault"in e&&"stopPropagation"in e}t.isSyntheticEvent=isSyntheticEvent},5846:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(6167));function getDNSRecordById(e,t,n,i){return r(this,void 0,void 0,function*(){const r=yield o.default(e,t,n);return r.reduce((e,{domainName:t,records:n})=>{if(e){return e}const r=n.find(e=>e.id===i);return r?{domainName:t,record:r}:null},null)})}t.default=getDNSRecordById},5850:function(e,t,n){"use strict";e.exports={copySync:n(7162)}},5852:function(e,t,n){var r=n(4774);var i=n(6434);i.core=r;i.isCore=function isCore(e){return r[e]};i.sync=n(9869);t=i;e.exports=i},5855:function(e){(function(){var t,n=function(e,t){for(var n in t){if(r.call(t,n))e[n]=t[n]}function ctor(){this.constructor=e}ctor.prototype=t.prototype;e.prototype=new ctor;e.__super__=t.prototype;return e},r={}.hasOwnProperty;t=function(e){n(LaunchEditorError,e);LaunchEditorError.prototype.message="Failed launch editor";function LaunchEditorError(e){this.original_error=e}return LaunchEditorError}(Error);e.exports=t}).call(this)},5862:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(1994);t.Console=r.Console;var i=n(1476);t.Http=i.Http;var o=n(5236);t.OnUncaughtException=o.OnUncaughtException;var a=n(2469);t.OnUnhandledRejection=a.OnUnhandledRejection;var s=n(9744);t.LinkedErrors=s.LinkedErrors;var c=n(4504);t.Modules=c.Modules},5869:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=n(5897);const s=i(n(6127));const c=i(n(2297));const u=n(2984);const l=n(4362);const f=o(n(2724));const p=o(n(445));const d=o(n(8249));const h=o(n(4354));const m=o(n(7391));const v=o(n(3695));const g=o(n(3869));const y=o(n(1315));const b=s.default("@zeit/fun:runtimes");const w=__dirname+"/runtimes";t.runtimes={};t.funCacheDir=c.default("co.zeit.fun").cache();function createRuntime(e,t,n){const r=Object.assign({name:t,runtimeDir:a.join(w,t)},n);e[t]=r}createRuntime(t.runtimes,"provided");createRuntime(t.runtimes,"go1.x",f);createRuntime(t.runtimes,"nodejs");createRuntime(t.runtimes,"nodejs6.10",p);createRuntime(t.runtimes,"nodejs8.10",d);createRuntime(t.runtimes,"nodejs10.x",h);createRuntime(t.runtimes,"python");createRuntime(t.runtimes,"python2.7",m);createRuntime(t.runtimes,"python3",v);createRuntime(t.runtimes,"python3.6",g);createRuntime(t.runtimes,"python3.7",y);function getCachedRuntimeSha(e){return r(this,void 0,void 0,function*(){try{return yield l.readFile(e,"ascii")}catch(e){if(e.code==="ENOENT"){return null}throw e}})}const x=new Map;function _calculateRuntimeSha(e){return r(this,void 0,void 0,function*(){b("calculateRuntimeSha(%o)",e);const t=u.createHash("sha256");yield calculateRuntimeShaDir(e,t);const n=t.digest("hex");b("Calculated runtime sha for %o: %o",e,n);return n})}function calculateRuntimeShaDir(e,t){return r(this,void 0,void 0,function*(){const n=yield l.readdir(e);for(const r of n){const n=a.join(e,r);const i=yield l.lstat(n);if(i.isDirectory()){yield calculateRuntimeShaDir(n,t)}else{const e=yield l.readFile(n);t.update(e)}}})}function calculateRuntimeSha(e){let t=x.get(e);if(!t){t=_calculateRuntimeSha(e);x.set(e,t)}return t}function copy(e,t){return r(this,void 0,void 0,function*(){b("copy(%o, %o)",e,t);const[n]=yield Promise.all([l.readdir(e),l.mkdirp(t)]);b("Entries: %o",n);for(const r of n){const n=a.join(e,r);const i=a.join(t,r);const o=yield l.lstat(n);if(o.isDirectory()){yield copy(n,i)}else{const e=yield l.readFile(n);yield l.writeFile(i,e,{mode:o.mode})}}})}const k=new Map;function _initializeRuntime(e){return r(this,void 0,void 0,function*(){const n=a.join(t.funCacheDir,"runtimes",e.name);const r=a.join(n,".cache-sha");const[i,o]=yield Promise.all([getCachedRuntimeSha(r),calculateRuntimeSha(e.runtimeDir)]);e.cacheDir=n;if(i===o){b("Runtime %o is already initialized at %o",e.name,n)}else{b("Initializing %o runtime at %o",e.name,n);try{yield l.mkdirp(n);yield copy(e.runtimeDir,n);if(typeof e.init==="function"){yield e.init(e)}yield l.writeFile(a.join(n,".cache-sha"),o)}catch(t){b("Runtime %o `init()` failed %o. Cleaning up cache dir %o",e.name,t,n);try{yield l.remove(n)}catch(e){b("Cleaning up cache dir failed: %o",e)}throw t}}})}function initializeRuntime(e){return r(this,void 0,void 0,function*(){let n;if(typeof e==="string"){n=t.runtimes[e];if(!n){throw new Error(`Could not find runtime with name "${e}"`)}}else{n=e}let r=k.get(n);if(r){yield r}else{r=_initializeRuntime(n);k.set(n,r);try{yield r}finally{k.delete(n)}}return n})}t.initializeRuntime=initializeRuntime},5877:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__await||function(e){return this instanceof i?(this.v=e,this):new i(e)};var o=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof __values==="function"?__values(e):e[Symbol.iterator](),n={},verb("next"),verb("throw"),verb("return"),n[Symbol.asyncIterator]=function(){return this},n);function verb(t){n[t]=e[t]&&function(n){return new Promise(function(r,i){n=e[t](n),settle(r,i,n.done,n.value)})}}function settle(e,t,n,r){Promise.resolve(r).then(function(t){e({value:t,done:n})},t)}};var a=this&&this.__asyncGenerator||function(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=n.apply(e,t||[]),o,a=[];return o={},verb("next"),verb("throw"),verb("return"),o[Symbol.asyncIterator]=function(){return this},o;function verb(e){if(r[e])o[e]=function(t){return new Promise(function(n,r){a.push([e,t,n,r])>1||resume(e,t)})}}function resume(e,t){try{step(r[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof i?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume("next",e)}function reject(e){resume("throw",e)}function settle(e,t){if(e(t),a.shift(),a.length)resume(a[0][0],a[0][1])}};var s=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const c=n(662);const u=n(2307);const l=s(n(1473));const f=n(16);const p=n(8841);const d=n(5695);const h=s(n(937));const m=e=>{if(e.message){return e.message.includes("ETIMEDOUT")||e.message.includes("ECONNREFUSED")||e.message.includes("ENOTFOUND")||e.message.includes("ECONNRESET")||e.message.includes("EAI_FAIL")||e.message.includes("socket hang up")||e.message.includes("network socket disconnected")}return false};function upload(e,t){return a(this,arguments,function*upload_1(){var n,a,s,v;const{token:g,teamId:y,debug:b}=t;const w=p.createDebug(b);if(!e&&!g&&!y){w(`Neither 'files', 'token' nor 'teamId are present. Exiting`);return yield i(void 0)}let x=[];w("Determining necessary files for upload...");try{for(var k=o(h.default(e,t)),j;j=yield i(k.next()),!j.done;){const e=j.value;if(e.type==="error"){if(e.payload.code==="missing_files"){x=e.payload.missing;w(`${x.length} files are required to upload`)}else{return yield i(yield yield i(e))}}else{if(e.type==="ready"){w("Deployment succeeded on file check");return yield i(yield yield i(e))}yield yield i(e)}}}catch(e){n={error:e}}finally{try{if(j&&!j.done&&(a=k.return))yield i(a.call(k))}finally{if(n)throw n.error}}const S=x;yield yield i({type:"file_count",payload:{total:e,missing:S}});const E={};w("Building an upload list...");const _=new f.Sema(700,{capacity:700});S.map(t=>{E[t]=l.default(n=>r(this,void 0,void 0,function*(){const r=e.get(t);if(!r){w(`File ${t} is undefined. Bailing`);return n(new Error(`File ${t} is undefined`))}yield _.acquire();const i=r.names[0];const o=c.createReadStream(i);const{data:a}=r;let s;let l;try{const e=yield p.fetch(p.API_FILES,g,{agent:new u.Agent({keepAlive:true}),method:"POST",headers:{"Content-Type":"application/octet-stream","x-now-digest":t,"x-now-length":a.length},body:o,teamId:y},b);if(e.status===200){w(`File ${t} (${r.names[0]}${r.names.length>1?` +${r.names.length}`:""}) uploaded`);l={type:"file-uploaded",payload:{sha:t,file:r}}}else if(e.status>200&&e.status<500){w(`An internal error occurred in upload request. Not retrying...`);const{error:t}=yield e.json();s=new d.DeploymentError(t)}else{w(`A server error occurred in upload request. Retrying...`);const{error:t}=yield e.json();throw new d.DeploymentError(t)}}catch(e){w(`An unexpected error occurred in upload promise:\n${e}`);s=new Error(e)}finally{o.close();o.destroy()}_.release();if(s){if(m(s)){w("Network error, retrying: "+s.message);throw s}else{w("Other error, bailing: "+s.message);return n(s)}}return l}),{retries:3,factor:2})});w("Starting upload");while(Object.keys(E).length>0){try{const e=yield i(Promise.race(Object.keys(E).map(e=>E[e])));delete E[e.payload.sha];yield yield i(e)}catch(e){return yield i(yield yield i({type:"error",payload:e}))}}w("All files uploaded");yield yield i({type:"all-files-uploaded",payload:e});try{w("Starting deployment creation");try{for(var C=o(h.default(e,t)),A;A=yield i(C.next()),!A.done;){const e=A.value;if(e.type==="ready"){w("Deployment is ready");return yield i(yield yield i(e))}yield yield i(e)}}catch(e){s={error:e}}finally{try{if(A&&!A.done&&(v=C.return))yield i(v.call(C))}finally{if(s)throw s.error}}}catch(e){w("An unexpected error occurred when starting deployment creation");yield yield i({type:"error",payload:e})}})}t.default=upload},5880:function(e){e.exports=function(e){return new LruCache(e)};function LruCache(e){this.capacity=e|0;this.map=Object.create(null);this.list=new DoublyLinkedList}LruCache.prototype.get=function(e){var t=this.map[e];if(t==null)return undefined;this.used(t);return t.val};LruCache.prototype.set=function(e,t){var n=this.map[e];if(n!=null){n.val=t}else{if(!this.capacity)this.prune();if(!this.capacity)return false;n=new DoublyLinkedNode(e,t);this.map[e]=n;this.capacity--}this.used(n);return true};LruCache.prototype.used=function(e){this.list.moveToFront(e)};LruCache.prototype.prune=function(){var e=this.list.pop();if(e!=null){delete this.map[e.key];this.capacity++}};function DoublyLinkedList(){this.firstNode=null;this.lastNode=null}DoublyLinkedList.prototype.moveToFront=function(e){if(this.firstNode==e)return;this.remove(e);if(this.firstNode==null){this.firstNode=e;this.lastNode=e;e.prev=null;e.next=null}else{e.prev=null;e.next=this.firstNode;e.next.prev=e;this.firstNode=e}};DoublyLinkedList.prototype.pop=function(){var e=this.lastNode;if(e!=null){this.remove(e)}return e};DoublyLinkedList.prototype.remove=function(e){if(this.firstNode==e){this.firstNode=e.next}else if(e.prev!=null){e.prev.next=e.next}if(this.lastNode==e){this.lastNode=e.prev}else if(e.next!=null){e.next.prev=e.prev}};function DoublyLinkedNode(e,t){this.key=e;this.val=t;this.prev=null;this.next=null}},5886:function(e){function buildDistanceInWordsLocale(){var e={lessThanXSeconds:{one:"less than a second",other:"less than {{count}} seconds"},xSeconds:{one:"1 second",other:"{{count}} seconds"},halfAMinute:"half a minute",lessThanXMinutes:{one:"less than a minute",other:"less than {{count}} minutes"},xMinutes:{one:"1 minute",other:"{{count}} minutes"},aboutXHours:{one:"about 1 hour",other:"about {{count}} hours"},xHours:{one:"1 hour",other:"{{count}} hours"},xDays:{one:"1 day",other:"{{count}} days"},aboutXMonths:{one:"about 1 month",other:"about {{count}} months"},xMonths:{one:"1 month",other:"{{count}} months"},aboutXYears:{one:"about 1 year",other:"about {{count}} years"},xYears:{one:"1 year",other:"{{count}} years"},overXYears:{one:"over 1 year",other:"over {{count}} years"},almostXYears:{one:"almost 1 year",other:"almost {{count}} years"}};function localize(t,n,r){r=r||{};var i;if(typeof e[t]==="string"){i=e[t]}else if(n===1){i=e[t].one}else{i=e[t].other.replace("{{count}}",n)}if(r.addSuffix){if(r.comparison>0){return"in "+i}else{return i+" ago"}}return i}return{localize:localize}}e.exports=buildDistanceInWordsLocale},5893:function(e){var t=RegExp(/[\t\v\f\r ]+/);var n=RegExp(/\\[ \t]*$/);var r=RegExp(/^#.*$/);var i=RegExp(/^#[ \t]*escape[ \t]*=[ \t]*(.).*$/);var o=new Error("When using JSON array syntax, "+"arrays must be comprised of strings only.");function isSpace(e){return e.match(/^\s$/)}function regexEscape(e){return e.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}function parseSubCommand(e){var t=parseLine(e.rest,e.lineno);if(t.command){e.args=t.command;return true}e.error="Unhandled onbuild command: "+e.rest;return false}function parseWords(e){var t=1;var n=2;var r=3;var i=[];var o=t;var a="";var s="";var c=false;var u;var l;for(l=0;l<=e.length;l++){if(l!=e.length){u=e[l]}if(o==t){if(l==e.length){break}if(isSpace(u)){continue}o=n}if((o==n||o==r)&&l==e.length){if(c||a.length>0){i.push(a)}break}if(o==n){if(isSpace(u)){o=t;if(c||a.length>0){i.push(a)}a="";c=false;continue}if(u=="'"||u=='"'){s=u;c=true;o=r}if(u=="\\"){if(l+1==e.length){continue}a+=u;l++;u=e[l]}a+=u;continue}if(o==r){if(u==s){o=n}if(u=="\\"&&s!="'"){if(l+1==e.length){o=n;continue}a+=u;l++;u=e[l]}a+=u}}return i}function parseNameVal(e){var n;var r=parseWords(e.rest);e.args={};if(r.length===0){e.error="No KEY name value, or KEY name=value arguments found";return false}if(r[0].indexOf("=")==-1){var i=e.rest.split(t);if(i.length<2){e.error=e.name+" must have two arguments, got "+e.rest;return false}e.args[i[0]]=i.slice(1).join(" ")}else{var o;for(o=0;o<r.length;o++){n=r[o];if(n.indexOf("=")==-1){e.error="Syntax error - can't find = in "+n+". Must be of the form: name=value";return false}var a=n.split("=");e.args[a[0]]=a.slice(1).join("=")}}return true}function parseEnv(e){return parseNameVal(e)}function parseLabel(e){return parseNameVal(e)}function parseNameOrNameVal(e){e.args=parseWords(e.rest);return true}function parseStringsWhitespaceDelimited(e){e.args=e.rest.split(t);return true}function parseString(e){e.args=e.rest;return true}function parseJSON(e){try{var t=JSON.parse(e.rest)}catch(e){return false}if(!Array.isArray(t)){return false}if(!t.every(function(e){return typeof e==="string"})){return false}e.args=t;return true}function parseJsonOrString(e){if(parseJSON(e)){return true}return parseString(e)}function parseJsonOrList(e){if(parseJSON(e)){return true}return parseStringsWhitespaceDelimited(e)}var a={ADD:parseJsonOrList,ARG:parseNameOrNameVal,CMD:parseJsonOrString,COPY:parseJsonOrList,ENTRYPOINT:parseJsonOrString,ENV:parseEnv,EXPOSE:parseStringsWhitespaceDelimited,FROM:parseString,LABEL:parseLabel,MAINTAINER:parseString,ONBUILD:parseSubCommand,RUN:parseJsonOrString,STOPSIGNAL:parseString,USER:parseString,VOLUME:parseJsonOrList,WORKDIR:parseString};function isComment(e){return e.match(r)}function splitCommand(e){var n=e.match(t);if(!n){return{name:e.toUpperCase(),rest:""}}var r=e.substr(0,n.index).toUpperCase();var i=e.substr(n.index+n[0].length);return{name:r,rest:i}}function parseLine(e,t,r){var i=null;var o=r&&r.lineContinuationRegex||n;e=e.trim();if(!e){return{command:null,remainder:""}}if(isComment(e)){i={name:"COMMENT",args:e,lineno:t};return{command:i,remainder:""}}if(e.match(o)){var s=e.replace(o,"","g");return{command:null,remainder:s}}i=splitCommand(e);i.lineno=t;var c=a[i.name];if(!c){c=parseString}if(c(i)){i.raw=e;delete i.rest}return{command:i,remainder:""}}function parse(e,t){var n=[];var r;var o;var a;var s=e.split(/[\r?\n]/);var c=true;var u={};var l;var f;var p="";var d=t&&t["includeComments"];for(r=0;r<s.length;r++){a=r+1;if(p){o=p+s[r]}else{o=s[r]}if(c){f=o.match(i);if(f){if(f[1]!="`"&&f[1]!="\\"){throw new Error('invalid ESCAPE "'+f[1]+'". Must be ` or \\')}if(u.lineContinuationRegex){throw new Error("only one escape parser directive can be used")}u.lineContinuationRegex=RegExp(regexEscape(f[1])+"[ \t]*$");continue}}c=false;l=parseLine(o,a,u);if(l.command){if(l.command.name!=="COMMENT"||d){n.push(l.command)}}p=l.remainder}return n}e.exports={parse:parse}},5895:function(){throw new Error("Module parse failed: The keyword 'interface' is reserved (1:0)\nYou may need an appropriate loader to handle this file type.\n> interface Inputs {\n| http_status_code: number;\n| http_status_description: string;")},5897:function(e){e.exports=require("path")},5899:function(e,t,n){"use strict";const r=n(2255).fromPromise;const i=n(1400);function pathExists(e){return i.access(e).then(()=>true).catch(()=>false)}e.exports={pathExists:r(pathExists),pathExistsSync:i.existsSync}},5902:function(e,t,n){"use strict";e.exports=function(){"use strict";var e=void 0;function isFunction(e){return typeof e==="function"}if(global!==undefined){e=global}else if(window!==undefined&&window.document){e=window}else{e=self}var t=function(){if(!e.hasOwnProperty("Promise")){return false}var t=e.Promise;if(!t.hasOwnProperty("resolve")||!t.hasOwnProperty("reject")){return false}if(!t.hasOwnProperty("all")||!t.hasOwnProperty("race")){return false}return function(){var t=void 0;var n=new e.Promise(function(e){t=e});if(n){return isFunction(t)}return false}()}();if(t){return e.Promise}return n(8314).Promise}()},5903:function(){throw new Error('Module parse failed: Unexpected token (1:0)\nYou may need an appropriate loader to handle this file type.\n> <main>\n| <p class="devinfo-container">\n| <span class="error-code"><strong>{{= it.http_status_code }}</strong>: {{! it.http_status_description }}</span>')},5907:function(e){(function(){function directory(e){var t=typeof n!=="undefined"?n:function(e){var t={"&":"&#38;","<":"&#60;",">":"&#62;",'"':"&#34;","'":"&#39;","/":"&#47;"},n=e?/[&<>"'\/]/g:/&(?!#?\w+;)|<|>|"|'|\//g;return function(e){return e?e.toString().replace(n,function(e){return t[e]||e}):""}}();var r='<!DOCTYPE html><html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Files within '+t(e.directory)+"</title> <style>body { margin: 0; padding: 30px; background: #fff; font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif; -webkit-font-smoothing: antialiased;}main { max-width: 920px;}header { display: flex; justify-content: space-between; flex-wrap: wrap;}h1 { font-size: 18px; font-weight: 500; margin-top: 0; color: #000;}header h1 a { font-size: 18px; font-weight: 500; margin-top: 0; color: #000;}h1 i { font-style: normal;}ul { margin: 0 0 0 -2px; padding: 20px 0 0 0;}ul li { list-style: none; font-size: 14px; display: flex; justify-content: space-between;}a { text-decoration: none;}ul a { color: #000; padding: 10px 5px; margin: 0 -5px; white-space: nowrap; overflow: hidden; display: block; width: 100%; text-overflow: ellipsis;}header a { color: #0076FF; font-size: 11px; font-weight: 400; display: inline-block; line-height: 20px;}svg { height: 13px; vertical-align: text-bottom;}ul a::before { display: inline-block; vertical-align: middle; margin-right: 10px; width: 24px; text-align: center; line-height: 12px;}ul a.file::before { content: url(\"data:image/svg+xml;utf8,<svg width='15' height='19' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M10 8C8.34 8 7 6.66 7 5V1H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2V8h-4zM8 5c0 1.1.9 2 2 2h3.59L8 1.41V5zM3 0h5l7 7v9c0 1.66-1.34 3-3 3H3c-1.66 0-3-1.34-3-3V3c0-1.66 1.34-3 3-3z' fill='black'/></svg>\");}ul a:hover { text-decoration: underline;}ul a.folder::before { content: url(\"data:image/svg+xml;utf8,<svg width='20' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M18.784 3.87a1.565 1.565 0 0 0-.565-.356V2.426c0-.648-.523-1.171-1.15-1.171H8.996L7.908.25A.89.89 0 0 0 7.302 0H2.094C1.445 0 .944.523.944 1.171v2.3c-.21.085-.398.21-.565.356a1.348 1.348 0 0 0-.377 1.004l.398 9.83C.42 15.393 1.048 16 1.8 16h15.583c.753 0 1.36-.586 1.4-1.339l.398-9.83c.021-.313-.125-.69-.397-.962zM1.843 3.41V1.191c0-.146.104-.272.25-.272H7.26l1.234 1.088c.083.042.167.104.293.104h8.282c.125 0 .25.126.25.272V3.41H1.844zm15.54 11.712H1.78a.47.47 0 0 1-.481-.46l-.397-9.83c0-.147.041-.252.125-.356a.504.504 0 0 1 .377-.147H17.78c.125 0 .272.063.377.147.083.083.125.209.125.334l-.418 9.83c-.021.272-.23.482-.481.482z' fill='black'/></svg>\");}ul a.lambda::before { content: url(\"data:image/svg+xml; utf8,<svg width='15' height='19' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M3.5 14.4354H5.31622L7.30541 9.81311H7.43514L8.65315 13.0797C9.05676 14.1643 9.55405 14.5 10.7 14.5C11.0171 14.5 11.291 14.4677 11.5 14.4032V13.1572C11.3847 13.1766 11.2622 13.2024 11.1541 13.2024C10.6351 13.2024 10.3829 13.0281 10.1595 12.4664L8.02613 7.07586C7.21171 5.01646 6.54865 4.5 5.11441 4.5C4.83333 4.5 4.62432 4.53228 4.37207 4.59038V5.83635C4.56667 5.81052 4.66036 5.79761 4.77568 5.79761C5.64775 5.79761 5.9 6.0042 6.4045 7.19852L6.64234 7.77954L3.5 14.4354Z' fill='black'/><rect x='0.5' y='0.5' width='14' height='18' rx='2.5' stroke='black'/></svg>\");}ul a.file.gif::before,ul a.file.jpg::before,ul a.file.png::before,ul a.file.svg::before { content: url(\"data:image/svg+xml;utf8,<svg width='16' height='16' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'><rect x='6' y='6' width='68' height='68' rx='5' ry='5'/><circle cx='24' cy='24' r='8'/><path d='M73 49L59 34 37 52m16 20L27 42 7 58'/></svg>\");}::selection { background-color: #79FFE1; color: #000;}::-moz-selection { background-color: #79FFE1; color: #000;}@media (min-width: 768px) { ul {display: flex;flex-wrap: wrap; } ul li {width: 230px;padding-right: 20px; }}@media (min-width: 992px) { body {padding: 45px; } h1, header h1 a {font-size: 15px; } ul li {font-size: 13px;box-sizing: border-box;justify-content: flex-start; }}</style> </head> <body> <main> <header> <h1> <i>Index of&nbsp;</i> ";var i=e.paths;if(i){var o,a=-1,s=i.length-1;while(a<s){o=i[a+=1];r+=' <a href="/'+t(o.url)+'">'+t(o.name)+"</a> "}}r+=' </h1> </header> <ul id="files"> ';var c=e.files;if(c){var o,a=-1,u=c.length-1;while(a<u){o=c[a+=1];r+=' <li> <a href="'+t(o.relative)+'" title="'+t(o.title)+'" class="'+t(o.type)+" "+t(o.ext)+'">'+t(o.base)+"</a> </li> "}}r+=" </ul></main> </body></html>";return r}var t=directory,n=function(e){var t={"&":"&#38;","<":"&#60;",">":"&#62;",'"':"&#34;","'":"&#39;","/":"&#47;"},n=e?/[&<>"'\/]/g:/&(?!#?\w+;)|<|>|"|'|\//g;return function(e){return e?e.toString().replace(n,function(e){return t[e]||e}):""}}();if(true&&e.exports)e.exports=t;else if(typeof define==="function")define(function(){return t});else{window.render=window.render||{};window.render["directory"]=t}})()},5916:function(e,t,n){"use strict";var r=n(5474);var i=n(3465);var o=e.exports;var a=o.cache=new i;o.arrayify=function(e){if(!Array.isArray(e)){return[e]}return e};o.memoize=function(e,t,n,r){var i=o.createKey(e+t,n);if(a.has(e,i)){return a.get(e,i)}var s=r(t,n);if(n&&n.cache===false){return s}a.set(e,i,s);return s};o.createKey=function(e,t){var n=e;if(typeof t==="undefined"){return n}for(var r in t){n+=";"+r+"="+String(t[r])}return n};o.createRegex=function(e){var t={contains:true,strictClose:false};return r(e,t)}},5917:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(1390);var o=n(5341);var a=function(){function Scope(){this._notifyingListeners=false;this._scopeListeners=[];this._eventProcessors=[];this._breadcrumbs=[];this._user={};this._tags={};this._extra={};this._context={}}Scope.prototype.addScopeListener=function(e){this._scopeListeners.push(e)};Scope.prototype.addEventProcessor=function(e){this._eventProcessors.push(e);return this};Scope.prototype._notifyScopeListeners=function(){var e=this;if(!this._notifyingListeners){this._notifyingListeners=true;setTimeout(function(){e._scopeListeners.forEach(function(t){t(e)});e._notifyingListeners=false})}};Scope.prototype._notifyEventProcessors=function(e,t,n,o){var a=this;if(o===void 0){o=0}return new i.SyncPromise(function(s,c){var u=e[o];if(t===null||typeof u!=="function"){s(t)}else{var l=u(r.__assign({},t),n);if(i.isThenable(l)){l.then(function(t){return a._notifyEventProcessors(e,t,n,o+1).then(s)}).catch(c)}else{a._notifyEventProcessors(e,l,n,o+1).then(s).catch(c)}}})};Scope.prototype.setUser=function(e){this._user=i.normalize(e);this._notifyScopeListeners();return this};Scope.prototype.setTags=function(e){this._tags=r.__assign({},this._tags,i.normalize(e));this._notifyScopeListeners();return this};Scope.prototype.setTag=function(e,t){var n;this._tags=r.__assign({},this._tags,(n={},n[e]=i.normalize(t),n));this._notifyScopeListeners();return this};Scope.prototype.setExtras=function(e){this._extra=r.__assign({},this._extra,i.normalize(e));this._notifyScopeListeners();return this};Scope.prototype.setExtra=function(e,t){var n;this._extra=r.__assign({},this._extra,(n={},n[e]=i.normalize(t),n));this._notifyScopeListeners();return this};Scope.prototype.setFingerprint=function(e){this._fingerprint=i.normalize(e);this._notifyScopeListeners();return this};Scope.prototype.setLevel=function(e){this._level=i.normalize(e);this._notifyScopeListeners();return this};Scope.prototype.setTransaction=function(e){this._transaction=e;this._notifyScopeListeners();return this};Scope.prototype.setContext=function(e,t){this._context[e]=t?i.normalize(t):undefined;this._notifyScopeListeners();return this};Scope.prototype.setSpan=function(e){this._span=e;this._notifyScopeListeners();return this};Scope.prototype.startSpan=function(e){var t=new o.Span;t.setParent(e);this.setSpan(t);return t};Scope.prototype.getSpan=function(){return this._span};Scope.clone=function(e){var t=new Scope;Object.assign(t,e,{_scopeListeners:[]});if(e){t._breadcrumbs=r.__spread(e._breadcrumbs);t._tags=r.__assign({},e._tags);t._extra=r.__assign({},e._extra);t._context=r.__assign({},e._context);t._user=e._user;t._level=e._level;t._span=e._span;t._transaction=e._transaction;t._fingerprint=e._fingerprint;t._eventProcessors=r.__spread(e._eventProcessors)}return t};Scope.prototype.clear=function(){this._breadcrumbs=[];this._tags={};this._extra={};this._user={};this._context={};this._level=undefined;this._transaction=undefined;this._fingerprint=undefined;this._span=undefined;this._notifyScopeListeners();return this};Scope.prototype.addBreadcrumb=function(e,t){var n=(new Date).getTime()/1e3;var o=r.__assign({timestamp:n},e);this._breadcrumbs=t!==undefined&&t>=0?r.__spread(this._breadcrumbs,[i.normalize(o)]).slice(-t):r.__spread(this._breadcrumbs,[i.normalize(o)]);this._notifyScopeListeners();return this};Scope.prototype.clearBreadcrumbs=function(){this._breadcrumbs=[];this._notifyScopeListeners();return this};Scope.prototype._applyFingerprint=function(e){e.fingerprint=e.fingerprint?Array.isArray(e.fingerprint)?e.fingerprint:[e.fingerprint]:[];if(this._fingerprint){e.fingerprint=e.fingerprint.concat(this._fingerprint)}if(e.fingerprint&&!e.fingerprint.length){delete e.fingerprint}};Scope.prototype.applyToEvent=function(e,t){if(this._extra&&Object.keys(this._extra).length){e.extra=r.__assign({},this._extra,e.extra)}if(this._tags&&Object.keys(this._tags).length){e.tags=r.__assign({},this._tags,e.tags)}if(this._user&&Object.keys(this._user).length){e.user=r.__assign({},this._user,e.user)}if(this._context&&Object.keys(this._context).length){e.contexts=r.__assign({},this._context,e.contexts)}if(this._level){e.level=this._level}if(this._transaction){e.transaction=this._transaction}if(this._span){e.contexts=e.contexts||{};e.contexts.trace=this._span}this._applyFingerprint(e);e.breadcrumbs=r.__spread(e.breadcrumbs||[],this._breadcrumbs);e.breadcrumbs=e.breadcrumbs.length>0?e.breadcrumbs:undefined;return this._notifyEventProcessors(r.__spread(getGlobalEventProcessors(),this._eventProcessors),e,t)};return Scope}();t.Scope=a;function getGlobalEventProcessors(){var e=i.getGlobalObject();e.__SENTRY__=e.__SENTRY__||{};e.__SENTRY__.globalEventProcessors=e.__SENTRY__.globalEventProcessors||[];return e.__SENTRY__.globalEventProcessors}function addGlobalEventProcessor(e){getGlobalEventProcessors().push(e)}t.addGlobalEventProcessor=addGlobalEventProcessor},5921:function(e,t,n){t=e.exports=createDebug.debug=createDebug["default"]=createDebug;t.coerce=coerce;t.disable=disable;t.enable=enable;t.enabled=enabled;t.humanize=n(4178);t.instances=[];t.names=[];t.skips=[];t.formatters={};function selectColor(e){var n=0,r;for(r in e){n=(n<<5)-n+e.charCodeAt(r);n|=0}return t.colors[Math.abs(n)%t.colors.length]}function createDebug(e){var n;function debug(){if(!debug.enabled)return;var e=debug;var r=+new Date;var i=r-(n||r);e.diff=i;e.prev=n;e.curr=r;n=r;var o=new Array(arguments.length);for(var a=0;a<o.length;a++){o[a]=arguments[a]}o[0]=t.coerce(o[0]);if("string"!==typeof o[0]){o.unshift("%O")}var s=0;o[0]=o[0].replace(/%([a-zA-Z%])/g,function(n,r){if(n==="%%")return n;s++;var i=t.formatters[r];if("function"===typeof i){var a=o[s];n=i.call(e,a);o.splice(s,1);s--}return n});t.formatArgs.call(e,o);var c=debug.log||t.log||console.log.bind(console);c.apply(e,o)}debug.namespace=e;debug.enabled=t.enabled(e);debug.useColors=t.useColors();debug.color=selectColor(e);debug.destroy=destroy;if("function"===typeof t.init){t.init(debug)}t.instances.push(debug);return debug}function destroy(){var e=t.instances.indexOf(this);if(e!==-1){t.instances.splice(e,1);return true}else{return false}}function enable(e){t.save(e);t.names=[];t.skips=[];var n;var r=(typeof e==="string"?e:"").split(/[\s,]+/);var i=r.length;for(n=0;n<i;n++){if(!r[n])continue;e=r[n].replace(/\*/g,".*?");if(e[0]==="-"){t.skips.push(new RegExp("^"+e.substr(1)+"$"))}else{t.names.push(new RegExp("^"+e+"$"))}}for(n=0;n<t.instances.length;n++){var o=t.instances[n];o.enabled=t.enabled(o.namespace)}}function disable(){t.enable("")}function enabled(e){if(e[e.length-1]==="*"){return true}var n,r;for(n=0,r=t.skips.length;n<r;n++){if(t.skips[n].test(e)){return false}}for(n=0,r=t.names.length;n<r;n++){if(t.names[n].test(e)){return true}}return false}function coerce(e){if(e instanceof Error)return e.stack||e.message;return e}},5923:function(e,t,n){"use strict";var r=n(5325);var i=n(2104);var o=n(4249);var a=n(7225);var s=n(1077);var c=n(1940);var u=n(6340);var l=n(9468);var f=n(8920);function namespace(e){function Cache(t){if(e){this[e]={}}if(t){this.set(t)}}i(Cache.prototype);Cache.prototype.set=function(t,n){if(Array.isArray(t)&&arguments.length===2){t=a(t)}if(r(t)||Array.isArray(t)){this.visit("set",t)}else{f(e?this[e]:this,t,n);this.emit("set",t,n)}return this};Cache.prototype.union=function(t,n){if(Array.isArray(t)&&arguments.length===2){t=a(t)}var r=e?this[e]:this;s(r,t,arrayify(n));this.emit("union",n);return this};Cache.prototype.get=function(t){t=a(arguments);var n=e?this[e]:this;var r=u(n,t);this.emit("get",t,r);return r};Cache.prototype.has=function(t){t=a(arguments);var n=e?this[e]:this;var r=u(n,t);var i=typeof r!=="undefined";this.emit("has",t,i);return i};Cache.prototype.del=function(t){if(Array.isArray(t)){this.visit("del",t)}else{c(e?this[e]:this,t);this.emit("del",t)}return this};Cache.prototype.clear=function(){if(e){this[e]={}}};Cache.prototype.visit=function(e,t){o(this,e,t);return this};return Cache}function arrayify(e){return e?Array.isArray(e)?e:[e]:[]}e.exports=namespace();e.exports.namespace=namespace},5927:function(e,t,n){"use strict";var r=n(2650);var i=e.exports;i.isNode=function(e){return r(e)==="object"&&e.isNode===true};i.noop=function(e){append(this,"",e)};i.identity=function(e){append(this,e.val,e)};i.append=function(e){return function(t){append(this,e,t)}};i.toNoop=function(e,t){if(t){e.nodes=t}else{delete e.nodes;e.type="text";e.val=""}};i.visit=function(e,t){assert(i.isNode(e),"expected node to be an instance of Node");assert(isFunction(t),"expected a visitor function");t(e);return e.nodes?i.mapVisit(e,t):e};i.mapVisit=function(e,t){assert(i.isNode(e),"expected node to be an instance of Node");assert(isArray(e.nodes),"expected node.nodes to be an array");assert(isFunction(t),"expected a visitor function");for(var n=0;n<e.nodes.length;n++){i.visit(e.nodes[n],t)}return e};i.addOpen=function(e,t,n,r){assert(i.isNode(e),"expected node to be an instance of Node");assert(isFunction(t),"expected Node to be a constructor function");if(typeof n==="function"){r=n;n=""}if(typeof r==="function"&&!r(e))return;var o=new t({type:e.type+".open",val:n});var a=e.unshift||e.unshiftNode;if(typeof a==="function"){a.call(e,o)}else{i.unshiftNode(e,o)}return o};i.addClose=function(e,t,n,r){assert(i.isNode(e),"expected node to be an instance of Node");assert(isFunction(t),"expected Node to be a constructor function");if(typeof n==="function"){r=n;n=""}if(typeof r==="function"&&!r(e))return;var o=new t({type:e.type+".close",val:n});var a=e.push||e.pushNode;if(typeof a==="function"){a.call(e,o)}else{i.pushNode(e,o)}return o};i.wrapNodes=function(e,t,n){assert(i.isNode(e),"expected node to be an instance of Node");assert(isFunction(t),"expected Node to be a constructor function");i.addOpen(e,t,n);i.addClose(e,t,n);return e};i.pushNode=function(e,t){assert(i.isNode(e),"expected parent node to be an instance of Node");assert(i.isNode(t),"expected node to be an instance of Node");t.define("parent",e);e.nodes=e.nodes||[];e.nodes.push(t);return t};i.unshiftNode=function(e,t){assert(i.isNode(e),"expected parent node to be an instance of Node");assert(i.isNode(t),"expected node to be an instance of Node");t.define("parent",e);e.nodes=e.nodes||[];e.nodes.unshift(t)};i.popNode=function(e){assert(i.isNode(e),"expected node to be an instance of Node");if(typeof e.pop==="function"){return e.pop()}return e.nodes&&e.nodes.pop()};i.shiftNode=function(e){assert(i.isNode(e),"expected node to be an instance of Node");if(typeof e.shift==="function"){return e.shift()}return e.nodes&&e.nodes.shift()};i.removeNode=function(e,t){assert(i.isNode(e),"expected parent.node to be an instance of Node");assert(i.isNode(t),"expected node to be an instance of Node");if(!e.nodes){return null}if(typeof e.remove==="function"){return e.remove(t)}var n=e.nodes.indexOf(t);if(n!==-1){return e.nodes.splice(n,1)}};i.isType=function(e,t){assert(i.isNode(e),"expected node to be an instance of Node");switch(r(t)){case"array":var n=t.slice();for(var o=0;o<n.length;o++){if(i.isType(e,n[o])){return true}}return false;case"string":return e.type===t;case"regexp":return t.test(e.type);default:{throw new TypeError('expected "type" to be an array, string or regexp')}}};i.hasType=function(e,t){assert(i.isNode(e),"expected node to be an instance of Node");if(!Array.isArray(e.nodes))return false;for(var n=0;n<e.nodes.length;n++){if(i.isType(e.nodes[n],t)){return true}}return false};i.firstOfType=function(e,t){for(var n=0;n<e.length;n++){var r=e[n];if(i.isType(r,t)){return r}}};i.findNode=function(e,t){if(!Array.isArray(e)){return null}if(typeof t==="number"){return e[t]}return i.firstOfType(e,t)};i.isOpen=function(e){assert(i.isNode(e),"expected node to be an instance of Node");return e.type.slice(-5)===".open"};i.isClose=function(e){assert(i.isNode(e),"expected node to be an instance of Node");return e.type.slice(-6)===".close"};i.hasOpen=function(e){assert(i.isNode(e),"expected node to be an instance of Node");var t=e.first||e.nodes?e.nodes[0]:null;if(i.isNode(t)){return t.type===e.type+".open"}return false};i.hasClose=function(e){assert(i.isNode(e),"expected node to be an instance of Node");var t=e.last||e.nodes?e.nodes[e.nodes.length-1]:null;if(i.isNode(t)){return t.type===e.type+".close"}return false};i.hasOpenAndClose=function(e){return i.hasOpen(e)&&i.hasClose(e)};i.addType=function(e,t){assert(i.isNode(t),"expected node to be an instance of Node");assert(isObject(e),"expected state to be an object");var n=t.parent?t.parent.type:t.type.replace(/\.open$/,"");if(!e.hasOwnProperty("inside")){e.inside={}}if(!e.inside.hasOwnProperty(n)){e.inside[n]=[]}var r=e.inside[n];r.push(t);return r};i.removeType=function(e,t){assert(i.isNode(t),"expected node to be an instance of Node");assert(isObject(e),"expected state to be an object");var n=t.parent?t.parent.type:t.type.replace(/\.close$/,"");if(e.inside.hasOwnProperty(n)){return e.inside[n].pop()}};i.isEmpty=function(e,t){assert(i.isNode(e),"expected node to be an instance of Node");if(!Array.isArray(e.nodes)){if(e.type!=="text"){return true}if(typeof t==="function"){return t(e,e.parent)}return!i.trim(e.val)}for(var n=0;n<e.nodes.length;n++){var r=e.nodes[n];if(i.isOpen(r)||i.isClose(r)){continue}if(!i.isEmpty(r,t)){return false}}return true};i.isInsideType=function(e,t){assert(isObject(e),"expected state to be an object");assert(isString(t),"expected type to be a string");if(!e.hasOwnProperty("inside")){return false}if(!e.inside.hasOwnProperty(t)){return false}return e.inside[t].length>0};i.isInside=function(e,t,n){assert(i.isNode(t),"expected node to be an instance of Node");assert(isObject(e),"expected state to be an object");if(Array.isArray(n)){for(var o=0;o<n.length;o++){if(i.isInside(e,t,n[o])){return true}}return false}var a=t.parent;if(typeof n==="string"){return a&&a.type===n||i.isInsideType(e,n)}if(r(n)==="regexp"){if(a&&a.type&&n.test(a.type)){return true}var s=Object.keys(e.inside);var c=s.length;var u=-1;while(++u<c){var l=s[u];var f=e.inside[l];if(Array.isArray(f)&&f.length!==0&&n.test(l)){return true}}}return false};i.last=function(e,t){return e[e.length-(t||1)]};i.arrayify=function(e){if(typeof e==="string"&&e!==""){return[e]}if(!Array.isArray(e)){return[]}return e};i.stringify=function(e){return i.arrayify(e).join(",")};i.trim=function(e){return typeof e==="string"?e.trim():""};function isObject(e){return r(e)==="object"}function isString(e){return typeof e==="string"}function isFunction(e){return typeof e==="function"}function isArray(e){return Array.isArray(e)}function append(e,t,n){if(typeof e.append!=="function"){return e.emit(t,n)}return e.append(t,n)}function assert(e,t){if(!e)throw new Error(t)}},5942:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5897);const o=n(2617);const a=n(5627);const s=n(7346).pathExists;function createFile(e,t){function makeFile(){o.writeFile(e,"",e=>{if(e)return t(e);t()})}o.stat(e,(n,r)=>{if(!n&&r.isFile())return t();const o=i.dirname(e);s(o,(e,n)=>{if(e)return t(e);if(n)return makeFile();a.mkdirs(o,e=>{if(e)return t(e);makeFile()})})})}function createFileSync(e){let t;try{t=o.statSync(e)}catch(e){}if(t&&t.isFile())return;const n=i.dirname(e);if(!o.existsSync(n)){a.mkdirsSync(n)}o.writeFileSync(e,"")}e.exports={createFile:r(createFile),createFileSync:createFileSync}},5944:function(e,t,n){"use strict";e.exports=function(e,t,r,i,o,a){var s=n(4730);var c=s.canEvaluate;var u=s.tryCatch;var l=s.errorObj;var f;if(true){if(c){var p=function(e){return new Function("value","holder"," \n 'use strict'; \n holder.pIndex = value; \n holder.checkFulfillment(this); \n ".replace(/Index/g,e))};var d=function(e){return new Function("promise","holder"," \n 'use strict'; \n holder.pIndex = promise; \n ".replace(/Index/g,e))};var h=function(t){var n=new Array(t);for(var r=0;r<n.length;++r){n[r]="this.p"+(r+1)}var i=n.join(" = ")+" = null;";var a="var promise;\n"+n.map(function(e){return" \n promise = "+e+"; \n if (promise instanceof Promise) { \n promise.cancel(); \n } \n "}).join("\n");var s=n.join(", ");var c="Holder$"+t;var f="return function(tryCatch, errorObj, Promise, async) { \n 'use strict'; \n function [TheName](fn) { \n [TheProperties] \n this.fn = fn; \n this.asyncNeeded = true; \n this.now = 0; \n } \n \n [TheName].prototype._callFunction = function(promise) { \n promise._pushContext(); \n var ret = tryCatch(this.fn)([ThePassedArguments]); \n promise._popContext(); \n if (ret === errorObj) { \n promise._rejectCallback(ret.e, false); \n } else { \n promise._resolveCallback(ret); \n } \n }; \n \n [TheName].prototype.checkFulfillment = function(promise) { \n var now = ++this.now; \n if (now === [TheTotal]) { \n if (this.asyncNeeded) { \n async.invoke(this._callFunction, this, promise); \n } else { \n this._callFunction(promise); \n } \n \n } \n }; \n \n [TheName].prototype._resultCancelled = function() { \n [CancellationCode] \n }; \n \n return [TheName]; \n }(tryCatch, errorObj, Promise, async); \n ";f=f.replace(/\[TheName\]/g,c).replace(/\[TheTotal\]/g,t).replace(/\[ThePassedArguments\]/g,s).replace(/\[TheProperties\]/g,i).replace(/\[CancellationCode\]/g,a);return new Function("tryCatch","errorObj","Promise","async",f)(u,l,e,o)};var m=[];var v=[];var g=[];for(var y=0;y<8;++y){m.push(h(y+1));v.push(p(y+1));g.push(d(y+1))}f=function(e){this._reject(e)}}}e.join=function(){var n=arguments.length-1;var o;if(n>0&&typeof arguments[n]==="function"){o=arguments[n];if(true){if(n<=8&&c){var u=new e(i);u._captureStackTrace();var l=m[n-1];var p=new l(o);var d=v;for(var h=0;h<n;++h){var y=r(arguments[h],u);if(y instanceof e){y=y._target();var b=y._bitField;if((b&50397184)===0){y._then(d[h],f,undefined,u,p);g[h](y,p);p.asyncNeeded=false}else if((b&33554432)!==0){d[h].call(u,y._value(),p)}else if((b&16777216)!==0){u._reject(y._reason())}else{u._cancel()}}else{d[h].call(u,y,p)}}if(!u._isFateSealed()){if(p.asyncNeeded){var w=a();if(w!==null){p.fn=s.domainBind(w,p.fn)}}u._setAsyncGuaranteed();u._setOnCancel(p)}return u}}}var x=arguments.length;var k=new Array(x);for(var j=0;j<x;++j){k[j]=arguments[j]}if(o)k.pop();var u=new t(k).promise();return o!==undefined?u.spread(o):u}}},5947:function(e){e.exports=epipeBomb;function epipeBomb(e,t){if(e==null)e=process.stdout;if(t==null)t=process.exit;function epipeFilter(n){if(n.code==="EPIPE")return t();if(e.listeners("error").length<=1){e.removeAllListeners();e.emit("error",n);e.on("error",epipeFilter)}}e.on("error",epipeFilter)}},5948:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});t.isReady=(({readyState:e,state:t})=>e==="READY"||t==="READY");t.isFailed=(({readyState:e,state:t})=>e?e.endsWith("_ERROR")||e==="ERROR":t&&t.endsWith("_ERROR")||t==="ERROR");t.isDone=(e=>t.isReady(e)||t.isFailed(e))},5951:function(e,t,n){var r=n(6886);if(process.env.READABLE_STREAM==="disable"&&r){e.exports=r;t=e.exports=r.Readable;t.Readable=r.Readable;t.Writable=r.Writable;t.Duplex=r.Duplex;t.Transform=r.Transform;t.PassThrough=r.PassThrough;t.Stream=r}else{t=e.exports=n(1344);t.Stream=r||t;t.Readable=t;t.Writable=n(517);t.Duplex=n(1178);t.Transform=n(4338);t.PassThrough=n(3054)}},5953:function(e){"use strict";e.exports={437:"cp437",737:"cp737",775:"cp775",850:"cp850",852:"cp852",855:"cp855",856:"cp856",857:"cp857",858:"cp858",860:"cp860",861:"cp861",862:"cp862",863:"cp863",864:"cp864",865:"cp865",866:"cp866",869:"cp869",874:"windows874",922:"cp922",1046:"cp1046",1124:"cp1124",1125:"cp1125",1129:"cp1129",1133:"cp1133",1161:"cp1161",1162:"cp1162",1163:"cp1163",1250:"windows1250",1251:"windows1251",1252:"windows1252",1253:"windows1253",1254:"windows1254",1255:"windows1255",1256:"windows1256",1257:"windows1257",1258:"windows1258",28591:"iso88591",28592:"iso88592",28593:"iso88593",28594:"iso88594",28595:"iso88595",28596:"iso88596",28597:"iso88597",28598:"iso88598",28599:"iso88599",28600:"iso885910",28601:"iso885911",28603:"iso885913",28604:"iso885914",28605:"iso885915",28606:"iso885916",windows874:{type:"_sbcs",chars:"€<><E282AC><EFBFBD><EFBFBD><EFBFBD><E280A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>“”•<E28093><E28094><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู<E0B8B9><E0B8BA><EFBFBD><EFBFBD>฿เแโใไๅๆ็่้๊๋์ํ๎๏๑๒๓๔๕๖๗๘๙๚๛<E0B99A><E0B99B><EFBFBD><EFBFBD>"},win874:"windows874",cp874:"windows874",windows1250:{type:"_sbcs",chars:"€<><EFBFBD>„…†‡<E280A0>‰ŠŚŤŽŹ<C5BD>“”•<E28093>™šśťžź ˇ˘Ł¤Ą¦§¨©Ş«¬­®Ż°±˛ł´µ¶·¸ąş»Ľ˝ľżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙"},win1250:"windows1250",cp1250:"windows1250",windows1251:{type:"_sbcs",chars:"ЂЃѓ„…†‡€‰ЉЊЌЋЏђ“”•<E28093>™љњќћџ ЎўЈ¤Ґ¦§Ё©Є«¬­®Ї°±Ііґµ¶·ё№є»јЅѕїАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},win1251:"windows1251",cp1251:"windows1251",windows1252:{type:"_sbcs",chars:"€<>ƒ„…†‡ˆ‰ŠŒ<E280B9>Ž<EFBFBD><C5BD>“”•˜™šœ<E280BA>žŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},win1252:"windows1252",cp1252:"windows1252",windows1253:{type:"_sbcs",chars:"€<>ƒ„…†‡<E280A0><EFBFBD><EFBFBD><E280B9><EFBFBD><EFBFBD><EFBFBD>“”•<E28093><EFBFBD><EFBFBD><E280BA><EFBFBD><EFBFBD> ΅Ά£¤¥¦§¨©<C2A8>«¬­®―°±²³΄µ¶·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ<CEA0>ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ<CF8D>"},win1253:"windows1253",cp1253:"windows1253",windows1254:{type:"_sbcs",chars:"€<>ƒ„…†‡ˆ‰ŠŒ<E280B9><C592><EFBFBD><EFBFBD>“”•˜™šœ<E280BA><C593>Ÿ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ"},win1254:"windows1254",cp1254:"windows1254",windows1255:{type:"_sbcs",chars:"€<>ƒ„…†‡ˆ<CB86><EFBFBD><E280B9><EFBFBD><EFBFBD><EFBFBD>“”•˜<CB9C><EFBFBD><E280BA><EFBFBD><EFBFBD> ¡¢£₪¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾¿ְֱֲֳִֵֶַָֹֺֻּֽ־ֿ׀ׁׂ׃װױײ׳״<D7B3><D7B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>אבגדהוזחטיךכלםמןנסעףפץצקרשת<D7A9><D7AA><E2808E>"},win1255:"windows1255",cp1255:"windows1255",windows1256:{type:"_sbcs",chars:"€پ‚ƒ„…†‡ˆ‰ٹ‹Œچژڈگ‘’“”•–—ک™ڑ›œ‌‍ں ،¢£¤¥¦§¨©ھ«¬­®¯°±²³´µ¶·¸¹؛»¼½¾؟ہءآأؤإئابةتثجحخدذرزسشصض×طظعغـفقكàلâمنهوçèéêëىيîïًٌٍَôُِ÷ّùْûü‎‏ے"},win1256:"windows1256",cp1256:"windows1256",windows1257:{type:"_sbcs",chars:"€<><EFBFBD>„…†‡<E280A0><EFBFBD><EFBFBD>¨ˇ¸<CB87>“”•<E28093><EFBFBD><EFBFBD>¯˛<C2AF> <EFBFBD>¢£¤<C2A3>¦§Ø©Ŗ«¬­®Æ°±²³´µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž˙"},win1257:"windows1257",cp1257:"windows1257",windows1258:{type:"_sbcs",chars:"€<>ƒ„…†‡ˆ<CB86>Œ<E280B9><C592><EFBFBD><EFBFBD>“”•˜<CB9C>œ<E280BA><C593>Ÿ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},win1258:"windows1258",cp1258:"windows1258",iso88591:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},cp28591:"iso88591",iso88592:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ą˘Ł¤ĽŚ§¨ŠŞŤŹ­ŽŻ°ą˛ł´ľśˇ¸šşťź˝žżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙"},cp28592:"iso88592",iso88593:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ħ˘£¤<C2A3>Ĥ§¨İŞĞĴ­<C4B4>ݰħ²³´µĥ·¸ışğĵ½<C4B5>żÀÁÂ<C381>ÄĊĈÇÈÉÊËÌÍÎÏ<C38E>ÑÒÓÔĠÖ×ĜÙÚÛÜŬŜßàáâ<C3A1>äċĉçèéêëìíîï<C3AE>ñòóôġö÷ĝùúûüŭŝ˙"},cp28593:"iso88593",iso88594:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄĸŖ¤Ĩϧ¨ŠĒĢŦ­Ž¯°ą˛ŗ´ĩšēģŧŊžŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎĪĐŅŌĶÔÕÖרŲÚÛÜŨŪßāáâãäåæįčéęëėíîīđņōķôõö÷øųúûüũū˙"},cp28594:"iso88594",iso88595:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ЁЂЃЄЅІЇЈЉЊЋЌ­ЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђѓєѕіїјљњћќ§ўџ"},cp28595:"iso88595",iso88596:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ <C29F><C2A0><EFBFBD>¤<EFBFBD><C2A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>،­<D88C><C2AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>؛<EFBFBD><D89B><EFBFBD>؟<EFBFBD>ءآأؤإئابةتثجحخدذرزسشصضطظعغ<D8B9><D8BA><EFBFBD><EFBFBD><EFBFBD>ـفقكلمنهوىيًٌٍَُِّْ<D991><D992><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"},cp28596:"iso88596",iso88597:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ £€₯¦§¨©ͺ«¬­<C2AC>―°±²³΄΅Ά·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ<CEA0>ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ<CF8D>"},cp28597:"iso88597",iso88598:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ <C29F>¢£¤¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾<C2BD><C2BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>‗אבגדהוזחטיךכלםמןנסעףפץצקרשת<D7A9><D7AA><E2808E>"},cp28598:"iso88598",iso88599:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ"},cp28599:"iso88599",iso885910:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄĒĢĪĨͧĻĐŠŦŽ­ŪŊ°ąēģīĩķ·ļđšŧž―ūŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎÏÐŅŌÓÔÕÖŨØŲÚÛÜÝÞßāáâãäåæįčéęëėíîïðņōóôõöũøųúûüýþĸ"},cp28600:"iso885910",iso885911:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู<E0B8B9><E0B8BA><EFBFBD><EFBFBD>฿เแโใไๅๆ็่้๊๋์ํ๎๏๑๒๓๔๕๖๗๘๙๚๛<E0B99A><E0B99B><EFBFBD><EFBFBD>"},cp28601:"iso885911",iso885913:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ”¢£¤„¦§Ø©Ŗ«¬­®Æ°±²³“µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž’"},cp28603:"iso885913",iso885914:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ḃḃ£ĊċḊ§Ẁ©ẂḋỲ­®ŸḞḟĠġṀṁ¶ṖẁṗẃṠỳẄẅṡÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŴÑÒÓÔÕÖṪØÙÚÛÜÝŶßàáâãäåæçèéêëìíîïŵñòóôõöṫøùúûüýŷÿ"},cp28604:"iso885914",iso885915:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£€¥Š§š©ª«¬­®¯°±²³Žµ¶·ž¹º»ŒœŸ¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},cp28605:"iso885915",iso885916:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄąŁ€„Чš©Ș«Ź­źŻ°±ČłŽ”¶·žčș»ŒœŸżÀÁÂĂÄĆÆÇÈÉÊËÌÍÎÏĐŃÒÓÔŐÖŚŰÙÚÛÜĘȚßàáâăäćæçèéêëìíîïđńòóôőöśűùúûüęțÿ"},cp28606:"iso885916",cp437:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜ¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm437:"cp437",csibm437:"cp437",cp737:{type:"_sbcs",chars:"ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρσςτυφχψ░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀ωάέήϊίόύϋώΆΈΉΊΌΎΏ±≥≤ΪΫ÷≈°∙·√ⁿ²■ "},ibm737:"cp737",csibm737:"cp737",cp775:{type:"_sbcs",chars:"ĆüéāäģåćłēŖŗīŹÄÅÉæÆōöĢ¢ŚśÖÜø£Ø×¤ĀĪóŻżź”¦©®¬½¼Ł«»░▒▓│┤ĄČĘĖ╣║╗╝ĮŠ┐└┴┬├─┼ŲŪ╚╔╩╦╠═╬Žąčęėįšųūž┘┌█▄▌▐▀ÓßŌŃõÕµńĶķĻļņĒŅ’­±“¾¶§÷„°∙·¹³²■ "},ibm775:"cp775",csibm775:"cp775",cp850:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈıÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´­±‗¾¶§÷¸°¨·¹³²■ "},ibm850:"cp850",csibm850:"cp850",cp852:{type:"_sbcs",chars:"ÇüéâäůćçłëŐőîŹÄĆÉĹĺôöĽľŚśÖÜŤťŁ×čáíóúĄąŽžĘ꬟Ⱥ«»░▒▓│┤ÁÂĚŞ╣║╗╝Żż┐└┴┬├─┼Ăă╚╔╩╦╠═╬¤đĐĎËďŇÍÎě┘┌█▄ŢŮ▀ÓßÔŃńňŠšŔÚŕŰýÝţ´­˝˛ˇ˘§÷¸°¨˙űŘř■ "},ibm852:"cp852",csibm852:"cp852",cp855:{type:"_sbcs",chars:"ђЂѓЃёЁєЄѕЅіІїЇјЈљЉњЊћЋќЌўЎџЏюЮъЪаАбБцЦдДеЕфФгГ«»░▒▓│┤хХиИ╣║╗╝йЙ┐└┴┬├─┼кК╚╔╩╦╠═╬¤лЛмМнНоОп┘┌█▄Пя▀ЯрРсСтТуУжЖвВьЬ№­ыЫзЗшШэЭщЩчЧ§■ "},ibm855:"cp855",csibm855:"cp855",cp856:{type:"_sbcs",chars:"אבגדהוזחטיךכלםמןנסעףפץצקרשת<D7A9>£<EFBFBD>×<EFBFBD><C397><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>®¬½¼<C2BD>«»░▒▓│┤<E29482><E294A4><EFBFBD>©╣║╗╝¢¥┐└┴┬├─┼<E29480><E294BC>╚╔╩╦╠═╬¤<E295AC><C2A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>┘┌█▄¦<E29684><EFBFBD><E29680><EFBFBD><EFBFBD><EFBFBD><EFBFBD>µ<EFBFBD><C2B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¯´­±‗¾¶§÷¸°¨·¹³²■ "},ibm856:"cp856",csibm856:"cp856",cp857:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîıÄÅÉæÆôöòûùİÖÜø£ØŞşáíóúñÑĞ𿮬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ºªÊËÈ<C38B>ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµ<C395>×ÚÛÙìÿ¯´­±<C2AD>¾¶§÷¸°¨·¹³²■ "},ibm857:"cp857",csibm857:"cp857",cp858:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈ€ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´­±‗¾¶§÷¸°¨·¹³²■ "},ibm858:"cp858",csibm858:"cp858",cp860:{type:"_sbcs",chars:"ÇüéâãàÁçêÊèÍÔìÃÂÉÀÈôõòÚùÌÕÜ¢£Ù₧ÓáíóúñѪº¿Ò¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm860:"cp860",csibm860:"cp860",cp861:{type:"_sbcs",chars:"ÇüéâäàåçêëèÐðÞÄÅÉæÆôöþûÝýÖÜø£Ø₧ƒáíóúÁÍÓÚ¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm861:"cp861",csibm861:"cp861",cp862:{type:"_sbcs",chars:"אבגדהוזחטיךכלםמןנסעףפץצקרשת¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm862:"cp862",csibm862:"cp862",cp863:{type:"_sbcs",chars:"ÇüéâÂà¶çêëèïî‗À§ÉÈÊôËÏûù¤ÔÜ¢£ÙÛƒ¦´óú¨¸³¯Î⌐¬½¼¾«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm863:"cp863",csibm863:"cp863",cp864:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#$٪&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~°·∙√▒─│┼┤┬├┴┐┌└┘β∞φ±½¼≈«»ﻷﻸ<EFBBB7><EFBBB8>ﻻﻼ<EFBBBB> ­ﺂ£¤ﺄ<C2A4><EFBA84>ﺏﺕﺙ،ﺝﺡﺥ٠١٢٣٤٥٦٧٨٩ﻑ؛ﺱﺵﺹ؟¢ﺀﺁﺃﺅﻊﺋﺑﺓﺗﺛﺟﺣﺧﺩﺫﺭﺯﺳﺷﺻﺿﻁﻅﻋﻏ¦¬÷×ﻉـﻓﻗﻛﻟﻣﻧﻭﻯﻳﺽﻌﻎﻍﻡﹽّﻥﻰﻲﻐﻕﻵﻶﻝﻙﻱ■<EFBBB1>"},ibm864:"cp864",csibm864:"cp864",cp865:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø₧ƒáíóúñѪº¿⌐¬½¼¡«¤░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm865:"cp865",csibm865:"cp865",cp866:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№¤■ "},ibm866:"cp866",csibm866:"cp866",cp869:{type:"_sbcs",chars:"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ά<EFBFBD>·¬¦Έ―ΉΊΪΌ<CEAA><CE8C>ΎΫ©Ώ²³ά£έήίϊΐόύΑΒΓΔΕΖΗ½ΘΙ«»░▒▓│┤ΚΛΜΝ╣║╗╝ΞΟ┐└┴┬├─┼ΠΡ╚╔╩╦╠═╬ΣΤΥΦΧΨΩαβγ┘┌█▄δε▀ζηθικλμνξοπρσςτ΄­±υφχ§ψ΅°¨ωϋΰώ■ "},ibm869:"cp869",csibm869:"cp869",cp922:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®‾°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŠÑÒÓÔÕÖרÙÚÛÜÝŽßàáâãäåæçèéêëìíîïšñòóôõö÷øùúûüýžÿ"},ibm922:"cp922",csibm922:"cp922",cp1046:{type:"_sbcs",chars:"ﺈ×÷ﹱˆ■│─┐┌└┘ﹹﹻﹽﹿﹷﺊﻰﻳﻲﻎﻏﻐﻶﻸﻺﻼ ¤ﺋﺑﺗﺛﺟﺣ،­ﺧﺳ٠١٢٣٤٥٦٧٨٩ﺷ؛ﺻﺿﻊ؟ﻋءآأؤإئابةتثجحخدذرزسشصضطﻇعغﻌﺂﺄﻓـفقكلمنهوىيًٌٍَُِّْﻗﻛﻟﻵﻷﻹﻻﻣﻧ<EFBBAC>"},ibm1046:"cp1046",csibm1046:"cp1046",cp1124:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ЁЂҐЄЅІЇЈЉЊЋЌ­ЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђґєѕіїјљњћќ§ўџ"},ibm1124:"cp1124",csibm1124:"cp1124",cp1125:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёҐґЄєІіЇї·√№¤■ "},ibm1125:"cp1125",csibm1125:"cp1125",cp1129:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§œ©ª«¬­®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},ibm1129:"cp1129",csibm1129:"cp1129",cp1133:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ກຂຄງຈສຊຍດຕຖທນບປຜຝພຟມຢຣລວຫອຮ<E0BAAD><E0BAAE><EFBFBD>ຯະາຳິີຶືຸູຼັົຽ<E0BABB><E0BABD><EFBFBD>ເແໂໃໄ່້໊໋໌ໍໆ<E0BB8D>ໜໝ₭<E0BB9D><E282AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>໑໒໓໔໕໖໗໘໙<E0BB98><E0BB99>¢¬¦<C2AC>"},ibm1133:"cp1133",csibm1133:"cp1133",cp1161:{type:"_sbcs",chars:"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>่กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู้๊๋€฿เแโใไๅๆ็่้๊๋์ํ๎๏๑๒๓๔๕๖๗๘๙๚๛¢¬¦ "},ibm1161:"cp1161",csibm1161:"cp1161",cp1162:{type:"_sbcs",chars:"€‚ƒ„†‡ˆ‰Š‹ŒŽ“”•˜™š›œžŸ กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู<E0B8B9><E0B8BA><EFBFBD><EFBFBD>฿เแโใไๅๆ็่้๊๋์ํ๎๏๑๒๓๔๕๖๗๘๙๚๛<E0B99A><E0B99B><EFBFBD><EFBFBD>"},ibm1162:"cp1162",csibm1162:"cp1162",cp1163:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£€¥¦§œ©ª«¬­®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},ibm1163:"cp1163",csibm1163:"cp1163",maccroatian:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®Š™´¨≠ŽØ∞±≤≥∆µ∂∑∏š∫ªºΩžø¿¡¬√ƒ≈ƫȅ ÀÃÕŒœĐ—“”÷◊<C3B7>©¤Æ»·„‰ÂćÁčÈÍÎÏÌÓÔđÒÚÛÙıˆ˜¯πË˚¸Êæˇ"},maccyrillic:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°¢£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµ∂ЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤"},macgreek:{type:"_sbcs",chars:"Ĺ²É³ÖÜ΅àâä΄¨çéèê룙î‰ôö¦­ùûü†ΓΔΘΛΞΠß®©ΣΪ§≠°·Α±≤≥¥ΒΕΖΗΙΚΜΦΫΨΩάΝ¬ΟΡΤ«»… ΥΧΆΈœ―“”÷ΉΊΌΎέήίόΏύαβψδεφγηιξκλμνοπώρστθωςχυζϊϋΐΰ<CE90>"},maciceland:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûüݰ¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ—“”÷◊ÿŸ¤ÐðÞþý·„‰ÂÊÁËÈÍÎÏÌÓÔ<C393>ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macroman:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ—“”÷◊ÿŸ¤fifl‡·„‰ÂÊÁËÈÍÎÏÌÓÔ<C393>ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macromania:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ĂŞ∞±≤≥¥µ∂∑∏π∫ªºΩăş¿¡¬√ƒ≈∆«»… ÀÃÕŒœ—“”÷◊ÿŸ¤Ţţ‡·„‰ÂÊÁËÈÍÎÏÌÓÔ<C393>ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macthai:{type:"_sbcs",chars:"«»…“”<E2809D>•<E28098> กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู\ufeff—฿เแโใไๅๆ็่้๊๋์ํ™๏๑๒๓๔๕๖๗๘๙®©<C2AE><C2A9><EFBFBD><EFBFBD>"},macturkish:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ—“”÷◊ÿŸĞğİıŞş‡·„‰ÂÊÁËÈÍÎÏÌÓÔ<C393>ÒÚÛÙ<C39B>ˆ˜¯˘˙˚¸˝˛ˇ"},macukraine:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°Ґ£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµґЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤"},koi8r:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ё╓╔╕╖╗╘╙╚╛╜╝╞╟╠╡Ё╢╣╤╥╦╧╨╩╪╫╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8u:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґ╝╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪Ґ╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8ru:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґў╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪ҐЎ©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8t:{type:"_sbcs",chars:"қғҒ„…†‡<E280A0>‰ҳҲҷҶ<D2B7>Қ“”•<E28093><EFBFBD><EFBFBD><E280BA><EFBFBD><EFBFBD><EFBFBD>ӯӮё¤ӣ¦§<C2A6><C2A7><EFBFBD>«¬­®<C2AD>°±²Ё<C2B2>Ӣ¶·<C2B6><EFBFBD>»<EFBFBD><C2BB><EFBFBD>©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},armscii8:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ <C29F>և։)(»«—.՝,-֊…՜՛՞ԱաԲբԳգԴդԵեԶզԷէԸըԹթԺժԻիԼլԽխԾծԿկՀհՁձՂղՃճՄմՅյՆնՇշՈոՉչՊպՋջՌռՍսՎվՏտՐրՑցՒւՓփՔքՕօՖֆ՚<D686>"},rk1048:{type:"_sbcs",chars:"ЂЃѓ„…†‡€‰ЉЊҚҺЏђ“”•<E28093>™љњқһџ ҰұӘ¤Ө¦§Ё©Ғ«¬­®Ү°±Ііөµ¶·ё№ғ»әҢңүАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},tcvn:{type:"_sbcs",chars:"\0ÚỤỪỬỮ\b\t\n\v\f\rỨỰỲỶỸÝỴ !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ÀẢÃÁẠẶẬÈẺẼÉẸỆÌỈĨÍỊÒỎÕÓỌỘỜỞỠỚỢÙỦŨ ĂÂÊÔƠƯĐăâêôơưđẶ̀̀̉̃́àảãáạẲằẳẵắẴẮẦẨẪẤỀặầẩẫấậèỂẻẽéẹềểễếệìỉỄẾỒĩíịòỔỏõóọồổỗốộờởỡớợùỖủũúụừửữứựỳỷỹýỵỐ"},georgianacademy:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზთიკლმნოპჟრსტუფქღყშჩცძწჭხჯჰჱჲჳჴჵჶçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},georgianps:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზჱთიკლმნჲოპჟრსტჳუფქღყშჩცძწჭხჴჯჰჵæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},pt154:{type:"_sbcs",chars:"ҖҒӮғ„…ҶҮҲүҠӢҢҚҺҸҗ‘’“”•–—ҳҷҡӣңқһҹ ЎўЈӨҘҰ§Ё©Ә«¬ӯ®Ҝ°ұІіҙө¶·ё№ә»јҪҫҝАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},viscii:{type:"_sbcs",chars:"\0ẴẪ\b\t\n\v\f\r !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ẠẮẰẶẤẦẨẬẼẸẾỀỂỄỆỐỒỔỖỘỢỚỜỞỊỎỌỈỦŨỤỲÕắằặấầẩậẽẹếềểễệốồổỗỠƠộờởịỰỨỪỬơớƯÀÁÂÃẢĂẳẵÈÉÊẺÌÍĨỳĐứÒÓÔạỷừửÙÚỹỵÝỡưàáâãảăữẫèéêẻìíĩỉđựòóôõỏọụùúũủýợỮ"},iso646cn:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#¥%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}‾<E280BE><7F><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"},iso646jp:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[¥]^_`abcdefghijklmnopqrstuvwxyz{|}‾<E280BE><7F><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"},hproman8:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ÀÂÈÊËÎÏ´ˋˆ¨˜ÙÛ₤¯Ýý°ÇçÑñ¡¿¤£¥§ƒ¢âêôûáéóúàèòùäëöüÅîØÆåíøæÄìÖÜÉïßÔÁÃãÐðÍÌÓÒÕõŠšÚŸÿÞþ·µ¶¾—¼½ªº«■»±<C2BB>"},macintosh:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ—“”÷◊ÿŸ¤fifl‡·„‰ÂÊÁËÈÍÎÏÌÓÔ<C393>ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},ascii:{type:"_sbcs",chars:"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"},tis620:{type:"_sbcs",chars:"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู<E0B8B9><E0B8BA><EFBFBD><EFBFBD>฿เแโใไๅๆ็่้๊๋์ํ๎๏๑๒๓๔๕๖๗๘๙๚๛<E0B99A><E0B99B><EFBFBD><EFBFBD>"}}},5957:function(e,t,n){"use strict";var r=n(4730);var i;var o=function(){throw new Error("No async scheduler available\n\n See http://goo.gl/MqrFmX\n")};var a=r.getNativePromise();if(r.isNode&&typeof MutationObserver==="undefined"){var s=global.setImmediate;var c=process.nextTick;i=r.isRecentNode?function(e){s.call(global,e)}:function(e){c.call(process,e)}}else if(typeof a==="function"&&typeof a.resolve==="function"){var u=a.resolve();i=function(e){u.then(e)}}else if(typeof MutationObserver!=="undefined"&&!(typeof window!=="undefined"&&window.navigator&&(window.navigator.standalone||window.cordova))&&"classList"in document.documentElement){i=function(){var e=document.createElement("div");var t={attributes:true};var n=false;var r=document.createElement("div");var i=new MutationObserver(function(){e.classList.toggle("foo");n=false});i.observe(r,t);var o=function(){if(n)return;n=true;r.classList.toggle("foo")};return function schedule(n){var r=new MutationObserver(function(){r.disconnect();n()});r.observe(e,t);o()}}()}else if(typeof setImmediate!=="undefined"){i=function(e){setImmediate(e)}}else if(typeof setTimeout!=="undefined"){i=function(e){setTimeout(e,0)}}else{i=o}e.exports=i},5958:function(e,t){Object.defineProperty(t,"__esModule",{value:true});var n;(function(e){e[e["None"]=0]="None";e[e["Error"]=1]="Error";e[e["Debug"]=2]="Debug";e[e["Verbose"]=3]="Verbose"})(n=t.LogLevel||(t.LogLevel={}))},5963:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return main});var r=n(9544);var i=n.n(r);var o=n(5242);var a=n.n(o);var s=n(8685);var c=n.n(s);var u=n(4999);var l=n.n(u);var f=n(2385);var p=n(4573);var d=n.n(p);var h=n(8303);var m=n.n(h);var v=n(5580);var g=n.n(v);var y=n(7991);var b=n.n(y);var w=n(4495);var x=n(8950);var k=n.n(x);var j=n(348);const S=e=>{console.log(`\n ${i.a.bold(`${l.a} now ${e}`)} [options]\n\n ${i.a.dim("Options:")}\n\n -h, --help Output usage information\n -A ${i.a.bold.underline("FILE")}, --local-config=${i.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${i.a.bold.underline("DIR")}, --global-config=${i.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -d, --debug Debug mode [off]\n -t ${i.a.bold.underline("TOKEN")}, --token=${i.a.bold.underline("TOKEN")} Login token\n -S, --scope Set a custom scope\n -y, --yes Skip the confirmation prompt\n\n ${i.a.dim("Examples:")}\n\n ${i.a.gray("")} ${e==="upgrade"?"Upgrade to the Unlimited plan":"Downgrade to the Free plan"}\n\n ${i.a.cyan(`$ now ${e}`)}\n ${e==="upgrade"?`\n ${i.a.yellow("NOTE:")} ${i.a.gray("Make sure you have a payment method, or add one:")}\n\n ${i.a.cyan(`$ now billing add`)}\n `:""}\n ${i.a.gray("")} ${e==="upgrade"?"Upgrade to the Unlimited plan without confirming":"Downgrade to the Free plan without confirming"}\n\n ${i.a.cyan(`$ now ${e} --yes`)}\n `)};const E=async({error:e},t,n=false)=>{const r=k()(n?"Re-activating":"Upgrading");try{await t.fetch(`/plan`,{method:"PUT",body:{plan:"unlimited",reactivation:n}})}catch(t){r();if(t.code==="no_team_owner"){e(`You are not an owner of this team. Please ask an owner to upgrade your membership.`);return 1}if(t.code==="customer_not_found"){e(`No payment method available. Please add one using ${c()("now billing add")} before upgrading.`);return 1}e(`Not able to upgrade. Please try again later.`);return 1}r()};const _=async({error:e},t)=>{const n=k()("Downgrading");try{await t.fetch(`/plan`,{method:"PUT",body:{plan:"free"}})}catch(t){n();if(t.code==="no_team_owner"){e(`You are not an owner of this team. Please ask an owner to upgrade your membership.`);return 1}e(`Not able to downgrade. Please try again later.`);return 1}n()};async function main(e){let t;try{t=g()(e.argv.slice(2),{"--yes":Boolean,"-y":"--yes"})}catch(e){Object(f["handleError"])(e);return 1}const n=t._[0];const r=t["--yes"];if(t["--help"]){S(n);return 2}const o=e.apiUrl;const s=t["--debug"];const u=a()({debug:s});const{log:l,success:p,warn:h}=u;if(n==="upgrade"){l(`Are you trying to upgrade Now CLI? Run ${c()("now update")}!`)}h(`${c()(`now ${n}`)} is deprecated and will soon be removed.`);l(`Change your plan here: ${i.a.cyan("https://zeit.co/account/plan")}\n`);const{authConfig:{token:v},config:y}=e;const{currentTeam:x}=y;const k=new d.a({apiUrl:o,token:v,currentTeam:x,debug:s});let C=null;let A=null;try{({user:C,team:A}=await m()(k))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){u.error(e.message);return 1}throw e}const O=x?`Your team ${i.a.bold(A.name)} is`:"You are";const F=new w["default"]({apiUrl:o,token:v,debug:s,currentTeam:x});const D=x?A.billing:C.billing;const T=D&&D.plan||"free";if(D&&D.cancelation){const e=new Date(D.cancelation).toLocaleString();l(`Your subscription is set to ${i.a.bold("downgrade")} on ${i.a.bold(e)}.`);const t=r||await b()(u,`Would you like to prevent this from happening?`);if(!t){l(`No action taken`);return 0}await E(u,F,true);p(`${O} back on the ${i.a.bold(j["default"][T])} plan. Enjoy!`);return 0}if(T==="unlimited"){if(n==="upgrade"){l(`${O} already on the ${i.a.bold("Unlimited")} plan. This is the highest plan.`);l(`If you want to upgrade a different scope, switch to it by using ${c()("now switch")} first.`);return 0}if(n==="downgrade"){l(`${O} on the ${i.a.bold("Unlimited")} plan.`);const e=r||await b()(u,`Would you like to downgrade to the ${i.a.bold("Free")} plan?`);if(!e){l(`Aborted`);return 0}await _(u,F);p(`${O} now on the ${i.a.bold("Free")} plan. We are sad to see you go!`)}}if(T==="free"||T==="oss"){if(n==="downgrade"){l(`${O} already on the ${i.a.bold("Free")} plan. This is the lowest plan.`);l(`If you want to downgrade a different scope, switch to it by using ${c()("now switch")} first.`);return 0}if(n==="upgrade"){l(`${O} on the ${i.a.bold("Free")} plan.`);const e=r||await b()(u,`Would you like to upgrade to the ${i.a.bold("Unlimited")} plan (starting at ${i.a.bold("$0.99/month")})?`);if(!e){l(`Aborted`);return 0}await E(u,F);p(`${O} now on the ${i.a.bold("Unlimited")} plan. Enjoy!`)}}l(`${O} on the old ${i.a.bold(j["default"][T])} plan (Now 1.0).`);if(n==="upgrade"){const e=r||await b()(u,`Would you like to upgrade to the new ${i.a.bold("Unlimited")} plan (starting at ${i.a.bold("$0.99/month")})?`);if(!e){l(`Aborted`);return 0}await E(u,F);p(`${O} now on the new ${i.a.bold("Unlimited")} plan. Enjoy!`);return 0}const I=r||await b()(u,`Would you like to downgrade to the new ${i.a.bold("Free")} plan?`);if(!I){l(`Aborted`);return 0}await _(u,F);p(`${O} now on the new ${i.a.bold("Free")} plan. We are sad to see you go!`)}},5968:function(e,t,n){"use strict";var r=n(7822);var i=n(9217);var o=n(6518);var a=o.md5;var s=o.toBase64;function Auth(e){this.request=e;this.hasAuth=false;this.sentAuth=false;this.bearerToken=null;this.user=null;this.pass=null}Auth.prototype.basic=function(e,t,n){var r=this;if(typeof e!=="string"||t!==undefined&&typeof t!=="string"){r.request.emit("error",new Error("auth() received invalid user or password"))}r.user=e;r.pass=t;r.hasAuth=true;var i=e+":"+(t||"");if(n||typeof n==="undefined"){var o="Basic "+s(i);r.sentAuth=true;return o}};Auth.prototype.bearer=function(e,t){var n=this;n.bearerToken=e;n.hasAuth=true;if(t||typeof t==="undefined"){if(typeof e==="function"){e=e()}var r="Bearer "+(e||"");n.sentAuth=true;return r}};Auth.prototype.digest=function(e,t,n){var r=this;var o={};var s=/([a-z0-9_-]+)=(?:"([^"]+)"|([a-z0-9_-]+))/gi;for(;;){var c=s.exec(n);if(!c){break}o[c[1]]=c[2]||c[3]}var u=function(e,t,n,r,i,o){var s=a(t+":"+n+":"+r);if(e&&e.toLowerCase()==="md5-sess"){return a(s+":"+i+":"+o)}else{return s}};var l=/(^|,)\s*auth\s*($|,)/.test(o.qop)&&"auth";var f=l&&"00000001";var p=l&&i().replace(/-/g,"");var d=u(o.algorithm,r.user,o.realm,r.pass,o.nonce,p);var h=a(e+":"+t);var m=l?a(d+":"+o.nonce+":"+f+":"+p+":"+l+":"+h):a(d+":"+o.nonce+":"+h);var v={username:r.user,realm:o.realm,nonce:o.nonce,uri:t,qop:l,response:m,nc:f,cnonce:p,algorithm:o.algorithm,opaque:o.opaque};n=[];for(var g in v){if(v[g]){if(g==="qop"||g==="nc"||g==="algorithm"){n.push(g+"="+v[g])}else{n.push(g+'="'+v[g]+'"')}}}n="Digest "+n.join(", ");r.sentAuth=true;return n};Auth.prototype.onRequest=function(e,t,n,r){var i=this;var o=i.request;var a;if(r===undefined&&e===undefined){i.request.emit("error",new Error("no auth mechanism defined"))}else if(r!==undefined){a=i.bearer(r,n)}else{a=i.basic(e,t,n)}if(a){o.setHeader("authorization",a)}};Auth.prototype.onResponse=function(e){var t=this;var n=t.request;if(!t.hasAuth||t.sentAuth){return null}var i=r(e.headers);var o=i.get("www-authenticate");var a=o&&o.split(" ")[0].toLowerCase();n.debug("reauth",a);switch(a){case"basic":return t.basic(t.user,t.pass,true);case"bearer":return t.bearer(t.bearerToken,true);case"digest":return t.digest(n.method,n.path,o)}};t.Auth=Auth},5973:function(e,t){"use strict";const n=t.encode=((e,t)=>{t[t.length-1]=32;if(e<0)i(e,t);else r(e,t);return t});const r=(e,t)=>{t[0]=128;for(var n=t.length-2;n>0;n--){if(e===0)t[n]=0;else{t[n]=e%256;e=Math.floor(e/256)}}};const i=(e,t)=>{t[0]=255;var n=false;e=e*-1;for(var r=t.length-2;r>0;r--){var i;if(e===0)i=0;else{i=e%256;e=Math.floor(e/256)}if(n)t[r]=c(i);else if(i===0)t[r]=0;else{n=true;t[r]=u(i)}}};const o=t.parse=(e=>{var t=e[e.length-1];var n=e[0];return n===128?s(e.slice(1,e.length-1)):a(e.slice(1,e.length-1))});const a=e=>{var t=e.length;var n=0;var r=false;for(var i=t-1;i>-1;i--){var o=e[i];var a;if(r)a=c(o);else if(o===0)a=o;else{r=true;a=u(o)}if(a!==0)n+=a*Math.pow(256,t-i-1)}return n*-1};const s=e=>{var t=e.length;var n=0;for(var r=t-1;r>-1;r--){var i=e[r];if(i!==0)n+=i*Math.pow(256,t-r-1)}return n};const c=e=>(255^e)&255;const u=e=>(255^e)+1&255},5979:function(e,t){t.parse=t.decode=decode;t.stringify=t.encode=encode;t.safe=safe;t.unsafe=unsafe;var n=process.platform==="win32"?"\r\n":"\n";function encode(e,t){var r=[],i="";if(typeof t==="string"){t={section:t,whitespace:false}}else{t=t||{};t.whitespace=t.whitespace===true}var o=t.whitespace?" = ":"=";Object.keys(e).forEach(function(t,a,s){var c=e[t];if(c&&Array.isArray(c)){c.forEach(function(e){i+=safe(t+"[]")+o+safe(e)+"\n"})}else if(c&&typeof c==="object"){r.push(t)}else{i+=safe(t)+o+safe(c)+n}});if(t.section&&i.length){i="["+safe(t.section)+"]"+n+i}r.forEach(function(r,o,a){var s=dotSplit(r).join("\\.");var c=(t.section?t.section+".":"")+s;var u=encode(e[r],{section:c,whitespace:t.whitespace});if(i.length&&u.length){i+=n}i+=u});return i}function dotSplit(e){return e.replace(/\1/g,"LITERAL\\1LITERAL").replace(/\\\./g,"").split(/\./).map(function(e){return e.replace(/\1/g,"\\.").replace(/\2LITERAL\\1LITERAL\2/g,"")})}function decode(e){var t={},n=t,r=null,i="START",o=/^\[([^\]]*)\]$|^([^=]+)(=(.*))?$/i,a=e.split(/[\r\n]+/g),r=null;a.forEach(function(e,i,a){if(!e||e.match(/^\s*[;#]/))return;var s=e.match(o);if(!s)return;if(s[1]!==undefined){r=unsafe(s[1]);n=t[r]=t[r]||{};return}var c=unsafe(s[2]),u=s[3]?unsafe(s[4]||""):true;switch(u){case"true":case"false":case"null":u=JSON.parse(u)}if(c.length>2&&c.slice(-2)==="[]"){c=c.substring(0,c.length-2);if(!n[c]){n[c]=[]}else if(!Array.isArray(n[c])){n[c]=[n[c]]}}if(Array.isArray(n[c])){n[c].push(u)}else{n[c]=u}});Object.keys(t).filter(function(e,n,r){if(!t[e]||typeof t[e]!=="object"||Array.isArray(t[e]))return false;var i=dotSplit(e),o=t,a=i.pop(),s=a.replace(/\\\./g,".");i.forEach(function(e,t,n){if(!o[e]||typeof o[e]!=="object")o[e]={};o=o[e]});if(o===t&&s===a)return false;o[s]=t[e];return true}).forEach(function(e,n,r){delete t[e]});return t}function isQuoted(e){return e.charAt(0)==='"'&&e.slice(-1)==='"'||e.charAt(0)==="'"&&e.slice(-1)==="'"}function safe(e){return typeof e!=="string"||e.match(/[=\r\n]/)||e.match(/^\[/)||e.length>1&&isQuoted(e)||e!==e.trim()?JSON.stringify(e):e.replace(/;/g,"\\;").replace(/#/g,"\\#")}function unsafe(e,t){e=(e||"").trim();if(isQuoted(e)){if(e.charAt(0)==="'"){e=e.substr(1,e.length-2)}try{e=JSON.parse(e)}catch(e){}}else{var n=false;var r="";for(var i=0,o=e.length;i<o;i++){var a=e.charAt(i);if(n){if("\\;#".indexOf(a)!==-1)r+=a;else r+="\\"+a;n=false}else if(";#".indexOf(a)!==-1){break}else if(a==="\\"){n=true}else{r+=a}}if(n)r+="\\";return r}return e}},5994:function(e,t,n){var r=n(1485);var i=n(6878);function getISOYear(e){var t=r(e);var n=t.getFullYear();var o=new Date(0);o.setFullYear(n+1,0,4);o.setHours(0,0,0,0);var a=i(o);var s=new Date(0);s.setFullYear(n,0,4);s.setHours(0,0,0,0);var c=i(s);if(t.getTime()>=a.getTime()){return n+1}else if(t.getTime()>=c.getTime()){return n}else{return n-1}}e.exports=getISOYear},5995:function(e,t,n){var r=n(9403)("wks");var i=n(4887);var o=n(1852).Symbol;var a=typeof o=="function";var s=e.exports=function(e){return r[e]||(r[e]=a&&o[e]||(a?o:i)("Symbol."+e))};s.store=r},5996:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=i(n(3759));const c=n(8715);const u=i(n(4573));const l=i(n(8685));const f=i(n(2269));const p=i(n(6760));const d=i(n(8303));const h=i(n(6012));const m=i(n(5320));const v=i(n(586));const g=o(n(8715));const y=i(n(2788));const b=i(n(3266));const w=i(n(9242));function rm(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:o}=e;const{currentTeam:s}=o;const{apiUrl:f}=e;const h=t["--debug"];const m=new u.default({apiUrl:f,token:r,currentTeam:s,debug:h});const[v]=n;let g=null;try{({contextName:g}=yield d.default(m))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){i.error(e.message);return 1}throw e}if(!v){i.error(`${l.default("now domains rm <domain>")} expects one argument`);return 1}if(n.length!==1){i.error(`Invalid number of arguments. Usage: ${a.default.cyan("`now domains rm <domain>`")}`);return 1}const w=yield p.default(m,g,v);if(w instanceof c.DomainNotFound){i.error(`Domain not found by "${v}" under ${a.default.bold(g)}`);i.log(`Run ${l.default("now domains ls")} to see your domains.`);return 1}if(w instanceof c.DomainPermissionDenied){i.error(`You don't have access to the domain ${v} under ${a.default.bold(g)}`);i.log(`Run ${l.default("now domains ls")} to see your domains.`);return 1}const x=t["--yes"];if(!x&&!(yield b.default(`Are you sure you want to remove ${y.default(v)}?`))){i.log("Aborted");return 0}return removeDomain(i,m,g,x,w)})}t.default=rm;function removeDomain(e,t,n,i,o,c=[],u=[],p=false,d=1){return r(this,void 0,void 0,function*(){const r=v.default();e.debug(`Removing domain`);for(const n of c){e.debug(`Removing alias ${n}`);yield h.default(t,n)}for(const n of u){e.debug(`Removing cert ${n}`);yield f.default(e,t,n)}if(p){e.debug(`Removing custom suffix`);yield w.default(t,n,o.name,null)}const x=yield m.default(t,n,o.name);if(x instanceof g.DomainNotFound){e.error(`Domain not found under ${a.default.bold(n)}`);e.log(`Run ${l.default("now domains ls")} to see your domains.`);return 1}if(x instanceof g.DomainPermissionDenied){e.error(`You don't have permissions over domain ${a.default.underline(x.meta.domain)} under ${a.default.bold(x.meta.context)}.`);return 1}if(x instanceof g.DomainRemovalConflict){if(d>=2){e.error(x.message);return 1}const{aliases:r,certs:c,suffix:u,transferring:l,pendingAsyncPurchase:f,resolvable:p}=x.meta;if(l){e.error(`${y.default(o.name)} transfer should be declined or approved before removing.`);return 1}if(f){e.error(`Cannot remove ${y.default(o.name)} because it is still in the process of being purchased.`);return 1}if(!p){e.error(x.message);return 1}e.log(`We found conflicts when attempting to remove ${y.default(o.name)}.`);if(r.length>0){e.warn(`This domain's ${a.default.bold(s.default("alias",r.length,true))} will be removed. Run ${a.default.dim("`now alias ls`")} to list them.`)}if(c.length>0){e.warn(`This domain's ${a.default.bold(s.default("certificate",c.length,true))} will be removed. Run ${a.default.dim("`now cert ls`")} to list them.`)}if(u){e.warn(`The ${a.default.bold(`custom suffix`)} associated with this domain.`)}if(!i&&!(yield b.default(`Remove conflicts associated with domain?`))){e.log("Aborted");return 0}return removeDomain(e,t,n,i,o,r,c,u,d+1)}e.success(`Domain ${a.default.bold(o.name)} removed ${r()}`);return 0})}},5998:function(e,t,n){"use strict";var r=n(9423).Buffer;e.exports=function(e){var t=undefined;e.supportsNodeEncodingsExtension=!(r.from||new r(0)instanceof Uint8Array);e.extendNodeEncodings=function extendNodeEncodings(){if(t)return;t={};if(!e.supportsNodeEncodingsExtension){console.error("ACTION NEEDED: require('iconv-lite').extendNodeEncodings() is not supported in your version of Node");console.error("See more info at https://github.com/ashtuchkin/iconv-lite/wiki/Node-v4-compatibility");return}var i={hex:true,utf8:true,"utf-8":true,ascii:true,binary:true,base64:true,ucs2:true,"ucs-2":true,utf16le:true,"utf-16le":true};r.isNativeEncoding=function(e){return e&&i[e.toLowerCase()]};var o=n(9423).SlowBuffer;t.SlowBufferToString=o.prototype.toString;o.prototype.toString=function(n,i,o){n=String(n||"utf8").toLowerCase();if(r.isNativeEncoding(n))return t.SlowBufferToString.call(this,n,i,o);if(typeof i=="undefined")i=0;if(typeof o=="undefined")o=this.length;return e.decode(this.slice(i,o),n)};t.SlowBufferWrite=o.prototype.write;o.prototype.write=function(n,i,o,a){if(isFinite(i)){if(!isFinite(o)){a=o;o=undefined}}else{var s=a;a=i;i=o;o=s}i=+i||0;var c=this.length-i;if(!o){o=c}else{o=+o;if(o>c){o=c}}a=String(a||"utf8").toLowerCase();if(r.isNativeEncoding(a))return t.SlowBufferWrite.call(this,n,i,o,a);if(n.length>0&&(o<0||i<0))throw new RangeError("attempt to write beyond buffer bounds");var u=e.encode(n,a);if(u.length<o)o=u.length;u.copy(this,i,0,o);return o};t.BufferIsEncoding=r.isEncoding;r.isEncoding=function(t){return r.isNativeEncoding(t)||e.encodingExists(t)};t.BufferByteLength=r.byteLength;r.byteLength=o.byteLength=function(n,i){i=String(i||"utf8").toLowerCase();if(r.isNativeEncoding(i))return t.BufferByteLength.call(this,n,i);return e.encode(n,i).length};t.BufferToString=r.prototype.toString;r.prototype.toString=function(n,i,o){n=String(n||"utf8").toLowerCase();if(r.isNativeEncoding(n))return t.BufferToString.call(this,n,i,o);if(typeof i=="undefined")i=0;if(typeof o=="undefined")o=this.length;return e.decode(this.slice(i,o),n)};t.BufferWrite=r.prototype.write;r.prototype.write=function(n,i,o,a){var s=i,c=o,u=a;if(isFinite(i)){if(!isFinite(o)){a=o;o=undefined}}else{var l=a;a=i;i=o;o=l}a=String(a||"utf8").toLowerCase();if(r.isNativeEncoding(a))return t.BufferWrite.call(this,n,s,c,u);i=+i||0;var f=this.length-i;if(!o){o=f}else{o=+o;if(o>f){o=f}}if(n.length>0&&(o<0||i<0))throw new RangeError("attempt to write beyond buffer bounds");var p=e.encode(n,a);if(p.length<o)o=p.length;p.copy(this,i,0,o);return o};if(e.supportsStreams){var a=n(6886).Readable;t.ReadableSetEncoding=a.prototype.setEncoding;a.prototype.setEncoding=function setEncoding(t,n){this._readableState.decoder=e.getDecoder(t,n);this._readableState.encoding=t};a.prototype.collect=e._collect}};e.undoExtendNodeEncodings=function undoExtendNodeEncodings(){if(!e.supportsNodeEncodingsExtension)return;if(!t)throw new Error("require('iconv-lite').undoExtendNodeEncodings(): Nothing to undo; extendNodeEncodings() is not called.");delete r.isNativeEncoding;var i=n(9423).SlowBuffer;i.prototype.toString=t.SlowBufferToString;i.prototype.write=t.SlowBufferWrite;r.isEncoding=t.BufferIsEncoding;r.byteLength=t.BufferByteLength;r.prototype.toString=t.BufferToString;r.prototype.write=t.BufferWrite;if(e.supportsStreams){var o=n(6886).Readable;o.prototype.setEncoding=t.ReadableSetEncoding;delete o.prototype.collect}t=undefined}}},6003:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(2617);const o=n(5897);const a=n(6601).copy;const s=n(5012).remove;const c=n(7184).mkdirp;const u=n(5527).pathExists;function move(e,t,n,r){if(typeof n==="function"){r=n;n={}}const a=n.overwrite||n.clobber||false;e=o.resolve(e);t=o.resolve(t);if(e===t)return i.access(e,r);i.stat(e,(n,i)=>{if(n)return r(n);if(i.isDirectory()&&isSrcSubdir(e,t)){return r(new Error(`Cannot move '${e}' to a subdirectory of itself, '${t}'.`))}c(o.dirname(t),n=>{if(n)return r(n);return doRename(e,t,a,r)})})}function doRename(e,t,n,r){if(n){return s(t,i=>{if(i)return r(i);return rename(e,t,n,r)})}u(t,(i,o)=>{if(i)return r(i);if(o)return r(new Error("dest already exists."));return rename(e,t,n,r)})}function rename(e,t,n,r){i.rename(e,t,i=>{if(!i)return r();if(i.code!=="EXDEV")return r(i);return moveAcrossDevice(e,t,n,r)})}function moveAcrossDevice(e,t,n,r){const i={overwrite:n,errorOnExist:true};a(e,t,i,t=>{if(t)return r(t);return s(e,r)})}function isSrcSubdir(e,t){const n=e.split(o.sep);const r=t.split(o.sep);return n.reduce((e,t,n)=>{return e&&r[n]===t},true)}e.exports={move:r(move)}},6006:function(e,t,n){"use strict";e.exports=function(e,t,r){var i=e.PromiseInspection;var o=n(4730);function SettledPromiseArray(e){this.constructor$(e)}o.inherits(SettledPromiseArray,t);SettledPromiseArray.prototype._promiseResolved=function(e,t){this._values[e]=t;var n=++this._totalResolved;if(n>=this._length){this._resolve(this._values);return true}return false};SettledPromiseArray.prototype._promiseFulfilled=function(e,t){var n=new i;n._bitField=33554432;n._settledValueField=e;return this._promiseResolved(t,n)};SettledPromiseArray.prototype._promiseRejected=function(e,t){var n=new i;n._bitField=16777216;n._settledValueField=e;return this._promiseResolved(t,n)};e.settle=function(e){r.deprecated(".settle()",".reflect()");return new SettledPromiseArray(e).promise()};e.prototype.settle=function(){return e.settle(this)}}},6008:function(e,t,n){"use strict";e.exports=function(e,t,r){var i=n(4730);var o=e.TimeoutError;function HandleWrapper(e){this.handle=e}HandleWrapper.prototype._resultCancelled=function(){clearTimeout(this.handle)};var a=function(e){return s(+this).thenReturn(e)};var s=e.delay=function(n,i){var o;var s;if(i!==undefined){o=e.resolve(i)._then(a,null,null,n,undefined);if(r.cancellation()&&i instanceof e){o._setOnCancel(i)}}else{o=new e(t);s=setTimeout(function(){o._fulfill()},+n);if(r.cancellation()){o._setOnCancel(new HandleWrapper(s))}o._captureStackTrace()}o._setAsyncGuaranteed();return o};e.prototype.delay=function(e){return s(e,this)};var c=function(e,t,n){var r;if(typeof t!=="string"){if(t instanceof Error){r=t}else{r=new o("operation timed out")}}else{r=new o(t)}i.markAsOriginatingFromRejection(r);e._attachExtraTrace(r);e._reject(r);if(n!=null){n.cancel()}};function successClear(e){clearTimeout(this.handle);return e}function failureClear(e){clearTimeout(this.handle);throw e}e.prototype.timeout=function(e,t){e=+e;var n,i;var o=new HandleWrapper(setTimeout(function timeoutTimeout(){if(n.isPending()){c(n,t,i)}},e));if(r.cancellation()){i=this.then();n=i._then(successClear,failureClear,undefined,o,undefined);n._setOnCancel(o)}else{n=this._then(successClear,failureClear,undefined,o,undefined)}return n}}},6011:function(e,t,n){var r=n(2909);var i=n(5897).join;var o=n(5404);var a="/etc";var s=process.platform==="win32";var c=s?process.env.USERPROFILE:process.env.HOME;e.exports=function(e,t,u,l){if("string"!==typeof e)throw new Error("rc(name): name *must* be string");if(!u)u=n(1263)(process.argv.slice(2));t=("string"===typeof t?r.json(t):t)||{};l=l||r.parse;var f=r.env(e+"_");var p=[t];var d=[];function addConfigFile(e){if(d.indexOf(e)>=0)return;var t=r.file(e);if(t){p.push(l(t));d.push(e)}}if(!s)[i(a,e,"config"),i(a,e+"rc")].forEach(addConfigFile);if(c)[i(c,".config",e,"config"),i(c,".config",e),i(c,"."+e,"config"),i(c,"."+e+"rc")].forEach(addConfigFile);addConfigFile(r.find("."+e+"rc"));if(f.config)addConfigFile(f.config);if(u.config)addConfigFile(u.config);return o.apply(null,p.concat([f,u,d.length?{configs:d,config:d[d.length-1]}:undefined]))}},6012:function(e,t){"use strict";var n=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});function removeAliasById(e,t){return n(this,void 0,void 0,function*(){return e.fetch(`/now/aliases/${t}`,{method:"DELETE"})})}t.default=removeAliasById},6017:function(e,t,n){var r=n(1485);var i=n(441);var o=n(7466);function getDayOfYear(e){var t=r(e);var n=o(t,i(t));var a=n+1;return a}e.exports=getDayOfYear},6029:function(e,t,n){var r=n(649),i=n(6521);function ISO_2022(){}ISO_2022.prototype.match=function(e){var t,n;var r;var o=0;var a=0;var s=0;var c;var u=e.fInputBytes;var l=e.fInputLen;e:for(t=0;t<l;t++){if(u[t]==27){t:for(r=0;r<this.escapeSequences.length;r++){var f=this.escapeSequences[r];if(l-t<f.length)continue t;for(n=1;n<f.length;n++)if(f[n]!=u[t+n])continue t;o++;t+=f.length-1;continue e}a++}if(u[t]==14||u[t]==15)s++}if(o==0)return null;c=(100*o-100*a)/(o+a);if(o+s<5)c-=(5-(o+s))*10;return c<=0?null:new i(e,this,c)};e.exports.ISO_2022_JP=function(){this.name=function(){return"ISO-2022-JP"};this.escapeSequences=[[27,36,40,67],[27,36,40,68],[27,36,64],[27,36,65],[27,36,66],[27,38,64],[27,40,66],[27,40,72],[27,40,73],[27,40,74],[27,46,65],[27,46,70]]};r.inherits(e.exports.ISO_2022_JP,ISO_2022);e.exports.ISO_2022_KR=function(){this.name=function(){return"ISO-2022-KR"};this.escapeSequences=[[27,36,41,67]]};r.inherits(e.exports.ISO_2022_KR,ISO_2022);e.exports.ISO_2022_CN=function(){this.name=function(){return"ISO-2022-CN"};this.escapeSequences=[[27,36,41,65],[27,36,41,71],[27,36,42,72],[27,36,41,69],[27,36,43,73],[27,36,43,74],[27,36,43,75],[27,36,43,76],[27,36,43,77],[27,78],[27,79]]};r.inherits(e.exports.ISO_2022_CN,ISO_2022)},6031:function(e,t,n){"use strict";const r=n(6278);const i=n(2580);const o=n(4480);const a=n(903);const s=n(5725);e.exports=(()=>e=>{if(!Buffer.isBuffer(e)&&!o(e)){return Promise.reject(new TypeError(`Expected a Buffer or Stream, got ${typeof e}`))}if(Buffer.isBuffer(e)&&(!i(e)||i(e).ext!=="bz2")){return Promise.resolve([])}if(Buffer.isBuffer(e)){return r()(a.decode(e))}return r()(e.pipe(s()))})},6033:function(e,t,n){"use strict";n.r(t);var r=n(5897);var i=n.n(r);var o=n(1340);var a=n.n(o);Object(o["npm"])(Object(r["resolve"])("../mng-test/files-in-package")).then(e=>{console.log(e);Object(o["npm"])(Object(r["resolve"])("../mng-test/files-in-package-ignore")).then(e=>{console.log("ignored: ");console.log(e)}).catch(e=>{console.log(e.stack)})}).catch(e=>{console.log(e.stack)})},6037:function(e,t,n){var r=n(649);var i=n(9705);var o=n(8315);var a=n(9415);var s=n(8901);e.exports=Prompt;function Prompt(e){e||(e={});o.apply(this,arguments);this.log=i(this.writeLog.bind(this));this.bottomBar=e.bottomBar||"";this.render()}r.inherits(Prompt,o);Prompt.prototype.render=function(){this.write(this.bottomBar);return this};Prompt.prototype.clean=function(){a.clearLine(this.rl,this.bottomBar.split("\n").length);return this};Prompt.prototype.updateBottomBar=function(e){a.clearLine(this.rl,1);this.rl.output.unmute();this.clean();this.bottomBar=e;this.render();this.rl.output.mute();return this};Prompt.prototype.writeLog=function(e){this.rl.output.unmute();this.clean();this.rl.output.write(this.enforceLF(e.toString()));this.render();this.rl.output.mute();return this};Prompt.prototype.enforceLF=function(e){return e.match(/[\r\n]$/)?e:e+"\n"};Prompt.prototype.write=function(e){var t=e.split(/\n/);this.height=t.length;this.rl.setPrompt(s.last(t));if(this.rl.output.rows===0&&this.rl.output.columns===0){a.left(this.rl,e.length+this.rl.line.length)}this.rl.output.write(e)}},6039:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(4356).invalidWin32Path;const a=parseInt("0777",8);function mkdirsSync(e,t,n){if(!t||typeof t!=="object"){t={mode:t}}let s=t.mode;const c=t.fs||r;if(process.platform==="win32"&&o(e)){const t=new Error(e+" contains invalid WIN32 path characters.");t.code="EINVAL";throw t}if(s===undefined){s=a&~process.umask()}if(!n)n=null;e=i.resolve(e);try{c.mkdirSync(e,s);n=n||e}catch(r){if(r.code==="ENOENT"){if(i.dirname(e)===e)throw r;n=mkdirsSync(i.dirname(e),t,n);mkdirsSync(e,t,n)}else{let t;try{t=c.statSync(e)}catch(e){throw r}if(!t.isDirectory())throw r}}return n}e.exports=mkdirsSync},6041:function(e,t,n){var r=n(5212);e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},6053:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(8715);function responseError(e,t=null,n={}){return r(this,void 0,void 0,function*(){let r;let o;if(e.status>=400&&e.status<500){let t;try{t=yield e.json()}catch(e){t=n}o=t.error||t.err||t;r=o.message}if(r==null){r=t===null?"Response Error":t}return new i.APIError(r,e,o)})}t.default=responseError},6056:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9544));const o=i.default.cyan.underline;t.default=o},6071:function(e){"use strict";function atob(e){return Buffer.from(e,"base64").toString("binary")}e.exports=atob.atob=atob},6074:function(e,t,n){"use strict";const r=n(7420);const i=Symbol(),o=Symbol();e.exports=((e,t)=>{const{ZipFile:n,Entry:r}=e;promisifyMethod(e,t,"open");promisifyMethod(e,t,"fromFd");promisifyMethod(e,t,"fromBuffer");promisifyMethod(e,t,"fromRandomAccessReader");promisifyClose(n,t);promisifyReadEntry(n,t);n.prototype.readEntries=readEntries;addWalkEntriesMethod(n,t);promisifyOpenReadStream(n,t);r.prototype.openReadStream=entryOpenReadStream;n.Entry=r});function promisifyMethod(e,t,n){const i=n=="fromBuffer";r.patch(e,n,n=>{return function(r,o,a){return new t((t,s)=>{a=Object.assign({},a,{lazyEntries:true,autoClose:false});n(r,o,a,(n,r)=>{if(n)return s(n);opened(r,t,i,e)})})}})}function opened(e,t,n,r){if(n){e.reader.unref=r.RandomAccessReader.prototype.unref;e.reader.close=(e=>e())}clearState(e);clearError(e);e.intercept("entry",emittedEntry);e.intercept("end",emittedEnd);e.intercept("close",emittedClose);e.intercept("error",emittedError);t(e)}function emittedError(e){const t=getState(this);if(t){clearState(this);return t.reject(e)}if(!getError(this))setError(this,e)}function rejectWithStoredError(e,t){const n=getError(e);clearError(e);t(n)}function promisifyClose(e,t){const n=e.prototype.close;e.prototype.close=function(){return new t((e,t)=>{if(getError(this))return rejectWithStoredError(this,t);if(!this.isOpen)return e();if(getState(this))return t(new Error("Previous operation has not completed yet"));setState(this,{action:"close",resolve:e,reject:t});n.call(this)})}}function emittedClose(){const e=getState(this);if(!e||e.action!="close")return this.emit("error",new Error("Unexpected 'close' event emitted"));clearState(this);e.resolve()}function promisifyReadEntry(e,t){const n=e.prototype.readEntry;e.prototype.readEntry=function(){return new t((e,t)=>{if(getError(this))return rejectWithStoredError(this,t);if(!this.isOpen)return t(new Error("ZipFile is not open"));if(getState(this))return t(new Error("Previous operation has not completed yet"));setState(this,{action:"read",resolve:e,reject:t});n.call(this)})}}function emittedEntry(e){const t=getState(this);if(!t||t.action!="read")return this.emit("error",new Error(`Unexpected '${e?"entry":"end"}' event emitted`));clearState(this);if(e)e.zipFile=this;t.resolve(e)}function emittedEnd(){emittedEntry.call(this,null)}function getState(e){return e[i]}function setState(e,t){e[i]=t}function clearState(e){e[i]=undefined}function getError(e){return e[o]}function setError(e,t){e[o]=t}function clearError(e){e[o]=undefined}function readEntries(e){const t=[];return this.walkEntries(e=>{t.push(e)},e).then(()=>{return t})}function addWalkEntriesMethod(e,t){e.prototype.walkEntries=function(e,n){e=wrapFunctionToReturnPromise(e,t);return new t((t,r)=>{walkNextEntry(this,e,n,0,e=>{if(e)return r(e);t()})})}}function walkNextEntry(e,t,n,r,i){if(n&&r==n)return i();e.readEntry().then(o=>{if(!o)return i();return t(o).then(()=>{walkNextEntry(e,t,n,r+1,i)})}).catch(e=>{i(e)})}function promisifyOpenReadStream(e,t){const n=e.prototype.openReadStream;e.prototype.openReadStream=function(e,r){return new t((t,i)=>{if(getError(this))return rejectWithStoredError(this,i);n.call(this,e,r||{},(e,n)=>{if(e)return i(e);t(n)})})}}function entryOpenReadStream(e){return this.zipFile.openReadStream(this,e)}function wrapFunctionToReturnPromise(e,t){return function(){try{const n=e.apply(this,arguments);if(n instanceof t)return n;return t.resolve(n)}catch(e){return new t((t,n)=>{n(e)})}}}},6078:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(2489);e.exports={remove:r(i),removeSync:i.sync}},6080:function(e){var t=1e3;var n=t*60;var r=n*60;var i=r*24;var o=i*7;var a=i*365.25;e.exports=function(e,t){t=t||{};var n=typeof e;if(n==="string"&&e.length>0){return parse(e)}else if(n==="number"&&isNaN(e)===false){return t.long?fmtLong(e):fmtShort(e)}throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))};function parse(e){e=String(e);if(e.length>100){return}var s=/^((?:\d+)?\-?\d?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(e);if(!s){return}var c=parseFloat(s[1]);var u=(s[2]||"ms").toLowerCase();switch(u){case"years":case"year":case"yrs":case"yr":case"y":return c*a;case"weeks":case"week":case"w":return c*o;case"days":case"day":case"d":return c*i;case"hours":case"hour":case"hrs":case"hr":case"h":return c*r;case"minutes":case"minute":case"mins":case"min":case"m":return c*n;case"seconds":case"second":case"secs":case"sec":case"s":return c*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return c;default:return undefined}}function fmtShort(e){var o=Math.abs(e);if(o>=i){return Math.round(e/i)+"d"}if(o>=r){return Math.round(e/r)+"h"}if(o>=n){return Math.round(e/n)+"m"}if(o>=t){return Math.round(e/t)+"s"}return e+"ms"}function fmtLong(e){var o=Math.abs(e);if(o>=i){return plural(e,o,i,"day")}if(o>=r){return plural(e,o,r,"hour")}if(o>=n){return plural(e,o,n,"minute")}if(o>=t){return plural(e,o,t,"second")}return e+" ms"}function plural(e,t,n,r){var i=t>=n*1.5;return Math.round(e/n)+" "+r+(i?"s":"")}},6084:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});const r=n(4316);const i=()=>{if(r.platform()==="win32"){return`(Windows NT ${r.release()})`}else if(r.platform()==="darwin"){return`(Macintosh; Intel MAC OS X ${r.release()})`}else if(r.platform()==="linux"){return`(X11; Linux ${r.release()})`}};t.default=`Mozilla/5.0 ${i()}`},6097:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});class NowError extends Error{constructor({code:e,message:t,meta:n}){super(t);this.code=e;this.meta=n}}t.NowError=NowError},6102:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(8715);function getUser(e){return r(this,void 0,void 0,function*(){let t;try{({user:t}=yield e.fetch("/www/user",{useCurrentTeam:false}))}catch(e){if(e instanceof i.APIError&&e.status===403){throw new i.InvalidToken}throw e}if(!t){throw new i.MissingUser}return t})}t.default=getUser},6103:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(8715));function getCertById(e,t,n){return r(this,void 0,void 0,function*(){try{return yield t.fetch(`/v3/now/certs/${n}`)}catch(e){if(e.code==="cert_not_found"){return new o.CertNotFound(n)}throw e}})}t.default=getCertById},6109:function(e,t,n){e.exports={read:read,readPkcs8:readPkcs8,write:write,writePkcs8:writePkcs8,pkcs8ToBuffer:pkcs8ToBuffer,readECDSACurve:readECDSACurve,writeECDSACurve:writeECDSACurve};var r=n(9261);var i=n(4833);var o=n(3062).Buffer;var a=n(6977);var s=n(5271);var c=n(120);var u=n(1946);var l=n(5302);function read(e,t){return l.read(e,t,"pkcs8")}function write(e,t){return l.write(e,t,"pkcs8")}function readMPInt(e,t){r.strictEqual(e.peek(),i.Ber.Integer,t+" is not an Integer");return s.mpNormalize(e.readString(i.Ber.Integer,true))}function readPkcs8(e,t,n){if(n.peek()===i.Ber.Integer){r.strictEqual(t,"private","unexpected Integer at start of public key");n.readString(i.Ber.Integer,true)}n.readSequence();var o=n.offset+n.length;var a=n.readOID();switch(a){case"1.2.840.113549.1.1.1":n._offset=o;if(t==="public")return readPkcs8RSAPublic(n);else return readPkcs8RSAPrivate(n);case"1.2.840.10040.4.1":if(t==="public")return readPkcs8DSAPublic(n);else return readPkcs8DSAPrivate(n);case"1.2.840.10045.2.1":if(t==="public")return readPkcs8ECDSAPublic(n);else return readPkcs8ECDSAPrivate(n);case"1.3.101.112":if(t==="public"){return readPkcs8EdDSAPublic(n)}else{return readPkcs8EdDSAPrivate(n)}case"1.3.101.110":if(t==="public"){return readPkcs8X25519Public(n)}else{return readPkcs8X25519Private(n)}default:throw new Error("Unknown key type OID "+a)}}function readPkcs8RSAPublic(e){e.readSequence(i.Ber.BitString);e.readByte();e.readSequence();var t=readMPInt(e,"modulus");var n=readMPInt(e,"exponent");var r={type:"rsa",source:e.originalInput,parts:[{name:"e",data:n},{name:"n",data:t}]};return new c(r)}function readPkcs8RSAPrivate(e){e.readSequence(i.Ber.OctetString);e.readSequence();var t=readMPInt(e,"version");r.equal(t[0],0,"unknown RSA private key version");var n=readMPInt(e,"modulus");var o=readMPInt(e,"public exponent");var a=readMPInt(e,"private exponent");var s=readMPInt(e,"prime1");var c=readMPInt(e,"prime2");var l=readMPInt(e,"exponent1");var f=readMPInt(e,"exponent2");var p=readMPInt(e,"iqmp");var d={type:"rsa",parts:[{name:"n",data:n},{name:"e",data:o},{name:"d",data:a},{name:"iqmp",data:p},{name:"p",data:s},{name:"q",data:c},{name:"dmodp",data:l},{name:"dmodq",data:f}]};return new u(d)}function readPkcs8DSAPublic(e){e.readSequence();var t=readMPInt(e,"p");var n=readMPInt(e,"q");var r=readMPInt(e,"g");e.readSequence(i.Ber.BitString);e.readByte();var o=readMPInt(e,"y");var a={type:"dsa",parts:[{name:"p",data:t},{name:"q",data:n},{name:"g",data:r},{name:"y",data:o}]};return new c(a)}function readPkcs8DSAPrivate(e){e.readSequence();var t=readMPInt(e,"p");var n=readMPInt(e,"q");var r=readMPInt(e,"g");e.readSequence(i.Ber.OctetString);var o=readMPInt(e,"x");var a=s.calculateDSAPublic(r,t,o);var c={type:"dsa",parts:[{name:"p",data:t},{name:"q",data:n},{name:"g",data:r},{name:"y",data:a},{name:"x",data:o}]};return new u(c)}function readECDSACurve(e){var t,n;var c,u,l;if(e.peek()===i.Ber.OID){var f=e.readOID();n=Object.keys(a.curves);for(c=0;c<n.length;++c){u=n[c];l=a.curves[u];if(l.pkcs8oid===f){t=u;break}}}else{e.readSequence();var p=e.readString(i.Ber.Integer,true);r.strictEqual(p[0],1,"ECDSA key not version 1");var d={};e.readSequence();var h=e.readOID();r.strictEqual(h,"1.2.840.10045.1.1","ECDSA key is not from a prime-field");var m=d.p=s.mpNormalize(e.readString(i.Ber.Integer,true));d.size=m.length*8-s.countZeros(m);e.readSequence();d.a=s.mpNormalize(e.readString(i.Ber.OctetString,true));d.b=s.mpNormalize(e.readString(i.Ber.OctetString,true));if(e.peek()===i.Ber.BitString)d.s=e.readString(i.Ber.BitString,true);d.G=e.readString(i.Ber.OctetString,true);r.strictEqual(d.G[0],4,"uncompressed G is required");d.n=s.mpNormalize(e.readString(i.Ber.Integer,true));d.h=s.mpNormalize(e.readString(i.Ber.Integer,true));r.strictEqual(d.h[0],1,"a cofactor=1 curve is "+"required");n=Object.keys(a.curves);var v=Object.keys(d);for(c=0;c<n.length;++c){u=n[c];l=a.curves[u];var g=true;for(var y=0;y<v.length;++y){var b=v[y];if(l[b]===undefined)continue;if(typeof l[b]==="object"&&l[b].equals!==undefined){if(!l[b].equals(d[b])){g=false;break}}else if(o.isBuffer(l[b])){if(l[b].toString("binary")!==d[b].toString("binary")){g=false;break}}else{if(l[b]!==d[b]){g=false;break}}}if(g){t=u;break}}}return t}function readPkcs8ECDSAPrivate(e){var t=readECDSACurve(e);r.string(t,"a known elliptic curve");e.readSequence(i.Ber.OctetString);e.readSequence();var n=readMPInt(e,"version");r.equal(n[0],1,"unknown version of ECDSA key");var a=e.readString(i.Ber.OctetString,true);var c;if(e.peek()==160){e.readSequence(160);e._offset+=e.length}if(e.peek()==161){e.readSequence(161);c=e.readString(i.Ber.BitString,true);c=s.ecNormalize(c)}if(c===undefined){var l=s.publicFromPrivateECDSA(t,a);c=l.part.Q.data}var f={type:"ecdsa",parts:[{name:"curve",data:o.from(t)},{name:"Q",data:c},{name:"d",data:a}]};return new u(f)}function readPkcs8ECDSAPublic(e){var t=readECDSACurve(e);r.string(t,"a known elliptic curve");var n=e.readString(i.Ber.BitString,true);n=s.ecNormalize(n);var a={type:"ecdsa",parts:[{name:"curve",data:o.from(t)},{name:"Q",data:n}]};return new c(a)}function readPkcs8EdDSAPublic(e){if(e.peek()===0)e.readByte();var t=s.readBitString(e);var n={type:"ed25519",parts:[{name:"A",data:s.zeroPadToLength(t,32)}]};return new c(n)}function readPkcs8X25519Public(e){var t=s.readBitString(e);var n={type:"curve25519",parts:[{name:"A",data:s.zeroPadToLength(t,32)}]};return new c(n)}function readPkcs8EdDSAPrivate(e){if(e.peek()===0)e.readByte();e.readSequence(i.Ber.OctetString);var t=e.readString(i.Ber.OctetString,true);t=s.zeroPadToLength(t,32);var n;if(e.peek()===i.Ber.BitString){n=s.readBitString(e);n=s.zeroPadToLength(n,32)}else{n=s.calculateED25519Public(t)}var r={type:"ed25519",parts:[{name:"A",data:s.zeroPadToLength(n,32)},{name:"k",data:s.zeroPadToLength(t,32)}]};return new u(r)}function readPkcs8X25519Private(e){if(e.peek()===0)e.readByte();e.readSequence(i.Ber.OctetString);var t=e.readString(i.Ber.OctetString,true);t=s.zeroPadToLength(t,32);var n=s.calculateX25519Public(t);var r={type:"curve25519",parts:[{name:"A",data:s.zeroPadToLength(n,32)},{name:"k",data:s.zeroPadToLength(t,32)}]};return new u(r)}function pkcs8ToBuffer(e){var t=new i.BerWriter;writePkcs8(t,e);return t.buffer}function writePkcs8(e,t){e.startSequence();if(u.isPrivateKey(t)){var n=o.from([0]);e.writeBuffer(n,i.Ber.Integer)}e.startSequence();switch(t.type){case"rsa":e.writeOID("1.2.840.113549.1.1.1");if(u.isPrivateKey(t))writePkcs8RSAPrivate(t,e);else writePkcs8RSAPublic(t,e);break;case"dsa":e.writeOID("1.2.840.10040.4.1");if(u.isPrivateKey(t))writePkcs8DSAPrivate(t,e);else writePkcs8DSAPublic(t,e);break;case"ecdsa":e.writeOID("1.2.840.10045.2.1");if(u.isPrivateKey(t))writePkcs8ECDSAPrivate(t,e);else writePkcs8ECDSAPublic(t,e);break;case"ed25519":e.writeOID("1.3.101.112");if(u.isPrivateKey(t))throw new Error("Ed25519 private keys in pkcs8 "+"format are not supported");writePkcs8EdDSAPublic(t,e);break;default:throw new Error("Unsupported key type: "+t.type)}e.endSequence()}function writePkcs8RSAPrivate(e,t){t.writeNull();t.endSequence();t.startSequence(i.Ber.OctetString);t.startSequence();var n=o.from([0]);t.writeBuffer(n,i.Ber.Integer);t.writeBuffer(e.part.n.data,i.Ber.Integer);t.writeBuffer(e.part.e.data,i.Ber.Integer);t.writeBuffer(e.part.d.data,i.Ber.Integer);t.writeBuffer(e.part.p.data,i.Ber.Integer);t.writeBuffer(e.part.q.data,i.Ber.Integer);if(!e.part.dmodp||!e.part.dmodq)s.addRSAMissing(e);t.writeBuffer(e.part.dmodp.data,i.Ber.Integer);t.writeBuffer(e.part.dmodq.data,i.Ber.Integer);t.writeBuffer(e.part.iqmp.data,i.Ber.Integer);t.endSequence();t.endSequence()}function writePkcs8RSAPublic(e,t){t.writeNull();t.endSequence();t.startSequence(i.Ber.BitString);t.writeByte(0);t.startSequence();t.writeBuffer(e.part.n.data,i.Ber.Integer);t.writeBuffer(e.part.e.data,i.Ber.Integer);t.endSequence();t.endSequence()}function writePkcs8DSAPrivate(e,t){t.startSequence();t.writeBuffer(e.part.p.data,i.Ber.Integer);t.writeBuffer(e.part.q.data,i.Ber.Integer);t.writeBuffer(e.part.g.data,i.Ber.Integer);t.endSequence();t.endSequence();t.startSequence(i.Ber.OctetString);t.writeBuffer(e.part.x.data,i.Ber.Integer);t.endSequence()}function writePkcs8DSAPublic(e,t){t.startSequence();t.writeBuffer(e.part.p.data,i.Ber.Integer);t.writeBuffer(e.part.q.data,i.Ber.Integer);t.writeBuffer(e.part.g.data,i.Ber.Integer);t.endSequence();t.endSequence();t.startSequence(i.Ber.BitString);t.writeByte(0);t.writeBuffer(e.part.y.data,i.Ber.Integer);t.endSequence()}function writeECDSACurve(e,t){var n=a.curves[e.curve];if(n.pkcs8oid){t.writeOID(n.pkcs8oid)}else{t.startSequence();var r=o.from([1]);t.writeBuffer(r,i.Ber.Integer);t.startSequence();t.writeOID("1.2.840.10045.1.1");t.writeBuffer(n.p,i.Ber.Integer);t.endSequence();t.startSequence();var s=n.p;if(s[0]===0)s=s.slice(1);t.writeBuffer(s,i.Ber.OctetString);t.writeBuffer(n.b,i.Ber.OctetString);t.writeBuffer(n.s,i.Ber.BitString);t.endSequence();t.writeBuffer(n.G,i.Ber.OctetString);t.writeBuffer(n.n,i.Ber.Integer);var c=n.h;if(!c){c=o.from([1])}t.writeBuffer(c,i.Ber.Integer);t.endSequence()}}function writePkcs8ECDSAPublic(e,t){writeECDSACurve(e,t);t.endSequence();var n=s.ecNormalize(e.part.Q.data,true);t.writeBuffer(n,i.Ber.BitString)}function writePkcs8ECDSAPrivate(e,t){writeECDSACurve(e,t);t.endSequence();t.startSequence(i.Ber.OctetString);t.startSequence();var n=o.from([1]);t.writeBuffer(n,i.Ber.Integer);t.writeBuffer(e.part.d.data,i.Ber.OctetString);t.startSequence(161);var r=s.ecNormalize(e.part.Q.data,true);t.writeBuffer(r,i.Ber.BitString);t.endSequence();t.endSequence();t.endSequence()}function writePkcs8EdDSAPublic(e,t){t.endSequence();s.writeBitString(t,e.part.A.data)}function writePkcs8EdDSAPrivate(e,t){t.endSequence();var n=s.mpNormalize(e.part.k.data,true);t.startSequence(i.Ber.OctetString);t.writeBuffer(n,i.Ber.OctetString);t.endSequence()}},6116:function(e,t,n){"use strict";var r=n(3796);var i={get:"function",set:"function",configurable:"boolean",enumerable:"boolean"};function isAccessorDescriptor(e,t){if(typeof t==="string"){var n=Object.getOwnPropertyDescriptor(e,t);return typeof n!=="undefined"}if(r(e)!=="object"){return false}if(has(e,"value")||has(e,"writable")){return false}if(!has(e,"get")||typeof e.get!=="function"){return false}if(has(e,"set")&&typeof e[o]!=="function"&&typeof e[o]!=="undefined"){return false}for(var o in e){if(!i.hasOwnProperty(o)){continue}if(r(e[o])===i[o]){continue}if(typeof e[o]!=="undefined"){return false}}return true}function has(e,t){return{}.hasOwnProperty.call(e,t)}e.exports=isAccessorDescriptor},6119:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({path:"application_fees",includeBasic:["list","retrieve"],refund:i({method:"POST",path:"/{id}/refund",urlParams:["id"]}),createRefund:i({method:"POST",path:"/{feeId}/refunds",urlParams:["feeId"]}),listRefunds:i({method:"GET",path:"/{feeId}/refunds",urlParams:["feeId"]}),retrieveRefund:i({method:"GET",path:"/{feeId}/refunds/{refundId}",urlParams:["feeId","refundId"]}),updateRefund:i({method:"POST",path:"/{feeId}/refunds/{refundId}",urlParams:["feeId","refundId"]})})},6124:function(e,t,n){"use strict";var r=n(6401);var i=n(2721);function Querystring(e){this.request=e;this.lib=null;this.useQuerystring=null;this.parseOptions=null;this.stringifyOptions=null}Querystring.prototype.init=function(e){if(this.lib){return}this.useQuerystring=e.useQuerystring;this.lib=this.useQuerystring?i:r;this.parseOptions=e.qsParseOptions||{};this.stringifyOptions=e.qsStringifyOptions||{}};Querystring.prototype.stringify=function(e){return this.useQuerystring?this.rfc3986(this.lib.stringify(e,this.stringifyOptions.sep||null,this.stringifyOptions.eq||null,this.stringifyOptions)):this.lib.stringify(e,this.stringifyOptions)};Querystring.prototype.parse=function(e){return this.useQuerystring?this.lib.parse(e,this.parseOptions.sep||null,this.parseOptions.eq||null,this.parseOptions):this.lib.parse(e,this.parseOptions)};Querystring.prototype.rfc3986=function(e){return e.replace(/[!'()*]/g,function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})};Querystring.prototype.unescape=i.unescape;t.Querystring=Querystring},6127:function(e,t,n){if(typeof process==="undefined"||process.type==="renderer"||process.browser===true||process.__nwjs){e.exports=n(5519)}else{e.exports=n(2676)}},6133:function(e,t,n){"use strict";e.exports=n(7409).extend({path:"apple_pay/domains",includeBasic:["create","list","retrieve","del"]})},6144:function(e,t,n){"use strict";const r=n(2617);function symlinkType(e,t,n){n=typeof t==="function"?t:n;t=typeof t==="function"?false:t;if(t)return n(null,t);r.lstat(e,(e,r)=>{if(e)return n(null,"file");t=r&&r.isDirectory()?"dir":"file";n(null,t)})}function symlinkTypeSync(e,t){let n;if(t)return t;try{n=r.lstatSync(e)}catch(e){return"file"}return n&&n.isDirectory()?"dir":"file"}e.exports={symlinkType:symlinkType,symlinkTypeSync:symlinkTypeSync}},6145:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9544));function info(...e){return`${i.default.gray(">")} ${e.join("\n")}`}t.default=info},6146:function(e,t,n){"use strict";var r=n(7547);e.exports=function defineProperty(e,t,n){if(typeof e!=="object"&&typeof e!=="function"){throw new TypeError("expected an object or function.")}if(typeof t!=="string"){throw new TypeError("expected `prop` to be a string.")}if(r(n)&&("set"in n||"get"in n)){return Object.defineProperty(e,t,n)}return Object.defineProperty(e,t,{configurable:true,enumerable:false,writable:true,value:n})}},6158:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(1908);const a=n(8528);function outputJsonSync(e,t,n){const s=i.dirname(e);if(!r.existsSync(s)){o.mkdirsSync(s)}a.writeJsonSync(e,t,n)}e.exports=outputJsonSync},6164:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5897);const o=n(2617);const a=n(7184);const s=n(5527).pathExists;function createFile(e,t){function makeFile(){o.writeFile(e,"",e=>{if(e)return t(e);t()})}o.stat(e,(n,r)=>{if(!n&&r.isFile())return t();const o=i.dirname(e);s(o,(e,n)=>{if(e)return t(e);if(n)return makeFile();a.mkdirs(o,e=>{if(e)return t(e);makeFile()})})})}function createFileSync(e){let t;try{t=o.statSync(e)}catch(e){}if(t&&t.isFile())return;const n=i.dirname(e);if(!o.existsSync(n)){a.mkdirsSync(n)}o.writeFileSync(e,"")}e.exports={createFile:r(createFile),createFileSync:createFileSync}},6167:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(8715);const a=i(n(4638));const s=i(n(1632));function getDNSRecords(e,t,n){return r(this,void 0,void 0,function*(){const r=yield getDomainNames(t,n);const i=yield Promise.all(r.map(createGetDomainRecords(e,t)));const a=i.map(e=>e instanceof o.DomainNotFound?[]:e);return a.reduce(getAddDomainName(r),[])})}t.default=getDNSRecords;function createGetDomainRecords(e,t){return n=>r(this,void 0,void 0,function*(){return a.default(e,t,n)})}function getAddDomainName(e){return(t,n,r)=>[...t,{domainName:e[r],records:n.sort((e,t)=>e.slug.localeCompare(t.slug))}]}function getDomainNames(e,t){return r(this,void 0,void 0,function*(){const n=yield s.default(e,t);return n.map(e=>e.name).sort((e,t)=>e.localeCompare(t))})}},6180:function(e,t,n){var r=n(5886);var i=n(9747);e.exports={distanceInWords:r(),format:i()}},6183:function(e,t,n){"use strict";var r=this&&this.__await||function(e){return this instanceof r?(this.v=e,this):new r(e)};var i=this&&this.__asyncGenerator||function(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var i=n.apply(e,t||[]),o,a=[];return o={},verb("next"),verb("throw"),verb("return"),o[Symbol.asyncIterator]=function(){return this},o;function verb(e){if(i[e])o[e]=function(t){return new Promise(function(n,r){a.push([e,t,n,r])>1||resume(e,t)})}}function resume(e,t){try{step(i[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof r?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume("next",e)}function reject(e){resume("throw",e)}function settle(e,t){if(e(t),a.shift(),a.length)resume(a[0][0],a[0][1])}};var o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const a=o(n(4510));function createPollingFn(e,t){return function(...n){return i(this,arguments,function*(){while(true){yield yield r(yield r(e(...n)));yield r(a.default(t))}})}}t.default=createPollingFn},6196:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);var o=n(816);var a=n.n(o);var s=n(541);var c=n.n(s);var u=n(9693);var l=n(4999);var f=n.n(l);var p=n(3241);var d=n(2385);var h=n(7236);var m=n(3855);var v=n(7691);var g=n(4122);const y=()=>{console.log(`\n ${i.a.bold(`${f.a} now teams`)} [options] <command>\n\n ${i.a.dim("Commands:")}\n\n add Create a new team\n ls Show all teams you're a part of\n switch [name] Switch to a different team\n invite [email] Invite a new member to a team\n\n ${i.a.dim("Options:")}\n\n -h, --help Output usage information\n -A ${i.a.bold.underline("FILE")}, --local-config=${i.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${i.a.bold.underline("DIR")}, --global-config=${i.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -d, --debug Debug mode [off]\n\n ${i.a.dim("Examples:")}\n\n ${i.a.gray("")} Switch to a team\n\n ${i.a.cyan(`$ now switch <slug>`)}\n\n ${i.a.gray("")} If your team's url is 'zeit.co/teams/name', 'name' is the slug\n ${i.a.gray("")} If the slug is omitted, you can choose interactively\n\n ${i.a.yellow("NOTE:")} When you switch, everything you add, list or remove will be scoped that team!\n\n ${i.a.gray("")} Invite new members (interactively)\n\n ${i.a.cyan(`$ now teams invite`)}\n `)};let b;let w;let x;let k;const j=async e=>{b=a()(e.argv.slice(2),{boolean:["help","debug"],alias:{help:"h",debug:"d",switch:"change"}});w=b.debug;x=e.apiUrl;const t=b._[0]&&b._[0]==="switch";b._=b._.slice(1);if(t){k="switch"}else{k=b._.shift()}if(b.help||!k){y();await Object(p["default"])(0)}const{authConfig:{token:n},config:r}=e;return run({token:n,config:r})};t["default"]=(async e=>{try{return j(e)}catch(e){Object(d["handleError"])(e);return 1}});async function run({token:e,config:t}){const{currentTeam:n}=t;const r=new u["default"]({apiUrl:x,token:e,debug:w,currentTeam:n});const i=b._;let o;switch(k){case"list":case"ls":{o=await Object(h["default"])({teams:r,config:t,apiUrl:x,token:e});break}case"switch":case"change":{o=await Object(v["default"])({args:i,config:t,apiUrl:x,token:e,debug:w});break}case"add":case"create":{o=await Object(m["default"])({apiUrl:x,token:e,teams:r,config:t});break}case"invite":{o=await Object(g["default"])({teams:r,args:i,config:t,apiUrl:x,token:e});break}default:{if(k!=="help"){console.error(c()("Please specify a valid subcommand: add | ls | switch | invite"));o=1}y()}}r.close();return o||0}},6207:function(e){"use strict";e.exports=function(e,t){if(e===null||typeof e==="undefined"){throw new TypeError("expected first argument to be an object.")}if(typeof t==="undefined"||typeof Symbol==="undefined"){return e}if(typeof Object.getOwnPropertySymbols!=="function"){return e}var n=Object.prototype.propertyIsEnumerable;var r=Object(e);var i=arguments.length,o=0;while(++o<i){var a=Object(arguments[o]);var s=Object.getOwnPropertySymbols(a);for(var c=0;c<s.length;c++){var u=s[c];if(n.call(a,u)){r[u]=a[u]}}}return r}},6208:function(e,t,n){t=e.exports=n(5921);t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.storage="undefined"!=typeof chrome&&"undefined"!=typeof chrome.storage?chrome.storage.local:localstorage();t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function useColors(){if(typeof window!=="undefined"&&window.process&&window.process.type==="renderer"){return true}if(typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)){return false}return typeof document!=="undefined"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window!=="undefined"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}t.formatters.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}};function formatArgs(e){var n=this.useColors;e[0]=(n?"%c":"")+this.namespace+(n?" %c":" ")+e[0]+(n?"%c ":" ")+"+"+t.humanize(this.diff);if(!n)return;var r="color: "+this.color;e.splice(1,0,r,"color: inherit");var i=0;var o=0;e[0].replace(/%[a-zA-Z%]/g,function(e){if("%%"===e)return;i++;if("%c"===e){o=i}});e.splice(o,0,r)}function log(){return"object"===typeof console&&console.log&&Function.prototype.apply.call(console.log,console,arguments)}function save(e){try{if(null==e){t.storage.removeItem("debug")}else{t.storage.debug=e}}catch(e){}}function load(){var e;try{e=t.storage.debug}catch(e){}if(!e&&typeof process!=="undefined"&&"env"in process){e=process.env.DEBUG}return e}t.enable(load());function localstorage(){try{return window.localStorage}catch(e){}}},6211:function(e){"use strict";e.exports=function generate__limit(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l;var f="data"+(o||"");var p=e.opts.$data&&a&&a.$data,d;if(p){r+=" var schema"+i+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ";d="schema"+i}else{d=a}var h=t=="maximum",m=h?"exclusiveMaximum":"exclusiveMinimum",v=e.schema[m],g=e.opts.$data&&v&&v.$data,y=h?"<":">",b=h?">":"<",l=undefined;if(g){var w=e.util.getData(v.$data,o,e.dataPathArr),x="exclusive"+i,k="exclType"+i,j="exclIsNumber"+i,S="op"+i,E="' + "+S+" + '";r+=" var schemaExcl"+i+" = "+w+"; ";w="schemaExcl"+i;r+=" var "+x+"; var "+k+" = typeof "+w+"; if ("+k+" != 'boolean' && "+k+" != 'undefined' && "+k+" != 'number') { ";var l=m;var _=_||[];_.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+(l||"_exclusiveLimit")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: {} ";if(e.opts.messages!==false){r+=" , message: '"+m+" should be boolean' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+f+" "}r+=" } "}else{r+=" {} "}var C=r;r=_.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+C+"]); "}else{r+=" validate.errors = ["+C+"]; return false; "}}else{r+=" var err = "+C+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+=" } else if ( ";if(p){r+=" ("+d+" !== undefined && typeof "+d+" != 'number') || "}r+=" "+k+" == 'number' ? ( ("+x+" = "+d+" === undefined || "+w+" "+y+"= "+d+") ? "+f+" "+b+"= "+w+" : "+f+" "+b+" "+d+" ) : ( ("+x+" = "+w+" === true) ? "+f+" "+b+"= "+d+" : "+f+" "+b+" "+d+" ) || "+f+" !== "+f+") { var op"+i+" = "+x+" ? '"+y+"' : '"+y+"='; ";if(a===undefined){l=m;c=e.errSchemaPath+"/"+m;d=w;p=g}}else{var j=typeof v=="number",E=y;if(j&&p){var S="'"+E+"'";r+=" if ( ";if(p){r+=" ("+d+" !== undefined && typeof "+d+" != 'number') || "}r+=" ( "+d+" === undefined || "+v+" "+y+"= "+d+" ? "+f+" "+b+"= "+v+" : "+f+" "+b+" "+d+" ) || "+f+" !== "+f+") { "}else{if(j&&a===undefined){x=true;l=m;c=e.errSchemaPath+"/"+m;d=v;b+="="}else{if(j)d=Math[h?"min":"max"](v,a);if(v===(j?d:true)){x=true;l=m;c=e.errSchemaPath+"/"+m;b+="="}else{x=false;E+="="}}var S="'"+E+"'";r+=" if ( ";if(p){r+=" ("+d+" !== undefined && typeof "+d+" != 'number') || "}r+=" "+f+" "+b+" "+d+" || "+f+" !== "+f+") { "}}l=l||t;var _=_||[];_.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+(l||"_limit")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { comparison: "+S+", limit: "+d+", exclusive: "+x+" } ";if(e.opts.messages!==false){r+=" , message: 'should be "+E+" ";if(p){r+="' + "+d}else{r+=""+d+"'"}}if(e.opts.verbose){r+=" , schema: ";if(p){r+="validate.schema"+s}else{r+=""+a}r+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+f+" "}r+=" } "}else{r+=" {} "}var C=r;r=_.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+C+"]); "}else{r+=" validate.errors = ["+C+"]; return false; "}}else{r+=" var err = "+C+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+=" } ";if(u){r+=" else { "}return r}},6213:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({path:"skus",includeBasic:["list","retrieve","update","del"],create:i({method:"POST",required:["currency","inventory","price","product"]})})},6225:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof __values==="function"?__values(e):e[Symbol.iterator](),n={},verb("next"),verb("throw"),verb("return"),n[Symbol.asyncIterator]=function(){return this},n);function verb(t){n[t]=e[t]&&function(n){return new Promise(function(r,i){n=e[t](n),settle(r,i,n.done,n.value)})}}function settle(e,t,n,r){Promise.resolve(r).then(function(t){e({value:t,done:n})},t)}};var o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const a=o(n(7930));const s=o(n(543));const c=o(n(9544));const u=o(n(3759));const l=n(5695);const f=o(n(8950));function processDeployment({now:e,output:t,hashes:n,paths:o,requestBody:p,uploadStamp:d,deployStamp:h,legacy:m,env:v,quiet:g,nowConfig:y}){return r(this,void 0,void 0,function*(){var r,b,w,x;const{warn:k,log:j,debug:S,note:E}=t;let _=null;const C=o[0];const A=Object.assign({},p,{debug:e._debug});if(!m){let t=null;let o=null;try{for(var O=i(l.createDeployment(C,A,y)),F;F=yield O.next(),!F.done;){const r=F.value;if(r.type==="hashes-calculated"){n=r.payload}if(r.type==="warning"){k(r.payload)}if(r.type==="notice"){E(r.payload)}if(r.type==="file_count"){S(`Total files ${r.payload.total.size}, ${r.payload.missing.length} changed`);if(!g){j(`Synced ${u.default("file",r.payload.missing.length,true)} ${d()}`)}const e=r.payload.missing.map(e=>r.payload.total.get(e).data.length).reduce((e,t)=>e+t,0);_=new s.default(`${c.default.gray(">")} Upload [:bar] :percent :etas`,{width:20,complete:"=",incomplete:"",total:e,clear:true})}if(r.type==="file-uploaded"){S(`Uploaded: ${r.payload.file.names.join(" ")} (${a.default(r.payload.file.data.length)})`);if(_){_.tick(r.payload.file.data.length)}}if(r.type==="created"){e._host=r.payload.url;if(!g){const e=m?`${c.default.grey("[v1]")} `:"";j(`https://${r.payload.url} ${e}${h()}`)}else{process.stdout.write(`https://${r.payload.url}`)}}if(r.type==="build-state-changed"){if(t===null){t=f.default("Building...")}}if(r.type==="all-builds-completed"){if(t){t()}o=f.default("Finalizing...")}if(r.type==="error"){if(t){t()}if(o){o()}throw yield e.handleDeploymentError(r.payload,{hashes:n,env:v})}if(r.type==="ready"){if(o){o()}return r.payload}}}catch(e){r={error:e}}finally{try{if(F&&!F.done&&(b=O.return))yield b.call(O)}finally{if(r)throw r.error}}}else{try{for(var D=i(l.createLegacyDeployment(C,A,y)),T;T=yield D.next(),!T.done;){const t=T.value;if(t.type==="hashes-calculated"){n=t.payload}if(t.type==="file_count"){S(`Total files ${t.payload.total.size}, ${t.payload.missing.length} changed`);if(!g){j(`Synced ${u.default("file",t.payload.missing.length,true)} ${d()}`)}const e=t.payload.missing.map(e=>t.payload.total.get(e).data.length).reduce((e,t)=>e+t,0);_=new s.default(`${c.default.gray(">")} Upload [:bar] :percent :etas`,{width:20,complete:"=",incomplete:"",total:e,clear:true})}if(t.type==="file-uploaded"){S(`Uploaded: ${t.payload.file.names.join(" ")} (${a.default(t.payload.file.data.length)})`);if(_){_.tick(t.payload.file.data.length)}}if(t.type==="created"){e._host=t.payload.url;if(!g){const e=m?`${c.default.grey("[v1]")} `:"";j(`${t.payload.url} ${e}${h()}`)}else{process.stdout.write(`https://${t.payload.url}`)}}if(t.type==="error"){throw yield e.handleDeploymentError(t.payload,{hashes:n,env:v})}if(t.type==="ready"){j(`Build completed`);return t.payload}}}catch(e){w={error:e}}finally{try{if(T&&!T.done&&(x=D.return))yield x.call(D)}finally{if(w)throw w.error}}}})}t.default=processDeployment},6226:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(9361);i.outputJson=r(n(1598));i.outputJsonSync=n(3541);i.outputJSON=i.outputJson;i.outputJSONSync=i.outputJsonSync;i.writeJSON=i.writeJson;i.writeJSONSync=i.writeJsonSync;i.readJSON=i.readJson;i.readJSONSync=i.readJsonSync;e.exports=i},6243:function(e,t,n){"use strict";const r=n(8692);class PooledResource{constructor(e){this.creationTime=Date.now();this.lastReturnTime=null;this.lastBorrowTime=null;this.lastIdleTime=null;this.obj=e;this.state=r.IDLE}allocate(){this.lastBorrowTime=Date.now();this.state=r.ALLOCATED}deallocate(){this.lastReturnTime=Date.now();this.state=r.IDLE}invalidate(){this.state=r.INVALID}test(){this.state=r.VALIDATION}idle(){this.lastIdleTime=Date.now();this.state=r.IDLE}returning(){this.state=r.RETURNING}}e.exports=PooledResource},6244:function(e){"use strict";e.exports=(()=>{const e=["[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[a-zA-Z\\d]*)*)?\\u0007)","(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PRZcf-ntqry=><~]))"].join("|");return new RegExp(e,"g")})},6247:function(e){"use strict";e.exports=function isNaturalNumber(e,t){if(t){if(typeof t!=="object"){throw new TypeError(String(t)+" is not an object. Expected an object that has boolean `includeZero` property.")}if("includeZero"in t){if(typeof t.includeZero!=="boolean"){throw new TypeError(String(t.includeZero)+" is neither true nor false. `includeZero` option must be a Boolean value.")}if(t.includeZero&&e===0){return true}}}return Number.isSafeInteger(e)&&e>=1}},6250:function(e,t,n){e.exports=n(649).inherits},6251:function(e,t,n){"use strict";function setup(e){createDebug.debug=createDebug;createDebug.default=createDebug;createDebug.coerce=coerce;createDebug.disable=disable;createDebug.enable=enable;createDebug.enabled=enabled;createDebug.humanize=n(2229);Object.keys(e).forEach(function(t){createDebug[t]=e[t]});createDebug.instances=[];createDebug.names=[];createDebug.skips=[];createDebug.formatters={};function selectColor(e){var t=0;for(var n=0;n<e.length;n++){t=(t<<5)-t+e.charCodeAt(n);t|=0}return createDebug.colors[Math.abs(t)%createDebug.colors.length]}createDebug.selectColor=selectColor;function createDebug(e){var t;function debug(){if(!debug.enabled){return}for(var e=arguments.length,n=new Array(e),r=0;r<e;r++){n[r]=arguments[r]}var i=debug;var o=Number(new Date);var a=o-(t||o);i.diff=a;i.prev=t;i.curr=o;t=o;n[0]=createDebug.coerce(n[0]);if(typeof n[0]!=="string"){n.unshift("%O")}var s=0;n[0]=n[0].replace(/%([a-zA-Z%])/g,function(e,t){if(e==="%%"){return e}s++;var r=createDebug.formatters[t];if(typeof r==="function"){var o=n[s];e=r.call(i,o);n.splice(s,1);s--}return e});createDebug.formatArgs.call(i,n);var c=i.log||createDebug.log;c.apply(i,n)}debug.namespace=e;debug.enabled=createDebug.enabled(e);debug.useColors=createDebug.useColors();debug.color=selectColor(e);debug.destroy=destroy;debug.extend=extend;if(typeof createDebug.init==="function"){createDebug.init(debug)}createDebug.instances.push(debug);return debug}function destroy(){var e=createDebug.instances.indexOf(this);if(e!==-1){createDebug.instances.splice(e,1);return true}return false}function extend(e,t){return createDebug(this.namespace+(typeof t==="undefined"?":":t)+e)}function enable(e){createDebug.save(e);createDebug.names=[];createDebug.skips=[];var t;var n=(typeof e==="string"?e:"").split(/[\s,]+/);var r=n.length;for(t=0;t<r;t++){if(!n[t]){continue}e=n[t].replace(/\*/g,".*?");if(e[0]==="-"){createDebug.skips.push(new RegExp("^"+e.substr(1)+"$"))}else{createDebug.names.push(new RegExp("^"+e+"$"))}}for(t=0;t<createDebug.instances.length;t++){var i=createDebug.instances[t];i.enabled=createDebug.enabled(i.namespace)}}function disable(){createDebug.enable("")}function enabled(e){if(e[e.length-1]==="*"){return true}var t;var n;for(t=0,n=createDebug.skips.length;t<n;t++){if(createDebug.skips[t].test(e)){return false}}for(t=0,n=createDebug.names.length;t<n;t++){if(createDebug.names[t].test(e)){return true}}return false}function coerce(e){if(e instanceof Error){return e.stack||e.message}return e}createDebug.enable(createDebug.load());return createDebug}e.exports=setup},6253:function(e,t){(function(e,n){true?n(t):undefined})(this,function(e){"use strict";function merge(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++){t[n]=arguments[n]}if(t.length>1){t[0]=t[0].slice(0,-1);var r=t.length-1;for(var i=1;i<r;++i){t[i]=t[i].slice(1,-1)}t[r]=t[r].slice(1);return t.join("")}else{return t[0]}}function subexp(e){return"(?:"+e+")"}function typeOf(e){return e===undefined?"undefined":e===null?"null":Object.prototype.toString.call(e).split(" ").pop().split("]").shift().toLowerCase()}function toUpperCase(e){return e.toUpperCase()}function toArray(e){return e!==undefined&&e!==null?e instanceof Array?e:typeof e.length!=="number"||e.split||e.setInterval||e.call?[e]:Array.prototype.slice.call(e):[]}function assign(e,t){var n=e;if(t){for(var r in t){n[r]=t[r]}}return n}function buildExps(e){var t="[A-Za-z]",n="[\\x0D]",r="[0-9]",i="[\\x22]",o=merge(r,"[A-Fa-f]"),a="[\\x0A]",s="[\\x20]",c=subexp(subexp("%[EFef]"+o+"%"+o+o+"%"+o+o)+"|"+subexp("%[89A-Fa-f]"+o+"%"+o+o)+"|"+subexp("%"+o+o)),u="[\\:\\/\\?\\#\\[\\]\\@]",l="[\\!\\$\\&\\'\\(\\)\\*\\+\\,\\;\\=]",f=merge(u,l),p=e?"[\\xA0-\\u200D\\u2010-\\u2029\\u202F-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]":"[]",d=e?"[\\uE000-\\uF8FF]":"[]",h=merge(t,r,"[\\-\\.\\_\\~]",p),m=subexp(t+merge(t,r,"[\\+\\-\\.]")+"*"),v=subexp(subexp(c+"|"+merge(h,l,"[\\:]"))+"*"),g=subexp(subexp("25[0-5]")+"|"+subexp("2[0-4]"+r)+"|"+subexp("1"+r+r)+"|"+subexp("[1-9]"+r)+"|"+r),y=subexp(subexp("25[0-5]")+"|"+subexp("2[0-4]"+r)+"|"+subexp("1"+r+r)+"|"+subexp("0?[1-9]"+r)+"|0?0?"+r),b=subexp(y+"\\."+y+"\\."+y+"\\."+y),w=subexp(o+"{1,4}"),x=subexp(subexp(w+"\\:"+w)+"|"+b),k=subexp(subexp(w+"\\:")+"{6}"+x),j=subexp("\\:\\:"+subexp(w+"\\:")+"{5}"+x),S=subexp(subexp(w)+"?\\:\\:"+subexp(w+"\\:")+"{4}"+x),E=subexp(subexp(subexp(w+"\\:")+"{0,1}"+w)+"?\\:\\:"+subexp(w+"\\:")+"{3}"+x),_=subexp(subexp(subexp(w+"\\:")+"{0,2}"+w)+"?\\:\\:"+subexp(w+"\\:")+"{2}"+x),C=subexp(subexp(subexp(w+"\\:")+"{0,3}"+w)+"?\\:\\:"+w+"\\:"+x),A=subexp(subexp(subexp(w+"\\:")+"{0,4}"+w)+"?\\:\\:"+x),O=subexp(subexp(subexp(w+"\\:")+"{0,5}"+w)+"?\\:\\:"+w),F=subexp(subexp(subexp(w+"\\:")+"{0,6}"+w)+"?\\:\\:"),D=subexp([k,j,S,E,_,C,A,O,F].join("|")),T=subexp(subexp(h+"|"+c)+"+"),I=subexp(D+"\\%25"+T),R=subexp(D+subexp("\\%25|\\%(?!"+o+"{2})")+T),P=subexp("[vV]"+o+"+\\."+merge(h,l,"[\\:]")+"+"),B=subexp("\\["+subexp(R+"|"+D+"|"+P)+"\\]"),N=subexp(subexp(c+"|"+merge(h,l))+"*"),z=subexp(B+"|"+b+"(?!"+N+")"+"|"+N),L=subexp(r+"*"),M=subexp(subexp(v+"@")+"?"+z+subexp("\\:"+L)+"?"),U=subexp(c+"|"+merge(h,l,"[\\:\\@]")),q=subexp(U+"*"),H=subexp(U+"+"),G=subexp(subexp(c+"|"+merge(h,l,"[\\@]"))+"+"),W=subexp(subexp("\\/"+q)+"*"),V=subexp("\\/"+subexp(H+W)+"?"),J=subexp(G+W),Y=subexp(H+W),Z="(?!"+U+")",X=subexp(W+"|"+V+"|"+J+"|"+Y+"|"+Z),Q=subexp(subexp(U+"|"+merge("[\\/\\?]",d))+"*"),K=subexp(subexp(U+"|[\\/\\?]")+"*"),$=subexp(subexp("\\/\\/"+M+W)+"|"+V+"|"+Y+"|"+Z),ee=subexp(m+"\\:"+$+subexp("\\?"+Q)+"?"+subexp("\\#"+K)+"?"),te=subexp(subexp("\\/\\/"+M+W)+"|"+V+"|"+J+"|"+Z),ne=subexp(te+subexp("\\?"+Q)+"?"+subexp("\\#"+K)+"?"),re=subexp(ee+"|"+ne),ie=subexp(m+"\\:"+$+subexp("\\?"+Q)+"?"),oe="^("+m+")\\:"+subexp(subexp("\\/\\/("+subexp("("+v+")@")+"?("+z+")"+subexp("\\:("+L+")")+"?)")+"?("+W+"|"+V+"|"+Y+"|"+Z+")")+subexp("\\?("+Q+")")+"?"+subexp("\\#("+K+")")+"?$",ae="^(){0}"+subexp(subexp("\\/\\/("+subexp("("+v+")@")+"?("+z+")"+subexp("\\:("+L+")")+"?)")+"?("+W+"|"+V+"|"+J+"|"+Z+")")+subexp("\\?("+Q+")")+"?"+subexp("\\#("+K+")")+"?$",se="^("+m+")\\:"+subexp(subexp("\\/\\/("+subexp("("+v+")@")+"?("+z+")"+subexp("\\:("+L+")")+"?)")+"?("+W+"|"+V+"|"+Y+"|"+Z+")")+subexp("\\?("+Q+")")+"?$",ce="^"+subexp("\\#("+K+")")+"?$",ue="^"+subexp("("+v+")@")+"?("+z+")"+subexp("\\:("+L+")")+"?$";return{NOT_SCHEME:new RegExp(merge("[^]",t,r,"[\\+\\-\\.]"),"g"),NOT_USERINFO:new RegExp(merge("[^\\%\\:]",h,l),"g"),NOT_HOST:new RegExp(merge("[^\\%\\[\\]\\:]",h,l),"g"),NOT_PATH:new RegExp(merge("[^\\%\\/\\:\\@]",h,l),"g"),NOT_PATH_NOSCHEME:new RegExp(merge("[^\\%\\/\\@]",h,l),"g"),NOT_QUERY:new RegExp(merge("[^\\%]",h,l,"[\\:\\@\\/\\?]",d),"g"),NOT_FRAGMENT:new RegExp(merge("[^\\%]",h,l,"[\\:\\@\\/\\?]"),"g"),ESCAPE:new RegExp(merge("[^]",h,l),"g"),UNRESERVED:new RegExp(h,"g"),OTHER_CHARS:new RegExp(merge("[^\\%]",h,f),"g"),PCT_ENCODED:new RegExp(c,"g"),IPV4ADDRESS:new RegExp("^("+b+")$"),IPV6ADDRESS:new RegExp("^\\[?("+D+")"+subexp(subexp("\\%25|\\%(?!"+o+"{2})")+"("+T+")")+"?\\]?$")}}var t=buildExps(false);var n=buildExps(true);var r=function(){function sliceIterator(e,t){var n=[];var r=true;var i=false;var o=undefined;try{for(var a=e[Symbol.iterator](),s;!(r=(s=a.next()).done);r=true){n.push(s.value);if(t&&n.length===t)break}}catch(e){i=true;o=e}finally{try{if(!r&&a["return"])a["return"]()}finally{if(i)throw o}}return n}return function(e,t){if(Array.isArray(e)){return e}else if(Symbol.iterator in Object(e)){return sliceIterator(e,t)}else{throw new TypeError("Invalid attempt to destructure non-iterable instance")}}}();var i=function(e){if(Array.isArray(e)){for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}else{return Array.from(e)}};var o=2147483647;var a=36;var s=1;var c=26;var u=38;var l=700;var f=72;var p=128;var d="-";var h=/^xn--/;var m=/[^\0-\x7E]/;var v=/[\x2E\u3002\uFF0E\uFF61]/g;var g={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"};var y=a-s;var b=Math.floor;var w=String.fromCharCode;function error$1(e){throw new RangeError(g[e])}function map(e,t){var n=[];var r=e.length;while(r--){n[r]=t(e[r])}return n}function mapDomain(e,t){var n=e.split("@");var r="";if(n.length>1){r=n[0]+"@";e=n[1]}e=e.replace(v,".");var i=e.split(".");var o=map(i,t).join(".");return r+o}function ucs2decode(e){var t=[];var n=0;var r=e.length;while(n<r){var i=e.charCodeAt(n++);if(i>=55296&&i<=56319&&n<r){var o=e.charCodeAt(n++);if((o&64512)==56320){t.push(((i&1023)<<10)+(o&1023)+65536)}else{t.push(i);n--}}else{t.push(i)}}return t}var x=function ucs2encode(e){return String.fromCodePoint.apply(String,i(e))};var k=function basicToDigit(e){if(e-48<10){return e-22}if(e-65<26){return e-65}if(e-97<26){return e-97}return a};var j=function digitToBasic(e,t){return e+22+75*(e<26)-((t!=0)<<5)};var S=function adapt(e,t,n){var r=0;e=n?b(e/l):e>>1;e+=b(e/t);for(;e>y*c>>1;r+=a){e=b(e/y)}return b(r+(y+1)*e/(e+u))};var E=function decode(e){var t=[];var n=e.length;var r=0;var i=p;var u=f;var l=e.lastIndexOf(d);if(l<0){l=0}for(var h=0;h<l;++h){if(e.charCodeAt(h)>=128){error$1("not-basic")}t.push(e.charCodeAt(h))}for(var m=l>0?l+1:0;m<n;){var v=r;for(var g=1,y=a;;y+=a){if(m>=n){error$1("invalid-input")}var w=k(e.charCodeAt(m++));if(w>=a||w>b((o-r)/g)){error$1("overflow")}r+=w*g;var x=y<=u?s:y>=u+c?c:y-u;if(w<x){break}var j=a-x;if(g>b(o/j)){error$1("overflow")}g*=j}var E=t.length+1;u=S(r-v,E,v==0);if(b(r/E)>o-i){error$1("overflow")}i+=b(r/E);r%=E;t.splice(r++,0,i)}return String.fromCodePoint.apply(String,t)};var _=function encode(e){var t=[];e=ucs2decode(e);var n=e.length;var r=p;var i=0;var u=f;var l=true;var h=false;var m=undefined;try{for(var v=e[Symbol.iterator](),g;!(l=(g=v.next()).done);l=true){var y=g.value;if(y<128){t.push(w(y))}}}catch(e){h=true;m=e}finally{try{if(!l&&v.return){v.return()}}finally{if(h){throw m}}}var x=t.length;var k=x;if(x){t.push(d)}while(k<n){var E=o;var _=true;var C=false;var A=undefined;try{for(var O=e[Symbol.iterator](),F;!(_=(F=O.next()).done);_=true){var D=F.value;if(D>=r&&D<E){E=D}}}catch(e){C=true;A=e}finally{try{if(!_&&O.return){O.return()}}finally{if(C){throw A}}}var T=k+1;if(E-r>b((o-i)/T)){error$1("overflow")}i+=(E-r)*T;r=E;var I=true;var R=false;var P=undefined;try{for(var B=e[Symbol.iterator](),N;!(I=(N=B.next()).done);I=true){var z=N.value;if(z<r&&++i>o){error$1("overflow")}if(z==r){var L=i;for(var M=a;;M+=a){var U=M<=u?s:M>=u+c?c:M-u;if(L<U){break}var q=L-U;var H=a-U;t.push(w(j(U+q%H,0)));L=b(q/H)}t.push(w(j(L,0)));u=S(i,T,k==x);i=0;++k}}}catch(e){R=true;P=e}finally{try{if(!I&&B.return){B.return()}}finally{if(R){throw P}}}++i;++r}return t.join("")};var C=function toUnicode(e){return mapDomain(e,function(e){return h.test(e)?E(e.slice(4).toLowerCase()):e})};var A=function toASCII(e){return mapDomain(e,function(e){return m.test(e)?"xn--"+_(e):e})};var O={version:"2.1.0",ucs2:{decode:ucs2decode,encode:x},decode:E,encode:_,toASCII:A,toUnicode:C};var F={};function pctEncChar(e){var t=e.charCodeAt(0);var n=void 0;if(t<16)n="%0"+t.toString(16).toUpperCase();else if(t<128)n="%"+t.toString(16).toUpperCase();else if(t<2048)n="%"+(t>>6|192).toString(16).toUpperCase()+"%"+(t&63|128).toString(16).toUpperCase();else n="%"+(t>>12|224).toString(16).toUpperCase()+"%"+(t>>6&63|128).toString(16).toUpperCase()+"%"+(t&63|128).toString(16).toUpperCase();return n}function pctDecChars(e){var t="";var n=0;var r=e.length;while(n<r){var i=parseInt(e.substr(n+1,2),16);if(i<128){t+=String.fromCharCode(i);n+=3}else if(i>=194&&i<224){if(r-n>=6){var o=parseInt(e.substr(n+4,2),16);t+=String.fromCharCode((i&31)<<6|o&63)}else{t+=e.substr(n,6)}n+=6}else if(i>=224){if(r-n>=9){var a=parseInt(e.substr(n+4,2),16);var s=parseInt(e.substr(n+7,2),16);t+=String.fromCharCode((i&15)<<12|(a&63)<<6|s&63)}else{t+=e.substr(n,9)}n+=9}else{t+=e.substr(n,3);n+=3}}return t}function _normalizeComponentEncoding(e,t){function decodeUnreserved(e){var n=pctDecChars(e);return!n.match(t.UNRESERVED)?e:n}if(e.scheme)e.scheme=String(e.scheme).replace(t.PCT_ENCODED,decodeUnreserved).toLowerCase().replace(t.NOT_SCHEME,"");if(e.userinfo!==undefined)e.userinfo=String(e.userinfo).replace(t.PCT_ENCODED,decodeUnreserved).replace(t.NOT_USERINFO,pctEncChar).replace(t.PCT_ENCODED,toUpperCase);if(e.host!==undefined)e.host=String(e.host).replace(t.PCT_ENCODED,decodeUnreserved).toLowerCase().replace(t.NOT_HOST,pctEncChar).replace(t.PCT_ENCODED,toUpperCase);if(e.path!==undefined)e.path=String(e.path).replace(t.PCT_ENCODED,decodeUnreserved).replace(e.scheme?t.NOT_PATH:t.NOT_PATH_NOSCHEME,pctEncChar).replace(t.PCT_ENCODED,toUpperCase);if(e.query!==undefined)e.query=String(e.query).replace(t.PCT_ENCODED,decodeUnreserved).replace(t.NOT_QUERY,pctEncChar).replace(t.PCT_ENCODED,toUpperCase);if(e.fragment!==undefined)e.fragment=String(e.fragment).replace(t.PCT_ENCODED,decodeUnreserved).replace(t.NOT_FRAGMENT,pctEncChar).replace(t.PCT_ENCODED,toUpperCase);return e}function _stripLeadingZeros(e){return e.replace(/^0*(.*)/,"$1")||"0"}function _normalizeIPv4(e,t){var n=e.match(t.IPV4ADDRESS)||[];var i=r(n,2),o=i[1];if(o){return o.split(".").map(_stripLeadingZeros).join(".")}else{return e}}function _normalizeIPv6(e,t){var n=e.match(t.IPV6ADDRESS)||[];var i=r(n,3),o=i[1],a=i[2];if(o){var s=o.toLowerCase().split("::").reverse(),c=r(s,2),u=c[0],l=c[1];var f=l?l.split(":").map(_stripLeadingZeros):[];var p=u.split(":").map(_stripLeadingZeros);var d=t.IPV4ADDRESS.test(p[p.length-1]);var h=d?7:8;var m=p.length-h;var v=Array(h);for(var g=0;g<h;++g){v[g]=f[g]||p[m+g]||""}if(d){v[h-1]=_normalizeIPv4(v[h-1],t)}var y=v.reduce(function(e,t,n){if(!t||t==="0"){var r=e[e.length-1];if(r&&r.index+r.length===n){r.length++}else{e.push({index:n,length:1})}}return e},[]);var b=y.sort(function(e,t){return t.length-e.length})[0];var w=void 0;if(b&&b.length>1){var x=v.slice(0,b.index);var k=v.slice(b.index+b.length);w=x.join(":")+"::"+k.join(":")}else{w=v.join(":")}if(a){w+="%"+a}return w}else{return e}}var D=/^(?:([^:\/?#]+):)?(?:\/\/((?:([^\/?#@]*)@)?(\[[^\/?#\]]+\]|[^\/?#:]*)(?:\:(\d*))?))?([^?#]*)(?:\?([^#]*))?(?:#((?:.|\n|\r)*))?/i;var T="".match(/(){0}/)[1]===undefined;function parse(e){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var i={};var o=r.iri!==false?n:t;if(r.reference==="suffix")e=(r.scheme?r.scheme+":":"")+"//"+e;var a=e.match(D);if(a){if(T){i.scheme=a[1];i.userinfo=a[3];i.host=a[4];i.port=parseInt(a[5],10);i.path=a[6]||"";i.query=a[7];i.fragment=a[8];if(isNaN(i.port)){i.port=a[5]}}else{i.scheme=a[1]||undefined;i.userinfo=e.indexOf("@")!==-1?a[3]:undefined;i.host=e.indexOf("//")!==-1?a[4]:undefined;i.port=parseInt(a[5],10);i.path=a[6]||"";i.query=e.indexOf("?")!==-1?a[7]:undefined;i.fragment=e.indexOf("#")!==-1?a[8]:undefined;if(isNaN(i.port)){i.port=e.match(/\/\/(?:.|\n)*\:(?:\/|\?|\#|$)/)?a[4]:undefined}}if(i.host){i.host=_normalizeIPv6(_normalizeIPv4(i.host,o),o)}if(i.scheme===undefined&&i.userinfo===undefined&&i.host===undefined&&i.port===undefined&&!i.path&&i.query===undefined){i.reference="same-document"}else if(i.scheme===undefined){i.reference="relative"}else if(i.fragment===undefined){i.reference="absolute"}else{i.reference="uri"}if(r.reference&&r.reference!=="suffix"&&r.reference!==i.reference){i.error=i.error||"URI is not a "+r.reference+" reference."}var s=F[(r.scheme||i.scheme||"").toLowerCase()];if(!r.unicodeSupport&&(!s||!s.unicodeSupport)){if(i.host&&(r.domainHost||s&&s.domainHost)){try{i.host=O.toASCII(i.host.replace(o.PCT_ENCODED,pctDecChars).toLowerCase())}catch(e){i.error=i.error||"Host's domain name can not be converted to ASCII via punycode: "+e}}_normalizeComponentEncoding(i,t)}else{_normalizeComponentEncoding(i,o)}if(s&&s.parse){s.parse(i,r)}}else{i.error=i.error||"URI can not be parsed."}return i}function _recomposeAuthority(e,r){var i=r.iri!==false?n:t;var o=[];if(e.userinfo!==undefined){o.push(e.userinfo);o.push("@")}if(e.host!==undefined){o.push(_normalizeIPv6(_normalizeIPv4(String(e.host),i),i).replace(i.IPV6ADDRESS,function(e,t,n){return"["+t+(n?"%25"+n:"")+"]"}))}if(typeof e.port==="number"){o.push(":");o.push(e.port.toString(10))}return o.length?o.join(""):undefined}var I=/^\.\.?\//;var R=/^\/\.(\/|$)/;var P=/^\/\.\.(\/|$)/;var B=/^\/?(?:.|\n)*?(?=\/|$)/;function removeDotSegments(e){var t=[];while(e.length){if(e.match(I)){e=e.replace(I,"")}else if(e.match(R)){e=e.replace(R,"/")}else if(e.match(P)){e=e.replace(P,"/");t.pop()}else if(e==="."||e===".."){e=""}else{var n=e.match(B);if(n){var r=n[0];e=e.slice(r.length);t.push(r)}else{throw new Error("Unexpected dot segment condition")}}}return t.join("")}function serialize(e){var r=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};var i=r.iri?n:t;var o=[];var a=F[(r.scheme||e.scheme||"").toLowerCase()];if(a&&a.serialize)a.serialize(e,r);if(e.host){if(i.IPV6ADDRESS.test(e.host)){}else if(r.domainHost||a&&a.domainHost){try{e.host=!r.iri?O.toASCII(e.host.replace(i.PCT_ENCODED,pctDecChars).toLowerCase()):O.toUnicode(e.host)}catch(t){e.error=e.error||"Host's domain name can not be converted to "+(!r.iri?"ASCII":"Unicode")+" via punycode: "+t}}}_normalizeComponentEncoding(e,i);if(r.reference!=="suffix"&&e.scheme){o.push(e.scheme);o.push(":")}var s=_recomposeAuthority(e,r);if(s!==undefined){if(r.reference!=="suffix"){o.push("//")}o.push(s);if(e.path&&e.path.charAt(0)!=="/"){o.push("/")}}if(e.path!==undefined){var c=e.path;if(!r.absolutePath&&(!a||!a.absolutePath)){c=removeDotSegments(c)}if(s===undefined){c=c.replace(/^\/\//,"/%2F")}o.push(c)}if(e.query!==undefined){o.push("?");o.push(e.query)}if(e.fragment!==undefined){o.push("#");o.push(e.fragment)}return o.join("")}function resolveComponents(e,t){var n=arguments.length>2&&arguments[2]!==undefined?arguments[2]:{};var r=arguments[3];var i={};if(!r){e=parse(serialize(e,n),n);t=parse(serialize(t,n),n)}n=n||{};if(!n.tolerant&&t.scheme){i.scheme=t.scheme;i.userinfo=t.userinfo;i.host=t.host;i.port=t.port;i.path=removeDotSegments(t.path||"");i.query=t.query}else{if(t.userinfo!==undefined||t.host!==undefined||t.port!==undefined){i.userinfo=t.userinfo;i.host=t.host;i.port=t.port;i.path=removeDotSegments(t.path||"");i.query=t.query}else{if(!t.path){i.path=e.path;if(t.query!==undefined){i.query=t.query}else{i.query=e.query}}else{if(t.path.charAt(0)==="/"){i.path=removeDotSegments(t.path)}else{if((e.userinfo!==undefined||e.host!==undefined||e.port!==undefined)&&!e.path){i.path="/"+t.path}else if(!e.path){i.path=t.path}else{i.path=e.path.slice(0,e.path.lastIndexOf("/")+1)+t.path}i.path=removeDotSegments(i.path)}i.query=t.query}i.userinfo=e.userinfo;i.host=e.host;i.port=e.port}i.scheme=e.scheme}i.fragment=t.fragment;return i}function resolve(e,t,n){var r=assign({scheme:"null"},n);return serialize(resolveComponents(parse(e,r),parse(t,r),r,true),r)}function normalize(e,t){if(typeof e==="string"){e=serialize(parse(e,t),t)}else if(typeOf(e)==="object"){e=parse(serialize(e,t),t)}return e}function equal(e,t,n){if(typeof e==="string"){e=serialize(parse(e,n),n)}else if(typeOf(e)==="object"){e=serialize(e,n)}if(typeof t==="string"){t=serialize(parse(t,n),n)}else if(typeOf(t)==="object"){t=serialize(t,n)}return e===t}function escapeComponent(e,r){return e&&e.toString().replace(!r||!r.iri?t.ESCAPE:n.ESCAPE,pctEncChar)}function unescapeComponent(e,r){return e&&e.toString().replace(!r||!r.iri?t.PCT_ENCODED:n.PCT_ENCODED,pctDecChars)}var N={scheme:"http",domainHost:true,parse:function parse(e,t){if(!e.host){e.error=e.error||"HTTP URIs must have a host."}return e},serialize:function serialize(e,t){if(e.port===(String(e.scheme).toLowerCase()!=="https"?80:443)||e.port===""){e.port=undefined}if(!e.path){e.path="/"}return e}};var z={scheme:"https",domainHost:N.domainHost,parse:N.parse,serialize:N.serialize};var L={};var M=true;var U="[A-Za-z0-9\\-\\.\\_\\~"+(M?"\\xA0-\\u200D\\u2010-\\u2029\\u202F-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF":"")+"]";var q="[0-9A-Fa-f]";var H=subexp(subexp("%[EFef]"+q+"%"+q+q+"%"+q+q)+"|"+subexp("%[89A-Fa-f]"+q+"%"+q+q)+"|"+subexp("%"+q+q));var G="[A-Za-z0-9\\!\\$\\%\\'\\*\\+\\-\\^\\_\\`\\{\\|\\}\\~]";var W="[\\!\\$\\%\\'\\(\\)\\*\\+\\,\\-\\.0-9\\<\\>A-Z\\x5E-\\x7E]";var V=merge(W,'[\\"\\\\]');var J="[\\!\\$\\'\\(\\)\\*\\+\\,\\;\\:\\@]";var Y=new RegExp(U,"g");var Z=new RegExp(H,"g");var X=new RegExp(merge("[^]",G,"[\\.]",'[\\"]',V),"g");var Q=new RegExp(merge("[^]",U,J),"g");var K=Q;function decodeUnreserved(e){var t=pctDecChars(e);return!t.match(Y)?e:t}var $={scheme:"mailto",parse:function parse$$1(e,t){var n=e;var r=n.to=n.path?n.path.split(","):[];n.path=undefined;if(n.query){var i=false;var o={};var a=n.query.split("&");for(var s=0,c=a.length;s<c;++s){var u=a[s].split("=");switch(u[0]){case"to":var l=u[1].split(",");for(var f=0,p=l.length;f<p;++f){r.push(l[f])}break;case"subject":n.subject=unescapeComponent(u[1],t);break;case"body":n.body=unescapeComponent(u[1],t);break;default:i=true;o[unescapeComponent(u[0],t)]=unescapeComponent(u[1],t);break}}if(i)n.headers=o}n.query=undefined;for(var d=0,h=r.length;d<h;++d){var m=r[d].split("@");m[0]=unescapeComponent(m[0]);if(!t.unicodeSupport){try{m[1]=O.toASCII(unescapeComponent(m[1],t).toLowerCase())}catch(e){n.error=n.error||"Email address's domain name can not be converted to ASCII via punycode: "+e}}else{m[1]=unescapeComponent(m[1],t).toLowerCase()}r[d]=m.join("@")}return n},serialize:function serialize$$1(e,t){var n=e;var r=toArray(e.to);if(r){for(var i=0,o=r.length;i<o;++i){var a=String(r[i]);var s=a.lastIndexOf("@");var c=a.slice(0,s).replace(Z,decodeUnreserved).replace(Z,toUpperCase).replace(X,pctEncChar);var u=a.slice(s+1);try{u=!t.iri?O.toASCII(unescapeComponent(u,t).toLowerCase()):O.toUnicode(u)}catch(e){n.error=n.error||"Email address's domain name can not be converted to "+(!t.iri?"ASCII":"Unicode")+" via punycode: "+e}r[i]=c+"@"+u}n.path=r.join(",")}var l=e.headers=e.headers||{};if(e.subject)l["subject"]=e.subject;if(e.body)l["body"]=e.body;var f=[];for(var p in l){if(l[p]!==L[p]){f.push(p.replace(Z,decodeUnreserved).replace(Z,toUpperCase).replace(Q,pctEncChar)+"="+l[p].replace(Z,decodeUnreserved).replace(Z,toUpperCase).replace(K,pctEncChar))}}if(f.length){n.query=f.join("&")}return n}};var ee=/^([^\:]+)\:(.*)/;var te={scheme:"urn",parse:function parse$$1(e,t){var n=e.path&&e.path.match(ee);var r=e;if(n){var i=t.scheme||r.scheme||"urn";var o=n[1].toLowerCase();var a=n[2];var s=i+":"+(t.nid||o);var c=F[s];r.nid=o;r.nss=a;r.path=undefined;if(c){r=c.parse(r,t)}}else{r.error=r.error||"URN can not be parsed."}return r},serialize:function serialize$$1(e,t){var n=t.scheme||e.scheme||"urn";var r=e.nid;var i=n+":"+(t.nid||r);var o=F[i];if(o){e=o.serialize(e,t)}var a=e;var s=e.nss;a.path=(r||t.nid)+":"+s;return a}};var ne=/^[0-9A-Fa-f]{8}(?:\-[0-9A-Fa-f]{4}){3}\-[0-9A-Fa-f]{12}$/;var re={scheme:"urn:uuid",parse:function parse(e,t){var n=e;n.uuid=n.nss;n.nss=undefined;if(!t.tolerant&&(!n.uuid||!n.uuid.match(ne))){n.error=n.error||"UUID is not valid."}return n},serialize:function serialize(e,t){var n=e;n.nss=(e.uuid||"").toLowerCase();return n}};F[N.scheme]=N;F[z.scheme]=z;F[$.scheme]=$;F[te.scheme]=te;F[re.scheme]=re;e.SCHEMES=F;e.pctEncChar=pctEncChar;e.pctDecChars=pctDecChars;e.parse=parse;e.removeDotSegments=removeDotSegments;e.serialize=serialize;e.resolveComponents=resolveComponents;e.resolve=resolve;e.normalize=normalize;e.equal=equal;e.escapeComponent=escapeComponent;e.unescapeComponent=unescapeComponent;Object.defineProperty(e,"__esModule",{value:true})})},6260:function(e,t,n){"use strict";const r=n(6886).PassThrough;const i=n(2673);const o=n(4940);e.exports=(e=>{if(["gzip","deflate"].indexOf(e.headers["content-encoding"])===-1){return e}const t=i.createUnzip();const n=new r;o(e,n);t.on("error",e=>{if(e.code==="Z_BUF_ERROR"){n.end();return}n.emit("error",e)});e.pipe(t).pipe(n);return n})},6262:function(e,t,n){"use strict";t.c=t.create=n(7053);t.r=t.replace=n(2040);t.t=t.list=n(4787);t.u=t.update=n(20);t.x=t.extract=n(1541);t.Pack=n(342);t.Unpack=n(3932);t.Parse=n(2052);t.ReadEntry=n(6695);t.WriteEntry=n(885);t.Header=n(7044);t.Pax=n(4457);t.types=n(5594)},6264:function(e,t,n){"use strict";var r=n(1758)();e.exports=function(e){return typeof e==="string"?e.replace(r,""):e}},6268:function(e,t,n){"use strict";var r=n(9544);var i=n(5311);var o=e.exports=function(e){this.type="separator";this.line=r.dim(e||new Array(15).join(i.line))};o.exclude=function(e){return e.type!=="separator"};o.prototype.toString=function(){return this.line}},6276:function(e){"use strict";var t=Array.isArray;var n=Object.keys;var r=Object.prototype.hasOwnProperty;e.exports=function equal(e,i){if(e===i)return true;if(e&&i&&typeof e=="object"&&typeof i=="object"){var o=t(e),a=t(i),s,c,u;if(o&&a){c=e.length;if(c!=i.length)return false;for(s=c;s--!==0;)if(!equal(e[s],i[s]))return false;return true}if(o!=a)return false;var l=e instanceof Date,f=i instanceof Date;if(l!=f)return false;if(l&&f)return e.getTime()==i.getTime();var p=e instanceof RegExp,d=i instanceof RegExp;if(p!=d)return false;if(p&&d)return e.toString()==i.toString();var h=n(e);c=h.length;if(c!==n(i).length)return false;for(s=c;s--!==0;)if(!r.call(i,h[s]))return false;for(s=c;s--!==0;){u=h[s];if(!equal(e[u],i[u]))return false}return true}return e!==e&&i!==i}},6278:function(e,t,n){"use strict";const r=n(9703);const i=n(4480);const o=n(7488);e.exports=(()=>e=>{if(!Buffer.isBuffer(e)&&!i(e)){return Promise.reject(new TypeError(`Expected a Buffer or Stream, got ${typeof e}`))}if(Buffer.isBuffer(e)&&(!r(e)||r(e).ext!=="tar")){return Promise.resolve([])}const t=o.extract();const n=[];t.on("entry",(e,t,r)=>{const i=[];t.on("data",e=>i.push(e));t.on("end",()=>{const t={data:Buffer.concat(i),mode:e.mode,mtime:e.mtime,path:e.name,type:e.type};if(e.type==="symlink"||e.type==="link"){t.linkname=e.linkname}n.push(t);r()})});const a=new Promise((r,i)=>{if(!Buffer.isBuffer(e)){e.on("error",i)}t.on("finish",()=>r(n));t.on("error",i)});t.then=a.then.bind(a);t.catch=a.catch.bind(a);if(Buffer.isBuffer(e)){t.end(e)}else{e.pipe(t)}return t})},6279:function(e,t,n){"use strict";var r=n(5325);function isObjectObject(e){return r(e)===true&&Object.prototype.toString.call(e)==="[object Object]"}e.exports=function isPlainObject(e){var t,n;if(isObjectObject(e)===false)return false;t=e.constructor;if(typeof t!=="function")return false;n=t.prototype;if(isObjectObject(n)===false)return false;if(n.hasOwnProperty("isPrototypeOf")===false){return false}return true}},6281:function(e){"use strict";e.exports=function(e,t){var n=e.map;e.prototype.filter=function(e,r){return n(this,e,r,t)};e.filter=function(e,r,i){return n(e,r,i,t)}}},6286:function(e){e.exports={$id:"log.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",required:["version","creator","entries"],properties:{version:{type:"string"},creator:{$ref:"creator.json#"},browser:{$ref:"browser.json#"},pages:{type:"array",items:{$ref:"page.json#"}},entries:{type:"array",items:{$ref:"entry.json#"}},comment:{type:"string"}}}},6300:function(e){e.exports=Pend;function Pend(){this.pending=0;this.max=Infinity;this.listeners=[];this.waiting=[];this.error=null}Pend.prototype.go=function(e){if(this.pending<this.max){pendGo(this,e)}else{this.waiting.push(e)}};Pend.prototype.wait=function(e){if(this.pending===0){e(this.error)}else{this.listeners.push(e)}};Pend.prototype.hold=function(){return pendHold(this)};function pendHold(e){e.pending+=1;var t=false;return onCb;function onCb(n){if(t)throw new Error("callback called twice");t=true;e.error=e.error||n;e.pending-=1;if(e.waiting.length>0&&e.pending<e.max){pendGo(e,e.waiting.shift())}else if(e.pending===0){var r=e.listeners;e.listeners=[];r.forEach(cbListener)}}function cbListener(t){t(e.error)}}function pendGo(e,t){t(pendHold(e))}},6309:function(e,t,n){"use strict";var r;try{throw new Error}catch(e){r=e}var i=n(5957);var o=n(3700);var a=n(4730);function Async(){this._customScheduler=false;this._isTickUsed=false;this._lateQueue=new o(16);this._normalQueue=new o(16);this._haveDrainedQueues=false;this._trampolineEnabled=true;var e=this;this.drainQueues=function(){e._drainQueues()};this._schedule=i}Async.prototype.setScheduler=function(e){var t=this._schedule;this._schedule=e;this._customScheduler=true;return t};Async.prototype.hasCustomScheduler=function(){return this._customScheduler};Async.prototype.enableTrampoline=function(){this._trampolineEnabled=true};Async.prototype.disableTrampolineIfNecessary=function(){if(a.hasDevTools){this._trampolineEnabled=false}};Async.prototype.haveItemsQueued=function(){return this._isTickUsed||this._haveDrainedQueues};Async.prototype.fatalError=function(e,t){if(t){process.stderr.write("Fatal "+(e instanceof Error?e.stack:e)+"\n");process.exit(2)}else{this.throwLater(e)}};Async.prototype.throwLater=function(e,t){if(arguments.length===1){t=e;e=function(){throw t}}if(typeof setTimeout!=="undefined"){setTimeout(function(){e(t)},0)}else try{this._schedule(function(){e(t)})}catch(e){throw new Error("No async scheduler available\n\n See http://goo.gl/MqrFmX\n")}};function AsyncInvokeLater(e,t,n){this._lateQueue.push(e,t,n);this._queueTick()}function AsyncInvoke(e,t,n){this._normalQueue.push(e,t,n);this._queueTick()}function AsyncSettlePromises(e){this._normalQueue._pushOne(e);this._queueTick()}if(!a.hasDevTools){Async.prototype.invokeLater=AsyncInvokeLater;Async.prototype.invoke=AsyncInvoke;Async.prototype.settlePromises=AsyncSettlePromises}else{Async.prototype.invokeLater=function(e,t,n){if(this._trampolineEnabled){AsyncInvokeLater.call(this,e,t,n)}else{this._schedule(function(){setTimeout(function(){e.call(t,n)},100)})}};Async.prototype.invoke=function(e,t,n){if(this._trampolineEnabled){AsyncInvoke.call(this,e,t,n)}else{this._schedule(function(){e.call(t,n)})}};Async.prototype.settlePromises=function(e){if(this._trampolineEnabled){AsyncSettlePromises.call(this,e)}else{this._schedule(function(){e._settlePromises()})}}}function _drainQueue(e){while(e.length()>0){_drainQueueStep(e)}}function _drainQueueStep(e){var t=e.shift();if(typeof t!=="function"){t._settlePromises()}else{var n=e.shift();var r=e.shift();t.call(n,r)}}Async.prototype._drainQueues=function(){_drainQueue(this._normalQueue);this._reset();this._haveDrainedQueues=true;_drainQueue(this._lateQueue)};Async.prototype._queueTick=function(){if(!this._isTickUsed){this._isTickUsed=true;this._schedule(this.drainQueues)}};Async.prototype._reset=function(){this._isTickUsed=false};e.exports=Async;e.exports.firstLineError=r},6324:function(e,t,n){var r=n(7554);var i={};for(var o in r){if(r.hasOwnProperty(o)){i[r[o]]=o}}var a=e.exports={rgb:{channels:3,labels:"rgb"},hsl:{channels:3,labels:"hsl"},hsv:{channels:3,labels:"hsv"},hwb:{channels:3,labels:"hwb"},cmyk:{channels:4,labels:"cmyk"},xyz:{channels:3,labels:"xyz"},lab:{channels:3,labels:"lab"},lch:{channels:3,labels:"lch"},hex:{channels:1,labels:["hex"]},keyword:{channels:1,labels:["keyword"]},ansi16:{channels:1,labels:["ansi16"]},ansi256:{channels:1,labels:["ansi256"]},hcg:{channels:3,labels:["h","c","g"]},apple:{channels:3,labels:["r16","g16","b16"]},gray:{channels:1,labels:["gray"]}};for(var s in a){if(a.hasOwnProperty(s)){if(!("channels"in a[s])){throw new Error("missing channels property: "+s)}if(!("labels"in a[s])){throw new Error("missing channel labels property: "+s)}if(a[s].labels.length!==a[s].channels){throw new Error("channel and label counts mismatch: "+s)}var c=a[s].channels;var u=a[s].labels;delete a[s].channels;delete a[s].labels;Object.defineProperty(a[s],"channels",{value:c});Object.defineProperty(a[s],"labels",{value:u})}}a.rgb.hsl=function(e){var t=e[0]/255;var n=e[1]/255;var r=e[2]/255;var i=Math.min(t,n,r);var o=Math.max(t,n,r);var a=o-i;var s;var c;var u;if(o===i){s=0}else if(t===o){s=(n-r)/a}else if(n===o){s=2+(r-t)/a}else if(r===o){s=4+(t-n)/a}s=Math.min(s*60,360);if(s<0){s+=360}u=(i+o)/2;if(o===i){c=0}else if(u<=.5){c=a/(o+i)}else{c=a/(2-o-i)}return[s,c*100,u*100]};a.rgb.hsv=function(e){var t;var n;var r;var i;var o;var a=e[0]/255;var s=e[1]/255;var c=e[2]/255;var u=Math.max(a,s,c);var l=u-Math.min(a,s,c);var f=function(e){return(u-e)/6/l+1/2};if(l===0){i=o=0}else{o=l/u;t=f(a);n=f(s);r=f(c);if(a===u){i=r-n}else if(s===u){i=1/3+t-r}else if(c===u){i=2/3+n-t}if(i<0){i+=1}else if(i>1){i-=1}}return[i*360,o*100,u*100]};a.rgb.hwb=function(e){var t=e[0];var n=e[1];var r=e[2];var i=a.rgb.hsl(e)[0];var o=1/255*Math.min(t,Math.min(n,r));r=1-1/255*Math.max(t,Math.max(n,r));return[i,o*100,r*100]};a.rgb.cmyk=function(e){var t=e[0]/255;var n=e[1]/255;var r=e[2]/255;var i;var o;var a;var s;s=Math.min(1-t,1-n,1-r);i=(1-t-s)/(1-s)||0;o=(1-n-s)/(1-s)||0;a=(1-r-s)/(1-s)||0;return[i*100,o*100,a*100,s*100]};function comparativeDistance(e,t){return Math.pow(e[0]-t[0],2)+Math.pow(e[1]-t[1],2)+Math.pow(e[2]-t[2],2)}a.rgb.keyword=function(e){var t=i[e];if(t){return t}var n=Infinity;var o;for(var a in r){if(r.hasOwnProperty(a)){var s=r[a];var c=comparativeDistance(e,s);if(c<n){n=c;o=a}}}return o};a.keyword.rgb=function(e){return r[e]};a.rgb.xyz=function(e){var t=e[0]/255;var n=e[1]/255;var r=e[2]/255;t=t>.04045?Math.pow((t+.055)/1.055,2.4):t/12.92;n=n>.04045?Math.pow((n+.055)/1.055,2.4):n/12.92;r=r>.04045?Math.pow((r+.055)/1.055,2.4):r/12.92;var i=t*.4124+n*.3576+r*.1805;var o=t*.2126+n*.7152+r*.0722;var a=t*.0193+n*.1192+r*.9505;return[i*100,o*100,a*100]};a.rgb.lab=function(e){var t=a.rgb.xyz(e);var n=t[0];var r=t[1];var i=t[2];var o;var s;var c;n/=95.047;r/=100;i/=108.883;n=n>.008856?Math.pow(n,1/3):7.787*n+16/116;r=r>.008856?Math.pow(r,1/3):7.787*r+16/116;i=i>.008856?Math.pow(i,1/3):7.787*i+16/116;o=116*r-16;s=500*(n-r);c=200*(r-i);return[o,s,c]};a.hsl.rgb=function(e){var t=e[0]/360;var n=e[1]/100;var r=e[2]/100;var i;var o;var a;var s;var c;if(n===0){c=r*255;return[c,c,c]}if(r<.5){o=r*(1+n)}else{o=r+n-r*n}i=2*r-o;s=[0,0,0];for(var u=0;u<3;u++){a=t+1/3*-(u-1);if(a<0){a++}if(a>1){a--}if(6*a<1){c=i+(o-i)*6*a}else if(2*a<1){c=o}else if(3*a<2){c=i+(o-i)*(2/3-a)*6}else{c=i}s[u]=c*255}return s};a.hsl.hsv=function(e){var t=e[0];var n=e[1]/100;var r=e[2]/100;var i=n;var o=Math.max(r,.01);var a;var s;r*=2;n*=r<=1?r:2-r;i*=o<=1?o:2-o;s=(r+n)/2;a=r===0?2*i/(o+i):2*n/(r+n);return[t,a*100,s*100]};a.hsv.rgb=function(e){var t=e[0]/60;var n=e[1]/100;var r=e[2]/100;var i=Math.floor(t)%6;var o=t-Math.floor(t);var a=255*r*(1-n);var s=255*r*(1-n*o);var c=255*r*(1-n*(1-o));r*=255;switch(i){case 0:return[r,c,a];case 1:return[s,r,a];case 2:return[a,r,c];case 3:return[a,s,r];case 4:return[c,a,r];case 5:return[r,a,s]}};a.hsv.hsl=function(e){var t=e[0];var n=e[1]/100;var r=e[2]/100;var i=Math.max(r,.01);var o;var a;var s;s=(2-n)*r;o=(2-n)*i;a=n*i;a/=o<=1?o:2-o;a=a||0;s/=2;return[t,a*100,s*100]};a.hwb.rgb=function(e){var t=e[0]/360;var n=e[1]/100;var r=e[2]/100;var i=n+r;var o;var a;var s;var c;if(i>1){n/=i;r/=i}o=Math.floor(6*t);a=1-r;s=6*t-o;if((o&1)!==0){s=1-s}c=n+s*(a-n);var u;var l;var f;switch(o){default:case 6:case 0:u=a;l=c;f=n;break;case 1:u=c;l=a;f=n;break;case 2:u=n;l=a;f=c;break;case 3:u=n;l=c;f=a;break;case 4:u=c;l=n;f=a;break;case 5:u=a;l=n;f=c;break}return[u*255,l*255,f*255]};a.cmyk.rgb=function(e){var t=e[0]/100;var n=e[1]/100;var r=e[2]/100;var i=e[3]/100;var o;var a;var s;o=1-Math.min(1,t*(1-i)+i);a=1-Math.min(1,n*(1-i)+i);s=1-Math.min(1,r*(1-i)+i);return[o*255,a*255,s*255]};a.xyz.rgb=function(e){var t=e[0]/100;var n=e[1]/100;var r=e[2]/100;var i;var o;var a;i=t*3.2406+n*-1.5372+r*-.4986;o=t*-.9689+n*1.8758+r*.0415;a=t*.0557+n*-.204+r*1.057;i=i>.0031308?1.055*Math.pow(i,1/2.4)-.055:i*12.92;o=o>.0031308?1.055*Math.pow(o,1/2.4)-.055:o*12.92;a=a>.0031308?1.055*Math.pow(a,1/2.4)-.055:a*12.92;i=Math.min(Math.max(0,i),1);o=Math.min(Math.max(0,o),1);a=Math.min(Math.max(0,a),1);return[i*255,o*255,a*255]};a.xyz.lab=function(e){var t=e[0];var n=e[1];var r=e[2];var i;var o;var a;t/=95.047;n/=100;r/=108.883;t=t>.008856?Math.pow(t,1/3):7.787*t+16/116;n=n>.008856?Math.pow(n,1/3):7.787*n+16/116;r=r>.008856?Math.pow(r,1/3):7.787*r+16/116;i=116*n-16;o=500*(t-n);a=200*(n-r);return[i,o,a]};a.lab.xyz=function(e){var t=e[0];var n=e[1];var r=e[2];var i;var o;var a;o=(t+16)/116;i=n/500+o;a=o-r/200;var s=Math.pow(o,3);var c=Math.pow(i,3);var u=Math.pow(a,3);o=s>.008856?s:(o-16/116)/7.787;i=c>.008856?c:(i-16/116)/7.787;a=u>.008856?u:(a-16/116)/7.787;i*=95.047;o*=100;a*=108.883;return[i,o,a]};a.lab.lch=function(e){var t=e[0];var n=e[1];var r=e[2];var i;var o;var a;i=Math.atan2(r,n);o=i*360/2/Math.PI;if(o<0){o+=360}a=Math.sqrt(n*n+r*r);return[t,a,o]};a.lch.lab=function(e){var t=e[0];var n=e[1];var r=e[2];var i;var o;var a;a=r/360*2*Math.PI;i=n*Math.cos(a);o=n*Math.sin(a);return[t,i,o]};a.rgb.ansi16=function(e){var t=e[0];var n=e[1];var r=e[2];var i=1 in arguments?arguments[1]:a.rgb.hsv(e)[2];i=Math.round(i/50);if(i===0){return 30}var o=30+(Math.round(r/255)<<2|Math.round(n/255)<<1|Math.round(t/255));if(i===2){o+=60}return o};a.hsv.ansi16=function(e){return a.rgb.ansi16(a.hsv.rgb(e),e[2])};a.rgb.ansi256=function(e){var t=e[0];var n=e[1];var r=e[2];if(t===n&&n===r){if(t<8){return 16}if(t>248){return 231}return Math.round((t-8)/247*24)+232}var i=16+36*Math.round(t/255*5)+6*Math.round(n/255*5)+Math.round(r/255*5);return i};a.ansi16.rgb=function(e){var t=e%10;if(t===0||t===7){if(e>50){t+=3.5}t=t/10.5*255;return[t,t,t]}var n=(~~(e>50)+1)*.5;var r=(t&1)*n*255;var i=(t>>1&1)*n*255;var o=(t>>2&1)*n*255;return[r,i,o]};a.ansi256.rgb=function(e){if(e>=232){var t=(e-232)*10+8;return[t,t,t]}e-=16;var n;var r=Math.floor(e/36)/5*255;var i=Math.floor((n=e%36)/6)/5*255;var o=n%6/5*255;return[r,i,o]};a.rgb.hex=function(e){var t=((Math.round(e[0])&255)<<16)+((Math.round(e[1])&255)<<8)+(Math.round(e[2])&255);var n=t.toString(16).toUpperCase();return"000000".substring(n.length)+n};a.hex.rgb=function(e){var t=e.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!t){return[0,0,0]}var n=t[0];if(t[0].length===3){n=n.split("").map(function(e){return e+e}).join("")}var r=parseInt(n,16);var i=r>>16&255;var o=r>>8&255;var a=r&255;return[i,o,a]};a.rgb.hcg=function(e){var t=e[0]/255;var n=e[1]/255;var r=e[2]/255;var i=Math.max(Math.max(t,n),r);var o=Math.min(Math.min(t,n),r);var a=i-o;var s;var c;if(a<1){s=o/(1-a)}else{s=0}if(a<=0){c=0}else if(i===t){c=(n-r)/a%6}else if(i===n){c=2+(r-t)/a}else{c=4+(t-n)/a+4}c/=6;c%=1;return[c*360,a*100,s*100]};a.hsl.hcg=function(e){var t=e[1]/100;var n=e[2]/100;var r=1;var i=0;if(n<.5){r=2*t*n}else{r=2*t*(1-n)}if(r<1){i=(n-.5*r)/(1-r)}return[e[0],r*100,i*100]};a.hsv.hcg=function(e){var t=e[1]/100;var n=e[2]/100;var r=t*n;var i=0;if(r<1){i=(n-r)/(1-r)}return[e[0],r*100,i*100]};a.hcg.rgb=function(e){var t=e[0]/360;var n=e[1]/100;var r=e[2]/100;if(n===0){return[r*255,r*255,r*255]}var i=[0,0,0];var o=t%1*6;var a=o%1;var s=1-a;var c=0;switch(Math.floor(o)){case 0:i[0]=1;i[1]=a;i[2]=0;break;case 1:i[0]=s;i[1]=1;i[2]=0;break;case 2:i[0]=0;i[1]=1;i[2]=a;break;case 3:i[0]=0;i[1]=s;i[2]=1;break;case 4:i[0]=a;i[1]=0;i[2]=1;break;default:i[0]=1;i[1]=0;i[2]=s}c=(1-n)*r;return[(n*i[0]+c)*255,(n*i[1]+c)*255,(n*i[2]+c)*255]};a.hcg.hsv=function(e){var t=e[1]/100;var n=e[2]/100;var r=t+n*(1-t);var i=0;if(r>0){i=t/r}return[e[0],i*100,r*100]};a.hcg.hsl=function(e){var t=e[1]/100;var n=e[2]/100;var r=n*(1-t)+.5*t;var i=0;if(r>0&&r<.5){i=t/(2*r)}else if(r>=.5&&r<1){i=t/(2*(1-r))}return[e[0],i*100,r*100]};a.hcg.hwb=function(e){var t=e[1]/100;var n=e[2]/100;var r=t+n*(1-t);return[e[0],(r-t)*100,(1-r)*100]};a.hwb.hcg=function(e){var t=e[1]/100;var n=e[2]/100;var r=1-n;var i=r-t;var o=0;if(i<1){o=(r-i)/(1-i)}return[e[0],i*100,o*100]};a.apple.rgb=function(e){return[e[0]/65535*255,e[1]/65535*255,e[2]/65535*255]};a.rgb.apple=function(e){return[e[0]/255*65535,e[1]/255*65535,e[2]/255*65535]};a.gray.rgb=function(e){return[e[0]/100*255,e[0]/100*255,e[0]/100*255]};a.gray.hsl=a.gray.hsv=function(e){return[0,0,e[0]]};a.gray.hwb=function(e){return[0,100,e[0]]};a.gray.cmyk=function(e){return[0,0,0,e[0]]};a.gray.lab=function(e){return[e[0],0,0]};a.gray.hex=function(e){var t=Math.round(e[0]/100*255)&255;var n=(t<<16)+(t<<8)+t;var r=n.toString(16).toUpperCase();return"000000".substring(r.length)+r};a.rgb.gray=function(e){var t=(e[0]+e[1]+e[2])/3;return[t/255*100]}},6327:function(e,t,n){"use strict";e.exports=function(e,t,r,i,o){var a=n(4730);var s=a.isArray;function toResolutionValue(e){switch(e){case-2:return[];case-3:return{};case-6:return new Map}}function PromiseArray(n){var r=this._promise=new e(t);if(n instanceof e){r._propagateFrom(n,3)}r._setOnCancel(this);this._values=n;this._length=0;this._totalResolved=0;this._init(undefined,-2)}a.inherits(PromiseArray,o);PromiseArray.prototype.length=function(){return this._length};PromiseArray.prototype.promise=function(){return this._promise};PromiseArray.prototype._init=function init(t,n){var o=r(this._values,this._promise);if(o instanceof e){o=o._target();var s=o._bitField;this._values=o;if((s&50397184)===0){this._promise._setAsyncGuaranteed();return o._then(init,this._reject,undefined,this,n)}else if((s&33554432)!==0){o=o._value()}else if((s&16777216)!==0){return this._reject(o._reason())}else{return this._cancel()}}o=a.asArray(o);if(o===null){var c=i("expecting an array or an iterable object but got "+a.classString(o)).reason();this._promise._rejectCallback(c,false);return}if(o.length===0){if(n===-5){this._resolveEmptyArray()}else{this._resolve(toResolutionValue(n))}return}this._iterate(o)};PromiseArray.prototype._iterate=function(t){var n=this.getActualLength(t.length);this._length=n;this._values=this.shouldCopyValues()?new Array(n):this._values;var i=this._promise;var o=false;var a=null;for(var s=0;s<n;++s){var c=r(t[s],i);if(c instanceof e){c=c._target();a=c._bitField}else{a=null}if(o){if(a!==null){c.suppressUnhandledRejections()}}else if(a!==null){if((a&50397184)===0){c._proxy(this,s);this._values[s]=c}else if((a&33554432)!==0){o=this._promiseFulfilled(c._value(),s)}else if((a&16777216)!==0){o=this._promiseRejected(c._reason(),s)}else{o=this._promiseCancelled(s)}}else{o=this._promiseFulfilled(c,s)}}if(!o)i._setAsyncGuaranteed()};PromiseArray.prototype._isResolved=function(){return this._values===null};PromiseArray.prototype._resolve=function(e){this._values=null;this._promise._fulfill(e)};PromiseArray.prototype._cancel=function(){if(this._isResolved()||!this._promise._isCancellable())return;this._values=null;this._promise._cancel()};PromiseArray.prototype._reject=function(e){this._values=null;this._promise._rejectCallback(e,false)};PromiseArray.prototype._promiseFulfilled=function(e,t){this._values[t]=e;var n=++this._totalResolved;if(n>=this._length){this._resolve(this._values);return true}return false};PromiseArray.prototype._promiseCancelled=function(){this._cancel();return true};PromiseArray.prototype._promiseRejected=function(e){this._totalResolved++;this._reject(e);return true};PromiseArray.prototype._resultCancelled=function(){if(this._isResolved())return;var t=this._values;this._cancel();if(t instanceof e){t.cancel()}else{for(var n=0;n<t.length;++n){if(t[n]instanceof e){t[n].cancel()}}}};PromiseArray.prototype.shouldCopyValues=function(){return true};PromiseArray.prototype.getActualLength=function(e){return e};return PromiseArray}},6328:function(e,t,n){"use strict";var r=n(9799);e.exports=function Position(e,t){this.start=e;this.end={line:t.line,column:t.column};r(this,"content",t.orig);r(this,"source",t.options.source)}},6336:function(e,t,n){"use strict";const r=n(1789);const i=n(7886);let o={cardTypes:{VISA:{cardType:"VISA",cardPattern:/^4[0-9]{12}(?:[0-9]{3})?$/,partialPattern:/^4/,cvvPattern:/^\d{3}$/},MASTERCARD:{cardType:"MASTERCARD",cardPattern:/^(?:5[1-5][0-9]{2}|222[1-9]|22[3-9][0-9]|2[3-6][0-9]{2}|27[0-1][0-9]|2720)[0-9]{12}$/,partialPattern:/^(?:5[1-5]|222[1-9]|22[3-9][0-9]|2[3-6][0-9]{2}|27[0-1][0-9]|2720)/,cvvPattern:/^\d{3}$/},AMERICANEXPRESS:{cardType:"AMERICANEXPRESS",cardPattern:/^3[47][0-9]{13}$/,partialPattern:/^3[47]/,cvvPattern:/^\d{4}$/},DINERSCLUB:{cardType:"DINERSCLUB",cardPattern:/^3(?:0[0-5]|[68][0-9])[0-9]{11}$/,partialPattern:/^3(0[0-5]|[68])/,cvvPattern:/^\d{3}$/},DISCOVER:{cardType:"DISCOVER",cardPattern:/^6(?:011|5[0-9]{2})[0-9]{12}$/,partialPattern:/^6(011|5[0-9])/,cvvPattern:/^\d{3}$/},JCB:{cardType:"JCB",cardPattern:/^(?:2131|1800|35\d{3})\d{11}$/,partialPattern:/^(2131|1800|35)/,cvvPattern:/^\d{3}$/}},expiryMonths:{min:1,max:12},expiryYears:{min:1900,max:2200},schema:{cardType:"cardType",number:"number",expiryMonth:"expiryMonth",expiryYear:"expiryYear",cvv:"cvv"}};_setupCardTypeAliases("VISA",["vc","VC","visa"]);_setupCardTypeAliases("MASTERCARD",["mc","MC","mastercard","master card","MASTER CARD"]);_setupCardTypeAliases("AMERICANEXPRESS",["ae","AE","ax","AX","amex","AMEX","american express","AMERICAN EXPRESS"]);_setupCardTypeAliases("DINERSCLUB",["dinersclub"]);_setupCardTypeAliases("DISCOVER",["dc","DC","discover"]);_setupCardTypeAliases("JCB",["jcb"]);const a=i({},o);function validate(e,t){e=e||{};const n=i({},o,t);const a=n.schema;const s=r(e,a.cardType);const c=sanitizeNumberString(r(e,a.number));const u=r(e,a.expiryMonth);const l=r(e,a.expiryYear);const f=sanitizeNumberString(r(e,a.cvv));const p=n.customValidation;let d;if(typeof p==="function"){d=p(e,n)}return{card:e,validCardNumber:isValidCardNumber(c,s,n.cardTypes),validExpiryMonth:isValidExpiryMonth(u,n.expiryMonths),validExpiryYear:isValidExpiryYear(l,n.expiryYears),validCvv:doesCvvMatchType(f,s,n.cardTypes),isExpired:isExpired(u,l),customValidation:d}}function determineCardType(e,t){const n=i({},o,t);const r=n.cardTypes;const a=Object.keys(r);e=sanitizeNumberString(e);for(let t=0;t<a.length;++t){const i=a[t];const o=r[i];if(o.cardPattern.test(e)||n.allowPartial===true&&o.partialPattern.test(e)){return o.cardType}}return null}function isValidCardNumber(e,t,n){return doesNumberMatchType(e,t,n)&&luhn(e)}function isValidExpiryMonth(e,t){const n=i({},o.expiryMonths,t);if(typeof e==="string"&&e.length>2){return false}e=~~e;return e>=n.min&&e<=n.max}function isValidExpiryYear(e,t){const n=i({},o.expiryYears,t);if(typeof e==="string"&&e.length!==4){return false}e=~~e;return e>=n.min&&e<=n.max}function doesNumberMatchType(e,t,n){const r=i({},o.cardTypes,n);const a=r[t];if(!a){return false}return a.cardPattern.test(e)}function doesCvvMatchType(e,t,n){const r=i({},o.cardTypes,n);const a=r[t];if(!a){return false}return a.cvvPattern.test(e)}function isExpired(e,t){e=~~e;t=~~t;const n=new Date(t,e);return Date.now()>=n}function luhn(e){if(/[^\d]+/.test(e)||typeof e!=="string"||!e){return false}let t=0;let n=false;let r;for(let i=e.length-1;i>=0;--i){r=~~e.charAt(i);if(n){if((r*=2)>9){r-=9}}t+=r;n=!n}return t%10===0}function sanitizeNumberString(e){if(typeof e!=="string"){return""}return e.replace(/[^\d]/g,"")}function defaults(e,t){e=e||{};if(t===true){o=i({},e)}else{o=i({},o,e)}return o}function reset(){o=i({},a);return o}function _setupCardTypeAliases(e,t){for(let n=0;n<t.length;++n){o.cardTypes[t[n]]=o.cardTypes[e]}}e.exports={validate:validate,determineCardType:determineCardType,isValidCardNumber:isValidCardNumber,isValidExpiryMonth:isValidExpiryMonth,isValidExpiryYear:isValidExpiryYear,doesNumberMatchType:doesNumberMatchType,doesCvvMatchType:doesCvvMatchType,isExpired:isExpired,luhn:luhn,sanitizeNumberString:sanitizeNumberString,defaults:defaults,reset:reset}},6338:function(e,t,n){var r=n(3321),i=n(649),o=n(9335).Buffer;function BufferList(e){if(!(this instanceof BufferList))return new BufferList(e);this._bufs=[];this.length=0;if(typeof e=="function"){this._callback=e;var t=function piper(e){if(this._callback){this._callback(e);this._callback=null}}.bind(this);this.on("pipe",function onPipe(e){e.on("error",t)});this.on("unpipe",function onUnpipe(e){e.removeListener("error",t)})}else{this.append(e)}r.call(this)}i.inherits(BufferList,r);BufferList.prototype._offset=function _offset(e){var t=0,n=0,r;if(e===0)return[0,0];for(;n<this._bufs.length;n++){r=t+this._bufs[n].length;if(e<r||n==this._bufs.length-1)return[n,e-t];t=r}};BufferList.prototype.append=function append(e){var t=0;if(o.isBuffer(e)){this._appendBuffer(e)}else if(Array.isArray(e)){for(;t<e.length;t++)this.append(e[t])}else if(e instanceof BufferList){for(;t<e._bufs.length;t++)this.append(e._bufs[t])}else if(e!=null){if(typeof e=="number")e=e.toString();this._appendBuffer(o.from(e))}return this};BufferList.prototype._appendBuffer=function appendBuffer(e){this._bufs.push(e);this.length+=e.length};BufferList.prototype._write=function _write(e,t,n){this._appendBuffer(e);if(typeof n=="function")n()};BufferList.prototype._read=function _read(e){if(!this.length)return this.push(null);e=Math.min(e,this.length);this.push(this.slice(0,e));this.consume(e)};BufferList.prototype.end=function end(e){r.prototype.end.call(this,e);if(this._callback){this._callback(null,this.slice());this._callback=null}};BufferList.prototype.get=function get(e){return this.slice(e,e+1)[0]};BufferList.prototype.slice=function slice(e,t){if(typeof e=="number"&&e<0)e+=this.length;if(typeof t=="number"&&t<0)t+=this.length;return this.copy(null,0,e,t)};BufferList.prototype.copy=function copy(e,t,n,r){if(typeof n!="number"||n<0)n=0;if(typeof r!="number"||r>this.length)r=this.length;if(n>=this.length)return e||o.alloc(0);if(r<=0)return e||o.alloc(0);var copy=!!e,i=this._offset(n),a=r-n,s=a,c=copy&&t||0,u=i[1],l,f;if(n===0&&r==this.length){if(!copy){return this._bufs.length===1?this._bufs[0]:o.concat(this._bufs,this.length)}for(f=0;f<this._bufs.length;f++){this._bufs[f].copy(e,c);c+=this._bufs[f].length}return e}if(s<=this._bufs[i[0]].length-u){return copy?this._bufs[i[0]].copy(e,t,u,u+s):this._bufs[i[0]].slice(u,u+s)}if(!copy)e=o.allocUnsafe(a);for(f=i[0];f<this._bufs.length;f++){l=this._bufs[f].length-u;if(s>l){this._bufs[f].copy(e,c,u)}else{this._bufs[f].copy(e,c,u,u+s);break}c+=l;s-=l;if(u)u=0}return e};BufferList.prototype.shallowSlice=function shallowSlice(e,t){e=e||0;t=t||this.length;if(e<0)e+=this.length;if(t<0)t+=this.length;var n=this._offset(e),r=this._offset(t),i=this._bufs.slice(n[0],r[0]+1);if(r[1]==0)i.pop();else i[i.length-1]=i[i.length-1].slice(0,r[1]);if(n[1]!=0)i[0]=i[0].slice(n[1]);return new BufferList(i)};BufferList.prototype.toString=function toString(e,t,n){return this.slice(t,n).toString(e)};BufferList.prototype.consume=function consume(e){while(this._bufs.length){if(e>=this._bufs[0].length){e-=this._bufs[0].length;this.length-=this._bufs[0].length;this._bufs.shift()}else{this._bufs[0]=this._bufs[0].slice(e);this.length-=e;break}}return this};BufferList.prototype.duplicate=function duplicate(){var e=0,t=new BufferList;for(;e<this._bufs.length;e++)t.append(this._bufs[e]);return t};BufferList.prototype.destroy=function destroy(){this._bufs.length=0;this.length=0;this.push(null)};(function(){var e={readDoubleBE:8,readDoubleLE:8,readFloatBE:4,readFloatLE:4,readInt32BE:4,readInt32LE:4,readUInt32BE:4,readUInt32LE:4,readInt16BE:2,readInt16LE:2,readUInt16BE:2,readUInt16LE:2,readInt8:1,readUInt8:1};for(var t in e){(function(t){BufferList.prototype[t]=function(n){return this.slice(n,n+e[t])[t](0)}})(t)}})();e.exports=BufferList},6340:function(e){e.exports=function(e,t,n,r,i){if(!isObject(e)||!t){return e}t=toString(t);if(n)t+="."+toString(n);if(r)t+="."+toString(r);if(i)t+="."+toString(i);if(t in e){return e[t]}var o=t.split(".");var a=o.length;var s=-1;while(e&&++s<a){var c=o[s];while(c[c.length-1]==="\\"){c=c.slice(0,-1)+"."+o[++s]}e=e[c]}return e};function isObject(e){return e!==null&&(typeof e==="object"||typeof e==="function")}function toString(e){if(!e)return"";if(Array.isArray(e)){return e.join(".")}return e}},6346:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(4316);const a=i(n(3266));function shouldDeployDir(e,t){return r(this,void 0,void 0,function*(){let n=true;if(e===o.homedir()){if(!(yield a.default("You are deploying your home directory. Do you want to continue?"))){t.log("Aborted");n=false}}return n})}t.default=shouldDeployDir},6354:function(e,t,n){var r=n(4108);e.exports=r(once);e.exports.strict=r(onceStrict);once.proto=once(function(){Object.defineProperty(Function.prototype,"once",{value:function(){return once(this)},configurable:true});Object.defineProperty(Function.prototype,"onceStrict",{value:function(){return onceStrict(this)},configurable:true})});function once(e){var t=function(){if(t.called)return t.value;t.called=true;return t.value=e.apply(this,arguments)};t.called=false;return t}function onceStrict(e){var t=function(){if(t.called)throw new Error(t.onceError);t.called=true;return t.value=e.apply(this,arguments)};var n=e.name||"Function wrapped with `once`";t.onceError=n+" shouldn't be called more than once";t.called=false;return t}},6355:function(e,t,n){"use strict";var r=n(4393);var i=n(3046);var o=n(6518);var a=o.paramsHaveRequestBody;function initParams(e,t,n){if(typeof t==="function"){n=t}var i={};if(typeof t==="object"){r(i,t,{uri:e})}else if(typeof e==="string"){r(i,{uri:e})}else{r(i,e)}i.callback=n||i.callback;return i}function request(e,t,n){if(typeof e==="undefined"){throw new Error("undefined is not a valid uri or options object.")}var r=initParams(e,t,n);if(r.method==="HEAD"&&a(r)){throw new Error("HTTP HEAD requests MUST NOT include a request body.")}return new request.Request(r)}function verbFunc(e){var t=e.toUpperCase();return function(e,n,r){var i=initParams(e,n,r);i.method=t;return request(i,i.callback)}}request.get=verbFunc("get");request.head=verbFunc("head");request.options=verbFunc("options");request.post=verbFunc("post");request.put=verbFunc("put");request.patch=verbFunc("patch");request.del=verbFunc("delete");request["delete"]=verbFunc("delete");request.jar=function(e){return i.jar(e)};request.cookie=function(e){return i.parse(e)};function wrapRequestMethod(e,t,n,i){return function(o,a,s){var c=initParams(o,a,s);var u={};r(true,u,t,c);u.pool=c.pool||t.pool;if(i){u.method=i.toUpperCase()}if(typeof n==="function"){e=n}return e(u,u.callback)}}request.defaults=function(e,t){var n=this;e=e||{};if(typeof e==="function"){t=e;e={}}var r=wrapRequestMethod(n,e,t);var i=["get","head","post","put","patch","del","delete"];i.forEach(function(i){r[i]=wrapRequestMethod(n[i],e,t,i)});r.cookie=wrapRequestMethod(n.cookie,e,t);r.jar=n.jar;r.defaults=n.defaults;return r};request.forever=function(e,t){var n={};if(t){r(n,t)}if(e){n.agentOptions=e}n.forever=true;return request.defaults(n)};e.exports=request;request.Request=n(9758);request.initParams=initParams;Object.defineProperty(request,"debug",{enumerable:true,get:function(){return request.Request.debug},set:function(e){request.Request.debug=e}})},6365:function(e,t,n){var r=n(9175);var i=Object.prototype.hasOwnProperty;var o=typeof Map!=="undefined";function ArraySet(){this._array=[];this._set=o?new Map:Object.create(null)}ArraySet.fromArray=function ArraySet_fromArray(e,t){var n=new ArraySet;for(var r=0,i=e.length;r<i;r++){n.add(e[r],t)}return n};ArraySet.prototype.size=function ArraySet_size(){return o?this._set.size:Object.getOwnPropertyNames(this._set).length};ArraySet.prototype.add=function ArraySet_add(e,t){var n=o?e:r.toSetString(e);var a=o?this.has(e):i.call(this._set,n);var s=this._array.length;if(!a||t){this._array.push(e)}if(!a){if(o){this._set.set(e,s)}else{this._set[n]=s}}};ArraySet.prototype.has=function ArraySet_has(e){if(o){return this._set.has(e)}else{var t=r.toSetString(e);return i.call(this._set,t)}};ArraySet.prototype.indexOf=function ArraySet_indexOf(e){if(o){var t=this._set.get(e);if(t>=0){return t}}else{var n=r.toSetString(e);if(i.call(this._set,n)){return this._set[n]}}throw new Error('"'+e+'" is not in the set.')};ArraySet.prototype.at=function ArraySet_at(e){if(e>=0&&e<this._array.length){return this._array[e]}throw new Error("No element indexed by "+e)};ArraySet.prototype.toArray=function ArraySet_toArray(){return this._array.slice()};t.ArraySet=ArraySet},6368:function(e,t,n){"use strict";const r=n(5897);const i=n(1355);const o=n(3686)();function resolveCommandAttempt(e,t){const n=process.cwd();const a=e.options.cwd!=null;if(a){try{process.chdir(e.options.cwd)}catch(e){}}let s;try{s=i.sync(e.command,{path:(e.options.env||process.env)[o],pathExt:t?r.delimiter:undefined})}catch(e){}finally{process.chdir(n)}if(s){s=r.resolve(a?e.options.cwd:"",s)}return s}function resolveCommand(e){return resolveCommandAttempt(e)||resolveCommandAttempt(e,true)}e.exports=resolveCommand},6369:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(6262);const a=i(n(1737));const s=i(n(6127));const c=n(2673);const u=s.default("@zeit/fun:install-python");function generatePythonTarballUrl(e,t=process.platform,n=process.arch){return`https://python-binaries.zeit.sh/python-${e}-${t}-${n}.tar.gz`}t.generatePythonTarballUrl=generatePythonTarballUrl;function installPython(e,t,n=process.platform,i=process.arch){return r(this,void 0,void 0,function*(){const r=generatePythonTarballUrl(t,n,i);u("Downloading Python %s tarball %o",t,r);const s=yield a.default(r);if(!s.ok){throw new Error(`HTTP request failed: ${s.status}`)}return new Promise((n,r)=>{u("Extracting Python %s tarball to %o",t,e);s.body.pipe(c.createGunzip()).pipe(o.extract({strip:1,C:e})).on("error",r).on("end",n)})})}t.installPython=installPython},6375:function(e,t,n){"use strict";var r=n(8774);e.exports=function isExtendable(e){return r(e)||typeof e==="function"||Array.isArray(e)}},6385:function(e,t,n){"use strict";const{PassThrough:r}=n(6886);e.exports=(e=>{e=Object.assign({},e);const{array:t}=e;let{encoding:n}=e;const i=n==="buffer";let o=false;if(t){o=!(n||i)}else{n=n||"utf8"}if(i){n=null}let a=0;const s=[];const c=new r({objectMode:o});if(n){c.setEncoding(n)}c.on("data",e=>{s.push(e);if(o){a=s.length}else{a+=e.length}});c.getBufferedValue=(()=>{if(t){return s}return i?Buffer.concat(s,a):s.join("")});c.getBufferedLength=(()=>a);return c})},6386:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function getScaleForDC(e,t){if(t.type!=="STATIC"&&t.scale&&t.scale[e]){return{min:t.scale[e].min,max:t.scale[e].max}}return{min:null,max:null}}t.default=getScaleForDC},6393:function(e){e.exports=function(e,t){if(typeof e!=="string"){throw new TypeError("expected path to be a string")}if(e==="\\"||e==="/")return"/";var n=e.length;if(n<=1)return e;var r="";if(n>4&&e[3]==="\\"){var i=e[2];if((i==="?"||i===".")&&e.slice(0,2)==="\\\\"){e=e.slice(2);r="//"}}var o=e.split(/[\/\\]+/);if(t!==false&&o[o.length-1]===""){o.pop()}return r+o.join("/")}},6397:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=n(4316);const o=r(n(662));const a=r(n(5897));const s=r(n(816));const c=r(n(2297));const u=a.default.join(i.homedir(),".now");const l=e=>{try{return o.default.lstatSync(e).isDirectory()}catch(e){return false}};const f=()=>{const e=s.default(process.argv.slice(2),{string:["global-config"],alias:{"global-config":"Q"}});const t=e["global-config"];const n=c.default("now").dataDirs();const r=[u,...n];return t&&a.default.resolve(t)||r.find(e=>l(e))||n[0]};t.default=f},6399:function(e,t,n){e.exports=Certificate;var r=n(9261);var i=n(3062).Buffer;var o=n(6977);var a=n(2984);var s=n(3941);var c=n(5511);var u=n(7825);var l=n(649);var f=n(5271);var p=n(120);var d=n(1946);var h=n(8161);var m={};m["openssh"]=n(6663);m["x509"]=n(4234);m["pem"]=n(1668);var v=u.CertificateParseError;var g=u.InvalidAlgorithmError;function Certificate(e){r.object(e,"options");r.arrayOfObject(e.subjects,"options.subjects");f.assertCompatible(e.subjects[0],h,[1,0],"options.subjects");f.assertCompatible(e.subjectKey,p,[1,0],"options.subjectKey");f.assertCompatible(e.issuer,h,[1,0],"options.issuer");if(e.issuerKey!==undefined){f.assertCompatible(e.issuerKey,p,[1,0],"options.issuerKey")}r.object(e.signatures,"options.signatures");r.buffer(e.serial,"options.serial");r.date(e.validFrom,"options.validFrom");r.date(e.validUntil,"optons.validUntil");r.optionalArrayOfString(e.purposes,"options.purposes");this._hashCache={};this.subjects=e.subjects;this.issuer=e.issuer;this.subjectKey=e.subjectKey;this.issuerKey=e.issuerKey;this.signatures=e.signatures;this.serial=e.serial;this.validFrom=e.validFrom;this.validUntil=e.validUntil;this.purposes=e.purposes}Certificate.formats=m;Certificate.prototype.toBuffer=function(e,t){if(e===undefined)e="x509";r.string(e,"format");r.object(m[e],"formats[format]");r.optionalObject(t,"options");return m[e].write(this,t)};Certificate.prototype.toString=function(e,t){if(e===undefined)e="pem";return this.toBuffer(e,t).toString()};Certificate.prototype.fingerprint=function(e){if(e===undefined)e="sha256";r.string(e,"algorithm");var t={type:"certificate",hash:this.hash(e),algorithm:e};return new s(t)};Certificate.prototype.hash=function(e){r.string(e,"algorithm");e=e.toLowerCase();if(o.hashAlgs[e]===undefined)throw new g(e);if(this._hashCache[e])return this._hashCache[e];var t=a.createHash(e).update(this.toBuffer("x509")).digest();this._hashCache[e]=t;return t};Certificate.prototype.isExpired=function(e){if(e===undefined)e=new Date;return!(e.getTime()>=this.validFrom.getTime()&&e.getTime()<this.validUntil.getTime())};Certificate.prototype.isSignedBy=function(e){f.assertCompatible(e,Certificate,[1,0],"issuer");if(!this.issuer.equals(e.subjects[0]))return false;if(this.issuer.purposes&&this.issuer.purposes.length>0&&this.issuer.purposes.indexOf("ca")===-1){return false}return this.isSignedByKey(e.subjectKey)};Certificate.prototype.getExtension=function(e){r.string(e,"keyOrOid");var t=this.getExtensions().filter(function(t){if(t.format==="x509")return t.oid===e;if(t.format==="openssh")return t.name===e;return false})[0];return t};Certificate.prototype.getExtensions=function(){var e=[];var t=this.signatures.x509;if(t&&t.extras&&t.extras.exts){t.extras.exts.forEach(function(t){t.format="x509";e.push(t)})}var n=this.signatures.openssh;if(n&&n.exts){n.exts.forEach(function(t){t.format="openssh";e.push(t)})}return e};Certificate.prototype.isSignedByKey=function(e){f.assertCompatible(e,p,[1,2],"issuerKey");if(this.issuerKey!==undefined){return this.issuerKey.fingerprint("sha512").matches(e)}var t=Object.keys(this.signatures)[0];var n=m[t].verify(this,e);if(n)this.issuerKey=e;return n};Certificate.prototype.signWith=function(e){f.assertCompatible(e,d,[1,2],"key");var t=Object.keys(m);var n=false;for(var r=0;r<t.length;++r){if(t[r]!=="pem"){var i=m[t[r]].sign(this,e);if(i===true)n=true}}if(!n){throw new Error("Failed to sign the certificate for any "+"available certificate formats")}};Certificate.createSelfSigned=function(e,t,n){var o;if(Array.isArray(e))o=e;else o=[e];r.arrayOfObject(o);o.forEach(function(e){f.assertCompatible(e,h,[1,0],"subject")});f.assertCompatible(t,d,[1,2],"private key");r.optionalObject(n,"options");if(n===undefined)n={};r.optionalObject(n.validFrom,"options.validFrom");r.optionalObject(n.validUntil,"options.validUntil");var a=n.validFrom;var s=n.validUntil;if(a===undefined)a=new Date;if(s===undefined){r.optionalNumber(n.lifetime,"options.lifetime");var c=n.lifetime;if(c===undefined)c=10*365*24*3600;s=new Date;s.setTime(s.getTime()+c*1e3)}r.optionalBuffer(n.serial,"options.serial");var u=n.serial;if(u===undefined)u=i.from("0000000000000001","hex");var l=n.purposes;if(l===undefined)l=[];if(l.indexOf("signature")===-1)l.push("signature");if(l.indexOf("ca")===-1)l.push("ca");if(l.indexOf("crl")===-1)l.push("crl");if(l.length<=3){var p=o.filter(function(e){return e.type==="host"});var m=o.filter(function(e){return e.type==="user"});if(p.length>0){if(l.indexOf("serverAuth")===-1)l.push("serverAuth")}if(m.length>0){if(l.indexOf("clientAuth")===-1)l.push("clientAuth")}if(m.length>0||p.length>0){if(l.indexOf("keyAgreement")===-1)l.push("keyAgreement");if(t.type==="rsa"&&l.indexOf("encryption")===-1)l.push("encryption")}}var v=new Certificate({subjects:o,issuer:o[0],subjectKey:t.toPublic(),issuerKey:t.toPublic(),signatures:{},serial:u,validFrom:a,validUntil:s,purposes:l});v.signWith(t);return v};Certificate.create=function(e,t,n,o,a){var s;if(Array.isArray(e))s=e;else s=[e];r.arrayOfObject(s);s.forEach(function(e){f.assertCompatible(e,h,[1,0],"subject")});f.assertCompatible(t,p,[1,0],"key");if(d.isPrivateKey(t))t=t.toPublic();f.assertCompatible(n,h,[1,0],"issuer");f.assertCompatible(o,d,[1,2],"issuer key");r.optionalObject(a,"options");if(a===undefined)a={};r.optionalObject(a.validFrom,"options.validFrom");r.optionalObject(a.validUntil,"options.validUntil");var c=a.validFrom;var u=a.validUntil;if(c===undefined)c=new Date;if(u===undefined){r.optionalNumber(a.lifetime,"options.lifetime");var l=a.lifetime;if(l===undefined)l=10*365*24*3600;u=new Date;u.setTime(u.getTime()+l*1e3)}r.optionalBuffer(a.serial,"options.serial");var m=a.serial;if(m===undefined)m=i.from("0000000000000001","hex");var v=a.purposes;if(v===undefined)v=[];if(v.indexOf("signature")===-1)v.push("signature");if(a.ca===true){if(v.indexOf("ca")===-1)v.push("ca");if(v.indexOf("crl")===-1)v.push("crl")}var g=s.filter(function(e){return e.type==="host"});var y=s.filter(function(e){return e.type==="user"});if(g.length>0){if(v.indexOf("serverAuth")===-1)v.push("serverAuth")}if(y.length>0){if(v.indexOf("clientAuth")===-1)v.push("clientAuth")}if(y.length>0||g.length>0){if(v.indexOf("keyAgreement")===-1)v.push("keyAgreement");if(t.type==="rsa"&&v.indexOf("encryption")===-1)v.push("encryption")}var b=new Certificate({subjects:s,issuer:n,subjectKey:t,issuerKey:o.toPublic(),signatures:{},serial:m,validFrom:c,validUntil:u,purposes:v});b.signWith(o);return b};Certificate.parse=function(e,t,n){if(typeof e!=="string")r.buffer(e,"data");if(t===undefined)t="auto";r.string(t,"format");if(typeof n==="string")n={filename:n};r.optionalObject(n,"options");if(n===undefined)n={};r.optionalString(n.filename,"options.filename");if(n.filename===undefined)n.filename="(unnamed)";r.object(m[t],"formats[format]");try{var i=m[t].read(e,n);return i}catch(e){throw new v(n.filename,t,e)}};Certificate.isCertificate=function(e,t){return f.isCompatible(e,Certificate,t)};Certificate.prototype._sshpkApiVersion=[1,1];Certificate._oldVersionDetect=function(e){return[1,0]}},6401:function(e,t,n){"use strict";var r=n(9023);var i=n(1326);var o=n(8878);e.exports={formats:o,parse:i,stringify:r}},6409:function(e,t,n){"use strict";var r=n(1964);e.exports=function(e,t){if(typeof e!=="string"||typeof t!=="string"){throw new TypeError("Expected a string")}return e.replace(new RegExp("(?:"+r(t)+"){2,}","g"),t)}},6414:function(e,t,n){"use strict";var r=n(9891);e.exports=function isExtendable(e){return r(e)||typeof e==="function"||Array.isArray(e)}},6419:function(e,t,n){"use strict";var r=n(9178).Buffer;var i=r.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 true;default:return false}};function _normalizeEncoding(e){if(!e)return"utf8";var t;while(true){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(t)return;e=(""+e).toLowerCase();t=true}}}function normalizeEncoding(e){var t=_normalizeEncoding(e);if(typeof t!=="string"&&(r.isEncoding===i||!i(e)))throw new Error("Unknown encoding: "+e);return t||e}t.StringDecoder=StringDecoder;function StringDecoder(e){this.encoding=normalizeEncoding(e);var t;switch(this.encoding){case"utf16le":this.text=utf16Text;this.end=utf16End;t=4;break;case"utf8":this.fillLast=utf8FillLast;t=4;break;case"base64":this.text=base64Text;this.end=base64End;t=3;break;default:this.write=simpleWrite;this.end=simpleEnd;return}this.lastNeed=0;this.lastTotal=0;this.lastChar=r.allocUnsafe(t)}StringDecoder.prototype.write=function(e){if(e.length===0)return"";var t;var n;if(this.lastNeed){t=this.fillLast(e);if(t===undefined)return"";n=this.lastNeed;this.lastNeed=0}else{n=0}if(n<e.length)return t?t+this.text(e,n):this.text(e,n);return t||""};StringDecoder.prototype.end=utf8End;StringDecoder.prototype.text=utf8Text;StringDecoder.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 utf8CheckByte(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 utf8CheckIncomplete(e,t,n){var r=t.length-1;if(r<n)return 0;var i=utf8CheckByte(t[r]);if(i>=0){if(i>0)e.lastNeed=i-1;return i}if(--r<n||i===-2)return 0;i=utf8CheckByte(t[r]);if(i>=0){if(i>0)e.lastNeed=i-2;return i}if(--r<n||i===-2)return 0;i=utf8CheckByte(t[r]);if(i>=0){if(i>0){if(i===2)i=0;else e.lastNeed=i-3}return i}return 0}function utf8CheckExtraBytes(e,t,n){if((t[0]&192)!==128){e.lastNeed=0;return"<22>"}if(e.lastNeed>1&&t.length>1){if((t[1]&192)!==128){e.lastNeed=1;return"<22>"}if(e.lastNeed>2&&t.length>2){if((t[2]&192)!==128){e.lastNeed=2;return"<22>"}}}}function utf8FillLast(e){var t=this.lastTotal-this.lastNeed;var n=utf8CheckExtraBytes(this,e,t);if(n!==undefined)return n;if(this.lastNeed<=e.length){e.copy(this.lastChar,t,0,this.lastNeed);return this.lastChar.toString(this.encoding,0,this.lastTotal)}e.copy(this.lastChar,t,0,e.length);this.lastNeed-=e.length}function utf8Text(e,t){var n=utf8CheckIncomplete(this,e,t);if(!this.lastNeed)return e.toString("utf8",t);this.lastTotal=n;var r=e.length-(n-this.lastNeed);e.copy(this.lastChar,0,r);return e.toString("utf8",t,r)}function utf8End(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed)return t+"<22>";return t}function utf16Text(e,t){if((e.length-t)%2===0){var n=e.toString("utf16le",t);if(n){var r=n.charCodeAt(n.length-1);if(r>=55296&&r<=56319){this.lastNeed=2;this.lastTotal=4;this.lastChar[0]=e[e.length-2];this.lastChar[1]=e[e.length-1];return n.slice(0,-1)}}return n}this.lastNeed=1;this.lastTotal=2;this.lastChar[0]=e[e.length-1];return e.toString("utf16le",t,e.length-1)}function utf16End(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed){var n=this.lastTotal-this.lastNeed;return t+this.lastChar.toString("utf16le",0,n)}return t}function base64Text(e,t){var n=(e.length-t)%3;if(n===0)return e.toString("base64",t);this.lastNeed=3-n;this.lastTotal=3;if(n===1){this.lastChar[0]=e[e.length-1]}else{this.lastChar[0]=e[e.length-2];this.lastChar[1]=e[e.length-1]}return e.toString("base64",t,e.length-n)}function base64End(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed)return t+this.lastChar.toString("base64",0,3-this.lastNeed);return t}function simpleWrite(e){return e.toString(this.encoding)}function simpleEnd(e){return e&&e.length?this.write(e):""}},6433:function(e,t,n){if(typeof process!=="undefined"&&process.type==="renderer"){e.exports=n(3061)}else{e.exports=n(8811)}},6434:function(e,t,n){var r=n(4774);var i=n(662);var o=n(5897);var a=n(3868);var s=n(7961);var c=n(5780);var u=function isFile(e,t){i.stat(e,function(e,n){if(!e){return t(null,n.isFile()||n.isFIFO())}if(e.code==="ENOENT"||e.code==="ENOTDIR")return t(null,false);return t(e)})};var l=function isDirectory(e,t){i.stat(e,function(e,n){if(!e){return t(null,n.isDirectory())}if(e.code==="ENOENT"||e.code==="ENOTDIR")return t(null,false);return t(e)})};var f=function maybeUnwrapSymlink(e,t,n){if(t&&t.preserveSymlinks===false){i.realpath(e,function(t,r){if(t&&t.code!=="ENOENT")n(t);else n(null,t?e:r)})}else{n(null,e)}};e.exports=function resolve(e,t,n){var p=n;var d=t;if(typeof t==="function"){p=d;d={}}if(typeof e!=="string"){var h=new TypeError("Path must be a string.");return process.nextTick(function(){p(h)})}d=c(e,d);var m=d.isFile||u;var v=d.isDirectory||l;var g=d.readFile||i.readFile;var y=d.extensions||[".js"];var b=d.basedir||o.dirname(a());var w=d.filename||b;d.paths=d.paths||[];var x=o.resolve(b);f(x,d,function(e,t){if(e)p(e);else init(t)});var k;function init(t){if(/^(?:\.\.?(?:\/|$)|\/|([A-Za-z]:)?[\/\\])/.test(e)){k=o.resolve(t,e);if(e===".."||e.slice(-1)==="/")k+="/";if(/\/$/.test(e)&&k===t){loadAsDirectory(k,d.package,onfile)}else loadAsFile(k,d.package,onfile)}else loadNodeModules(e,t,function(t,n,i){if(t)p(t);else if(r[e])return p(null,e);else if(n){return f(n,d,function(e,t){if(e){p(e)}else{p(null,t,i)}})}else{var o=new Error("Cannot find module '"+e+"' from '"+w+"'");o.code="MODULE_NOT_FOUND";p(o)}})}function onfile(t,n,r){if(t)p(t);else if(n)p(null,n,r);else loadAsDirectory(k,function(t,n,r){if(t)p(t);else if(n){f(n,d,function(e,t){if(e){p(e)}else{p(null,t,r)}})}else{var i=new Error("Cannot find module '"+e+"' from '"+w+"'");i.code="MODULE_NOT_FOUND";p(i)}})}function loadAsFile(e,t,n){var r=t;var i=n;if(typeof r==="function"){i=r;r=undefined}var a=[""].concat(y);load(a,e,r);function load(e,t,n){if(e.length===0)return i(null,undefined,n);var r=t+e[0];var a=n;if(a)onpkg(null,a);else loadpkg(o.dirname(r),onpkg);function onpkg(n,s,c){a=s;if(n)return i(n);if(c&&a&&d.pathFilter){var u=o.relative(c,r);var l=u.slice(0,u.length-e[0].length);var f=d.pathFilter(a,t,l);if(f)return load([""].concat(y.slice()),o.resolve(c,f),a)}m(r,onex)}function onex(n,o){if(n)return i(n);if(o)return i(null,r,a);load(e.slice(1),t,a)}}}function loadpkg(e,t){if(e===""||e==="/")return t(null);if(process.platform==="win32"&&/^\w:[\/\\]*$/.test(e)){return t(null)}if(/[\/\\]node_modules[\/\\]*$/.test(e))return t(null);var n=o.join(e,"package.json");m(n,function(r,i){if(!i)return loadpkg(o.dirname(e),t);g(n,function(r,i){if(r)t(r);try{var o=JSON.parse(i)}catch(e){}if(o&&d.packageFilter){o=d.packageFilter(o,n)}t(null,o,e)})})}function loadAsDirectory(e,t,n){var r=n;var i=t;if(typeof i==="function"){r=i;i=d.package}var a=o.join(e,"package.json");m(a,function(t,n){if(t)return r(t);if(!n)return loadAsFile(o.join(e,"index"),i,r);g(a,function(t,n){if(t)return r(t);try{var i=JSON.parse(n)}catch(e){}if(d.packageFilter){i=d.packageFilter(i,a)}if(i.main){if(typeof i.main!=="string"){var s=new TypeError("package “"+i.name+"” `main` must be a string");s.code="INVALID_PACKAGE_MAIN";return r(s)}if(i.main==="."||i.main==="./"){i.main="index"}loadAsFile(o.resolve(e,i.main),i,function(t,n,i){if(t)return r(t);if(n)return r(null,n,i);if(!i)return loadAsFile(o.join(e,"index"),i,r);var a=o.resolve(e,i.main);loadAsDirectory(a,i,function(t,n,i){if(t)return r(t);if(n)return r(null,n,i);loadAsFile(o.join(e,"index"),i,r)})});return}loadAsFile(o.join(e,"/index"),i,r)})})}function processDirs(t,n){if(n.length===0)return t(null,undefined);var r=n[0];v(r,isdir);function isdir(i,a){if(i)return t(i);if(!a)return processDirs(t,n.slice(1));var s=o.join(r,e);loadAsFile(s,d.package,onfile)}function onfile(n,i,a){if(n)return t(n);if(i)return t(null,i,a);loadAsDirectory(o.join(r,e),d.package,ondir)}function ondir(e,r,i){if(e)return t(e);if(r)return t(null,r,i);processDirs(t,n.slice(1))}}function loadNodeModules(e,t,n){processDirs(n,s(t,d,e))}}},6448:function(e,t,n){"use strict";e.exports=n(7409).extend({path:"plans",includeBasic:["create","list","retrieve","update","del"]})},6451:function(e){"use strict";e.exports=function(e){var t=false;var n=[];e.prototype._promiseCreated=function(){};e.prototype._pushContext=function(){};e.prototype._popContext=function(){return null};e._peekContext=e.prototype._peekContext=function(){};function Context(){this._trace=new Context.CapturedTrace(peekContext())}Context.prototype._pushContext=function(){if(this._trace!==undefined){this._trace._promiseCreated=null;n.push(this._trace)}};Context.prototype._popContext=function(){if(this._trace!==undefined){var e=n.pop();var t=e._promiseCreated;e._promiseCreated=null;return t}return null};function createContext(){if(t)return new Context}function peekContext(){var e=n.length-1;if(e>=0){return n[e]}return undefined}Context.CapturedTrace=null;Context.create=createContext;Context.deactivateLongStackTraces=function(){};Context.activateLongStackTraces=function(){var n=e.prototype._pushContext;var r=e.prototype._popContext;var i=e._peekContext;var o=e.prototype._peekContext;var a=e.prototype._promiseCreated;Context.deactivateLongStackTraces=function(){e.prototype._pushContext=n;e.prototype._popContext=r;e._peekContext=i;e.prototype._peekContext=o;e.prototype._promiseCreated=a;t=false};t=true;e.prototype._pushContext=Context.prototype._pushContext;e.prototype._popContext=Context.prototype._popContext;e._peekContext=e.prototype._peekContext=peekContext;e.prototype._promiseCreated=function(){var e=this._peekContext();if(e&&e._promiseCreated==null)e._promiseCreated=this}};return Context}},6456:function(e,t,n){var r=n(9952);var i=n(3534);e.exports=expandTop;var o="\0SLASH"+Math.random()+"\0";var a="\0OPEN"+Math.random()+"\0";var s="\0CLOSE"+Math.random()+"\0";var c="\0COMMA"+Math.random()+"\0";var u="\0PERIOD"+Math.random()+"\0";function numeric(e){return parseInt(e,10)==e?parseInt(e,10):e.charCodeAt(0)}function escapeBraces(e){return e.split("\\\\").join(o).split("\\{").join(a).split("\\}").join(s).split("\\,").join(c).split("\\.").join(u)}function unescapeBraces(e){return e.split(o).join("\\").split(a).join("{").split(s).join("}").split(c).join(",").split(u).join(".")}function parseCommaParts(e){if(!e)return[""];var t=[];var n=i("{","}",e);if(!n)return e.split(",");var r=n.pre;var o=n.body;var a=n.post;var s=r.split(",");s[s.length-1]+="{"+o+"}";var c=parseCommaParts(a);if(a.length){s[s.length-1]+=c.shift();s.push.apply(s,c)}t.push.apply(t,s);return t}function expandTop(e){if(!e)return[];if(e.substr(0,2)==="{}"){e="\\{\\}"+e.substr(2)}return expand(escapeBraces(e),true).map(unescapeBraces)}function identity(e){return e}function embrace(e){return"{"+e+"}"}function isPadded(e){return/^-?0\d/.test(e)}function lte(e,t){return e<=t}function gte(e,t){return e>=t}function expand(e,t){var n=[];var o=i("{","}",e);if(!o||/\$$/.test(o.pre))return[e];var a=/^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(o.body);var c=/^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(o.body);var u=a||c;var l=o.body.indexOf(",")>=0;if(!u&&!l){if(o.post.match(/,.*\}/)){e=o.pre+"{"+o.body+s+o.post;return expand(e)}return[e]}var f;if(u){f=o.body.split(/\.\./)}else{f=parseCommaParts(o.body);if(f.length===1){f=expand(f[0],false).map(embrace);if(f.length===1){var p=o.post.length?expand(o.post,false):[""];return p.map(function(e){return o.pre+f[0]+e})}}}var d=o.pre;var p=o.post.length?expand(o.post,false):[""];var h;if(u){var m=numeric(f[0]);var v=numeric(f[1]);var g=Math.max(f[0].length,f[1].length);var y=f.length==3?Math.abs(numeric(f[2])):1;var b=lte;var w=v<m;if(w){y*=-1;b=gte}var x=f.some(isPadded);h=[];for(var k=m;b(k,v);k+=y){var j;if(c){j=String.fromCharCode(k);if(j==="\\")j=""}else{j=String(k);if(x){var S=g-j.length;if(S>0){var E=new Array(S+1).join("0");if(k<0)j="-"+E+j.slice(1);else j=E+j}}}h.push(j)}}else{h=r(f,function(e){return expand(e,false)})}for(var _=0;_<h.length;_++){for(var C=0;C<p.length;C++){var A=d+h[_]+p[C];if(!t||u||A)n.push(A)}}return n}},6463:function(e,t,n){var r=n(647);var i=n(8434);var o=n(7948).ArraySet;var a=n(8045).MappingList;function SourceMapGenerator(e){if(!e){e={}}this._file=i.getArg(e,"file",null);this._sourceRoot=i.getArg(e,"sourceRoot",null);this._skipValidation=i.getArg(e,"skipValidation",false);this._sources=new o;this._names=new o;this._mappings=new a;this._sourcesContents=null}SourceMapGenerator.prototype._version=3;SourceMapGenerator.fromSourceMap=function SourceMapGenerator_fromSourceMap(e){var t=e.sourceRoot;var n=new SourceMapGenerator({file:e.file,sourceRoot:t});e.eachMapping(function(e){var r={generated:{line:e.generatedLine,column:e.generatedColumn}};if(e.source!=null){r.source=e.source;if(t!=null){r.source=i.relative(t,r.source)}r.original={line:e.originalLine,column:e.originalColumn};if(e.name!=null){r.name=e.name}}n.addMapping(r)});e.sources.forEach(function(r){var o=r;if(t!==null){o=i.relative(t,r)}if(!n._sources.has(o)){n._sources.add(o)}var a=e.sourceContentFor(r);if(a!=null){n.setSourceContent(r,a)}});return n};SourceMapGenerator.prototype.addMapping=function SourceMapGenerator_addMapping(e){var t=i.getArg(e,"generated");var n=i.getArg(e,"original",null);var r=i.getArg(e,"source",null);var o=i.getArg(e,"name",null);if(!this._skipValidation){this._validateMapping(t,n,r,o)}if(r!=null){r=String(r);if(!this._sources.has(r)){this._sources.add(r)}}if(o!=null){o=String(o);if(!this._names.has(o)){this._names.add(o)}}this._mappings.add({generatedLine:t.line,generatedColumn:t.column,originalLine:n!=null&&n.line,originalColumn:n!=null&&n.column,source:r,name:o})};SourceMapGenerator.prototype.setSourceContent=function SourceMapGenerator_setSourceContent(e,t){var n=e;if(this._sourceRoot!=null){n=i.relative(this._sourceRoot,n)}if(t!=null){if(!this._sourcesContents){this._sourcesContents=Object.create(null)}this._sourcesContents[i.toSetString(n)]=t}else if(this._sourcesContents){delete this._sourcesContents[i.toSetString(n)];if(Object.keys(this._sourcesContents).length===0){this._sourcesContents=null}}};SourceMapGenerator.prototype.applySourceMap=function SourceMapGenerator_applySourceMap(e,t,n){var r=t;if(t==null){if(e.file==null){throw new Error("SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, "+'or the source map\'s "file" property. Both were omitted.')}r=e.file}var a=this._sourceRoot;if(a!=null){r=i.relative(a,r)}var s=new o;var c=new o;this._mappings.unsortedForEach(function(t){if(t.source===r&&t.originalLine!=null){var o=e.originalPositionFor({line:t.originalLine,column:t.originalColumn});if(o.source!=null){t.source=o.source;if(n!=null){t.source=i.join(n,t.source)}if(a!=null){t.source=i.relative(a,t.source)}t.originalLine=o.line;t.originalColumn=o.column;if(o.name!=null){t.name=o.name}}}var u=t.source;if(u!=null&&!s.has(u)){s.add(u)}var l=t.name;if(l!=null&&!c.has(l)){c.add(l)}},this);this._sources=s;this._names=c;e.sources.forEach(function(t){var r=e.sourceContentFor(t);if(r!=null){if(n!=null){t=i.join(n,t)}if(a!=null){t=i.relative(a,t)}this.setSourceContent(t,r)}},this)};SourceMapGenerator.prototype._validateMapping=function SourceMapGenerator_validateMapping(e,t,n,r){if(t&&typeof t.line!=="number"&&typeof t.column!=="number"){throw new Error("original.line and original.column are not numbers -- you probably meant to omit "+"the original mapping entirely and only map the generated position. If so, pass "+"null for the original mapping instead of an object with empty or null values.")}if(e&&"line"in e&&"column"in e&&e.line>0&&e.column>=0&&!t&&!n&&!r){return}else if(e&&"line"in e&&"column"in e&&t&&"line"in t&&"column"in t&&e.line>0&&e.column>=0&&t.line>0&&t.column>=0&&n){return}else{throw new Error("Invalid mapping: "+JSON.stringify({generated:e,source:n,original:t,name:r}))}};SourceMapGenerator.prototype._serializeMappings=function SourceMapGenerator_serializeMappings(){var e=0;var t=1;var n=0;var o=0;var a=0;var s=0;var c="";var u;var l;var f;var p;var d=this._mappings.toArray();for(var h=0,m=d.length;h<m;h++){l=d[h];u="";if(l.generatedLine!==t){e=0;while(l.generatedLine!==t){u+=";";t++}}else{if(h>0){if(!i.compareByGeneratedPositionsInflated(l,d[h-1])){continue}u+=","}}u+=r.encode(l.generatedColumn-e);e=l.generatedColumn;if(l.source!=null){p=this._sources.indexOf(l.source);u+=r.encode(p-s);s=p;u+=r.encode(l.originalLine-1-o);o=l.originalLine-1;u+=r.encode(l.originalColumn-n);n=l.originalColumn;if(l.name!=null){f=this._names.indexOf(l.name);u+=r.encode(f-a);a=f}}c+=u}return c};SourceMapGenerator.prototype._generateSourcesContent=function SourceMapGenerator_generateSourcesContent(e,t){return e.map(function(e){if(!this._sourcesContents){return null}if(t!=null){e=i.relative(t,e)}var n=i.toSetString(e);return Object.prototype.hasOwnProperty.call(this._sourcesContents,n)?this._sourcesContents[n]:null},this)};SourceMapGenerator.prototype.toJSON=function SourceMapGenerator_toJSON(){var e={version:this._version,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};if(this._file!=null){e.file=this._file}if(this._sourceRoot!=null){e.sourceRoot=this._sourceRoot}if(this._sourcesContents){e.sourcesContent=this._generateSourcesContent(e.sources,e.sourceRoot)}return e};SourceMapGenerator.prototype.toString=function SourceMapGenerator_toString(){return JSON.stringify(this.toJSON())};t.SourceMapGenerator=SourceMapGenerator},6479:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(6725));const s=n(6097);const c=o(n(8715));const u=i(n(8520));const l=i(n(1828));const f=i(n(1891));const p=i(n(5181));const d=i(n(9698));const h=i(n(8233));function setupDomain(e,t,n,i){return r(this,void 0,void 0,function*(){const r=d.default(n);const o=a.default.parse(r);if(o.error){return new c.InvalidDomain(n,o.error.message)}if(!o.domain){return new c.InvalidDomain(n)}const{domain:m}=o;e.debug(`Trying to fetch domain ${m} by name`);const v=yield l.default(t,i,m);if(v instanceof c.DomainPermissionDenied){return v}if(v){e.debug(`Domain ${m} found for the given context`);if(!v.verified||!v.nsVerifiedAt&&h.default(n)){e.debug(`Domain ${m} is not verified, trying to perform a verification`);const r=yield p.default(t,m,i);if(r instanceof c.DomainVerificationFailed){e.debug(`Domain ${m} verification failed`);return r}if(!r.nsVerifiedAt&&h.default(n)){return new c.DomainNsNotVerifiedForWildcard({domain:m,nsVerification:{intendedNameservers:r.intendedNameservers,nameservers:r.nameservers}})}e.debug(`Domain ${m} successfuly verified`);return l.default(t,i,m)}e.debug(`Domain ${m} is already verified`);return v}e.debug(`The domain ${m} was not found, trying to purchase it`);const g=yield f.default(e,t,r,i);if(g instanceof s.NowError){return g}if(!g){e.debug(`Domain ${m} is not available to be purchased. Trying to add it`);const n=yield u.default(t,m,i);if(n instanceof s.NowError){return n}if(!n.verified){const n=yield p.default(t,m,i);if(n instanceof c.DomainVerificationFailed){e.debug(`Domain ${m} was added but it couldn't be verified`);return n}e.debug(`Domain ${m} successfuly added and manually verified`);return n}e.debug(`Domain ${m} successfuly added and automatically verified`);return n}e.debug(`The domain ${m} was successfuly purchased`);const y=yield l.default(t,i,m);if(!y.verified){const n=yield p.default(t,m,i);if(n instanceof c.DomainVerificationFailed){e.debug(`Domain ${m} was purchased but verification is still pending`);return new c.DomainVerificationFailed({domain:n.meta.domain,nsVerification:n.meta.nsVerification,txtVerification:n.meta.txtVerification,purchased:true})}e.debug(`Domain ${m} was purchased and it was manually verified`);return l.default(t,i,m)}e.debug(`Domain ${m} was purchased and it is automatically verified`);return l.default(t,i,m)})}t.default=setupDomain},6482:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(5897);const o=n(772);const a=n(8185);function isYarn(){return r(this,void 0,void 0,function*(){let e;let t=process.argv[1];while(true){e=yield o.lstat(t);if(e.isSymbolicLink()){t=i.resolve(i.dirname(t),yield o.readlink(t))}else{break}}const n=i.join(i.dirname(t),"..","package.json");const r=yield o.readJSON(n);return!("_id"in r)})}function getConfigPrefix(){return r(this,void 0,void 0,function*(){const e=[process.env.npm_config_userconfig||process.env.NPM_CONFIG_USERCONFIG,i.join(process.env.HOME||"/",".npmrc"),process.env.npm_config_globalconfig||process.env.NPM_CONFIG_GLOBALCONFIG].filter(Boolean);for(const t of e){if(!t){continue}const e=yield o.readFile(t).then(e=>e.toString()).catch(()=>null);if(e){const[t]=e.split("\n").map(e=>e&&e.trim()).filter(e=>e&&e.startsWith("prefix")).map(e=>e.slice(e.indexOf("=")+1).trim());if(t){return t}}}return null})}function isGlobal(){return r(this,void 0,void 0,function*(){try{if(i.dirname(process.argv[0])===i.dirname(process.argv[1])){return true}const e=process.platform==="win32";const t=e?process.env.APPDATA:"/usr/local/lib";const n=yield o.realpath(__dirname+"/util");if(n.includes(["","yarn","global","node_modules",""].join(i.sep))){return true}const r=process.env.PREFIX||process.env.npm_config_prefix||process.env.NPM_CONFIG_PREFIX||(yield getConfigPrefix())||t;if(!r){return true}return n.startsWith(yield o.realpath(r))}catch(e){return true}})}function getUpdateCommand(){return r(this,void 0,void 0,function*(){const e=a.version.includes("canary")?"canary":"latest";if(yield isGlobal()){return(yield isYarn())?`yarn global add now@${e}`:`npm i -g now@${e}`}return(yield isYarn())?`yarn add now@${e}`:`npm i now@${e}`})}t.default=getUpdateCommand},6485:function(e,t,n){"use strict";const r=n(8386);const i=n(6802);e.exports=r(()=>{i(()=>{process.stderr.write("[?25h")},{alwaysLast:true})})},6487:function(e,t,n){var r=n(3930);var i=n(649);t.sprintf=jsSprintf;t.printf=jsPrintf;t.fprintf=jsFprintf;function jsSprintf(e){var t=["([^%]*)","%","(['\\-+ #0]*?)","([1-9]\\d*)?","(\\.([1-9]\\d*))?","[lhjztL]*?","([diouxXfFeEgGaAcCsSp%jr])"].join("");var n=new RegExp(t);var o=Array.prototype.slice.call(arguments,1);var a=e;var s,c,u,l;var f,p,d,h,m;var v="";var g=1;var y=0;var b;var w;r.equal("string",typeof a,"first argument must be a format string");while((m=n.exec(a))!==null){v+=m[1];a=a.substring(m[0].length);w=m[0].substring(m[1].length);b=y+m[1].length+1;y+=m[0].length;s=m[2]||"";c=m[3]||0;u=m[4]||"";l=m[6];f=false;d=false;p=" ";if(l=="%"){v+="%";continue}if(o.length===0){throw jsError(e,b,w,"has no matching argument "+"(too few arguments passed)")}h=o.shift();g++;if(s.match(/[\' #]/)){throw jsError(e,b,w,"uses unsupported flags")}if(u.length>0){throw jsError(e,b,w,"uses non-zero precision (not supported)")}if(s.match(/-/))f=true;if(s.match(/0/))p="0";if(s.match(/\+/))d=true;switch(l){case"s":if(h===undefined||h===null){throw jsError(e,b,w,"attempted to print undefined or null "+"as a string (argument "+g+" to "+"sprintf)")}v+=doPad(p,c,f,h.toString());break;case"d":h=Math.floor(h);case"f":d=d&&h>0?"+":"";v+=d+doPad(p,c,f,h.toString());break;case"x":v+=doPad(p,c,f,h.toString(16));break;case"j":if(c===0)c=10;v+=i.inspect(h,false,c);break;case"r":v+=dumpException(h);break;default:throw jsError(e,b,w,"is not supported")}}v+=a;return v}function jsError(e,t,n,i){r.equal(typeof e,"string");r.equal(typeof n,"string");r.equal(typeof t,"number");r.equal(typeof i,"string");return new Error('format string "'+e+'": conversion specifier "'+n+'" at character '+t+" "+i)}function jsPrintf(){var e=Array.prototype.slice.call(arguments);e.unshift(process.stdout);jsFprintf.apply(null,e)}function jsFprintf(e){var t=Array.prototype.slice.call(arguments,1);return e.write(jsSprintf.apply(this,t))}function doPad(e,t,n,r){var i=r;while(i.length<t){if(n)i+=e;else i=e+i}return i}function dumpException(e){var t;if(!(e instanceof Error))throw new Error(jsSprintf("invalid type for %%r: %j",e));t="EXCEPTION: "+e.constructor.name+": "+e.stack;if(e.cause&&typeof e.cause==="function"){var n=e.cause();if(n){t+="\nCaused by: "+dumpException(n)}}return t}},6488:function(e,t,n){"use strict";var r=n(5325);var i=n(7547);var o=typeof Reflect!=="undefined"&&Reflect.defineProperty?Reflect.defineProperty:Object.defineProperty;e.exports=function defineProperty(e,t,n){if(!r(e)&&typeof e!=="function"&&!Array.isArray(e)){throw new TypeError("expected an object, function, or array")}if(typeof t!=="string"){throw new TypeError('expected "key" to be a string')}if(i(n)){o(e,t,n);return e}o(e,t,{configurable:true,enumerable:false,writable:true,value:n});return e}},6490:function(e,t,n){"use strict";const r=n(2994)();e.exports=(()=>{return process.env.HTTPS_PROXY||process.env.https_proxy||process.env.HTTP_PROXY||process.env.http_proxy||r.get("https-proxy")||r.get("http-proxy")||r.get("proxy")||null})},6493:function(e,t,n){"use strict";const r=n(2617);const i=n(4316);const o=n(5897);function hasMillisResSync(){let e=o.join("millis-test-sync"+Date.now().toString()+Math.random().toString().slice(2));e=o.join(i.tmpdir(),e);const t=new Date(1435410243862);r.writeFileSync(e,"https://github.com/jprichardson/node-fs-extra/pull/141");const n=r.openSync(e,"r+");r.futimesSync(n,t,t);r.closeSync(n);return r.statSync(e).mtime>1435410243e3}function hasMillisRes(e){let t=o.join("millis-test"+Date.now().toString()+Math.random().toString().slice(2));t=o.join(i.tmpdir(),t);const n=new Date(1435410243862);r.writeFile(t,"https://github.com/jprichardson/node-fs-extra/pull/141",i=>{if(i)return e(i);r.open(t,"r+",(i,o)=>{if(i)return e(i);r.futimes(o,n,n,n=>{if(n)return e(n);r.close(o,n=>{if(n)return e(n);r.stat(t,(t,n)=>{if(t)return e(t);e(null,n.mtime>1435410243e3)})})})})})}function timeRemoveMillis(e){if(typeof e==="number"){return Math.floor(e/1e3)*1e3}else if(e instanceof Date){return new Date(Math.floor(e.getTime()/1e3)*1e3)}else{throw new Error("fs-extra: timeRemoveMillis() unknown parameter type")}}function utimesMillis(e,t,n,i){r.open(e,"r+",(e,o)=>{if(e)return i(e);r.futimes(o,t,n,e=>{r.close(o,t=>{if(i)i(e||t)})})})}function utimesMillisSync(e,t,n){const i=r.openSync(e,"r+");r.futimesSync(i,t,n);return r.closeSync(i)}e.exports={hasMillisRes:hasMillisRes,hasMillisResSync:hasMillisResSync,timeRemoveMillis:timeRemoveMillis,utimesMillis:utimesMillis,utimesMillisSync:utimesMillisSync}},6505:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5897);const o=n(2617);const a=n(7184);const s=n(5527).pathExists;function createLink(e,t,n){function makeLink(e,t){o.link(e,t,e=>{if(e)return n(e);n(null)})}s(t,(r,c)=>{if(r)return n(r);if(c)return n(null);o.lstat(e,r=>{if(r){r.message=r.message.replace("lstat","ensureLink");return n(r)}const o=i.dirname(t);s(o,(r,i)=>{if(r)return n(r);if(i)return makeLink(e,t);a.mkdirs(o,r=>{if(r)return n(r);makeLink(e,t)})})})})}function createLinkSync(e,t){const n=o.existsSync(t);if(n)return undefined;try{o.lstatSync(e)}catch(e){e.message=e.message.replace("lstat","ensureLink");throw e}const r=i.dirname(t);const s=o.existsSync(r);if(s)return o.linkSync(e,t);a.mkdirsSync(r);return o.linkSync(e,t)}e.exports={createLink:r(createLink),createLinkSync:createLinkSync}},6509:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);const o=e=>`${Object(r["red"])("> Aborted!")} ${e}`;t["default"]=o},6518:function(e,t,n){"use strict";var r=n(7770);var i=n(2984);var o=n(9335).Buffer;var a=typeof setImmediate==="undefined"?process.nextTick:setImmediate;function paramsHaveRequestBody(e){return e.body||e.requestBodyStream||e.json&&typeof e.json!=="boolean"||e.multipart}function safeStringify(e,t){var n;try{n=JSON.stringify(e,t)}catch(i){n=r(e,t)}return n}function md5(e){return i.createHash("md5").update(e).digest("hex")}function isReadStream(e){return e.readable&&e.path&&e.mode}function toBase64(e){return o.from(e||"","utf8").toString("base64")}function copy(e){var t={};Object.keys(e).forEach(function(n){t[n]=e[n]});return t}function version(){var e=process.version.replace("v","").split(".");return{major:parseInt(e[0],10),minor:parseInt(e[1],10),patch:parseInt(e[2],10)}}t.paramsHaveRequestBody=paramsHaveRequestBody;t.safeStringify=safeStringify;t.md5=md5;t.isReadStream=isReadStream;t.toBase64=toBase64;t.copy=copy;t.version=version;t.defer=a},6521:function(e){e.exports=function(e,t,n,r,i){this.confidence=n;this.name=r||t.name(e);this.lang=i}},6522:function(e,t){Object.defineProperty(t,"__esModule",{value:true});var n=function(){function Memo(){this._hasWeakSet=typeof WeakSet==="function";this._inner=this._hasWeakSet?new WeakSet:[]}Memo.prototype.memoize=function(e){if(this._hasWeakSet){if(this._inner.has(e)){return true}this._inner.add(e);return false}for(var t=0;t<this._inner.length;t++){var n=this._inner[t];if(n===e){return true}}this._inner.push(e);return false};Memo.prototype.unmemoize=function(e){if(this._hasWeakSet){this._inner.delete(e)}else{for(var t=0;t<this._inner.length;t++){if(this._inner[t]===e){this._inner.splice(t,1);break}}}};return Memo}();t.Memo=n},6547:function(e,t,n){"use strict";var r=n(5808);var i=n(2205);var o=n(3890);function getStream(e,t){if(!e){return r.reject(new Error("Expected a stream"))}t=i({maxBuffer:Infinity},t);var n=t.maxBuffer;var a;var s;var c=new r(function(r,i){a=o(t);e.once("error",error);e.pipe(a);a.on("data",function(){if(a.getBufferedLength()>n){i(new Error("maxBuffer exceeded"))}});a.once("error",error);a.on("end",r);s=function(){if(e.unpipe){e.unpipe(a)}};function error(e){if(e){e.bufferedData=a.getBufferedValue()}i(e)}});c.then(s,s);return c.then(function(){return a.getBufferedValue()})}e.exports=getStream;e.exports.buffer=function(e,t){return getStream(e,i({},t,{encoding:"buffer"}))};e.exports.array=function(e,t){return getStream(e,i({},t,{array:true}))}},6559:function(e,t,n){var r=n(7176).BigInteger;var i=n(7884).ECCurveFp;function X9ECParameters(e,t,n,r){this.curve=e;this.g=t;this.n=n;this.h=r}function x9getCurve(){return this.curve}function x9getG(){return this.g}function x9getN(){return this.n}function x9getH(){return this.h}X9ECParameters.prototype.getCurve=x9getCurve;X9ECParameters.prototype.getG=x9getG;X9ECParameters.prototype.getN=x9getN;X9ECParameters.prototype.getH=x9getH;function fromHex(e){return new r(e,16)}function secp128r1(){var e=fromHex("FFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFF");var t=fromHex("FFFFFFFDFFFFFFFFFFFFFFFFFFFFFFFC");var n=fromHex("E87579C11079F43DD824993C2CEE5ED3");var o=fromHex("FFFFFFFE0000000075A30D1B9038A115");var a=r.ONE;var s=new i(e,t,n);var c=s.decodePointHex("04"+"161FF7528B899B2D0C28607CA52C5B86"+"CF5AC8395BAFEB13C02DA292DDED7A83");return new X9ECParameters(s,c,o,a)}function secp160k1(){var e=fromHex("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFAC73");var t=r.ZERO;var n=fromHex("7");var o=fromHex("0100000000000000000001B8FA16DFAB9ACA16B6B3");var a=r.ONE;var s=new i(e,t,n);var c=s.decodePointHex("04"+"3B4C382CE37AA192A4019E763036F4F5DD4D7EBB"+"938CF935318FDCED6BC28286531733C3F03C4FEE");return new X9ECParameters(s,c,o,a)}function secp160r1(){var e=fromHex("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFF");var t=fromHex("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7FFFFFFC");var n=fromHex("1C97BEFC54BD7A8B65ACF89F81D4D4ADC565FA45");var o=fromHex("0100000000000000000001F4C8F927AED3CA752257");var a=r.ONE;var s=new i(e,t,n);var c=s.decodePointHex("04"+"4A96B5688EF573284664698968C38BB913CBFC82"+"23A628553168947D59DCC912042351377AC5FB32");return new X9ECParameters(s,c,o,a)}function secp192k1(){var e=fromHex("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFEE37");var t=r.ZERO;var n=fromHex("3");var o=fromHex("FFFFFFFFFFFFFFFFFFFFFFFE26F2FC170F69466A74DEFD8D");var a=r.ONE;var s=new i(e,t,n);var c=s.decodePointHex("04"+"DB4FF10EC057E9AE26B07D0280B7F4341DA5D1B1EAE06C7D"+"9B2F2F6D9C5628A7844163D015BE86344082AA88D95E2F9D");return new X9ECParameters(s,c,o,a)}function secp192r1(){var e=fromHex("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFF");var t=fromHex("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFC");var n=fromHex("64210519E59C80E70FA7E9AB72243049FEB8DEECC146B9B1");var o=fromHex("FFFFFFFFFFFFFFFFFFFFFFFF99DEF836146BC9B1B4D22831");var a=r.ONE;var s=new i(e,t,n);var c=s.decodePointHex("04"+"188DA80EB03090F67CBF20EB43A18800F4FF0AFD82FF1012"+"07192B95FFC8DA78631011ED6B24CDD573F977A11E794811");return new X9ECParameters(s,c,o,a)}function secp224r1(){var e=fromHex("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000001");var t=fromHex("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEFFFFFFFFFFFFFFFFFFFFFFFE");var n=fromHex("B4050A850C04B3ABF54132565044B0B7D7BFD8BA270B39432355FFB4");var o=fromHex("FFFFFFFFFFFFFFFFFFFFFFFFFFFF16A2E0B8F03E13DD29455C5C2A3D");var a=r.ONE;var s=new i(e,t,n);var c=s.decodePointHex("04"+"B70E0CBD6BB4BF7F321390B94A03C1D356C21122343280D6115C1D21"+"BD376388B5F723FB4C22DFE6CD4375A05A07476444D5819985007E34");return new X9ECParameters(s,c,o,a)}function secp256r1(){var e=fromHex("FFFFFFFF00000001000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFF");var t=fromHex("FFFFFFFF00000001000000000000000000000000FFFFFFFFFFFFFFFFFFFFFFFC");var n=fromHex("5AC635D8AA3A93E7B3EBBD55769886BC651D06B0CC53B0F63BCE3C3E27D2604B");var o=fromHex("FFFFFFFF00000000FFFFFFFFFFFFFFFFBCE6FAADA7179E84F3B9CAC2FC632551");var a=r.ONE;var s=new i(e,t,n);var c=s.decodePointHex("04"+"6B17D1F2E12C4247F8BCE6E563A440F277037D812DEB33A0F4A13945D898C296"+"4FE342E2FE1A7F9B8EE7EB4A7C0F9E162BCE33576B315ECECBB6406837BF51F5");return new X9ECParameters(s,c,o,a)}function getSECCurveByName(e){if(e=="secp128r1")return secp128r1();if(e=="secp160k1")return secp160k1();if(e=="secp160r1")return secp160r1();if(e=="secp192k1")return secp192k1();if(e=="secp192r1")return secp192r1();if(e=="secp224r1")return secp224r1();if(e=="secp256r1")return secp256r1();return null}e.exports={secp128r1:secp128r1,secp160k1:secp160k1,secp160r1:secp160r1,secp192k1:secp192k1,secp192r1:secp192r1,secp224r1:secp224r1,secp256r1:secp256r1}},6585:function(e,t,n){"use strict";var r=n(6886);function DuplexWrapper(e,t,n){if(typeof n==="undefined"){n=t;t=e;e=null}r.Duplex.call(this,e);if(typeof n.read!=="function"){n=new r.Readable(e).wrap(n)}this._writable=t;this._readable=n;this._waiting=false;var i=this;t.once("finish",function(){i.end()});this.once("finish",function(){t.end()});n.on("readable",function(){if(i._waiting){i._waiting=false;i._read()}});n.once("end",function(){i.push(null)});if(!e||typeof e.bubbleErrors==="undefined"||e.bubbleErrors){t.on("error",function(e){i.emit("error",e)});n.on("error",function(e){i.emit("error",e)})}}DuplexWrapper.prototype=Object.create(r.Duplex.prototype,{constructor:{value:DuplexWrapper}});DuplexWrapper.prototype._write=function _write(e,t,n){this._writable.write(e,t,n)};DuplexWrapper.prototype._read=function _read(){var e;var t=0;while((e=this._readable.read())!==null){this.push(e);t++}if(t===0){this._waiting=true}};e.exports=function duplex2(e,t,n){return new DuplexWrapper(e,t,n)};e.exports.DuplexWrapper=DuplexWrapper},6586:function(e,t,n){"use strict";const r=n(774);const i=n(6490);const o=n(1439);const a=n(9055);const s=n(2570);e.exports=((e,t)=>{e=e||i();t=Object.assign({},t);if(typeof e==="object"){t=e;e=i()}if(!e){return null}e=o.lenient(e)?s(e):r.parse(e);const n=t.protocol==="https"?"https":"http";const c=e.protocol==="https:"?"Https":"Http";const u=e.port||(c==="Https"?443:80);const l=`${n}Over${c}`;delete t.protocol;return a[l](Object.assign({proxy:{port:u,host:e.hostname,proxyAuth:e.auth}},t))})},6594:function(e,t,n){var r=n(4850);var i=5;var o=1<<i;var a=o-1;var s=o;function toVLQSigned(e){return e<0?(-e<<1)+1:(e<<1)+0}function fromVLQSigned(e){var t=(e&1)===1;var n=e>>1;return t?-n:n}t.encode=function base64VLQ_encode(e){var t="";var n;var o=toVLQSigned(e);do{n=o&a;o>>>=i;if(o>0){n|=s}t+=r.encode(n)}while(o>0);return t};t.decode=function base64VLQ_decode(e,t,n){var o=e.length;var c=0;var u=0;var l,f;do{if(t>=o){throw new Error("Expected more digits in base 64 VLQ value.")}f=r.decode(e.charCodeAt(t++));if(f===-1){throw new Error("Invalid base64 digit: "+e.charAt(t-1))}l=!!(f&s);f&=a;c=c+(f<<u);u+=i}while(l);n.value=fromVLQSigned(c);n.rest=t}},6598:function(e){"use strict";e.exports=function(e){if(typeof Buffer.allocUnsafe==="function"){try{return Buffer.allocUnsafe(e)}catch(t){return new Buffer(e)}}return new Buffer(e)}},6600:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({path:"disputes",includeBasic:["list","retrieve","update","setMetadata","getMetadata"],close:i({method:"POST",path:"/{id}/close",urlParams:["id"]})})},6601:function(e,t,n){"use strict";const r=n(2255).fromCallback;e.exports={copy:r(n(8208))}},6602:function(e,t,n){"use strict";e.exports=function(e){var t=n(6011)("npm",{registry:"https://registry.npmjs.org/"});var r=t[e+":registry"]||t.registry;return r.slice(-1)==="/"?r:r+"/"}},6606:function(e,t,n){"use strict";var r=n(2650);var i=n(5576);var o=n(9799);function copy(e,t,n){if(!isObject(e)){throw new TypeError("expected receiving object to be an object.")}if(!isObject(t)){throw new TypeError("expected providing object to be an object.")}var r=nativeKeys(t);var a=Object.keys(t);var s=r.length;n=arrayify(n);while(s--){var c=r[s];if(has(a,c)){o(e,c,t[c])}else if(!(c in e)&&!has(n,c)){i(e,t,c)}}}function isObject(e){return r(e)==="object"||typeof e==="function"}function has(e,t){t=arrayify(t);var n=t.length;if(isObject(e)){for(var r in e){if(t.indexOf(r)>-1){return true}}var i=nativeKeys(e);return has(i,t)}if(Array.isArray(e)){var o=e;while(n--){if(o.indexOf(t[n])>-1){return true}}return false}throw new TypeError("expected an array or object.")}function arrayify(e){return e?Array.isArray(e)?e:[e]:[]}function hasConstructor(e){return isObject(e)&&typeof e.constructor!=="undefined"}function nativeKeys(e){if(!hasConstructor(e))return[];return Object.getOwnPropertyNames(e)}e.exports=copy;e.exports.has=has},6612:function(e,t,n){e.exports=FetchError;function FetchError(e,t,n){this.name=this.constructor.name;this.message=e;this.type=t;if(n){this.code=this.errno=n.code}Error.captureStackTrace(this,this.constructor)}n(649).inherits(FetchError,Error)},6616:function(e,t,n){var r=n(2528),i=n(4532),o=n(9479);e.exports=parallel;function parallel(e,t,n){var a=i(e);while(a.index<(a["keyedList"]||e).length){r(e,t,a,function(e,t){if(e){n(e,t);return}if(Object.keys(a.jobs).length===0){n(null,a.results);return}});a.index++}return o.bind(a,n)}},6625:function(e,t){(function(n){if(t&&typeof t==="object"&&"object"!=="undefined"){e.exports=n()}else if(typeof define==="function"&&define.amd){define([],n)}else if(typeof window!=="undefined"){window.isWindows=n()}else if(typeof global!=="undefined"){global.isWindows=n()}else if(typeof self!=="undefined"){self.isWindows=n()}else{this.isWindows=n()}})(function(){"use strict";return function isWindows(){return process&&(process.platform==="win32"||/^(msys|cygwin)$/.test(process.env.OSTYPE))}})},6627:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5897);const o=n(2617);const a=n(501);const s=a.mkdirs;const c=a.mkdirsSync;const u=n(3138);const l=u.symlinkPaths;const f=u.symlinkPathsSync;const p=n(899);const d=p.symlinkType;const h=p.symlinkTypeSync;const m=n(5899).pathExists;function createSymlink(e,t,n,r){r=typeof n==="function"?n:r;n=typeof n==="function"?false:n;m(t,(a,c)=>{if(a)return r(a);if(c)return r(null);l(e,t,(a,c)=>{if(a)return r(a);e=c.toDst;d(c.toCwd,n,(n,a)=>{if(n)return r(n);const c=i.dirname(t);m(c,(n,i)=>{if(n)return r(n);if(i)return o.symlink(e,t,a,r);s(c,n=>{if(n)return r(n);o.symlink(e,t,a,r)})})})})})}function createSymlinkSync(e,t,n,r){r=typeof n==="function"?n:r;n=typeof n==="function"?false:n;const a=o.existsSync(t);if(a)return undefined;const s=f(e,t);e=s.toDst;n=h(s.toCwd,n);const u=i.dirname(t);const l=o.existsSync(u);if(l)return o.symlinkSync(e,t,n);c(u);return o.symlinkSync(e,t,n)}e.exports={createSymlink:r(createSymlink),createSymlinkSync:createSymlinkSync}},6629:function(e,t,n){var r=n(4607);var i=n(5257);var o="license should be "+'a valid SPDX license expression (without "LicenseRef"), '+'"UNLICENSED", or '+'"SEE LICENSE IN <filename>"';var a=/^SEE LICEN[CS]E IN (.+)$/;function startsWith(e,t){return t.slice(0,e.length)===e}function usesLicenseRef(e){if(e.hasOwnProperty("license")){var t=e.license;return startsWith("LicenseRef",t)||startsWith("DocumentRef",t)}else{return usesLicenseRef(e.left)||usesLicenseRef(e.right)}}e.exports=function(e){var t;try{t=r(e)}catch(t){var n;if(e==="UNLICENSED"||e==="UNLICENCED"){return{validForOldPackages:true,validForNewPackages:true,unlicensed:true}}else if(n=a.exec(e)){return{validForOldPackages:true,validForNewPackages:true,inFile:n[1]}}else{var s={validForOldPackages:false,validForNewPackages:false,warnings:[o]};if(e.trim().length!==0){var c=i(e);if(c){s.warnings.push('license is similar to the valid expression "'+c+'"')}}return s}}if(usesLicenseRef(t)){return{validForNewPackages:false,validForOldPackages:false,spdx:true,warnings:[o]}}else{return{validForNewPackages:true,validForOldPackages:true,spdx:true}}}},6634:function(e){var t=[];for(var n=0;n<256;++n){t[n]=(n+256).toString(16).substr(1)}function bytesToUuid(e,n){var r=n||0;var i=t;return[i[e[r++]],i[e[r++]],i[e[r++]],i[e[r++]],"-",i[e[r++]],i[e[r++]],"-",i[e[r++]],i[e[r++]],"-",i[e[r++]],i[e[r++]],"-",i[e[r++]],i[e[r++]],i[e[r++]],i[e[r++]],i[e[r++]],i[e[r++]]].join("")}e.exports=bytesToUuid},6638:function(e,t){Object.defineProperty(t,"__esModule",{value:true});function normalizeArray(e,t){var n=0;for(var r=e.length-1;r>=0;r--){var i=e[r];if(i==="."){e.splice(r,1)}else if(i===".."){e.splice(r,1);n++}else if(n){e.splice(r,1);n--}}if(t){for(;n--;n){e.unshift("..")}}return e}var n=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;function splitPath(e){var t=n.exec(e);return t?t.slice(1):[]}function resolve(){var e=[];for(var t=0;t<arguments.length;t++){e[t]=arguments[t]}var n="";var r=false;for(var i=e.length-1;i>=-1&&!r;i--){var o=i>=0?e[i]:"/";if(!o){continue}n=o+"/"+n;r=o.charAt(0)==="/"}n=normalizeArray(n.split("/").filter(function(e){return!!e}),!r).join("/");return(r?"/":"")+n||"."}t.resolve=resolve;function trim(e){var t=0;for(;t<e.length;t++){if(e[t]!==""){break}}var n=e.length-1;for(;n>=0;n--){if(e[n]!==""){break}}if(t>n){return[]}return e.slice(t,n-t+1)}function relative(e,t){e=resolve(e).substr(1);t=resolve(t).substr(1);var n=trim(e.split("/"));var r=trim(t.split("/"));var i=Math.min(n.length,r.length);var o=i;for(var a=0;a<i;a++){if(n[a]!==r[a]){o=a;break}}var s=[];for(var a=o;a<n.length;a++){s.push("..")}s=s.concat(r.slice(o));return s.join("/")}t.relative=relative;function normalizePath(e){var t=isAbsolute(e);var n=e.substr(-1)==="/";var r=normalizeArray(e.split("/").filter(function(e){return!!e}),!t).join("/");if(!r&&!t){r="."}if(r&&n){r+="/"}return(t?"/":"")+r}t.normalizePath=normalizePath;function isAbsolute(e){return e.charAt(0)==="/"}t.isAbsolute=isAbsolute;function join(){var e=[];for(var t=0;t<arguments.length;t++){e[t]=arguments[t]}return normalizePath(e.join("/"))}t.join=join;function dirname(e){var t=splitPath(e);var n=t[0];var r=t[1];if(!n&&!r){return"."}if(r){r=r.substr(0,r.length-1)}return n+r}t.dirname=dirname;function basename(e,t){var n=splitPath(e)[2];if(t&&n.substr(t.length*-1)===t){n=n.substr(0,n.length-t.length)}return n}t.basename=basename},6641:function(e,t,n){"use strict";var r=n(662);var i=n(5897);var o=n(9799);var a=n(4650);e.exports=mixin;function mixin(e){o(e,"_comment",e.comment);e.map=new a.SourceMap.SourceMapGenerator;e.position={line:1,column:1};e.content={};e.files={};for(var n in t){o(e,n,t[n])}}t.updatePosition=function(e){var t=e.match(/\n/g);if(t)this.position.line+=t.length;var n=e.lastIndexOf("\n");this.position.column=~n?e.length-n:this.position.column+e.length};t.emit=function(e,t){var n=t.position||{};var r=n.source;if(r){if(n.filepath){r=a.unixify(n.filepath)}this.map.addMapping({source:r,generated:{line:this.position.line,column:Math.max(this.position.column-1,0)},original:{line:n.start.line,column:n.start.column-1}});if(n.content){this.addContent(r,n)}if(n.filepath){this.addFile(r,n)}this.updatePosition(e);this.output+=e}return e};t.addFile=function(e,t){if(typeof t.content!=="string")return;if(Object.prototype.hasOwnProperty.call(this.files,e))return;this.files[e]=t.content};t.addContent=function(e,t){if(typeof t.content!=="string")return;if(Object.prototype.hasOwnProperty.call(this.content,e))return;this.map.setSourceContent(e,t.content)};t.applySourceMaps=function(){Object.keys(this.files).forEach(function(e){var t=this.files[e];this.map.setSourceContent(e,t);if(this.options.inputSourcemaps===true){var n=a.sourceMapResolve.resolveSync(t,e,r.readFileSync);if(n){var o=new a.SourceMap.SourceMapConsumer(n.map);var s=n.sourcesRelativeTo;this.map.applySourceMap(o,e,a.unixify(i.dirname(s)))}}},this)};t.comment=function(e){if(/^# sourceMappingURL=/.test(e.comment)){return this.emit("",e.position)}return this._comment(e)}},6650:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(5850).copySync;const a=n(5012).removeSync;const s=n(7184).mkdirsSync;const c=n(6598);function moveSync(e,t,n){n=n||{};const o=n.overwrite||n.clobber||false;e=i.resolve(e);t=i.resolve(t);if(e===t)return r.accessSync(e);if(isSrcSubdir(e,t))throw new Error(`Cannot move '${e}' into itself '${t}'.`);s(i.dirname(t));tryRenameSync();function tryRenameSync(){if(o){try{return r.renameSync(e,t)}catch(r){if(r.code==="ENOTEMPTY"||r.code==="EEXIST"||r.code==="EPERM"){a(t);n.overwrite=false;return moveSync(e,t,n)}if(r.code!=="EXDEV")throw r;return moveSyncAcrossDevice(e,t,o)}}else{try{r.linkSync(e,t);return r.unlinkSync(e)}catch(n){if(n.code==="EXDEV"||n.code==="EISDIR"||n.code==="EPERM"||n.code==="ENOTSUP"){return moveSyncAcrossDevice(e,t,o)}throw n}}}}function moveSyncAcrossDevice(e,t,n){const i=r.statSync(e);if(i.isDirectory()){return moveDirSyncAcrossDevice(e,t,n)}else{return moveFileSyncAcrossDevice(e,t,n)}}function moveFileSyncAcrossDevice(e,t,n){const i=64*1024;const o=c(i);const a=n?"w":"wx";const s=r.openSync(e,"r");const u=r.fstatSync(s);const l=r.openSync(t,a,u.mode);let f=0;while(f<u.size){const e=r.readSync(s,o,0,i,f);r.writeSync(l,o,0,e);f+=e}r.closeSync(s);r.closeSync(l);return r.unlinkSync(e)}function moveDirSyncAcrossDevice(e,t,n){const r={overwrite:false};if(n){a(t);tryCopySync()}else{tryCopySync()}function tryCopySync(){o(e,t,r);return a(e)}}function isSrcSubdir(e,t){try{return r.statSync(e).isDirectory()&&e!==t&&t.indexOf(e)>-1&&t.split(i.dirname(e)+i.sep)[1].split(i.sep)[0]===i.basename(e)}catch(e){return false}}e.exports={moveSync:moveSync}},6660:function(e){var t=function(){try{if(!Buffer.isEncoding("latin1")){return false}var e=Buffer.alloc?Buffer.alloc(4):new Buffer(4);e.fill("ab","ucs2");return e.toString("hex")==="61006200"}catch(e){return false}}();function isSingleByte(e){return e.length===1&&e.charCodeAt(0)<256}function fillWithNumber(e,t,n,r){if(n<0||r>e.length){throw new RangeError("Out of range index")}n=n>>>0;r=r===undefined?e.length:r>>>0;if(r>n){e.fill(t,n,r)}return e}function fillWithBuffer(e,t,n,r){if(n<0||r>e.length){throw new RangeError("Out of range index")}if(r<=n){return e}n=n>>>0;r=r===undefined?e.length:r>>>0;var i=n;var o=t.length;while(i<=r-o){t.copy(e,i);i+=o}if(i!==r){t.copy(e,i,0,r-i)}return e}function fill(e,n,r,i,o){if(t){return e.fill(n,r,i,o)}if(typeof n==="number"){return fillWithNumber(e,n,r,i)}if(typeof n==="string"){if(typeof r==="string"){o=r;r=0;i=e.length}else if(typeof i==="string"){o=i;i=e.length}if(o!==undefined&&typeof o!=="string"){throw new TypeError("encoding must be a string")}if(o==="latin1"){o="binary"}if(typeof o==="string"&&!Buffer.isEncoding(o)){throw new TypeError("Unknown encoding: "+o)}if(n===""){return fillWithNumber(e,0,r,i)}if(isSingleByte(n)){return fillWithNumber(e,n.charCodeAt(0),r,i)}n=new Buffer(n,o)}if(Buffer.isBuffer(n)){return fillWithBuffer(e,n,r,i)}return fillWithNumber(e,0,r,i)}e.exports=fill},6661:function(e){"use strict";var t=e.exports={github:{protocols:["git","http","git+ssh","git+https","ssh","https"],domain:"github.com",treepath:"tree",filetemplate:"https://{auth@}raw.githubusercontent.com/{user}/{project}/{committish}/{path}",bugstemplate:"https://{domain}/{user}/{project}/issues",gittemplate:"git://{auth@}{domain}/{user}/{project}.git{#committish}",tarballtemplate:"https://codeload.{domain}/{user}/{project}/tar.gz/{committish}"},bitbucket:{protocols:["git+ssh","git+https","ssh","https"],domain:"bitbucket.org",treepath:"src",tarballtemplate:"https://{domain}/{user}/{project}/get/{committish}.tar.gz"},gitlab:{protocols:["git+ssh","git+https","ssh","https"],domain:"gitlab.com",treepath:"tree",bugstemplate:"https://{domain}/{user}/{project}/issues",httpstemplate:"git+https://{auth@}{domain}/{user}/{projectPath}.git{#committish}",tarballtemplate:"https://{domain}/{user}/{project}/repository/archive.tar.gz?ref={committish}",pathmatch:/^[\/]([^\/]+)[\/](.+?)(?:[.]git|[\/])?$/},gist:{protocols:["git","git+ssh","git+https","ssh","https"],domain:"gist.github.com",pathmatch:/^[\/](?:([^\/]+)[\/])?([a-z0-9]{32,})(?:[.]git)?$/,filetemplate:"https://gist.githubusercontent.com/{user}/{project}/raw{/committish}/{path}",bugstemplate:"https://{domain}/{project}",gittemplate:"git://{domain}/{project}.git{#committish}",sshtemplate:"git@{domain}:/{project}.git{#committish}",sshurltemplate:"git+ssh://git@{domain}/{project}.git{#committish}",browsetemplate:"https://{domain}/{project}{/committish}",browsefiletemplate:"https://{domain}/{project}{/committish}{#path}",docstemplate:"https://{domain}/{project}{/committish}",httpstemplate:"git+https://{domain}/{project}.git{#committish}",shortcuttemplate:"{type}:{project}{#committish}",pathtemplate:"{project}{#committish}",tarballtemplate:"https://codeload.github.com/gist/{project}/tar.gz/{committish}",hashformat:function(e){return"file-"+formatHashFragment(e)}}};var n={sshtemplate:"git@{domain}:{user}/{project}.git{#committish}",sshurltemplate:"git+ssh://git@{domain}/{user}/{project}.git{#committish}",browsetemplate:"https://{domain}/{user}/{project}{/tree/committish}",browsefiletemplate:"https://{domain}/{user}/{project}/{treepath}/{committish}/{path}{#fragment}",docstemplate:"https://{domain}/{user}/{project}{/tree/committish}#readme",httpstemplate:"git+https://{auth@}{domain}/{user}/{project}.git{#committish}",filetemplate:"https://{domain}/{user}/{project}/raw/{committish}/{path}",shortcuttemplate:"{type}:{user}/{project}{#committish}",pathtemplate:"{user}/{project}{#committish}",pathmatch:/^[\/]([^\/]+)[\/]([^\/]+?)(?:[.]git|[\/])?$/,hashformat:formatHashFragment};Object.keys(t).forEach(function(e){Object.keys(n).forEach(function(r){if(t[e][r])return;t[e][r]=n[r]});t[e].protocols_re=RegExp("^("+t[e].protocols.map(function(e){return e.replace(/([\\+*{}()[\]$^|])/g,"\\$1")}).join("|")+"):$")});function formatHashFragment(e){return e.toLowerCase().replace(/^\W+|\/|\W+$/g,"").replace(/\W+/g,"-")}},6663:function(e,t,n){e.exports={read:read,verify:verify,sign:sign,signAsync:signAsync,write:write,fromBuffer:fromBuffer,toBuffer:toBuffer};var r=n(9261);var i=n(4550);var o=n(2984);var a=n(3062).Buffer;var s=n(6977);var c=n(120);var u=n(1946);var l=n(8161);var f=n(2046);var p=n(5511);var d=n(5271);var h=n(6399);function verify(e,t){return false}var m={user:1,host:2};Object.keys(m).forEach(function(e){m[m[e]]=e});var v=/^ecdsa-sha2-([^@-]+)-cert-v01@openssh.com$/;function read(e,t){if(a.isBuffer(e))e=e.toString("ascii");var n=e.trim().split(/[ \t\n]+/g);if(n.length<2||n.length>3)throw new Error("Not a valid SSH certificate line");var r=n[0];var i=n[1];i=a.from(i,"base64");return fromBuffer(i,r)}function fromBuffer(e,t,n){var o=new i({buffer:e});var a=o.readString();if(t!==undefined&&a!==t)throw new Error("SSH certificate algorithm mismatch");if(t===undefined)t=a;var u={};u.signatures={};u.signatures.openssh={};u.signatures.openssh.nonce=o.readBuffer();var g={};var y=g.parts=[];g.type=getAlg(t);var b=s.info[g.type].parts.length;while(y.length<b)y.push(o.readPart());r.ok(y.length>=1,"key must have at least one part");var w=s.info[g.type];if(g.type==="ecdsa"){var x=v.exec(t);r.ok(x!==null);r.strictEqual(x[1],y[0].data.toString())}for(var k=0;k<w.parts.length;++k){y[k].name=w.parts[k];if(y[k].name!=="curve"&&w.normalize!==false){var j=y[k];j.data=d.mpNormalize(j.data)}}u.subjectKey=new c(g);u.serial=o.readInt64();var S=m[o.readInt()];r.string(S,"valid cert type");u.signatures.openssh.keyId=o.readString();var E=[];var _=o.readBuffer();var C=new i({buffer:_});while(!C.atEnd())E.push(C.readString());if(E.length===0)E=["*"];u.subjects=E.map(function(e){if(S==="user")return l.forUser(e);else if(S==="host")return l.forHost(e);throw new Error("Unknown identity type "+S)});u.validFrom=int64ToDate(o.readInt64());u.validUntil=int64ToDate(o.readInt64());var A=[];var O=new i({buffer:o.readBuffer()});var F;while(!O.atEnd()){F={critical:true};F.name=O.readString();F.data=O.readBuffer();A.push(F)}O=new i({buffer:o.readBuffer()});while(!O.atEnd()){F={critical:false};F.name=O.readString();F.data=O.readBuffer();A.push(F)}u.signatures.openssh.exts=A;o.readBuffer();var D=o.readBuffer();u.issuerKey=f.read(D);u.issuer=l.forHost("**");var T=o.readBuffer();u.signatures.openssh.signature=p.parse(T,u.issuerKey.type,"ssh");if(n!==undefined){n.remainder=o.remainder();n.consumed=o._offset}return new h(u)}function int64ToDate(e){var t=e.readUInt32BE(0)*4294967296;t+=e.readUInt32BE(4);var n=new Date;n.setTime(t*1e3);n.sourceInt64=e;return n}function dateToInt64(e){if(e.sourceInt64!==undefined)return e.sourceInt64;var t=Math.round(e.getTime()/1e3);var n=Math.floor(t/4294967296);var r=Math.floor(t%4294967296);var i=a.alloc(8);i.writeUInt32BE(n,0);i.writeUInt32BE(r,4);return i}function sign(e,t){if(e.signatures.openssh===undefined)e.signatures.openssh={};try{var n=toBuffer(e,true)}catch(t){delete e.signatures.openssh;return false}var r=e.signatures.openssh;var i=undefined;if(t.type==="rsa"||t.type==="dsa")i="sha1";var o=t.createSign(i);o.write(n);r.signature=o.sign();return true}function signAsync(e,t,n){if(e.signatures.openssh===undefined)e.signatures.openssh={};try{var r=toBuffer(e,true)}catch(t){delete e.signatures.openssh;n(t);return}var i=e.signatures.openssh;t(r,function(e,t){if(e){n(e);return}try{t.toBuffer("ssh")}catch(e){n(e);return}i.signature=t;n()})}function write(e,t){if(t===undefined)t={};var n=toBuffer(e);var r=getCertType(e.subjectKey)+" "+n.toString("base64");if(t.comment)r=r+" "+t.comment;return r}function toBuffer(e,t){r.object(e.signatures.openssh,"signature for openssh format");var n=e.signatures.openssh;if(n.nonce===undefined)n.nonce=o.randomBytes(16);var c=new i({});c.writeString(getCertType(e.subjectKey));c.writeBuffer(n.nonce);var u=e.subjectKey;var l=s.info[u.type];l.parts.forEach(function(e){c.writePart(u.part[e])});c.writeInt64(e.serial);var p=e.subjects[0].type;r.notStrictEqual(p,"unknown");e.subjects.forEach(function(e){r.strictEqual(e.type,p)});p=m[p];c.writeInt(p);if(n.keyId===undefined){n.keyId=e.subjects[0].type+"_"+(e.subjects[0].uid||e.subjects[0].hostname)}c.writeString(n.keyId);var d=new i({});e.subjects.forEach(function(e){if(p===m.host)d.writeString(e.hostname);else if(p===m.user)d.writeString(e.uid)});c.writeBuffer(d.toBuffer());c.writeInt64(dateToInt64(e.validFrom));c.writeInt64(dateToInt64(e.validUntil));var h=n.exts;if(h===undefined)h=[];var v=new i({});h.forEach(function(e){if(e.critical!==true)return;v.writeString(e.name);v.writeBuffer(e.data)});c.writeBuffer(v.toBuffer());v=new i({});h.forEach(function(e){if(e.critical===true)return;v.writeString(e.name);v.writeBuffer(e.data)});c.writeBuffer(v.toBuffer());c.writeBuffer(a.alloc(0));d=f.write(e.issuerKey);c.writeBuffer(d);if(!t)c.writeBuffer(n.signature.toBuffer("ssh"));return c.toBuffer()}function getAlg(e){if(e==="ssh-rsa-cert-v01@openssh.com")return"rsa";if(e==="ssh-dss-cert-v01@openssh.com")return"dsa";if(e.match(v))return"ecdsa";if(e==="ssh-ed25519-cert-v01@openssh.com")return"ed25519";throw new Error("Unsupported cert type "+e)}function getCertType(e){if(e.type==="rsa")return"ssh-rsa-cert-v01@openssh.com";if(e.type==="dsa")return"ssh-dss-cert-v01@openssh.com";if(e.type==="ecdsa")return"ecdsa-sha2-"+e.curve+"-cert-v01@openssh.com";if(e.type==="ed25519")return"ssh-ed25519-cert-v01@openssh.com";throw new Error("Unsupported key type "+e.type)}},6677:function(e,t,n){t=e.exports=createDebug.debug=createDebug["default"]=createDebug;t.coerce=coerce;t.disable=disable;t.enable=enable;t.enabled=enabled;t.humanize=n(7407);t.names=[];t.skips=[];t.formatters={};var r;function selectColor(e){var n=0,r;for(r in e){n=(n<<5)-n+e.charCodeAt(r);n|=0}return t.colors[Math.abs(n)%t.colors.length]}function createDebug(e){function debug(){if(!debug.enabled)return;var e=debug;var n=+new Date;var i=n-(r||n);e.diff=i;e.prev=r;e.curr=n;r=n;var o=new Array(arguments.length);for(var a=0;a<o.length;a++){o[a]=arguments[a]}o[0]=t.coerce(o[0]);if("string"!==typeof o[0]){o.unshift("%O")}var s=0;o[0]=o[0].replace(/%([a-zA-Z%])/g,function(n,r){if(n==="%%")return n;s++;var i=t.formatters[r];if("function"===typeof i){var a=o[s];n=i.call(e,a);o.splice(s,1);s--}return n});t.formatArgs.call(e,o);var c=debug.log||t.log||console.log.bind(console);c.apply(e,o)}debug.namespace=e;debug.enabled=t.enabled(e);debug.useColors=t.useColors();debug.color=selectColor(e);if("function"===typeof t.init){t.init(debug)}return debug}function enable(e){t.save(e);t.names=[];t.skips=[];var n=(typeof e==="string"?e:"").split(/[\s,]+/);var r=n.length;for(var i=0;i<r;i++){if(!n[i])continue;e=n[i].replace(/\*/g,".*?");if(e[0]==="-"){t.skips.push(new RegExp("^"+e.substr(1)+"$"))}else{t.names.push(new RegExp("^"+e+"$"))}}}function disable(){t.enable("")}function enabled(e){var n,r;for(n=0,r=t.skips.length;n<r;n++){if(t.skips[n].test(e)){return false}}for(n=0,r=t.names.length;n<r;n++){if(t.names[n].test(e)){return true}}return false}function coerce(e){if(e instanceof Error)return e.stack||e.message;return e}},6680:function(e){"use strict";e.exports=function(e){var t=typeof e==="string"?"\n":"\n".charCodeAt();var n=typeof e==="string"?"\r":"\r".charCodeAt();if(e[e.length-1]===t){e=e.slice(0,e.length-1)}if(e[e.length-1]===n){e=e.slice(0,e.length-1)}return e}},6683:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);const o=e=>`${Object(r["cyan"])("> Ready!")} ${e}`;t["default"]=o},6686:function(e){const t=["ZEIT","ZEIT Inc.","CLI","API","HTTP","HTTPS","JSX","DNS","URL","now.sh","now.json","CI","CDN","package.json","GitHub","CSS","JS","HTML","WordPress","JavaScript","Next.js","Node.js"];e.exports=t},6695:function(e,t,n){"use strict";const r=n(5594);const i=n(136);const o=Symbol("slurp");e.exports=class ReadEntry extends i{constructor(e,t,n){super();this.extended=t;this.globalExtended=n;this.header=e;this.startBlockSize=512*Math.ceil(e.size/512);this.blockRemain=this.startBlockSize;this.remain=e.size;this.type=e.type;this.meta=false;this.ignore=false;switch(this.type){case"File":case"OldFile":case"Link":case"SymbolicLink":case"CharacterDevice":case"BlockDevice":case"Directory":case"FIFO":case"ContiguousFile":case"GNUDumpDir":break;case"NextFileHasLongLinkpath":case"NextFileHasLongPath":case"OldGnuLongPath":case"GlobalExtendedHeader":case"ExtendedHeader":case"OldExtendedHeader":this.meta=true;break;default:this.ignore=true}this.path=e.path;this.mode=e.mode;if(this.mode)this.mode=this.mode&4095;this.uid=e.uid;this.gid=e.gid;this.uname=e.uname;this.gname=e.gname;this.size=e.size;this.mtime=e.mtime;this.atime=e.atime;this.ctime=e.ctime;this.linkpath=e.linkpath;this.uname=e.uname;this.gname=e.gname;if(t)this[o](t);if(n)this[o](n,true)}write(e){const t=e.length;if(t>this.blockRemain)throw new Error("writing more to entry than is appropriate");const n=this.remain;const r=this.blockRemain;this.remain=Math.max(0,n-t);this.blockRemain=Math.max(0,r-t);if(this.ignore)return true;if(n>=t)return super.write(e);return super.write(e.slice(0,n))}[o](e,t){for(let n in e){if(e[n]!==null&&e[n]!==undefined&&!(t&&n==="path"))this[n]=e[n]}}}},6696:function(e,t,n){"use strict";n.r(t);function isZeitWorld(e){if(!e.length){return false}return e.every(e=>e.endsWith(".zeit.world"))}t["default"]=isZeitWorld},6704:function(e,t,n){"use strict";const r=n(5897);const i=n(3686);e.exports=(e=>{e=Object.assign({cwd:process.cwd(),path:process.env[i()]},e);let t;let n=r.resolve(e.cwd);const o=[];while(t!==n){o.push(r.join(n,"node_modules/.bin"));t=n;n=r.resolve(n,"..")}o.push(r.dirname(process.execPath));return o.concat(e.path).join(r.delimiter)});e.exports.env=(t=>{t=Object.assign({env:process.env},t);const n=Object.assign({},t.env);const r=i({env:n});t.path=n[r];n[r]=e.exports(t);return n})},6708:function(e,t,n){"use strict";var r=n(1490);function permuteDomain(e){var t=r.getPublicSuffix(e);if(!t){return null}if(t==e){return[e]}var n=e.slice(0,-(t.length+1));var i=n.split(".").reverse();var o=t;var a=[o];while(i.length){o=i.shift()+"."+o;a.push(o)}return a}t.permuteDomain=permuteDomain},6711:function(e){"use strict";e.exports=function(e,t){if(e.timeoutTimer){return e}var n=isNaN(t)?t:{socket:t,connect:t};var r=e._headers?" to "+e._headers.host:"";if(n.connect!==undefined){e.timeoutTimer=setTimeout(function timeoutHandler(){e.abort();var t=new Error("Connection timed out on request"+r);t.code="ETIMEDOUT";e.emit("error",t)},n.connect)}e.on("socket",function assign(e){if(!(e.connecting||e._connecting)){connect();return}e.once("connect",connect)});function clear(){if(e.timeoutTimer){clearTimeout(e.timeoutTimer);e.timeoutTimer=null}}function connect(){clear();if(n.socket!==undefined){e.setTimeout(n.socket,function socketTimeoutHandler(){e.abort();var t=new Error("Socket timed out on request"+r);t.code="ESOCKETTIMEDOUT";e.emit("error",t)})}}return e.on("error",clear)}},6719:function(e,t,n){"use strict";function setup(e){createDebug.debug=createDebug;createDebug.default=createDebug;createDebug.coerce=coerce;createDebug.disable=disable;createDebug.enable=enable;createDebug.enabled=enabled;createDebug.humanize=n(2229);Object.keys(e).forEach(function(t){createDebug[t]=e[t]});createDebug.instances=[];createDebug.names=[];createDebug.skips=[];createDebug.formatters={};function selectColor(e){var t=0;for(var n=0;n<e.length;n++){t=(t<<5)-t+e.charCodeAt(n);t|=0}return createDebug.colors[Math.abs(t)%createDebug.colors.length]}createDebug.selectColor=selectColor;function createDebug(e){var t;function debug(){if(!debug.enabled){return}for(var e=arguments.length,n=new Array(e),r=0;r<e;r++){n[r]=arguments[r]}var i=debug;var o=Number(new Date);var a=o-(t||o);i.diff=a;i.prev=t;i.curr=o;t=o;n[0]=createDebug.coerce(n[0]);if(typeof n[0]!=="string"){n.unshift("%O")}var s=0;n[0]=n[0].replace(/%([a-zA-Z%])/g,function(e,t){if(e==="%%"){return e}s++;var r=createDebug.formatters[t];if(typeof r==="function"){var o=n[s];e=r.call(i,o);n.splice(s,1);s--}return e});createDebug.formatArgs.call(i,n);var c=i.log||createDebug.log;c.apply(i,n)}debug.namespace=e;debug.enabled=createDebug.enabled(e);debug.useColors=createDebug.useColors();debug.color=selectColor(e);debug.destroy=destroy;debug.extend=extend;if(typeof createDebug.init==="function"){createDebug.init(debug)}createDebug.instances.push(debug);return debug}function destroy(){var e=createDebug.instances.indexOf(this);if(e!==-1){createDebug.instances.splice(e,1);return true}return false}function extend(e,t){return createDebug(this.namespace+(typeof t==="undefined"?":":t)+e)}function enable(e){createDebug.save(e);createDebug.names=[];createDebug.skips=[];var t;var n=(typeof e==="string"?e:"").split(/[\s,]+/);var r=n.length;for(t=0;t<r;t++){if(!n[t]){continue}e=n[t].replace(/\*/g,".*?");if(e[0]==="-"){createDebug.skips.push(new RegExp("^"+e.substr(1)+"$"))}else{createDebug.names.push(new RegExp("^"+e+"$"))}}for(t=0;t<createDebug.instances.length;t++){var i=createDebug.instances[t];i.enabled=createDebug.enabled(i.namespace)}}function disable(){createDebug.enable("")}function enabled(e){if(e[e.length-1]==="*"){return true}var t;var n;for(t=0,n=createDebug.skips.length;t<n;t++){if(createDebug.skips[t].test(e)){return false}}for(t=0,n=createDebug.names.length;t<n;t++){if(createDebug.names[t].test(e)){return true}}return false}function coerce(e){if(e instanceof Error){return e.stack||e.message}return e}createDebug.enable(createDebug.load());return createDebug}e.exports=setup},6720:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=n(8715);const s=i(n(4573));const c=i(n(8685));const u=i(n(586));const l=i(n(1776));const f=i(n(9268));const p=i(n(3789));const d=i(n(6760));const h=i(n(8303));function inspect(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:m}=e;const{currentTeam:v}=m;const{apiUrl:g}=e;const y=t["--debug"];const b=new s.default({apiUrl:g,token:r,currentTeam:v,debug:y});let w=null;try{({contextName:w}=yield h.default(b))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){i.error(e.message);return 1}throw e}const[x]=n;const k=u.default();if(!x){i.error(`${c.default("now domains inspect <domain>")} expects one argument`);return 1}if(n.length!==1){i.error(`Invalid number of arguments. Usage: ${o.default.cyan("`now domains inspect <domain>`")}`);return 1}i.debug(`Fetching domain info`);const j=yield d.default(b,w,x);if(j instanceof a.DomainNotFound){i.error(`Domain not found by "${x}" under ${o.default.bold(w)}`);i.log(`Run ${c.default("now domains ls")} to see your domains.`);return 1}if(j instanceof a.DomainPermissionDenied){i.error(`You don't have access to the domain ${x} under ${o.default.bold(w)}`);i.log(`Run ${c.default("now domains ls")} to see your domains.`);return 1}i.log(`Domain ${x} found under ${o.default.bold(w)} ${o.default.gray(k())}`);i.print("\n");i.print(o.default.bold(" General\n\n"));i.print(` ${o.default.cyan("Name")}\t\t\t${j.name}\n`);i.print(` ${o.default.cyan("Service Type")}\t\t${j.serviceType}\n`);i.print(` ${o.default.cyan("Ordered At")}\t\t\t${f.default(j.orderedAt)}\n`);i.print(` ${o.default.cyan("Transfer Started At")}\t\t${f.default(j.transferStartedAt)}\n`);i.print(` ${o.default.cyan("Created At")}\t\t\t${f.default(j.createdAt)}\n`);i.print(` ${o.default.cyan("Bought At")}\t\t\t${f.default(j.boughtAt)}\n`);i.print(` ${o.default.cyan("Transferred At")}\t\t${f.default(j.transferredAt)}\n`);i.print(` ${o.default.cyan("Expires At")}\t\t\t${f.default(j.expiresAt)}\n`);i.print(` ${o.default.cyan("NS Verified At")}\t\t${f.default(j.nsVerifiedAt)}\n`);i.print(` ${o.default.cyan("TXT Verified At")}\t\t${f.default(j.txtVerifiedAt)}\n`);i.print(` ${o.default.cyan("CDN Enabled")}\t\t${true}\n`);i.print("\n");i.print(o.default.bold(" Nameservers\n\n"));i.print(`${p.default(j.intendedNameservers,j.nameservers,{extraSpace:" "})}\n`);i.print("\n");i.print(o.default.bold(" Verification Record\n\n"));i.print(`${l.default([["_now","TXT",j.verificationRecord]],{extraSpace:" "})}\n`);i.print("\n");if(!j.verified){i.warn(`This domain is not verified. To verify it you should either:`);i.print(` ${o.default.gray("a)")} Change your domain nameservers to the intended set detailed above. ${o.default.gray("[recommended]")}\n`);i.print(` ${o.default.gray("b)")} Add a DNS TXT record with the name and value shown above.\n\n`);i.print(` We will run a verification for you and you will receive an email upon completion.\n`);i.print(` If you want to force running a verification, you can run ${c.default("now domains verify <domain>")}\n`);i.print(" Read more: https://err.sh/now/domain-verification\n\n")}return null})}t.default=inspect},6723:function(e,t,n){var r=n(6354);var i=n(4733);var o=n(662);var a=function(){};var s=/^v?\.0/.test(process.version);var c=function(e){return typeof e==="function"};var u=function(e){if(!s)return false;if(!o)return false;return(e instanceof(o.ReadStream||a)||e instanceof(o.WriteStream||a))&&c(e.close)};var l=function(e){return e.setHeader&&c(e.abort)};var f=function(e,t,n,o){o=r(o);var s=false;e.on("close",function(){s=true});i(e,{readable:t,writable:n},function(e){if(e)return o(e);s=true;o()});var f=false;return function(t){if(s)return;if(f)return;f=true;if(u(e))return e.close(a);if(l(e))return e.abort();if(c(e.destroy))return e.destroy();o(t||new Error("stream was destroyed"))}};var p=function(e){e()};var d=function(e,t){return e.pipe(t)};var h=function(){var e=Array.prototype.slice.call(arguments);var t=c(e[e.length-1]||a)&&e.pop()||a;if(Array.isArray(e[0]))e=e[0];if(e.length<2)throw new Error("pump requires two streams per minimum");var n;var r=e.map(function(i,o){var a=o<e.length-1;var s=o>0;return f(i,a,s,function(e){if(!n)n=e;if(e)r.forEach(p);if(a)return;r.forEach(p);t(n)})});return e.reduce(d)};e.exports=h},6725:function(e,t,n){"use strict";var r=n(8053);var i={};i.rules=n(8759).map(function(e){return{rule:e,suffix:e.replace(/^(\*\.|\!)/,""),punySuffix:-1,wildcard:e.charAt(0)==="*",exception:e.charAt(0)==="!"}});i.endsWith=function(e,t){return e.indexOf(t,e.length-t.length)!==-1};i.findRule=function(e){var t=r.toASCII(e);return i.rules.reduce(function(e,n){if(n.punySuffix===-1){n.punySuffix=r.toASCII(n.suffix)}if(!i.endsWith(t,"."+n.punySuffix)&&t!==n.punySuffix){return e}return n},null)};t.errorCodes={DOMAIN_TOO_SHORT:"Domain name too short.",DOMAIN_TOO_LONG:"Domain name too long. It should be no more than 255 chars.",LABEL_STARTS_WITH_DASH:"Domain name label can not start with a dash.",LABEL_ENDS_WITH_DASH:"Domain name label can not end with a dash.",LABEL_TOO_LONG:"Domain name label should be at most 63 chars long.",LABEL_TOO_SHORT:"Domain name label should be at least 1 character long.",LABEL_INVALID_CHARS:"Domain name label can only contain alphanumeric characters or dashes."};i.validate=function(e){var t=r.toASCII(e);if(t.length<1){return"DOMAIN_TOO_SHORT"}if(t.length>255){return"DOMAIN_TOO_LONG"}var n=t.split(".");var i;for(var o=0;o<n.length;++o){i=n[o];if(!i.length){return"LABEL_TOO_SHORT"}if(i.length>63){return"LABEL_TOO_LONG"}if(i.charAt(0)==="-"){return"LABEL_STARTS_WITH_DASH"}if(i.charAt(i.length-1)==="-"){return"LABEL_ENDS_WITH_DASH"}if(!/^[a-z0-9\-]+$/.test(i)){return"LABEL_INVALID_CHARS"}}};t.parse=function(e){if(typeof e!=="string"){throw new TypeError("Domain name must be a string.")}var n=e.slice(0).toLowerCase();if(n.charAt(n.length-1)==="."){n=n.slice(0,n.length-1)}var o=i.validate(n);if(o){return{input:e,error:{message:t.errorCodes[o],code:o}}}var a={input:e,tld:null,sld:null,domain:null,subdomain:null,listed:false};var s=n.split(".");if(s[s.length-1]==="local"){return a}var c=function(){if(!/xn--/.test(n)){return a}if(a.domain){a.domain=r.toASCII(a.domain)}if(a.subdomain){a.subdomain=r.toASCII(a.subdomain)}return a};var u=i.findRule(n);if(!u){if(s.length<2){return a}a.tld=s.pop();a.sld=s.pop();a.domain=[a.sld,a.tld].join(".");if(s.length){a.subdomain=s.pop()}return c()}a.listed=true;var l=u.suffix.split(".");var f=s.slice(0,s.length-l.length);if(u.exception){f.push(l.shift())}a.tld=l.join(".");if(!f.length){return c()}if(u.wildcard){l.unshift(f.pop());a.tld=l.join(".")}if(!f.length){return c()}a.sld=f.pop();a.domain=[a.sld,a.tld].join(".");if(f.length){a.subdomain=f.join(".")}return c()};t.get=function(e){if(!e){return null}return t.parse(e).domain||null};t.isValid=function(e){var n=t.parse(e);return Boolean(n.domain&&n.listed)}},6745:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=n(6725);const s=i(n(9544));const c=o(n(8715));const u=i(n(4573));const l=i(n(5523));const f=i(n(4278));const p=i(n(1776));const d=i(n(8734));const h=i(n(336));const m=i(n(8303));const v=i(n(586));const g=i(n(9211));const y=i(n(9199));function issue(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:o}=e;const{currentTeam:a}=o;const{apiUrl:p}=e;const g=v.default();let b;const{"--challenge-only":w,"--overwrite":x,"--debug":k,"--crt":j,"--key":S,"--ca":E}=t;const _=new u.default({apiUrl:p,token:r,currentTeam:a,debug:k});let C=null;try{({contextName:C}=yield m.default(_))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){i.error(e.message);return 1}throw e}if(x){i.error("Overwrite option is deprecated");return 1}if(j||S||E){if(n.length!==0||(!j||!S||!E)){i.error(`Invalid number of arguments to create a custom certificate entry. Usage:`);i.print(` ${s.default.cyan(`now certs issue --crt <domain.crt> --key <domain.key> --ca <ca.crt>`)}\n`);return 1}try{b=yield f.default(_,S,j,E,C)}catch(e){if(e.code==="ENOENT"){i.error(`The specified file "${e.path}" doesn't exist.`);return 1}throw e}if(b instanceof c.InvalidCert){i.error(`The provided certificate is not valid and cannot be added.`);return 1}if(b instanceof c.DomainPermissionDenied){i.error(`You do not have permissions over domain ${s.default.underline(b.meta.domain)} under ${s.default.bold(b.meta.context)}.`);return 1}i.success(`Certificate entry for ${s.default.bold(b.cns.join(", "))} created ${g()}`);return 0}if(n.length<1){i.error(`Invalid number of arguments to create a custom certificate entry. Usage:`);i.print(` ${s.default.cyan(`now certs issue <cn>[, <cn>]`)}\n`);return 1}const A=h.default(n);if(w){return runStartOrder(i,_,A,C,g)}b=yield d.default(_,A,C);if(b instanceof c.CertOrderNotFound){b=yield l.default(_,A,C)}if(b instanceof c.CertError){if(b.meta.code==="wildcard_not_allowed"){return runStartOrder(i,_,A,C,g,{fallingBack:true})}}const O=y.default(i,b);if(O===1){return O}if(O instanceof c.DomainPermissionDenied){i.error(`You do not have permissions over domain ${s.default.underline(O.meta.domain)} under ${s.default.bold(O.meta.context)}.`);return 1}i.success(`Certificate entry for ${s.default.bold(O.cns.join(", "))} created ${g()}`);return 0})}t.default=issue;function runStartOrder(e,t,n,i,o,{fallingBack:u=false}={}){return r(this,void 0,void 0,function*(){const{challengesToResolve:r}=yield g.default(t,n,i);const l=r.filter(e=>e.status==="pending");if(u){e.warn(`To generate a wildcard certificate for domain for an external domain you must solve challenges manually.`)}if(l.length===0){e.log(`A certificate issuance for ${s.default.bold(n.join(", "))} has been started ${o()}`);e.print(` There are no pending challenges. Finish the issuance by running: \n`);e.print(` ${s.default.cyan(`now certs issue ${n.join(" ")}`)}\n`);return 0}e.log(`A certificate issuance for ${s.default.bold(n.join(", "))} has been started ${o()}`);e.print(` Add the following TXT records with your registrar to be able to the solve the DNS challenge:\n\n`);const[f,...d]=p.default(l.map(e=>{const t=a.parse(e.domain);if(t.error){throw new c.InvalidDomain(e.domain)}return[t.subdomain?`_acme-challenge.${t.subdomain}`:`_acme-challenge`,"TXT",e.value]})).split("\n");e.print(`${f}\n`);process.stdout.write(`${d.join("\n")}\n\n`);e.log(`To issue the certificate once the records are added, run:`);e.print(` ${s.default.cyan(`now certs issue ${n.join(" ")}`)}\n`);e.print(" Read more: https://err.sh/now/solve-challenges-manually\n");return 0})}},6750:function(e){e.exports={$id:"query.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",required:["name","value"],properties:{name:{type:"string"},value:{type:"string"},comment:{type:"string"}}}},6757:function(e,t){Object.defineProperty(t,"__esModule",{value:true});var n;var r=function(){function FunctionToString(){this.name=FunctionToString.id}FunctionToString.prototype.setupOnce=function(){n=Function.prototype.toString;Function.prototype.toString=function(){var e=[];for(var t=0;t<arguments.length;t++){e[t]=arguments[t]}var r=this.__sentry__?this.__sentry_original__:this;return n.apply(r,e)}};FunctionToString.id="FunctionToString";return FunctionToString}();t.FunctionToString=r},6758:function(e){e.exports=require("fsevents")},6760:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(8950));const s=n(8715);function getDomainByName(e,t,n){return r(this,void 0,void 0,function*(){const r=a.default(`Fetching domain ${n} under ${o.default.bold(t)}`);try{const{domain:i}=yield e.fetch(`/v4/domains/${n}`);r();return i}catch(e){r();if(e.status===404){return new s.DomainNotFound(n)}if(e.status===403){return new s.DomainPermissionDenied(n,t)}throw e}})}t.default=getDomainByName},6766:function(e){var t=e.exports={version:"2.6.9"};if(typeof __e=="number")__e=t},6768:function(e,t,n){"use strict";var r=n(3384);var i=/^(\d\d\d\d)-(\d\d)-(\d\d)$/;var o=[0,31,28,31,30,31,30,31,31,30,31,30,31];var a=/^(\d\d):(\d\d):(\d\d)(\.\d+)?(z|[+-]\d\d:\d\d)?$/i;var s=/^[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[-0-9a-z]{0,61}[0-9a-z])?)*$/i;var c=/^(?:[a-z][a-z0-9+\-.]*:)(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'()*+,;=:@]|%[0-9a-f]{2})*)*)(?:\?(?:[a-z0-9\-._~!$&'()*+,;=:@\/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'()*+,;=:@\/?]|%[0-9a-f]{2})*)?$/i;var u=/^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@\/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@\/?]|%[0-9a-f]{2})*)?$/i;var l=/^(?:(?:[^\x00-\x20"'<>%\\^`{|}]|%[0-9a-f]{2})|\{[+#.\/;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?)*\})*$/i;var f=/^(?:(?:http[s\u017F]?|ftp):\/\/)(?:(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+(?::(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*)?@)?(?:(?!10(?:\.[0-9]{1,3}){3})(?!127(?:\.[0-9]{1,3}){3})(?!169\.254(?:\.[0-9]{1,3}){2})(?!192\.168(?:\.[0-9]{1,3}){2})(?!172\.(?:1[6-9]|2[0-9]|3[01])(?:\.[0-9]{1,3}){2})(?:[1-9][0-9]?|1[0-9][0-9]|2[01][0-9]|22[0-3])(?:\.(?:1?[0-9]{1,2}|2[0-4][0-9]|25[0-5])){2}(?:\.(?:[1-9][0-9]?|1[0-9][0-9]|2[0-4][0-9]|25[0-4]))|(?:(?:(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-?)*(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)(?:\.(?:(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-?)*(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)*(?:\.(?:(?:[KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]){2,})))(?::[0-9]{2,5})?(?:\/(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*)?$/i;var p=/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i;var d=/^(?:\/(?:[^~\/]|~0|~1)*)*$/;var h=/^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i;var m=/^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~\/]|~0|~1)*)*)$/;e.exports=formats;function formats(e){e=e=="full"?"full":"fast";return r.copy(formats[e])}formats.fast={date:/^\d\d\d\d-[0-1]\d-[0-3]\d$/,time:/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d:\d\d)?$/i,"date-time":/^\d\d\d\d-[0-1]\d-[0-3]\d[t\s](?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d:\d\d)$/i,uri:/^(?:[a-z][a-z0-9+-.]*:)(?:\/?\/)?[^\s]*$/i,"uri-reference":/^(?:(?:[a-z][a-z0-9+-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,"uri-template":l,url:f,email:/^[a-z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i,hostname:s,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^\s*(?:(?:(?:[0-9a-f]{1,4}:){7}(?:[0-9a-f]{1,4}|:))|(?:(?:[0-9a-f]{1,4}:){6}(?::[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){5}(?:(?:(?::[0-9a-f]{1,4}){1,2})|:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){4}(?:(?:(?::[0-9a-f]{1,4}){1,3})|(?:(?::[0-9a-f]{1,4})?:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){3}(?:(?:(?::[0-9a-f]{1,4}){1,4})|(?:(?::[0-9a-f]{1,4}){0,2}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){2}(?:(?:(?::[0-9a-f]{1,4}){1,5})|(?:(?::[0-9a-f]{1,4}){0,3}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){1}(?:(?:(?::[0-9a-f]{1,4}){1,6})|(?:(?::[0-9a-f]{1,4}){0,4}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?::(?:(?:(?::[0-9a-f]{1,4}){1,7})|(?:(?::[0-9a-f]{1,4}){0,5}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(?:%.+)?\s*$/i,regex:regex,uuid:p,"json-pointer":d,"json-pointer-uri-fragment":h,"relative-json-pointer":m};formats.full={date:date,time:time,"date-time":date_time,uri:uri,"uri-reference":u,"uri-template":l,url:f,email:/^[a-z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+\/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i,hostname:hostname,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^\s*(?:(?:(?:[0-9a-f]{1,4}:){7}(?:[0-9a-f]{1,4}|:))|(?:(?:[0-9a-f]{1,4}:){6}(?::[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){5}(?:(?:(?::[0-9a-f]{1,4}){1,2})|:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){4}(?:(?:(?::[0-9a-f]{1,4}){1,3})|(?:(?::[0-9a-f]{1,4})?:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){3}(?:(?:(?::[0-9a-f]{1,4}){1,4})|(?:(?::[0-9a-f]{1,4}){0,2}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){2}(?:(?:(?::[0-9a-f]{1,4}){1,5})|(?:(?::[0-9a-f]{1,4}){0,3}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){1}(?:(?:(?::[0-9a-f]{1,4}){1,6})|(?:(?::[0-9a-f]{1,4}){0,4}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?::(?:(?:(?::[0-9a-f]{1,4}){1,7})|(?:(?::[0-9a-f]{1,4}){0,5}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(?:%.+)?\s*$/i,regex:regex,uuid:p,"json-pointer":d,"json-pointer-uri-fragment":h,"relative-json-pointer":m};function isLeapYear(e){return e%4===0&&(e%100!==0||e%400===0)}function date(e){var t=e.match(i);if(!t)return false;var n=+t[1];var r=+t[2];var a=+t[3];return r>=1&&r<=12&&a>=1&&a<=(r==2&&isLeapYear(n)?29:o[r])}function time(e,t){var n=e.match(a);if(!n)return false;var r=n[1];var i=n[2];var o=n[3];var s=n[5];return(r<=23&&i<=59&&o<=59||r==23&&i==59&&o==60)&&(!t||s)}var v=/t|\s/i;function date_time(e){var t=e.split(v);return t.length==2&&date(t[0])&&time(t[1],true)}function hostname(e){return e.length<=255&&s.test(e)}var g=/\/|:/;function uri(e){return g.test(e)&&c.test(e)}var y=/[^\\]\\Z/;function regex(e){if(y.test(e))return false;try{new RegExp(e);return true}catch(e){return false}}},6802:function(e,t,n){var r=n(3930);var i=n(1943);var o=n(4859);if(typeof o!=="function"){o=o.EventEmitter}var a;if(process.__signal_exit_emitter__){a=process.__signal_exit_emitter__}else{a=process.__signal_exit_emitter__=new o;a.count=0;a.emitted={}}if(!a.infinite){a.setMaxListeners(Infinity);a.infinite=true}e.exports=function(e,t){r.equal(typeof e,"function","a callback must be provided for exit handler");if(c===false){load()}var n="exit";if(t&&t.alwaysLast){n="afterexit"}var i=function(){a.removeListener(n,e);if(a.listeners("exit").length===0&&a.listeners("afterexit").length===0){unload()}};a.on(n,e);return i};e.exports.unload=unload;function unload(){if(!c){return}c=false;i.forEach(function(e){try{process.removeListener(e,s[e])}catch(e){}});process.emit=l;process.reallyExit=u;a.count-=1}function emit(e,t,n){if(a.emitted[e]){return}a.emitted[e]=true;a.emit(e,t,n)}var s={};i.forEach(function(e){s[e]=function listener(){var t=process.listeners(e);if(t.length===a.count){unload();emit("exit",null,e);emit("afterexit",null,e);process.kill(process.pid,e)}}});e.exports.signals=function(){return i};e.exports.load=load;var c=false;function load(){if(c){return}c=true;a.count+=1;i=i.filter(function(e){try{process.on(e,s[e]);return true}catch(e){return false}});process.emit=processEmit;process.reallyExit=processReallyExit}var u=process.reallyExit;function processReallyExit(e){process.exitCode=e||0;emit("exit",process.exitCode,null);emit("afterexit",process.exitCode,null);u.call(process,process.exitCode)}var l=process.emit;function processEmit(e,t){if(e==="exit"){if(t!==undefined){process.exitCode=t}var n=l.apply(this,arguments);emit("exit",process.exitCode,null);emit("afterexit",process.exitCode,null);return n}else{return l.apply(this,arguments)}}},6804:function(e,t){Object.defineProperty(t,"__esModule",{value:true});var n;(function(e){e["Unknown"]="unknown";e["Skipped"]="skipped";e["Success"]="success";e["RateLimit"]="rate_limit";e["Invalid"]="invalid";e["Failed"]="failed"})(n=t.Status||(t.Status={}));(function(e){function fromHttpCode(t){if(t>=200&&t<300){return e.Success}if(t===429){return e.RateLimit}if(t>=400&&t<500){return e.Invalid}if(t>=500){return e.Failed}return e.Unknown}e.fromHttpCode=fromHttpCode})(n=t.Status||(t.Status={}))},6811:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(5032));function getAuthCode(e){return r(this,void 0,void 0,function*(){if(isValidAuthCode(e)){return e}return o.default({label:`- Transfer auth code: `,validateValue:isValidAuthCode})})}t.default=getAuthCode;function isValidAuthCode(e){return!!(e&&e.length>0)}},6814:function(e,t,n){"use strict";n.r(t);var r=n(816);var i=n.n(r);var o=n(9544);var a=n.n(o);var s=n(4999);var c=n.n(s);var u=n(2385);var l=n(4573);var f=n.n(l);var p=n(8303);var d=n.n(p);var h=n(5242);var m=n.n(h);const v=()=>{console.log(`\n ${a.a.bold(`${c.a} now whoami`)}\n\n ${a.a.dim("Options:")}\n\n -h, --help Output usage information\n -A ${a.a.bold.underline("FILE")}, --local-config=${a.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${a.a.bold.underline("DIR")}, --global-config=${a.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -d, --debug Debug mode [off]\n -t ${a.a.bold.underline("TOKEN")}, --token=${a.a.bold.underline("TOKEN")} Login token\n\n ${a.a.dim("Examples:")}\n\n ${a.a.gray("")} Shows the username of the currently logged in user\n\n ${a.a.cyan("$ now whoami")}\n`)};let g;const y=async e=>{g=i()(e.argv.slice(2),{boolean:["help","debug","all"],alias:{help:"h",debug:"d"}});g._=g._.slice(1);if(g.help||g._[0]==="help"){v();process.exit(0)}const t=g["--debug"];const{authConfig:{token:n},apiUrl:r}=e;const o=m()({debug:t});const a=new f.a({apiUrl:r,token:n,debug:t});let s=null;try{({contextName:s}=await d()(a))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){o.error(e.message);return 1}throw e}await whoami(s)};t["default"]=(async e=>{try{await y(e)}catch(e){Object(u["handleError"])(e);process.exit(1)}});async function whoami(e){if(process.stdout.isTTY){process.stdout.write("> ")}console.log(e)}},6824:function(e,t,n){"use strict";var r=n(649);var i=n(7804);var o=function errorEx(e,t){if(!e||e.constructor!==String){t=e||{};e=Error.name}var n=function ErrorEXError(r){if(!this){return new ErrorEXError(r)}r=r instanceof Error?r.message:r||this.message;Error.call(this,r);Error.captureStackTrace(this,n);this.name=e;Object.defineProperty(this,"message",{configurable:true,enumerable:false,get:function(){var e=r.split(/\r?\n/g);for(var n in t){if(!t.hasOwnProperty(n)){continue}var o=t[n];if("message"in o){e=o.message(this[n],e)||e;if(!i(e)){e=[e]}}}return e.join("\n")},set:function(e){r=e}});var o=null;var a=Object.getOwnPropertyDescriptor(this,"stack");var s=a.get;var c=a.value;delete a.value;delete a.writable;a.set=function(e){o=e};a.get=function(){var e=(o||(s?s.call(this):c)).split(/\r?\n+/g);if(!o){e[0]=this.name+": "+this.message}var n=1;for(var r in t){if(!t.hasOwnProperty(r)){continue}var i=t[r];if("line"in i){var a=i.line(this[r]);if(a){e.splice(n++,0," "+a)}}if("stack"in i){i.stack(this[r],e)}}return e.join("\n")};Object.defineProperty(this,"stack",a)};if(Object.setPrototypeOf){Object.setPrototypeOf(n.prototype,Error.prototype);Object.setPrototypeOf(n,Error)}else{r.inherits(n,Error)}return n};o.append=function(e,t){return{message:function(n,r){n=n||t;if(n){r[0]+=" "+e.replace("%s",n.toString())}return r}}};o.line=function(e,t){return{line:function(n){n=n||t;if(n){return e.replace("%s",n.toString())}return null}}};e.exports=o},6828:function(e,t,n){"use strict";var r=n(8901);var i=n(9544);var o=e.exports=function(){this.pointer=0;this.lastIndex=0};o.prototype.paginate=function(e,t,n){n=n||7;var o=Math.floor(n/2);var a=e.split("\n");if(a.length<=n){return e}if(this.pointer<o&&this.lastIndex<t&&t-this.lastIndex<n){this.pointer=Math.min(o,this.pointer+t-this.lastIndex)}this.lastIndex=t;var s=r.flatten([a,a,a]);var c=Math.max(0,t+a.length-this.pointer);var u=s.splice(c,n).join("\n");return u+"\n"+i.dim("(Move up and down to reveal more choices)")}},6835:function(){throw new Error("Module parse failed: Unexpected token (1:0)\nYou may need an appropriate loader to handle this file type.\n> <!doctype html>\n| \x3c!-- https://now.sh --\x3e\n| <h1>Redirecting ({{= it.statusCode }})</h1>")},6836:function(e,t,n){"use strict";var r=n(5897);e.exports=function(e,t){e=stripTrailingSep(e);t=stripTrailingSep(t);if(process.platform==="win32"){e=e.toLowerCase();t=t.toLowerCase()}return e.lastIndexOf(t,0)===0&&(e[t.length]===r.sep||e[t.length]===undefined)};function stripTrailingSep(e){if(e[e.length-1]===r.sep){return e.slice(0,-1)}return e}},6839:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5897);const o=n(2617);const a=n(501);const s=n(5899).pathExists;function createFile(e,t){function makeFile(){o.writeFile(e,"",e=>{if(e)return t(e);t()})}s(e,(n,r)=>{if(n)return t(n);if(r)return t();const o=i.dirname(e);s(o,(e,n)=>{if(e)return t(e);if(n)return makeFile();a.mkdirs(o,e=>{if(e)return t(e);makeFile()})})})}function createFileSync(e){if(o.existsSync(e))return;const t=i.dirname(e);if(!o.existsSync(t)){a.mkdirsSync(t)}o.writeFileSync(e,"")}e.exports={createFile:r(createFile),createFileSync:createFileSync}},6857:function(e,t,n){e.exports=n(5951).Transform},6871:function(e){function pascalcase(e){if(typeof e!=="string"){throw new TypeError("expected a string.")}e=e.replace(/([A-Z])/g," $1");if(e.length===1){return e.toUpperCase()}e=e.replace(/^[\W_]+|[\W_]+$/g,"").toLowerCase();e=e.charAt(0).toUpperCase()+e.slice(1);return e.replace(/[\W_]+(\w|$)/g,function(e,t){return t.toUpperCase()})}e.exports=pascalcase},6873:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return getProjectName});var r=n(5897);var i=n.n(r);function getProjectName({argv:e,nowConfig:t,isFile:n,paths:i,pre:o}){const a=e["--name"]||e.name;if(a){return a}if(t.name){return t.name}if(o){return o}if(n||i.length>1){return"files"}return Object(r["basename"])(i[0])}},6875:function(e,t,n){"use strict";var r=n(7030);var i=n(9799);var o=n(4882);var a=n(5306);var s=n(4650);var c={};var u={};function Snapdragon(e){r.call(this,null,e);this.options=s.extend({source:"string"},this.options);this.compiler=new o(this.options);this.parser=new a(this.options);Object.defineProperty(this,"compilers",{get:function(){return this.compiler.compilers}});Object.defineProperty(this,"parsers",{get:function(){return this.parser.parsers}});Object.defineProperty(this,"regex",{get:function(){return this.parser.regex}})}r.extend(Snapdragon);Snapdragon.prototype.capture=function(){return this.parser.capture.apply(this.parser,arguments)};Snapdragon.prototype.use=function(e){e.call(this,this);return this};Snapdragon.prototype.parse=function(e,t){this.options=s.extend({},this.options,t);var n=this.parser.parse(e,this.options);i(n,"parser",this.parser);return n};Snapdragon.prototype.compile=function(e,t){this.options=s.extend({},this.options,t);var n=this.compiler.compile(e,this.options);i(n,"compiler",this.compiler);return n};e.exports=Snapdragon;e.exports.Compiler=o;e.exports.Parser=a},6878:function(e,t,n){var r=n(8444);function startOfISOWeek(e){return r(e,{weekStartsOn:1})}e.exports=startOfISOWeek},6879:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(6097);const a=i(n(5523));const s=i(n(8806));const c=i(n(8952));const u=i(n(586));const l=i(n(8950));function createCertificateForAlias(e,t,n,i,f){return r(this,void 0,void 0,function*(){const r=f?s.default(i):[i];const p=l.default(`Generating a certificate...`);const d=u.default();const h=yield a.default(t,r,n);if(h instanceof o.NowError){p();return h}p();e.log(`Certificate for ${c.default(h.cns)} (${h.uid}) created ${d()}`);return h})}t.default=createCertificateForAlias},6881:function(e,t,n){var r=t,i=n(774),o=n(649)._extend,a=n(9115);var s=/(^|,)\s*upgrade\s*($|,)/i,c=/^https|wss/;r.isSSL=c;r.setupOutgoing=function(e,t,n,u){e.port=t[u||"target"].port||(c.test(t[u||"target"].protocol)?443:80);["host","hostname","socketPath","pfx","key","passphrase","cert","ca","ciphers","secureProtocol"].forEach(function(n){e[n]=t[u||"target"][n]});e.method=t.method||n.method;e.headers=o({},n.headers);if(t.headers){o(e.headers,t.headers)}if(t.auth){e.auth=t.auth}if(t.ca){e.ca=t.ca}if(c.test(t[u||"target"].protocol)){e.rejectUnauthorized=typeof t.secure==="undefined"?true:t.secure}e.agent=t.agent||false;e.localAddress=t.localAddress;if(!e.agent){e.headers=e.headers||{};if(typeof e.headers.connection!=="string"||!s.test(e.headers.connection)){e.headers.connection="close"}}var l=t[u||"target"];var f=l&&t.prependPath!==false?l.path||"":"";var p=!t.toProxy?i.parse(n.url).path||"":n.url;p=!t.ignorePath?p:"";e.path=r.urlJoin(f,p);if(t.changeOrigin){e.headers.host=a(e.port,t[u||"target"].protocol)&&!hasPort(e.host)?e.host+":"+e.port:e.host}return e};r.setupSocket=function(e){e.setTimeout(0);e.setNoDelay(true);e.setKeepAlive(true,0);return e};r.getPort=function(e){var t=e.headers.host?e.headers.host.match(/:(\d+)/):"";return t?t[1]:r.hasEncryptedConnection(e)?"443":"80"};r.hasEncryptedConnection=function(e){return Boolean(e.connection.encrypted||e.connection.pair)};r.urlJoin=function(){var e=Array.prototype.slice.call(arguments),t=e.length-1,n=e[t],r=n.split("?"),i;e[t]=r.shift();i=[e.filter(Boolean).join("/").replace(/\/+/g,"/").replace("http:/","http://").replace("https:/","https://")];i.push.apply(i,r);return i.join("?")};r.rewriteCookieProperty=function rewriteCookieProperty(e,t,n){if(Array.isArray(e)){return e.map(function(e){return rewriteCookieProperty(e,t,n)})}return e.replace(new RegExp("(;\\s*"+n+"=)([^;]+)","i"),function(e,n,r){var i;if(r in t){i=t[r]}else if("*"in t){i=t["*"]}else{return e}if(i){return n+i}else{return""}})};function hasPort(e){return!!~e.indexOf(":")}},6883:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);var o=n(2616);var a=n.n(o);var s=n(816);var c=n.n(s);var u=n(2229);var l=n.n(u);var f=n(3759);var p=n.n(f);var d=n(4110);var h=n.n(d);var m=n(2385);var v=n(1581);var g=n(3241);var y=n(4999);var b=n.n(y);var w=n(4573);var x=n.n(w);var k=n(8303);var j=n.n(k);var S=n(5242);var E=n.n(S);const _=()=>{console.log(`\n ${i.a.bold(`${b.a} now secrets`)} [options] <command>\n\n ${i.a.dim("Commands:")}\n\n ls Show all secrets in a list\n add [name] [value] Add a new secret\n rename [old-name] [new-name] Change the name of a secret\n rm [name] Remove a secret\n\n ${i.a.dim("Options:")}\n\n -h, --help Output usage information\n -A ${i.a.bold.underline("FILE")}, --local-config=${i.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${i.a.bold.underline("DIR")}, --global-config=${i.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -d, --debug Debug mode [off]\n -t ${i.a.bold.underline("TOKEN")}, --token=${i.a.bold.underline("TOKEN")} Login token\n -S, --scope Set a custom scope\n\n ${i.a.dim("Examples:")}\n\n ${i.a.gray("")} Add a new secret\n\n ${i.a.cyan('$ now secrets add my-secret "my value"')}\n\n ${i.a.gray("")} Once added, a secret's value can't be retrieved in plain text anymore\n ${i.a.gray("")} If the secret's value is more than one word, wrap it in quotes\n ${i.a.gray("")} When in doubt, always wrap your value in quotes\n\n ${i.a.gray("")} Expose a secret as an environment variable (notice the ${i.a.cyan.bold("`@`")} symbol)\n\n ${i.a.cyan(`$ now -e MY_SECRET=${i.a.bold("@my-secret")}`)}\n`)};let C;let A;let O;let F;const D=async e=>{C=c()(e.argv.slice(2),{boolean:["help","debug","yes"],alias:{help:"h",debug:"d",yes:"y"}});C._=C._.slice(1);A=C.debug;O=e.apiUrl;F=C._[0];if(C.help||!F){_();await Object(g["default"])(0)}const{authConfig:{token:t},config:{currentTeam:n}}=e;const r=E()({debug:A});const i=new x.a({apiUrl:O,token:t,currentTeam:n,debug:A});let o=null;try{({contextName:o}=await j()(i))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){r.error(e.message);return 1}throw e}try{await run({output:r,token:t,contextName:o,currentTeam:n})}catch(e){Object(m["handleError"])(e);Object(g["default"])(1)}};t["default"]=(async e=>{try{await D(e)}catch(e){Object(m["handleError"])(e);process.exit(1)}});async function run({output:e,token:t,contextName:n,currentTeam:r}){const o=new v["default"]({apiUrl:O,token:t,debug:A,currentTeam:r});const s=C._.slice(1);const c=Date.now();if(F==="ls"||F==="list"){if(s.length!==0){console.error(Object(m["error"])(`Invalid number of arguments. Usage: ${i.a.cyan("`now secret ls`")}`));return Object(g["default"])(1)}const e=await o.ls();const t=l()(new Date-c);console.log(`> ${p()("secret",e.length,true)} found under ${i.a.bold(n)} ${i.a.gray(`[${t}]`)}`);if(e.length>0){const t=Date.now();const n=[["","name","created"].map(e=>i.a.dim(e))];const r=a()(n.concat(e.map(e=>["",i.a.bold(e.name),i.a.gray(`${l()(t-new Date(e.created))} ago`)])),{align:["l","l","l"],hsep:" ".repeat(2),stringLength:h.a});if(r){console.log(`\n${r}\n`)}}return o.close()}if(F==="rm"||F==="remove"){if(s.length!==1){console.error(Object(m["error"])(`Invalid number of arguments. Usage: ${i.a.cyan("`now secret rm <name>`")}`));return Object(g["default"])(1)}const e=await o.ls();const t=e.find(e=>e.name===s[0]);if(t){const e=C.yes||await readConfirmation(t);if(!e){console.error(Object(m["error"])("User abort"));return Object(g["default"])(0)}}else{console.error(Object(m["error"])(`No secret found by name "${s[0]}"`));return Object(g["default"])(1)}const n=await o.rm(s[0]);const r=l()(new Date-c);console.log(`${i.a.cyan("> Success!")} Secret ${i.a.bold(n.name)} removed ${i.a.gray(`[${r}]`)}`);return o.close()}if(F==="rename"){if(s.length!==2){console.error(Object(m["error"])(`Invalid number of arguments. Usage: ${i.a.cyan("`now secret rename <old-name> <new-name>`")}`));return Object(g["default"])(1)}const e=await o.rename(s[0],s[1]);const t=l()(new Date-c);console.log(`${i.a.cyan("> Success!")} Secret ${i.a.bold(e.oldName)} renamed to ${i.a.bold(s[1])} ${i.a.gray(`[${t}]`)}`);return o.close()}if(F==="add"||F==="set"){if(s.length!==2){console.error(Object(m["error"])(`Invalid number of arguments. Usage: ${i.a.cyan("`now secret add <name> <value>`")}`));if(s.length>2){const e=i.a.cyan(`$ now secret add -- "${s[0]}"`);console.log(`> If your secret has spaces or starts with '-', make sure to terminate command options with double dash and wrap it in quotes. Example: \n ${e} `)}return Object(g["default"])(1)}const[t,r]=s;await o.add(t,r);const a=l()(new Date-c);if(t!==t.toLowerCase()){e.warn(`Your secret name was converted to lower-case`)}console.log(`${i.a.cyan("> Success!")} Secret ${i.a.bold(t.toLowerCase())} added (${i.a.bold(n)}) ${i.a.gray(`[${a}]`)}`);return o.close()}console.error(Object(m["error"])("Please specify a valid subcommand: ls | add | rename | rm"));_();Object(g["default"])(1)}process.on("uncaughtException",e=>{Object(m["handleError"])(e);Object(g["default"])(1)});function readConfirmation(e){return new Promise(t=>{const n=i.a.gray(`${l()(new Date-new Date(e.created))} ago`);const r=a()([[i.a.bold(e.name),n]],{align:["r","l"],hsep:" ".repeat(6)});process.stdout.write("> The following secret will be removed permanently\n");process.stdout.write(` ${r}\n`);process.stdout.write(`${i.a.bold.red("> Are you sure?")} ${i.a.gray("[y/N] ")}`);process.stdin.on("data",e=>{process.stdin.pause();t(e.toString().trim().toLowerCase()==="y")}).resume()})}},6884:function(e,t,n){e.exports=n(1804)},6885:function(e){"use strict";const t=e.exports;const n="[";const r="]";const i="";const o=";";const a=process.env.TERM_PROGRAM==="Apple_Terminal";t.cursorTo=((e,t)=>{if(typeof e!=="number"){throw new TypeError("The `x` argument is required")}if(typeof t!=="number"){return n+(e+1)+"G"}return n+(t+1)+";"+(e+1)+"H"});t.cursorMove=((e,t)=>{if(typeof e!=="number"){throw new TypeError("The `x` argument is required")}let r="";if(e<0){r+=n+-e+"D"}else if(e>0){r+=n+e+"C"}if(t<0){r+=n+-t+"A"}else if(t>0){r+=n+t+"B"}return r});t.cursorUp=(e=>n+(typeof e==="number"?e:1)+"A");t.cursorDown=(e=>n+(typeof e==="number"?e:1)+"B");t.cursorForward=(e=>n+(typeof e==="number"?e:1)+"C");t.cursorBackward=(e=>n+(typeof e==="number"?e:1)+"D");t.cursorLeft=n+"G";t.cursorSavePosition=n+(a?"7":"s");t.cursorRestorePosition=n+(a?"8":"u");t.cursorGetPosition=n+"6n";t.cursorNextLine=n+"E";t.cursorPrevLine=n+"F";t.cursorHide=n+"?25l";t.cursorShow=n+"?25h";t.eraseLines=(e=>{let n="";for(let r=0;r<e;r++){n+=t.eraseLine+(r<e-1?t.cursorUp():"")}if(e){n+=t.cursorLeft}return n});t.eraseEndLine=n+"K";t.eraseStartLine=n+"1K";t.eraseLine=n+"2K";t.eraseDown=n+"J";t.eraseUp=n+"1J";t.eraseScreen=n+"2J";t.scrollUp=n+"S";t.scrollDown=n+"T";t.clearScreen="c";t.clearTerminal=process.platform==="win32"?`${t.eraseScreen}${n}0f`:`${t.eraseScreen}${n}3J${n}H`;t.beep=i;t.link=((e,t)=>{return[r,"8",o,o,t,i,e,r,"8",o,o,i].join("")});t.image=((e,t)=>{t=t||{};let n=r+"1337;File=inline=1";if(t.width){n+=`;width=${t.width}`}if(t.height){n+=`;height=${t.height}`}if(t.preserveAspectRatio===false){n+=";preserveAspectRatio=0"}return n+":"+e.toString("base64")+i});t.iTerm={};t.iTerm.setCwd=(e=>r+"50;CurrentDir="+(e||process.cwd())+i)},6886:function(e){e.exports=require("stream")},6887:function(e){"use strict";var t="";var n;e.exports=repeat;function repeat(e,r){if(typeof e!=="string"){throw new TypeError("expected a string")}if(r===1)return e;if(r===2)return e+e;var i=e.length*r;if(n!==e||typeof n==="undefined"){n=e;t=""}else if(t.length>=i){return t.substr(0,i)}while(i>t.length&&r>1){if(r&1){t+=e}r>>=1;e+=e}t+=e;t=t.substr(0,i);return t}},6891:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(501);const a=n(4420);function outputJsonSync(e,t,n){const s=i.dirname(e);if(!r.existsSync(s)){o.mkdirsSync(s)}a.writeJsonSync(e,t,n)}e.exports=outputJsonSync},6904:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});const n={tick:process.platform==="win32"?"√":"✔",cross:process.platform==="win32"?"☓":"✘"};t.default=n},6906:function(e,t,n){t.SourceMapGenerator=n(5089).SourceMapGenerator;t.SourceMapConsumer=n(2267).SourceMapConsumer;t.SourceNode=n(8654).SourceNode},6921:function(e){"use strict";var t=process.platform==="win32";var n=/^([a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?([\\\/])?([\s\S]*?)$/;var r=/^([\s\S]*?)((?:\.{1,2}|[^\\\/]+?|)(\.[^.\/\\]*|))(?:[\\\/]*)$/;var i={};function win32SplitPath(e){var t=n.exec(e),i=(t[1]||"")+(t[2]||""),o=t[3]||"";var a=r.exec(o),s=a[1],c=a[2],u=a[3];return[i,s,c,u]}i.parse=function(e){if(typeof e!=="string"){throw new TypeError("Parameter 'pathString' must be a string, not "+typeof e)}var t=win32SplitPath(e);if(!t||t.length!==4){throw new TypeError("Invalid path '"+e+"'")}return{root:t[0],dir:t[0]+t[1].slice(0,-1),base:t[2],ext:t[3],name:t[2].slice(0,t[2].length-t[3].length)}};var o=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;var a={};function posixSplitPath(e){return o.exec(e).slice(1)}a.parse=function(e){if(typeof e!=="string"){throw new TypeError("Parameter 'pathString' must be a string, not "+typeof e)}var t=posixSplitPath(e);if(!t||t.length!==4){throw new TypeError("Invalid path '"+e+"'")}t[1]=t[1]||"";t[2]=t[2]||"";t[3]=t[3]||"";return{root:t[0],dir:t[0]+t[1].slice(0,-1),base:t[2],ext:t[3],name:t[2].slice(0,t[2].length-t[3].length)}};if(t)e.exports=i.parse;else e.exports=a.parse;e.exports.posix=a.parse;e.exports.win32=i.parse},6929:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(5799));function getDistTag(e){const t=i.default.parse(e);if(t&&typeof t.prerelease[0]==="string"){return t.prerelease[0]}return"latest"}t.getDistTag=getDistTag},6974:function(e){(function(t,n){if(typeof define==="function"&&define.amd){define([],function(){return n()})}else if(true&&e.exports){e.exports=n()}else{t.jsonSchema=n()}})(this,function(){var e=validate;e.Integer={type:"integer"};var t={String:String,Boolean:Boolean,Number:Number,Object:Object,Array:Array,Date:Date};e.validate=validate;function validate(e,t){return validate(e,t,{changing:false})}e.checkPropertyChange=function(e,t,n){return validate(e,t,{changing:n||"property"})};var validate=e._validate=function(e,n,r){if(!r)r={};var i=r.changing;function getType(e){return e.type||t[e.name]==e&&e.name.toLowerCase()}var o=[];function checkProp(e,t,n,a){var s;n+=n?typeof a=="number"?"["+a+"]":typeof a=="undefined"?"":"."+a:a;function addError(e){o.push({property:n,message:e})}if((typeof t!="object"||t instanceof Array)&&(n||typeof t!="function")&&!(t&&getType(t))){if(typeof t=="function"){if(!(e instanceof t)){addError("is not an instance of the class/constructor "+t.name)}}else if(t){addError("Invalid schema/property definition "+t)}return null}if(i&&t.readonly){addError("is a readonly field, it can not be changed")}if(t["extends"]){checkProp(e,t["extends"],n,a)}function checkType(e,t){if(e){if(typeof e=="string"&&e!="any"&&(e=="null"?t!==null:typeof t!=e)&&!(t instanceof Array&&e=="array")&&!(t instanceof Date&&e=="date")&&!(e=="integer"&&t%1===0)){return[{property:n,message:typeof t+" value found, but a "+e+" is required"}]}if(e instanceof Array){var r=[];for(var i=0;i<e.length;i++){if(!(r=checkType(e[i],t)).length){break}}if(r.length){return r}}else if(typeof e=="object"){var a=o;o=[];checkProp(t,e,n);var s=o;o=a;return s}}return[]}if(e===undefined){if(t.required){addError("is missing and it is required")}}else{o=o.concat(checkType(getType(t),e));if(t.disallow&&!checkType(t.disallow,e).length){addError(" disallowed value was matched")}if(e!==null){if(e instanceof Array){if(t.items){var c=t.items instanceof Array;var u=t.items;for(a=0,s=e.length;a<s;a+=1){if(c)u=t.items[a];if(r.coerce)e[a]=r.coerce(e[a],u);o.concat(checkProp(e[a],u,n,a))}}if(t.minItems&&e.length<t.minItems){addError("There must be a minimum of "+t.minItems+" in the array")}if(t.maxItems&&e.length>t.maxItems){addError("There must be a maximum of "+t.maxItems+" in the array")}}else if(t.properties||t.additionalProperties){o.concat(checkObj(e,t.properties,n,t.additionalProperties))}if(t.pattern&&typeof e=="string"&&!e.match(t.pattern)){addError("does not match the regex pattern "+t.pattern)}if(t.maxLength&&typeof e=="string"&&e.length>t.maxLength){addError("may only be "+t.maxLength+" characters long")}if(t.minLength&&typeof e=="string"&&e.length<t.minLength){addError("must be at least "+t.minLength+" characters long")}if(typeof t.minimum!==undefined&&typeof e==typeof t.minimum&&t.minimum>e){addError("must have a minimum value of "+t.minimum)}if(typeof t.maximum!==undefined&&typeof e==typeof t.maximum&&t.maximum<e){addError("must have a maximum value of "+t.maximum)}if(t["enum"]){var l=t["enum"];s=l.length;var f;for(var p=0;p<s;p++){if(l[p]===e){f=1;break}}if(!f){addError("does not have a value in the enumeration "+l.join(", "))}}if(typeof t.maxDecimal=="number"&&e.toString().match(new RegExp("\\.[0-9]{"+(t.maxDecimal+1)+",}"))){addError("may only have "+t.maxDecimal+" digits of decimal places")}}}return null}function checkObj(e,t,n,a){if(typeof t=="object"){if(typeof e!="object"||e instanceof Array){o.push({property:n,message:"an object is required"})}for(var s in t){if(t.hasOwnProperty(s)){var c=e[s];if(c===undefined&&r.existingOnly)continue;var u=t[s];if(c===undefined&&u["default"]){c=e[s]=u["default"]}if(r.coerce&&s in e){c=e[s]=r.coerce(c,u)}checkProp(c,u,n,s)}}}for(s in e){if(e.hasOwnProperty(s)&&!(s.charAt(0)=="_"&&s.charAt(1)=="_")&&t&&!t[s]&&a===false){if(r.filter){delete e[s];continue}else{o.push({property:n,message:typeof c+"The property "+s+" is not defined in the schema and the schema does not allow additional properties"})}}var l=t&&t[s]&&t[s].requires;if(l&&!(l in e)){o.push({property:n,message:"the presence of the property "+s+" requires that "+l+" also be present"})}c=e[s];if(a&&(!(t&&typeof t=="object")||!(s in t))){if(r.coerce){c=e[s]=r.coerce(c,a)}checkProp(c,a,n,s)}if(!i&&c&&c.$schema){o=o.concat(checkProp(c,c.$schema,n,s))}}return o}if(n){checkProp(e,n,"",i||"")}if(!i&&e&&e.$schema){checkProp(e,e.$schema,"","")}return{valid:!o.length,errors:o}};e.mustBeValid=function(e){if(!e.valid){throw new TypeError(e.errors.map(function(e){return"for property "+e.property+": "+e.message}).join(", \n"))}};return e})},6977:function(e,t,n){var r=n(3062).Buffer;var i={dsa:{parts:["p","q","g","y"],sizePart:"p"},rsa:{parts:["e","n"],sizePart:"n"},ecdsa:{parts:["curve","Q"],sizePart:"Q"},ed25519:{parts:["A"],sizePart:"A"}};i["curve25519"]=i["ed25519"];var o={dsa:{parts:["p","q","g","y","x"]},rsa:{parts:["n","e","d","iqmp","p","q"]},ecdsa:{parts:["curve","Q","d"]},ed25519:{parts:["A","k"]}};o["curve25519"]=o["ed25519"];var a={md5:true,sha1:true,sha256:true,sha384:true,sha512:true};var s={nistp256:{size:256,pkcs8oid:"1.2.840.10045.3.1.7",p:r.from(("00"+"ffffffff 00000001 00000000 00000000"+"00000000 ffffffff ffffffff ffffffff").replace(/ /g,""),"hex"),a:r.from(("00"+"FFFFFFFF 00000001 00000000 00000000"+"00000000 FFFFFFFF FFFFFFFF FFFFFFFC").replace(/ /g,""),"hex"),b:r.from(("5ac635d8 aa3a93e7 b3ebbd55 769886bc"+"651d06b0 cc53b0f6 3bce3c3e 27d2604b").replace(/ /g,""),"hex"),s:r.from(("00"+"c49d3608 86e70493 6a6678e1 139d26b7"+"819f7e90").replace(/ /g,""),"hex"),n:r.from(("00"+"ffffffff 00000000 ffffffff ffffffff"+"bce6faad a7179e84 f3b9cac2 fc632551").replace(/ /g,""),"hex"),G:r.from(("04"+"6b17d1f2 e12c4247 f8bce6e5 63a440f2"+"77037d81 2deb33a0 f4a13945 d898c296"+"4fe342e2 fe1a7f9b 8ee7eb4a 7c0f9e16"+"2bce3357 6b315ece cbb64068 37bf51f5").replace(/ /g,""),"hex")},nistp384:{size:384,pkcs8oid:"1.3.132.0.34",p:r.from(("00"+"ffffffff ffffffff ffffffff ffffffff"+"ffffffff ffffffff ffffffff fffffffe"+"ffffffff 00000000 00000000 ffffffff").replace(/ /g,""),"hex"),a:r.from(("00"+"FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF"+"FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFE"+"FFFFFFFF 00000000 00000000 FFFFFFFC").replace(/ /g,""),"hex"),b:r.from(("b3312fa7 e23ee7e4 988e056b e3f82d19"+"181d9c6e fe814112 0314088f 5013875a"+"c656398d 8a2ed19d 2a85c8ed d3ec2aef").replace(/ /g,""),"hex"),s:r.from(("00"+"a335926a a319a27a 1d00896a 6773a482"+"7acdac73").replace(/ /g,""),"hex"),n:r.from(("00"+"ffffffff ffffffff ffffffff ffffffff"+"ffffffff ffffffff c7634d81 f4372ddf"+"581a0db2 48b0a77a ecec196a ccc52973").replace(/ /g,""),"hex"),G:r.from(("04"+"aa87ca22 be8b0537 8eb1c71e f320ad74"+"6e1d3b62 8ba79b98 59f741e0 82542a38"+"5502f25d bf55296c 3a545e38 72760ab7"+"3617de4a 96262c6f 5d9e98bf 9292dc29"+"f8f41dbd 289a147c e9da3113 b5f0b8c0"+"0a60b1ce 1d7e819d 7a431d7c 90ea0e5f").replace(/ /g,""),"hex")},nistp521:{size:521,pkcs8oid:"1.3.132.0.35",p:r.from(("01ffffff ffffffff ffffffff ffffffff"+"ffffffff ffffffff ffffffff ffffffff"+"ffffffff ffffffff ffffffff ffffffff"+"ffffffff ffffffff ffffffff ffffffff"+"ffff").replace(/ /g,""),"hex"),a:r.from(("01FF"+"FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF"+"FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF"+"FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF"+"FFFFFFFF FFFFFFFF FFFFFFFF FFFFFFFC").replace(/ /g,""),"hex"),b:r.from(("51"+"953eb961 8e1c9a1f 929a21a0 b68540ee"+"a2da725b 99b315f3 b8b48991 8ef109e1"+"56193951 ec7e937b 1652c0bd 3bb1bf07"+"3573df88 3d2c34f1 ef451fd4 6b503f00").replace(/ /g,""),"hex"),s:r.from(("00"+"d09e8800 291cb853 96cc6717 393284aa"+"a0da64ba").replace(/ /g,""),"hex"),n:r.from(("01ff"+"ffffffff ffffffff ffffffff ffffffff"+"ffffffff ffffffff ffffffff fffffffa"+"51868783 bf2f966b 7fcc0148 f709a5d0"+"3bb5c9b8 899c47ae bb6fb71e 91386409").replace(/ /g,""),"hex"),G:r.from(("04"+"00c6 858e06b7 0404e9cd 9e3ecb66 2395b442"+"9c648139 053fb521 f828af60 6b4d3dba"+"a14b5e77 efe75928 fe1dc127 a2ffa8de"+"3348b3c1 856a429b f97e7e31 c2e5bd66"+"0118 39296a78 9a3bc004 5c8a5fb4 2c7d1bd9"+"98f54449 579b4468 17afbd17 273e662c"+"97ee7299 5ef42640 c550b901 3fad0761"+"353c7086 a272c240 88be9476 9fd16650").replace(/ /g,""),"hex")}};e.exports={info:i,privInfo:o,hashAlgs:a,curves:s}},6980:function(e){"use strict";e.exports=function union(e){if(!Array.isArray(e)){throw new TypeError("arr-union expects the first argument to be an array.")}var t=arguments.length;var n=0;while(++n<t){var r=arguments[n];if(!r)continue;if(!Array.isArray(r)){r=[r]}for(var i=0;i<r.length;i++){var o=r[i];if(e.indexOf(o)>=0){continue}e.push(o)}}return e}},6993:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function isHandler(e){return typeof e.handle!=="undefined"}t.isHandler=isHandler;function normalizeRoutes(e){if(!e||e.length===0){return{routes:e,error:null}}const t=[];const n=[];const r=[];e.forEach(e=>t.push(Object.assign({},e)));for(const e of t){if(isHandler(e)){if(Object.keys(e).length!==1){r.push({message:`Cannot have any other keys when handle is used (handle: ${e.handle})`,handle:e.handle})}if(!["filesystem"].includes(e.handle)){r.push({message:`This is not a valid handler (handle: ${e.handle})`,handle:e.handle})}if(n.includes(e.handle)){r.push({message:`You can only handle something once (handle: ${e.handle})`,handle:e.handle})}else{n.push(e.handle)}}else if(e.src){if(!e.src.startsWith("^")){e.src=`^${e.src}`}if(!e.src.endsWith("$")){e.src=`${e.src}$`}try{new RegExp(e.src)}catch(t){r.push({message:`Invalid regular expression: "${e.src}"`,src:e.src})}}else{r.push({message:"A route must set either handle or src"})}}const i=r.length>0?{code:"invalid_routes",message:`One or more invalid routes were found: \n${JSON.stringify(r,null,2)}`,errors:r}:null;return{routes:t,error:i}}t.normalizeRoutes=normalizeRoutes;t.schema={type:"array",maxItems:1024,items:{type:"object",additionalProperties:false,properties:{src:{type:"string",maxLength:4096},dest:{type:"string",maxLength:4096},methods:{type:"array",maxItems:10,items:{type:"string",maxLength:32}},headers:{type:"object",additionalProperties:false,minProperties:1,maxProperties:100,patternProperties:{"^.{1,256}$":{type:"string",maxLength:4096}}},handle:{type:"string",maxLength:32},continue:{type:"boolean"},status:{type:"integer",minimum:100,maximum:999}}}}},7007:function(e,t,n){"use strict";var r=n(2862);var i=e.exports=function(e,t){t=t||function(){};return function(){var n=false;var i=arguments;var o=new Promise(function(t,o){var a=e.apply({async:function(){n=true;return function(e,n){if(e){o(e)}else{t(n)}}}},Array.prototype.slice.call(i));if(!n){if(r(a)){a.then(t,o)}else{t(a)}}});o.then(t.bind(null,null),t);return o}};i.cb=function(e,t){return i(function(){var t=Array.prototype.slice.call(arguments);if(t.length===e.length-1){t.push(this.async())}return e.apply(this,t)},t)}},7008:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(1390);var o=n(4219);var a=n(7552);var s=n(5133);var c=function(e){r.__extends(HTTPTransport,e);function HTTPTransport(t){var n=e.call(this,t)||this;n.options=t;n.module=o;var r=t.httpProxy||process.env.http_proxy;n.client=r?new a(r):new o.Agent({keepAlive:false,maxSockets:30,timeout:2e3});return n}HTTPTransport.prototype.sendEvent=function(e){if(!this.module){throw new i.SentryError("No module available in HTTPTransport")}return this._sendWithModule(this.module,e)};return HTTPTransport}(s.BaseTransport);t.HTTPTransport=c},7020:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(5627).mkdirsSync;const a=n(1676).utimesMillisSync;const s=Symbol("notExist");function copySync(e,t,n){if(typeof n==="function"){n={filter:n}}n=n||{};n.clobber="clobber"in n?!!n.clobber:true;n.overwrite="overwrite"in n?!!n.overwrite:n.clobber;if(n.preserveTimestamps&&process.arch==="ia32"){console.warn(`fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269`)}const a=checkPaths(e,t);if(n.filter&&!n.filter(e,t))return;const s=i.dirname(t);if(!r.existsSync(s))o(s);return startCopy(a,e,t,n)}function startCopy(e,t,n,r){if(r.filter&&!r.filter(t,n))return;return getStats(e,t,n,r)}function getStats(e,t,n,i){const o=i.dereference?r.statSync:r.lstatSync;const a=o(t);if(a.isDirectory())return onDir(a,e,t,n,i);else if(a.isFile()||a.isCharacterDevice()||a.isBlockDevice())return onFile(a,e,t,n,i);else if(a.isSymbolicLink())return onLink(e,t,n,i)}function onFile(e,t,n,r,i){if(t===s)return copyFile(e,n,r,i);return mayCopyFile(e,n,r,i)}function mayCopyFile(e,t,n,i){if(i.overwrite){r.unlinkSync(n);return copyFile(e,t,n,i)}else if(i.errorOnExist){throw new Error(`'${n}' already exists`)}}function copyFile(e,t,n,i){if(typeof r.copyFileSync==="function"){r.copyFileSync(t,n);r.chmodSync(n,e.mode);if(i.preserveTimestamps){return a(n,e.atime,e.mtime)}return}return copyFileFallback(e,t,n,i)}function copyFileFallback(e,t,i,o){const a=64*1024;const s=n(5718)(a);const c=r.openSync(t,"r");const u=r.openSync(i,"w",e.mode);let l=0;while(l<e.size){const e=r.readSync(c,s,0,a,l);r.writeSync(u,s,0,e);l+=e}if(o.preserveTimestamps)r.futimesSync(u,e.atime,e.mtime);r.closeSync(c);r.closeSync(u)}function onDir(e,t,n,r,i){if(t===s)return mkDirAndCopy(e,n,r,i);if(t&&!t.isDirectory()){throw new Error(`Cannot overwrite non-directory '${r}' with directory '${n}'.`)}return copyDir(n,r,i)}function mkDirAndCopy(e,t,n,i){r.mkdirSync(n);copyDir(t,n,i);return r.chmodSync(n,e.mode)}function copyDir(e,t,n){r.readdirSync(e).forEach(r=>copyDirItem(r,e,t,n))}function copyDirItem(e,t,n,r){const o=i.join(t,e);const a=i.join(n,e);const s=checkPaths(o,a);return startCopy(s,o,a,r)}function onLink(e,t,n,o){let a=r.readlinkSync(t);if(o.dereference){a=i.resolve(process.cwd(),a)}if(e===s){return r.symlinkSync(a,n)}else{let e;try{e=r.readlinkSync(n)}catch(e){if(e.code==="EINVAL"||e.code==="UNKNOWN")return r.symlinkSync(a,n);throw e}if(o.dereference){e=i.resolve(process.cwd(),e)}if(isSrcSubdir(a,e)){throw new Error(`Cannot copy '${a}' to a subdirectory of itself, '${e}'.`)}if(r.statSync(n).isDirectory()&&isSrcSubdir(e,a)){throw new Error(`Cannot overwrite '${e}' with '${a}'.`)}return copyLink(a,n)}}function copyLink(e,t){r.unlinkSync(t);return r.symlinkSync(e,t)}function isSrcSubdir(e,t){const n=i.resolve(e).split(i.sep);const r=i.resolve(t).split(i.sep);return n.reduce((e,t,n)=>e&&r[n]===t,true)}function checkStats(e,t){const n=r.statSync(e);let i;try{i=r.statSync(t)}catch(e){if(e.code==="ENOENT")return{srcStat:n,destStat:s};throw e}return{srcStat:n,destStat:i}}function checkPaths(e,t){const{srcStat:n,destStat:r}=checkStats(e,t);if(r.ino&&r.ino===n.ino){throw new Error("Source and destination must not be the same.")}if(n.isDirectory()&&isSrcSubdir(e,t)){throw new Error(`Cannot copy '${e}' to a subdirectory of itself, '${t}'.`)}return r}e.exports=copySync},7022:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=i(n(6725));const c=o(n(8715));const u=i(n(8520));const l=i(n(4573));const f=i(n(8685));const p=i(n(1776));const d=i(n(3789));const h=i(n(8303));const m=i(n(586));const v=i(n(2788));function add(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:o}=e;const{currentTeam:g}=o;const{apiUrl:y}=e;const b=t["--debug"];const w=new l.default({apiUrl:y,token:r,currentTeam:g,debug:b});let x=null;try{({contextName:x}=yield h.default(w))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){i.error(e.message);return 1}throw e}if(t["--cdn"]!==undefined||t["--no-cdn"]!==undefined){i.error(`Toggling CF from Now CLI is deprecated.`);return 1}if(n.length!==1){i.error(`${f.default("now domains add <domain>")} expects one argument`);return 1}const k=String(n[0]);const j=s.default.parse(k);if(j.error){i.error(`The provided domain name ${v.default(k)} is invalid`);return 1}const{domain:S,subdomain:E}=j;if(!S){i.error(`The provided domain '${v.default(k)}' is not valid.`);return 1}if(E){i.error(`You are adding '${k}' as a domain name containing a subdomain part '${E}'\n`+` This feature is deprecated, please add just the root domain: ${a.default.cyan(`now domain add ${S}`)}`);return 1}const _=m.default();const C=yield u.default(w,k,x);if(C instanceof c.InvalidDomain){i.error(`The provided domain name "${C.meta.domain}" is invalid`);return 1}if(C instanceof c.DomainAlreadyExists){i.error(`The domain ${a.default.underline(C.meta.domain)} is already registered by a different account.\n`+` If this seems like a mistake, please contact us at support@zeit.co`);return 1}console.log(`${a.default.cyan("> Success!")} Domain ${a.default.bold(C.name)} added correctly. ${_()}\n`);if(!C.verified){i.warn(`The domain was added but it is not verified. To verify it, you should either:`);i.print(` ${a.default.gray("a)")} Change your domain nameservers to the following intended set: ${a.default.gray("[recommended]")}\n`);i.print(`\n${d.default(C.intendedNameservers,C.nameservers,{extraSpace:" "})}\n\n`);i.print(` ${a.default.gray("b)")} Add a DNS TXT record with the name and value shown below.\n`);i.print(`\n${p.default([["_now","TXT",C.verificationRecord]],{extraSpace:" "})}\n\n`);i.print(` We will run a verification for you and you will receive an email upon completion.\n`);i.print(` If you want to force running a verification, you can run ${f.default("now domains verify <domain>")}\n`);i.print(" Read more: https://err.sh/now/domain-verification\n\n")}return 0})}t.default=add},7023:function(e){"use strict";e.exports=function generate_propertyNames(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f="errs__"+i;var p=e.util.copy(e);var d="";p.level++;var h="valid"+p.level;r+="var "+f+" = errors;";if(e.opts.strictKeywords?typeof a=="object"&&Object.keys(a).length>0:e.util.schemaHasRules(a,e.RULES.all)){p.schema=a;p.schemaPath=s;p.errSchemaPath=c;var m="key"+i,v="idx"+i,g="i"+i,y="' + "+m+" + '",b=p.dataLevel=e.dataLevel+1,w="data"+b,x="dataProperties"+i,k=e.opts.ownProperties,j=e.baseId;if(k){r+=" var "+x+" = undefined; "}if(k){r+=" "+x+" = "+x+" || Object.keys("+l+"); for (var "+v+"=0; "+v+"<"+x+".length; "+v+"++) { var "+m+" = "+x+"["+v+"]; "}else{r+=" for (var "+m+" in "+l+") { "}r+=" var startErrs"+i+" = errors; ";var S=m;var E=e.compositeRule;e.compositeRule=p.compositeRule=true;var _=e.validate(p);p.baseId=j;if(e.util.varOccurences(_,w)<2){r+=" "+e.util.varReplace(_,w,S)+" "}else{r+=" var "+w+" = "+S+"; "+_+" "}e.compositeRule=p.compositeRule=E;r+=" if (!"+h+") { for (var "+g+"=startErrs"+i+"; "+g+"<errors; "+g+"++) { vErrors["+g+"].propertyName = "+m+"; } var err = ";if(e.createErrors!==false){r+=" { keyword: '"+"propertyNames"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { propertyName: '"+y+"' } ";if(e.opts.messages!==false){r+=" , message: 'property name \\'"+y+"\\' is invalid' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}r+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ";if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(vErrors); "}else{r+=" validate.errors = vErrors; return false; "}}if(u){r+=" break; "}r+=" } }"}if(u){r+=" "+d+" if ("+f+" == errors) {"}r=e.util.cleanUpCode(r);return r}},7030:function(e,t,n){"use strict";var r=n(649);var i=n(7148);var o=n(5923);var a=n(2104);var s=n(5325);var c=n(295);var u=n(6871);var l=n(5403);function namespace(e){var t=e?o.namespace(e):o;var n=[];function Base(e,n){if(!(this instanceof Base)){return new Base(e,n)}t.call(this,e);this.is("base");this.initBase(e,n)}r.inherits(Base,t);a(Base);Base.prototype.initBase=function(t,r){this.options=c({},this.options,r);this.cache=this.cache||{};this.define("registered",{});if(e)this[e]={};this.define("_callbacks",this._callbacks);if(s(t)){this.visit("set",t)}Base.run(this,"use",n)};Base.prototype.is=function(e){if(typeof e!=="string"){throw new TypeError("expected name to be a string")}this.define("is"+u(e),true);this.define("_name",e);this.define("_appname",e);return this};Base.prototype.isRegistered=function(e,t){if(this.registered.hasOwnProperty(e)){return true}if(t!==false){this.registered[e]=true;this.emit("plugin",e)}return false};Base.prototype.use=function(e){e.call(this,this);return this};Base.prototype.define=function(e,t){if(s(e)){return this.visit("define",e)}i(this,e,t);return this};Base.prototype.mixin=function(e,t){Base.prototype[e]=t;return this};Base.prototype.mixins=Base.prototype.mixins||[];Object.defineProperty(Base.prototype,"base",{configurable:true,get:function(){return this.parent?this.parent.base:this}});i(Base,"use",function(e){n.push(e);return Base});i(Base,"run",function(e,t,n){var r=n.length,i=0;while(r--){e[t](n[i++])}return Base});i(Base,"extend",l.extend(Base,function(e,t){e.prototype.mixins=e.prototype.mixins||[];i(e,"mixin",function(t){var n=t(e.prototype,e);if(typeof n==="function"){e.prototype.mixins.push(n)}return e});i(e,"mixins",function(t){Base.run(t,"mixin",e.prototype.mixins);return e});e.prototype.mixin=function(t,n){e.prototype[t]=n;return this};return Base}));i(Base,"mixin",function(e){var t=e(Base.prototype,Base);if(typeof t==="function"){Base.prototype.mixins.push(t)}return Base});i(Base,"mixins",function(e){Base.run(e,"mixin",Base.prototype.mixins);return Base});i(Base,"inherit",l.inherit);i(Base,"bubble",l.bubble);return Base}e.exports=namespace();e.exports.namespace=namespace},7037:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(662));const a=i(n(5897));const s=i(n(1133));const c=i(n(9544));const u=i(n(1973));const l=i(n(1661));const f=i(n(3302));const p=i(n(3266));const d=i(n(7905));const h=i(n(8950));const m=i(n(5359));const v=i(n(6145));const g=i(n(8685));const y=i(n(324));const b="https://now-example-files.zeit.sh";function init(e,t,n,i){return r(this,void 0,void 0,function*(){const[e,r]=n;const o=t["-f"]||t["--force"];const a=yield fetchExampleList();if(!a){throw new Error(`Could not fetch example list.`)}const s=a.filter(e=>e.visible).map(e=>e.name);if(!e){const e=yield chooseFromDropdown("Select example:",s);if(!e){i.log("Aborted");return 0}return extractExample(e,r,o)}if(s.includes(e)){return extractExample(e,r,o)}const c=a.find(t=>!t.visible&&t.name===e);if(c){return extractExample(e,r,o,"v1")}const u=yield guess(s,e);if(typeof u==="string"){return extractExample(u,r,o)}console.log(v.default("No changes made."));return 0})}t.default=init;function fetchExampleList(){return r(this,void 0,void 0,function*(){const e=h.default("Fetching examples");const t=`${b}/v2/list.json`;try{const n=yield u.default(t);e();if(n.status!==200){throw new Error(`Failed fetching list.json (${n.statusText}).`)}return yield n.json()}catch(t){e()}})}function chooseFromDropdown(e,t){return r(this,void 0,void 0,function*(){const n=t.map(e=>({name:e,value:e,short:e}));return l.default({message:e,separator:false,choices:n})})}function extractExample(e,t,n,i="v2"){return r(this,void 0,void 0,function*(){const o=prepareFolder(process.cwd(),t||e,n);const l=h.default(`Fetching ${e}`);const p=`${b}/${i}/download/${e}.tar.gz`;return u.default(p).then(t=>r(this,void 0,void 0,function*(){l();if(t.status!==200){throw new Error(`Could not get ${e}.tar.gz`)}yield new Promise((e,n)=>{const r=s.default.extract(o);t.body.on("error",n);r.on("error",n);r.on("finish",e);t.body.pipe(r)});const n=`Initialized "${c.default.bold(e)}" example in ${c.default.bold(d.default(o))}.`;const r=a.default.relative(process.cwd(),o);const i=r===""?f.default(`To deploy, run ${g.default("now")}.`):f.default(`To deploy, ${g.default(`cd ${r}`)} and run ${g.default("now")}.`);console.log(m.default(`${n}\n${i}`));return 0})).catch(e=>{l();throw e})})}function prepareFolder(e,t,n){const r=a.default.join(e,t);if(o.default.existsSync(r)){if(!o.default.lstatSync(r).isDirectory()){throw new Error(`Destination path "${c.default.bold(t)}" already exists and is not a directory.`)}if(!n&&o.default.readdirSync(r).length!==0){throw new Error(`Destination path "${c.default.bold(t)}" already exists and is not an empty directory. You may use ${g.default("--force")} or ${g.default("--f")} to override it.`)}}else if(r!==e){try{o.default.mkdirSync(r)}catch(e){throw new Error(`Could not create directory "${c.default.bold(t)}".`)}}return r}function guess(e,t){return r(this,void 0,void 0,function*(){const n=new Error(`No example found for ${c.default.bold(t)}, run ${g.default(`now init`)} to see the list of available examples.`);if(process.stdout.isTTY!==true){throw n}const r=y.default(t,e,.7);if(typeof r==="string"){if(yield p.default(`Did you mean ${c.default.bold(r)}?`)){return r}}else{throw n}})}},7044:function(e,t,n){"use strict";const r=n(192);const i=n(5594);const o=n(5897).posix;const a=n(5973);const s=Symbol("slurp");const c=Symbol("type");class Header{constructor(e,t,n,i){this.cksumValid=false;this.needPax=false;this.nullBlock=false;this.block=null;this.path=null;this.mode=null;this.uid=null;this.gid=null;this.size=null;this.mtime=null;this.cksum=null;this[c]="0";this.linkpath=null;this.uname=null;this.gname=null;this.devmaj=0;this.devmin=0;this.atime=null;this.ctime=null;if(r.isBuffer(e))this.decode(e,t||0,n,i);else if(e)this.set(e)}decode(e,t,n,r){if(!t)t=0;if(!e||!(e.length>=t+512))throw new Error("need 512 bytes for header");this.path=l(e,t,100);this.mode=d(e,t+100,8);this.uid=d(e,t+108,8);this.gid=d(e,t+116,8);this.size=d(e,t+124,12);this.mtime=f(e,t+136,12);this.cksum=d(e,t+148,12);this[s](n);this[s](r,true);this[c]=l(e,t+156,1);if(this[c]==="")this[c]="0";if(this[c]==="0"&&this.path.substr(-1)==="/")this[c]="5";if(this[c]==="5")this.size=0;this.linkpath=l(e,t+157,100);if(e.slice(t+257,t+265).toString()==="ustar\x0000"){this.uname=l(e,t+265,32);this.gname=l(e,t+297,32);this.devmaj=d(e,t+329,8);this.devmin=d(e,t+337,8);if(e[t+475]!==0){const n=l(e,t+345,155);this.path=n+"/"+this.path}else{const n=l(e,t+345,130);if(n)this.path=n+"/"+this.path;this.atime=f(e,t+476,12);this.ctime=f(e,t+488,12)}}let i=8*32;for(let n=t;n<t+148;n++){i+=e[n]}for(let n=t+156;n<t+512;n++){i+=e[n]}this.cksumValid=i===this.cksum;if(this.cksum===null&&i===8*32)this.nullBlock=true}[s](e,t){for(let n in e){if(e[n]!==null&&e[n]!==undefined&&!(t&&n==="path"))this[n]=e[n]}}encode(e,t){if(!e){e=this.block=r.alloc(512);t=0}if(!t)t=0;if(!(e.length>=t+512))throw new Error("need 512 bytes for header");const n=this.ctime||this.atime?130:155;const i=u(this.path||"",n);const o=i[0];const a=i[1];this.needPax=i[2];this.needPax=j(e,t,100,o)||this.needPax;this.needPax=g(e,t+100,8,this.mode)||this.needPax;this.needPax=g(e,t+108,8,this.uid)||this.needPax;this.needPax=g(e,t+116,8,this.gid)||this.needPax;this.needPax=g(e,t+124,12,this.size)||this.needPax;this.needPax=x(e,t+136,12,this.mtime)||this.needPax;e[t+156]=this[c].charCodeAt(0);this.needPax=j(e,t+157,100,this.linkpath)||this.needPax;e.write("ustar\x0000",t+257,8);this.needPax=j(e,t+265,32,this.uname)||this.needPax;this.needPax=j(e,t+297,32,this.gname)||this.needPax;this.needPax=g(e,t+329,8,this.devmaj)||this.needPax;this.needPax=g(e,t+337,8,this.devmin)||this.needPax;this.needPax=j(e,t+345,n,a)||this.needPax;if(e[t+475]!==0)this.needPax=j(e,t+345,155,a)||this.needPax;else{this.needPax=j(e,t+345,130,a)||this.needPax;this.needPax=x(e,t+476,12,this.atime)||this.needPax;this.needPax=x(e,t+488,12,this.ctime)||this.needPax}let s=8*32;for(let n=t;n<t+148;n++){s+=e[n]}for(let n=t+156;n<t+512;n++){s+=e[n]}this.cksum=s;g(e,t+148,8,this.cksum);this.cksumValid=true;return this.needPax}set(e){for(let t in e){if(e[t]!==null&&e[t]!==undefined)this[t]=e[t]}}get type(){return i.name.get(this[c])||this[c]}get typeKey(){return this[c]}set type(e){if(i.code.has(e))this[c]=i.code.get(e);else this[c]=e}}const u=(e,t)=>{const n=100;let i=e;let a="";let s;const c=o.parse(e).root||".";if(r.byteLength(i)<n)s=[i,a,false];else{a=o.dirname(i);i=o.basename(i);do{if(r.byteLength(i)<=n&&r.byteLength(a)<=t)s=[i,a,false];else if(r.byteLength(i)>n&&r.byteLength(a)<=t)s=[i.substr(0,n-1),a,true];else{i=o.join(o.basename(a),i);a=o.dirname(a)}}while(a!==c&&!s);if(!s)s=[e.substr(0,n-1),"",true]}return s};const l=(e,t,n)=>e.slice(t,t+n).toString("utf8").replace(/\0.*/,"");const f=(e,t,n)=>p(d(e,t,n));const p=e=>e===null?null:new Date(e*1e3);const d=(e,t,n)=>e[t]&128?a.parse(e.slice(t,t+n)):m(e,t,n);const h=e=>isNaN(e)?null:e;const m=(e,t,n)=>h(parseInt(e.slice(t,t+n).toString("utf8").replace(/\0.*$/,"").trim(),8));const v={12:8589934591,8:2097151};const g=(e,t,n,r)=>r===null?false:r>v[n]||r<0?(a.encode(r,e.slice(t,t+n)),true):(y(e,t,n,r),false);const y=(e,t,n,r)=>e.write(b(r,n),t,n,"ascii");const b=(e,t)=>w(Math.floor(e).toString(8),t);const w=(e,t)=>(e.length===t-1?e:new Array(t-e.length-1).join("0")+e+" ")+"\0";const x=(e,t,n,r)=>r===null?false:g(e,t,n,r.getTime()/1e3);const k=new Array(156).join("\0");const j=(e,t,n,i)=>i===null?false:(e.write(i+k,t,n,"utf8"),i.length!==r.byteLength(i)||i.length>n);e.exports=Header},7053:function(e,t,n){"use strict";const r=n(4666);const i=n(342);const o=n(662);const a=n(4594);const s=n(4787);const c=n(5897);const u=e.exports=((e,t,n)=>{if(typeof t==="function")n=t;if(Array.isArray(e))t=e,e={};if(!t||!Array.isArray(t)||!t.length)throw new TypeError("no files or directories specified");t=Array.from(t);const i=r(e);if(i.sync&&typeof n==="function")throw new TypeError("callback not supported for sync tar functions");if(!i.file&&typeof n==="function")throw new TypeError("callback only supported with file option");return i.file&&i.sync?l(i,t):i.file?f(i,t,n):i.sync?h(i,t):m(i,t)});const l=(e,t)=>{const n=new i.Sync(e);const r=new a.WriteStreamSync(e.file,{mode:e.mode||438});n.pipe(r);p(n,t)};const f=(e,t,n)=>{const r=new i(e);const o=new a.WriteStream(e.file,{mode:e.mode||438});r.pipe(o);const s=new Promise((e,t)=>{o.on("error",t);o.on("close",e);r.on("error",t)});d(r,t);return n?s.then(n,n):s};const p=(e,t)=>{t.forEach(t=>{if(t.charAt(0)==="@")s({file:c.resolve(e.cwd,t.substr(1)),sync:true,noResume:true,onentry:t=>e.add(t)});else e.add(t)});e.end()};const d=(e,t)=>{while(t.length){const n=t.shift();if(n.charAt(0)==="@")return s({file:c.resolve(e.cwd,n.substr(1)),noResume:true,onentry:t=>e.add(t)}).then(n=>d(e,t));else e.add(n)}e.end()};const h=(e,t)=>{const n=new i.Sync(e);p(n,t);return n};const m=(e,t)=>{const n=new i(e);d(n,t);return n}},7054:function(e,t,n){"use strict";var r=n(2286);var i=n(3332);e.exports=function(e){var t=e.compiler.compilers;var n=e.options;e.use(r.compilers);var o=t.escape;var a=t.qmark;var s=t.slash;var c=t.star;var u=t.text;var l=t.plus;var f=t.dot;if(n.extglob===false||n.noext===true){e.compiler.use(escapeExtglobs)}else{e.use(i.compilers)}e.use(function(){this.options.star=this.options.star||function(){return"[^\\\\/]*?"}});e.compiler.set("dot",f).set("escape",o).set("plus",l).set("slash",s).set("qmark",a).set("star",c).set("text",u)};function escapeExtglobs(e){e.set("paren",function(e){var t="";visit(e,function(e){if(e.val)t+=(/^\W/.test(e.val)?"\\":"")+e.val});return this.emit(t,e)});function visit(e,t){return e.nodes?mapVisit(e.nodes,t):t(e)}function mapVisit(e,t){var n=e.length;var r=-1;while(++r<n){visit(e[r],t)}}}},7063:function(e,t,n){"use strict";var r=n(5091);function normalizeKeypressEvents(e,t){return{value:e,key:t||{}}}e.exports=function(e){var t=r.Observable.fromEvent(e.input,"keypress",normalizeKeypressEvents).filter(function(e){return e.key.name!=="enter"&&e.key.name!=="return"});return{line:r.Observable.fromEvent(e,"line"),keypress:t,normalizedUpKey:t.filter(function(e){return e.key.name==="up"||e.key.name==="k"||e.key.name==="p"&&e.key.ctrl}).share(),normalizedDownKey:t.filter(function(e){return e.key.name==="down"||e.key.name==="j"||e.key.name==="n"&&e.key.ctrl}).share(),numberKey:t.filter(function(e){return e.value&&"123456789".indexOf(e.value)>=0}).map(function(e){return Number(e.value)}).share(),spaceKey:t.filter(function(e){return e.key&&e.key.name==="space"}).share(),aKey:t.filter(function(e){return e.key&&e.key.name==="a"}).share(),iKey:t.filter(function(e){return e.key&&e.key.name==="i"}).share()}}},7064:function(e,t,n){"use strict";const r=n(662);const i=n(5897);const o=n(774);const a=n(6586);const s=n(103);const c=n(160);const u=n(2436);const l=n(1043);const f=n(710);const p=n(8288);const d=n(7537);const h=n(642);const m=n(9703);const v=n(8674);const g=d(r);const y=e=>i.basename(o.parse(e.requestUrl).pathname);const b=e=>{const t=e.headers["content-type"];if(!t){return null}const n=v.mime(t);if(n.length!==1){return null}return n[0].ext};const w=(e,t)=>{const n=e.headers["content-disposition"];if(n){const e=s.parse(n);if(e.parameters&&e.parameters.filename){return e.parameters.filename}}let r=y(e);if(!i.extname(r)){const n=(m(t)||{}).ext||b(e);if(n){r=`${r}.${n}`}}return r};e.exports=((e,t,n)=>{if(typeof t==="object"){n=t;t=null}let r=o.parse(e).protocol;if(r){r=r.slice(0,-1)}n=Object.assign({encoding:null,rejectUnauthorized:process.env.npm_config_strict_ssl!=="false"},n);const s=a(n.proxy,{protocol:r});const d=f.stream(e,Object.assign({agent:s},n));const m=h(d,"response").then(e=>{const t=n.encoding===null?"buffer":n.encoding;return Promise.all([l(d,{encoding:t}),e])}).then(e=>{const r=e[0];const o=e[1];if(!t){return n.extract?c(r,n):r}const a=n.filename||u(w(o,r));const s=i.join(t,a);if(n.extract){return c(r,i.dirname(s),n)}return p(i.dirname(s)).then(()=>g.writeFile(s,r)).then(()=>r)});d.then=m.then.bind(m);d.catch=m.catch.bind(m);return d})},7070:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(6097);const a=i(n(2970));function getDeploymentOrFail(e,t,n){return r(this,void 0,void 0,function*(){const r=yield a.default(e,t,n);if(r instanceof o.NowError){throw r}return r})}t.default=getDeploymentOrFail},7089:function(e){"use strict";class DefaultEvictor{evict(e,t,n){const r=Date.now()-t.lastIdleTime;if(e.softIdleTimeoutMillis<r&&e.min<n){return true}if(e.idleTimeoutMillis<r){return true}return false}}e.exports=DefaultEvictor},7101:function(e,t,n){e.exports=new(n(3465))},7107:function(e,t,n){"use strict";var r=n(5264),i=n(3384).toHash;e.exports=function rules(){var e=[{type:"number",rules:[{maximum:["exclusiveMaximum"]},{minimum:["exclusiveMinimum"]},"multipleOf","format"]},{type:"string",rules:["maxLength","minLength","pattern","format"]},{type:"array",rules:["maxItems","minItems","items","contains","uniqueItems"]},{type:"object",rules:["maxProperties","minProperties","required","dependencies","propertyNames",{properties:["additionalProperties","patternProperties"]}]},{rules:["$ref","const","enum","not","anyOf","oneOf","allOf","if"]}];var t=["type","$comment"];var n=["$schema","$id","id","$data","$async","title","description","default","definitions","examples","readOnly","writeOnly","contentMediaType","contentEncoding","additionalItems","then","else"];var o=["number","integer","string","array","object","boolean","null"];e.all=i(t);e.types=i(o);e.forEach(function(n){n.rules=n.rules.map(function(n){var i;if(typeof n=="object"){var o=Object.keys(n)[0];i=n[o];n=o;i.forEach(function(n){t.push(n);e.all[n]=true})}t.push(n);var a=e.all[n]={keyword:n,code:r[n],implements:i};return a});e.all.$comment={keyword:"$comment",code:r.$comment};if(n.type)e.types[n.type]=n});e.keywords=i(t.concat(n));e.custom={};return e}},7110:function(e,t,n){"use strict";var r=Object.create;if(r){var i=r(null);var o=r(null);i[" size"]=o[" size"]=0}e.exports=function(e){var t=n(4730);var r=t.canEvaluate;var a=t.isIdentifier;var s;var c;if(true){var u=function(e){return new Function("ensureMethod"," \n return function(obj) { \n 'use strict' \n var len = this.length; \n ensureMethod(obj, 'methodName'); \n switch(len) { \n case 1: return obj.methodName(this[0]); \n case 2: return obj.methodName(this[0], this[1]); \n case 3: return obj.methodName(this[0], this[1], this[2]); \n case 0: return obj.methodName(); \n default: \n return obj.methodName.apply(obj, this); \n } \n }; \n ".replace(/methodName/g,e))(ensureMethod)};var l=function(e){return new Function("obj"," \n 'use strict'; \n return obj.propertyName; \n ".replace("propertyName",e))};var f=function(e,t,n){var r=n[e];if(typeof r!=="function"){if(!a(e)){return null}r=t(e);n[e]=r;n[" size"]++;if(n[" size"]>512){var i=Object.keys(n);for(var o=0;o<256;++o)delete n[i[o]];n[" size"]=i.length-256}}return r};s=function(e){return f(e,u,i)};c=function(e){return f(e,l,o)}}function ensureMethod(n,r){var i;if(n!=null)i=n[r];if(typeof i!=="function"){var o="Object "+t.classString(n)+" has no method '"+t.toString(r)+"'";throw new e.TypeError(o)}return i}function caller(e){var t=this.pop();var n=ensureMethod(e,t);return n.apply(e,this)}e.prototype.call=function(e){var t=arguments.length;var n=new Array(Math.max(t-1,0));for(var i=1;i<t;++i){n[i-1]=arguments[i]}if(true){if(r){var o=s(e);if(o!==null){return this._then(o,undefined,undefined,n,undefined)}}}n.push(e);return this._then(caller,undefined,undefined,n,undefined)};function namedGetter(e){return e[this]}function indexedGetter(e){var t=+this;if(t<0)t=Math.max(0,t+e.length);return e[t]}e.prototype.get=function(e){var t=typeof e==="number";var n;if(!t){if(r){var i=c(e);n=i!==null?i:namedGetter}else{n=namedGetter}}else{n=indexedGetter}return this._then(n,undefined,undefined,e,undefined)}}},7117:function(e){var t=e.exports;e.exports.isWhiteSpace=function isWhiteSpace(e){return e===" "||e===" "||e==="\ufeff"||e>="\t"&&e<="\r"||e===""||e===""||e>=" "&&e<=""||e==="\u2028"||e==="\u2029"||e===""||e===""||e===" "};e.exports.isWhiteSpaceJSON=function isWhiteSpaceJSON(e){return e===" "||e==="\t"||e==="\n"||e==="\r"};e.exports.isLineTerminator=function isLineTerminator(e){return e==="\n"||e==="\r"||e==="\u2028"||e==="\u2029"};e.exports.isLineTerminatorJSON=function isLineTerminatorJSON(e){return e==="\n"||e==="\r"};e.exports.isIdentifierStart=function isIdentifierStart(e){return e==="$"||e==="_"||e>="A"&&e<="Z"||e>="a"&&e<="z"||e>="€"&&t.NonAsciiIdentifierStart.test(e)};e.exports.isIdentifierPart=function isIdentifierPart(e){return e==="$"||e==="_"||e>="A"&&e<="Z"||e>="a"&&e<="z"||e>="0"&&e<="9"||e>="€"&&t.NonAsciiIdentifierPart.test(e)};e.exports.NonAsciiIdentifierStart=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0\u08A2-\u08AC\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097F\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F0\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191C\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA697\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA80-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/;e.exports.NonAsciiIdentifierPart=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u0527\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u08A0\u08A2-\u08AC\u08E4-\u08FE\u0900-\u0963\u0966-\u096F\u0971-\u0977\u0979-\u097F\u0981-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C01-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58\u0C59\u0C60-\u0C63\u0C66-\u0C6F\u0C82\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D02\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D57\u0D60-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F0\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191C\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1CD0-\u1CD2\u1CD4-\u1CF6\u1D00-\u1DE6\u1DFC-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200C\u200D\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA697\uA69F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA793\uA7A0-\uA7AA\uA7F8-\uA827\uA840-\uA873\uA880-\uA8C4\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A\uAA7B\uAA80-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uABC0-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE26\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/},7132:function(e){e.exports={$id:"creator.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",required:["name","version"],properties:{name:{type:"string"},version:{type:"string"},comment:{type:"string"}}}},7142:function(e){"use strict";e.exports=rangeParser;function rangeParser(e,t,n){var r=t.indexOf("=");if(r===-1){return-2}var i=t.slice(r+1).split(",");var o=[];o.type=t.slice(0,r);for(var a=0;a<i.length;a++){var s=i[a].split("-");var c=parseInt(s[0],10);var u=parseInt(s[1],10);if(isNaN(c)){c=e-u;u=e-1}else if(isNaN(u)){u=e-1}if(u>e-1){u=e-1}if(isNaN(c)||isNaN(u)||c>u||c<0){continue}o.push({start:c,end:u})}if(o.length<1){return-1}return n&&n.combine?combineRanges(o):o}function combineRanges(e){var t=e.map(mapWithIndex).sort(sortByRangeStart);for(var n=0,r=1;r<t.length;r++){var i=t[r];var o=t[n];if(i.start>o.end+1){t[++n]=i}else if(i.end>o.end){o.end=i.end;o.index=Math.min(o.index,i.index)}}t.length=n+1;var a=t.sort(sortByRangeIndex).map(mapWithoutIndex);a.type=e.type;return a}function mapWithIndex(e,t){return{start:e.start,end:e.end,index:t}}function mapWithoutIndex(e){return{start:e.start,end:e.end}}function sortByRangeIndex(e,t){return e.index-t.index}function sortByRangeStart(e,t){return e.start-t.start}},7148:function(e,t,n){"use strict";var r=n(7547);e.exports=function defineProperty(e,t,n){if(typeof e!=="object"&&typeof e!=="function"){throw new TypeError("expected an object or function.")}if(typeof t!=="string"){throw new TypeError("expected `prop` to be a string.")}if(r(n)&&("set"in n||"get"in n)){return Object.defineProperty(e,t,n)}return Object.defineProperty(e,t,{configurable:true,enumerable:false,writable:true,value:n})}},7151:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function once(e,t){return new Promise((n,r)=>{function cleanup(){e.removeListener(t,onEvent);e.removeListener("error",onError)}function onEvent(e){cleanup();n(e)}function onError(e){cleanup();r(e)}e.on(t,onEvent);e.on("error",onError)})}t.once=once},7158:function(e,t,n){const r=n(662);const i=n(5897);const o=n(2984);const a=n(1678);const s=process.binding("constants");const c=a(),u="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",l=/XXXXXX/,f=3,p=(s.O_CREAT||s.fs.O_CREAT)|(s.O_EXCL||s.fs.O_EXCL)|(s.O_RDWR||s.fs.O_RDWR),d=s.EBADF||s.os.errno.EBADF,h=s.ENOENT||s.os.errno.ENOENT,m=448,v=384,g=[];var y=false,b=false;function _randomChars(e){var t=[],n=null;try{n=o.randomBytes(e)}catch(t){n=o.pseudoRandomBytes(e)}for(var r=0;r<e;r++){t.push(u[n[r]%u.length])}return t.join("")}function _isUndefined(e){return typeof e==="undefined"}function _parseArguments(e,t){if(typeof e=="function"){return[t||{},e]}if(_isUndefined(e)){return[{},t]}return[e,t]}function _generateTmpName(e){if(e.name){return i.join(e.dir||c,e.name)}if(e.template){return e.template.replace(l,_randomChars(6))}const t=[e.prefix||"tmp-",process.pid,_randomChars(12),e.postfix||""].join("");return i.join(e.dir||c,t)}function tmpName(e,t){var n=_parseArguments(e,t),i=n[0],o=n[1],a=i.name?1:i.tries||f;if(isNaN(a)||a<0)return o(new Error("Invalid tries"));if(i.template&&!i.template.match(l))return o(new Error("Invalid template provided"));(function _getUniqueName(){const e=_generateTmpName(i);r.stat(e,function(t){if(!t){if(a-- >0)return _getUniqueName();return o(new Error("Could not get a unique tmp filename, max tries reached "+e))}o(null,e)})})()}function tmpNameSync(e){var t=_parseArguments(e),n=t[0],i=n.name?1:n.tries||f;if(isNaN(i)||i<0)throw new Error("Invalid tries");if(n.template&&!n.template.match(l))throw new Error("Invalid template provided");do{const e=_generateTmpName(n);try{r.statSync(e)}catch(t){return e}}while(i-- >0);throw new Error("Could not get a unique tmp filename, max tries reached")}function file(e,t){var n=_parseArguments(e,t),i=n[0],o=n[1];i.postfix=_isUndefined(i.postfix)?".tmp":i.postfix;tmpName(i,function _tmpNameCreated(e,t){if(e)return o(e);r.open(t,p,i.mode||v,function _fileCreated(e,n){if(e)return o(e);if(i.discardDescriptor){return r.close(n,function _discardCallback(e){if(e){try{r.unlinkSync(t)}catch(t){if(!isENOENT(t)){e=t}}return o(e)}o(null,t,undefined,_prepareTmpFileRemoveCallback(t,-1,i))})}if(i.detachDescriptor){return o(null,t,n,_prepareTmpFileRemoveCallback(t,-1,i))}o(null,t,n,_prepareTmpFileRemoveCallback(t,n,i))})})}function fileSync(e){var t=_parseArguments(e),n=t[0];n.postfix=n.postfix||".tmp";const i=n.discardDescriptor||n.detachDescriptor;const o=tmpNameSync(n);var a=r.openSync(o,p,n.mode||v);if(n.discardDescriptor){r.closeSync(a);a=undefined}return{name:o,fd:a,removeCallback:_prepareTmpFileRemoveCallback(o,i?-1:a,n)}}function _rmdirRecursiveSync(e){const t=[e];do{var n=t.pop(),o=false,a=r.readdirSync(n);for(var s=0,c=a.length;s<c;s++){var u=i.join(n,a[s]),l=r.lstatSync(u);if(l.isDirectory()){if(!o){o=true;t.push(n)}t.push(u)}else{r.unlinkSync(u)}}if(!o){r.rmdirSync(n)}}while(t.length!==0)}function dir(e,t){var n=_parseArguments(e,t),i=n[0],o=n[1];tmpName(i,function _tmpNameCreated(e,t){if(e)return o(e);r.mkdir(t,i.mode||m,function _dirCreated(e){if(e)return o(e);o(null,t,_prepareTmpDirRemoveCallback(t,i))})})}function dirSync(e){var t=_parseArguments(e),n=t[0];const i=tmpNameSync(n);r.mkdirSync(i,n.mode||m);return{name:i,removeCallback:_prepareTmpDirRemoveCallback(i,n)}}function _prepareTmpFileRemoveCallback(e,t,n){const i=_prepareRemoveCallback(function _removeCallback(e){try{if(0<=e[0]){r.closeSync(e[0])}}catch(e){if(!isEBADF(e)&&!isENOENT(e)){throw e}}try{r.unlinkSync(e[1])}catch(e){if(!isENOENT(e)){throw e}}},[t,e]);if(!n.keep){g.unshift(i)}return i}function _prepareTmpDirRemoveCallback(e,t){const n=t.unsafeCleanup?_rmdirRecursiveSync:r.rmdirSync.bind(r);const i=_prepareRemoveCallback(n,e);if(!t.keep){g.unshift(i)}return i}function _prepareRemoveCallback(e,t){var n=false;return function _cleanupCallback(r){if(!n){const r=g.indexOf(_cleanupCallback);if(r>=0){g.splice(r,1)}n=true;e(t)}if(r)r(null)}}function _garbageCollector(){if(b&&!y){return}while(g.length){try{g[0].call(null)}catch(e){}}}function isEBADF(e){return isExpectedError(e,-d,"EBADF")}function isENOENT(e){return isExpectedError(e,-h,"ENOENT")}function isExpectedError(e,t,n){return e.code==t||e.code==n}function setGracefulCleanup(){y=true}const w=process.versions.node.split(".").map(function(e){return parseInt(e,10)});if(w[0]===0&&(w[1]<9||w[1]===9&&w[2]<5)){process.addListener("uncaughtException",function _uncaughtExceptionThrown(e){b=true;_garbageCollector();throw e})}process.addListener("exit",function _exit(e){if(e)b=true;_garbageCollector()});e.exports.tmpdir=c;e.exports.dir=dir;e.exports.dirSync=dirSync;e.exports.file=file;e.exports.fileSync=fileSync;e.exports.tmpName=tmpName;e.exports.tmpNameSync=tmpNameSync;e.exports.setGracefulCleanup=setGracefulCleanup},7162:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(7184).mkdirsSync;const a=n(3381).utimesMillisSync;const s=Symbol("notExist");function copySync(e,t,n){if(typeof n==="function"){n={filter:n}}n=n||{};n.clobber="clobber"in n?!!n.clobber:true;n.overwrite="overwrite"in n?!!n.overwrite:n.clobber;if(n.preserveTimestamps&&process.arch==="ia32"){console.warn(`fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269`)}const a=checkPaths(e,t);if(n.filter&&!n.filter(e,t))return;const s=i.dirname(t);if(!r.existsSync(s))o(s);return startCopy(a,e,t,n)}function startCopy(e,t,n,r){if(r.filter&&!r.filter(t,n))return;return getStats(e,t,n,r)}function getStats(e,t,n,i){const o=i.dereference?r.statSync:r.lstatSync;const a=o(t);if(a.isDirectory())return onDir(a,e,t,n,i);else if(a.isFile()||a.isCharacterDevice()||a.isBlockDevice())return onFile(a,e,t,n,i);else if(a.isSymbolicLink())return onLink(e,t,n,i)}function onFile(e,t,n,r,i){if(t===s)return copyFile(e,n,r,i);return mayCopyFile(e,n,r,i)}function mayCopyFile(e,t,n,i){if(i.overwrite){r.unlinkSync(n);return copyFile(e,t,n,i)}else if(i.errorOnExist){throw new Error(`'${n}' already exists`)}}function copyFile(e,t,n,i){if(typeof r.copyFileSync==="function"){r.copyFileSync(t,n);r.chmodSync(n,e.mode);if(i.preserveTimestamps){return a(n,e.atime,e.mtime)}return}return copyFileFallback(e,t,n,i)}function copyFileFallback(e,t,i,o){const a=64*1024;const s=n(6598)(a);const c=r.openSync(t,"r");const u=r.openSync(i,"w",e.mode);let l=0;while(l<e.size){const e=r.readSync(c,s,0,a,l);r.writeSync(u,s,0,e);l+=e}if(o.preserveTimestamps)r.futimesSync(u,e.atime,e.mtime);r.closeSync(c);r.closeSync(u)}function onDir(e,t,n,r,i){if(t===s)return mkDirAndCopy(e,n,r,i);if(t&&!t.isDirectory()){throw new Error(`Cannot overwrite non-directory '${r}' with directory '${n}'.`)}return copyDir(n,r,i)}function mkDirAndCopy(e,t,n,i){r.mkdirSync(n);copyDir(t,n,i);return r.chmodSync(n,e.mode)}function copyDir(e,t,n){r.readdirSync(e).forEach(r=>copyDirItem(r,e,t,n))}function copyDirItem(e,t,n,r){const o=i.join(t,e);const a=i.join(n,e);const s=checkPaths(o,a);return startCopy(s,o,a,r)}function onLink(e,t,n,o){let a=r.readlinkSync(t);if(o.dereference){a=i.resolve(process.cwd(),a)}if(e===s){return r.symlinkSync(a,n)}else{let e;try{e=r.readlinkSync(n)}catch(e){if(e.code==="EINVAL"||e.code==="UNKNOWN")return r.symlinkSync(a,n);throw e}if(o.dereference){e=i.resolve(process.cwd(),e)}if(isSrcSubdir(a,e)){throw new Error(`Cannot copy '${a}' to a subdirectory of itself, '${e}'.`)}if(r.statSync(n).isDirectory()&&isSrcSubdir(e,a)){throw new Error(`Cannot overwrite '${e}' with '${a}'.`)}return copyLink(a,n)}}function copyLink(e,t){r.unlinkSync(t);return r.symlinkSync(e,t)}function isSrcSubdir(e,t){const n=i.resolve(e).split(i.sep);const r=i.resolve(t).split(i.sep);return n.reduce((e,t,n)=>e&&r[n]===t,true)}function checkStats(e,t){const n=r.statSync(e);let i;try{i=r.statSync(t)}catch(e){if(e.code==="ENOENT")return{srcStat:n,destStat:s};throw e}return{srcStat:n,destStat:i}}function checkPaths(e,t){const{srcStat:n,destStat:r}=checkStats(e,t);if(r.ino&&r.ino===n.ino){throw new Error("Source and destination must not be the same.")}if(n.isDirectory()&&isSrcSubdir(e,t)){throw new Error(`Cannot copy '${e}' to a subdirectory of itself, '${t}'.`)}return r}e.exports=copySync},7171:function(e){e.exports={$id:"afterRequest.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",optional:true,required:["lastAccess","eTag","hitCount"],properties:{expires:{type:"string",pattern:"^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))?"},lastAccess:{type:"string",pattern:"^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))?"},eTag:{type:"string"},hitCount:{type:"integer"},comment:{type:"string"}}}},7176:function(e,t){(function(){var n;var r=0xdeadbeefcafe;var i=(r&16777215)==15715070;function BigInteger(e,t,n){if(e!=null)if("number"==typeof e)this.fromNumber(e,t,n);else if(t==null&&"string"!=typeof e)this.fromString(e,256);else this.fromString(e,t)}function nbi(){return new BigInteger(null)}function am1(e,t,n,r,i,o){while(--o>=0){var a=t*this[e++]+n[r]+i;i=Math.floor(a/67108864);n[r++]=a&67108863}return i}function am2(e,t,n,r,i,o){var a=t&32767,s=t>>15;while(--o>=0){var c=this[e]&32767;var u=this[e++]>>15;var l=s*c+u*a;c=a*c+((l&32767)<<15)+n[r]+(i&1073741823);i=(c>>>30)+(l>>>15)+s*u+(i>>>30);n[r++]=c&1073741823}return i}function am3(e,t,n,r,i,o){var a=t&16383,s=t>>14;while(--o>=0){var c=this[e]&16383;var u=this[e++]>>14;var l=s*c+u*a;c=a*c+((l&16383)<<14)+n[r]+i;i=(c>>28)+(l>>14)+s*u;n[r++]=c&268435455}return i}var o=typeof navigator!=="undefined";if(o&&i&&navigator.appName=="Microsoft Internet Explorer"){BigInteger.prototype.am=am2;n=30}else if(o&&i&&navigator.appName!="Netscape"){BigInteger.prototype.am=am1;n=26}else{BigInteger.prototype.am=am3;n=28}BigInteger.prototype.DB=n;BigInteger.prototype.DM=(1<<n)-1;BigInteger.prototype.DV=1<<n;var a=52;BigInteger.prototype.FV=Math.pow(2,a);BigInteger.prototype.F1=a-n;BigInteger.prototype.F2=2*n-a;var s="0123456789abcdefghijklmnopqrstuvwxyz";var c=new Array;var u,l;u="0".charCodeAt(0);for(l=0;l<=9;++l)c[u++]=l;u="a".charCodeAt(0);for(l=10;l<36;++l)c[u++]=l;u="A".charCodeAt(0);for(l=10;l<36;++l)c[u++]=l;function int2char(e){return s.charAt(e)}function intAt(e,t){var n=c[e.charCodeAt(t)];return n==null?-1:n}function bnpCopyTo(e){for(var t=this.t-1;t>=0;--t)e[t]=this[t];e.t=this.t;e.s=this.s}function bnpFromInt(e){this.t=1;this.s=e<0?-1:0;if(e>0)this[0]=e;else if(e<-1)this[0]=e+this.DV;else this.t=0}function nbv(e){var t=nbi();t.fromInt(e);return t}function bnpFromString(e,t){var n;if(t==16)n=4;else if(t==8)n=3;else if(t==256)n=8;else if(t==2)n=1;else if(t==32)n=5;else if(t==4)n=2;else{this.fromRadix(e,t);return}this.t=0;this.s=0;var r=e.length,i=false,o=0;while(--r>=0){var a=n==8?e[r]&255:intAt(e,r);if(a<0){if(e.charAt(r)=="-")i=true;continue}i=false;if(o==0)this[this.t++]=a;else if(o+n>this.DB){this[this.t-1]|=(a&(1<<this.DB-o)-1)<<o;this[this.t++]=a>>this.DB-o}else this[this.t-1]|=a<<o;o+=n;if(o>=this.DB)o-=this.DB}if(n==8&&(e[0]&128)!=0){this.s=-1;if(o>0)this[this.t-1]|=(1<<this.DB-o)-1<<o}this.clamp();if(i)BigInteger.ZERO.subTo(this,this)}function bnpClamp(){var e=this.s&this.DM;while(this.t>0&&this[this.t-1]==e)--this.t}function bnToString(e){if(this.s<0)return"-"+this.negate().toString(e);var t;if(e==16)t=4;else if(e==8)t=3;else if(e==2)t=1;else if(e==32)t=5;else if(e==4)t=2;else return this.toRadix(e);var n=(1<<t)-1,r,i=false,o="",a=this.t;var s=this.DB-a*this.DB%t;if(a-- >0){if(s<this.DB&&(r=this[a]>>s)>0){i=true;o=int2char(r)}while(a>=0){if(s<t){r=(this[a]&(1<<s)-1)<<t-s;r|=this[--a]>>(s+=this.DB-t)}else{r=this[a]>>(s-=t)&n;if(s<=0){s+=this.DB;--a}}if(r>0)i=true;if(i)o+=int2char(r)}}return i?o:"0"}function bnNegate(){var e=nbi();BigInteger.ZERO.subTo(this,e);return e}function bnAbs(){return this.s<0?this.negate():this}function bnCompareTo(e){var t=this.s-e.s;if(t!=0)return t;var n=this.t;t=n-e.t;if(t!=0)return this.s<0?-t:t;while(--n>=0)if((t=this[n]-e[n])!=0)return t;return 0}function nbits(e){var t=1,n;if((n=e>>>16)!=0){e=n;t+=16}if((n=e>>8)!=0){e=n;t+=8}if((n=e>>4)!=0){e=n;t+=4}if((n=e>>2)!=0){e=n;t+=2}if((n=e>>1)!=0){e=n;t+=1}return t}function bnBitLength(){if(this.t<=0)return 0;return this.DB*(this.t-1)+nbits(this[this.t-1]^this.s&this.DM)}function bnpDLShiftTo(e,t){var n;for(n=this.t-1;n>=0;--n)t[n+e]=this[n];for(n=e-1;n>=0;--n)t[n]=0;t.t=this.t+e;t.s=this.s}function bnpDRShiftTo(e,t){for(var n=e;n<this.t;++n)t[n-e]=this[n];t.t=Math.max(this.t-e,0);t.s=this.s}function bnpLShiftTo(e,t){var n=e%this.DB;var r=this.DB-n;var i=(1<<r)-1;var o=Math.floor(e/this.DB),a=this.s<<n&this.DM,s;for(s=this.t-1;s>=0;--s){t[s+o+1]=this[s]>>r|a;a=(this[s]&i)<<n}for(s=o-1;s>=0;--s)t[s]=0;t[o]=a;t.t=this.t+o+1;t.s=this.s;t.clamp()}function bnpRShiftTo(e,t){t.s=this.s;var n=Math.floor(e/this.DB);if(n>=this.t){t.t=0;return}var r=e%this.DB;var i=this.DB-r;var o=(1<<r)-1;t[0]=this[n]>>r;for(var a=n+1;a<this.t;++a){t[a-n-1]|=(this[a]&o)<<i;t[a-n]=this[a]>>r}if(r>0)t[this.t-n-1]|=(this.s&o)<<i;t.t=this.t-n;t.clamp()}function bnpSubTo(e,t){var n=0,r=0,i=Math.min(e.t,this.t);while(n<i){r+=this[n]-e[n];t[n++]=r&this.DM;r>>=this.DB}if(e.t<this.t){r-=e.s;while(n<this.t){r+=this[n];t[n++]=r&this.DM;r>>=this.DB}r+=this.s}else{r+=this.s;while(n<e.t){r-=e[n];t[n++]=r&this.DM;r>>=this.DB}r-=e.s}t.s=r<0?-1:0;if(r<-1)t[n++]=this.DV+r;else if(r>0)t[n++]=r;t.t=n;t.clamp()}function bnpMultiplyTo(e,t){var n=this.abs(),r=e.abs();var i=n.t;t.t=i+r.t;while(--i>=0)t[i]=0;for(i=0;i<r.t;++i)t[i+n.t]=n.am(0,r[i],t,i,0,n.t);t.s=0;t.clamp();if(this.s!=e.s)BigInteger.ZERO.subTo(t,t)}function bnpSquareTo(e){var t=this.abs();var n=e.t=2*t.t;while(--n>=0)e[n]=0;for(n=0;n<t.t-1;++n){var r=t.am(n,t[n],e,2*n,0,1);if((e[n+t.t]+=t.am(n+1,2*t[n],e,2*n+1,r,t.t-n-1))>=t.DV){e[n+t.t]-=t.DV;e[n+t.t+1]=1}}if(e.t>0)e[e.t-1]+=t.am(n,t[n],e,2*n,0,1);e.s=0;e.clamp()}function bnpDivRemTo(e,t,n){var r=e.abs();if(r.t<=0)return;var i=this.abs();if(i.t<r.t){if(t!=null)t.fromInt(0);if(n!=null)this.copyTo(n);return}if(n==null)n=nbi();var o=nbi(),a=this.s,s=e.s;var c=this.DB-nbits(r[r.t-1]);if(c>0){r.lShiftTo(c,o);i.lShiftTo(c,n)}else{r.copyTo(o);i.copyTo(n)}var u=o.t;var l=o[u-1];if(l==0)return;var f=l*(1<<this.F1)+(u>1?o[u-2]>>this.F2:0);var p=this.FV/f,d=(1<<this.F1)/f,h=1<<this.F2;var m=n.t,v=m-u,g=t==null?nbi():t;o.dlShiftTo(v,g);if(n.compareTo(g)>=0){n[n.t++]=1;n.subTo(g,n)}BigInteger.ONE.dlShiftTo(u,g);g.subTo(o,o);while(o.t<u)o[o.t++]=0;while(--v>=0){var y=n[--m]==l?this.DM:Math.floor(n[m]*p+(n[m-1]+h)*d);if((n[m]+=o.am(0,y,n,v,0,u))<y){o.dlShiftTo(v,g);n.subTo(g,n);while(n[m]<--y)n.subTo(g,n)}}if(t!=null){n.drShiftTo(u,t);if(a!=s)BigInteger.ZERO.subTo(t,t)}n.t=u;n.clamp();if(c>0)n.rShiftTo(c,n);if(a<0)BigInteger.ZERO.subTo(n,n)}function bnMod(e){var t=nbi();this.abs().divRemTo(e,null,t);if(this.s<0&&t.compareTo(BigInteger.ZERO)>0)e.subTo(t,t);return t}function Classic(e){this.m=e}function cConvert(e){if(e.s<0||e.compareTo(this.m)>=0)return e.mod(this.m);else return e}function cRevert(e){return e}function cReduce(e){e.divRemTo(this.m,null,e)}function cMulTo(e,t,n){e.multiplyTo(t,n);this.reduce(n)}function cSqrTo(e,t){e.squareTo(t);this.reduce(t)}Classic.prototype.convert=cConvert;Classic.prototype.revert=cRevert;Classic.prototype.reduce=cReduce;Classic.prototype.mulTo=cMulTo;Classic.prototype.sqrTo=cSqrTo;function bnpInvDigit(){if(this.t<1)return 0;var e=this[0];if((e&1)==0)return 0;var t=e&3;t=t*(2-(e&15)*t)&15;t=t*(2-(e&255)*t)&255;t=t*(2-((e&65535)*t&65535))&65535;t=t*(2-e*t%this.DV)%this.DV;return t>0?this.DV-t:-t}function Montgomery(e){this.m=e;this.mp=e.invDigit();this.mpl=this.mp&32767;this.mph=this.mp>>15;this.um=(1<<e.DB-15)-1;this.mt2=2*e.t}function montConvert(e){var t=nbi();e.abs().dlShiftTo(this.m.t,t);t.divRemTo(this.m,null,t);if(e.s<0&&t.compareTo(BigInteger.ZERO)>0)this.m.subTo(t,t);return t}function montRevert(e){var t=nbi();e.copyTo(t);this.reduce(t);return t}function montReduce(e){while(e.t<=this.mt2)e[e.t++]=0;for(var t=0;t<this.m.t;++t){var n=e[t]&32767;var r=n*this.mpl+((n*this.mph+(e[t]>>15)*this.mpl&this.um)<<15)&e.DM;n=t+this.m.t;e[n]+=this.m.am(0,r,e,t,0,this.m.t);while(e[n]>=e.DV){e[n]-=e.DV;e[++n]++}}e.clamp();e.drShiftTo(this.m.t,e);if(e.compareTo(this.m)>=0)e.subTo(this.m,e)}function montSqrTo(e,t){e.squareTo(t);this.reduce(t)}function montMulTo(e,t,n){e.multiplyTo(t,n);this.reduce(n)}Montgomery.prototype.convert=montConvert;Montgomery.prototype.revert=montRevert;Montgomery.prototype.reduce=montReduce;Montgomery.prototype.mulTo=montMulTo;Montgomery.prototype.sqrTo=montSqrTo;function bnpIsEven(){return(this.t>0?this[0]&1:this.s)==0}function bnpExp(e,t){if(e>4294967295||e<1)return BigInteger.ONE;var n=nbi(),r=nbi(),i=t.convert(this),o=nbits(e)-1;i.copyTo(n);while(--o>=0){t.sqrTo(n,r);if((e&1<<o)>0)t.mulTo(r,i,n);else{var a=n;n=r;r=a}}return t.revert(n)}function bnModPowInt(e,t){var n;if(e<256||t.isEven())n=new Classic(t);else n=new Montgomery(t);return this.exp(e,n)}BigInteger.prototype.copyTo=bnpCopyTo;BigInteger.prototype.fromInt=bnpFromInt;BigInteger.prototype.fromString=bnpFromString;BigInteger.prototype.clamp=bnpClamp;BigInteger.prototype.dlShiftTo=bnpDLShiftTo;BigInteger.prototype.drShiftTo=bnpDRShiftTo;BigInteger.prototype.lShiftTo=bnpLShiftTo;BigInteger.prototype.rShiftTo=bnpRShiftTo;BigInteger.prototype.subTo=bnpSubTo;BigInteger.prototype.multiplyTo=bnpMultiplyTo;BigInteger.prototype.squareTo=bnpSquareTo;BigInteger.prototype.divRemTo=bnpDivRemTo;BigInteger.prototype.invDigit=bnpInvDigit;BigInteger.prototype.isEven=bnpIsEven;BigInteger.prototype.exp=bnpExp;BigInteger.prototype.toString=bnToString;BigInteger.prototype.negate=bnNegate;BigInteger.prototype.abs=bnAbs;BigInteger.prototype.compareTo=bnCompareTo;BigInteger.prototype.bitLength=bnBitLength;BigInteger.prototype.mod=bnMod;BigInteger.prototype.modPowInt=bnModPowInt;BigInteger.ZERO=nbv(0);BigInteger.ONE=nbv(1);function bnClone(){var e=nbi();this.copyTo(e);return e}function bnIntValue(){if(this.s<0){if(this.t==1)return this[0]-this.DV;else if(this.t==0)return-1}else if(this.t==1)return this[0];else if(this.t==0)return 0;return(this[1]&(1<<32-this.DB)-1)<<this.DB|this[0]}function bnByteValue(){return this.t==0?this.s:this[0]<<24>>24}function bnShortValue(){return this.t==0?this.s:this[0]<<16>>16}function bnpChunkSize(e){return Math.floor(Math.LN2*this.DB/Math.log(e))}function bnSigNum(){if(this.s<0)return-1;else if(this.t<=0||this.t==1&&this[0]<=0)return 0;else return 1}function bnpToRadix(e){if(e==null)e=10;if(this.signum()==0||e<2||e>36)return"0";var t=this.chunkSize(e);var n=Math.pow(e,t);var r=nbv(n),i=nbi(),o=nbi(),a="";this.divRemTo(r,i,o);while(i.signum()>0){a=(n+o.intValue()).toString(e).substr(1)+a;i.divRemTo(r,i,o)}return o.intValue().toString(e)+a}function bnpFromRadix(e,t){this.fromInt(0);if(t==null)t=10;var n=this.chunkSize(t);var r=Math.pow(t,n),i=false,o=0,a=0;for(var s=0;s<e.length;++s){var c=intAt(e,s);if(c<0){if(e.charAt(s)=="-"&&this.signum()==0)i=true;continue}a=t*a+c;if(++o>=n){this.dMultiply(r);this.dAddOffset(a,0);o=0;a=0}}if(o>0){this.dMultiply(Math.pow(t,o));this.dAddOffset(a,0)}if(i)BigInteger.ZERO.subTo(this,this)}function bnpFromNumber(e,t,n){if("number"==typeof t){if(e<2)this.fromInt(1);else{this.fromNumber(e,n);if(!this.testBit(e-1))this.bitwiseTo(BigInteger.ONE.shiftLeft(e-1),op_or,this);if(this.isEven())this.dAddOffset(1,0);while(!this.isProbablePrime(t)){this.dAddOffset(2,0);if(this.bitLength()>e)this.subTo(BigInteger.ONE.shiftLeft(e-1),this)}}}else{var r=new Array,i=e&7;r.length=(e>>3)+1;t.nextBytes(r);if(i>0)r[0]&=(1<<i)-1;else r[0]=0;this.fromString(r,256)}}function bnToByteArray(){var e=this.t,t=new Array;t[0]=this.s;var n=this.DB-e*this.DB%8,r,i=0;if(e-- >0){if(n<this.DB&&(r=this[e]>>n)!=(this.s&this.DM)>>n)t[i++]=r|this.s<<this.DB-n;while(e>=0){if(n<8){r=(this[e]&(1<<n)-1)<<8-n;r|=this[--e]>>(n+=this.DB-8)}else{r=this[e]>>(n-=8)&255;if(n<=0){n+=this.DB;--e}}if((r&128)!=0)r|=-256;if(i==0&&(this.s&128)!=(r&128))++i;if(i>0||r!=this.s)t[i++]=r}}return t}function bnEquals(e){return this.compareTo(e)==0}function bnMin(e){return this.compareTo(e)<0?this:e}function bnMax(e){return this.compareTo(e)>0?this:e}function bnpBitwiseTo(e,t,n){var r,i,o=Math.min(e.t,this.t);for(r=0;r<o;++r)n[r]=t(this[r],e[r]);if(e.t<this.t){i=e.s&this.DM;for(r=o;r<this.t;++r)n[r]=t(this[r],i);n.t=this.t}else{i=this.s&this.DM;for(r=o;r<e.t;++r)n[r]=t(i,e[r]);n.t=e.t}n.s=t(this.s,e.s);n.clamp()}function op_and(e,t){return e&t}function bnAnd(e){var t=nbi();this.bitwiseTo(e,op_and,t);return t}function op_or(e,t){return e|t}function bnOr(e){var t=nbi();this.bitwiseTo(e,op_or,t);return t}function op_xor(e,t){return e^t}function bnXor(e){var t=nbi();this.bitwiseTo(e,op_xor,t);return t}function op_andnot(e,t){return e&~t}function bnAndNot(e){var t=nbi();this.bitwiseTo(e,op_andnot,t);return t}function bnNot(){var e=nbi();for(var t=0;t<this.t;++t)e[t]=this.DM&~this[t];e.t=this.t;e.s=~this.s;return e}function bnShiftLeft(e){var t=nbi();if(e<0)this.rShiftTo(-e,t);else this.lShiftTo(e,t);return t}function bnShiftRight(e){var t=nbi();if(e<0)this.lShiftTo(-e,t);else this.rShiftTo(e,t);return t}function lbit(e){if(e==0)return-1;var t=0;if((e&65535)==0){e>>=16;t+=16}if((e&255)==0){e>>=8;t+=8}if((e&15)==0){e>>=4;t+=4}if((e&3)==0){e>>=2;t+=2}if((e&1)==0)++t;return t}function bnGetLowestSetBit(){for(var e=0;e<this.t;++e)if(this[e]!=0)return e*this.DB+lbit(this[e]);if(this.s<0)return this.t*this.DB;return-1}function cbit(e){var t=0;while(e!=0){e&=e-1;++t}return t}function bnBitCount(){var e=0,t=this.s&this.DM;for(var n=0;n<this.t;++n)e+=cbit(this[n]^t);return e}function bnTestBit(e){var t=Math.floor(e/this.DB);if(t>=this.t)return this.s!=0;return(this[t]&1<<e%this.DB)!=0}function bnpChangeBit(e,t){var n=BigInteger.ONE.shiftLeft(e);this.bitwiseTo(n,t,n);return n}function bnSetBit(e){return this.changeBit(e,op_or)}function bnClearBit(e){return this.changeBit(e,op_andnot)}function bnFlipBit(e){return this.changeBit(e,op_xor)}function bnpAddTo(e,t){var n=0,r=0,i=Math.min(e.t,this.t);while(n<i){r+=this[n]+e[n];t[n++]=r&this.DM;r>>=this.DB}if(e.t<this.t){r+=e.s;while(n<this.t){r+=this[n];t[n++]=r&this.DM;r>>=this.DB}r+=this.s}else{r+=this.s;while(n<e.t){r+=e[n];t[n++]=r&this.DM;r>>=this.DB}r+=e.s}t.s=r<0?-1:0;if(r>0)t[n++]=r;else if(r<-1)t[n++]=this.DV+r;t.t=n;t.clamp()}function bnAdd(e){var t=nbi();this.addTo(e,t);return t}function bnSubtract(e){var t=nbi();this.subTo(e,t);return t}function bnMultiply(e){var t=nbi();this.multiplyTo(e,t);return t}function bnSquare(){var e=nbi();this.squareTo(e);return e}function bnDivide(e){var t=nbi();this.divRemTo(e,t,null);return t}function bnRemainder(e){var t=nbi();this.divRemTo(e,null,t);return t}function bnDivideAndRemainder(e){var t=nbi(),n=nbi();this.divRemTo(e,t,n);return new Array(t,n)}function bnpDMultiply(e){this[this.t]=this.am(0,e-1,this,0,0,this.t);++this.t;this.clamp()}function bnpDAddOffset(e,t){if(e==0)return;while(this.t<=t)this[this.t++]=0;this[t]+=e;while(this[t]>=this.DV){this[t]-=this.DV;if(++t>=this.t)this[this.t++]=0;++this[t]}}function NullExp(){}function nNop(e){return e}function nMulTo(e,t,n){e.multiplyTo(t,n)}function nSqrTo(e,t){e.squareTo(t)}NullExp.prototype.convert=nNop;NullExp.prototype.revert=nNop;NullExp.prototype.mulTo=nMulTo;NullExp.prototype.sqrTo=nSqrTo;function bnPow(e){return this.exp(e,new NullExp)}function bnpMultiplyLowerTo(e,t,n){var r=Math.min(this.t+e.t,t);n.s=0;n.t=r;while(r>0)n[--r]=0;var i;for(i=n.t-this.t;r<i;++r)n[r+this.t]=this.am(0,e[r],n,r,0,this.t);for(i=Math.min(e.t,t);r<i;++r)this.am(0,e[r],n,r,0,t-r);n.clamp()}function bnpMultiplyUpperTo(e,t,n){--t;var r=n.t=this.t+e.t-t;n.s=0;while(--r>=0)n[r]=0;for(r=Math.max(t-this.t,0);r<e.t;++r)n[this.t+r-t]=this.am(t-r,e[r],n,0,0,this.t+r-t);n.clamp();n.drShiftTo(1,n)}function Barrett(e){this.r2=nbi();this.q3=nbi();BigInteger.ONE.dlShiftTo(2*e.t,this.r2);this.mu=this.r2.divide(e);this.m=e}function barrettConvert(e){if(e.s<0||e.t>2*this.m.t)return e.mod(this.m);else if(e.compareTo(this.m)<0)return e;else{var t=nbi();e.copyTo(t);this.reduce(t);return t}}function barrettRevert(e){return e}function barrettReduce(e){e.drShiftTo(this.m.t-1,this.r2);if(e.t>this.m.t+1){e.t=this.m.t+1;e.clamp()}this.mu.multiplyUpperTo(this.r2,this.m.t+1,this.q3);this.m.multiplyLowerTo(this.q3,this.m.t+1,this.r2);while(e.compareTo(this.r2)<0)e.dAddOffset(1,this.m.t+1);e.subTo(this.r2,e);while(e.compareTo(this.m)>=0)e.subTo(this.m,e)}function barrettSqrTo(e,t){e.squareTo(t);this.reduce(t)}function barrettMulTo(e,t,n){e.multiplyTo(t,n);this.reduce(n)}Barrett.prototype.convert=barrettConvert;Barrett.prototype.revert=barrettRevert;Barrett.prototype.reduce=barrettReduce;Barrett.prototype.mulTo=barrettMulTo;Barrett.prototype.sqrTo=barrettSqrTo;function bnModPow(e,t){var n=e.bitLength(),r,i=nbv(1),o;if(n<=0)return i;else if(n<18)r=1;else if(n<48)r=3;else if(n<144)r=4;else if(n<768)r=5;else r=6;if(n<8)o=new Classic(t);else if(t.isEven())o=new Barrett(t);else o=new Montgomery(t);var a=new Array,s=3,c=r-1,u=(1<<r)-1;a[1]=o.convert(this);if(r>1){var l=nbi();o.sqrTo(a[1],l);while(s<=u){a[s]=nbi();o.mulTo(l,a[s-2],a[s]);s+=2}}var f=e.t-1,p,d=true,h=nbi(),m;n=nbits(e[f])-1;while(f>=0){if(n>=c)p=e[f]>>n-c&u;else{p=(e[f]&(1<<n+1)-1)<<c-n;if(f>0)p|=e[f-1]>>this.DB+n-c}s=r;while((p&1)==0){p>>=1;--s}if((n-=s)<0){n+=this.DB;--f}if(d){a[p].copyTo(i);d=false}else{while(s>1){o.sqrTo(i,h);o.sqrTo(h,i);s-=2}if(s>0)o.sqrTo(i,h);else{m=i;i=h;h=m}o.mulTo(h,a[p],i)}while(f>=0&&(e[f]&1<<n)==0){o.sqrTo(i,h);m=i;i=h;h=m;if(--n<0){n=this.DB-1;--f}}}return o.revert(i)}function bnGCD(e){var t=this.s<0?this.negate():this.clone();var n=e.s<0?e.negate():e.clone();if(t.compareTo(n)<0){var r=t;t=n;n=r}var i=t.getLowestSetBit(),o=n.getLowestSetBit();if(o<0)return t;if(i<o)o=i;if(o>0){t.rShiftTo(o,t);n.rShiftTo(o,n)}while(t.signum()>0){if((i=t.getLowestSetBit())>0)t.rShiftTo(i,t);if((i=n.getLowestSetBit())>0)n.rShiftTo(i,n);if(t.compareTo(n)>=0){t.subTo(n,t);t.rShiftTo(1,t)}else{n.subTo(t,n);n.rShiftTo(1,n)}}if(o>0)n.lShiftTo(o,n);return n}function bnpModInt(e){if(e<=0)return 0;var t=this.DV%e,n=this.s<0?e-1:0;if(this.t>0)if(t==0)n=this[0]%e;else for(var r=this.t-1;r>=0;--r)n=(t*n+this[r])%e;return n}function bnModInverse(e){var t=e.isEven();if(this.isEven()&&t||e.signum()==0)return BigInteger.ZERO;var n=e.clone(),r=this.clone();var i=nbv(1),o=nbv(0),a=nbv(0),s=nbv(1);while(n.signum()!=0){while(n.isEven()){n.rShiftTo(1,n);if(t){if(!i.isEven()||!o.isEven()){i.addTo(this,i);o.subTo(e,o)}i.rShiftTo(1,i)}else if(!o.isEven())o.subTo(e,o);o.rShiftTo(1,o)}while(r.isEven()){r.rShiftTo(1,r);if(t){if(!a.isEven()||!s.isEven()){a.addTo(this,a);s.subTo(e,s)}a.rShiftTo(1,a)}else if(!s.isEven())s.subTo(e,s);s.rShiftTo(1,s)}if(n.compareTo(r)>=0){n.subTo(r,n);if(t)i.subTo(a,i);o.subTo(s,o)}else{r.subTo(n,r);if(t)a.subTo(i,a);s.subTo(o,s)}}if(r.compareTo(BigInteger.ONE)!=0)return BigInteger.ZERO;if(s.compareTo(e)>=0)return s.subtract(e);if(s.signum()<0)s.addTo(e,s);else return s;if(s.signum()<0)return s.add(e);else return s}var f=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997];var p=(1<<26)/f[f.length-1];function bnIsProbablePrime(e){var t,n=this.abs();if(n.t==1&&n[0]<=f[f.length-1]){for(t=0;t<f.length;++t)if(n[0]==f[t])return true;return false}if(n.isEven())return false;t=1;while(t<f.length){var r=f[t],i=t+1;while(i<f.length&&r<p)r*=f[i++];r=n.modInt(r);while(t<i)if(r%f[t++]==0)return false}return n.millerRabin(e)}function bnpMillerRabin(e){var t=this.subtract(BigInteger.ONE);var n=t.getLowestSetBit();if(n<=0)return false;var r=t.shiftRight(n);e=e+1>>1;if(e>f.length)e=f.length;var i=nbi();for(var o=0;o<e;++o){i.fromInt(f[Math.floor(Math.random()*f.length)]);var a=i.modPow(r,this);if(a.compareTo(BigInteger.ONE)!=0&&a.compareTo(t)!=0){var s=1;while(s++<n&&a.compareTo(t)!=0){a=a.modPowInt(2,this);if(a.compareTo(BigInteger.ONE)==0)return false}if(a.compareTo(t)!=0)return false}}return true}BigInteger.prototype.chunkSize=bnpChunkSize;BigInteger.prototype.toRadix=bnpToRadix;BigInteger.prototype.fromRadix=bnpFromRadix;BigInteger.prototype.fromNumber=bnpFromNumber;BigInteger.prototype.bitwiseTo=bnpBitwiseTo;BigInteger.prototype.changeBit=bnpChangeBit;BigInteger.prototype.addTo=bnpAddTo;BigInteger.prototype.dMultiply=bnpDMultiply;BigInteger.prototype.dAddOffset=bnpDAddOffset;BigInteger.prototype.multiplyLowerTo=bnpMultiplyLowerTo;BigInteger.prototype.multiplyUpperTo=bnpMultiplyUpperTo;BigInteger.prototype.modInt=bnpModInt;BigInteger.prototype.millerRabin=bnpMillerRabin;BigInteger.prototype.clone=bnClone;BigInteger.prototype.intValue=bnIntValue;BigInteger.prototype.byteValue=bnByteValue;BigInteger.prototype.shortValue=bnShortValue;BigInteger.prototype.signum=bnSigNum;BigInteger.prototype.toByteArray=bnToByteArray;BigInteger.prototype.equals=bnEquals;BigInteger.prototype.min=bnMin;BigInteger.prototype.max=bnMax;BigInteger.prototype.and=bnAnd;BigInteger.prototype.or=bnOr;BigInteger.prototype.xor=bnXor;BigInteger.prototype.andNot=bnAndNot;BigInteger.prototype.not=bnNot;BigInteger.prototype.shiftLeft=bnShiftLeft;BigInteger.prototype.shiftRight=bnShiftRight;BigInteger.prototype.getLowestSetBit=bnGetLowestSetBit;BigInteger.prototype.bitCount=bnBitCount;BigInteger.prototype.testBit=bnTestBit;BigInteger.prototype.setBit=bnSetBit;BigInteger.prototype.clearBit=bnClearBit;BigInteger.prototype.flipBit=bnFlipBit;BigInteger.prototype.add=bnAdd;BigInteger.prototype.subtract=bnSubtract;BigInteger.prototype.multiply=bnMultiply;BigInteger.prototype.divide=bnDivide;BigInteger.prototype.remainder=bnRemainder;BigInteger.prototype.divideAndRemainder=bnDivideAndRemainder;BigInteger.prototype.modPow=bnModPow;BigInteger.prototype.modInverse=bnModInverse;BigInteger.prototype.pow=bnPow;BigInteger.prototype.gcd=bnGCD;BigInteger.prototype.isProbablePrime=bnIsProbablePrime;BigInteger.prototype.square=bnSquare;BigInteger.prototype.Barrett=Barrett;var d;var h;var m;function rng_seed_int(e){h[m++]^=e&255;h[m++]^=e>>8&255;h[m++]^=e>>16&255;h[m++]^=e>>24&255;if(m>=b)m-=b}function rng_seed_time(){rng_seed_int((new Date).getTime())}if(h==null){h=new Array;m=0;var v;if(typeof window!=="undefined"&&window.crypto){if(window.crypto.getRandomValues){var g=new Uint8Array(32);window.crypto.getRandomValues(g);for(v=0;v<32;++v)h[m++]=g[v]}else if(navigator.appName=="Netscape"&&navigator.appVersion<"5"){var y=window.crypto.random(32);for(v=0;v<y.length;++v)h[m++]=y.charCodeAt(v)&255}}while(m<b){v=Math.floor(65536*Math.random());h[m++]=v>>>8;h[m++]=v&255}m=0;rng_seed_time()}function rng_get_byte(){if(d==null){rng_seed_time();d=prng_newstate();d.init(h);for(m=0;m<h.length;++m)h[m]=0;m=0}return d.next()}function rng_get_bytes(e){var t;for(t=0;t<e.length;++t)e[t]=rng_get_byte()}function SecureRandom(){}SecureRandom.prototype.nextBytes=rng_get_bytes;function Arcfour(){this.i=0;this.j=0;this.S=new Array}function ARC4init(e){var t,n,r;for(t=0;t<256;++t)this.S[t]=t;n=0;for(t=0;t<256;++t){n=n+this.S[t]+e[t%e.length]&255;r=this.S[t];this.S[t]=this.S[n];this.S[n]=r}this.i=0;this.j=0}function ARC4next(){var e;this.i=this.i+1&255;this.j=this.j+this.S[this.i]&255;e=this.S[this.i];this.S[this.i]=this.S[this.j];this.S[this.j]=e;return this.S[e+this.S[this.i]&255]}Arcfour.prototype.init=ARC4init;Arcfour.prototype.next=ARC4next;function prng_newstate(){return new Arcfour}var b=256;BigInteger.SecureRandom=SecureRandom;BigInteger.BigInteger=BigInteger;if(true){t=e.exports=BigInteger}else{}}).call(this)},7177:function(e){"use strict";e.exports=function(e){try{return e()}catch(e){}}},7180:function(e,t,n){"use strict";var r=n(8757);e.exports=function(e){function star(){if(typeof e.options.star==="function"){return e.options.star.apply(this,arguments)}if(typeof e.options.star==="string"){return e.options.star}return".*?"}e.use(r.compilers);e.compiler.set("escape",function(e){return this.emit(e.val,e)}).set("dot",function(e){return this.emit("\\"+e.val,e)}).set("qmark",function(e){var t="[^\\\\/.]";var n=this.prev();if(e.parsed.slice(-1)==="("){var r=e.rest.charAt(0);if(r!=="!"&&r!=="="&&r!==":"){return this.emit(t,e)}return this.emit(e.val,e)}if(n.type==="text"&&n.val){return this.emit(t,e)}if(e.val.length>1){t+="{"+e.val.length+"}"}return this.emit(t,e)}).set("plus",function(e){var t=e.parsed.slice(-1);if(t==="]"||t===")"){return this.emit(e.val,e)}var n=this.output.slice(-1);if(!this.output||/[?*+]/.test(n)&&e.parent.type!=="bracket"){return this.emit("\\+",e)}if(/\w/.test(n)&&!e.inside){return this.emit("+\\+?",e)}return this.emit("+",e)}).set("star",function(e){var t=this.prev();var n=t.type!=="text"&&t.type!=="escape"?"(?!\\.)":"";return this.emit(n+star.call(this,e),e)}).set("paren",function(e){return this.mapVisit(e.nodes)}).set("paren.open",function(e){var t=this.options.capture?"(":"";switch(e.parent.prefix){case"!":case"^":return this.emit(t+"(?:(?!(?:",e);case"*":case"+":case"?":case"@":return this.emit(t+"(?:",e);default:{var n=e.val;if(this.options.bash===true){n="\\"+n}else if(!this.options.capture&&n==="("&&e.parent.rest[0]!=="?"){n+="?:"}return this.emit(n,e)}}}).set("paren.close",function(e){var t=this.options.capture?")":"";switch(e.prefix){case"!":case"^":var n=/^(\)|$)/.test(e.rest)?"$":"";var r=star.call(this,e);if(e.parent.hasSlash&&!this.options.star&&this.options.slash!==false){r=".*?"}return this.emit(n+("))"+r+")")+t,e);case"*":case"+":case"?":return this.emit(")"+e.prefix+t,e);case"@":return this.emit(")"+t,e);default:{var i=(this.options.bash===true?"\\":"")+")";return this.emit(i,e)}}}).set("text",function(e){var t=e.val.replace(/[\[\]]/g,"\\$&");return this.emit(t,e)})}},7184:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=r(n(8265));const o=n(6039);e.exports={mkdirs:i,mkdirsSync:o,mkdirp:i,mkdirpSync:o,ensureDir:i,ensureDirSync:o}},7188:function(e){"use strict";var t=Object.prototype.hasOwnProperty;var n=function(){var e=[];for(var t=0;t<256;++t){e.push("%"+((t<16?"0":"")+t.toString(16)).toUpperCase())}return e}();var r=function compactQueue(e){var t;while(e.length){var n=e.pop();t=n.obj[n.prop];if(Array.isArray(t)){var r=[];for(var i=0;i<t.length;++i){if(typeof t[i]!=="undefined"){r.push(t[i])}}n.obj[n.prop]=r}}return t};var i=function arrayToObject(e,t){var n=t&&t.plainObjects?Object.create(null):{};for(var r=0;r<e.length;++r){if(typeof e[r]!=="undefined"){n[r]=e[r]}}return n};var o=function merge(e,n,r){if(!n){return e}if(typeof n!=="object"){if(Array.isArray(e)){e.push(n)}else if(typeof e==="object"){if(r.plainObjects||r.allowPrototypes||!t.call(Object.prototype,n)){e[n]=true}}else{return[e,n]}return e}if(typeof e!=="object"){return[e].concat(n)}var o=e;if(Array.isArray(e)&&!Array.isArray(n)){o=i(e,r)}if(Array.isArray(e)&&Array.isArray(n)){n.forEach(function(n,i){if(t.call(e,i)){if(e[i]&&typeof e[i]==="object"){e[i]=merge(e[i],n,r)}else{e.push(n)}}else{e[i]=n}});return e}return Object.keys(n).reduce(function(e,i){var o=n[i];if(t.call(e,i)){e[i]=merge(e[i],o,r)}else{e[i]=o}return e},o)};var a=function assignSingleSource(e,t){return Object.keys(t).reduce(function(e,n){e[n]=t[n];return e},e)};var s=function(e){try{return decodeURIComponent(e.replace(/\+/g," "))}catch(t){return e}};var c=function encode(e){if(e.length===0){return e}var t=typeof e==="string"?e:String(e);var r="";for(var i=0;i<t.length;++i){var o=t.charCodeAt(i);if(o===45||o===46||o===95||o===126||o>=48&&o<=57||o>=65&&o<=90||o>=97&&o<=122){r+=t.charAt(i);continue}if(o<128){r=r+n[o];continue}if(o<2048){r=r+(n[192|o>>6]+n[128|o&63]);continue}if(o<55296||o>=57344){r=r+(n[224|o>>12]+n[128|o>>6&63]+n[128|o&63]);continue}i+=1;o=65536+((o&1023)<<10|t.charCodeAt(i)&1023);r+=n[240|o>>18]+n[128|o>>12&63]+n[128|o>>6&63]+n[128|o&63]}return r};var u=function compact(e){var t=[{obj:{o:e},prop:"o"}];var n=[];for(var i=0;i<t.length;++i){var o=t[i];var a=o.obj[o.prop];var s=Object.keys(a);for(var c=0;c<s.length;++c){var u=s[c];var l=a[u];if(typeof l==="object"&&l!==null&&n.indexOf(l)===-1){t.push({obj:a,prop:u});n.push(l)}}}return r(t)};var l=function isRegExp(e){return Object.prototype.toString.call(e)==="[object RegExp]"};var f=function isBuffer(e){if(e===null||typeof e==="undefined"){return false}return!!(e.constructor&&e.constructor.isBuffer&&e.constructor.isBuffer(e))};e.exports={arrayToObject:i,assign:a,compact:u,decode:s,encode:c,isBuffer:f,isRegExp:l,merge:o}},7189:function(e,t,n){"use strict";const r=n(3515);class ResourceLoan extends r{constructor(e,t){super(t);this._creationTimestamp=Date.now();this.pooledResource=e}reject(){}}e.exports=ResourceLoan},7213:function(e,t,n){var r=n(4096);var i=n(6629);var o=n(9128);var a=n(5852).isCore;var s=["dependencies","devDependencies","optionalDependencies"];var c=n(5235);var u=n(774);var l=n(3552);var f=e.exports={warn:function(){},fixRepositoryField:function(e){if(e.repositories){this.warn("repositories");e.repository=e.repositories[0]}if(!e.repository)return this.warn("missingRepository");if(typeof e.repository==="string"){e.repository={type:"git",url:e.repository}}var t=e.repository.url||"";if(t){var n=o.fromUrl(t);if(n){t=e.repository.url=n.getDefaultRepresentation()=="shortcut"?n.https():n.toString()}}if(t.match(/github.com\/[^\/]+\/[^\/]+\.git\.git$/)){this.warn("brokenGitUrl",t)}},fixTypos:function(e){Object.keys(l.topLevel).forEach(function(t){if(e.hasOwnProperty(t)){this.warn("typo",t,l.topLevel[t])}},this)},fixScriptsField:function(e){if(!e.scripts)return;if(typeof e.scripts!=="object"){this.warn("nonObjectScripts");delete e.scripts;return}Object.keys(e.scripts).forEach(function(t){if(typeof e.scripts[t]!=="string"){this.warn("nonStringScript");delete e.scripts[t]}else if(l.script[t]&&!e.scripts[l.script[t]]){this.warn("typo",t,l.script[t],"scripts")}},this)},fixFilesField:function(e){var t=e.files;if(t&&!Array.isArray(t)){this.warn("nonArrayFiles");delete e.files}else if(e.files){e.files=e.files.filter(function(e){if(!e||typeof e!=="string"){this.warn("invalidFilename",e);return false}else{return true}},this)}},fixBinField:function(e){if(!e.bin)return;if(typeof e.bin==="string"){var t={};var n;if(n=e.name.match(/^@[^\/]+[\/](.*)$/)){t[n[1]]=e.bin}else{t[e.name]=e.bin}e.bin=t}},fixManField:function(e){if(!e.man)return;if(typeof e.man==="string"){e.man=[e.man]}},fixBundleDependenciesField:function(e){var t="bundledDependencies";var n="bundleDependencies";if(e[t]&&!e[n]){e[n]=e[t];delete e[t]}if(e[n]&&!Array.isArray(e[n])){this.warn("nonArrayBundleDependencies");delete e[n]}else if(e[n]){e[n]=e[n].filter(function(t){if(!t||typeof t!=="string"){this.warn("nonStringBundleDependency",t);return false}else{if(!e.dependencies){e.dependencies={}}if(!e.dependencies.hasOwnProperty(t)){this.warn("nonDependencyBundleDependency",t);e.dependencies[t]="*"}return true}},this)}},fixDependencies:function(e,t){var n=!t;objectifyDeps(e,this.warn);addOptionalDepsToDeps(e,this.warn);this.fixBundleDependenciesField(e);["dependencies","devDependencies"].forEach(function(t){if(!(t in e))return;if(!e[t]||typeof e[t]!=="object"){this.warn("nonObjectDependencies",t);delete e[t];return}Object.keys(e[t]).forEach(function(n){var r=e[t][n];if(typeof r!=="string"){this.warn("nonStringDependency",n,JSON.stringify(r));delete e[t][n]}var i=o.fromUrl(e[t][n]);if(i)e[t][n]=i.toString()},this)},this)},fixModulesField:function(e){if(e.modules){this.warn("deprecatedModules");delete e.modules}},fixKeywordsField:function(e){if(typeof e.keywords==="string"){e.keywords=e.keywords.split(/,\s+/)}if(e.keywords&&!Array.isArray(e.keywords)){delete e.keywords;this.warn("nonArrayKeywords")}else if(e.keywords){e.keywords=e.keywords.filter(function(e){if(typeof e!=="string"||!e){this.warn("nonStringKeyword");return false}else{return true}},this)}},fixVersionField:function(e,t){var n=!t;if(!e.version){e.version="";return true}if(!r.valid(e.version,n)){throw new Error('Invalid version: "'+e.version+'"')}e.version=r.clean(e.version,n);return true},fixPeople:function(e){modifyPeople(e,unParsePerson);modifyPeople(e,parsePerson)},fixNameField:function(e,t){if(typeof t==="boolean")t={strict:t};else if(typeof t==="undefined")t={};var n=t.strict;if(!e.name&&!n){e.name="";return}if(typeof e.name!=="string"){throw new Error("name field must be a string.")}if(!n)e.name=e.name.trim();ensureValidName(e.name,n,t.allowLegacyCase);if(a(e.name))this.warn("conflictingName",e.name)},fixDescriptionField:function(e){if(e.description&&typeof e.description!=="string"){this.warn("nonStringDescription");delete e.description}if(e.readme&&!e.description)e.description=c(e.readme);if(e.description===undefined)delete e.description;if(!e.description)this.warn("missingDescription")},fixReadmeField:function(e){if(!e.readme){this.warn("missingReadme");e.readme="ERROR: No README data found!"}},fixBugsField:function(e){if(!e.bugs&&e.repository&&e.repository.url){var t=o.fromUrl(e.repository.url);if(t&&t.bugs()){e.bugs={url:t.bugs()}}}else if(e.bugs){var n=/^.+@.*\..+$/;if(typeof e.bugs=="string"){if(n.test(e.bugs))e.bugs={email:e.bugs};else if(u.parse(e.bugs).protocol)e.bugs={url:e.bugs};else this.warn("nonEmailUrlBugsString")}else{bugsTypos(e.bugs,this.warn);var r=e.bugs;e.bugs={};if(r.url){if(typeof r.url=="string"&&u.parse(r.url).protocol)e.bugs.url=r.url;else this.warn("nonUrlBugsUrlField")}if(r.email){if(typeof r.email=="string"&&n.test(r.email))e.bugs.email=r.email;else this.warn("nonEmailBugsEmailField")}}if(!e.bugs.email&&!e.bugs.url){delete e.bugs;this.warn("emptyNormalizedBugs")}}},fixHomepageField:function(e){if(!e.homepage&&e.repository&&e.repository.url){var t=o.fromUrl(e.repository.url);if(t&&t.docs())e.homepage=t.docs()}if(!e.homepage)return;if(typeof e.homepage!=="string"){this.warn("nonUrlHomepage");return delete e.homepage}if(!u.parse(e.homepage).protocol){e.homepage="http://"+e.homepage}},fixLicenseField:function(e){if(!e.license){return this.warn("missingLicense")}else{if(typeof e.license!=="string"||e.license.length<1||e.license.trim()===""){this.warn("invalidLicense")}else{if(!i(e.license).validForNewPackages)this.warn("invalidLicense")}}}};function isValidScopedPackageName(e){if(e.charAt(0)!=="@")return false;var t=e.slice(1).split("/");if(t.length!==2)return false;return t[0]&&t[1]&&t[0]===encodeURIComponent(t[0])&&t[1]===encodeURIComponent(t[1])}function isCorrectlyEncodedName(e){return!e.match(/[\/@\s\+%:]/)&&e===encodeURIComponent(e)}function ensureValidName(e,t,n){if(e.charAt(0)==="."||!(isValidScopedPackageName(e)||isCorrectlyEncodedName(e))||t&&!n&&e!==e.toLowerCase()||e.toLowerCase()==="node_modules"||e.toLowerCase()==="favicon.ico"){throw new Error("Invalid name: "+JSON.stringify(e))}}function modifyPeople(e,t){if(e.author)e.author=t(e.author);["maintainers","contributors"].forEach(function(n){if(!Array.isArray(e[n]))return;e[n]=e[n].map(t)});return e}function unParsePerson(e){if(typeof e==="string")return e;var t=e.name||"";var n=e.url||e.web;var r=n?" ("+n+")":"";var i=e.email||e.mail;var o=i?" <"+i+">":"";return t+o+r}function parsePerson(e){if(typeof e!=="string")return e;var t=e.match(/^([^\(<]+)/);var n=e.match(/\(([^\)]+)\)/);var r=e.match(/<([^>]+)>/);var i={};if(t&&t[0].trim())i.name=t[0].trim();if(r)i.email=r[1];if(n)i.url=n[1];return i}function addOptionalDepsToDeps(e,t){var n=e.optionalDependencies;if(!n)return;var r=e.dependencies||{};Object.keys(n).forEach(function(e){r[e]=n[e]});e.dependencies=r}function depObjectify(e,t,n){if(!e)return{};if(typeof e==="string"){e=e.trim().split(/[\n\r\s\t ,]+/)}if(!Array.isArray(e))return e;n("deprecatedArrayDependencies",t);var r={};e.filter(function(e){return typeof e==="string"}).forEach(function(e){e=e.trim().split(/(:?[@\s><=])/);var t=e.shift();var n=e.join("");n=n.trim();n=n.replace(/^@/,"");r[t]=n});return r}function objectifyDeps(e,t){s.forEach(function(n){if(!e[n])return;e[n]=depObjectify(e[n],n,t)})}function bugsTypos(e,t){if(!e)return;Object.keys(e).forEach(function(n){if(l.bugs[n]){t("typo",n,l.bugs[n],"bugs");e[l.bugs[n]]=e[n];delete e[n]}})}},7215:function(e,t,n){"use strict";const r=n(9450);const i=n(3192);const o=n(740);const a=n(3947);const s=(()=>{switch(process.platform){case"darwin":return o;case"win32":return a;case"android":if(process.env.PREFIX!=="/data/data/com.termux/files/usr"){throw new Error("You need to install Termux for this module to work on Android: https://termux.com")}return r;default:return i}})();t.write=(async e=>{if(typeof e!=="string"){throw new TypeError(`Expected a string, got ${typeof e}`)}await s.copy({input:e})});t.read=(async()=>s.paste({stripEof:false}));t.writeSync=(e=>{if(typeof e!=="string"){throw new TypeError(`Expected a string, got ${typeof e}`)}s.copySync({input:e})});t.readSync=(()=>s.pasteSync({stripEof:false}).stdout)},7219:function(e,t){"use strict";var n=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});function findAliasByAliasOrId(e,t,r){return n(this,void 0,void 0,function*(){return t.fetch(`/now/aliases/${encodeURIComponent(getSafeAlias(r))}`)})}t.default=findAliasByAliasOrId;function getSafeAlias(e){return e.replace(/^https:\/\//i,"").replace(/^\.+/,"").replace(/\.+$/,"").toLowerCase()}},7220:function(e){e.exports=isUrl;var t=/^(?:\w+:)?\/\/([^\s\.]+\.\S{2}|localhost[\:?\d]*)\S*$/;function isUrl(e){return t.test(e)}},7225:function(e,t,n){"use strict";var r=n(2650);e.exports=function toPath(e){if(r(e)!=="arguments"){e=arguments}return filter(e).join(".")};function filter(e){var t=e.length;var n=-1;var i=[];while(++n<t){var o=e[n];if(r(o)==="arguments"||Array.isArray(o)){i.push.apply(i,filter(o))}else if(typeof o==="string"){i.push(o)}}return i}},7227:function(e,t,n){"use strict";var r=n(5325);e.exports=function visit(e,t,n,i){if(!r(e)&&typeof e!=="function"){throw new Error("object-visit expects `thisArg` to be an object.")}if(typeof t!=="string"){throw new Error("object-visit expects `method` name to be a string")}if(typeof e[t]!=="function"){return e}var o=[].slice.call(arguments,3);n=n||{};for(var a in n){var s=[a,n[a]].concat(o);e[t].apply(e,s)}return e}},7231:function(e){e.exports=function(e){if(typeof e.create!=="function"){throw new TypeError("factory.create must be a function")}if(typeof e.destroy!=="function"){throw new TypeError("factory.destroy must be a function")}if(typeof e.validate!=="undefined"&&typeof e.validate!=="function"){throw new TypeError("factory.validate must be a function")}}},7233:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});t.default=new Map([["alias","alias"],["aliases","alias"],["billing","billing"],["cc","billing"],["cert","certs"],["certs","certs"],["deploy","deploy"],["deploy-v1","deploy"],["deploy-v2","deploy"],["dev","dev"],["dns","dns"],["domain","domains"],["domains","domains"],["downgrade","upgrade"],["help","help"],["init","init"],["inspect","inspect"],["list","list"],["ln","alias"],["log","logs"],["login","login"],["logout","logout"],["logs","logs"],["ls","list"],["project","projects"],["projects","projects"],["remove","remove"],["rm","remove"],["scale","scale"],["secret","secrets"],["secrets","secrets"],["switch","teams"],["team","teams"],["teams","teams"],["update","update"],["upgrade","upgrade"],["whoami","whoami"]])},7234:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({path:"customers/{customerId}/subscriptions",includeBasic:["create","list","retrieve","update","del"],deleteDiscount:i({method:"DELETE",path:"/{subscriptionId}/discount",urlParams:["customerId","subscriptionId"]})})},7236:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);var o=n(8950);var a=n.n(o);var s=n(6145);var c=n.n(s);var u=n(541);var l=n.n(u);var f=n(6904);var p=n.n(f);var d=n(2827);var h=n(6102);var m=n.n(h);var v=n(4573);var g=n.n(v);t["default"]=async function({teams:e,config:t,apiUrl:n,token:r}){const o=a()("Fetching teams");const s=(await e.ls()).teams;let{currentTeam:u}=t;const f=!u;o();const h=a()("Fetching user information");const v=new g.a({apiUrl:n,token:r,currentTeam:u});const y=await m()(v);h();if(f){u={slug:y.username||y.email}}const b=s.map(({slug:e,name:t})=>({name:t,value:e,current:e===u.slug?p.a.tick:""}));b.unshift({name:y.email,value:y.username||y.email,current:f&&p.a.tick||""});if(!f){const e=b.findIndex(e=>e.value===u.slug);const t=b.splice(e,1)[0];b.unshift(t)}const w=b.length;if(!w){console.error(l()(`No team found`));return 1}c()(`${i.a.bold(w)} team${w>1?"s":""} found`);console.log();Object(d["default"])(["","id","email / name"],b.map(e=>[e.current,e.value,e.name]),[1,5])}},7256:function(e){"use strict";var t=process.argv;var n=t.indexOf("--");var r=function(e){e="--"+e;var r=t.indexOf(e);return r!==-1&&(n!==-1?r<n:true)};e.exports=function(){if("FORCE_COLOR"in process.env){return true}if(r("no-color")||r("no-colors")||r("color=false")){return false}if(r("color")||r("colors")||r("color=true")||r("color=always")){return true}if(process.stdout&&!process.stdout.isTTY){return false}if(process.platform==="win32"){return true}if("COLORTERM"in process.env){return true}if(process.env.TERM==="dumb"){return false}if(/^screen|^xterm|^vt100|color|ansi|cygwin|linux/i.test(process.env.TERM)){return true}return false}()},7262:function(e,t,n){var r=n(9261);var i=n(2984);var o=n(8162);var a=n(7788);var s=a.HASH_ALGOS;var c=a.PK_ALGOS;var u=a.InvalidAlgorithmError;var l=a.HttpSignatureError;var f=a.validateAlgorithm;e.exports={verifySignature:function verifySignature(e,t){r.object(e,"parsedSignature");if(typeof t==="string"||Buffer.isBuffer(t))t=o.parseKey(t);r.ok(o.Key.isKey(t,[1,1]),"pubkey must be a sshpk.Key");var n=f(e.algorithm);if(n[0]==="hmac"||n[0]!==t.type)return false;var i=t.createVerify(n[1]);i.update(e.signingString);return i.verify(e.params.signature,"base64")},verifyHMAC:function verifyHMAC(e,t){r.object(e,"parsedHMAC");r.string(t,"secret");var n=f(e.algorithm);if(n[0]!=="hmac")return false;var o=n[1].toUpperCase();var a=i.createHmac(o,t);a.update(e.signingString);var s=i.createHmac(o,t);s.update(a.digest());s=s.digest();var c=i.createHmac(o,t);c.update(new Buffer(e.params.signature,"base64"));c=c.digest();if(typeof s==="string")return s===c;if(Buffer.isBuffer(s)&&!s.equals)return s.toString("binary")===c.toString("binary");return s.equals(c)}}},7265:function(e,t,n){"use strict";if(typeof process==="undefined"||process.type==="renderer"||process.browser===true||process.__nwjs){e.exports=n(9871)}else{e.exports=n(3587)}},7276:function(e){"use strict";e.exports=function generate_items(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f="valid"+i;var p="errs__"+i;var d=e.util.copy(e);var h="";d.level++;var m="valid"+d.level;var v="i"+i,g=d.dataLevel=e.dataLevel+1,y="data"+g,b=e.baseId;r+="var "+p+" = errors;var "+f+";";if(Array.isArray(a)){var w=e.schema.additionalItems;if(w===false){r+=" "+f+" = "+l+".length <= "+a.length+"; ";var x=c;c=e.errSchemaPath+"/additionalItems";r+=" if (!"+f+") { ";var k=k||[];k.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"additionalItems"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { limit: "+a.length+" } ";if(e.opts.messages!==false){r+=" , message: 'should NOT have more than "+a.length+" items' "}if(e.opts.verbose){r+=" , schema: false , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var j=r;r=k.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+j+"]); "}else{r+=" validate.errors = ["+j+"]; return false; "}}else{r+=" var err = "+j+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+=" } ";c=x;if(u){h+="}";r+=" else { "}}var S=a;if(S){var E,_=-1,C=S.length-1;while(_<C){E=S[_+=1];if(e.opts.strictKeywords?typeof E=="object"&&Object.keys(E).length>0:e.util.schemaHasRules(E,e.RULES.all)){r+=" "+m+" = true; if ("+l+".length > "+_+") { ";var A=l+"["+_+"]";d.schema=E;d.schemaPath=s+"["+_+"]";d.errSchemaPath=c+"/"+_;d.errorPath=e.util.getPathExpr(e.errorPath,_,e.opts.jsonPointers,true);d.dataPathArr[g]=_;var O=e.validate(d);d.baseId=b;if(e.util.varOccurences(O,y)<2){r+=" "+e.util.varReplace(O,y,A)+" "}else{r+=" var "+y+" = "+A+"; "+O+" "}r+=" } ";if(u){r+=" if ("+m+") { ";h+="}"}}}}if(typeof w=="object"&&(e.opts.strictKeywords?typeof w=="object"&&Object.keys(w).length>0:e.util.schemaHasRules(w,e.RULES.all))){d.schema=w;d.schemaPath=e.schemaPath+".additionalItems";d.errSchemaPath=e.errSchemaPath+"/additionalItems";r+=" "+m+" = true; if ("+l+".length > "+a.length+") { for (var "+v+" = "+a.length+"; "+v+" < "+l+".length; "+v+"++) { ";d.errorPath=e.util.getPathExpr(e.errorPath,v,e.opts.jsonPointers,true);var A=l+"["+v+"]";d.dataPathArr[g]=v;var O=e.validate(d);d.baseId=b;if(e.util.varOccurences(O,y)<2){r+=" "+e.util.varReplace(O,y,A)+" "}else{r+=" var "+y+" = "+A+"; "+O+" "}if(u){r+=" if (!"+m+") break; "}r+=" } } ";if(u){r+=" if ("+m+") { ";h+="}"}}}else if(e.opts.strictKeywords?typeof a=="object"&&Object.keys(a).length>0:e.util.schemaHasRules(a,e.RULES.all)){d.schema=a;d.schemaPath=s;d.errSchemaPath=c;r+=" for (var "+v+" = "+0+"; "+v+" < "+l+".length; "+v+"++) { ";d.errorPath=e.util.getPathExpr(e.errorPath,v,e.opts.jsonPointers,true);var A=l+"["+v+"]";d.dataPathArr[g]=v;var O=e.validate(d);d.baseId=b;if(e.util.varOccurences(O,y)<2){r+=" "+e.util.varReplace(O,y,A)+" "}else{r+=" var "+y+" = "+A+"; "+O+" "}if(u){r+=" if (!"+m+") break; "}r+=" }"}if(u){r+=" "+h+" if ("+p+" == errors) {"}r=e.util.cleanUpCode(r);return r}},7282:function(e,t,n){"use strict";n.r(t);t["default"]=((e,t=0)=>{t-=e.length;return e+" ".repeat(t>-1?t:0)})},7283:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(5897));const a=n(8715);const s=i(n(1146));function readPackage(e){return r(this,void 0,void 0,function*(){const t=e||o.default.resolve(process.cwd(),"package.json");const n=yield s.default(t);if(n instanceof a.CantParseJSONFile){return n}if(n){return n}return null})}t.default=readPackage},7298:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(5897));const a=i(n(9544));const s=i(n(5580));const c=i(n(8742));const u=n(6097);const l=i(n(8501));const f=i(n(8573));const p=i(n(4999));const d=i(n(8685));const h=i(n(785));const m=i(n(7283));const v=i(n(3435));const g={dev:["dev"]};const y=()=>{console.log(`\n ${a.default.bold(`${p.default} now dev`)} [options] <dir>\n\n Starts the \`now dev\` server.\n\n ${a.default.dim("Options:")}\n\n -h, --help Output usage information\n -d, --debug Debug mode [off]\n -l, --listen [uri] Specify a URI endpoint on which to listen [0.0.0.0:3000]\n\n ${a.default.dim("Examples:")}\n\n ${a.default.gray("")} Start the \`now dev\` server on port 8080\n\n ${a.default.cyan("$ now dev --listen 8080")}\n\n ${a.default.gray("")} Make the \`now dev\` server bind to localhost on port 5000\n\n ${a.default.cyan("$ now dev --listen 127.0.0.1:5000")}\n `)};function main(e){return r(this,void 0,void 0,function*(){let t;let n;let r;try{t=s.default(e.argv.slice(2),{"--listen":String,"-l":"--listen","--port":Number,"-p":"--port"});const i=t["--debug"];n=c.default(t._.slice(1),g).args;r=f.default({debug:i});if(i){process.env.NOW_BUILDER_DEBUG="1"}if("--port"in t){r.warn("`--port` is deprecated, please use `--listen` instead");t["--listen"]=String(t["--port"])}}catch(e){l.default(e);return 1}if(t["--help"]){y();return 2}const[i="."]=n;const a=yield v.default(o.default.join(i,"now.json"));const u=a&&a.builds&&a.builds.length>0;if(!a||!u){const e=yield m.default(o.default.join(i,"package.json"));if(e){const{scripts:t}=e;if(t&&t.dev&&/\bnow\b\W+\bdev\b/.test(t.dev)){r.error(`The ${d.default("dev")} script in ${d.default("package.json")} must not contain ${d.default("now dev")}`);r.error(`More details: http://err.sh/now/now-dev-as-dev-script`);return 1}}}if(t._.length>2){r.error(`${d.default("now dev [dir]")} accepts at most one argument`);return 1}try{return yield h.default(e,t,n,r)}catch(e){r.error(e.message);r.debug(stringifyError(e));return 1}})}t.default=main;function stringifyError(e){if(e instanceof u.NowError){const t=JSON.stringify(e.meta,null,2).replace(/\\n/g,"\n");return`${a.default.red(e.code)} ${e.message}\n${t}`}return e.stack}},7312:function(e,t,n){"use strict";var r=n(542);var i={get:"function",set:"function",configurable:"boolean",enumerable:"boolean"};function isAccessorDescriptor(e,t){if(typeof t==="string"){var n=Object.getOwnPropertyDescriptor(e,t);return typeof n!=="undefined"}if(r(e)!=="object"){return false}if(has(e,"value")||has(e,"writable")){return false}if(!has(e,"get")||typeof e.get!=="function"){return false}if(has(e,"set")&&typeof e[o]!=="function"&&typeof e[o]!=="undefined"){return false}for(var o in e){if(!i.hasOwnProperty(o)){continue}if(r(e[o])===i[o]){continue}if(typeof e[o]!=="undefined"){return false}}return true}function has(e,t){return{}.hasOwnProperty.call(e,t)}e.exports=isAccessorDescriptor},7313:function(e){"use strict";var t="%[a-f0-9]{2}";var n=new RegExp(t,"gi");var r=new RegExp("("+t+")+","gi");function decodeComponents(e,t){try{return decodeURIComponent(e.join(""))}catch(e){}if(e.length===1){return e}t=t||1;var n=e.slice(0,t);var r=e.slice(t);return Array.prototype.concat.call([],decodeComponents(n),decodeComponents(r))}function decode(e){try{return decodeURIComponent(e)}catch(i){var t=e.match(n);for(var r=1;r<t.length;r++){e=decodeComponents(t,r).join("");t=e.match(n)}return e}}function customDecodeURIComponent(e){var t={"%FE%FF":"<22><>","%FF%FE":"<22><>"};var n=r.exec(e);while(n){try{t[n[0]]=decodeURIComponent(n[0])}catch(e){var i=decode(n[0]);if(i!==n[0]){t[n[0]]=i}}n=r.exec(e)}t["%C2"]="<22>";var o=Object.keys(t);for(var a=0;a<o.length;a++){var s=o[a];e=e.replace(new RegExp(s,"g"),t[s])}return e}e.exports=function(e){if(typeof e!=="string"){throw new TypeError("Expected `encodedURI` to be of type `string`, got `"+typeof e+"`")}try{e=e.replace(/\+/g," ");return decodeURIComponent(e)}catch(t){return customDecodeURIComponent(e)}}},7322:function(e,t,n){var r=n(5195);function isValid(e){if(r(e)){return!isNaN(e)}else{throw new TypeError(toString.call(e)+" is not an instance of Date")}}e.exports=isValid},7346:function(e,t,n){"use strict";const r=n(2255).fromPromise;const i=n(8270);function pathExists(e){return i.access(e).then(()=>true).catch(()=>false)}e.exports={pathExists:r(pathExists),pathExistsSync:i.existsSync}},7352:function(e,t,n){e.exports=realpath;realpath.realpath=realpath;realpath.sync=realpathSync;realpath.realpathSync=realpathSync;realpath.monkeypatch=monkeypatch;realpath.unmonkeypatch=unmonkeypatch;var r=n(662);var i=r.realpath;var o=r.realpathSync;var a=process.version;var s=/^v[0-5]\./.test(a);var c=n(9640);function newError(e){return e&&e.syscall==="realpath"&&(e.code==="ELOOP"||e.code==="ENOMEM"||e.code==="ENAMETOOLONG")}function realpath(e,t,n){if(s){return i(e,t,n)}if(typeof t==="function"){n=t;t=null}i(e,t,function(r,i){if(newError(r)){c.realpath(e,t,n)}else{n(r,i)}})}function realpathSync(e,t){if(s){return o(e,t)}try{return o(e,t)}catch(n){if(newError(n)){return c.realpathSync(e,t)}else{throw n}}}function monkeypatch(){r.realpath=realpath;r.realpathSync=realpathSync}function unmonkeypatch(){r.realpath=i;r.realpathSync=o}},7369:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(1973));const a=n(4316);const s=n(8715);const c=i(n(9028));function login(e,t,n="login"){return r(this,void 0,void 0,function*(){const r=new RegExp("-","g");const i=a.hostname().replace(r," ").replace(".local","");const u=`Now CLI on ${i}`;const l=yield o.default(`${e}/now/registration?mode=${n}`,{method:"POST",headers:{"Content-Type":"application/json","User-Agent":c.default},body:JSON.stringify({tokenName:u,email:t})});const f=yield l.json();if(!l.ok){const{error:e={}}=f;if(e.code==="not_exists"){throw new s.AccountNotFound(t,`Please sign up: https://zeit.co/signup`)}if(e.code==="invalid_email"){throw new s.InvalidEmail(t,e.message)}throw new Error(`Unexpected error: ${e.message}`)}return f})}t.default=login},7374:function(e){e.exports.isUuid=function(e){if(!e)return false;e=e.toString().toLowerCase();return/[0-9a-f]{8}\-?[0-9a-f]{4}\-?4[0-9a-f]{3}\-?[89ab][0-9a-f]{3}\-?[0-9a-f]{12}/.test(e)};e.exports.isCookieCid=function(e){return/^[0-9]+\.[0-9]+$/.test(e)};e.exports.ensureValidCid=function(e){if(!this.isUuid(e)){if(!this.isCookieCid(e)){return false}return e}e=e.replace(/\-/g,"");return""+e.substring(0,8)+"-"+e.substring(8,12)+"-"+e.substring(12,16)+"-"+e.substring(16,20)+"-"+e.substring(20)}},7391:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(6369);const o=n(5869);function init({cacheDir:e}){return r(this,void 0,void 0,function*(){yield Promise.all([o.initializeRuntime(o.runtimes.python),i.installPython(e,"2.7.12")])})}t.init=init},7396:function(e,t,n){"use strict";var r=n(5897);var i=n(1060);var o=n(1015);var a=n(4316).platform()==="win32";e.exports=function globParent(e){if(a&&e.indexOf("/")<0)e=e.split("\\").join("/");if(/[\{\[].*[\/]*.*[\}\]]$/.test(e))e+="/";e+="a";do{e=o.posix(e)}while(i(e)||/(^|[^\\])([\{\[]|\([^\)]+$)/.test(e));return e.replace(/\\([\*\?\|\[\]\(\)\{\}])/g,"$1")}},7400:function(e,t,n){"use strict";var r=n(8110);var i=n(5363);var o=n(6340);e.exports=function(e,t,n){if(r(e)){return i(o(e,t),n)}return i(e,t)}},7406:function(e,t,n){"use strict";const r=n(4525);e.exports=(e=>typeof e==="string"?e.replace(r(),""):e)},7407:function(e){var t=1e3;var n=t*60;var r=n*60;var i=r*24;var o=i*365.25;e.exports=function(e,t){t=t||{};var n=typeof e;if(n==="string"&&e.length>0){return parse(e)}else if(n==="number"&&isNaN(e)===false){return t.long?fmtLong(e):fmtShort(e)}throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(e))};function parse(e){e=String(e);if(e.length>100){return}var a=/^((?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|years?|yrs?|y)?$/i.exec(e);if(!a){return}var s=parseFloat(a[1]);var c=(a[2]||"ms").toLowerCase();switch(c){case"years":case"year":case"yrs":case"yr":case"y":return s*o;case"days":case"day":case"d":return s*i;case"hours":case"hour":case"hrs":case"hr":case"h":return s*r;case"minutes":case"minute":case"mins":case"min":case"m":return s*n;case"seconds":case"second":case"secs":case"sec":case"s":return s*t;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return s;default:return undefined}}function fmtShort(e){if(e>=i){return Math.round(e/i)+"d"}if(e>=r){return Math.round(e/r)+"h"}if(e>=n){return Math.round(e/n)+"m"}if(e>=t){return Math.round(e/t)+"s"}return e+"ms"}function fmtLong(e){return plural(e,i,"day")||plural(e,r,"hour")||plural(e,n,"minute")||plural(e,t,"second")||e+" ms"}function plural(e,t,n){if(e<t){return}if(e<t*1.5){return Math.floor(e/t)+" "+n}return Math.ceil(e/t)+" "+n+"s"}},7408:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(6725));const a=n(6097);const s=i(n(5523));const c=i(n(6479));const u=i(n(8950));const l=n(8715);function generateCertForDeploy(e,t,n,i){return r(this,void 0,void 0,function*(){const r=o.default.parse(i);if(r.error){return new l.InvalidDomain(i,r.error.message)}const{domain:f}=r;if(!f){return new l.InvalidDomain(i)}const p=u.default(`Setting custom suffix domain ${f}`);const d=yield c.default(e,t,f,n);p();if(d instanceof a.NowError){return d}const h=u.default(`Generating a wildcard certificate for ${f}`);const m=yield s.default(t,[f,`*.${f}`],n);h();if(m instanceof a.NowError){return m}})}t.default=generateCertForDeploy},7409:function(e,t,n){"use strict";var r=n(4219);var i=n(2307);var o=n(5897);var a=n(1249);var s=n(9249);var c={}.hasOwnProperty;StripeResource.extend=a.protoExtend;StripeResource.method=n(2674);StripeResource.BASIC_METHODS=n(8158);function StripeResource(e,t){this._stripe=e;this._urlData=t||{};this.basePath=a.makeURLInterpolator(e.getApiField("basePath"));this.resourcePath=this.path;this.path=a.makeURLInterpolator(this.path);if(this.includeBasic){this.includeBasic.forEach(function(e){this[e]=StripeResource.BASIC_METHODS[e]},this)}this.initialize.apply(this,arguments)}StripeResource.prototype={path:"",initialize:function(){},requestDataProcessor:null,overrideHost:null,validateRequest:null,createFullPath:function(e,t){return o.join(this.basePath(t),this.path(t),typeof e=="function"?e(t):e).replace(/\\/g,"/")},createResourcePathWithSymbols:function(e){return"/"+o.join(this.resourcePath,e).replace(/\\/g,"/")},createUrlData:function(){var e={};for(var t in this._urlData){if(c.call(this._urlData,t)){e[t]=this._urlData[t]}}return e},wrapTimeout:function(e,t){if(t){return e.then(function(e){setTimeout(function(){t(null,e)},0)},function(e){setTimeout(function(){t(e,null)},0)})}return e},_timeoutHandler:function(e,t,n){var r=this;return function(){var i=new s("ETIMEDOUT");i.code="ETIMEDOUT";t._isAborted=true;t.abort();n.call(r,new s.StripeConnectionError({message:"Request aborted due to timeout being reached ("+e+"ms)",detail:i}),null)}},_responseHandler:function(e,t){var n=this;return function(r){var i="";r.setEncoding("utf8");r.on("data",function(e){i+=e});r.on("end",function(){var o=r.headers||{};r.requestId=o["request-id"];var c=a.removeEmpty({api_version:o["stripe-version"],account:o["stripe-account"],idempotency_key:o["idempotency-key"],method:e._requestEvent.method,path:e._requestEvent.path,status:r.statusCode,request_id:r.requestId,elapsed:Date.now()-e._requestStart});n._stripe._emitter.emit("response",c);try{i=JSON.parse(i);if(i.error){var u;i.error.headers=o;i.error.statusCode=r.statusCode;i.error.requestId=r.requestId;if(r.statusCode===401){u=new s.StripeAuthenticationError(i.error)}else if(r.statusCode===403){u=new s.StripePermissionError(i.error)}else if(r.statusCode===429){u=new s.StripeRateLimitError(i.error)}else{u=s.StripeError.generate(i.error)}return t.call(n,u,null)}}catch(e){return t.call(n,new s.StripeAPIError({message:"Invalid JSON received from the Stripe API",response:i,exception:e,requestId:o["request-id"]}),null)}Object.defineProperty(i,"lastResponse",{enumerable:false,writable:false,value:r});t.call(n,null,i)})}},_errorHandler:function(e,t){var n=this;return function(r){if(e._isAborted){return}t.call(n,new s.StripeConnectionError({message:"An error occurred with our connection to Stripe",detail:r}),null)}},_defaultHeaders:function(e,t,n){var r="Stripe/v1 NodeBindings/"+this._stripe.getConstant("PACKAGE_VERSION");if(this._stripe._appInfo){r+=" "+this._stripe.getAppInfoAsString()}var i={Authorization:e?"Bearer "+e:this._stripe.getApiField("auth"),Accept:"application/json","Content-Type":"application/x-www-form-urlencoded","Content-Length":t,"User-Agent":r};if(n){i["Stripe-Version"]=n}return i},_request:function(e,t,n,o,s,c){var u=this;var l;if(u.requestDataProcessor){l=u.requestDataProcessor(e,n,s.headers)}else{l=a.stringifyRequestData(n||{})}var f=this._stripe.getApiField("version");var p=u._defaultHeaders(o,l.length,f);this._stripe.getClientUserAgent(function(e){p["X-Stripe-Client-User-Agent"]=e;if(s.headers){Object.assign(p,s.headers)}makeRequest()});function makeRequest(){var n=u._stripe.getApiField("timeout");var o=u._stripe.getApiField("protocol")=="http";var s=u.overrideHost||u._stripe.getApiField("host");var d=(o?r:i).request({host:s,port:u._stripe.getApiField("port"),path:t,method:e,agent:u._stripe.getApiField("agent"),headers:p,ciphers:"DEFAULT:!aNULL:!eNULL:!LOW:!EXPORT:!SSLv2:!MD5"});var h=a.removeEmpty({api_version:f,account:p["Stripe-Account"],idempotency_key:p["Idempotency-Key"],method:e,path:t});d._requestEvent=h;d._requestStart=Date.now();u._stripe._emitter.emit("request",h);d.setTimeout(n,u._timeoutHandler(n,d,c));d.on("response",u._responseHandler(d,c));d.on("error",u._errorHandler(d,c));d.on("socket",function(e){e.on(o?"connect":"secureConnect",function(){d.write(l);d.end()})})}}};e.exports=StripeResource},7420:function(e,t,n){"use strict";const r=n(649),i=n(5509);e.exports={clone:clone,patch:patch,patchAll:patchAll};function clone(e,t){t=Object.assign({clone:true,subclassZipFile:false,subclassEntry:false,eventsIntercept:false},t);if(t.subclassEntry)t.eventsIntercept=true;if(t.clone)e=Object.assign({},e);if(t.subclassZipFile){const t=e.ZipFile;e.ZipFile=function ZipFile(){t.apply(this,arguments)};r.inherits(e.ZipFile,t);patchAll(e,t=>zipFilePatcher(t,e.ZipFile))}if(t.eventsIntercept){const t=e.ZipFile.prototype;if(!t.intercept){i.patch(t);["_events","_eventsCount","_interceptors"].forEach(e=>delete t[e])}}if(t.subclassEntry){const t=e.Entry;e.Entry=function Entry(){t.apply(this,arguments)};r.inherits(e.Entry,t);patchAll(e,t=>entryPatcher(t,e.Entry))}return e}function patchAll(e,t){patch(e,"open",t);patch(e,"fromFd",t);patch(e,"fromBuffer",t);patch(e,"fromRandomAccessReader",t)}function patch(e,t,n){const r=e[t];if(t=="fromRandomAccessReader"){const t=n(r);e.fromRandomAccessReader=function(e,n,r,i){if(typeof r=="function"){i=r;r={}}else if(!r){r={}}return t.call(this,e,n,r,i)}}else{const i=n(function(e,t,n,i){return r.call(this,e,n,i)});e[t]=function(e,t,n){if(typeof t=="function"){n=t;t={}}else if(!t){t={}}return i.call(this,e,null,t,n)}}return e[t]}function zipFilePatcher(e,t){return function(n,r,i,o){const{lazyEntries:a}=i,s=i.hasOwnProperty("lazyEntries");if(!a)i.lazyEntries=true;return e.call(this,n,r,i,function(e,n){if(e)return o(e);const r=n;n=Object.assign(Object.create(t.prototype),n);r.emit=n.emit.bind(n);if(!a){if(s){i.lazyEntries=a}else{delete i.lazyEntries}n.lazyEntries=false;r.lazyEntries=false;n._readEntry()}o(null,n)})}}function entryPatcher(e,t){return function(n,r,i,o){return e.call(this,n,r,i,function(e,n){if(e)return o(e);n.intercept("entry",function(e,n){e=Object.assign(Object.create(t.prototype),e);n(null,e)});o(null,n)})}}},7426:function(e){"use strict";e.exports=function isObject(e){return typeof e==="object"&&e!==null}},7448:function(e,t,n){e.exports=ForeverAgent;ForeverAgent.SSL=ForeverAgentSSL;var r=n(649),i=n(4219).Agent,o=n(1939),a=n(8060),s=n(2307).Agent;function getConnectionName(e,t){var n="";if(typeof e==="string"){n=e+":"+t}else{n=e.host+":"+e.port+":"+(e.localAddress?e.localAddress+":":":")}return n}function ForeverAgent(e){var t=this;t.options=e||{};t.requests={};t.sockets={};t.freeSockets={};t.maxSockets=t.options.maxSockets||i.defaultMaxSockets;t.minSockets=t.options.minSockets||ForeverAgent.defaultMinSockets;t.on("free",function(e,n,r){var i=getConnectionName(n,r);if(t.requests[i]&&t.requests[i].length){t.requests[i].shift().onSocket(e)}else if(t.sockets[i].length<t.minSockets){if(!t.freeSockets[i])t.freeSockets[i]=[];t.freeSockets[i].push(e);var o=function(){e.destroy()};e._onIdleError=o;e.on("error",o)}else{e.destroy()}})}r.inherits(ForeverAgent,i);ForeverAgent.defaultMinSockets=5;ForeverAgent.prototype.createConnection=o.createConnection;ForeverAgent.prototype.addRequestNoreuse=i.prototype.addRequest;ForeverAgent.prototype.addRequest=function(e,t,n){var r=getConnectionName(t,n);if(typeof t!=="string"){var i=t;n=i.port;t=i.host}if(this.freeSockets[r]&&this.freeSockets[r].length>0&&!e.useChunkedEncodingByDefault){var o=this.freeSockets[r].pop();o.removeListener("error",o._onIdleError);delete o._onIdleError;e._reusedSocket=true;e.onSocket(o)}else{this.addRequestNoreuse(e,t,n)}};ForeverAgent.prototype.removeSocket=function(e,t,n,r){if(this.sockets[t]){var i=this.sockets[t].indexOf(e);if(i!==-1){this.sockets[t].splice(i,1)}}else if(this.sockets[t]&&this.sockets[t].length===0){delete this.sockets[t];delete this.requests[t]}if(this.freeSockets[t]){var i=this.freeSockets[t].indexOf(e);if(i!==-1){this.freeSockets[t].splice(i,1);if(this.freeSockets[t].length===0){delete this.freeSockets[t]}}}if(this.requests[t]&&this.requests[t].length){this.createSocket(t,n,r).emit("free")}};function ForeverAgentSSL(e){ForeverAgent.call(this,e)}r.inherits(ForeverAgentSSL,ForeverAgent);ForeverAgentSSL.prototype.createConnection=createConnectionSSL;ForeverAgentSSL.prototype.addRequestNoreuse=s.prototype.addRequest;function createConnectionSSL(e,t,n){if(typeof e==="object"){n=e}else if(typeof t==="object"){n=t}else if(typeof n==="object"){n=n}else{n={}}if(typeof e==="number"){n.port=e}if(typeof t==="string"){n.host=t}return a.connect(n)}},7459:function(e,t,n){"use strict";const r=n(3698);function getStream(e,t){if(!e){return Promise.reject(new Error("Expected a stream"))}t=Object.assign({maxBuffer:Infinity},t);const n=t.maxBuffer;let i;let o;const a=new Promise((a,s)=>{const c=e=>{if(e){e.bufferedData=i.getBufferedValue()}s(e)};i=r(t);e.once("error",c);e.pipe(i);i.on("data",()=>{if(i.getBufferedLength()>n){s(new Error("maxBuffer exceeded"))}});i.once("error",c);i.on("end",a);o=(()=>{if(e.unpipe){e.unpipe(i)}})});a.then(o,o);return a.then(()=>i.getBufferedValue())}e.exports=getStream;e.exports.buffer=((e,t)=>getStream(e,Object.assign({},t,{encoding:"buffer"})));e.exports.array=((e,t)=>getStream(e,Object.assign({},t,{array:true})))},7460:function(e,t,n){var r=n(6886).Stream;var i=n(649);e.exports=DelayedStream;function DelayedStream(){this.source=null;this.dataSize=0;this.maxDataSize=1024*1024;this.pauseStream=true;this._maxDataSizeExceeded=false;this._released=false;this._bufferedEvents=[]}i.inherits(DelayedStream,r);DelayedStream.create=function(e,t){var n=new this;t=t||{};for(var r in t){n[r]=t[r]}n.source=e;var i=e.emit;e.emit=function(){n._handleEmit(arguments);return i.apply(e,arguments)};e.on("error",function(){});if(n.pauseStream){e.pause()}return n};Object.defineProperty(DelayedStream.prototype,"readable",{configurable:true,enumerable:true,get:function(){return this.source.readable}});DelayedStream.prototype.setEncoding=function(){return this.source.setEncoding.apply(this.source,arguments)};DelayedStream.prototype.resume=function(){if(!this._released){this.release()}this.source.resume()};DelayedStream.prototype.pause=function(){this.source.pause()};DelayedStream.prototype.release=function(){this._released=true;this._bufferedEvents.forEach(function(e){this.emit.apply(this,e)}.bind(this));this._bufferedEvents=[]};DelayedStream.prototype.pipe=function(){var e=r.prototype.pipe.apply(this,arguments);this.resume();return e};DelayedStream.prototype._handleEmit=function(e){if(this._released){this.emit.apply(this,e);return}if(e[0]==="data"){this.dataSize+=e[1].length;this._checkIfMaxDataSizeExceeded()}this._bufferedEvents.push(e)};DelayedStream.prototype._checkIfMaxDataSizeExceeded=function(){if(this._maxDataSizeExceeded){return}if(this.dataSize<=this.maxDataSize){return}this._maxDataSizeExceeded=true;var e="DelayedStream#maxDataSize of "+this.maxDataSize+" bytes exceeded.";this.emit("error",new Error(e))}},7461:function(e,t,n){"use strict";var r=n(8703);function destroy(e,t){var n=this;var i=this._readableState&&this._readableState.destroyed;var o=this._writableState&&this._writableState.destroyed;if(i||o){if(t){t(e)}else if(e&&(!this._writableState||!this._writableState.errorEmitted)){r.nextTick(emitErrorNT,this,e)}return this}if(this._readableState){this._readableState.destroyed=true}if(this._writableState){this._writableState.destroyed=true}this._destroy(e||null,function(e){if(!t&&e){r.nextTick(emitErrorNT,n,e);if(n._writableState){n._writableState.errorEmitted=true}}else if(t){t(e)}});return this}function undestroy(){if(this._readableState){this._readableState.destroyed=false;this._readableState.reading=false;this._readableState.ended=false;this._readableState.endEmitted=false}if(this._writableState){this._writableState.destroyed=false;this._writableState.ended=false;this._writableState.ending=false;this._writableState.finished=false;this._writableState.errorEmitted=false}}function emitErrorNT(e,t){e.emit("error",t)}e.exports={destroy:destroy,undestroy:undestroy}},7462:function(e,t,n){e.exports=!n(8205)&&!n(338)(function(){return Object.defineProperty(n(1399)("div"),"a",{get:function(){return 7}}).a!=7})},7466:function(e,t,n){var r=n(3842);var i=6e4;var o=864e5;function differenceInCalendarDays(e,t){var n=r(e);var a=r(t);var s=n.getTime()-n.getTimezoneOffset()*i;var c=a.getTime()-a.getTimezoneOffset()*i;return Math.round((s-c)/o)}e.exports=differenceInCalendarDays},7479:function(e,t,n){"use strict";e.exports=Object.assign({},n(994),n(5414),n(5662),n(4097),n(2349),n(1200),n(1908),n(5368),n(9626),n(9913),n(8975),n(7780));const r=n(662);if(Object.getOwnPropertyDescriptor(r,"promises")){Object.defineProperty(e.exports,"promises",{get(){return r.promises}})}},7488:function(e,t,n){t.extract=n(3371);t.pack=n(2395)},7502:function(e){var t=Object.prototype.toString;e.exports=function kindOf(e){if(e===void 0)return"undefined";if(e===null)return"null";var n=typeof e;if(n==="boolean")return"boolean";if(n==="string")return"string";if(n==="number")return"number";if(n==="symbol")return"symbol";if(n==="function"){return isGeneratorFn(e)?"generatorfunction":"function"}if(isArray(e))return"array";if(isBuffer(e))return"buffer";if(isArguments(e))return"arguments";if(isDate(e))return"date";if(isError(e))return"error";if(isRegexp(e))return"regexp";switch(ctorName(e)){case"Symbol":return"symbol";case"Promise":return"promise";case"WeakMap":return"weakmap";case"WeakSet":return"weakset";case"Map":return"map";case"Set":return"set";case"Int8Array":return"int8array";case"Uint8Array":return"uint8array";case"Uint8ClampedArray":return"uint8clampedarray";case"Int16Array":return"int16array";case"Uint16Array":return"uint16array";case"Int32Array":return"int32array";case"Uint32Array":return"uint32array";case"Float32Array":return"float32array";case"Float64Array":return"float64array"}if(isGeneratorObj(e)){return"generator"}n=t.call(e);switch(n){case"[object Object]":return"object";case"[object Map Iterator]":return"mapiterator";case"[object Set Iterator]":return"setiterator";case"[object String Iterator]":return"stringiterator";case"[object Array Iterator]":return"arrayiterator"}return n.slice(8,-1).toLowerCase().replace(/\s/g,"")};function ctorName(e){return e.constructor?e.constructor.name:null}function isArray(e){if(Array.isArray)return Array.isArray(e);return e instanceof Array}function isError(e){return e instanceof Error||typeof e.message==="string"&&e.constructor&&typeof e.constructor.stackTraceLimit==="number"}function isDate(e){if(e instanceof Date)return true;return typeof e.toDateString==="function"&&typeof e.getDate==="function"&&typeof e.setDate==="function"}function isRegexp(e){if(e instanceof RegExp)return true;return typeof e.flags==="string"&&typeof e.ignoreCase==="boolean"&&typeof e.multiline==="boolean"&&typeof e.global==="boolean"}function isGeneratorFn(e,t){return ctorName(e)==="GeneratorFunction"}function isGeneratorObj(e){return typeof e.throw==="function"&&typeof e.return==="function"&&typeof e.next==="function"}function isArguments(e){try{if(typeof e.length==="number"&&typeof e.callee==="function"){return true}}catch(e){if(e.message.indexOf("callee")!==-1){return true}}return false}function isBuffer(e){if(e.constructor&&typeof e.constructor.isBuffer==="function"){return e.constructor.isBuffer(e)}return false}},7507:function(e){e.exports=toIdentifier;function toIdentifier(e){return e.split(" ").map(function(e){return e.slice(0,1).toUpperCase()+e.slice(1)}).join("").replace(/[^ _0-9a-z]/gi,"")}},7514:function(e){"use strict";e.exports=(()=>/[<>:"\/\\|?*\x00-\x1F]/g);e.exports.windowsNames=(()=>/^(con|prn|aux|nul|com[0-9]|lpt[0-9])$/i)},7523:function(e,t,n){"use strict";var r=n(3384);e.exports=SchemaObject;function SchemaObject(e){r.copy(e,this)}},7532:function(e,t,n){var r=n(8434);var i=n(2833);var o=n(7948).ArraySet;var a=n(647);var s=n(2665).quickSort;function SourceMapConsumer(e,t){var n=e;if(typeof e==="string"){n=r.parseSourceMapInput(e)}return n.sections!=null?new IndexedSourceMapConsumer(n,t):new BasicSourceMapConsumer(n,t)}SourceMapConsumer.fromSourceMap=function(e,t){return BasicSourceMapConsumer.fromSourceMap(e,t)};SourceMapConsumer.prototype._version=3;SourceMapConsumer.prototype.__generatedMappings=null;Object.defineProperty(SourceMapConsumer.prototype,"_generatedMappings",{configurable:true,enumerable:true,get:function(){if(!this.__generatedMappings){this._parseMappings(this._mappings,this.sourceRoot)}return this.__generatedMappings}});SourceMapConsumer.prototype.__originalMappings=null;Object.defineProperty(SourceMapConsumer.prototype,"_originalMappings",{configurable:true,enumerable:true,get:function(){if(!this.__originalMappings){this._parseMappings(this._mappings,this.sourceRoot)}return this.__originalMappings}});SourceMapConsumer.prototype._charIsMappingSeparator=function SourceMapConsumer_charIsMappingSeparator(e,t){var n=e.charAt(t);return n===";"||n===","};SourceMapConsumer.prototype._parseMappings=function SourceMapConsumer_parseMappings(e,t){throw new Error("Subclasses must implement _parseMappings")};SourceMapConsumer.GENERATED_ORDER=1;SourceMapConsumer.ORIGINAL_ORDER=2;SourceMapConsumer.GREATEST_LOWER_BOUND=1;SourceMapConsumer.LEAST_UPPER_BOUND=2;SourceMapConsumer.prototype.eachMapping=function SourceMapConsumer_eachMapping(e,t,n){var i=t||null;var o=n||SourceMapConsumer.GENERATED_ORDER;var a;switch(o){case SourceMapConsumer.GENERATED_ORDER:a=this._generatedMappings;break;case SourceMapConsumer.ORIGINAL_ORDER:a=this._originalMappings;break;default:throw new Error("Unknown order of iteration.")}var s=this.sourceRoot;a.map(function(e){var t=e.source===null?null:this._sources.at(e.source);t=r.computeSourceURL(s,t,this._sourceMapURL);return{source:t,generatedLine:e.generatedLine,generatedColumn:e.generatedColumn,originalLine:e.originalLine,originalColumn:e.originalColumn,name:e.name===null?null:this._names.at(e.name)}},this).forEach(e,i)};SourceMapConsumer.prototype.allGeneratedPositionsFor=function SourceMapConsumer_allGeneratedPositionsFor(e){var t=r.getArg(e,"line");var n={source:r.getArg(e,"source"),originalLine:t,originalColumn:r.getArg(e,"column",0)};n.source=this._findSourceIndex(n.source);if(n.source<0){return[]}var o=[];var a=this._findMapping(n,this._originalMappings,"originalLine","originalColumn",r.compareByOriginalPositions,i.LEAST_UPPER_BOUND);if(a>=0){var s=this._originalMappings[a];if(e.column===undefined){var c=s.originalLine;while(s&&s.originalLine===c){o.push({line:r.getArg(s,"generatedLine",null),column:r.getArg(s,"generatedColumn",null),lastColumn:r.getArg(s,"lastGeneratedColumn",null)});s=this._originalMappings[++a]}}else{var u=s.originalColumn;while(s&&s.originalLine===t&&s.originalColumn==u){o.push({line:r.getArg(s,"generatedLine",null),column:r.getArg(s,"generatedColumn",null),lastColumn:r.getArg(s,"lastGeneratedColumn",null)});s=this._originalMappings[++a]}}}return o};t.SourceMapConsumer=SourceMapConsumer;function BasicSourceMapConsumer(e,t){var n=e;if(typeof e==="string"){n=r.parseSourceMapInput(e)}var i=r.getArg(n,"version");var a=r.getArg(n,"sources");var s=r.getArg(n,"names",[]);var c=r.getArg(n,"sourceRoot",null);var u=r.getArg(n,"sourcesContent",null);var l=r.getArg(n,"mappings");var f=r.getArg(n,"file",null);if(i!=this._version){throw new Error("Unsupported version: "+i)}if(c){c=r.normalize(c)}a=a.map(String).map(r.normalize).map(function(e){return c&&r.isAbsolute(c)&&r.isAbsolute(e)?r.relative(c,e):e});this._names=o.fromArray(s.map(String),true);this._sources=o.fromArray(a,true);this._absoluteSources=this._sources.toArray().map(function(e){return r.computeSourceURL(c,e,t)});this.sourceRoot=c;this.sourcesContent=u;this._mappings=l;this._sourceMapURL=t;this.file=f}BasicSourceMapConsumer.prototype=Object.create(SourceMapConsumer.prototype);BasicSourceMapConsumer.prototype.consumer=SourceMapConsumer;BasicSourceMapConsumer.prototype._findSourceIndex=function(e){var t=e;if(this.sourceRoot!=null){t=r.relative(this.sourceRoot,t)}if(this._sources.has(t)){return this._sources.indexOf(t)}var n;for(n=0;n<this._absoluteSources.length;++n){if(this._absoluteSources[n]==e){return n}}return-1};BasicSourceMapConsumer.fromSourceMap=function SourceMapConsumer_fromSourceMap(e,t){var n=Object.create(BasicSourceMapConsumer.prototype);var i=n._names=o.fromArray(e._names.toArray(),true);var a=n._sources=o.fromArray(e._sources.toArray(),true);n.sourceRoot=e._sourceRoot;n.sourcesContent=e._generateSourcesContent(n._sources.toArray(),n.sourceRoot);n.file=e._file;n._sourceMapURL=t;n._absoluteSources=n._sources.toArray().map(function(e){return r.computeSourceURL(n.sourceRoot,e,t)});var c=e._mappings.toArray().slice();var u=n.__generatedMappings=[];var l=n.__originalMappings=[];for(var f=0,p=c.length;f<p;f++){var d=c[f];var h=new Mapping;h.generatedLine=d.generatedLine;h.generatedColumn=d.generatedColumn;if(d.source){h.source=a.indexOf(d.source);h.originalLine=d.originalLine;h.originalColumn=d.originalColumn;if(d.name){h.name=i.indexOf(d.name)}l.push(h)}u.push(h)}s(n.__originalMappings,r.compareByOriginalPositions);return n};BasicSourceMapConsumer.prototype._version=3;Object.defineProperty(BasicSourceMapConsumer.prototype,"sources",{get:function(){return this._absoluteSources.slice()}});function Mapping(){this.generatedLine=0;this.generatedColumn=0;this.source=null;this.originalLine=null;this.originalColumn=null;this.name=null}BasicSourceMapConsumer.prototype._parseMappings=function SourceMapConsumer_parseMappings(e,t){var n=1;var i=0;var o=0;var c=0;var u=0;var l=0;var f=e.length;var p=0;var d={};var h={};var m=[];var v=[];var g,y,b,w,x;while(p<f){if(e.charAt(p)===";"){n++;p++;i=0}else if(e.charAt(p)===","){p++}else{g=new Mapping;g.generatedLine=n;for(w=p;w<f;w++){if(this._charIsMappingSeparator(e,w)){break}}y=e.slice(p,w);b=d[y];if(b){p+=y.length}else{b=[];while(p<w){a.decode(e,p,h);x=h.value;p=h.rest;b.push(x)}if(b.length===2){throw new Error("Found a source, but no line and column")}if(b.length===3){throw new Error("Found a source and line, but no column")}d[y]=b}g.generatedColumn=i+b[0];i=g.generatedColumn;if(b.length>1){g.source=u+b[1];u+=b[1];g.originalLine=o+b[2];o=g.originalLine;g.originalLine+=1;g.originalColumn=c+b[3];c=g.originalColumn;if(b.length>4){g.name=l+b[4];l+=b[4]}}v.push(g);if(typeof g.originalLine==="number"){m.push(g)}}}s(v,r.compareByGeneratedPositionsDeflated);this.__generatedMappings=v;s(m,r.compareByOriginalPositions);this.__originalMappings=m};BasicSourceMapConsumer.prototype._findMapping=function SourceMapConsumer_findMapping(e,t,n,r,o,a){if(e[n]<=0){throw new TypeError("Line must be greater than or equal to 1, got "+e[n])}if(e[r]<0){throw new TypeError("Column must be greater than or equal to 0, got "+e[r])}return i.search(e,t,o,a)};BasicSourceMapConsumer.prototype.computeColumnSpans=function SourceMapConsumer_computeColumnSpans(){for(var e=0;e<this._generatedMappings.length;++e){var t=this._generatedMappings[e];if(e+1<this._generatedMappings.length){var n=this._generatedMappings[e+1];if(t.generatedLine===n.generatedLine){t.lastGeneratedColumn=n.generatedColumn-1;continue}}t.lastGeneratedColumn=Infinity}};BasicSourceMapConsumer.prototype.originalPositionFor=function SourceMapConsumer_originalPositionFor(e){var t={generatedLine:r.getArg(e,"line"),generatedColumn:r.getArg(e,"column")};var n=this._findMapping(t,this._generatedMappings,"generatedLine","generatedColumn",r.compareByGeneratedPositionsDeflated,r.getArg(e,"bias",SourceMapConsumer.GREATEST_LOWER_BOUND));if(n>=0){var i=this._generatedMappings[n];if(i.generatedLine===t.generatedLine){var o=r.getArg(i,"source",null);if(o!==null){o=this._sources.at(o);o=r.computeSourceURL(this.sourceRoot,o,this._sourceMapURL)}var a=r.getArg(i,"name",null);if(a!==null){a=this._names.at(a)}return{source:o,line:r.getArg(i,"originalLine",null),column:r.getArg(i,"originalColumn",null),name:a}}}return{source:null,line:null,column:null,name:null}};BasicSourceMapConsumer.prototype.hasContentsOfAllSources=function BasicSourceMapConsumer_hasContentsOfAllSources(){if(!this.sourcesContent){return false}return this.sourcesContent.length>=this._sources.size()&&!this.sourcesContent.some(function(e){return e==null})};BasicSourceMapConsumer.prototype.sourceContentFor=function SourceMapConsumer_sourceContentFor(e,t){if(!this.sourcesContent){return null}var n=this._findSourceIndex(e);if(n>=0){return this.sourcesContent[n]}var i=e;if(this.sourceRoot!=null){i=r.relative(this.sourceRoot,i)}var o;if(this.sourceRoot!=null&&(o=r.urlParse(this.sourceRoot))){var a=i.replace(/^file:\/\//,"");if(o.scheme=="file"&&this._sources.has(a)){return this.sourcesContent[this._sources.indexOf(a)]}if((!o.path||o.path=="/")&&this._sources.has("/"+i)){return this.sourcesContent[this._sources.indexOf("/"+i)]}}if(t){return null}else{throw new Error('"'+i+'" is not in the SourceMap.')}};BasicSourceMapConsumer.prototype.generatedPositionFor=function SourceMapConsumer_generatedPositionFor(e){var t=r.getArg(e,"source");t=this._findSourceIndex(t);if(t<0){return{line:null,column:null,lastColumn:null}}var n={source:t,originalLine:r.getArg(e,"line"),originalColumn:r.getArg(e,"column")};var i=this._findMapping(n,this._originalMappings,"originalLine","originalColumn",r.compareByOriginalPositions,r.getArg(e,"bias",SourceMapConsumer.GREATEST_LOWER_BOUND));if(i>=0){var o=this._originalMappings[i];if(o.source===n.source){return{line:r.getArg(o,"generatedLine",null),column:r.getArg(o,"generatedColumn",null),lastColumn:r.getArg(o,"lastGeneratedColumn",null)}}}return{line:null,column:null,lastColumn:null}};t.BasicSourceMapConsumer=BasicSourceMapConsumer;function IndexedSourceMapConsumer(e,t){var n=e;if(typeof e==="string"){n=r.parseSourceMapInput(e)}var i=r.getArg(n,"version");var a=r.getArg(n,"sections");if(i!=this._version){throw new Error("Unsupported version: "+i)}this._sources=new o;this._names=new o;var s={line:-1,column:0};this._sections=a.map(function(e){if(e.url){throw new Error("Support for url field in sections not implemented.")}var n=r.getArg(e,"offset");var i=r.getArg(n,"line");var o=r.getArg(n,"column");if(i<s.line||i===s.line&&o<s.column){throw new Error("Section offsets must be ordered and non-overlapping.")}s=n;return{generatedOffset:{generatedLine:i+1,generatedColumn:o+1},consumer:new SourceMapConsumer(r.getArg(e,"map"),t)}})}IndexedSourceMapConsumer.prototype=Object.create(SourceMapConsumer.prototype);IndexedSourceMapConsumer.prototype.constructor=SourceMapConsumer;IndexedSourceMapConsumer.prototype._version=3;Object.defineProperty(IndexedSourceMapConsumer.prototype,"sources",{get:function(){var e=[];for(var t=0;t<this._sections.length;t++){for(var n=0;n<this._sections[t].consumer.sources.length;n++){e.push(this._sections[t].consumer.sources[n])}}return e}});IndexedSourceMapConsumer.prototype.originalPositionFor=function IndexedSourceMapConsumer_originalPositionFor(e){var t={generatedLine:r.getArg(e,"line"),generatedColumn:r.getArg(e,"column")};var n=i.search(t,this._sections,function(e,t){var n=e.generatedLine-t.generatedOffset.generatedLine;if(n){return n}return e.generatedColumn-t.generatedOffset.generatedColumn});var o=this._sections[n];if(!o){return{source:null,line:null,column:null,name:null}}return o.consumer.originalPositionFor({line:t.generatedLine-(o.generatedOffset.generatedLine-1),column:t.generatedColumn-(o.generatedOffset.generatedLine===t.generatedLine?o.generatedOffset.generatedColumn-1:0),bias:e.bias})};IndexedSourceMapConsumer.prototype.hasContentsOfAllSources=function IndexedSourceMapConsumer_hasContentsOfAllSources(){return this._sections.every(function(e){return e.consumer.hasContentsOfAllSources()})};IndexedSourceMapConsumer.prototype.sourceContentFor=function IndexedSourceMapConsumer_sourceContentFor(e,t){for(var n=0;n<this._sections.length;n++){var r=this._sections[n];var i=r.consumer.sourceContentFor(e,true);if(i){return i}}if(t){return null}else{throw new Error('"'+e+'" is not in the SourceMap.')}};IndexedSourceMapConsumer.prototype.generatedPositionFor=function IndexedSourceMapConsumer_generatedPositionFor(e){for(var t=0;t<this._sections.length;t++){var n=this._sections[t];if(n.consumer._findSourceIndex(r.getArg(e,"source"))===-1){continue}var i=n.consumer.generatedPositionFor(e);if(i){var o={line:i.line+(n.generatedOffset.generatedLine-1),column:i.column+(n.generatedOffset.generatedLine===i.line?n.generatedOffset.generatedColumn-1:0)};return o}}return{line:null,column:null}};IndexedSourceMapConsumer.prototype._parseMappings=function IndexedSourceMapConsumer_parseMappings(e,t){this.__generatedMappings=[];this.__originalMappings=[];for(var n=0;n<this._sections.length;n++){var i=this._sections[n];var o=i.consumer._generatedMappings;for(var a=0;a<o.length;a++){var c=o[a];var u=i.consumer._sources.at(c.source);u=r.computeSourceURL(i.consumer.sourceRoot,u,this._sourceMapURL);this._sources.add(u);u=this._sources.indexOf(u);var l=null;if(c.name){l=i.consumer._names.at(c.name);this._names.add(l);l=this._names.indexOf(l)}var f={source:u,generatedLine:c.generatedLine+(i.generatedOffset.generatedLine-1),generatedColumn:c.generatedColumn+(i.generatedOffset.generatedLine===c.generatedLine?i.generatedOffset.generatedColumn-1:0),originalLine:c.originalLine,originalColumn:c.originalColumn,name:l};this.__generatedMappings.push(f);if(typeof f.originalLine==="number"){this.__originalMappings.push(f)}}}s(this.__generatedMappings,r.compareByGeneratedPositionsDeflated);s(this.__originalMappings,r.compareByOriginalPositions)};t.IndexedSourceMapConsumer=IndexedSourceMapConsumer},7533:function(e,t,n){const r=n(5897);const i=e=>r.posix.normalize(r.posix.join("/",e));e.exports=(e=>e.charAt(0)==="!"?`!${i(e.substr(1))}`:i(e));e.exports.normalize=i},7534:function(e){e.exports={name:"seek-bzip",version:"1.0.5",contributors:["C. Scott Ananian (http://cscott.net)","Eli Skeggs","Kevin Kwok","Rob Landley (http://landley.net)"],description:"a pure-JavaScript Node.JS module for random-access decoding bzip2 data",main:"./lib/index.js",repository:{type:"git",url:"https://github.com/cscott/seek-bzip.git"},license:"MIT",bin:{"seek-bunzip":"./bin/seek-bunzip","seek-table":"./bin/seek-bzip-table"},directories:{test:"test"},dependencies:{commander:"~2.8.1"},devDependencies:{fibers:"~1.0.6",mocha:"~2.2.5"},scripts:{test:"mocha"}}},7537:function(e){"use strict";const t=(e,t)=>(function(){const n=t.promiseModule;const r=new Array(arguments.length);for(let e=0;e<arguments.length;e++){r[e]=arguments[e]}return new n((n,i)=>{if(t.errorFirst){r.push(function(e,r){if(t.multiArgs){const t=new Array(arguments.length-1);for(let e=1;e<arguments.length;e++){t[e-1]=arguments[e]}if(e){t.unshift(e);i(t)}else{n(t)}}else if(e){i(e)}else{n(r)}})}else{r.push(function(e){if(t.multiArgs){const e=new Array(arguments.length-1);for(let t=0;t<arguments.length;t++){e[t]=arguments[t]}n(e)}else{n(e)}})}e.apply(this,r)})});e.exports=((e,n)=>{n=Object.assign({exclude:[/.+(Sync|Stream)$/],errorFirst:true,promiseModule:Promise},n);const r=e=>{const t=t=>typeof t==="string"?e===t:t.test(e);return n.include?n.include.some(t):!n.exclude.some(t)};let i;if(typeof e==="function"){i=function(){if(n.excludeMain){return e.apply(this,arguments)}return t(e,n).apply(this,arguments)}}else{i=Object.create(Object.getPrototypeOf(e))}for(const o in e){const a=e[o];i[o]=typeof a==="function"&&r(o)?t(a,n):a}return i})},7542:function(e,t,n){"use strict";e.exports=writeFile;e.exports.sync=writeFileSync;e.exports._getTmpname=getTmpname;e.exports._cleanupOnExit=cleanupOnExit;var r=n(2617);var i=n(4413);var o=n(6802);var a=n(5897);var s={};var c=function getId(){try{var e=n(966);return e.threadId}catch(e){return 0}}();var u=0;function getTmpname(e){return e+"."+i(__filename).hash(String(process.pid)).hash(String(c)).hash(String(++u)).result()}function cleanupOnExit(e){return function(){try{r.unlinkSync(typeof e==="function"?e():e)}catch(e){}}}function writeFile(e,t,n,i){if(n){if(n instanceof Function){i=n;n={}}else if(typeof n==="string"){n={encoding:n}}}else{n={}}var c=n.Promise||global.Promise;var u;var l;var f;var p=o(cleanupOnExit(()=>f));var d=a.resolve(e);new c(function serializeSameFile(e){if(!s[d])s[d]=[];s[d].push(e);if(s[d].length===1)e()}).then(function getRealPath(){return new c(function(t){r.realpath(e,function(n,r){u=r||e;f=getTmpname(u);t()})})}).then(function stat(){return new c(function stat(e){if(n.mode&&n.chown)e();else{r.stat(u,function(t,r){if(t||!r)e();else{n=Object.assign({},n);if(n.mode==null){n.mode=r.mode}if(n.chown==null&&process.getuid){n.chown={uid:r.uid,gid:r.gid}}e()}})}})}).then(function thenWriteFile(){return new c(function(e,t){r.open(f,"w",n.mode,function(n,r){l=r;if(n)t(n);else e()})})}).then(function write(){return new c(function(e,i){if(Buffer.isBuffer(t)){r.write(l,t,0,t.length,0,function(t){if(t)i(t);else e()})}else if(t!=null){r.write(l,String(t),0,String(n.encoding||"utf8"),function(t){if(t)i(t);else e()})}else e()})}).then(function syncAndClose(){return new c(function(e,t){if(n.fsync!==false){r.fsync(l,function(n){if(n)r.close(l,()=>t(n));else r.close(l,e)})}else{r.close(l,e)}})}).then(function chown(){l=null;if(n.chown){return new c(function(e,t){r.chown(f,n.chown.uid,n.chown.gid,function(n){if(n)t(n);else e()})})}}).then(function chmod(){if(n.mode){return new c(function(e,t){r.chmod(f,n.mode,function(n){if(n)t(n);else e()})})}}).then(function rename(){return new c(function(e,t){r.rename(f,u,function(n){if(n)t(n);else e()})})}).then(function success(){p();i()},function fail(e){return new c(e=>{return l?r.close(l,e):e()}).then(()=>{p();r.unlink(f,function(){i(e)})})}).then(function checkQueue(){s[d].shift();if(s[d].length>0){s[d][0]()}else delete s[d]})}function writeFileSync(e,t,n){if(typeof n==="string")n={encoding:n};else if(!n)n={};try{e=r.realpathSync(e)}catch(e){}var i=getTmpname(e);if(!n.mode||!n.chown){try{var a=r.statSync(e);n=Object.assign({},n);if(!n.mode){n.mode=a.mode}if(!n.chown&&process.getuid){n.chown={uid:a.uid,gid:a.gid}}}catch(e){}}var s;var c=cleanupOnExit(i);var u=o(c);try{s=r.openSync(i,"w",n.mode);if(Buffer.isBuffer(t)){r.writeSync(s,t,0,t.length,0)}else if(t!=null){r.writeSync(s,String(t),0,String(n.encoding||"utf8"))}if(n.fsync!==false){r.fsyncSync(s)}r.closeSync(s);if(n.chown)r.chownSync(i,n.chown.uid,n.chown.gid);if(n.mode)r.chmodSync(i,n.mode);r.renameSync(i,e);u()}catch(e){if(s){try{r.closeSync(s)}catch(e){}}u();c();throw e}}},7547:function(e,t,n){"use strict";var r=n(7502);var i=n(7312);var o=n(1878);e.exports=function isDescriptor(e,t){if(r(e)!=="object"){return false}if("get"in e){return i(e,t)}return o(e,t)}},7550:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return main});var r=n(816);var i=n.n(r);var o=n(9544);var a=n.n(o);var s=n(2229);var c=n.n(s);var u=n(3759);var l=n.n(u);var f=n(2616);var p=n.n(f);var d=n(4495);var h=n(4170);var m=n.n(h);var v=n(5242);var g=n.n(v);var y=n(8950);var b=n.n(y);var w=n(4999);var x=n.n(w);var k=n(8685);var j=n.n(k);var S=n(89);var E=n.n(S);var _=n(3033);var C=n(4573);var A=n.n(C);var O=n(8303);var F=n.n(O);var D=n(6097);var T=n.n(D);var I=n(8852);var R=n.n(I);var P=n(8111);var B=n.n(P);var N=n(900);var z=n.n(N);var L=n(2970);var M=n.n(L);var U=n(4798);var q=n.n(U);const H=()=>{console.log(`\n ${a.a.bold(`${x.a} now remove`)} [...deploymentId|deploymentName]\n\n ${a.a.dim("Options:")}\n\n -h, --help Output usage information\n -A ${a.a.bold.underline("FILE")}, --local-config=${a.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${a.a.bold.underline("DIR")}, --global-config=${a.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -d, --debug Debug mode [off]\n -t ${a.a.bold.underline("TOKEN")}, --token=${a.a.bold.underline("TOKEN")} Login token\n -y, --yes Skip confirmation\n -s, --safe Skip deployments with an active alias\n -S, --scope Set a custom scope\n\n ${a.a.dim("Examples:")}\n\n ${a.a.gray("")} Remove a deployment identified by ${a.a.dim("`deploymentId`")}\n\n ${a.a.cyan("$ now rm deploymentId")}\n\n ${a.a.gray("")} Remove all deployments with name ${a.a.dim("`my-app`")}\n\n ${a.a.cyan("$ now rm my-app")}\n\n ${a.a.gray("")} Remove two deployments with IDs ${a.a.dim("`eyWt6zuSdeus`")} and ${a.a.dim("`uWHoA9RQ1d1o`")}\n\n ${a.a.cyan("$ now rm eyWt6zuSdeus uWHoA9RQ1d1o")}\n`)};async function main(e){let t;t=i()(e.argv.slice(2),{boolean:["help","debug","hard","yes","safe"],alias:{help:"h",debug:"d",yes:"y",safe:"s"}});t._=t._.slice(1);const n=e.apiUrl;const r=t.hard||false;const o=t.yes||false;const s=t._;const c=t.debug;const u=g()({debug:c});const{success:l,error:f,log:p}=u;if(s.length<1){f(`${j()("now rm")} expects at least one argument`);H();return 1}if(t.help||s[0]==="help"){H();return 2}const h=s.find(e=>!Object(I["isValidName"])(e));if(h){f(`The provided argument "${h}" is not a valid deployment or project`);return 1}const{authConfig:{token:v},config:y}=e;const{currentTeam:w}=y;const x=new A.a({apiUrl:n,token:v,currentTeam:w,debug:c});let k=null;try{({contextName:k}=await F()(x))}catch(e){x.close();if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){u.error(e.message);return 1}throw e}const S=b()(`Fetching deployment(s) ${s.map(e=>`"${e}"`).join(" ")} in ${a.a.bold(k)}`);let C;let O;let T;const R=Date.now();try{const e=e=>s.some(t=>e&&!(e instanceof D["NowError"])&&(e.uid===t||e.name===t||e.url===Object(_["normalizeURL"])(t)));const[n,r]=await Promise.all([Promise.all(s.map(e=>M()(x,k,e))),Promise.all(s.map(async e=>z()(x,e)))]);T=n.filter(e);O=r.filter(e);if(t.safe){const e=await Promise.all(O.map(e=>{return q()(x,e.id,{max:201,continue:true})}));e.slice(0,201).map(e=>T.push(...e));O=[]}else{T=T.filter(e=>!O.some(t=>t.name===e.name))}C=await Promise.all(T.map(e=>m()(x,e.uid)))}finally{S()}T=T.filter((e,n)=>{if(t.safe&&C[n].length>0){return false}e.aliases=C[n];return true});if(T.length===0&&O.length===0){p(`Could not find ${t.safe?"unaliased":"any"} deployments `+`or projects matching `+`${s.map(e=>a.a.bold(`"${e}"`)).join(", ")}. Run ${j()("now ls")} to list.`);x.close();return 1}p(`Found ${deploymentsAndProjects(T,O)} for removal in `+`${a.a.bold(k)} ${E()(Date.now()-R)}`);if(T.length>200){u.warn(`Only 200 deployments can get deleted at once. `+`Please continue 10 minutes after deletion to remove the rest.`)}if(!o){const e=(await readConfirmation(T,O,u)).toLowerCase();if(e!=="y"&&e!=="yes"){u.log("Aborted");x.close();return 1}}const P=new d["default"]({apiUrl:n,token:v,debug:c,currentTeam:w});const N=new Date;await Promise.all([...T.map(e=>P.remove(e.uid,{hard:r})),...O.map(e=>B()(x,e.id))]);l(`Removed ${deploymentsAndProjects(T,O)} `+`${E()(Date.now()-N)}`);T.forEach(e=>{console.log(`${a.a.gray("-")} ${a.a.bold(e.url)}`)});O.forEach(e=>{console.log(`${a.a.gray("-")} ${a.a.bold(e.name)}`)});x.close();return 0}function readConfirmation(e,t,n){return new Promise(r=>{if(e.length>0){n.log(`The following ${l()("deployment",e.length,e.length>1)} will be permanently removed:`);const t=p()(e.map(e=>{const t=a.a.gray(`${c()(new Date-e.created)} ago`);const n=e.url?a.a.underline(`https://${e.url}`):"";return[` ${e.uid}`,n,t]}),{align:["l","r","l"],hsep:" ".repeat(6)});n.print(`${t}\n`)}for(const t of e){for(const{alias:e}of t.aliases){n.warn(`${a.a.underline(`https://${e}`)} is an alias for `+`${a.a.bold(t.url)} and will be removed`)}}if(t.length>0){console.log(`The following ${l()("project",t.length,t.length>1)} will be permanently removed, `+`including all ${t.length>1?"their":"its"} deployments and aliases:`);for(const e of t){console.log(`${a.a.gray("-")} ${a.a.bold(e.name)}`)}}n.print(`${a.a.bold.red("> Are you sure?")} ${a.a.gray("[y/N] ")}`);process.stdin.on("data",e=>{process.stdin.pause();r(e.toString().trim())}).resume()})}function deploymentsAndProjects(e=[],t=[],n="and"){if(!t||t.length===0){return`${l()("deployment",e.length,true)}`}if(!e||e.length===0){return`${l()("project",t.length,true)}`}return`${l()("deployment",e.length,true)} `+`${n} ${l()("project",t.length,true)}`}},7552:function(e,t,n){var r=n(1939);var i=n(8060);var o=n(774);var a=n(1703);var s=n(649).inherits;var c=n(2998)("https-proxy-agent");e.exports=HttpsProxyAgent;function HttpsProxyAgent(e){if(!(this instanceof HttpsProxyAgent))return new HttpsProxyAgent(e);if("string"==typeof e)e=o.parse(e);if(!e)throw new Error("an HTTP(S) proxy server `host` and `port` must be specified!");c("creating new HttpsProxyAgent instance: %o",e);a.call(this,e);var t=Object.assign({},e);this.secureProxy=t.protocol?/^https:?$/i.test(t.protocol):false;t.host=t.hostname||t.host;t.port=+t.port||(this.secureProxy?443:80);if(this.secureProxy&&!("ALPNProtocols"in t)){t.ALPNProtocols=["http 1.1"]}if(t.host&&t.path){delete t.path;delete t.pathname}this.proxy=t;this.defaultPort=443}s(HttpsProxyAgent,a);HttpsProxyAgent.prototype.callback=function connect(e,t,n){var o=this.proxy;var a;if(this.secureProxy){a=i.connect(o)}else{a=r.connect(o)}var s=[];var u=0;function read(){var e=a.read();if(e)ondata(e);else a.once("readable",read)}function cleanup(){a.removeListener("data",ondata);a.removeListener("end",onend);a.removeListener("error",onerror);a.removeListener("close",onclose);a.removeListener("readable",read)}function onclose(e){c("onclose had error %o",e)}function onend(){c("onend")}function onerror(e){cleanup();n(e)}function ondata(r){s.push(r);u+=r.length;var o=Buffer.concat(s,u);var l=o.toString("ascii");if(!~l.indexOf("\r\n\r\n")){c("have not received end of HTTP headers yet...");if(a.read){read()}else{a.once("data",ondata)}return}var f=l.substring(0,l.indexOf("\r\n"));var p=+f.split(" ")[1];c("got proxy server response: %o",f);if(200==p){var d=a;s=o=null;if(t.secureEndpoint){c("upgrading proxy-connected socket to TLS connection: %o",t.host);t.socket=a;t.servername=t.servername||t.host;t.host=null;t.hostname=null;t.port=null;d=i.connect(t)}cleanup();n(null,d)}else{cleanup();s=o;e.once("socket",onsocket);n(null,a)}}function onsocket(e){if("function"==typeof e.ondata){e.ondata(s,0,s.length)}else if(e.listeners("data").length>0){e.emit("data",s)}else{throw new Error("should not happen...")}s=null}a.on("error",onerror);a.on("close",onclose);a.on("end",onend);if(a.read){read()}else{a.once("data",ondata)}var l=t.host+":"+t.port;var f="CONNECT "+l+" HTTP/1.1\r\n";var p=Object.assign({},o.headers);if(o.auth){p["Proxy-Authorization"]="Basic "+Buffer.from(o.auth).toString("base64")}var d=t.host;if(!isDefaultPort(t.port,t.secureEndpoint)){d+=":"+t.port}p["Host"]=d;p["Connection"]="close";Object.keys(p).forEach(function(e){f+=e+": "+p[e]+"\r\n"});a.write(f+"\r\n")};function isDefaultPort(e,t){return Boolean(!t&&e===80||t&&e===443)}},7554:function(e){"use strict";e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},7577:function(e){"use strict";class PoolDefaults{constructor(){this.fifo=true;this.priorityRange=1;this.testOnBorrow=false;this.testOnReturn=false;this.autostart=true;this.evictionRunIntervalMillis=0;this.numTestsPerEvictionRun=3;this.softIdleTimeoutMillis=-1;this.idleTimeoutMillis=3e4;this.acquireTimeoutMillis=null;this.maxWaitingClients=null;this.min=null;this.max=null;this.Promise=Promise}}e.exports=PoolDefaults},7586:function(e,t,n){"use strict";var r=n(2608);var i=e.exports;i.extend=n(3462);i.flatten=n(3401);i.isObject=n(5325);i.fillRange=n(3835);i.repeat=n(1385);i.unique=n(430);i.define=function(e,t,n){Object.defineProperty(e,t,{writable:true,configurable:true,enumerable:false,value:n})};i.isEmptySets=function(e){return/^(?:\{,\})+$/.test(e)};i.isQuotedString=function(e){var t=e.charAt(0);if(t==="'"||t==='"'||t==="`"){return e.slice(-1)===t}return false};i.createKey=function(e,t){var n=e;if(typeof t==="undefined"){return n}var r=Object.keys(t);for(var i=0;i<r.length;i++){var o=r[i];n+=";"+o+"="+String(t[o])}return n};i.createOptions=function(e){var t=i.extend.apply(null,arguments);if(typeof t.expand==="boolean"){t.optimize=!t.expand}if(typeof t.optimize==="boolean"){t.expand=!t.optimize}if(t.optimize===true){t.makeRe=true}return t};i.join=function(e,t,n){n=n||{};e=i.arrayify(e);t=i.arrayify(t);if(!e.length)return t;if(!t.length)return e;var r=e.length;var o=-1;var a=[];while(++o<r){var s=e[o];if(Array.isArray(s)){for(var c=0;c<s.length;c++){s[c]=i.join(s[c],t,n)}a.push(s);continue}for(var u=0;u<t.length;u++){var l=t[u];if(Array.isArray(l)){a.push(i.join(s,l,n))}else{a.push(s+l)}}}return a};i.split=function(e,t){var n=i.extend({sep:","},t);if(typeof n.keepQuotes!=="boolean"){n.keepQuotes=true}if(n.unescape===false){n.keepEscaping=true}return r(e,n,i.escapeBrackets(n))};i.expand=function(e,t){var n=i.extend({rangeLimit:1e4},t);var r=i.split(e,n);var o={segs:r};if(i.isQuotedString(e)){return o}if(n.rangeLimit===true){n.rangeLimit=1e4}if(r.length>1){if(n.optimize===false){o.val=r[0];return o}o.segs=i.stringifyArray(o.segs)}else if(r.length===1){var a=e.split("..");if(a.length===1){o.val=o.segs[o.segs.length-1]||o.val||e;o.segs=[];return o}if(a.length===2&&a[0]===a[1]){o.escaped=true;o.val=a[0];o.segs=[];return o}if(a.length>1){if(n.optimize!==false){n.optimize=true;delete n.expand}if(n.optimize!==true){var s=Math.min(a[0],a[1]);var c=Math.max(a[0],a[1]);var u=a[2]||1;if(n.rangeLimit!==false&&(c-s)/u>=n.rangeLimit){throw new RangeError("expanded array length exceeds range limit. Use options.rangeLimit to increase or disable the limit.")}}a.push(n);o.segs=i.fillRange.apply(null,a);if(!o.segs.length){o.escaped=true;o.val=e;return o}if(n.optimize===true){o.segs=i.stringifyArray(o.segs)}if(o.segs===""){o.val=e}else{o.val=o.segs[0]}return o}}else{o.val=e}return o};i.escapeBrackets=function(e){return function(t){if(t.escaped&&t.val==="b"){t.val="\\b";return}if(t.val!=="("&&t.val!=="[")return;var n=i.extend({},e);var r=[];var o=[];var a=[];var s=t.val;var c=t.str;var u=t.idx-1;while(++u<c.length){var l=c[u];if(l==="\\"){s+=(n.keepEscaping===false?"":l)+c[++u];continue}if(l==="("){o.push(l);a.push(l)}if(l==="["){r.push(l);a.push(l)}if(l===")"){o.pop();a.pop();if(!a.length){s+=l;break}}if(l==="]"){r.pop();a.pop();if(!a.length){s+=l;break}}s+=l}t.split=false;t.val=s.slice(1);t.idx=u}};i.isQuantifier=function(e){return/^(?:[0-9]?,[0-9]|[0-9],)$/.test(e)};i.stringifyArray=function(e){return[i.arrayify(e).join("|")]};i.arrayify=function(e){if(typeof e==="undefined"){return[]}if(typeof e==="string"){return[e]}return e};i.isString=function(e){return e!=null&&typeof e==="string"};i.last=function(e,t){return e[e.length-(t||1)]};i.escapeRegex=function(e){return e.replace(/\\?([!^*?()[\]{}+?\/])/g,"\\$1")}},7592:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(2229));const s=i(n(2616));const c=i(n(4573));const u=i(n(9664));const l=i(n(5846));const f=i(n(8303));const p=i(n(586));function rm(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:a}=e;const{currentTeam:s}=a;const{apiUrl:d}=e;const h=t["--debug"];const m=new c.default({apiUrl:d,token:r,currentTeam:s,debug:h});let v=null;try{({contextName:v}=yield f.default(m))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){i.error(e.message);return 1}throw e}const[g]=n;if(n.length!==1){i.error(`Invalid number of arguments. Usage: ${o.default.cyan("`now dns rm <id>`")}`);return 1}const y=yield l.default(i,m,v,g);if(!y){i.error("DNS record not found");return 1}const{domainName:b,record:w}=y;const x=yield readConfirmation(i,"The following record will be removed permanently",b,w);if(!x){i.error(`User aborted.`);return 0}const k=p.default();yield u.default(m,b,w.id);console.log(`${o.default.cyan("> Success!")} Record ${o.default.gray(`${w.id}`)} removed ${o.default.gray(k())}`);return 0})}t.default=rm;function readConfirmation(e,t,n,r){return new Promise(i=>{e.log(t);e.print(`${s.default([getDeleteTableRow(n,r)],{align:["l","r","l"],hsep:" ".repeat(6)}).replace(/^(.*)/gm," $1")}\n`);e.print(`${o.default.bold.red("> Are you sure?")} ${o.default.gray("[y/N] ")}`);process.stdin.on("data",e=>{process.stdin.pause();i(e.toString().trim().toLowerCase()==="y")}).resume()})}function getDeleteTableRow(e,t){const n=`${t.name.length>0?`${t.name}.`:""}${e}`;return[t.id,o.default.bold(`${n} ${t.type} ${t.value} ${t.mxPriority||""}`),o.default.gray(`${a.default(Date.now()-new Date(Number(t.created)).getTime())} ago`)]}},7603:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return ls});var r=n(9544);var i=n.n(r);var o=n(2229);var a=n.n(o);var s=n(3759);var c=n.n(s);var u=n(2616);var l=n.n(u);var f=n(4495);var p=n(4573);var d=n.n(p);var h=n(4170);var m=n.n(h);var v=n(8303);var g=n.n(v);var y=n(586);var b=n.n(y);var w=n(4110);var x=n.n(w);var k=n(8950);var j=n.n(k);async function ls(e,t,n,r){const{authConfig:{token:o},config:a}=e;const{currentTeam:s}=a;const{apiUrl:u}=e;const{"--debug":l}=t;const p=new d.a({apiUrl:u,token:o,currentTeam:s,debug:l});let h=null;try{({contextName:h}=await g()(p))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){r.error(e.message);return 1}throw e}const v=new f["default"]({apiUrl:u,token:o,debug:l,currentTeam:s});const y=b()();let w;if(n.length>1){r.error(`Invalid number of arguments. Usage: ${i.a.cyan("`now alias ls [alias]`")}`);return 1}w=j()(n[0]?`Fetching alias details for "${n[0]}" under ${i.a.bold(h)}`:`Fetching aliases under ${i.a.bold(h)}`);const x=await m()(v);if(w)w();if(n[0]){const e=x.find(e=>e.uid===n[0]||e.alias===n[0]);if(!e){r.error(`Could not match path alias for: ${n[0]}`);v.close();return 1}if(t["--json"]){console.log(JSON.stringify({rules:e.rules},null,2))}else{const t=e.rules||[];r.log(`${t.length} path alias ${c()("rule",t.length)} found under ${i.a.bold(h)} ${y()}`);r.print(`${printPathAliasTable(t)}\n`)}}else{x.sort((e,t)=>new Date(t.created)-new Date(e.created));r.log(`${c()("alias",x.length,true)} found under ${i.a.bold(h)} ${y()}`);console.log(printAliasTable(x))}v.close();return 0}function printAliasTable(e){return`${l()([["source","url","age"].map(e=>i.a.gray(e)),...e.map(e=>[e.rules&&e.rules.length?i.a.cyan(`[${c()("rule",e.rules.length,true)}]`):e.deployment&&e.deployment.url?e.deployment.url:i.a.gray(""),e.alias,a()(Date.now()-new Date(e.created))])],{align:["l","l","r"],hsep:" ".repeat(4),stringLength:x.a}).replace(/^/gm," ")}\n\n`}function printPathAliasTable(e){const t=[["pathname","method","dest"].map(e=>i.a.gray(e))];return`${l()(t.concat(e.map(e=>[e.pathname?e.pathname:i.a.cyan("[fallthrough]"),e.method?e.method:"*",e.dest])),{align:["l","l","l","l"],hsep:" ".repeat(6),stringLength:x.a}).replace(/^(.*)/gm," $1")}\n`}},7609:function(e,t,n){"use strict";const r=n(662);const i=n(5897);const o=10;const a=5;const s=0;const c=process.versions.node.split(".");const u=Number.parseInt(c[0],10);const l=Number.parseInt(c[1],10);const f=Number.parseInt(c[2],10);function nodeSupportsBigInt(){if(u>o){return true}else if(u===o){if(l>a){return true}else if(l===a){if(f>=s){return true}}}return false}function getStats(e,t,n){if(nodeSupportsBigInt()){r.stat(e,{bigint:true},(e,i)=>{if(e)return n(e);r.stat(t,{bigint:true},(e,t)=>{if(e){if(e.code==="ENOENT")return n(null,{srcStat:i,destStat:null});return n(e)}return n(null,{srcStat:i,destStat:t})})})}else{r.stat(e,(e,i)=>{if(e)return n(e);r.stat(t,(e,t)=>{if(e){if(e.code==="ENOENT")return n(null,{srcStat:i,destStat:null});return n(e)}return n(null,{srcStat:i,destStat:t})})})}}function getStatsSync(e,t){let n,i;if(nodeSupportsBigInt()){n=r.statSync(e,{bigint:true})}else{n=r.statSync(e)}try{if(nodeSupportsBigInt()){i=r.statSync(t,{bigint:true})}else{i=r.statSync(t)}}catch(e){if(e.code==="ENOENT")return{srcStat:n,destStat:null};throw e}return{srcStat:n,destStat:i}}function checkPaths(e,t,n,r){getStats(e,t,(i,o)=>{if(i)return r(i);const{srcStat:a,destStat:s}=o;if(s&&s.ino&&s.dev&&s.ino===a.ino&&s.dev===a.dev){return r(new Error("Source and destination must not be the same."))}if(a.isDirectory()&&isSrcSubdir(e,t)){return r(new Error(errMsg(e,t,n)))}return r(null,{srcStat:a,destStat:s})})}function checkPathsSync(e,t,n){const{srcStat:r,destStat:i}=getStatsSync(e,t);if(i&&i.ino&&i.dev&&i.ino===r.ino&&i.dev===r.dev){throw new Error("Source and destination must not be the same.")}if(r.isDirectory()&&isSrcSubdir(e,t)){throw new Error(errMsg(e,t,n))}return{srcStat:r,destStat:i}}function checkParentPaths(e,t,n,o,a){const s=i.resolve(i.dirname(e));const c=i.resolve(i.dirname(n));if(c===s||c===i.parse(c).root)return a();if(nodeSupportsBigInt()){r.stat(c,{bigint:true},(r,i)=>{if(r){if(r.code==="ENOENT")return a();return a(r)}if(i.ino&&i.dev&&i.ino===t.ino&&i.dev===t.dev){return a(new Error(errMsg(e,n,o)))}return checkParentPaths(e,t,c,o,a)})}else{r.stat(c,(r,i)=>{if(r){if(r.code==="ENOENT")return a();return a(r)}if(i.ino&&i.dev&&i.ino===t.ino&&i.dev===t.dev){return a(new Error(errMsg(e,n,o)))}return checkParentPaths(e,t,c,o,a)})}}function checkParentPathsSync(e,t,n,o){const a=i.resolve(i.dirname(e));const s=i.resolve(i.dirname(n));if(s===a||s===i.parse(s).root)return;let c;try{if(nodeSupportsBigInt()){c=r.statSync(s,{bigint:true})}else{c=r.statSync(s)}}catch(e){if(e.code==="ENOENT")return;throw e}if(c.ino&&c.dev&&c.ino===t.ino&&c.dev===t.dev){throw new Error(errMsg(e,n,o))}return checkParentPathsSync(e,t,s,o)}function isSrcSubdir(e,t){const n=i.resolve(e).split(i.sep).filter(e=>e);const r=i.resolve(t).split(i.sep).filter(e=>e);return n.reduce((e,t,n)=>e&&r[n]===t,true)}function errMsg(e,t,n){return`Cannot ${n} '${e}' to a subdirectory of itself, '${t}'.`}e.exports={checkPaths:checkPaths,checkPathsSync:checkPathsSync,checkParentPaths:checkParentPaths,checkParentPathsSync:checkParentPathsSync,isSrcSubdir:isSrcSubdir}},7619:function(e,t,n){var r=n(8483);var i=n(9217);var o=i;o.v1=r;o.v4=i;e.exports=o},7686:function(e,t,n){"use strict";function _classCallCheck(e,t){if(!(e instanceof t)){throw new TypeError("Cannot call a class as a function")}}var r=n(2342).Buffer;var i=n(649);function copyBuffer(e,t,n){e.copy(t,n)}e.exports=function(){function BufferList(){_classCallCheck(this,BufferList);this.head=null;this.tail=null;this.length=0}BufferList.prototype.push=function push(e){var t={data:e,next:null};if(this.length>0)this.tail.next=t;else this.head=t;this.tail=t;++this.length};BufferList.prototype.unshift=function unshift(e){var t={data:e,next:this.head};if(this.length===0)this.tail=t;this.head=t;++this.length};BufferList.prototype.shift=function shift(){if(this.length===0)return;var e=this.head.data;if(this.length===1)this.head=this.tail=null;else this.head=this.head.next;--this.length;return e};BufferList.prototype.clear=function clear(){this.head=this.tail=null;this.length=0};BufferList.prototype.join=function join(e){if(this.length===0)return"";var t=this.head;var n=""+t.data;while(t=t.next){n+=e+t.data}return n};BufferList.prototype.concat=function concat(e){if(this.length===0)return r.alloc(0);if(this.length===1)return this.head.data;var t=r.allocUnsafe(e>>>0);var n=this.head;var i=0;while(n){copyBuffer(n.data,t,i);i+=n.data.length;n=n.next}return t};return BufferList}();if(i&&i.inspect&&i.inspect.custom){e.exports.prototype[i.inspect.custom]=function(){var e=i.inspect({length:this.length});return this.constructor.name+" "+e}}},7687:function(e){function arg(e,{argv:t,permissive:n=false}={}){if(!e){throw new Error("Argument specification must be specified")}const r={_:[]};t=t||process.argv.slice(2);const i={};const o={};for(const t of Object.keys(e)){if(typeof e[t]==="string"){i[t]=e[t];continue}const n=e[t];if(!n||typeof n!=="function"&&!(Array.isArray(n)&&n.length===1&&typeof n[0]==="function")){throw new Error(`Type missing or not a function or valid array type: ${t}`)}o[t]=n}for(let e=0,a=t.length;e<a;e++){const a=t[e];if(a.length<2){r._.push(a);continue}if(a==="--"){r._=r._.concat(t.slice(e+1));break}if(a[0]==="-"){const[s,c]=a[1]==="-"?a.split("=",2):[a,undefined];let u=s;while(u in i){u=i[u]}if(!(u in o)){if(n){r._.push(a);continue}else{throw new Error(`Unknown or unexpected option: ${s}`)}}const[l,f]=Array.isArray(o[u])?[o[u][0],true]:[o[u],false];let p;if(l===Boolean){p=true}else if(c===undefined){if(t.length<e+2||t[e+1].length>1&&t[e+1][0]==="-"){const e=s===u?"":` (alias for ${u})`;throw new Error(`Option requires argument: ${s}${e}`)}p=l(t[e+1],u,r[u]);++e}else{p=l(c,u,r[u])}if(f){if(r[u]){r[u].push(p)}else{r[u]=[p]}}else{r[u]=p}}else{r._.push(a)}}return r}e.exports=arg},7691:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);var o=n(8950);var a=n.n(o);var s=n(1661);var c=n(5359);var u=n.n(c);var l=n(6145);var f=n.n(l);var p=n(541);var d=n.n(p);var h=n(2788);var m=n.n(h);var v=n(2547);var g=n.n(v);var y=n(6102);var b=n.n(y);var w=n(4573);var x=n.n(w);var k=n(9693);const j=(e,t)=>{if(t){e.currentTeam=t.id}else{delete e.currentTeam}Object(v["writeToConfigFile"])(e)};t["default"]=async function({apiUrl:e,token:t,debug:n,args:r,config:o}){let c=a()("Fetching teams");const l=new k["default"]({apiUrl:e,token:t,debug:n});const p=(await l.ls()).teams;let{currentTeam:h}=o;const v=!h;c();const g=a()("Fetching user information");const y=new x.a({apiUrl:e,token:t});const w=await b()(y);g();if(v){h={slug:w.username||w.email}}else{h=p.find(e=>e.id===h);if(!h){console.error(d()(`You are not a part of the current team anymore`));return 1}}if(r.length!==0){const e=r[0];const t=p.find(t=>t.slug===e);if(t){j(o,t);console.log(u()(`The team ${i.a.bold(t.name)} (${t.slug}) is now active!`));return 0}if(e===w.username){c=a()("Saving");j(o);c();console.log(u()(`Your account (${i.a.bold(e)}) is now active!`));return 0}console.error(d()(`Could not find membership for team ${m()(e)}`));return 1}const S=p.map(({id:e,slug:t,name:n})=>{n=`${t} (${n})`;if(e===h.id){n+=` ${i.a.bold("(current)")}`}return{name:n,value:t,short:t}});const E=v?` ${i.a.bold("(current)")}`:"";const _=w.username?`${w.username} (${w.email})${E}`:w.email;S.unshift({name:_,value:w.email,short:w.username});if(!v){const e=S.findIndex(e=>e.value===h.slug);const t=S.splice(e,1)[0];S.unshift(t)}let C;if(h){C=`Switch to:`}const A=await Object(s["default"])({message:C,choices:S,separator:false,eraseFinalAnswer:true});if(!A){console.log(f()("No changes made"));return 0}const O=p.find(e=>e.slug===A);if(!O){if(h.slug===w.username||h.slug===w.email){console.log(f()("No changes made"));return 0}c=a()("Saving");j(o);c();console.log(u()(`Your account (${i.a.bold(A)}) is now active!`));return 0}if(O.slug===h.slug){console.log(f()("No changes made"));return 0}c=a()("Saving");j(o,O);c();console.log(u()(`The team ${i.a.bold(O.name)} (${O.slug}) is now active!`));return 0}},7705:function(e,t,n){const r=n(4089);const i=n(6686);const o=/(?:(?:(\s?(?:^|[.\(\)!?;:"-])\s*)(\w))|(\w))(\w*[']*\w*)/g;const a=e=>e.map(e=>[new RegExp(`\\b${e}\\b`,"gi"),e]);function parseMatch(e){const t=e[0];if(/\s/.test(t)){return e.substr(1)}if(/[\(\)]/.test(t)){return null}return e}e.exports=((e,t={})=>{e=e.toLowerCase().replace(o,(e,t="",n,i,o)=>{const a=parseMatch(e);if(!a){return e}if(!n){const e=i+o;if(r.has(e)){return a}}return t+(i||n).toUpperCase()+o});const n=t.special||[];const s=[...i,...n];const c=a(s);c.forEach(([t,n])=>{e=e.replace(t,n)});return e})},7706:function(e,t,n){const{promisify:r}=n(649);const i=n(5897);const{createHash:o}=n(2984);const{realpath:a,lstat:s,createReadStream:c,readdir:u}=n(662);const l=n(5667);const f=n(7533);const p=n(186);const d=n(1538);const h=n(9453);const m=n(7930);const v=n(2511);const g=n(6836);const y=n(7142);const b=n(5907);const w=n(9907);const x=new Map;const k=(e,t)=>new Promise((n,r)=>{const a=o("sha1");a.update(i.extname(t));a.update("-");const s=e.createReadStream(t);s.on("error",r);s.on("data",e=>a.update(e));s.on("end",()=>{const e=a.digest("hex");n(e)})});const j=(e,t,n)=>{const r=[];const o=f(e);const a=i.posix.resolve(t);let s=null;if(n){const e=o.replace("*","(.*)");const t=d(e,r);s=t.exec(a);if(!s){r.length=0}}if(s||p(a,o)){return{keys:r,results:s}}return null};const S=(e,t,n)=>{const r=j(e,n,true);if(!r){return null}const{keys:i,results:o}=r;const a={};const{protocol:s}=l.parse(t);const c=s?t:f(t);const u=d.compile(c);for(let e=0;e<i.length;e++){const{name:t}=i[e];a[t]=o[e+1]}return u(a)};const E=(e,t=[],n)=>{const r=t.slice();const i=n?e:null;if(r.length===0){return i}for(let n=0;n<r.length;n++){const{source:i,destination:o}=t[n];const a=S(i,o,e);if(a){r.splice(n,1);return E(f(a),r,true)}}return i};const _=e=>e.startsWith("/")?e:`/${e}`;const C=(e,{redirects:t=[],trailingSlash:n},r)=>{const o=typeof n==="boolean";const a=301;const s=/(\.html|\/index)$/g;if(t.length===0&&!o&&!r){return null}let c=false;if(r&&s.test(e)){e=e.replace(s,"");c=true}if(o){const{ext:t,name:r}=i.parse(e);const o=e.endsWith("/");const s=r.startsWith(".");let c=null;if(!n&&o){c=e.slice(0,-1)}else if(n&&!o&&!t&&!s){c=`${e}/`}if(e.indexOf("//")>-1){c=e.replace(/\/+/g,"/")}if(c){return{target:_(c),statusCode:a}}}if(c){return{target:_(e),statusCode:a}}for(let n=0;n<t.length;n++){const{source:r,destination:i,type:o}=t[n];const s=S(r,i,e);if(s){return{target:s,statusCode:o||a}}}return null};const A=(e,t)=>{for(let n=0;n<t.length;n++){const{key:r,value:i}=t[n];e[r]=i}};const O=async(e,t,n,r,o)=>{const{headers:a=[],etag:s=false}=t;const c={};const{base:u}=i.parse(r);const l=i.relative(n,r);if(a.length>0){for(let e=0;e<a.length;e++){const{source:t,headers:n}=a[e];if(j(t,f(l))){A(c,n)}}}let p={};if(o){p={"Content-Length":o.size,"Content-Disposition":v(u,{type:"inline"}),"Accept-Ranges":"bytes"};if(s){let[t,n]=x.get(r)||[];if(Number(t)!==Number(o.mtime)){n=await k(e,r);x.set(r,[o.mtime,n])}p["ETag"]=`"${n}"`}else{p["Last-Modified"]=o.mtime.toUTCString()}const t=h.contentType(u);if(t){p["Content-Type"]=t}}const d=Object.assign(p,c);for(const e in d){if(d.hasOwnProperty(e)&&d[e]===null){delete d[e]}}return d};const F=(e,t)=>{if(typeof t==="boolean"){return t}if(Array.isArray(t)){for(let n=0;n<t.length;n++){const r=t[n];if(j(r,e)){return true}}return false}return true};const D=(e,t)=>[i.join(e,`index${t}`),e.endsWith("/")?e.replace(/\/$/g,t):e+t].filter(e=>i.basename(e)!==t);const T=async(e,t,n,r)=>{const o=n?[n]:D(t,".html");let a=null;for(let t=0;t<o.length;t++){const n=o[t];const s=i.join(e,n);try{a=await r(s)}catch(e){if(e.code!=="ENOENT"&&e.code!=="ENOTDIR"){throw e}}if(a){return{stats:a,absolutePath:s}}}return null};const I=(e,t)=>{const n=f(t);let r=true;for(let t=0;t<e.length;t++){const i=e[t];if(j(i,n)){r=false;break}}return r};const R=async(e,t,n,r,o,a)=>{const{directoryListing:s,trailingSlash:c,unlisted:u=[],renderSingle:l}=o;const f=typeof c==="boolean"?c?"/":"":"/";const{relativePath:p,absolutePath:d}=a;const h=[".DS_Store",".git",...u];if(!F(p,s)&&!l){return{}}let v=await n.readdir(d);const g=l&&v.length===1;for(let e=0;e<v.length;e++){const t=v[e];const o=i.resolve(d,t);const a=i.parse(o);let s=null;if(r.lstat){s=await n.lstat(o,true)}else{s=await n.lstat(o)}a.relative=i.join(p,a.base);if(s.isDirectory()){a.base+=f;a.relative+=f;a.type="folder"}else{if(g){return{singleFile:true,absolutePath:o,stats:s}}a.ext=a.ext.split(".")[1]||"txt";a.type="file";a.size=m(s.size,{unitSeparator:" ",decimalPlaces:0})}a.title=a.base;if(I(h,t)){v[e]=a}else{delete v[e]}}const y=i.relative(e,d);const w=i.join(i.basename(e),y,f);const x=w.split(i.sep).filter(Boolean);v=v.sort((e,t)=>{const n=e.type==="directory";const r=t.type==="directory";if(n&&!r){return-1}if(r&&!n||e.base>t.base){return 1}if(e.base<t.base){return-1}return 0}).filter(Boolean);if(y.length>0){const e=[...x].slice(1);const t=i.join("/",...e,"..",f);v.unshift({type:"directory",base:"..",relative:t,title:t,ext:""})}const k=[];for(let e=0;e<x.length;e++){const t=[];const n=e===x.length-1;let r=0;while(r<=e){t.push(x[r]);r++}t.shift();k.push({name:x[e]+(n?f:"/"),url:e===0?"":t.join("/")+f})}const j={files:v,directory:w,paths:k};const S=t?JSON.stringify(j):b(j);return{directory:S}};const P=async(e,t,n,r,o,a,s)=>{const{err:c,message:u,code:l,statusCode:f}=s;if(c&&process.env.NODE_ENV!=="test"){console.error(c)}t.statusCode=f;if(n){t.setHeader("Content-Type","application/json; charset=utf-8");t.end(JSON.stringify({error:{code:l,message:u}}));return}let p=null;const d=i.join(r,`${f}.html`);try{p=await o.lstat(d)}catch(e){if(e.code!=="ENOENT"){console.error(e)}}if(p){let e=null;try{e=await o.createReadStream(d);const n=await O(o,a,r,d,p);t.writeHead(f,n);e.pipe(t);return}catch(e){console.error(e)}}const h=await O(o,a,r,e,null);h["Content-Type"]="text/html; charset=utf-8";t.writeHead(f,h);t.end(w({statusCode:f,message:u}))};const B=async(...e)=>{const t=e.length-1;const n=e[t];e[t]={statusCode:500,code:"internal_server_error",message:"A server error has occurred",err:n};return P(...e)};const N=e=>Object.assign({lstat:r(s),realpath:r(a),createReadStream:c,readdir:r(u),sendError:P},e);e.exports=(async(e,t,n={},r={})=>{const o=process.cwd();const a=n.public?i.resolve(o,n.public):o;const s=N(r);let c=null;let u=null;if(e.headers.accept){u=e.headers.accept.includes("application/json")}try{c=decodeURIComponent(l.parse(e.url).pathname)}catch(e){return P("/",t,u,a,s,n,{statusCode:400,code:"bad_request",message:"Bad Request"})}let f=i.join(a,c);if(!g(f,a)){return P(f,t,u,a,s,n,{statusCode:400,code:"bad_request",message:"Bad Request"})}const p=F(c,n.cleanUrls);const d=C(c,n,p);if(d){t.writeHead(d.statusCode,{Location:encodeURI(d.target)});t.end();return}let h=null;if(i.extname(c)!==""){try{h=await s.lstat(f)}catch(e){if(e.code!=="ENOENT"&&e.code!=="ENOTDIR"){return B(f,t,u,a,s,n,e)}}}const m=E(c,n.rewrites);if(!h&&(p||m)){try{const e=await T(a,c,m,s.lstat);if(e){({stats:h,absolutePath:f}=e)}}catch(e){if(e.code!=="ENOENT"&&e.code!=="ENOTDIR"){return B(f,t,u,a,s,n,e)}}}if(!h){try{h=await s.lstat(f)}catch(e){if(e.code!=="ENOENT"&&e.code!=="ENOTDIR"){return B(f,t,u,a,s,n,e)}}}if(h&&h.isDirectory()){let e=null;let i=null;try{const o=await R(a,u,s,r,n,{relativePath:c,absolutePath:f});if(o.singleFile){({stats:h,absolutePath:f,singleFile:i}=o)}else{({directory:e}=o)}}catch(e){if(e.code!=="ENOENT"){return B(f,t,u,a,s,n,e)}}if(e){const n=u?"application/json; charset=utf-8":"text/html; charset=utf-8";t.statusCode=200;t.setHeader("Content-Type",n);t.end(e);return}if(!i){h=null}}const v=h&&h.isSymbolicLink();if(!h||!n.symlinks&&v){return s.sendError(f,t,u,a,s,n,{statusCode:404,code:"not_found",message:"The requested path could not be found"})}if(v){f=await s.realpath(f);h=await s.lstat(f)}const b={};if(e.headers.range&&h.size){const n=y(h.size,e.headers.range);if(typeof n==="object"&&n.type==="bytes"){const{start:e,end:r}=n[0];b.start=e;b.end=r;t.statusCode=206}else{t.statusCode=416;t.setHeader("Content-Range",`bytes */${h.size}`)}}let w=null;try{w=await s.createReadStream(f,b)}catch(e){return B(f,t,u,a,s,n,e)}const x=await O(s,n,a,f,h);if(b.start!==undefined&&b.end!==undefined){x["Content-Range"]=`bytes ${b.start}-${b.end}/${h.size}`;x["Content-Length"]=b.end-b.start+1}if(e.headers.range==null&&x.ETag&&x.ETag===e.headers["if-none-match"]){t.statusCode=304;t.end();return}t.writeHead(t.statusCode||200,x);w.pipe(t)})},7732:function(e,t,n){"use strict";var r=n(3459),i=n(3384),o=n(9498),a=n(597);var s=n(5807);var c=i.ucs2length;var u=n(6276);var l=o.Validation;e.exports=compile;function compile(e,t,n,f){var p=this,d=this._opts,h=[undefined],m={},v=[],g={},y=[],b={},w=[];t=t||{schema:e,refVal:h,refs:m};var x=checkCompiling.call(this,e,t,f);var k=this._compilations[x.index];if(x.compiling)return k.callValidate=callValidate;var j=this._formats;var S=this.RULES;try{var E=localCompile(e,t,n,f);k.validate=E;var _=k.callValidate;if(_){_.schema=E.schema;_.errors=null;_.refs=E.refs;_.refVal=E.refVal;_.root=E.root;_.$async=E.$async;if(d.sourceCode)_.source=E.source}return E}finally{endCompiling.call(this,e,t,f)}function callValidate(){var e=k.validate;var t=e.apply(this,arguments);callValidate.errors=e.errors;return t}function localCompile(e,n,a,f){var g=!n||n&&n.schema==e;if(n.schema!=t.schema)return compile.call(p,e,n,a,f);var b=e.$async===true;var x=s({isTop:true,schema:e,isRoot:g,baseId:f,root:n,schemaPath:"",errSchemaPath:"#",errorPath:'""',MissingRefError:o.MissingRef,RULES:S,validate:s,util:i,resolve:r,resolveRef:resolveRef,usePattern:usePattern,useDefault:useDefault,useCustomRule:useCustomRule,opts:d,formats:j,logger:p.logger,self:p});x=vars(h,refValCode)+vars(v,patternCode)+vars(y,defaultCode)+vars(w,customRuleCode)+x;if(d.processCode)x=d.processCode(x);var k;try{var E=new Function("self","RULES","formats","root","refVal","defaults","customRules","equal","ucs2length","ValidationError",x);k=E(p,S,j,t,h,y,w,u,c,l);h[0]=k}catch(e){p.logger.error("Error compiling schema, function code:",x);throw e}k.schema=e;k.errors=null;k.refs=m;k.refVal=h;k.root=g?k:n;if(b)k.$async=true;if(d.sourceCode===true){k.source={code:x,patterns:v,defaults:y}}return k}function resolveRef(e,i,o){i=r.url(e,i);var a=m[i];var s,c;if(a!==undefined){s=h[a];c="refVal["+a+"]";return resolvedRef(s,c)}if(!o&&t.refs){var u=t.refs[i];if(u!==undefined){s=t.refVal[u];c=addLocalRef(i,s);return resolvedRef(s,c)}}c=addLocalRef(i);var l=r.call(p,localCompile,t,i);if(l===undefined){var f=n&&n[i];if(f){l=r.inlineRef(f,d.inlineRefs)?f:compile.call(p,f,t,n,e)}}if(l===undefined){removeLocalRef(i)}else{replaceLocalRef(i,l);return resolvedRef(l,c)}}function addLocalRef(e,t){var n=h.length;h[n]=t;m[e]=n;return"refVal"+n}function removeLocalRef(e){delete m[e]}function replaceLocalRef(e,t){var n=m[e];h[n]=t}function resolvedRef(e,t){return typeof e=="object"||typeof e=="boolean"?{code:t,schema:e,inline:true}:{code:t,$async:e&&!!e.$async}}function usePattern(e){var t=g[e];if(t===undefined){t=g[e]=v.length;v[t]=e}return"pattern"+t}function useDefault(e){switch(typeof e){case"boolean":case"number":return""+e;case"string":return i.toQuotedString(e);case"object":if(e===null)return"null";var t=a(e);var n=b[t];if(n===undefined){n=b[t]=y.length;y[n]=e}return"default"+n}}function useCustomRule(e,t,n,r){if(p._opts.validateSchema!==false){var i=e.definition.dependencies;if(i&&!i.every(function(e){return Object.prototype.hasOwnProperty.call(n,e)}))throw new Error("parent schema must have all required keywords: "+i.join(","));var o=e.definition.validateSchema;if(o){var a=o(t);if(!a){var s="keyword schema is invalid: "+p.errorsText(o.errors);if(p._opts.validateSchema=="log")p.logger.error(s);else throw new Error(s)}}}var c=e.definition.compile,u=e.definition.inline,l=e.definition.macro;var f;if(c){f=c.call(p,t,n,r)}else if(l){f=l.call(p,t,n,r);if(d.validateSchema!==false)p.validateSchema(f,true)}else if(u){f=u.call(p,r,e.keyword,t,n)}else{f=e.definition.validate;if(!f)return}if(f===undefined)throw new Error('custom keyword "'+e.keyword+'"failed to compile');var h=w.length;w[h]=f;return{code:"customRule"+h,validate:f}}}function checkCompiling(e,t,n){var r=compIndex.call(this,e,t,n);if(r>=0)return{index:r,compiling:true};r=this._compilations.length;this._compilations[r]={schema:e,root:t,baseId:n};return{index:r,compiling:false}}function endCompiling(e,t,n){var r=compIndex.call(this,e,t,n);if(r>=0)this._compilations.splice(r,1)}function compIndex(e,t,n){for(var r=0;r<this._compilations.length;r++){var i=this._compilations[r];if(i.schema==e&&i.root==t&&i.baseId==n)return r}return-1}function patternCode(e,t){return"var pattern"+e+" = new RegExp("+i.toQuotedString(t[e])+");"}function defaultCode(e){return"var default"+e+" = defaults["+e+"];"}function refValCode(e,t){return t[e]===undefined?"":"var refVal"+e+" = refVal["+e+"];"}function customRuleCode(e){return"var customRule"+e+" = customRules["+e+"];"}function vars(e,t){if(!e.length)return"";var n="";for(var r=0;r<e.length;r++)n+=t(r,e);return n}},7733:function(e,t,n){"use strict";var r=/^[a-z_$][a-z0-9_$-]*$/i;var i=n(2023);var o=n(3282);e.exports={add:addKeyword,get:getKeyword,remove:removeKeyword,validate:validateKeyword};function addKeyword(e,t){var n=this.RULES;if(n.keywords[e])throw new Error("Keyword "+e+" is already defined");if(!r.test(e))throw new Error("Keyword "+e+" is not a valid identifier");if(t){this.validateKeyword(t,true);var o=t.type;if(Array.isArray(o)){for(var a=0;a<o.length;a++)_addRule(e,o[a],t)}else{_addRule(e,o,t)}var s=t.metaSchema;if(s){if(t.$data&&this._opts.$data){s={anyOf:[s,{$ref:"https://raw.githubusercontent.com/epoberezkin/ajv/master/lib/refs/data.json#"}]}}t.validateSchema=this.compile(s,true)}}n.keywords[e]=n.all[e]=true;function _addRule(e,t,r){var o;for(var a=0;a<n.length;a++){var s=n[a];if(s.type==t){o=s;break}}if(!o){o={type:t,rules:[]};n.push(o)}var c={keyword:e,definition:r,custom:true,code:i,implements:r.implements};o.rules.push(c);n.custom[e]=c}return this}function getKeyword(e){var t=this.RULES.custom[e];return t?t.definition:this.RULES.keywords[e]||false}function removeKeyword(e){var t=this.RULES;delete t.keywords[e];delete t.all[e];delete t.custom[e];for(var n=0;n<t.length;n++){var r=t[n].rules;for(var i=0;i<r.length;i++){if(r[i].keyword==e){r.splice(i,1);break}}}return this}function validateKeyword(e,t){validateKeyword.errors=null;var n=this._validateKeyword=this._validateKeyword||this.compile(o,true);if(n(e))return true;validateKeyword.errors=n.errors;if(t)throw new Error("custom keyword definition is invalid: "+this.errorsText(n.errors));else return false}},7737:function(e){"use strict";function formatHostname(e){return e.replace(/^\.*/,".").toLowerCase()}function parseNoProxyZone(e){e=e.trim().toLowerCase();var t=e.split(":",2);var n=formatHostname(t[0]);var r=t[1];var i=e.indexOf(":")>-1;return{hostname:n,port:r,hasPort:i}}function uriInNoProxy(e,t){var n=e.port||(e.protocol==="https:"?"443":"80");var r=formatHostname(e.hostname);var i=t.split(",");return i.map(parseNoProxyZone).some(function(e){var t=r.indexOf(e.hostname);var i=t>-1&&t===r.length-e.hostname.length;if(e.hasPort){return n===e.port&&i}return i})}function getProxyFromURI(e){var t=process.env.NO_PROXY||process.env.no_proxy||"";if(t==="*"){return null}if(t!==""&&uriInNoProxy(e,t)){return null}if(e.protocol==="http:"){return process.env.HTTP_PROXY||process.env.http_proxy||null}if(e.protocol==="https:"){return process.env.HTTPS_PROXY||process.env.https_proxy||process.env.HTTP_PROXY||process.env.http_proxy||null}return null}e.exports=getProxyFromURI},7750:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(1390);var i=n(3572);var o=function(){function BaseBackend(e){this._options=e;if(!this._options.dsn){r.logger.warn("No DSN provided, backend will not do anything.")}this._transport=this._setupTransport()}BaseBackend.prototype._setupTransport=function(){return new i.NoopTransport};BaseBackend.prototype.eventFromException=function(e,t){throw new r.SentryError("Backend has to implement `eventFromException` method")};BaseBackend.prototype.eventFromMessage=function(e,t,n){throw new r.SentryError("Backend has to implement `eventFromMessage` method")};BaseBackend.prototype.sendEvent=function(e){this._transport.sendEvent(e).catch(function(e){r.logger.error("Error while sending event: "+e)})};BaseBackend.prototype.getTransport=function(){return this._transport};return BaseBackend}();t.BaseBackend=o},7762:function(e){e.exports={"application/1d-interleaved-parityfec":{source:"iana"},"application/3gpdash-qoe-report+xml":{source:"iana",compressible:true},"application/3gpp-ims+xml":{source:"iana",compressible:true},"application/a2l":{source:"iana"},"application/activemessage":{source:"iana"},"application/activity+json":{source:"iana",compressible:true},"application/alto-costmap+json":{source:"iana",compressible:true},"application/alto-costmapfilter+json":{source:"iana",compressible:true},"application/alto-directory+json":{source:"iana",compressible:true},"application/alto-endpointcost+json":{source:"iana",compressible:true},"application/alto-endpointcostparams+json":{source:"iana",compressible:true},"application/alto-endpointprop+json":{source:"iana",compressible:true},"application/alto-endpointpropparams+json":{source:"iana",compressible:true},"application/alto-error+json":{source:"iana",compressible:true},"application/alto-networkmap+json":{source:"iana",compressible:true},"application/alto-networkmapfilter+json":{source:"iana",compressible:true},"application/aml":{source:"iana"},"application/andrew-inset":{source:"iana",extensions:["ez"]},"application/applefile":{source:"iana"},"application/applixware":{source:"apache",extensions:["aw"]},"application/atf":{source:"iana"},"application/atfx":{source:"iana"},"application/atom+xml":{source:"iana",compressible:true,extensions:["atom"]},"application/atomcat+xml":{source:"iana",compressible:true,extensions:["atomcat"]},"application/atomdeleted+xml":{source:"iana",compressible:true},"application/atomicmail":{source:"iana"},"application/atomsvc+xml":{source:"iana",compressible:true,extensions:["atomsvc"]},"application/atsc-dwd+xml":{source:"iana",compressible:true},"application/atsc-held+xml":{source:"iana",compressible:true},"application/atsc-rsat+xml":{source:"iana",compressible:true},"application/atxml":{source:"iana"},"application/auth-policy+xml":{source:"iana",compressible:true},"application/bacnet-xdd+zip":{source:"iana",compressible:false},"application/batch-smtp":{source:"iana"},"application/bdoc":{compressible:false,extensions:["bdoc"]},"application/beep+xml":{source:"iana",compressible:true},"application/calendar+json":{source:"iana",compressible:true},"application/calendar+xml":{source:"iana",compressible:true},"application/call-completion":{source:"iana"},"application/cals-1840":{source:"iana"},"application/cbor":{source:"iana"},"application/cccex":{source:"iana"},"application/ccmp+xml":{source:"iana",compressible:true},"application/ccxml+xml":{source:"iana",compressible:true,extensions:["ccxml"]},"application/cdfx+xml":{source:"iana",compressible:true},"application/cdmi-capability":{source:"iana",extensions:["cdmia"]},"application/cdmi-container":{source:"iana",extensions:["cdmic"]},"application/cdmi-domain":{source:"iana",extensions:["cdmid"]},"application/cdmi-object":{source:"iana",extensions:["cdmio"]},"application/cdmi-queue":{source:"iana",extensions:["cdmiq"]},"application/cdni":{source:"iana"},"application/cea":{source:"iana"},"application/cea-2018+xml":{source:"iana",compressible:true},"application/cellml+xml":{source:"iana",compressible:true},"application/cfw":{source:"iana"},"application/clue_info+xml":{source:"iana",compressible:true},"application/cms":{source:"iana"},"application/cnrp+xml":{source:"iana",compressible:true},"application/coap-group+json":{source:"iana",compressible:true},"application/coap-payload":{source:"iana"},"application/commonground":{source:"iana"},"application/conference-info+xml":{source:"iana",compressible:true},"application/cose":{source:"iana"},"application/cose-key":{source:"iana"},"application/cose-key-set":{source:"iana"},"application/cpl+xml":{source:"iana",compressible:true},"application/csrattrs":{source:"iana"},"application/csta+xml":{source:"iana",compressible:true},"application/cstadata+xml":{source:"iana",compressible:true},"application/csvm+json":{source:"iana",compressible:true},"application/cu-seeme":{source:"apache",extensions:["cu"]},"application/cwt":{source:"iana"},"application/cybercash":{source:"iana"},"application/dart":{compressible:true},"application/dash+xml":{source:"iana",compressible:true,extensions:["mpd"]},"application/dashdelta":{source:"iana"},"application/davmount+xml":{source:"iana",compressible:true,extensions:["davmount"]},"application/dca-rft":{source:"iana"},"application/dcd":{source:"iana"},"application/dec-dx":{source:"iana"},"application/dialog-info+xml":{source:"iana",compressible:true},"application/dicom":{source:"iana"},"application/dicom+json":{source:"iana",compressible:true},"application/dicom+xml":{source:"iana",compressible:true},"application/dii":{source:"iana"},"application/dit":{source:"iana"},"application/dns":{source:"iana"},"application/dns+json":{source:"iana",compressible:true},"application/dns-message":{source:"iana"},"application/docbook+xml":{source:"apache",compressible:true,extensions:["dbk"]},"application/dskpp+xml":{source:"iana",compressible:true},"application/dssc+der":{source:"iana",extensions:["dssc"]},"application/dssc+xml":{source:"iana",compressible:true,extensions:["xdssc"]},"application/dvcs":{source:"iana"},"application/ecmascript":{source:"iana",compressible:true,extensions:["ecma","es"]},"application/edi-consent":{source:"iana"},"application/edi-x12":{source:"iana",compressible:false},"application/edifact":{source:"iana",compressible:false},"application/efi":{source:"iana"},"application/emergencycalldata.comment+xml":{source:"iana",compressible:true},"application/emergencycalldata.control+xml":{source:"iana",compressible:true},"application/emergencycalldata.deviceinfo+xml":{source:"iana",compressible:true},"application/emergencycalldata.ecall.msd":{source:"iana"},"application/emergencycalldata.providerinfo+xml":{source:"iana",compressible:true},"application/emergencycalldata.serviceinfo+xml":{source:"iana",compressible:true},"application/emergencycalldata.subscriberinfo+xml":{source:"iana",compressible:true},"application/emergencycalldata.veds+xml":{source:"iana",compressible:true},"application/emma+xml":{source:"iana",compressible:true,extensions:["emma"]},"application/emotionml+xml":{source:"iana",compressible:true},"application/encaprtp":{source:"iana"},"application/epp+xml":{source:"iana",compressible:true},"application/epub+zip":{source:"iana",compressible:false,extensions:["epub"]},"application/eshop":{source:"iana"},"application/exi":{source:"iana",extensions:["exi"]},"application/expect-ct-report+json":{source:"iana",compressible:true},"application/fastinfoset":{source:"iana"},"application/fastsoap":{source:"iana"},"application/fdt+xml":{source:"iana",compressible:true},"application/fhir+json":{source:"iana",compressible:true},"application/fhir+xml":{source:"iana",compressible:true},"application/fido.trusted-apps+json":{compressible:true},"application/fits":{source:"iana"},"application/font-sfnt":{source:"iana"},"application/font-tdpfr":{source:"iana",extensions:["pfr"]},"application/font-woff":{source:"iana",compressible:false},"application/framework-attributes+xml":{source:"iana",compressible:true},"application/geo+json":{source:"iana",compressible:true,extensions:["geojson"]},"application/geo+json-seq":{source:"iana"},"application/geopackage+sqlite3":{source:"iana"},"application/geoxacml+xml":{source:"iana",compressible:true},"application/gltf-buffer":{source:"iana"},"application/gml+xml":{source:"iana",compressible:true,extensions:["gml"]},"application/gpx+xml":{source:"apache",compressible:true,extensions:["gpx"]},"application/gxf":{source:"apache",extensions:["gxf"]},"application/gzip":{source:"iana",compressible:false,extensions:["gz"]},"application/h224":{source:"iana"},"application/held+xml":{source:"iana",compressible:true},"application/hjson":{extensions:["hjson"]},"application/http":{source:"iana"},"application/hyperstudio":{source:"iana",extensions:["stk"]},"application/ibe-key-request+xml":{source:"iana",compressible:true},"application/ibe-pkg-reply+xml":{source:"iana",compressible:true},"application/ibe-pp-data":{source:"iana"},"application/iges":{source:"iana"},"application/im-iscomposing+xml":{source:"iana",compressible:true},"application/index":{source:"iana"},"application/index.cmd":{source:"iana"},"application/index.obj":{source:"iana"},"application/index.response":{source:"iana"},"application/index.vnd":{source:"iana"},"application/inkml+xml":{source:"iana",compressible:true,extensions:["ink","inkml"]},"application/iotp":{source:"iana"},"application/ipfix":{source:"iana",extensions:["ipfix"]},"application/ipp":{source:"iana"},"application/isup":{source:"iana"},"application/its+xml":{source:"iana",compressible:true},"application/java-archive":{source:"apache",compressible:false,extensions:["jar","war","ear"]},"application/java-serialized-object":{source:"apache",compressible:false,extensions:["ser"]},"application/java-vm":{source:"apache",compressible:false,extensions:["class"]},"application/javascript":{source:"iana",charset:"UTF-8",compressible:true,extensions:["js","mjs"]},"application/jf2feed+json":{source:"iana",compressible:true},"application/jose":{source:"iana"},"application/jose+json":{source:"iana",compressible:true},"application/jrd+json":{source:"iana",compressible:true},"application/json":{source:"iana",charset:"UTF-8",compressible:true,extensions:["json","map"]},"application/json-patch+json":{source:"iana",compressible:true},"application/json-seq":{source:"iana"},"application/json5":{extensions:["json5"]},"application/jsonml+json":{source:"apache",compressible:true,extensions:["jsonml"]},"application/jwk+json":{source:"iana",compressible:true},"application/jwk-set+json":{source:"iana",compressible:true},"application/jwt":{source:"iana"},"application/kpml-request+xml":{source:"iana",compressible:true},"application/kpml-response+xml":{source:"iana",compressible:true},"application/ld+json":{source:"iana",compressible:true,extensions:["jsonld"]},"application/lgr+xml":{source:"iana",compressible:true},"application/link-format":{source:"iana"},"application/load-control+xml":{source:"iana",compressible:true},"application/lost+xml":{source:"iana",compressible:true,extensions:["lostxml"]},"application/lostsync+xml":{source:"iana",compressible:true},"application/lxf":{source:"iana"},"application/mac-binhex40":{source:"iana",extensions:["hqx"]},"application/mac-compactpro":{source:"apache",extensions:["cpt"]},"application/macwriteii":{source:"iana"},"application/mads+xml":{source:"iana",compressible:true,extensions:["mads"]},"application/manifest+json":{charset:"UTF-8",compressible:true,extensions:["webmanifest"]},"application/marc":{source:"iana",extensions:["mrc"]},"application/marcxml+xml":{source:"iana",compressible:true,extensions:["mrcx"]},"application/mathematica":{source:"iana",extensions:["ma","nb","mb"]},"application/mathml+xml":{source:"iana",compressible:true,extensions:["mathml"]},"application/mathml-content+xml":{source:"iana",compressible:true},"application/mathml-presentation+xml":{source:"iana",compressible:true},"application/mbms-associated-procedure-description+xml":{source:"iana",compressible:true},"application/mbms-deregister+xml":{source:"iana",compressible:true},"application/mbms-envelope+xml":{source:"iana",compressible:true},"application/mbms-msk+xml":{source:"iana",compressible:true},"application/mbms-msk-response+xml":{source:"iana",compressible:true},"application/mbms-protection-description+xml":{source:"iana",compressible:true},"application/mbms-reception-report+xml":{source:"iana",compressible:true},"application/mbms-register+xml":{source:"iana",compressible:true},"application/mbms-register-response+xml":{source:"iana",compressible:true},"application/mbms-schedule+xml":{source:"iana",compressible:true},"application/mbms-user-service-description+xml":{source:"iana",compressible:true},"application/mbox":{source:"iana",extensions:["mbox"]},"application/media-policy-dataset+xml":{source:"iana",compressible:true},"application/media_control+xml":{source:"iana",compressible:true},"application/mediaservercontrol+xml":{source:"iana",compressible:true,extensions:["mscml"]},"application/merge-patch+json":{source:"iana",compressible:true},"application/metalink+xml":{source:"apache",compressible:true,extensions:["metalink"]},"application/metalink4+xml":{source:"iana",compressible:true,extensions:["meta4"]},"application/mets+xml":{source:"iana",compressible:true,extensions:["mets"]},"application/mf4":{source:"iana"},"application/mikey":{source:"iana"},"application/mmt-aei+xml":{source:"iana",compressible:true},"application/mmt-usd+xml":{source:"iana",compressible:true},"application/mods+xml":{source:"iana",compressible:true,extensions:["mods"]},"application/moss-keys":{source:"iana"},"application/moss-signature":{source:"iana"},"application/mosskey-data":{source:"iana"},"application/mosskey-request":{source:"iana"},"application/mp21":{source:"iana",extensions:["m21","mp21"]},"application/mp4":{source:"iana",extensions:["mp4s","m4p"]},"application/mpeg4-generic":{source:"iana"},"application/mpeg4-iod":{source:"iana"},"application/mpeg4-iod-xmt":{source:"iana"},"application/mrb-consumer+xml":{source:"iana",compressible:true},"application/mrb-publish+xml":{source:"iana",compressible:true},"application/msc-ivr+xml":{source:"iana",compressible:true},"application/msc-mixer+xml":{source:"iana",compressible:true},"application/msword":{source:"iana",compressible:false,extensions:["doc","dot"]},"application/mud+json":{source:"iana",compressible:true},"application/mxf":{source:"iana",extensions:["mxf"]},"application/n-quads":{source:"iana",extensions:["nq"]},"application/n-triples":{source:"iana",extensions:["nt"]},"application/nasdata":{source:"iana"},"application/news-checkgroups":{source:"iana"},"application/news-groupinfo":{source:"iana"},"application/news-transmission":{source:"iana"},"application/nlsml+xml":{source:"iana",compressible:true},"application/node":{source:"iana"},"application/nss":{source:"iana"},"application/ocsp-request":{source:"iana"},"application/ocsp-response":{source:"iana"},"application/octet-stream":{source:"iana",compressible:false,extensions:["bin","dms","lrf","mar","so","dist","distz","pkg","bpk","dump","elc","deploy","exe","dll","deb","dmg","iso","img","msi","msp","msm","buffer"]},"application/oda":{source:"iana",extensions:["oda"]},"application/odm+xml":{source:"iana",compressible:true},"application/odx":{source:"iana"},"application/oebps-package+xml":{source:"iana",compressible:true,extensions:["opf"]},"application/ogg":{source:"iana",compressible:false,extensions:["ogx"]},"application/omdoc+xml":{source:"apache",compressible:true,extensions:["omdoc"]},"application/onenote":{source:"apache",extensions:["onetoc","onetoc2","onetmp","onepkg"]},"application/oscore":{source:"iana"},"application/oxps":{source:"iana",extensions:["oxps"]},"application/p2p-overlay+xml":{source:"iana",compressible:true},"application/parityfec":{source:"iana"},"application/passport":{source:"iana"},"application/patch-ops-error+xml":{source:"iana",compressible:true,extensions:["xer"]},"application/pdf":{source:"iana",compressible:false,extensions:["pdf"]},"application/pdx":{source:"iana"},"application/pem-certificate-chain":{source:"iana"},"application/pgp-encrypted":{source:"iana",compressible:false,extensions:["pgp"]},"application/pgp-keys":{source:"iana"},"application/pgp-signature":{source:"iana",extensions:["asc","sig"]},"application/pics-rules":{source:"apache",extensions:["prf"]},"application/pidf+xml":{source:"iana",compressible:true},"application/pidf-diff+xml":{source:"iana",compressible:true},"application/pkcs10":{source:"iana",extensions:["p10"]},"application/pkcs12":{source:"iana"},"application/pkcs7-mime":{source:"iana",extensions:["p7m","p7c"]},"application/pkcs7-signature":{source:"iana",extensions:["p7s"]},"application/pkcs8":{source:"iana",extensions:["p8"]},"application/pkcs8-encrypted":{source:"iana"},"application/pkix-attr-cert":{source:"iana",extensions:["ac"]},"application/pkix-cert":{source:"iana",extensions:["cer"]},"application/pkix-crl":{source:"iana",extensions:["crl"]},"application/pkix-pkipath":{source:"iana",extensions:["pkipath"]},"application/pkixcmp":{source:"iana",extensions:["pki"]},"application/pls+xml":{source:"iana",compressible:true,extensions:["pls"]},"application/poc-settings+xml":{source:"iana",compressible:true},"application/postscript":{source:"iana",compressible:true,extensions:["ai","eps","ps"]},"application/ppsp-tracker+json":{source:"iana",compressible:true},"application/problem+json":{source:"iana",compressible:true},"application/problem+xml":{source:"iana",compressible:true},"application/provenance+xml":{source:"iana",compressible:true},"application/prs.alvestrand.titrax-sheet":{source:"iana"},"application/prs.cww":{source:"iana",extensions:["cww"]},"application/prs.hpub+zip":{source:"iana",compressible:false},"application/prs.nprend":{source:"iana"},"application/prs.plucker":{source:"iana"},"application/prs.rdf-xml-crypt":{source:"iana"},"application/prs.xsf+xml":{source:"iana",compressible:true},"application/pskc+xml":{source:"iana",compressible:true,extensions:["pskcxml"]},"application/qsig":{source:"iana"},"application/raml+yaml":{compressible:true,extensions:["raml"]},"application/raptorfec":{source:"iana"},"application/rdap+json":{source:"iana",compressible:true},"application/rdf+xml":{source:"iana",compressible:true,extensions:["rdf","owl"]},"application/reginfo+xml":{source:"iana",compressible:true,extensions:["rif"]},"application/relax-ng-compact-syntax":{source:"iana",extensions:["rnc"]},"application/remote-printing":{source:"iana"},"application/reputon+json":{source:"iana",compressible:true},"application/resource-lists+xml":{source:"iana",compressible:true,extensions:["rl"]},"application/resource-lists-diff+xml":{source:"iana",compressible:true,extensions:["rld"]},"application/rfc+xml":{source:"iana",compressible:true},"application/riscos":{source:"iana"},"application/rlmi+xml":{source:"iana",compressible:true},"application/rls-services+xml":{source:"iana",compressible:true,extensions:["rs"]},"application/route-apd+xml":{source:"iana",compressible:true},"application/route-s-tsid+xml":{source:"iana",compressible:true},"application/route-usd+xml":{source:"iana",compressible:true},"application/rpki-ghostbusters":{source:"iana",extensions:["gbr"]},"application/rpki-manifest":{source:"iana",extensions:["mft"]},"application/rpki-publication":{source:"iana"},"application/rpki-roa":{source:"iana",extensions:["roa"]},"application/rpki-updown":{source:"iana"},"application/rsd+xml":{source:"apache",compressible:true,extensions:["rsd"]},"application/rss+xml":{source:"apache",compressible:true,extensions:["rss"]},"application/rtf":{source:"iana",compressible:true,extensions:["rtf"]},"application/rtploopback":{source:"iana"},"application/rtx":{source:"iana"},"application/samlassertion+xml":{source:"iana",compressible:true},"application/samlmetadata+xml":{source:"iana",compressible:true},"application/sbml+xml":{source:"iana",compressible:true,extensions:["sbml"]},"application/scaip+xml":{source:"iana",compressible:true},"application/scim+json":{source:"iana",compressible:true},"application/scvp-cv-request":{source:"iana",extensions:["scq"]},"application/scvp-cv-response":{source:"iana",extensions:["scs"]},"application/scvp-vp-request":{source:"iana",extensions:["spq"]},"application/scvp-vp-response":{source:"iana",extensions:["spp"]},"application/sdp":{source:"iana",extensions:["sdp"]},"application/secevent+jwt":{source:"iana"},"application/senml+cbor":{source:"iana"},"application/senml+json":{source:"iana",compressible:true},"application/senml+xml":{source:"iana",compressible:true},"application/senml-exi":{source:"iana"},"application/sensml+cbor":{source:"iana"},"application/sensml+json":{source:"iana",compressible:true},"application/sensml+xml":{source:"iana",compressible:true},"application/sensml-exi":{source:"iana"},"application/sep+xml":{source:"iana",compressible:true},"application/sep-exi":{source:"iana"},"application/session-info":{source:"iana"},"application/set-payment":{source:"iana"},"application/set-payment-initiation":{source:"iana",extensions:["setpay"]},"application/set-registration":{source:"iana"},"application/set-registration-initiation":{source:"iana",extensions:["setreg"]},"application/sgml":{source:"iana"},"application/sgml-open-catalog":{source:"iana"},"application/shf+xml":{source:"iana",compressible:true,extensions:["shf"]},"application/sieve":{source:"iana",extensions:["siv","sieve"]},"application/simple-filter+xml":{source:"iana",compressible:true},"application/simple-message-summary":{source:"iana"},"application/simplesymbolcontainer":{source:"iana"},"application/slate":{source:"iana"},"application/smil":{source:"iana"},"application/smil+xml":{source:"iana",compressible:true,extensions:["smi","smil"]},"application/smpte336m":{source:"iana"},"application/soap+fastinfoset":{source:"iana"},"application/soap+xml":{source:"iana",compressible:true},"application/sparql-query":{source:"iana",extensions:["rq"]},"application/sparql-results+xml":{source:"iana",compressible:true,extensions:["srx"]},"application/spirits-event+xml":{source:"iana",compressible:true},"application/sql":{source:"iana"},"application/srgs":{source:"iana",extensions:["gram"]},"application/srgs+xml":{source:"iana",compressible:true,extensions:["grxml"]},"application/sru+xml":{source:"iana",compressible:true,extensions:["sru"]},"application/ssdl+xml":{source:"apache",compressible:true,extensions:["ssdl"]},"application/ssml+xml":{source:"iana",compressible:true,extensions:["ssml"]},"application/stix+json":{source:"iana",compressible:true},"application/tamp-apex-update":{source:"iana"},"application/tamp-apex-update-confirm":{source:"iana"},"application/tamp-community-update":{source:"iana"},"application/tamp-community-update-confirm":{source:"iana"},"application/tamp-error":{source:"iana"},"application/tamp-sequence-adjust":{source:"iana"},"application/tamp-sequence-adjust-confirm":{source:"iana"},"application/tamp-status-query":{source:"iana"},"application/tamp-status-response":{source:"iana"},"application/tamp-update":{source:"iana"},"application/tamp-update-confirm":{source:"iana"},"application/tar":{compressible:true},"application/taxii+json":{source:"iana",compressible:true},"application/tei+xml":{source:"iana",compressible:true,extensions:["tei","teicorpus"]},"application/tetra_isi":{source:"iana"},"application/thraud+xml":{source:"iana",compressible:true,extensions:["tfi"]},"application/timestamp-query":{source:"iana"},"application/timestamp-reply":{source:"iana"},"application/timestamped-data":{source:"iana",extensions:["tsd"]},"application/tlsrpt+gzip":{source:"iana"},"application/tlsrpt+json":{source:"iana",compressible:true},"application/tnauthlist":{source:"iana"},"application/trickle-ice-sdpfrag":{source:"iana"},"application/trig":{source:"iana"},"application/ttml+xml":{source:"iana",compressible:true},"application/tve-trigger":{source:"iana"},"application/tzif":{source:"iana"},"application/tzif-leap":{source:"iana"},"application/ulpfec":{source:"iana"},"application/urc-grpsheet+xml":{source:"iana",compressible:true},"application/urc-ressheet+xml":{source:"iana",compressible:true},"application/urc-targetdesc+xml":{source:"iana",compressible:true},"application/urc-uisocketdesc+xml":{source:"iana",compressible:true},"application/vcard+json":{source:"iana",compressible:true},"application/vcard+xml":{source:"iana",compressible:true},"application/vemmi":{source:"iana"},"application/vividence.scriptfile":{source:"apache"},"application/vnd.1000minds.decision-model+xml":{source:"iana",compressible:true},"application/vnd.3gpp-prose+xml":{source:"iana",compressible:true},"application/vnd.3gpp-prose-pc3ch+xml":{source:"iana",compressible:true},"application/vnd.3gpp-v2x-local-service-information":{source:"iana"},"application/vnd.3gpp.access-transfer-events+xml":{source:"iana",compressible:true},"application/vnd.3gpp.bsf+xml":{source:"iana",compressible:true},"application/vnd.3gpp.gmop+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mc-signalling-ear":{source:"iana"},"application/vnd.3gpp.mcdata-affiliation-command+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcdata-info+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcdata-payload":{source:"iana"},"application/vnd.3gpp.mcdata-service-config+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcdata-signalling":{source:"iana"},"application/vnd.3gpp.mcdata-ue-config+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcdata-user-profile+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcptt-affiliation-command+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcptt-floor-request+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcptt-info+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcptt-location-info+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcptt-mbms-usage-info+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcptt-service-config+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcptt-signed+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcptt-ue-config+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcptt-ue-init-config+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcptt-user-profile+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcvideo-affiliation-command+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcvideo-affiliation-info+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcvideo-location-info+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcvideo-mbms-usage-info+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcvideo-service-config+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcvideo-transmission-request+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcvideo-ue-config+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mcvideo-user-profile+xml":{source:"iana",compressible:true},"application/vnd.3gpp.mid-call+xml":{source:"iana",compressible:true},"application/vnd.3gpp.pic-bw-large":{source:"iana",extensions:["plb"]},"application/vnd.3gpp.pic-bw-small":{source:"iana",extensions:["psb"]},"application/vnd.3gpp.pic-bw-var":{source:"iana",extensions:["pvb"]},"application/vnd.3gpp.sms":{source:"iana"},"application/vnd.3gpp.sms+xml":{source:"iana",compressible:true},"application/vnd.3gpp.srvcc-ext+xml":{source:"iana",compressible:true},"application/vnd.3gpp.srvcc-info+xml":{source:"iana",compressible:true},"application/vnd.3gpp.state-and-event-info+xml":{source:"iana",compressible:true},"application/vnd.3gpp.ussd+xml":{source:"iana",compressible:true},"application/vnd.3gpp2.bcmcsinfo+xml":{source:"iana",compressible:true},"application/vnd.3gpp2.sms":{source:"iana"},"application/vnd.3gpp2.tcap":{source:"iana",extensions:["tcap"]},"application/vnd.3lightssoftware.imagescal":{source:"iana"},"application/vnd.3m.post-it-notes":{source:"iana",extensions:["pwn"]},"application/vnd.accpac.simply.aso":{source:"iana",extensions:["aso"]},"application/vnd.accpac.simply.imp":{source:"iana",extensions:["imp"]},"application/vnd.acucobol":{source:"iana",extensions:["acu"]},"application/vnd.acucorp":{source:"iana",extensions:["atc","acutc"]},"application/vnd.adobe.air-application-installer-package+zip":{source:"apache",compressible:false,extensions:["air"]},"application/vnd.adobe.flash.movie":{source:"iana"},"application/vnd.adobe.formscentral.fcdt":{source:"iana",extensions:["fcdt"]},"application/vnd.adobe.fxp":{source:"iana",extensions:["fxp","fxpl"]},"application/vnd.adobe.partial-upload":{source:"iana"},"application/vnd.adobe.xdp+xml":{source:"iana",compressible:true,extensions:["xdp"]},"application/vnd.adobe.xfdf":{source:"iana",extensions:["xfdf"]},"application/vnd.aether.imp":{source:"iana"},"application/vnd.afpc.afplinedata":{source:"iana"},"application/vnd.afpc.modca":{source:"iana"},"application/vnd.ah-barcode":{source:"iana"},"application/vnd.ahead.space":{source:"iana",extensions:["ahead"]},"application/vnd.airzip.filesecure.azf":{source:"iana",extensions:["azf"]},"application/vnd.airzip.filesecure.azs":{source:"iana",extensions:["azs"]},"application/vnd.amadeus+json":{source:"iana",compressible:true},"application/vnd.amazon.ebook":{source:"apache",extensions:["azw"]},"application/vnd.amazon.mobi8-ebook":{source:"iana"},"application/vnd.americandynamics.acc":{source:"iana",extensions:["acc"]},"application/vnd.amiga.ami":{source:"iana",extensions:["ami"]},"application/vnd.amundsen.maze+xml":{source:"iana",compressible:true},"application/vnd.android.package-archive":{source:"apache",compressible:false,extensions:["apk"]},"application/vnd.anki":{source:"iana"},"application/vnd.anser-web-certificate-issue-initiation":{source:"iana",extensions:["cii"]},"application/vnd.anser-web-funds-transfer-initiation":{source:"apache",extensions:["fti"]},"application/vnd.antix.game-component":{source:"iana",extensions:["atx"]},"application/vnd.apache.thrift.binary":{source:"iana"},"application/vnd.apache.thrift.compact":{source:"iana"},"application/vnd.apache.thrift.json":{source:"iana"},"application/vnd.api+json":{source:"iana",compressible:true},"application/vnd.apothekende.reservation+json":{source:"iana",compressible:true},"application/vnd.apple.installer+xml":{source:"iana",compressible:true,extensions:["mpkg"]},"application/vnd.apple.keynote":{source:"iana",extensions:["keynote"]},"application/vnd.apple.mpegurl":{source:"iana",extensions:["m3u8"]},"application/vnd.apple.numbers":{source:"iana",extensions:["numbers"]},"application/vnd.apple.pages":{source:"iana",extensions:["pages"]},"application/vnd.apple.pkpass":{compressible:false,extensions:["pkpass"]},"application/vnd.arastra.swi":{source:"iana"},"application/vnd.aristanetworks.swi":{source:"iana",extensions:["swi"]},"application/vnd.artisan+json":{source:"iana",compressible:true},"application/vnd.artsquare":{source:"iana"},"application/vnd.astraea-software.iota":{source:"iana",extensions:["iota"]},"application/vnd.audiograph":{source:"iana",extensions:["aep"]},"application/vnd.autopackage":{source:"iana"},"application/vnd.avalon+json":{source:"iana",compressible:true},"application/vnd.avistar+xml":{source:"iana",compressible:true},"application/vnd.balsamiq.bmml+xml":{source:"iana",compressible:true},"application/vnd.balsamiq.bmpr":{source:"iana"},"application/vnd.banana-accounting":{source:"iana"},"application/vnd.bbf.usp.msg":{source:"iana"},"application/vnd.bbf.usp.msg+json":{source:"iana",compressible:true},"application/vnd.bekitzur-stech+json":{source:"iana",compressible:true},"application/vnd.bint.med-content":{source:"iana"},"application/vnd.biopax.rdf+xml":{source:"iana",compressible:true},"application/vnd.blink-idb-value-wrapper":{source:"iana"},"application/vnd.blueice.multipass":{source:"iana",extensions:["mpm"]},"application/vnd.bluetooth.ep.oob":{source:"iana"},"application/vnd.bluetooth.le.oob":{source:"iana"},"application/vnd.bmi":{source:"iana",extensions:["bmi"]},"application/vnd.businessobjects":{source:"iana",extensions:["rep"]},"application/vnd.byu.uapi+json":{source:"iana",compressible:true},"application/vnd.cab-jscript":{source:"iana"},"application/vnd.canon-cpdl":{source:"iana"},"application/vnd.canon-lips":{source:"iana"},"application/vnd.capasystems-pg+json":{source:"iana",compressible:true},"application/vnd.cendio.thinlinc.clientconf":{source:"iana"},"application/vnd.century-systems.tcp_stream":{source:"iana"},"application/vnd.chemdraw+xml":{source:"iana",compressible:true,extensions:["cdxml"]},"application/vnd.chess-pgn":{source:"iana"},"application/vnd.chipnuts.karaoke-mmd":{source:"iana",extensions:["mmd"]},"application/vnd.cinderella":{source:"iana",extensions:["cdy"]},"application/vnd.cirpack.isdn-ext":{source:"iana"},"application/vnd.citationstyles.style+xml":{source:"iana",compressible:true,extensions:["csl"]},"application/vnd.claymore":{source:"iana",extensions:["cla"]},"application/vnd.cloanto.rp9":{source:"iana",extensions:["rp9"]},"application/vnd.clonk.c4group":{source:"iana",extensions:["c4g","c4d","c4f","c4p","c4u"]},"application/vnd.cluetrust.cartomobile-config":{source:"iana",extensions:["c11amc"]},"application/vnd.cluetrust.cartomobile-config-pkg":{source:"iana",extensions:["c11amz"]},"application/vnd.coffeescript":{source:"iana"},"application/vnd.collabio.xodocuments.document":{source:"iana"},"application/vnd.collabio.xodocuments.document-template":{source:"iana"},"application/vnd.collabio.xodocuments.presentation":{source:"iana"},"application/vnd.collabio.xodocuments.presentation-template":{source:"iana"},"application/vnd.collabio.xodocuments.spreadsheet":{source:"iana"},"application/vnd.collabio.xodocuments.spreadsheet-template":{source:"iana"},"application/vnd.collection+json":{source:"iana",compressible:true},"application/vnd.collection.doc+json":{source:"iana",compressible:true},"application/vnd.collection.next+json":{source:"iana",compressible:true},"application/vnd.comicbook+zip":{source:"iana",compressible:false},"application/vnd.comicbook-rar":{source:"iana"},"application/vnd.commerce-battelle":{source:"iana"},"application/vnd.commonspace":{source:"iana",extensions:["csp"]},"application/vnd.contact.cmsg":{source:"iana",extensions:["cdbcmsg"]},"application/vnd.coreos.ignition+json":{source:"iana",compressible:true},"application/vnd.cosmocaller":{source:"iana",extensions:["cmc"]},"application/vnd.crick.clicker":{source:"iana",extensions:["clkx"]},"application/vnd.crick.clicker.keyboard":{source:"iana",extensions:["clkk"]},"application/vnd.crick.clicker.palette":{source:"iana",extensions:["clkp"]},"application/vnd.crick.clicker.template":{source:"iana",extensions:["clkt"]},"application/vnd.crick.clicker.wordbank":{source:"iana",extensions:["clkw"]},"application/vnd.criticaltools.wbs+xml":{source:"iana",compressible:true,extensions:["wbs"]},"application/vnd.ctc-posml":{source:"iana",extensions:["pml"]},"application/vnd.ctct.ws+xml":{source:"iana",compressible:true},"application/vnd.cups-pdf":{source:"iana"},"application/vnd.cups-postscript":{source:"iana"},"application/vnd.cups-ppd":{source:"iana",extensions:["ppd"]},"application/vnd.cups-raster":{source:"iana"},"application/vnd.cups-raw":{source:"iana"},"application/vnd.curl":{source:"iana"},"application/vnd.curl.car":{source:"apache",extensions:["car"]},"application/vnd.curl.pcurl":{source:"apache",extensions:["pcurl"]},"application/vnd.cyan.dean.root+xml":{source:"iana",compressible:true},"application/vnd.cybank":{source:"iana"},"application/vnd.d2l.coursepackage1p0+zip":{source:"iana",compressible:false},"application/vnd.dart":{source:"iana",compressible:true,extensions:["dart"]},"application/vnd.data-vision.rdz":{source:"iana",extensions:["rdz"]},"application/vnd.datapackage+json":{source:"iana",compressible:true},"application/vnd.dataresource+json":{source:"iana",compressible:true},"application/vnd.debian.binary-package":{source:"iana"},"application/vnd.dece.data":{source:"iana",extensions:["uvf","uvvf","uvd","uvvd"]},"application/vnd.dece.ttml+xml":{source:"iana",compressible:true,extensions:["uvt","uvvt"]},"application/vnd.dece.unspecified":{source:"iana",extensions:["uvx","uvvx"]},"application/vnd.dece.zip":{source:"iana",extensions:["uvz","uvvz"]},"application/vnd.denovo.fcselayout-link":{source:"iana",extensions:["fe_launch"]},"application/vnd.desmume.movie":{source:"iana"},"application/vnd.dir-bi.plate-dl-nosuffix":{source:"iana"},"application/vnd.dm.delegation+xml":{source:"iana",compressible:true},"application/vnd.dna":{source:"iana",extensions:["dna"]},"application/vnd.document+json":{source:"iana",compressible:true},"application/vnd.dolby.mlp":{source:"apache",extensions:["mlp"]},"application/vnd.dolby.mobile.1":{source:"iana"},"application/vnd.dolby.mobile.2":{source:"iana"},"application/vnd.doremir.scorecloud-binary-document":{source:"iana"},"application/vnd.dpgraph":{source:"iana",extensions:["dpg"]},"application/vnd.dreamfactory":{source:"iana",extensions:["dfac"]},"application/vnd.drive+json":{source:"iana",compressible:true},"application/vnd.ds-keypoint":{source:"apache",extensions:["kpxx"]},"application/vnd.dtg.local":{source:"iana"},"application/vnd.dtg.local.flash":{source:"iana"},"application/vnd.dtg.local.html":{source:"iana"},"application/vnd.dvb.ait":{source:"iana",extensions:["ait"]},"application/vnd.dvb.dvbj":{source:"iana"},"application/vnd.dvb.esgcontainer":{source:"iana"},"application/vnd.dvb.ipdcdftnotifaccess":{source:"iana"},"application/vnd.dvb.ipdcesgaccess":{source:"iana"},"application/vnd.dvb.ipdcesgaccess2":{source:"iana"},"application/vnd.dvb.ipdcesgpdd":{source:"iana"},"application/vnd.dvb.ipdcroaming":{source:"iana"},"application/vnd.dvb.iptv.alfec-base":{source:"iana"},"application/vnd.dvb.iptv.alfec-enhancement":{source:"iana"},"application/vnd.dvb.notif-aggregate-root+xml":{source:"iana",compressible:true},"application/vnd.dvb.notif-container+xml":{source:"iana",compressible:true},"application/vnd.dvb.notif-generic+xml":{source:"iana",compressible:true},"application/vnd.dvb.notif-ia-msglist+xml":{source:"iana",compressible:true},"application/vnd.dvb.notif-ia-registration-request+xml":{source:"iana",compressible:true},"application/vnd.dvb.notif-ia-registration-response+xml":{source:"iana",compressible:true},"application/vnd.dvb.notif-init+xml":{source:"iana",compressible:true},"application/vnd.dvb.pfr":{source:"iana"},"application/vnd.dvb.service":{source:"iana",extensions:["svc"]},"application/vnd.dxr":{source:"iana"},"application/vnd.dynageo":{source:"iana",extensions:["geo"]},"application/vnd.dzr":{source:"iana"},"application/vnd.easykaraoke.cdgdownload":{source:"iana"},"application/vnd.ecdis-update":{source:"iana"},"application/vnd.ecip.rlp":{source:"iana"},"application/vnd.ecowin.chart":{source:"iana",extensions:["mag"]},"application/vnd.ecowin.filerequest":{source:"iana"},"application/vnd.ecowin.fileupdate":{source:"iana"},"application/vnd.ecowin.series":{source:"iana"},"application/vnd.ecowin.seriesrequest":{source:"iana"},"application/vnd.ecowin.seriesupdate":{source:"iana"},"application/vnd.efi.img":{source:"iana"},"application/vnd.efi.iso":{source:"iana"},"application/vnd.emclient.accessrequest+xml":{source:"iana",compressible:true},"application/vnd.enliven":{source:"iana",extensions:["nml"]},"application/vnd.enphase.envoy":{source:"iana"},"application/vnd.eprints.data+xml":{source:"iana",compressible:true},"application/vnd.epson.esf":{source:"iana",extensions:["esf"]},"application/vnd.epson.msf":{source:"iana",extensions:["msf"]},"application/vnd.epson.quickanime":{source:"iana",extensions:["qam"]},"application/vnd.epson.salt":{source:"iana",extensions:["slt"]},"application/vnd.epson.ssf":{source:"iana",extensions:["ssf"]},"application/vnd.ericsson.quickcall":{source:"iana"},"application/vnd.espass-espass+zip":{source:"iana",compressible:false},"application/vnd.eszigno3+xml":{source:"iana",compressible:true,extensions:["es3","et3"]},"application/vnd.etsi.aoc+xml":{source:"iana",compressible:true},"application/vnd.etsi.asic-e+zip":{source:"iana",compressible:false},"application/vnd.etsi.asic-s+zip":{source:"iana",compressible:false},"application/vnd.etsi.cug+xml":{source:"iana",compressible:true},"application/vnd.etsi.iptvcommand+xml":{source:"iana",compressible:true},"application/vnd.etsi.iptvdiscovery+xml":{source:"iana",compressible:true},"application/vnd.etsi.iptvprofile+xml":{source:"iana",compressible:true},"application/vnd.etsi.iptvsad-bc+xml":{source:"iana",compressible:true},"application/vnd.etsi.iptvsad-cod+xml":{source:"iana",compressible:true},"application/vnd.etsi.iptvsad-npvr+xml":{source:"iana",compressible:true},"application/vnd.etsi.iptvservice+xml":{source:"iana",compressible:true},"application/vnd.etsi.iptvsync+xml":{source:"iana",compressible:true},"application/vnd.etsi.iptvueprofile+xml":{source:"iana",compressible:true},"application/vnd.etsi.mcid+xml":{source:"iana",compressible:true},"application/vnd.etsi.mheg5":{source:"iana"},"application/vnd.etsi.overload-control-policy-dataset+xml":{source:"iana",compressible:true},"application/vnd.etsi.pstn+xml":{source:"iana",compressible:true},"application/vnd.etsi.sci+xml":{source:"iana",compressible:true},"application/vnd.etsi.simservs+xml":{source:"iana",compressible:true},"application/vnd.etsi.timestamp-token":{source:"iana"},"application/vnd.etsi.tsl+xml":{source:"iana",compressible:true},"application/vnd.etsi.tsl.der":{source:"iana"},"application/vnd.eudora.data":{source:"iana"},"application/vnd.evolv.ecig.profile":{source:"iana"},"application/vnd.evolv.ecig.settings":{source:"iana"},"application/vnd.evolv.ecig.theme":{source:"iana"},"application/vnd.exstream-empower+zip":{source:"iana",compressible:false},"application/vnd.exstream-package":{source:"iana"},"application/vnd.ezpix-album":{source:"iana",extensions:["ez2"]},"application/vnd.ezpix-package":{source:"iana",extensions:["ez3"]},"application/vnd.f-secure.mobile":{source:"iana"},"application/vnd.fastcopy-disk-image":{source:"iana"},"application/vnd.fdf":{source:"iana",extensions:["fdf"]},"application/vnd.fdsn.mseed":{source:"iana",extensions:["mseed"]},"application/vnd.fdsn.seed":{source:"iana",extensions:["seed","dataless"]},"application/vnd.ffsns":{source:"iana"},"application/vnd.filmit.zfc":{source:"iana"},"application/vnd.fints":{source:"iana"},"application/vnd.firemonkeys.cloudcell":{source:"iana"},"application/vnd.flographit":{source:"iana",extensions:["gph"]},"application/vnd.fluxtime.clip":{source:"iana",extensions:["ftc"]},"application/vnd.font-fontforge-sfd":{source:"iana"},"application/vnd.framemaker":{source:"iana",extensions:["fm","frame","maker","book"]},"application/vnd.frogans.fnc":{source:"iana",extensions:["fnc"]},"application/vnd.frogans.ltf":{source:"iana",extensions:["ltf"]},"application/vnd.fsc.weblaunch":{source:"iana",extensions:["fsc"]},"application/vnd.fujitsu.oasys":{source:"iana",extensions:["oas"]},"application/vnd.fujitsu.oasys2":{source:"iana",extensions:["oa2"]},"application/vnd.fujitsu.oasys3":{source:"iana",extensions:["oa3"]},"application/vnd.fujitsu.oasysgp":{source:"iana",extensions:["fg5"]},"application/vnd.fujitsu.oasysprs":{source:"iana",extensions:["bh2"]},"application/vnd.fujixerox.art-ex":{source:"iana"},"application/vnd.fujixerox.art4":{source:"iana"},"application/vnd.fujixerox.ddd":{source:"iana",extensions:["ddd"]},"application/vnd.fujixerox.docuworks":{source:"iana",extensions:["xdw"]},"application/vnd.fujixerox.docuworks.binder":{source:"iana",extensions:["xbd"]},"application/vnd.fujixerox.docuworks.container":{source:"iana"},"application/vnd.fujixerox.hbpl":{source:"iana"},"application/vnd.fut-misnet":{source:"iana"},"application/vnd.futoin+cbor":{source:"iana"},"application/vnd.futoin+json":{source:"iana",compressible:true},"application/vnd.fuzzysheet":{source:"iana",extensions:["fzs"]},"application/vnd.genomatix.tuxedo":{source:"iana",extensions:["txd"]},"application/vnd.geo+json":{source:"iana",compressible:true},"application/vnd.geocube+xml":{source:"iana",compressible:true},"application/vnd.geogebra.file":{source:"iana",extensions:["ggb"]},"application/vnd.geogebra.tool":{source:"iana",extensions:["ggt"]},"application/vnd.geometry-explorer":{source:"iana",extensions:["gex","gre"]},"application/vnd.geonext":{source:"iana",extensions:["gxt"]},"application/vnd.geoplan":{source:"iana",extensions:["g2w"]},"application/vnd.geospace":{source:"iana",extensions:["g3w"]},"application/vnd.gerber":{source:"iana"},"application/vnd.globalplatform.card-content-mgt":{source:"iana"},"application/vnd.globalplatform.card-content-mgt-response":{source:"iana"},"application/vnd.gmx":{source:"iana",extensions:["gmx"]},"application/vnd.google-apps.document":{compressible:false,extensions:["gdoc"]},"application/vnd.google-apps.presentation":{compressible:false,extensions:["gslides"]},"application/vnd.google-apps.spreadsheet":{compressible:false,extensions:["gsheet"]},"application/vnd.google-earth.kml+xml":{source:"iana",compressible:true,extensions:["kml"]},"application/vnd.google-earth.kmz":{source:"iana",compressible:false,extensions:["kmz"]},"application/vnd.gov.sk.e-form+xml":{source:"iana",compressible:true},"application/vnd.gov.sk.e-form+zip":{source:"iana",compressible:false},"application/vnd.gov.sk.xmldatacontainer+xml":{source:"iana",compressible:true},"application/vnd.grafeq":{source:"iana",extensions:["gqf","gqs"]},"application/vnd.gridmp":{source:"iana"},"application/vnd.groove-account":{source:"iana",extensions:["gac"]},"application/vnd.groove-help":{source:"iana",extensions:["ghf"]},"application/vnd.groove-identity-message":{source:"iana",extensions:["gim"]},"application/vnd.groove-injector":{source:"iana",extensions:["grv"]},"application/vnd.groove-tool-message":{source:"iana",extensions:["gtm"]},"application/vnd.groove-tool-template":{source:"iana",extensions:["tpl"]},"application/vnd.groove-vcard":{source:"iana",extensions:["vcg"]},"application/vnd.hal+json":{source:"iana",compressible:true},"application/vnd.hal+xml":{source:"iana",compressible:true,extensions:["hal"]},"application/vnd.handheld-entertainment+xml":{source:"iana",compressible:true,extensions:["zmm"]},"application/vnd.hbci":{source:"iana",extensions:["hbci"]},"application/vnd.hc+json":{source:"iana",compressible:true},"application/vnd.hcl-bireports":{source:"iana"},"application/vnd.hdt":{source:"iana"},"application/vnd.heroku+json":{source:"iana",compressible:true},"application/vnd.hhe.lesson-player":{source:"iana",extensions:["les"]},"application/vnd.hp-hpgl":{source:"iana",extensions:["hpgl"]},"application/vnd.hp-hpid":{source:"iana",extensions:["hpid"]},"application/vnd.hp-hps":{source:"iana",extensions:["hps"]},"application/vnd.hp-jlyt":{source:"iana",extensions:["jlt"]},"application/vnd.hp-pcl":{source:"iana",extensions:["pcl"]},"application/vnd.hp-pclxl":{source:"iana",extensions:["pclxl"]},"application/vnd.httphone":{source:"iana"},"application/vnd.hydrostatix.sof-data":{source:"iana",extensions:["sfd-hdstx"]},"application/vnd.hyper+json":{source:"iana",compressible:true},"application/vnd.hyper-item+json":{source:"iana",compressible:true},"application/vnd.hyperdrive+json":{source:"iana",compressible:true},"application/vnd.hzn-3d-crossword":{source:"iana"},"application/vnd.ibm.afplinedata":{source:"iana"},"application/vnd.ibm.electronic-media":{source:"iana"},"application/vnd.ibm.minipay":{source:"iana",extensions:["mpy"]},"application/vnd.ibm.modcap":{source:"iana",extensions:["afp","listafp","list3820"]},"application/vnd.ibm.rights-management":{source:"iana",extensions:["irm"]},"application/vnd.ibm.secure-container":{source:"iana",extensions:["sc"]},"application/vnd.iccprofile":{source:"iana",extensions:["icc","icm"]},"application/vnd.ieee.1905":{source:"iana"},"application/vnd.igloader":{source:"iana",extensions:["igl"]},"application/vnd.imagemeter.folder+zip":{source:"iana",compressible:false},"application/vnd.imagemeter.image+zip":{source:"iana",compressible:false},"application/vnd.immervision-ivp":{source:"iana",extensions:["ivp"]},"application/vnd.immervision-ivu":{source:"iana",extensions:["ivu"]},"application/vnd.ims.imsccv1p1":{source:"iana"},"application/vnd.ims.imsccv1p2":{source:"iana"},"application/vnd.ims.imsccv1p3":{source:"iana"},"application/vnd.ims.lis.v2.result+json":{source:"iana",compressible:true},"application/vnd.ims.lti.v2.toolconsumerprofile+json":{source:"iana",compressible:true},"application/vnd.ims.lti.v2.toolproxy+json":{source:"iana",compressible:true},"application/vnd.ims.lti.v2.toolproxy.id+json":{source:"iana",compressible:true},"application/vnd.ims.lti.v2.toolsettings+json":{source:"iana",compressible:true},"application/vnd.ims.lti.v2.toolsettings.simple+json":{source:"iana",compressible:true},"application/vnd.informedcontrol.rms+xml":{source:"iana",compressible:true},"application/vnd.informix-visionary":{source:"iana"},"application/vnd.infotech.project":{source:"iana"},"application/vnd.infotech.project+xml":{source:"iana",compressible:true},"application/vnd.innopath.wamp.notification":{source:"iana"},"application/vnd.insors.igm":{source:"iana",extensions:["igm"]},"application/vnd.intercon.formnet":{source:"iana",extensions:["xpw","xpx"]},"application/vnd.intergeo":{source:"iana",extensions:["i2g"]},"application/vnd.intertrust.digibox":{source:"iana"},"application/vnd.intertrust.nncp":{source:"iana"},"application/vnd.intu.qbo":{source:"iana",extensions:["qbo"]},"application/vnd.intu.qfx":{source:"iana",extensions:["qfx"]},"application/vnd.iptc.g2.catalogitem+xml":{source:"iana",compressible:true},"application/vnd.iptc.g2.conceptitem+xml":{source:"iana",compressible:true},"application/vnd.iptc.g2.knowledgeitem+xml":{source:"iana",compressible:true},"application/vnd.iptc.g2.newsitem+xml":{source:"iana",compressible:true},"application/vnd.iptc.g2.newsmessage+xml":{source:"iana",compressible:true},"application/vnd.iptc.g2.packageitem+xml":{source:"iana",compressible:true},"application/vnd.iptc.g2.planningitem+xml":{source:"iana",compressible:true},"application/vnd.ipunplugged.rcprofile":{source:"iana",extensions:["rcprofile"]},"application/vnd.irepository.package+xml":{source:"iana",compressible:true,extensions:["irp"]},"application/vnd.is-xpr":{source:"iana",extensions:["xpr"]},"application/vnd.isac.fcs":{source:"iana",extensions:["fcs"]},"application/vnd.jam":{source:"iana",extensions:["jam"]},"application/vnd.japannet-directory-service":{source:"iana"},"application/vnd.japannet-jpnstore-wakeup":{source:"iana"},"application/vnd.japannet-payment-wakeup":{source:"iana"},"application/vnd.japannet-registration":{source:"iana"},"application/vnd.japannet-registration-wakeup":{source:"iana"},"application/vnd.japannet-setstore-wakeup":{source:"iana"},"application/vnd.japannet-verification":{source:"iana"},"application/vnd.japannet-verification-wakeup":{source:"iana"},"application/vnd.jcp.javame.midlet-rms":{source:"iana",extensions:["rms"]},"application/vnd.jisp":{source:"iana",extensions:["jisp"]},"application/vnd.joost.joda-archive":{source:"iana",extensions:["joda"]},"application/vnd.jsk.isdn-ngn":{source:"iana"},"application/vnd.kahootz":{source:"iana",extensions:["ktz","ktr"]},"application/vnd.kde.karbon":{source:"iana",extensions:["karbon"]},"application/vnd.kde.kchart":{source:"iana",extensions:["chrt"]},"application/vnd.kde.kformula":{source:"iana",extensions:["kfo"]},"application/vnd.kde.kivio":{source:"iana",extensions:["flw"]},"application/vnd.kde.kontour":{source:"iana",extensions:["kon"]},"application/vnd.kde.kpresenter":{source:"iana",extensions:["kpr","kpt"]},"application/vnd.kde.kspread":{source:"iana",extensions:["ksp"]},"application/vnd.kde.kword":{source:"iana",extensions:["kwd","kwt"]},"application/vnd.kenameaapp":{source:"iana",extensions:["htke"]},"application/vnd.kidspiration":{source:"iana",extensions:["kia"]},"application/vnd.kinar":{source:"iana",extensions:["kne","knp"]},"application/vnd.koan":{source:"iana",extensions:["skp","skd","skt","skm"]},"application/vnd.kodak-descriptor":{source:"iana",extensions:["sse"]},"application/vnd.las.las+json":{source:"iana",compressible:true},"application/vnd.las.las+xml":{source:"iana",compressible:true,extensions:["lasxml"]},"application/vnd.leap+json":{source:"iana",compressible:true},"application/vnd.liberty-request+xml":{source:"iana",compressible:true},"application/vnd.llamagraphics.life-balance.desktop":{source:"iana",extensions:["lbd"]},"application/vnd.llamagraphics.life-balance.exchange+xml":{source:"iana",compressible:true,extensions:["lbe"]},"application/vnd.lotus-1-2-3":{source:"iana",extensions:["123"]},"application/vnd.lotus-approach":{source:"iana",extensions:["apr"]},"application/vnd.lotus-freelance":{source:"iana",extensions:["pre"]},"application/vnd.lotus-notes":{source:"iana",extensions:["nsf"]},"application/vnd.lotus-organizer":{source:"iana",extensions:["org"]},"application/vnd.lotus-screencam":{source:"iana",extensions:["scm"]},"application/vnd.lotus-wordpro":{source:"iana",extensions:["lwp"]},"application/vnd.macports.portpkg":{source:"iana",extensions:["portpkg"]},"application/vnd.mapbox-vector-tile":{source:"iana"},"application/vnd.marlin.drm.actiontoken+xml":{source:"iana",compressible:true},"application/vnd.marlin.drm.conftoken+xml":{source:"iana",compressible:true},"application/vnd.marlin.drm.license+xml":{source:"iana",compressible:true},"application/vnd.marlin.drm.mdcf":{source:"iana"},"application/vnd.mason+json":{source:"iana",compressible:true},"application/vnd.maxmind.maxmind-db":{source:"iana"},"application/vnd.mcd":{source:"iana",extensions:["mcd"]},"application/vnd.medcalcdata":{source:"iana",extensions:["mc1"]},"application/vnd.mediastation.cdkey":{source:"iana",extensions:["cdkey"]},"application/vnd.meridian-slingshot":{source:"iana"},"application/vnd.mfer":{source:"iana",extensions:["mwf"]},"application/vnd.mfmp":{source:"iana",extensions:["mfm"]},"application/vnd.micro+json":{source:"iana",compressible:true},"application/vnd.micrografx.flo":{source:"iana",extensions:["flo"]},"application/vnd.micrografx.igx":{source:"iana",extensions:["igx"]},"application/vnd.microsoft.portable-executable":{source:"iana"},"application/vnd.microsoft.windows.thumbnail-cache":{source:"iana"},"application/vnd.miele+json":{source:"iana",compressible:true},"application/vnd.mif":{source:"iana",extensions:["mif"]},"application/vnd.minisoft-hp3000-save":{source:"iana"},"application/vnd.mitsubishi.misty-guard.trustweb":{source:"iana"},"application/vnd.mobius.daf":{source:"iana",extensions:["daf"]},"application/vnd.mobius.dis":{source:"iana",extensions:["dis"]},"application/vnd.mobius.mbk":{source:"iana",extensions:["mbk"]},"application/vnd.mobius.mqy":{source:"iana",extensions:["mqy"]},"application/vnd.mobius.msl":{source:"iana",extensions:["msl"]},"application/vnd.mobius.plc":{source:"iana",extensions:["plc"]},"application/vnd.mobius.txf":{source:"iana",extensions:["txf"]},"application/vnd.mophun.application":{source:"iana",extensions:["mpn"]},"application/vnd.mophun.certificate":{source:"iana",extensions:["mpc"]},"application/vnd.motorola.flexsuite":{source:"iana"},"application/vnd.motorola.flexsuite.adsi":{source:"iana"},"application/vnd.motorola.flexsuite.fis":{source:"iana"},"application/vnd.motorola.flexsuite.gotap":{source:"iana"},"application/vnd.motorola.flexsuite.kmr":{source:"iana"},"application/vnd.motorola.flexsuite.ttc":{source:"iana"},"application/vnd.motorola.flexsuite.wem":{source:"iana"},"application/vnd.motorola.iprm":{source:"iana"},"application/vnd.mozilla.xul+xml":{source:"iana",compressible:true,extensions:["xul"]},"application/vnd.ms-3mfdocument":{source:"iana"},"application/vnd.ms-artgalry":{source:"iana",extensions:["cil"]},"application/vnd.ms-asf":{source:"iana"},"application/vnd.ms-cab-compressed":{source:"iana",extensions:["cab"]},"application/vnd.ms-color.iccprofile":{source:"apache"},"application/vnd.ms-excel":{source:"iana",compressible:false,extensions:["xls","xlm","xla","xlc","xlt","xlw"]},"application/vnd.ms-excel.addin.macroenabled.12":{source:"iana",extensions:["xlam"]},"application/vnd.ms-excel.sheet.binary.macroenabled.12":{source:"iana",extensions:["xlsb"]},"application/vnd.ms-excel.sheet.macroenabled.12":{source:"iana",extensions:["xlsm"]},"application/vnd.ms-excel.template.macroenabled.12":{source:"iana",extensions:["xltm"]},"application/vnd.ms-fontobject":{source:"iana",compressible:true,extensions:["eot"]},"application/vnd.ms-htmlhelp":{source:"iana",extensions:["chm"]},"application/vnd.ms-ims":{source:"iana",extensions:["ims"]},"application/vnd.ms-lrm":{source:"iana",extensions:["lrm"]},"application/vnd.ms-office.activex+xml":{source:"iana",compressible:true},"application/vnd.ms-officetheme":{source:"iana",extensions:["thmx"]},"application/vnd.ms-opentype":{source:"apache",compressible:true},"application/vnd.ms-outlook":{compressible:false,extensions:["msg"]},"application/vnd.ms-package.obfuscated-opentype":{source:"apache"},"application/vnd.ms-pki.seccat":{source:"apache",extensions:["cat"]},"application/vnd.ms-pki.stl":{source:"apache",extensions:["stl"]},"application/vnd.ms-playready.initiator+xml":{source:"iana",compressible:true},"application/vnd.ms-powerpoint":{source:"iana",compressible:false,extensions:["ppt","pps","pot"]},"application/vnd.ms-powerpoint.addin.macroenabled.12":{source:"iana",extensions:["ppam"]},"application/vnd.ms-powerpoint.presentation.macroenabled.12":{source:"iana",extensions:["pptm"]},"application/vnd.ms-powerpoint.slide.macroenabled.12":{source:"iana",extensions:["sldm"]},"application/vnd.ms-powerpoint.slideshow.macroenabled.12":{source:"iana",extensions:["ppsm"]},"application/vnd.ms-powerpoint.template.macroenabled.12":{source:"iana",extensions:["potm"]},"application/vnd.ms-printdevicecapabilities+xml":{source:"iana",compressible:true},"application/vnd.ms-printing.printticket+xml":{source:"apache",compressible:true},"application/vnd.ms-printschematicket+xml":{source:"iana",compressible:true},"application/vnd.ms-project":{source:"iana",extensions:["mpp","mpt"]},"application/vnd.ms-tnef":{source:"iana"},"application/vnd.ms-windows.devicepairing":{source:"iana"},"application/vnd.ms-windows.nwprinting.oob":{source:"iana"},"application/vnd.ms-windows.printerpairing":{source:"iana"},"application/vnd.ms-windows.wsd.oob":{source:"iana"},"application/vnd.ms-wmdrm.lic-chlg-req":{source:"iana"},"application/vnd.ms-wmdrm.lic-resp":{source:"iana"},"application/vnd.ms-wmdrm.meter-chlg-req":{source:"iana"},"application/vnd.ms-wmdrm.meter-resp":{source:"iana"},"application/vnd.ms-word.document.macroenabled.12":{source:"iana",extensions:["docm"]},"application/vnd.ms-word.template.macroenabled.12":{source:"iana",extensions:["dotm"]},"application/vnd.ms-works":{source:"iana",extensions:["wps","wks","wcm","wdb"]},"application/vnd.ms-wpl":{source:"iana",extensions:["wpl"]},"application/vnd.ms-xpsdocument":{source:"iana",compressible:false,extensions:["xps"]},"application/vnd.msa-disk-image":{source:"iana"},"application/vnd.mseq":{source:"iana",extensions:["mseq"]},"application/vnd.msign":{source:"iana"},"application/vnd.multiad.creator":{source:"iana"},"application/vnd.multiad.creator.cif":{source:"iana"},"application/vnd.music-niff":{source:"iana"},"application/vnd.musician":{source:"iana",extensions:["mus"]},"application/vnd.muvee.style":{source:"iana",extensions:["msty"]},"application/vnd.mynfc":{source:"iana",extensions:["taglet"]},"application/vnd.ncd.control":{source:"iana"},"application/vnd.ncd.reference":{source:"iana"},"application/vnd.nearst.inv+json":{source:"iana",compressible:true},"application/vnd.nervana":{source:"iana"},"application/vnd.netfpx":{source:"iana"},"application/vnd.neurolanguage.nlu":{source:"iana",extensions:["nlu"]},"application/vnd.nimn":{source:"iana"},"application/vnd.nintendo.nitro.rom":{source:"iana"},"application/vnd.nintendo.snes.rom":{source:"iana"},"application/vnd.nitf":{source:"iana",extensions:["ntf","nitf"]},"application/vnd.noblenet-directory":{source:"iana",extensions:["nnd"]},"application/vnd.noblenet-sealer":{source:"iana",extensions:["nns"]},"application/vnd.noblenet-web":{source:"iana",extensions:["nnw"]},"application/vnd.nokia.catalogs":{source:"iana"},"application/vnd.nokia.conml+wbxml":{source:"iana"},"application/vnd.nokia.conml+xml":{source:"iana",compressible:true},"application/vnd.nokia.iptv.config+xml":{source:"iana",compressible:true},"application/vnd.nokia.isds-radio-presets":{source:"iana"},"application/vnd.nokia.landmark+wbxml":{source:"iana"},"application/vnd.nokia.landmark+xml":{source:"iana",compressible:true},"application/vnd.nokia.landmarkcollection+xml":{source:"iana",compressible:true},"application/vnd.nokia.n-gage.ac+xml":{source:"iana",compressible:true},"application/vnd.nokia.n-gage.data":{source:"iana",extensions:["ngdat"]},"application/vnd.nokia.n-gage.symbian.install":{source:"iana",extensions:["n-gage"]},"application/vnd.nokia.ncd":{source:"iana"},"application/vnd.nokia.pcd+wbxml":{source:"iana"},"application/vnd.nokia.pcd+xml":{source:"iana",compressible:true},"application/vnd.nokia.radio-preset":{source:"iana",extensions:["rpst"]},"application/vnd.nokia.radio-presets":{source:"iana",extensions:["rpss"]},"application/vnd.novadigm.edm":{source:"iana",extensions:["edm"]},"application/vnd.novadigm.edx":{source:"iana",extensions:["edx"]},"application/vnd.novadigm.ext":{source:"iana",extensions:["ext"]},"application/vnd.ntt-local.content-share":{source:"iana"},"application/vnd.ntt-local.file-transfer":{source:"iana"},"application/vnd.ntt-local.ogw_remote-access":{source:"iana"},"application/vnd.ntt-local.sip-ta_remote":{source:"iana"},"application/vnd.ntt-local.sip-ta_tcp_stream":{source:"iana"},"application/vnd.oasis.opendocument.chart":{source:"iana",extensions:["odc"]},"application/vnd.oasis.opendocument.chart-template":{source:"iana",extensions:["otc"]},"application/vnd.oasis.opendocument.database":{source:"iana",extensions:["odb"]},"application/vnd.oasis.opendocument.formula":{source:"iana",extensions:["odf"]},"application/vnd.oasis.opendocument.formula-template":{source:"iana",extensions:["odft"]},"application/vnd.oasis.opendocument.graphics":{source:"iana",compressible:false,extensions:["odg"]},"application/vnd.oasis.opendocument.graphics-template":{source:"iana",extensions:["otg"]},"application/vnd.oasis.opendocument.image":{source:"iana",extensions:["odi"]},"application/vnd.oasis.opendocument.image-template":{source:"iana",extensions:["oti"]},"application/vnd.oasis.opendocument.presentation":{source:"iana",compressible:false,extensions:["odp"]},"application/vnd.oasis.opendocument.presentation-template":{source:"iana",extensions:["otp"]},"application/vnd.oasis.opendocument.spreadsheet":{source:"iana",compressible:false,extensions:["ods"]},"application/vnd.oasis.opendocument.spreadsheet-template":{source:"iana",extensions:["ots"]},"application/vnd.oasis.opendocument.text":{source:"iana",compressible:false,extensions:["odt"]},"application/vnd.oasis.opendocument.text-master":{source:"iana",extensions:["odm"]},"application/vnd.oasis.opendocument.text-template":{source:"iana",extensions:["ott"]},"application/vnd.oasis.opendocument.text-web":{source:"iana",extensions:["oth"]},"application/vnd.obn":{source:"iana"},"application/vnd.ocf+cbor":{source:"iana"},"application/vnd.oftn.l10n+json":{source:"iana",compressible:true},"application/vnd.oipf.contentaccessdownload+xml":{source:"iana",compressible:true},"application/vnd.oipf.contentaccessstreaming+xml":{source:"iana",compressible:true},"application/vnd.oipf.cspg-hexbinary":{source:"iana"},"application/vnd.oipf.dae.svg+xml":{source:"iana",compressible:true},"application/vnd.oipf.dae.xhtml+xml":{source:"iana",compressible:true},"application/vnd.oipf.mippvcontrolmessage+xml":{source:"iana",compressible:true},"application/vnd.oipf.pae.gem":{source:"iana"},"application/vnd.oipf.spdiscovery+xml":{source:"iana",compressible:true},"application/vnd.oipf.spdlist+xml":{source:"iana",compressible:true},"application/vnd.oipf.ueprofile+xml":{source:"iana",compressible:true},"application/vnd.oipf.userprofile+xml":{source:"iana",compressible:true},"application/vnd.olpc-sugar":{source:"iana",extensions:["xo"]},"application/vnd.oma-scws-config":{source:"iana"},"application/vnd.oma-scws-http-request":{source:"iana"},"application/vnd.oma-scws-http-response":{source:"iana"},"application/vnd.oma.bcast.associated-procedure-parameter+xml":{source:"iana",compressible:true},"application/vnd.oma.bcast.drm-trigger+xml":{source:"iana",compressible:true},"application/vnd.oma.bcast.imd+xml":{source:"iana",compressible:true},"application/vnd.oma.bcast.ltkm":{source:"iana"},"application/vnd.oma.bcast.notification+xml":{source:"iana",compressible:true},"application/vnd.oma.bcast.provisioningtrigger":{source:"iana"},"application/vnd.oma.bcast.sgboot":{source:"iana"},"application/vnd.oma.bcast.sgdd+xml":{source:"iana",compressible:true},"application/vnd.oma.bcast.sgdu":{source:"iana"},"application/vnd.oma.bcast.simple-symbol-container":{source:"iana"},"application/vnd.oma.bcast.smartcard-trigger+xml":{source:"iana",compressible:true},"application/vnd.oma.bcast.sprov+xml":{source:"iana",compressible:true},"application/vnd.oma.bcast.stkm":{source:"iana"},"application/vnd.oma.cab-address-book+xml":{source:"iana",compressible:true},"application/vnd.oma.cab-feature-handler+xml":{source:"iana",compressible:true},"application/vnd.oma.cab-pcc+xml":{source:"iana",compressible:true},"application/vnd.oma.cab-subs-invite+xml":{source:"iana",compressible:true},"application/vnd.oma.cab-user-prefs+xml":{source:"iana",compressible:true},"application/vnd.oma.dcd":{source:"iana"},"application/vnd.oma.dcdc":{source:"iana"},"application/vnd.oma.dd2+xml":{source:"iana",compressible:true,extensions:["dd2"]},"application/vnd.oma.drm.risd+xml":{source:"iana",compressible:true},"application/vnd.oma.group-usage-list+xml":{source:"iana",compressible:true},"application/vnd.oma.lwm2m+json":{source:"iana",compressible:true},"application/vnd.oma.lwm2m+tlv":{source:"iana"},"application/vnd.oma.pal+xml":{source:"iana",compressible:true},"application/vnd.oma.poc.detailed-progress-report+xml":{source:"iana",compressible:true},"application/vnd.oma.poc.final-report+xml":{source:"iana",compressible:true},"application/vnd.oma.poc.groups+xml":{source:"iana",compressible:true},"application/vnd.oma.poc.invocation-descriptor+xml":{source:"iana",compressible:true},"application/vnd.oma.poc.optimized-progress-report+xml":{source:"iana",compressible:true},"application/vnd.oma.push":{source:"iana"},"application/vnd.oma.scidm.messages+xml":{source:"iana",compressible:true},"application/vnd.oma.xcap-directory+xml":{source:"iana",compressible:true},"application/vnd.omads-email+xml":{source:"iana",compressible:true},"application/vnd.omads-file+xml":{source:"iana",compressible:true},"application/vnd.omads-folder+xml":{source:"iana",compressible:true},"application/vnd.omaloc-supl-init":{source:"iana"},"application/vnd.onepager":{source:"iana"},"application/vnd.onepagertamp":{source:"iana"},"application/vnd.onepagertamx":{source:"iana"},"application/vnd.onepagertat":{source:"iana"},"application/vnd.onepagertatp":{source:"iana"},"application/vnd.onepagertatx":{source:"iana"},"application/vnd.openblox.game+xml":{source:"iana",compressible:true},"application/vnd.openblox.game-binary":{source:"iana"},"application/vnd.openeye.oeb":{source:"iana"},"application/vnd.openofficeorg.extension":{source:"apache",extensions:["oxt"]},"application/vnd.openstreetmap.data+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.custom-properties+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.customxmlproperties+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.drawing+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.drawingml.chart+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.extended-properties+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.comments+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.presentation":{source:"iana",compressible:false,extensions:["pptx"]},"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.presprops+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.slide":{source:"iana",extensions:["sldx"]},"application/vnd.openxmlformats-officedocument.presentationml.slide+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.slideshow":{source:"iana",extensions:["ppsx"]},"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.tags+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.template":{source:"iana",extensions:["potx"]},"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet":{source:"iana",compressible:false,extensions:["xlsx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.template":{source:"iana",extensions:["xltx"]},"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.theme+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.themeoverride+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.vmldrawing":{source:"iana"},"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.wordprocessingml.document":{source:"iana",compressible:false,extensions:["docx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.wordprocessingml.template":{source:"iana",extensions:["dotx"]},"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-package.core-properties+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml":{source:"iana",compressible:true},"application/vnd.openxmlformats-package.relationships+xml":{source:"iana",compressible:true},"application/vnd.oracle.resource+json":{source:"iana",compressible:true},"application/vnd.orange.indata":{source:"iana"},"application/vnd.osa.netdeploy":{source:"iana"},"application/vnd.osgeo.mapguide.package":{source:"iana",extensions:["mgp"]},"application/vnd.osgi.bundle":{source:"iana"},"application/vnd.osgi.dp":{source:"iana",extensions:["dp"]},"application/vnd.osgi.subsystem":{source:"iana",extensions:["esa"]},"application/vnd.otps.ct-kip+xml":{source:"iana",compressible:true},"application/vnd.oxli.countgraph":{source:"iana"},"application/vnd.pagerduty+json":{source:"iana",compressible:true},"application/vnd.palm":{source:"iana",extensions:["pdb","pqa","oprc"]},"application/vnd.panoply":{source:"iana"},"application/vnd.paos.xml":{source:"iana"},"application/vnd.patentdive":{source:"iana"},"application/vnd.patientecommsdoc":{source:"iana"},"application/vnd.pawaafile":{source:"iana",extensions:["paw"]},"application/vnd.pcos":{source:"iana"},"application/vnd.pg.format":{source:"iana",extensions:["str"]},"application/vnd.pg.osasli":{source:"iana",extensions:["ei6"]},"application/vnd.piaccess.application-licence":{source:"iana"},"application/vnd.picsel":{source:"iana",extensions:["efif"]},"application/vnd.pmi.widget":{source:"iana",extensions:["wg"]},"application/vnd.poc.group-advertisement+xml":{source:"iana",compressible:true},"application/vnd.pocketlearn":{source:"iana",extensions:["plf"]},"application/vnd.powerbuilder6":{source:"iana",extensions:["pbd"]},"application/vnd.powerbuilder6-s":{source:"iana"},"application/vnd.powerbuilder7":{source:"iana"},"application/vnd.powerbuilder7-s":{source:"iana"},"application/vnd.powerbuilder75":{source:"iana"},"application/vnd.powerbuilder75-s":{source:"iana"},"application/vnd.preminet":{source:"iana"},"application/vnd.previewsystems.box":{source:"iana",extensions:["box"]},"application/vnd.proteus.magazine":{source:"iana",extensions:["mgz"]},"application/vnd.psfs":{source:"iana"},"application/vnd.publishare-delta-tree":{source:"iana",extensions:["qps"]},"application/vnd.pvi.ptid1":{source:"iana",extensions:["ptid"]},"application/vnd.pwg-multiplexed":{source:"iana"},"application/vnd.pwg-xhtml-print+xml":{source:"iana",compressible:true},"application/vnd.qualcomm.brew-app-res":{source:"iana"},"application/vnd.quarantainenet":{source:"iana"},"application/vnd.quark.quarkxpress":{source:"iana",extensions:["qxd","qxt","qwd","qwt","qxl","qxb"]},"application/vnd.quobject-quoxdocument":{source:"iana"},"application/vnd.radisys.moml+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml-audit+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml-audit-conf+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml-audit-conn+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml-audit-dialog+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml-audit-stream+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml-conf+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml-dialog+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml-dialog-base+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml-dialog-fax-detect+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml-dialog-fax-sendrecv+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml-dialog-group+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml-dialog-speech+xml":{source:"iana",compressible:true},"application/vnd.radisys.msml-dialog-transform+xml":{source:"iana",compressible:true},"application/vnd.rainstor.data":{source:"iana"},"application/vnd.rapid":{source:"iana"},"application/vnd.rar":{source:"iana"},"application/vnd.realvnc.bed":{source:"iana",extensions:["bed"]},"application/vnd.recordare.musicxml":{source:"iana",extensions:["mxl"]},"application/vnd.recordare.musicxml+xml":{source:"iana",compressible:true,extensions:["musicxml"]},"application/vnd.renlearn.rlprint":{source:"iana"},"application/vnd.restful+json":{source:"iana",compressible:true},"application/vnd.rig.cryptonote":{source:"iana",extensions:["cryptonote"]},"application/vnd.rim.cod":{source:"apache",extensions:["cod"]},"application/vnd.rn-realmedia":{source:"apache",extensions:["rm"]},"application/vnd.rn-realmedia-vbr":{source:"apache",extensions:["rmvb"]},"application/vnd.route66.link66+xml":{source:"iana",compressible:true,extensions:["link66"]},"application/vnd.rs-274x":{source:"iana"},"application/vnd.ruckus.download":{source:"iana"},"application/vnd.s3sms":{source:"iana"},"application/vnd.sailingtracker.track":{source:"iana",extensions:["st"]},"application/vnd.sbm.cid":{source:"iana"},"application/vnd.sbm.mid2":{source:"iana"},"application/vnd.scribus":{source:"iana"},"application/vnd.sealed.3df":{source:"iana"},"application/vnd.sealed.csf":{source:"iana"},"application/vnd.sealed.doc":{source:"iana"},"application/vnd.sealed.eml":{source:"iana"},"application/vnd.sealed.mht":{source:"iana"},"application/vnd.sealed.net":{source:"iana"},"application/vnd.sealed.ppt":{source:"iana"},"application/vnd.sealed.tiff":{source:"iana"},"application/vnd.sealed.xls":{source:"iana"},"application/vnd.sealedmedia.softseal.html":{source:"iana"},"application/vnd.sealedmedia.softseal.pdf":{source:"iana"},"application/vnd.seemail":{source:"iana",extensions:["see"]},"application/vnd.sema":{source:"iana",extensions:["sema"]},"application/vnd.semd":{source:"iana",extensions:["semd"]},"application/vnd.semf":{source:"iana",extensions:["semf"]},"application/vnd.shana.informed.formdata":{source:"iana",extensions:["ifm"]},"application/vnd.shana.informed.formtemplate":{source:"iana",extensions:["itp"]},"application/vnd.shana.informed.interchange":{source:"iana",extensions:["iif"]},"application/vnd.shana.informed.package":{source:"iana",extensions:["ipk"]},"application/vnd.shootproof+json":{source:"iana",compressible:true},"application/vnd.sigrok.session":{source:"iana"},"application/vnd.simtech-mindmapper":{source:"iana",extensions:["twd","twds"]},"application/vnd.siren+json":{source:"iana",compressible:true},"application/vnd.smaf":{source:"iana",extensions:["mmf"]},"application/vnd.smart.notebook":{source:"iana"},"application/vnd.smart.teacher":{source:"iana",extensions:["teacher"]},"application/vnd.software602.filler.form+xml":{source:"iana",compressible:true},"application/vnd.software602.filler.form-xml-zip":{source:"iana"},"application/vnd.solent.sdkm+xml":{source:"iana",compressible:true,extensions:["sdkm","sdkd"]},"application/vnd.spotfire.dxp":{source:"iana",extensions:["dxp"]},"application/vnd.spotfire.sfs":{source:"iana",extensions:["sfs"]},"application/vnd.sqlite3":{source:"iana"},"application/vnd.sss-cod":{source:"iana"},"application/vnd.sss-dtf":{source:"iana"},"application/vnd.sss-ntf":{source:"iana"},"application/vnd.stardivision.calc":{source:"apache",extensions:["sdc"]},"application/vnd.stardivision.draw":{source:"apache",extensions:["sda"]},"application/vnd.stardivision.impress":{source:"apache",extensions:["sdd"]},"application/vnd.stardivision.math":{source:"apache",extensions:["smf"]},"application/vnd.stardivision.writer":{source:"apache",extensions:["sdw","vor"]},"application/vnd.stardivision.writer-global":{source:"apache",extensions:["sgl"]},"application/vnd.stepmania.package":{source:"iana",extensions:["smzip"]},"application/vnd.stepmania.stepchart":{source:"iana",extensions:["sm"]},"application/vnd.street-stream":{source:"iana"},"application/vnd.sun.wadl+xml":{source:"iana",compressible:true,extensions:["wadl"]},"application/vnd.sun.xml.calc":{source:"apache",extensions:["sxc"]},"application/vnd.sun.xml.calc.template":{source:"apache",extensions:["stc"]},"application/vnd.sun.xml.draw":{source:"apache",extensions:["sxd"]},"application/vnd.sun.xml.draw.template":{source:"apache",extensions:["std"]},"application/vnd.sun.xml.impress":{source:"apache",extensions:["sxi"]},"application/vnd.sun.xml.impress.template":{source:"apache",extensions:["sti"]},"application/vnd.sun.xml.math":{source:"apache",extensions:["sxm"]},"application/vnd.sun.xml.writer":{source:"apache",extensions:["sxw"]},"application/vnd.sun.xml.writer.global":{source:"apache",extensions:["sxg"]},"application/vnd.sun.xml.writer.template":{source:"apache",extensions:["stw"]},"application/vnd.sus-calendar":{source:"iana",extensions:["sus","susp"]},"application/vnd.svd":{source:"iana",extensions:["svd"]},"application/vnd.swiftview-ics":{source:"iana"},"application/vnd.symbian.install":{source:"apache",extensions:["sis","sisx"]},"application/vnd.syncml+xml":{source:"iana",compressible:true,extensions:["xsm"]},"application/vnd.syncml.dm+wbxml":{source:"iana",extensions:["bdm"]},"application/vnd.syncml.dm+xml":{source:"iana",compressible:true,extensions:["xdm"]},"application/vnd.syncml.dm.notification":{source:"iana"},"application/vnd.syncml.dmddf+wbxml":{source:"iana"},"application/vnd.syncml.dmddf+xml":{source:"iana",compressible:true},"application/vnd.syncml.dmtnds+wbxml":{source:"iana"},"application/vnd.syncml.dmtnds+xml":{source:"iana",compressible:true},"application/vnd.syncml.ds.notification":{source:"iana"},"application/vnd.tableschema+json":{source:"iana",compressible:true},"application/vnd.tao.intent-module-archive":{source:"iana",extensions:["tao"]},"application/vnd.tcpdump.pcap":{source:"iana",extensions:["pcap","cap","dmp"]},"application/vnd.think-cell.ppttc+json":{source:"iana",compressible:true},"application/vnd.tmd.mediaflex.api+xml":{source:"iana",compressible:true},"application/vnd.tml":{source:"iana"},"application/vnd.tmobile-livetv":{source:"iana",extensions:["tmo"]},"application/vnd.tri.onesource":{source:"iana"},"application/vnd.trid.tpt":{source:"iana",extensions:["tpt"]},"application/vnd.triscape.mxs":{source:"iana",extensions:["mxs"]},"application/vnd.trueapp":{source:"iana",extensions:["tra"]},"application/vnd.truedoc":{source:"iana"},"application/vnd.ubisoft.webplayer":{source:"iana"},"application/vnd.ufdl":{source:"iana",extensions:["ufd","ufdl"]},"application/vnd.uiq.theme":{source:"iana",extensions:["utz"]},"application/vnd.umajin":{source:"iana",extensions:["umj"]},"application/vnd.unity":{source:"iana",extensions:["unityweb"]},"application/vnd.uoml+xml":{source:"iana",compressible:true,extensions:["uoml"]},"application/vnd.uplanet.alert":{source:"iana"},"application/vnd.uplanet.alert-wbxml":{source:"iana"},"application/vnd.uplanet.bearer-choice":{source:"iana"},"application/vnd.uplanet.bearer-choice-wbxml":{source:"iana"},"application/vnd.uplanet.cacheop":{source:"iana"},"application/vnd.uplanet.cacheop-wbxml":{source:"iana"},"application/vnd.uplanet.channel":{source:"iana"},"application/vnd.uplanet.channel-wbxml":{source:"iana"},"application/vnd.uplanet.list":{source:"iana"},"application/vnd.uplanet.list-wbxml":{source:"iana"},"application/vnd.uplanet.listcmd":{source:"iana"},"application/vnd.uplanet.listcmd-wbxml":{source:"iana"},"application/vnd.uplanet.signal":{source:"iana"},"application/vnd.uri-map":{source:"iana"},"application/vnd.valve.source.material":{source:"iana"},"application/vnd.vcx":{source:"iana",extensions:["vcx"]},"application/vnd.vd-study":{source:"iana"},"application/vnd.vectorworks":{source:"iana"},"application/vnd.vel+json":{source:"iana",compressible:true},"application/vnd.verimatrix.vcas":{source:"iana"},"application/vnd.veryant.thin":{source:"iana"},"application/vnd.vidsoft.vidconference":{source:"iana"},"application/vnd.visio":{source:"iana",extensions:["vsd","vst","vss","vsw"]},"application/vnd.visionary":{source:"iana",extensions:["vis"]},"application/vnd.vividence.scriptfile":{source:"iana"},"application/vnd.vsf":{source:"iana",extensions:["vsf"]},"application/vnd.wap.sic":{source:"iana"},"application/vnd.wap.slc":{source:"iana"},"application/vnd.wap.wbxml":{source:"iana",extensions:["wbxml"]},"application/vnd.wap.wmlc":{source:"iana",extensions:["wmlc"]},"application/vnd.wap.wmlscriptc":{source:"iana",extensions:["wmlsc"]},"application/vnd.webturbo":{source:"iana",extensions:["wtb"]},"application/vnd.wfa.p2p":{source:"iana"},"application/vnd.wfa.wsc":{source:"iana"},"application/vnd.windows.devicepairing":{source:"iana"},"application/vnd.wmc":{source:"iana"},"application/vnd.wmf.bootstrap":{source:"iana"},"application/vnd.wolfram.mathematica":{source:"iana"},"application/vnd.wolfram.mathematica.package":{source:"iana"},"application/vnd.wolfram.player":{source:"iana",extensions:["nbp"]},"application/vnd.wordperfect":{source:"iana",extensions:["wpd"]},"application/vnd.wqd":{source:"iana",extensions:["wqd"]},"application/vnd.wrq-hp3000-labelled":{source:"iana"},"application/vnd.wt.stf":{source:"iana",extensions:["stf"]},"application/vnd.wv.csp+wbxml":{source:"iana"},"application/vnd.wv.csp+xml":{source:"iana",compressible:true},"application/vnd.wv.ssp+xml":{source:"iana",compressible:true},"application/vnd.xacml+json":{source:"iana",compressible:true},"application/vnd.xara":{source:"iana",extensions:["xar"]},"application/vnd.xfdl":{source:"iana",extensions:["xfdl"]},"application/vnd.xfdl.webform":{source:"iana"},"application/vnd.xmi+xml":{source:"iana",compressible:true},"application/vnd.xmpie.cpkg":{source:"iana"},"application/vnd.xmpie.dpkg":{source:"iana"},"application/vnd.xmpie.plan":{source:"iana"},"application/vnd.xmpie.ppkg":{source:"iana"},"application/vnd.xmpie.xlim":{source:"iana"},"application/vnd.yamaha.hv-dic":{source:"iana",extensions:["hvd"]},"application/vnd.yamaha.hv-script":{source:"iana",extensions:["hvs"]},"application/vnd.yamaha.hv-voice":{source:"iana",extensions:["hvp"]},"application/vnd.yamaha.openscoreformat":{source:"iana",extensions:["osf"]},"application/vnd.yamaha.openscoreformat.osfpvg+xml":{source:"iana",compressible:true,extensions:["osfpvg"]},"application/vnd.yamaha.remote-setup":{source:"iana"},"application/vnd.yamaha.smaf-audio":{source:"iana",extensions:["saf"]},"application/vnd.yamaha.smaf-phrase":{source:"iana",extensions:["spf"]},"application/vnd.yamaha.through-ngn":{source:"iana"},"application/vnd.yamaha.tunnel-udpencap":{source:"iana"},"application/vnd.yaoweme":{source:"iana"},"application/vnd.yellowriver-custom-menu":{source:"iana",extensions:["cmp"]},"application/vnd.youtube.yt":{source:"iana"},"application/vnd.zul":{source:"iana",extensions:["zir","zirz"]},"application/vnd.zzazz.deck+xml":{source:"iana",compressible:true,extensions:["zaz"]},"application/voicexml+xml":{source:"iana",compressible:true,extensions:["vxml"]},"application/voucher-cms+json":{source:"iana",compressible:true},"application/vq-rtcpxr":{source:"iana"},"application/wasm":{compressible:true,extensions:["wasm"]},"application/watcherinfo+xml":{source:"iana",compressible:true},"application/webpush-options+json":{source:"iana",compressible:true},"application/whoispp-query":{source:"iana"},"application/whoispp-response":{source:"iana"},"application/widget":{source:"iana",extensions:["wgt"]},"application/winhlp":{source:"apache",extensions:["hlp"]},"application/wita":{source:"iana"},"application/wordperfect5.1":{source:"iana"},"application/wsdl+xml":{source:"iana",compressible:true,extensions:["wsdl"]},"application/wspolicy+xml":{source:"iana",compressible:true,extensions:["wspolicy"]},"application/x-7z-compressed":{source:"apache",compressible:false,extensions:["7z"]},"application/x-abiword":{source:"apache",extensions:["abw"]},"application/x-ace-compressed":{source:"apache",extensions:["ace"]},"application/x-amf":{source:"apache"},"application/x-apple-diskimage":{source:"apache",extensions:["dmg"]},"application/x-arj":{compressible:false,extensions:["arj"]},"application/x-authorware-bin":{source:"apache",extensions:["aab","x32","u32","vox"]},"application/x-authorware-map":{source:"apache",extensions:["aam"]},"application/x-authorware-seg":{source:"apache",extensions:["aas"]},"application/x-bcpio":{source:"apache",extensions:["bcpio"]},"application/x-bdoc":{compressible:false,extensions:["bdoc"]},"application/x-bittorrent":{source:"apache",extensions:["torrent"]},"application/x-blorb":{source:"apache",extensions:["blb","blorb"]},"application/x-bzip":{source:"apache",compressible:false,extensions:["bz"]},"application/x-bzip2":{source:"apache",compressible:false,extensions:["bz2","boz"]},"application/x-cbr":{source:"apache",extensions:["cbr","cba","cbt","cbz","cb7"]},"application/x-cdlink":{source:"apache",extensions:["vcd"]},"application/x-cfs-compressed":{source:"apache",extensions:["cfs"]},"application/x-chat":{source:"apache",extensions:["chat"]},"application/x-chess-pgn":{source:"apache",extensions:["pgn"]},"application/x-chrome-extension":{extensions:["crx"]},"application/x-cocoa":{source:"nginx",extensions:["cco"]},"application/x-compress":{source:"apache"},"application/x-conference":{source:"apache",extensions:["nsc"]},"application/x-cpio":{source:"apache",extensions:["cpio"]},"application/x-csh":{source:"apache",extensions:["csh"]},"application/x-deb":{compressible:false},"application/x-debian-package":{source:"apache",extensions:["deb","udeb"]},"application/x-dgc-compressed":{source:"apache",extensions:["dgc"]},"application/x-director":{source:"apache",extensions:["dir","dcr","dxr","cst","cct","cxt","w3d","fgd","swa"]},"application/x-doom":{source:"apache",extensions:["wad"]},"application/x-dtbncx+xml":{source:"apache",compressible:true,extensions:["ncx"]},"application/x-dtbook+xml":{source:"apache",compressible:true,extensions:["dtb"]},"application/x-dtbresource+xml":{source:"apache",compressible:true,extensions:["res"]},"application/x-dvi":{source:"apache",compressible:false,extensions:["dvi"]},"application/x-envoy":{source:"apache",extensions:["evy"]},"application/x-eva":{source:"apache",extensions:["eva"]},"application/x-font-bdf":{source:"apache",extensions:["bdf"]},"application/x-font-dos":{source:"apache"},"application/x-font-framemaker":{source:"apache"},"application/x-font-ghostscript":{source:"apache",extensions:["gsf"]},"application/x-font-libgrx":{source:"apache"},"application/x-font-linux-psf":{source:"apache",extensions:["psf"]},"application/x-font-pcf":{source:"apache",extensions:["pcf"]},"application/x-font-snf":{source:"apache",extensions:["snf"]},"application/x-font-speedo":{source:"apache"},"application/x-font-sunos-news":{source:"apache"},"application/x-font-type1":{source:"apache",extensions:["pfa","pfb","pfm","afm"]},"application/x-font-vfont":{source:"apache"},"application/x-freearc":{source:"apache",extensions:["arc"]},"application/x-futuresplash":{source:"apache",extensions:["spl"]},"application/x-gca-compressed":{source:"apache",extensions:["gca"]},"application/x-glulx":{source:"apache",extensions:["ulx"]},"application/x-gnumeric":{source:"apache",extensions:["gnumeric"]},"application/x-gramps-xml":{source:"apache",extensions:["gramps"]},"application/x-gtar":{source:"apache",extensions:["gtar"]},"application/x-gzip":{source:"apache"},"application/x-hdf":{source:"apache",extensions:["hdf"]},"application/x-httpd-php":{compressible:true,extensions:["php"]},"application/x-install-instructions":{source:"apache",extensions:["install"]},"application/x-iso9660-image":{source:"apache",extensions:["iso"]},"application/x-java-archive-diff":{source:"nginx",extensions:["jardiff"]},"application/x-java-jnlp-file":{source:"apache",compressible:false,extensions:["jnlp"]},"application/x-javascript":{compressible:true},"application/x-latex":{source:"apache",compressible:false,extensions:["latex"]},"application/x-lua-bytecode":{extensions:["luac"]},"application/x-lzh-compressed":{source:"apache",extensions:["lzh","lha"]},"application/x-makeself":{source:"nginx",extensions:["run"]},"application/x-mie":{source:"apache",extensions:["mie"]},"application/x-mobipocket-ebook":{source:"apache",extensions:["prc","mobi"]},"application/x-mpegurl":{compressible:false},"application/x-ms-application":{source:"apache",extensions:["application"]},"application/x-ms-shortcut":{source:"apache",extensions:["lnk"]},"application/x-ms-wmd":{source:"apache",extensions:["wmd"]},"application/x-ms-wmz":{source:"apache",extensions:["wmz"]},"application/x-ms-xbap":{source:"apache",extensions:["xbap"]},"application/x-msaccess":{source:"apache",extensions:["mdb"]},"application/x-msbinder":{source:"apache",extensions:["obd"]},"application/x-mscardfile":{source:"apache",extensions:["crd"]},"application/x-msclip":{source:"apache",extensions:["clp"]},"application/x-msdos-program":{extensions:["exe"]},"application/x-msdownload":{source:"apache",extensions:["exe","dll","com","bat","msi"]},"application/x-msmediaview":{source:"apache",extensions:["mvb","m13","m14"]},"application/x-msmetafile":{source:"apache",extensions:["wmf","wmz","emf","emz"]},"application/x-msmoney":{source:"apache",extensions:["mny"]},"application/x-mspublisher":{source:"apache",extensions:["pub"]},"application/x-msschedule":{source:"apache",extensions:["scd"]},"application/x-msterminal":{source:"apache",extensions:["trm"]},"application/x-mswrite":{source:"apache",extensions:["wri"]},"application/x-netcdf":{source:"apache",extensions:["nc","cdf"]},"application/x-ns-proxy-autoconfig":{compressible:true,extensions:["pac"]},"application/x-nzb":{source:"apache",extensions:["nzb"]},"application/x-perl":{source:"nginx",extensions:["pl","pm"]},"application/x-pilot":{source:"nginx",extensions:["prc","pdb"]},"application/x-pkcs12":{source:"apache",compressible:false,extensions:["p12","pfx"]},"application/x-pkcs7-certificates":{source:"apache",extensions:["p7b","spc"]},"application/x-pkcs7-certreqresp":{source:"apache",extensions:["p7r"]},"application/x-rar-compressed":{source:"apache",compressible:false,extensions:["rar"]},"application/x-redhat-package-manager":{source:"nginx",extensions:["rpm"]},"application/x-research-info-systems":{source:"apache",extensions:["ris"]},"application/x-sea":{source:"nginx",extensions:["sea"]},"application/x-sh":{source:"apache",compressible:true,extensions:["sh"]},"application/x-shar":{source:"apache",extensions:["shar"]},"application/x-shockwave-flash":{source:"apache",compressible:false,extensions:["swf"]},"application/x-silverlight-app":{source:"apache",extensions:["xap"]},"application/x-sql":{source:"apache",extensions:["sql"]},"application/x-stuffit":{source:"apache",compressible:false,extensions:["sit"]},"application/x-stuffitx":{source:"apache",extensions:["sitx"]},"application/x-subrip":{source:"apache",extensions:["srt"]},"application/x-sv4cpio":{source:"apache",extensions:["sv4cpio"]},"application/x-sv4crc":{source:"apache",extensions:["sv4crc"]},"application/x-t3vm-image":{source:"apache",extensions:["t3"]},"application/x-tads":{source:"apache",extensions:["gam"]},"application/x-tar":{source:"apache",compressible:true,extensions:["tar"]},"application/x-tcl":{source:"apache",extensions:["tcl","tk"]},"application/x-tex":{source:"apache",extensions:["tex"]},"application/x-tex-tfm":{source:"apache",extensions:["tfm"]},"application/x-texinfo":{source:"apache",extensions:["texinfo","texi"]},"application/x-tgif":{source:"apache",extensions:["obj"]},"application/x-ustar":{source:"apache",extensions:["ustar"]},"application/x-virtualbox-hdd":{compressible:true,extensions:["hdd"]},"application/x-virtualbox-ova":{compressible:true,extensions:["ova"]},"application/x-virtualbox-ovf":{compressible:true,extensions:["ovf"]},"application/x-virtualbox-vbox":{compressible:true,extensions:["vbox"]},"application/x-virtualbox-vbox-extpack":{compressible:false,extensions:["vbox-extpack"]},"application/x-virtualbox-vdi":{compressible:true,extensions:["vdi"]},"application/x-virtualbox-vhd":{compressible:true,extensions:["vhd"]},"application/x-virtualbox-vmdk":{compressible:true,extensions:["vmdk"]},"application/x-wais-source":{source:"apache",extensions:["src"]},"application/x-web-app-manifest+json":{compressible:true,extensions:["webapp"]},"application/x-www-form-urlencoded":{source:"iana",compressible:true},"application/x-x509-ca-cert":{source:"apache",extensions:["der","crt","pem"]},"application/x-xfig":{source:"apache",extensions:["fig"]},"application/x-xliff+xml":{source:"apache",compressible:true,extensions:["xlf"]},"application/x-xpinstall":{source:"apache",compressible:false,extensions:["xpi"]},"application/x-xz":{source:"apache",extensions:["xz"]},"application/x-zmachine":{source:"apache",extensions:["z1","z2","z3","z4","z5","z6","z7","z8"]},"application/x400-bp":{source:"iana"},"application/xacml+xml":{source:"iana",compressible:true},"application/xaml+xml":{source:"apache",compressible:true,extensions:["xaml"]},"application/xcap-att+xml":{source:"iana",compressible:true},"application/xcap-caps+xml":{source:"iana",compressible:true},"application/xcap-diff+xml":{source:"iana",compressible:true,extensions:["xdf"]},"application/xcap-el+xml":{source:"iana",compressible:true},"application/xcap-error+xml":{source:"iana",compressible:true},"application/xcap-ns+xml":{source:"iana",compressible:true},"application/xcon-conference-info+xml":{source:"iana",compressible:true},"application/xcon-conference-info-diff+xml":{source:"iana",compressible:true},"application/xenc+xml":{source:"iana",compressible:true,extensions:["xenc"]},"application/xhtml+xml":{source:"iana",compressible:true,extensions:["xhtml","xht"]},"application/xhtml-voice+xml":{source:"apache",compressible:true},"application/xliff+xml":{source:"iana",compressible:true},"application/xml":{source:"iana",compressible:true,extensions:["xml","xsl","xsd","rng"]},"application/xml-dtd":{source:"iana",compressible:true,extensions:["dtd"]},"application/xml-external-parsed-entity":{source:"iana"},"application/xml-patch+xml":{source:"iana",compressible:true},"application/xmpp+xml":{source:"iana",compressible:true},"application/xop+xml":{source:"iana",compressible:true,extensions:["xop"]},"application/xproc+xml":{source:"apache",compressible:true,extensions:["xpl"]},"application/xslt+xml":{source:"iana",compressible:true,extensions:["xslt"]},"application/xspf+xml":{source:"apache",compressible:true,extensions:["xspf"]},"application/xv+xml":{source:"iana",compressible:true,extensions:["mxml","xhvml","xvml","xvm"]},"application/yang":{source:"iana",extensions:["yang"]},"application/yang-data+json":{source:"iana",compressible:true},"application/yang-data+xml":{source:"iana",compressible:true},"application/yang-patch+json":{source:"iana",compressible:true},"application/yang-patch+xml":{source:"iana",compressible:true},"application/yin+xml":{source:"iana",compressible:true,extensions:["yin"]},"application/zip":{source:"iana",compressible:false,extensions:["zip"]},"application/zlib":{source:"iana"},"application/zstd":{source:"iana"},"audio/1d-interleaved-parityfec":{source:"iana"},"audio/32kadpcm":{source:"iana"},"audio/3gpp":{source:"iana",compressible:false,extensions:["3gpp"]},"audio/3gpp2":{source:"iana"},"audio/aac":{source:"iana"},"audio/ac3":{source:"iana"},"audio/adpcm":{source:"apache",extensions:["adp"]},"audio/amr":{source:"iana"},"audio/amr-wb":{source:"iana"},"audio/amr-wb+":{source:"iana"},"audio/aptx":{source:"iana"},"audio/asc":{source:"iana"},"audio/atrac-advanced-lossless":{source:"iana"},"audio/atrac-x":{source:"iana"},"audio/atrac3":{source:"iana"},"audio/basic":{source:"iana",compressible:false,extensions:["au","snd"]},"audio/bv16":{source:"iana"},"audio/bv32":{source:"iana"},"audio/clearmode":{source:"iana"},"audio/cn":{source:"iana"},"audio/dat12":{source:"iana"},"audio/dls":{source:"iana"},"audio/dsr-es201108":{source:"iana"},"audio/dsr-es202050":{source:"iana"},"audio/dsr-es202211":{source:"iana"},"audio/dsr-es202212":{source:"iana"},"audio/dv":{source:"iana"},"audio/dvi4":{source:"iana"},"audio/eac3":{source:"iana"},"audio/encaprtp":{source:"iana"},"audio/evrc":{source:"iana"},"audio/evrc-qcp":{source:"iana"},"audio/evrc0":{source:"iana"},"audio/evrc1":{source:"iana"},"audio/evrcb":{source:"iana"},"audio/evrcb0":{source:"iana"},"audio/evrcb1":{source:"iana"},"audio/evrcnw":{source:"iana"},"audio/evrcnw0":{source:"iana"},"audio/evrcnw1":{source:"iana"},"audio/evrcwb":{source:"iana"},"audio/evrcwb0":{source:"iana"},"audio/evrcwb1":{source:"iana"},"audio/evs":{source:"iana"},"audio/fwdred":{source:"iana"},"audio/g711-0":{source:"iana"},"audio/g719":{source:"iana"},"audio/g722":{source:"iana"},"audio/g7221":{source:"iana"},"audio/g723":{source:"iana"},"audio/g726-16":{source:"iana"},"audio/g726-24":{source:"iana"},"audio/g726-32":{source:"iana"},"audio/g726-40":{source:"iana"},"audio/g728":{source:"iana"},"audio/g729":{source:"iana"},"audio/g7291":{source:"iana"},"audio/g729d":{source:"iana"},"audio/g729e":{source:"iana"},"audio/gsm":{source:"iana"},"audio/gsm-efr":{source:"iana"},"audio/gsm-hr-08":{source:"iana"},"audio/ilbc":{source:"iana"},"audio/ip-mr_v2.5":{source:"iana"},"audio/isac":{source:"apache"},"audio/l16":{source:"iana"},"audio/l20":{source:"iana"},"audio/l24":{source:"iana",compressible:false},"audio/l8":{source:"iana"},"audio/lpc":{source:"iana"},"audio/melp":{source:"iana"},"audio/melp1200":{source:"iana"},"audio/melp2400":{source:"iana"},"audio/melp600":{source:"iana"},"audio/midi":{source:"apache",extensions:["mid","midi","kar","rmi"]},"audio/mobile-xmf":{source:"iana"},"audio/mp3":{compressible:false,extensions:["mp3"]},"audio/mp4":{source:"iana",compressible:false,extensions:["m4a","mp4a"]},"audio/mp4a-latm":{source:"iana"},"audio/mpa":{source:"iana"},"audio/mpa-robust":{source:"iana"},"audio/mpeg":{source:"iana",compressible:false,extensions:["mpga","mp2","mp2a","mp3","m2a","m3a"]},"audio/mpeg4-generic":{source:"iana"},"audio/musepack":{source:"apache"},"audio/ogg":{source:"iana",compressible:false,extensions:["oga","ogg","spx"]},"audio/opus":{source:"iana"},"audio/parityfec":{source:"iana"},"audio/pcma":{source:"iana"},"audio/pcma-wb":{source:"iana"},"audio/pcmu":{source:"iana"},"audio/pcmu-wb":{source:"iana"},"audio/prs.sid":{source:"iana"},"audio/qcelp":{source:"iana"},"audio/raptorfec":{source:"iana"},"audio/red":{source:"iana"},"audio/rtp-enc-aescm128":{source:"iana"},"audio/rtp-midi":{source:"iana"},"audio/rtploopback":{source:"iana"},"audio/rtx":{source:"iana"},"audio/s3m":{source:"apache",extensions:["s3m"]},"audio/silk":{source:"apache",extensions:["sil"]},"audio/smv":{source:"iana"},"audio/smv-qcp":{source:"iana"},"audio/smv0":{source:"iana"},"audio/sp-midi":{source:"iana"},"audio/speex":{source:"iana"},"audio/t140c":{source:"iana"},"audio/t38":{source:"iana"},"audio/telephone-event":{source:"iana"},"audio/tetra_acelp":{source:"iana"},"audio/tone":{source:"iana"},"audio/uemclip":{source:"iana"},"audio/ulpfec":{source:"iana"},"audio/usac":{source:"iana"},"audio/vdvi":{source:"iana"},"audio/vmr-wb":{source:"iana"},"audio/vnd.3gpp.iufp":{source:"iana"},"audio/vnd.4sb":{source:"iana"},"audio/vnd.audiokoz":{source:"iana"},"audio/vnd.celp":{source:"iana"},"audio/vnd.cisco.nse":{source:"iana"},"audio/vnd.cmles.radio-events":{source:"iana"},"audio/vnd.cns.anp1":{source:"iana"},"audio/vnd.cns.inf1":{source:"iana"},"audio/vnd.dece.audio":{source:"iana",extensions:["uva","uvva"]},"audio/vnd.digital-winds":{source:"iana",extensions:["eol"]},"audio/vnd.dlna.adts":{source:"iana"},"audio/vnd.dolby.heaac.1":{source:"iana"},"audio/vnd.dolby.heaac.2":{source:"iana"},"audio/vnd.dolby.mlp":{source:"iana"},"audio/vnd.dolby.mps":{source:"iana"},"audio/vnd.dolby.pl2":{source:"iana"},"audio/vnd.dolby.pl2x":{source:"iana"},"audio/vnd.dolby.pl2z":{source:"iana"},"audio/vnd.dolby.pulse.1":{source:"iana"},"audio/vnd.dra":{source:"iana",extensions:["dra"]},"audio/vnd.dts":{source:"iana",extensions:["dts"]},"audio/vnd.dts.hd":{source:"iana",extensions:["dtshd"]},"audio/vnd.dts.uhd":{source:"iana"},"audio/vnd.dvb.file":{source:"iana"},"audio/vnd.everad.plj":{source:"iana"},"audio/vnd.hns.audio":{source:"iana"},"audio/vnd.lucent.voice":{source:"iana",extensions:["lvp"]},"audio/vnd.ms-playready.media.pya":{source:"iana",extensions:["pya"]},"audio/vnd.nokia.mobile-xmf":{source:"iana"},"audio/vnd.nortel.vbk":{source:"iana"},"audio/vnd.nuera.ecelp4800":{source:"iana",extensions:["ecelp4800"]},"audio/vnd.nuera.ecelp7470":{source:"iana",extensions:["ecelp7470"]},"audio/vnd.nuera.ecelp9600":{source:"iana",extensions:["ecelp9600"]},"audio/vnd.octel.sbc":{source:"iana"},"audio/vnd.presonus.multitrack":{source:"iana"},"audio/vnd.qcelp":{source:"iana"},"audio/vnd.rhetorex.32kadpcm":{source:"iana"},"audio/vnd.rip":{source:"iana",extensions:["rip"]},"audio/vnd.rn-realaudio":{compressible:false},"audio/vnd.sealedmedia.softseal.mpeg":{source:"iana"},"audio/vnd.vmx.cvsd":{source:"iana"},"audio/vnd.wave":{compressible:false},"audio/vorbis":{source:"iana",compressible:false},"audio/vorbis-config":{source:"iana"},"audio/wav":{compressible:false,extensions:["wav"]},"audio/wave":{compressible:false,extensions:["wav"]},"audio/webm":{source:"apache",compressible:false,extensions:["weba"]},"audio/x-aac":{source:"apache",compressible:false,extensions:["aac"]},"audio/x-aiff":{source:"apache",extensions:["aif","aiff","aifc"]},"audio/x-caf":{source:"apache",compressible:false,extensions:["caf"]},"audio/x-flac":{source:"apache",extensions:["flac"]},"audio/x-m4a":{source:"nginx",extensions:["m4a"]},"audio/x-matroska":{source:"apache",extensions:["mka"]},"audio/x-mpegurl":{source:"apache",extensions:["m3u"]},"audio/x-ms-wax":{source:"apache",extensions:["wax"]},"audio/x-ms-wma":{source:"apache",extensions:["wma"]},"audio/x-pn-realaudio":{source:"apache",extensions:["ram","ra"]},"audio/x-pn-realaudio-plugin":{source:"apache",extensions:["rmp"]},"audio/x-realaudio":{source:"nginx",extensions:["ra"]},"audio/x-tta":{source:"apache"},"audio/x-wav":{source:"apache",extensions:["wav"]},"audio/xm":{source:"apache",extensions:["xm"]},"chemical/x-cdx":{source:"apache",extensions:["cdx"]},"chemical/x-cif":{source:"apache",extensions:["cif"]},"chemical/x-cmdf":{source:"apache",extensions:["cmdf"]},"chemical/x-cml":{source:"apache",extensions:["cml"]},"chemical/x-csml":{source:"apache",extensions:["csml"]},"chemical/x-pdb":{source:"apache"},"chemical/x-xyz":{source:"apache",extensions:["xyz"]},"font/collection":{source:"iana",extensions:["ttc"]},"font/otf":{source:"iana",compressible:true,extensions:["otf"]},"font/sfnt":{source:"iana"},"font/ttf":{source:"iana",extensions:["ttf"]},"font/woff":{source:"iana",extensions:["woff"]},"font/woff2":{source:"iana",extensions:["woff2"]},"image/aces":{source:"iana",extensions:["exr"]},"image/apng":{compressible:false,extensions:["apng"]},"image/avci":{source:"iana"},"image/avcs":{source:"iana"},"image/bmp":{source:"iana",compressible:true,extensions:["bmp"]},"image/cgm":{source:"iana",extensions:["cgm"]},"image/dicom-rle":{source:"iana",extensions:["drle"]},"image/emf":{source:"iana",extensions:["emf"]},"image/fits":{source:"iana",extensions:["fits"]},"image/g3fax":{source:"iana",extensions:["g3"]},"image/gif":{source:"iana",compressible:false,extensions:["gif"]},"image/heic":{source:"iana",extensions:["heic"]},"image/heic-sequence":{source:"iana",extensions:["heics"]},"image/heif":{source:"iana",extensions:["heif"]},"image/heif-sequence":{source:"iana",extensions:["heifs"]},"image/ief":{source:"iana",extensions:["ief"]},"image/jls":{source:"iana",extensions:["jls"]},"image/jp2":{source:"iana",compressible:false,extensions:["jp2","jpg2"]},"image/jpeg":{source:"iana",compressible:false,extensions:["jpeg","jpg","jpe"]},"image/jpm":{source:"iana",compressible:false,extensions:["jpm"]},"image/jpx":{source:"iana",compressible:false,extensions:["jpx","jpf"]},"image/jxr":{source:"iana",extensions:["jxr"]},"image/ktx":{source:"iana",extensions:["ktx"]},"image/naplps":{source:"iana"},"image/pjpeg":{compressible:false},"image/png":{source:"iana",compressible:false,extensions:["png"]},"image/prs.btif":{source:"iana",extensions:["btif"]},"image/prs.pti":{source:"iana",extensions:["pti"]},"image/pwg-raster":{source:"iana"},"image/sgi":{source:"apache",extensions:["sgi"]},"image/svg+xml":{source:"iana",compressible:true,extensions:["svg","svgz"]},"image/t38":{source:"iana",extensions:["t38"]},"image/tiff":{source:"iana",compressible:false,extensions:["tif","tiff"]},"image/tiff-fx":{source:"iana",extensions:["tfx"]},"image/vnd.adobe.photoshop":{source:"iana",compressible:true,extensions:["psd"]},"image/vnd.airzip.accelerator.azv":{source:"iana",extensions:["azv"]},"image/vnd.cns.inf2":{source:"iana"},"image/vnd.dece.graphic":{source:"iana",extensions:["uvi","uvvi","uvg","uvvg"]},"image/vnd.djvu":{source:"iana",extensions:["djvu","djv"]},"image/vnd.dvb.subtitle":{source:"iana",extensions:["sub"]},"image/vnd.dwg":{source:"iana",extensions:["dwg"]},"image/vnd.dxf":{source:"iana",extensions:["dxf"]},"image/vnd.fastbidsheet":{source:"iana",extensions:["fbs"]},"image/vnd.fpx":{source:"iana",extensions:["fpx"]},"image/vnd.fst":{source:"iana",extensions:["fst"]},"image/vnd.fujixerox.edmics-mmr":{source:"iana",extensions:["mmr"]},"image/vnd.fujixerox.edmics-rlc":{source:"iana",extensions:["rlc"]},"image/vnd.globalgraphics.pgb":{source:"iana"},"image/vnd.microsoft.icon":{source:"iana",extensions:["ico"]},"image/vnd.mix":{source:"iana"},"image/vnd.mozilla.apng":{source:"iana"},"image/vnd.ms-modi":{source:"iana",extensions:["mdi"]},"image/vnd.ms-photo":{source:"apache",extensions:["wdp"]},"image/vnd.net-fpx":{source:"iana",extensions:["npx"]},"image/vnd.radiance":{source:"iana"},"image/vnd.sealed.png":{source:"iana"},"image/vnd.sealedmedia.softseal.gif":{source:"iana"},"image/vnd.sealedmedia.softseal.jpg":{source:"iana"},"image/vnd.svf":{source:"iana"},"image/vnd.tencent.tap":{source:"iana",extensions:["tap"]},"image/vnd.valve.source.texture":{source:"iana",extensions:["vtf"]},"image/vnd.wap.wbmp":{source:"iana",extensions:["wbmp"]},"image/vnd.xiff":{source:"iana",extensions:["xif"]},"image/vnd.zbrush.pcx":{source:"iana",extensions:["pcx"]},"image/webp":{source:"apache",extensions:["webp"]},"image/wmf":{source:"iana",extensions:["wmf"]},"image/x-3ds":{source:"apache",extensions:["3ds"]},"image/x-cmu-raster":{source:"apache",extensions:["ras"]},"image/x-cmx":{source:"apache",extensions:["cmx"]},"image/x-freehand":{source:"apache",extensions:["fh","fhc","fh4","fh5","fh7"]},"image/x-icon":{source:"apache",compressible:true,extensions:["ico"]},"image/x-jng":{source:"nginx",extensions:["jng"]},"image/x-mrsid-image":{source:"apache",extensions:["sid"]},"image/x-ms-bmp":{source:"nginx",compressible:true,extensions:["bmp"]},"image/x-pcx":{source:"apache",extensions:["pcx"]},"image/x-pict":{source:"apache",extensions:["pic","pct"]},"image/x-portable-anymap":{source:"apache",extensions:["pnm"]},"image/x-portable-bitmap":{source:"apache",extensions:["pbm"]},"image/x-portable-graymap":{source:"apache",extensions:["pgm"]},"image/x-portable-pixmap":{source:"apache",extensions:["ppm"]},"image/x-rgb":{source:"apache",extensions:["rgb"]},"image/x-tga":{source:"apache",extensions:["tga"]},"image/x-xbitmap":{source:"apache",extensions:["xbm"]},"image/x-xcf":{compressible:false},"image/x-xpixmap":{source:"apache",extensions:["xpm"]},"image/x-xwindowdump":{source:"apache",extensions:["xwd"]},"message/cpim":{source:"iana"},"message/delivery-status":{source:"iana"},"message/disposition-notification":{source:"iana",extensions:["disposition-notification"]},"message/external-body":{source:"iana"},"message/feedback-report":{source:"iana"},"message/global":{source:"iana",extensions:["u8msg"]},"message/global-delivery-status":{source:"iana",extensions:["u8dsn"]},"message/global-disposition-notification":{source:"iana",extensions:["u8mdn"]},"message/global-headers":{source:"iana",extensions:["u8hdr"]},"message/http":{source:"iana",compressible:false},"message/imdn+xml":{source:"iana",compressible:true},"message/news":{source:"iana"},"message/partial":{source:"iana",compressible:false},"message/rfc822":{source:"iana",compressible:true,extensions:["eml","mime"]},"message/s-http":{source:"iana"},"message/sip":{source:"iana"},"message/sipfrag":{source:"iana"},"message/tracking-status":{source:"iana"},"message/vnd.si.simp":{source:"iana"},"message/vnd.wfa.wsc":{source:"iana",extensions:["wsc"]},"model/3mf":{source:"iana",extensions:["3mf"]},"model/gltf+json":{source:"iana",compressible:true,extensions:["gltf"]},"model/gltf-binary":{source:"iana",compressible:true,extensions:["glb"]},"model/iges":{source:"iana",compressible:false,extensions:["igs","iges"]},"model/mesh":{source:"iana",compressible:false,extensions:["msh","mesh","silo"]},"model/stl":{source:"iana",extensions:["stl"]},"model/vnd.collada+xml":{source:"iana",compressible:true,extensions:["dae"]},"model/vnd.dwf":{source:"iana",extensions:["dwf"]},"model/vnd.flatland.3dml":{source:"iana"},"model/vnd.gdl":{source:"iana",extensions:["gdl"]},"model/vnd.gs-gdl":{source:"apache"},"model/vnd.gs.gdl":{source:"iana"},"model/vnd.gtw":{source:"iana",extensions:["gtw"]},"model/vnd.moml+xml":{source:"iana",compressible:true},"model/vnd.mts":{source:"iana",extensions:["mts"]},"model/vnd.opengex":{source:"iana",extensions:["ogex"]},"model/vnd.parasolid.transmit.binary":{source:"iana",extensions:["x_b"]},"model/vnd.parasolid.transmit.text":{source:"iana",extensions:["x_t"]},"model/vnd.rosette.annotated-data-model":{source:"iana"},"model/vnd.usdz+zip":{source:"iana",compressible:false,extensions:["usdz"]},"model/vnd.valve.source.compiled-map":{source:"iana",extensions:["bsp"]},"model/vnd.vtu":{source:"iana",extensions:["vtu"]},"model/vrml":{source:"iana",compressible:false,extensions:["wrl","vrml"]},"model/x3d+binary":{source:"apache",compressible:false,extensions:["x3db","x3dbz"]},"model/x3d+fastinfoset":{source:"iana",extensions:["x3db"]},"model/x3d+vrml":{source:"apache",compressible:false,extensions:["x3dv","x3dvz"]},"model/x3d+xml":{source:"iana",compressible:true,extensions:["x3d","x3dz"]},"model/x3d-vrml":{source:"iana",extensions:["x3dv"]},"multipart/alternative":{source:"iana",compressible:false},"multipart/appledouble":{source:"iana"},"multipart/byteranges":{source:"iana"},"multipart/digest":{source:"iana"},"multipart/encrypted":{source:"iana",compressible:false},"multipart/form-data":{source:"iana",compressible:false},"multipart/header-set":{source:"iana"},"multipart/mixed":{source:"iana",compressible:false},"multipart/multilingual":{source:"iana"},"multipart/parallel":{source:"iana"},"multipart/related":{source:"iana",compressible:false},"multipart/report":{source:"iana"},"multipart/signed":{source:"iana",compressible:false},"multipart/vnd.bint.med-plus":{source:"iana"},"multipart/voice-message":{source:"iana"},"multipart/x-mixed-replace":{source:"iana"},"text/1d-interleaved-parityfec":{source:"iana"},"text/cache-manifest":{source:"iana",compressible:true,extensions:["appcache","manifest"]},"text/calendar":{source:"iana",extensions:["ics","ifb"]},"text/calender":{compressible:true},"text/cmd":{compressible:true},"text/coffeescript":{extensions:["coffee","litcoffee"]},"text/css":{source:"iana",charset:"UTF-8",compressible:true,extensions:["css"]},"text/csv":{source:"iana",compressible:true,extensions:["csv"]},"text/csv-schema":{source:"iana"},"text/directory":{source:"iana"},"text/dns":{source:"iana"},"text/ecmascript":{source:"iana"},"text/encaprtp":{source:"iana"},"text/enriched":{source:"iana"},"text/fwdred":{source:"iana"},"text/grammar-ref-list":{source:"iana"},"text/html":{source:"iana",compressible:true,extensions:["html","htm","shtml"]},"text/jade":{extensions:["jade"]},"text/javascript":{source:"iana",compressible:true},"text/jcr-cnd":{source:"iana"},"text/jsx":{compressible:true,extensions:["jsx"]},"text/less":{compressible:true,extensions:["less"]},"text/markdown":{source:"iana",compressible:true,extensions:["markdown","md"]},"text/mathml":{source:"nginx",extensions:["mml"]},"text/mdx":{compressible:true,extensions:["mdx"]},"text/mizar":{source:"iana"},"text/n3":{source:"iana",compressible:true,extensions:["n3"]},"text/parameters":{source:"iana"},"text/parityfec":{source:"iana"},"text/plain":{source:"iana",compressible:true,extensions:["txt","text","conf","def","list","log","in","ini"]},"text/provenance-notation":{source:"iana"},"text/prs.fallenstein.rst":{source:"iana"},"text/prs.lines.tag":{source:"iana",extensions:["dsc"]},"text/prs.prop.logic":{source:"iana"},"text/raptorfec":{source:"iana"},"text/red":{source:"iana"},"text/rfc822-headers":{source:"iana"},"text/richtext":{source:"iana",compressible:true,extensions:["rtx"]},"text/rtf":{source:"iana",compressible:true,extensions:["rtf"]},"text/rtp-enc-aescm128":{source:"iana"},"text/rtploopback":{source:"iana"},"text/rtx":{source:"iana"},"text/sgml":{source:"iana",extensions:["sgml","sgm"]},"text/shex":{extensions:["shex"]},"text/slim":{extensions:["slim","slm"]},"text/strings":{source:"iana"},"text/stylus":{extensions:["stylus","styl"]},"text/t140":{source:"iana"},"text/tab-separated-values":{source:"iana",compressible:true,extensions:["tsv"]},"text/troff":{source:"iana",extensions:["t","tr","roff","man","me","ms"]},"text/turtle":{source:"iana",charset:"UTF-8",extensions:["ttl"]},"text/ulpfec":{source:"iana"},"text/uri-list":{source:"iana",compressible:true,extensions:["uri","uris","urls"]},"text/vcard":{source:"iana",compressible:true,extensions:["vcard"]},"text/vnd.a":{source:"iana"},"text/vnd.abc":{source:"iana"},"text/vnd.ascii-art":{source:"iana"},"text/vnd.curl":{source:"iana",extensions:["curl"]},"text/vnd.curl.dcurl":{source:"apache",extensions:["dcurl"]},"text/vnd.curl.mcurl":{source:"apache",extensions:["mcurl"]},"text/vnd.curl.scurl":{source:"apache",extensions:["scurl"]},"text/vnd.debian.copyright":{source:"iana"},"text/vnd.dmclientscript":{source:"iana"},"text/vnd.dvb.subtitle":{source:"iana",extensions:["sub"]},"text/vnd.esmertec.theme-descriptor":{source:"iana"},"text/vnd.fly":{source:"iana",extensions:["fly"]},"text/vnd.fmi.flexstor":{source:"iana",extensions:["flx"]},"text/vnd.gml":{source:"iana"},"text/vnd.graphviz":{source:"iana",extensions:["gv"]},"text/vnd.hgl":{source:"iana"},"text/vnd.in3d.3dml":{source:"iana",extensions:["3dml"]},"text/vnd.in3d.spot":{source:"iana",extensions:["spot"]},"text/vnd.iptc.newsml":{source:"iana"},"text/vnd.iptc.nitf":{source:"iana"},"text/vnd.latex-z":{source:"iana"},"text/vnd.motorola.reflex":{source:"iana"},"text/vnd.ms-mediapackage":{source:"iana"},"text/vnd.net2phone.commcenter.command":{source:"iana"},"text/vnd.radisys.msml-basic-layout":{source:"iana"},"text/vnd.senx.warpscript":{source:"iana"},"text/vnd.si.uricatalogue":{source:"iana"},"text/vnd.sun.j2me.app-descriptor":{source:"iana",extensions:["jad"]},"text/vnd.trolltech.linguist":{source:"iana"},"text/vnd.wap.si":{source:"iana"},"text/vnd.wap.sl":{source:"iana"},"text/vnd.wap.wml":{source:"iana",extensions:["wml"]},"text/vnd.wap.wmlscript":{source:"iana",extensions:["wmls"]},"text/vtt":{charset:"UTF-8",compressible:true,extensions:["vtt"]},"text/x-asm":{source:"apache",extensions:["s","asm"]},"text/x-c":{source:"apache",extensions:["c","cc","cxx","cpp","h","hh","dic"]},"text/x-component":{source:"nginx",extensions:["htc"]},"text/x-fortran":{source:"apache",extensions:["f","for","f77","f90"]},"text/x-gwt-rpc":{compressible:true},"text/x-handlebars-template":{extensions:["hbs"]},"text/x-java-source":{source:"apache",extensions:["java"]},"text/x-jquery-tmpl":{compressible:true},"text/x-lua":{extensions:["lua"]},"text/x-markdown":{compressible:true,extensions:["mkd"]},"text/x-nfo":{source:"apache",extensions:["nfo"]},"text/x-opml":{source:"apache",extensions:["opml"]},"text/x-org":{compressible:true,extensions:["org"]},"text/x-pascal":{source:"apache",extensions:["p","pas"]},"text/x-processing":{compressible:true,extensions:["pde"]},"text/x-sass":{extensions:["sass"]},"text/x-scss":{extensions:["scss"]},"text/x-setext":{source:"apache",extensions:["etx"]},"text/x-sfv":{source:"apache",extensions:["sfv"]},"text/x-suse-ymp":{compressible:true,extensions:["ymp"]},"text/x-uuencode":{source:"apache",extensions:["uu"]},"text/x-vcalendar":{source:"apache",extensions:["vcs"]},"text/x-vcard":{source:"apache",extensions:["vcf"]},"text/xml":{source:"iana",compressible:true,extensions:["xml"]},"text/xml-external-parsed-entity":{source:"iana"},"text/yaml":{extensions:["yaml","yml"]},"video/1d-interleaved-parityfec":{source:"iana"},"video/3gpp":{source:"iana",extensions:["3gp","3gpp"]},"video/3gpp-tt":{source:"iana"},"video/3gpp2":{source:"iana",extensions:["3g2"]},"video/bmpeg":{source:"iana"},"video/bt656":{source:"iana"},"video/celb":{source:"iana"},"video/dv":{source:"iana"},"video/encaprtp":{source:"iana"},"video/h261":{source:"iana",extensions:["h261"]},"video/h263":{source:"iana",extensions:["h263"]},"video/h263-1998":{source:"iana"},"video/h263-2000":{source:"iana"},"video/h264":{source:"iana",extensions:["h264"]},"video/h264-rcdo":{source:"iana"},"video/h264-svc":{source:"iana"},"video/h265":{source:"iana"},"video/iso.segment":{source:"iana"},"video/jpeg":{source:"iana",extensions:["jpgv"]},"video/jpeg2000":{source:"iana"},"video/jpm":{source:"apache",extensions:["jpm","jpgm"]},"video/mj2":{source:"iana",extensions:["mj2","mjp2"]},"video/mp1s":{source:"iana"},"video/mp2p":{source:"iana"},"video/mp2t":{source:"iana",extensions:["ts"]},"video/mp4":{source:"iana",compressible:false,extensions:["mp4","mp4v","mpg4"]},"video/mp4v-es":{source:"iana"},"video/mpeg":{source:"iana",compressible:false,extensions:["mpeg","mpg","mpe","m1v","m2v"]},"video/mpeg4-generic":{source:"iana"},"video/mpv":{source:"iana"},"video/nv":{source:"iana"},"video/ogg":{source:"iana",compressible:false,extensions:["ogv"]},"video/parityfec":{source:"iana"},"video/pointer":{source:"iana"},"video/quicktime":{source:"iana",compressible:false,extensions:["qt","mov"]},"video/raptorfec":{source:"iana"},"video/raw":{source:"iana"},"video/rtp-enc-aescm128":{source:"iana"},"video/rtploopback":{source:"iana"},"video/rtx":{source:"iana"},"video/smpte291":{source:"iana"},"video/smpte292m":{source:"iana"},"video/ulpfec":{source:"iana"},"video/vc1":{source:"iana"},"video/vc2":{source:"iana"},"video/vnd.cctv":{source:"iana"},"video/vnd.dece.hd":{source:"iana",extensions:["uvh","uvvh"]},"video/vnd.dece.mobile":{source:"iana",extensions:["uvm","uvvm"]},"video/vnd.dece.mp4":{source:"iana"},"video/vnd.dece.pd":{source:"iana",extensions:["uvp","uvvp"]},"video/vnd.dece.sd":{source:"iana",extensions:["uvs","uvvs"]},"video/vnd.dece.video":{source:"iana",extensions:["uvv","uvvv"]},"video/vnd.directv.mpeg":{source:"iana"},"video/vnd.directv.mpeg-tts":{source:"iana"},"video/vnd.dlna.mpeg-tts":{source:"iana"},"video/vnd.dvb.file":{source:"iana",extensions:["dvb"]},"video/vnd.fvt":{source:"iana",extensions:["fvt"]},"video/vnd.hns.video":{source:"iana"},"video/vnd.iptvforum.1dparityfec-1010":{source:"iana"},"video/vnd.iptvforum.1dparityfec-2005":{source:"iana"},"video/vnd.iptvforum.2dparityfec-1010":{source:"iana"},"video/vnd.iptvforum.2dparityfec-2005":{source:"iana"},"video/vnd.iptvforum.ttsavc":{source:"iana"},"video/vnd.iptvforum.ttsmpeg2":{source:"iana"},"video/vnd.motorola.video":{source:"iana"},"video/vnd.motorola.videop":{source:"iana"},"video/vnd.mpegurl":{source:"iana",extensions:["mxu","m4u"]},"video/vnd.ms-playready.media.pyv":{source:"iana",extensions:["pyv"]},"video/vnd.nokia.interleaved-multimedia":{source:"iana"},"video/vnd.nokia.mp4vr":{source:"iana"},"video/vnd.nokia.videovoip":{source:"iana"},"video/vnd.objectvideo":{source:"iana"},"video/vnd.radgamettools.bink":{source:"iana"},"video/vnd.radgamettools.smacker":{source:"iana"},"video/vnd.sealed.mpeg1":{source:"iana"},"video/vnd.sealed.mpeg4":{source:"iana"},"video/vnd.sealed.swf":{source:"iana"},"video/vnd.sealedmedia.softseal.mov":{source:"iana"},"video/vnd.uvvu.mp4":{source:"iana",extensions:["uvu","uvvu"]},"video/vnd.vivo":{source:"iana",extensions:["viv"]},"video/vp8":{source:"iana"},"video/webm":{source:"apache",compressible:false,extensions:["webm"]},"video/x-f4v":{source:"apache",extensions:["f4v"]},"video/x-fli":{source:"apache",extensions:["fli"]},"video/x-flv":{source:"apache",compressible:false,extensions:["flv"]},"video/x-m4v":{source:"apache",extensions:["m4v"]},"video/x-matroska":{source:"apache",compressible:false,extensions:["mkv","mk3d","mks"]},"video/x-mng":{source:"apache",extensions:["mng"]},"video/x-ms-asf":{source:"apache",extensions:["asf","asx"]},"video/x-ms-vob":{source:"apache",extensions:["vob"]},"video/x-ms-wm":{source:"apache",extensions:["wm"]},"video/x-ms-wmv":{source:"apache",compressible:false,extensions:["wmv"]},"video/x-ms-wmx":{source:"apache",extensions:["wmx"]},"video/x-ms-wvx":{source:"apache",extensions:["wvx"]},"video/x-msvideo":{source:"apache",extensions:["avi"]},"video/x-sgi-movie":{source:"apache",extensions:["movie"]},"video/x-smv":{source:"apache",extensions:["smv"]},"x-conference/x-cooltalk":{source:"apache",extensions:["ice"]},"x-shader/x-fragment":{compressible:true},"x-shader/x-vertex":{compressible:true}}},7766:function(e,t,n){var r=n(5633);var i=n(7774);var o=n(9476);var a=n(2175);e.exports=function(e){var t=0,n,s,c={type:i.ROOT,stack:[]},u=c,l=c.stack,f=[];var p=function(t){r.error(e,"Nothing to repeat at column "+(t-1))};var d=r.strToChars(e);n=d.length;while(t<n){s=d[t++];switch(s){case"\\":s=d[t++];switch(s){case"b":l.push(a.wordBoundary());break;case"B":l.push(a.nonWordBoundary());break;case"w":l.push(o.words());break;case"W":l.push(o.notWords());break;case"d":l.push(o.ints());break;case"D":l.push(o.notInts());break;case"s":l.push(o.whitespace());break;case"S":l.push(o.notWhitespace());break;default:if(/\d/.test(s)){l.push({type:i.REFERENCE,value:parseInt(s,10)})}else{l.push({type:i.CHAR,value:s.charCodeAt(0)})}}break;case"^":l.push(a.begin());break;case"$":l.push(a.end());break;case"[":var h;if(d[t]==="^"){h=true;t++}else{h=false}var m=r.tokenizeClass(d.slice(t),e);t+=m[1];l.push({type:i.SET,set:m[0],not:h});break;case".":l.push(o.anyChar());break;case"(":var v={type:i.GROUP,stack:[],remember:true};s=d[t];if(s==="?"){s=d[t+1];t+=2;if(s==="="){v.followedBy=true}else if(s==="!"){v.notFollowedBy=true}else if(s!==":"){r.error(e,"Invalid group, character '"+s+"' after '?' at column "+(t-1))}v.remember=false}l.push(v);f.push(u);u=v;l=v.stack;break;case")":if(f.length===0){r.error(e,"Unmatched ) at column "+(t-1))}u=f.pop();l=u.options?u.options[u.options.length-1]:u.stack;break;case"|":if(!u.options){u.options=[u.stack];delete u.stack}var g=[];u.options.push(g);l=g;break;case"{":var y=/^(\d+)(,(\d+)?)?\}/.exec(d.slice(t)),b,w;if(y!==null){if(l.length===0){p(t)}b=parseInt(y[1],10);w=y[2]?y[3]?parseInt(y[3],10):Infinity:b;t+=y[0].length;l.push({type:i.REPETITION,min:b,max:w,value:l.pop()})}else{l.push({type:i.CHAR,value:123})}break;case"?":if(l.length===0){p(t)}l.push({type:i.REPETITION,min:0,max:1,value:l.pop()});break;case"+":if(l.length===0){p(t)}l.push({type:i.REPETITION,min:1,max:Infinity,value:l.pop()});break;case"*":if(l.length===0){p(t)}l.push({type:i.REPETITION,min:0,max:Infinity,value:l.pop()});break;default:l.push({type:i.CHAR,value:s.charCodeAt(0)})}}if(f.length!==0){r.error(e,"Unterminated group")}return c};e.exports.types=i},7768:function(e,t,n){"use strict";const r=n(662);const i=n(5897);const o=n(5662).copy;const a=n(7780).remove;const s=n(1908).mkdirp;const c=n(8975).pathExists;const u=n(7609);function move(e,t,n,r){if(typeof n==="function"){r=n;n={}}const o=n.overwrite||n.clobber||false;u.checkPaths(e,t,"move",(n,a)=>{if(n)return r(n);const{srcStat:c}=a;u.checkParentPaths(e,c,t,"move",n=>{if(n)return r(n);s(i.dirname(t),n=>{if(n)return r(n);return doRename(e,t,o,r)})})})}function doRename(e,t,n,r){if(n){return a(t,i=>{if(i)return r(i);return rename(e,t,n,r)})}c(t,(i,o)=>{if(i)return r(i);if(o)return r(new Error("dest already exists."));return rename(e,t,n,r)})}function rename(e,t,n,i){r.rename(e,t,r=>{if(!r)return i();if(r.code!=="EXDEV")return i(r);return moveAcrossDevice(e,t,n,i)})}function moveAcrossDevice(e,t,n,r){const i={overwrite:n,errorOnExist:true};o(e,t,i,t=>{if(t)return r(t);return a(e,r)})}e.exports=move},7769:function(e,t,n){var r=n(9756);var i=n(5528);var o=n(7262);var a=n(7788);e.exports={parse:r.parseRequest,parseRequest:r.parseRequest,sign:i.signRequest,signRequest:i.signRequest,createSigner:i.createSigner,isSigner:i.isSigner,sshKeyToPEM:a.sshKeyToPEM,sshKeyFingerprint:a.fingerprint,pemToRsaSSHKey:a.pemToRsaSSHKey,verify:o.verifySignature,verifySignature:o.verifySignature,verifyHMAC:o.verifyHMAC}},7770:function(e,t){t=e.exports=stringify;t.getSerialize=serializer;function stringify(e,t,n,r){return JSON.stringify(e,serializer(t,r),n)}function serializer(e,t){var n=[],r=[];if(t==null)t=function(e,t){if(n[0]===t)return"[Circular ~]";return"[Circular ~."+r.slice(0,n.indexOf(t)).join(".")+"]"};return function(i,o){if(n.length>0){var a=n.indexOf(this);~a?n.splice(a+1):n.push(this);~a?r.splice(a,Infinity,i):r.push(i);if(~n.indexOf(o))o=t.call(this,i,o)}else n.push(o);return e==null?o:e.call(this,i,o)}}},7771:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return main});var r=n(2229);var i=n.n(r);var o=n(7930);var a=n.n(o);var s=n(7215);var c=n.n(s);var u=n(9544);var l=n.n(u);var f=n(7705);var p=n.n(f);var d=n(4573);var h=n.n(d);var m=n(2385);var v=n(5580);var g=n.n(v);var y=n(7905);var b=n.n(y);var w=n(4495);var x=n(586);var k=n.n(x);var j=n(5283);var S=n(2970);var E=n.n(S);var _=n(8860);var C=n(462);var A=n.n(C);var O=n(2788);var F=n.n(O);var D=n(5593);var T=n.n(D);var I=n(6873);var R=n(8715);var P=n.n(R);var B=n(1612);var N=n.n(B);var z=n(1891);var L=n.n(z);var M=n(9199);var U=n.n(M);var q=n(8233);var H=n.n(q);var G=n(6346);var W=n.n(G);const V=async(e,t)=>{let n;for(const r of Object.keys(t)){if(typeof t[r]!=="undefined"){continue}n=process.env[r];if(typeof n==="string"){e(`Reading ${l.a.bold(`"${l.a.bold(r)}"`)} from your env (as no value was specified)`);t[r]=n.replace(/^@/,"\\@")}else{throw new Error(`No value specified for env ${l.a.bold(`"${l.a.bold(r)}"`)} and it was not found in your env.`)}}};const J=`Your deployment failed. Please retry later. More: https://err.sh/now/deployment-error`;const Y=e=>H()(e)?e:`https://${e}`;const Z=async(e,{readyState:t,alias:n,aliasError:r},i,o,a,c)=>{if(t==="READY"){if(r&&r.message){e.warn(`Failed to assign aliases: ${r.message}`)}if(Array.isArray(n)&&n.length>0){if(n.length===1){if(o){const t=n[0];const r=Y(t);try{await Object(s["write"])(`https://${t}`);e.ready(`Deployed to ${l.a.bold(l.a.cyan(r))} ${l.a.gray("[in clipboard]")} ${i()}`)}catch(t){e.debug(`Error copying to clipboard: ${t}`);e.ready(`Deployed to ${l.a.bold(l.a.cyan(r))} ${i()}`)}}}else{e.ready(`Deployment complete ${i()}`);const t=(a.alias||[])[0];for(const r of n){const i=n.indexOf(r);const a=i===n.length-1;const c=t?r===t:a;if(c&&o){try{await Object(s["write"])(`https://${r}`);e.print(`- ${l.a.bold(l.a.cyan(Y(r)))} ${l.a.gray("[in clipboard]")}\n`);continue}catch(t){e.debug(`Error copying to clipboard: ${t}`)}}e.print(`- ${l.a.bold(l.a.cyan(Y(r)))}\n`)}}}else{e.ready(`Deployment complete ${i()}`)}return 0}if(!c){e.error(J);return 1}e.error(J);return 1};const X=e=>{if(!e){return{}}if(typeof e==="string"){e=[e]}if(Array.isArray(e)){return e.reduce((e,t)=>{let n;let r;const i=t.indexOf("=");if(i===-1){n=t}else{n=t.substr(0,i);r=t.substr(i+1)}e[n]=r;return e},{})}return e};async function main(e,t,n,r,i,o,s){let c=null;try{c=g()(e.argv.slice(2),s)}catch(y){Object(m["handleError"])(y);return 1}if(!await W()(c._[0],n)){return 0}const{apiUrl:u,authConfig:{token:f},config:{currentTeam:p}}=e;const{log:d,debug:v,error:y,warn:x}=n;const S=Object.keys(r);const C=c["--debug"];const O=process.stdout.isTTY;const D=!O;const P=S.map((e,t)=>{let n="";if(S.length>1&&t!==S.length-1){n=t<S.length-2?", ":" and "}return l.a.bold(b()(e))+n}).join("");d(`Deploying ${P} under ${l.a.bold(t)}`);const N=new w["default"]({apiUrl:u,token:f,debug:C,currentTeam:p});const z=Object.assign({},Object(_["default"])(i.meta),Object(_["default"])(c["--meta"]));let M=k()();let q=null;if(c["--no-scale"]){x(`The option --no-scale is only supported on Now 1.0 deployments`)}const H=e=>Object.prototype.toString.call(e)==="[object Object]";if(typeof i.env!=="undefined"&&!H(i.env)){y(`The ${A()("env")} property in ${T()("now.json")} needs to be an object`);return 1}if(typeof i.build!=="undefined"){if(!H(i.build)){y(`The ${A()("build")} property in ${T()("now.json")} needs to be an object`);return 1}if(typeof i.build.env!=="undefined"&&!H(i.build.env)){y(`The ${A()("build.env")} property in ${T()("now.json")} needs to be an object`);return 1}}const G=Object.assign({},X(i.env),X(c["--env"]));const J=C?{NOW_BUILDER_DEBUG:"1"}:{};const Y=Object.assign({},X(i.build&&i.build.env),X(c["--build-env"]),J);try{await V(d,G);await V(d,Y)}catch(e){y(e.message);return 1}const Q=(c["--regions"]||"").split(",").map(e=>e.trim()).filter(Boolean);const K=Q.length>0?Q:i.regions;try{const r=Object(I["default"])({argv:c,nowConfig:i,isFile:o,paths:S});d(`Using project ${l.a.bold(r)}`);const s={name:r,env:G,build:{env:Y},forceNew:c["--force"],quiet:D,wantsPublic:c["--public"]||i.public,isFile:o,type:null,nowConfig:i,regions:K,meta:z,deployStamp:M};if(c["--target"]){const e=c["--target"];if(!["staging","production"].includes(e)){y(`The specified ${F()("--target")} ${A()(e)} is not valid`);return 1}if(e==="production"){x("We recommend using the much shorter `--prod` option instead of `--target production` (deprecated)")}n.debug(`Setting target to ${e}`);s.target=e}else if(c["--prod"]){n.debug("Setting target to production");s.target="production"}M=k()();q=await Object(j["default"])(n,N,t,S,s,e);if(q instanceof R["NotDomainOwner"]){n.error(q);return 1}const u=U()(n,await E()(N,t,q.id,"v9"));if(u===1){return u}if(u instanceof R["DeploymentNotFound"]||u instanceof R["DeploymentPermissionDenied"]||u instanceof R["InvalidDeploymentId"]){n.error(u.message);return 1}if(U()(n,q)===1){return 1}if(q===null){y("Uploading failed. Please try again.");return 1}}catch(r){v(`Error: ${r}\n${r.stack}`);if(r instanceof R["NotDomainOwner"]){n.error(r.message);return 1}if(r instanceof R["DomainNotFound"]&&r.meta&&r.meta.domain){n.debug(`The domain ${r.meta.domain} was not found, trying to purchase it`);const i=await L()(n,new h.a({apiUrl:e.apiUrl,token:e.authConfig.token,currentTeam:e.config.currentTeam,debug:C}),r.meta.domain,t);if(i===true){n.success(`Successfully purchased the domain ${r.meta.domain}!`);return 0}if(i===false||i instanceof R["UserAborted"]){handleCreateDeployError(n,q);return 1}handleCreateDeployError(n,i);return 1}if(r instanceof R["DomainNotFound"]||r instanceof R["DomainNotVerified"]||r instanceof R["NotDomainOwner"]||r instanceof R["DomainPermissionDenied"]||r instanceof R["DomainVerificationFailed"]||r instanceof B["SchemaValidationFailed"]||r instanceof R["InvalidDomain"]||r instanceof R["DeploymentNotFound"]||r instanceof R["BuildsRateLimited"]||r instanceof R["DeploymentsRateLimited"]||r instanceof R["AliasDomainConfigured"]||r instanceof R["MissingBuildScript"]||r instanceof R["ConflictingFilePath"]||r instanceof R["ConflictingPathSegment"]){handleCreateDeployError(n,r);return 1}if(r instanceof R["BuildError"]){n.error("Build failed");n.error(`Check your logs at ${N.url}/_logs or run ${A()(`now logs ${N.url}`)}`);return 1}if(r.keyword==="additionalProperties"&&r.dataPath===".scale"){const{additionalProperty:e=""}=r.params||{};const t=`Invalid DC name for the scale option: ${e}`;y(t)}if(r.code==="size_limit_exceeded"){const{sizeLimit:e=0}=r;const t=`File size limit exceeded (${a()(e)})`;y(t);return 1}Object(m["handleError"])(r);return 1}return Z(n,q,M,!c["--no-clipboard"],i)}function handleCreateDeployError(e,t){if(t instanceof R["InvalidDomain"]){e.error(`The domain ${t.meta.domain} is not valid`);return 1}if(t instanceof R["DomainVerificationFailed"]){e.error(`The domain used as a suffix ${l.a.underline(t.meta.domain)} is not verified and can't be used as custom suffix.`);return 1}if(t instanceof R["DomainPermissionDenied"]){e.error(`You don't have permissions to access the domain used as a suffix ${l.a.underline(t.meta.domain)}.`);return 1}if(t instanceof B["SchemaValidationFailed"]){const{message:n,params:r,keyword:i,dataPath:o}=t.meta;if(r&&r.additionalProperty){const t=r.additionalProperty;e.error(`The property ${A()(t)} is not allowed in ${T()("now.json")} when using Now 2.0 please remove it.`);if(t==="build.env"||t==="builds.env"){e.note(`Do you mean ${A()("build")} (object) with a property ${A()("env")} (object) instead of ${A()(t)}?`)}return 1}if(i==="type"){const t=o.substr(1,o.length);e.error(`The property ${A()(t)} in ${T()("now.json")} can only be of type ${A()(p()(r.type))}.`);return 1}const a="https://zeit.co/docs/v2/deployments/configuration/";e.error(`Failed to validate ${T()("now.json")}: ${n}\nDocumentation: ${a}`);return 1}if(t instanceof R["TooManyRequests"]){e.error(`Too many requests detected for ${t.meta.api} API. Try again in ${i()(t.meta.retryAfter*1e3,{long:true})}.`);return 1}if(t instanceof R["DomainNotVerified"]){e.error(`The domain used as an alias ${l.a.underline(t.meta.domain)} is not verified yet. Please verify it.`);return 1}if(t instanceof R["BuildsRateLimited"]){e.error(t.message);e.note(`Run ${A()("now upgrade")} to increase your builds limit.`);return 1}if(t instanceof R["DeploymentNotFound"]||t instanceof R["NotDomainOwner"]||t instanceof R["DeploymentsRateLimited"]||t instanceof R["AliasDomainConfigured"]||t instanceof R["MissingBuildScript"]||t instanceof R["ConflictingFilePath"]||t instanceof R["ConflictingPathSegment"]){e.error(t.message);return 1}return t}},7774:function(e){e.exports={ROOT:0,GROUP:1,POSITION:2,SET:3,RANGE:4,REPETITION:5,REFERENCE:6,CHAR:7}},7780:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(8287);e.exports={remove:r(i),removeSync:i.sync}},7782:function(e,t,n){"use strict";e.exports=function(e,t){var r=n(4730);var i=r.errorObj;var o=r.isObject;function tryConvertToPromise(n,r){if(o(n)){if(n instanceof e)return n;var a=getThen(n);if(a===i){if(r)r._pushContext();var s=e.reject(a.e);if(r)r._popContext();return s}else if(typeof a==="function"){if(isAnyBluebirdPromise(n)){var s=new e(t);n._then(s._fulfill,s._reject,undefined,s,null);return s}return doThenable(n,a,r)}}return n}function doGetThen(e){return e.then}function getThen(e){try{return doGetThen(e)}catch(e){i.e=e;return i}}var a={}.hasOwnProperty;function isAnyBluebirdPromise(e){try{return a.call(e,"_promise0")}catch(e){return false}}function doThenable(n,o,a){var s=new e(t);var c=s;if(a)a._pushContext();s._captureStackTrace();if(a)a._popContext();var u=true;var l=r.tryCatch(o).call(n,resolve,reject);u=false;if(s&&l===i){s._rejectCallback(l.e,true,true);s=null}function resolve(e){if(!s)return;s._resolveCallback(e);s=null}function reject(e){if(!s)return;s._rejectCallback(e,u,true);s=null}return c}return tryConvertToPromise}},7786:function(e){e.exports=require("module")},7787:function(e){"use strict";let t;try{t=Promise}catch(e){}e.exports=t},7788:function(e,t,n){var r=n(9261);var i=n(8162);var o=n(649);var a={sha1:true,sha256:true,sha512:true};var s={rsa:true,dsa:true,ecdsa:true};function HttpSignatureError(e,t){if(Error.captureStackTrace)Error.captureStackTrace(this,t||HttpSignatureError);this.message=e;this.name=t.name}o.inherits(HttpSignatureError,Error);function InvalidAlgorithmError(e){HttpSignatureError.call(this,e,InvalidAlgorithmError)}o.inherits(InvalidAlgorithmError,HttpSignatureError);function validateAlgorithm(e){var t=e.toLowerCase().split("-");if(t.length!==2){throw new InvalidAlgorithmError(t[0].toUpperCase()+" is not a "+"valid algorithm")}if(t[0]!=="hmac"&&!s[t[0]]){throw new InvalidAlgorithmError(t[0].toUpperCase()+" type keys "+"are not supported")}if(!a[t[1]]){throw new InvalidAlgorithmError(t[1].toUpperCase()+" is not a "+"supported hash algorithm")}return t}e.exports={HASH_ALGOS:a,PK_ALGOS:s,HttpSignatureError:HttpSignatureError,InvalidAlgorithmError:InvalidAlgorithmError,validateAlgorithm:validateAlgorithm,sshKeyToPEM:function sshKeyToPEM(e){r.string(e,"ssh_key");var t=i.parseKey(e,"ssh");return t.toString("pem")},fingerprint:function fingerprint(e){r.string(e,"ssh_key");var t=i.parseKey(e,"ssh");return t.fingerprint("md5").toString("hex")},pemToRsaSSHKey:function pemToRsaSSHKey(e,t){r.equal("string",typeof e,"typeof pem");var n=i.parseKey(e,"pem");n.comment=t;return n.toString("ssh")}}},7789:function(e,t,n){"use strict";var r=n(8901);var i=e.exports=function(e,t){if(e instanceof i||e.type==="separator"){return e}if(r.isString(e)){this.name=e;this.value=e;this.short=e}else{r.extend(this,e,{name:e.name||e.value,value:"value"in e?e.value:e.name,short:e.short||e.name||e.value})}if(r.isFunction(e.disabled)){this.disabled=e.disabled(t)}else{this.disabled=e.disabled}}},7801:function(e){"use strict";function assign(){const e=[].slice.call(arguments).filter(e=>e);const t=e.shift();e.forEach(e=>{Object.keys(e).forEach(n=>{t[n]=e[n]})});return t}e.exports=assign},7804:function(e){"use strict";e.exports=function isArrayish(e){if(!e){return false}return e instanceof Array||Array.isArray(e)||e.length>=0&&e.splice instanceof Function}},7809:function(e){"use strict";e.exports=function(e){var t={};var n=Object.keys(Object(e));for(var r=0;r<n.length;r++){t[n[r].toLowerCase()]=e[n[r]]}return t}},7822:function(e){function Caseless(e){this.dict=e||{}}Caseless.prototype.set=function(e,t,n){if(typeof e==="object"){for(var r in e){this.set(r,e[r],t)}}else{if(typeof n==="undefined")n=true;var i=this.has(e);if(!n&&i)this.dict[i]=this.dict[i]+","+t;else this.dict[i||e]=t;return i}};Caseless.prototype.has=function(e){var t=Object.keys(this.dict),e=e.toLowerCase();for(var n=0;n<t.length;n++){if(t[n].toLowerCase()===e)return t[n]}return false};Caseless.prototype.get=function(e){e=e.toLowerCase();var t,n;var r=this.dict;Object.keys(r).forEach(function(i){n=i.toLowerCase();if(e===n)t=r[i]});return t};Caseless.prototype.swap=function(e){var t=this.has(e);if(t===e)return;if(!t)throw new Error('There is no header than matches "'+e+'"');this.dict[e]=this.dict[t];delete this.dict[t]};Caseless.prototype.del=function(e){var t=this.has(e);return delete this.dict[t||e]};e.exports=function(e){return new Caseless(e)};e.exports.httpify=function(e,t){var n=new Caseless(t);e.setHeader=function(e,t,r){if(typeof t==="undefined")return;return n.set(e,t,r)};e.hasHeader=function(e){return n.has(e)};e.getHeader=function(e){return n.get(e)};e.removeHeader=function(e){return n.del(e)};e.headers=n.dict;return n}},7825:function(e,t,n){var r=n(9261);var i=n(649);function FingerprintFormatError(e,t){if(Error.captureStackTrace)Error.captureStackTrace(this,FingerprintFormatError);this.name="FingerprintFormatError";this.fingerprint=e;this.format=t;this.message="Fingerprint format is not supported, or is invalid: ";if(e!==undefined)this.message+=" fingerprint = "+e;if(t!==undefined)this.message+=" format = "+t}i.inherits(FingerprintFormatError,Error);function InvalidAlgorithmError(e){if(Error.captureStackTrace)Error.captureStackTrace(this,InvalidAlgorithmError);this.name="InvalidAlgorithmError";this.algorithm=e;this.message='Algorithm "'+e+'" is not supported'}i.inherits(InvalidAlgorithmError,Error);function KeyParseError(e,t,n){if(Error.captureStackTrace)Error.captureStackTrace(this,KeyParseError);this.name="KeyParseError";this.format=t;this.keyName=e;this.innerErr=n;this.message="Failed to parse "+e+" as a valid "+t+" format key: "+n.message}i.inherits(KeyParseError,Error);function SignatureParseError(e,t,n){if(Error.captureStackTrace)Error.captureStackTrace(this,SignatureParseError);this.name="SignatureParseError";this.type=e;this.format=t;this.innerErr=n;this.message="Failed to parse the given data as a "+e+" signature in "+t+" format: "+n.message}i.inherits(SignatureParseError,Error);function CertificateParseError(e,t,n){if(Error.captureStackTrace)Error.captureStackTrace(this,CertificateParseError);this.name="CertificateParseError";this.format=t;this.certName=e;this.innerErr=n;this.message="Failed to parse "+e+" as a valid "+t+" format certificate: "+n.message}i.inherits(CertificateParseError,Error);function KeyEncryptedError(e,t){if(Error.captureStackTrace)Error.captureStackTrace(this,KeyEncryptedError);this.name="KeyEncryptedError";this.format=t;this.keyName=e;this.message="The "+t+" format key "+e+" is "+"encrypted (password-protected), and no passphrase was "+"provided in `options`"}i.inherits(KeyEncryptedError,Error);e.exports={FingerprintFormatError:FingerprintFormatError,InvalidAlgorithmError:InvalidAlgorithmError,KeyParseError:KeyParseError,SignatureParseError:SignatureParseError,KeyEncryptedError:KeyEncryptedError,CertificateParseError:CertificateParseError}},7826:function(e){e.exports={$id:"content.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",required:["size","mimeType"],properties:{size:{type:"integer"},compression:{type:"integer"},mimeType:{type:"string"},text:{type:"string"},encoding:{type:"string"},comment:{type:"string"}}}},7840:function(e,t,n){var r;try{r=n(2617)}catch(e){r=n(662)}function readFile(e,t,n){if(n==null){n=t;t={}}if(typeof t==="string"){t={encoding:t}}t=t||{};var i=t.fs||r;var o=true;if("throws"in t){o=t.throws}i.readFile(e,t,function(r,i){if(r)return n(r);i=stripBom(i);var a;try{a=JSON.parse(i,t?t.reviver:null)}catch(t){if(o){t.message=e+": "+t.message;return n(t)}else{return n(null,null)}}n(null,a)})}function readFileSync(e,t){t=t||{};if(typeof t==="string"){t={encoding:t}}var n=t.fs||r;var i=true;if("throws"in t){i=t.throws}try{var o=n.readFileSync(e,t);o=stripBom(o);return JSON.parse(o,t.reviver)}catch(t){if(i){t.message=e+": "+t.message;throw t}else{return null}}}function stringify(e,t){var n;var r="\n";if(typeof t==="object"&&t!==null){if(t.spaces){n=t.spaces}if(t.EOL){r=t.EOL}}var i=JSON.stringify(e,t?t.replacer:null,n);return i.replace(/\n/g,r)+r}function writeFile(e,t,n,i){if(i==null){i=n;n={}}n=n||{};var o=n.fs||r;var a="";try{a=stringify(t,n)}catch(e){if(i)i(e,null);return}o.writeFile(e,a,n,i)}function writeFileSync(e,t,n){n=n||{};var i=n.fs||r;var o=stringify(t,n);return i.writeFileSync(e,o,n)}function stripBom(e){if(Buffer.isBuffer(e))e=e.toString("utf8");e=e.replace(/^\uFEFF/,"");return e}var i={readFile:readFile,readFileSync:readFileSync,writeFile:writeFile,writeFileSync:writeFileSync};e.exports=i},7850:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5844);var i=n(6522);function fill(e,t,n){if(!(t in e)){return}var r=e[t];var i=n(r);if(typeof i==="function"){try{i.prototype=i.prototype||{};Object.defineProperties(i,{__sentry__:{enumerable:false,value:true},__sentry_original__:{enumerable:false,value:r},__sentry_wrapped__:{enumerable:false,value:i}})}catch(e){}}e[t]=i}t.fill=fill;function urlEncode(e){return Object.keys(e).map(function(t){return encodeURIComponent(t)+"="+encodeURIComponent(e[t])}).join("&")}t.urlEncode=urlEncode;function objectifyError(e){var t={message:e.message,name:e.name,stack:e.stack};for(var n in e){if(Object.prototype.hasOwnProperty.call(e,n)){t[n]=e[n]}}return t}function utf8Length(e){return~-encodeURI(e).split(/%..|./).length}function jsonSize(e){return utf8Length(JSON.stringify(e))}function normalizeToSize(e,t,n){if(t===void 0){t=3}if(n===void 0){n=100*1024}var r=normalize(e,t);if(jsonSize(r)>n){return normalizeToSize(e,t-1,n)}return r}t.normalizeToSize=normalizeToSize;function serializeValue(e){var t=Object.prototype.toString.call(e);if(typeof e==="string"){return e}if(t==="[object Object]"){return"[Object]"}if(t==="[object Array]"){return"[Array]"}var n=normalizeValue(e);return r.isPrimitive(n)?n:t}function normalizeValue(e,t){if(t==="domain"&&typeof e==="object"&&e._events){return"[Domain]"}if(t==="domainEmitter"){return"[DomainEmitter]"}if(typeof global!=="undefined"&&e===global){return"[Global]"}if(typeof window!=="undefined"&&e===window){return"[Window]"}if(typeof document!=="undefined"&&e===document){return"[Document]"}if(typeof Event!=="undefined"&&e instanceof Event){return Object.getPrototypeOf(e)?e.constructor.name:"Event"}if(r.isSyntheticEvent(e)){return"[SyntheticEvent]"}if(Number.isNaN(e)){return"[NaN]"}if(e===void 0){return"[undefined]"}if(typeof e==="function"){return"[Function: "+(e.name||"<unknown-function-name>")+"]"}return e}function walk(e,t,n,o){if(n===void 0){n=+Infinity}if(o===void 0){o=new i.Memo}if(n===0){return serializeValue(t)}if(t!==null&&t!==undefined&&typeof t.toJSON==="function"){return t.toJSON()}var a=normalizeValue(t,e);if(r.isPrimitive(a)){return a}var s=r.isError(t)?objectifyError(t):t;var c=Array.isArray(t)?[]:{};if(o.memoize(t)){return"[Circular ~]"}for(var u in s){if(!Object.prototype.hasOwnProperty.call(s,u)){continue}c[u]=walk(u,s[u],n-1,o)}o.unmemoize(t);return c}t.walk=walk;function normalize(e,t){try{return JSON.parse(JSON.stringify(e,function(e,n){return walk(e,n,t)}))}catch(e){return"**non-serializable**"}}t.normalize=normalize},7863:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(9414);const a=n(501);function copySync(e,t,n){if(typeof n==="function"||n instanceof RegExp){n={filter:n}}n=n||{};n.recursive=!!n.recursive;n.clobber="clobber"in n?!!n.clobber:true;n.overwrite="overwrite"in n?!!n.overwrite:n.clobber;n.dereference="dereference"in n?!!n.dereference:false;n.preserveTimestamps="preserveTimestamps"in n?!!n.preserveTimestamps:false;n.filter=n.filter||function(){return true};if(n.preserveTimestamps&&process.arch==="ia32"){console.warn(`fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269`)}const s=n.recursive&&!n.dereference?r.lstatSync(e):r.statSync(e);const c=i.dirname(t);const u=r.existsSync(c);let l=false;if(n.filter instanceof RegExp){console.warn("Warning: fs-extra: Passing a RegExp filter is deprecated, use a function");l=n.filter.test(e)}else if(typeof n.filter==="function")l=n.filter(e,t);if(s.isFile()&&l){if(!u)a.mkdirsSync(c);o(e,t,{overwrite:n.overwrite,errorOnExist:n.errorOnExist,preserveTimestamps:n.preserveTimestamps})}else if(s.isDirectory()&&l){if(!r.existsSync(t))a.mkdirsSync(t);const o=r.readdirSync(e);o.forEach(r=>{const o=n;o.recursive=true;copySync(i.join(e,r),i.join(t,r),o)})}else if(n.recursive&&s.isSymbolicLink()&&l){const n=r.readlinkSync(e);r.symlinkSync(n,t)}}e.exports=copySync},7871:function(e){"use strict";e.exports=function isExtendable(e){return typeof e!=="undefined"&&e!==null&&(typeof e==="object"||typeof e==="function")}},7879:function(e,t,n){var r=n(649);var i=n(9544);var o=n(1471);var a=n(7063);function mask(e,t){e=String(e);t=typeof t==="string"?t:"*";if(e.length===0){return""}return new Array(e.length+1).join(t)}e.exports=Prompt;function Prompt(){return o.apply(this,arguments)}r.inherits(Prompt,o);Prompt.prototype._run=function(e){this.done=e;var t=a(this.rl);var n=t.line.map(this.filterInput.bind(this));var r=this.handleSubmitEvents(n);r.success.forEach(this.onEnd.bind(this));r.error.forEach(this.onError.bind(this));if(this.opt.mask){t.keypress.takeUntil(r.success).forEach(this.onKeypress.bind(this))}this.render();return this};Prompt.prototype.render=function(e){var t=this.getQuestion();var n="";if(this.status==="answered"){t+=this.opt.mask?i.cyan(mask(this.answer,this.opt.mask)):i.italic.dim("[hidden]")}else if(this.opt.mask){t+=mask(this.rl.line||"",this.opt.mask)}else{t+=i.italic.dim("[input is hidden] ")}if(e){n="\n"+i.red(">> ")+e}this.screen.render(t,n)};Prompt.prototype.filterInput=function(e){if(!e){return this.opt.default==null?"":this.opt.default}return e};Prompt.prototype.onEnd=function(e){this.status="answered";this.answer=e.value;this.render();this.screen.done();this.done(e.value)};Prompt.prototype.onError=function(e){this.render(e.isValid)};Prompt.prototype.onKeypress=function(){this.render()}},7884:function(e,t,n){var r=n(7176).BigInteger;var i=r.prototype.Barrett;function ECFieldElementFp(e,t){this.x=t;this.q=e}function feFpEquals(e){if(e==this)return true;return this.q.equals(e.q)&&this.x.equals(e.x)}function feFpToBigInteger(){return this.x}function feFpNegate(){return new ECFieldElementFp(this.q,this.x.negate().mod(this.q))}function feFpAdd(e){return new ECFieldElementFp(this.q,this.x.add(e.toBigInteger()).mod(this.q))}function feFpSubtract(e){return new ECFieldElementFp(this.q,this.x.subtract(e.toBigInteger()).mod(this.q))}function feFpMultiply(e){return new ECFieldElementFp(this.q,this.x.multiply(e.toBigInteger()).mod(this.q))}function feFpSquare(){return new ECFieldElementFp(this.q,this.x.square().mod(this.q))}function feFpDivide(e){return new ECFieldElementFp(this.q,this.x.multiply(e.toBigInteger().modInverse(this.q)).mod(this.q))}ECFieldElementFp.prototype.equals=feFpEquals;ECFieldElementFp.prototype.toBigInteger=feFpToBigInteger;ECFieldElementFp.prototype.negate=feFpNegate;ECFieldElementFp.prototype.add=feFpAdd;ECFieldElementFp.prototype.subtract=feFpSubtract;ECFieldElementFp.prototype.multiply=feFpMultiply;ECFieldElementFp.prototype.square=feFpSquare;ECFieldElementFp.prototype.divide=feFpDivide;function ECPointFp(e,t,n,i){this.curve=e;this.x=t;this.y=n;if(i==null){this.z=r.ONE}else{this.z=i}this.zinv=null}function pointFpGetX(){if(this.zinv==null){this.zinv=this.z.modInverse(this.curve.q)}var e=this.x.toBigInteger().multiply(this.zinv);this.curve.reduce(e);return this.curve.fromBigInteger(e)}function pointFpGetY(){if(this.zinv==null){this.zinv=this.z.modInverse(this.curve.q)}var e=this.y.toBigInteger().multiply(this.zinv);this.curve.reduce(e);return this.curve.fromBigInteger(e)}function pointFpEquals(e){if(e==this)return true;if(this.isInfinity())return e.isInfinity();if(e.isInfinity())return this.isInfinity();var t,n;t=e.y.toBigInteger().multiply(this.z).subtract(this.y.toBigInteger().multiply(e.z)).mod(this.curve.q);if(!t.equals(r.ZERO))return false;n=e.x.toBigInteger().multiply(this.z).subtract(this.x.toBigInteger().multiply(e.z)).mod(this.curve.q);return n.equals(r.ZERO)}function pointFpIsInfinity(){if(this.x==null&&this.y==null)return true;return this.z.equals(r.ZERO)&&!this.y.toBigInteger().equals(r.ZERO)}function pointFpNegate(){return new ECPointFp(this.curve,this.x,this.y.negate(),this.z)}function pointFpAdd(e){if(this.isInfinity())return e;if(e.isInfinity())return this;var t=e.y.toBigInteger().multiply(this.z).subtract(this.y.toBigInteger().multiply(e.z)).mod(this.curve.q);var n=e.x.toBigInteger().multiply(this.z).subtract(this.x.toBigInteger().multiply(e.z)).mod(this.curve.q);if(r.ZERO.equals(n)){if(r.ZERO.equals(t)){return this.twice()}return this.curve.getInfinity()}var i=new r("3");var o=this.x.toBigInteger();var a=this.y.toBigInteger();var s=e.x.toBigInteger();var c=e.y.toBigInteger();var u=n.square();var l=u.multiply(n);var f=o.multiply(u);var p=t.square().multiply(this.z);var d=p.subtract(f.shiftLeft(1)).multiply(e.z).subtract(l).multiply(n).mod(this.curve.q);var h=f.multiply(i).multiply(t).subtract(a.multiply(l)).subtract(p.multiply(t)).multiply(e.z).add(t.multiply(l)).mod(this.curve.q);var m=l.multiply(this.z).multiply(e.z).mod(this.curve.q);return new ECPointFp(this.curve,this.curve.fromBigInteger(d),this.curve.fromBigInteger(h),m)}function pointFpTwice(){if(this.isInfinity())return this;if(this.y.toBigInteger().signum()==0)return this.curve.getInfinity();var e=new r("3");var t=this.x.toBigInteger();var n=this.y.toBigInteger();var i=n.multiply(this.z);var o=i.multiply(n).mod(this.curve.q);var a=this.curve.a.toBigInteger();var s=t.square().multiply(e);if(!r.ZERO.equals(a)){s=s.add(this.z.square().multiply(a))}s=s.mod(this.curve.q);var c=s.square().subtract(t.shiftLeft(3).multiply(o)).shiftLeft(1).multiply(i).mod(this.curve.q);var u=s.multiply(e).multiply(t).subtract(o.shiftLeft(1)).shiftLeft(2).multiply(o).subtract(s.square().multiply(s)).mod(this.curve.q);var l=i.square().multiply(i).shiftLeft(3).mod(this.curve.q);return new ECPointFp(this.curve,this.curve.fromBigInteger(c),this.curve.fromBigInteger(u),l)}function pointFpMultiply(e){if(this.isInfinity())return this;if(e.signum()==0)return this.curve.getInfinity();var t=e;var n=t.multiply(new r("3"));var i=this.negate();var o=this;var a;for(a=n.bitLength()-2;a>0;--a){o=o.twice();var s=n.testBit(a);var c=t.testBit(a);if(s!=c){o=o.add(s?this:i)}}return o}function pointFpMultiplyTwo(e,t,n){var r;if(e.bitLength()>n.bitLength())r=e.bitLength()-1;else r=n.bitLength()-1;var i=this.curve.getInfinity();var o=this.add(t);while(r>=0){i=i.twice();if(e.testBit(r)){if(n.testBit(r)){i=i.add(o)}else{i=i.add(this)}}else{if(n.testBit(r)){i=i.add(t)}}--r}return i}ECPointFp.prototype.getX=pointFpGetX;ECPointFp.prototype.getY=pointFpGetY;ECPointFp.prototype.equals=pointFpEquals;ECPointFp.prototype.isInfinity=pointFpIsInfinity;ECPointFp.prototype.negate=pointFpNegate;ECPointFp.prototype.add=pointFpAdd;ECPointFp.prototype.twice=pointFpTwice;ECPointFp.prototype.multiply=pointFpMultiply;ECPointFp.prototype.multiplyTwo=pointFpMultiplyTwo;function ECCurveFp(e,t,n){this.q=e;this.a=this.fromBigInteger(t);this.b=this.fromBigInteger(n);this.infinity=new ECPointFp(this,null,null);this.reducer=new i(this.q)}function curveFpGetQ(){return this.q}function curveFpGetA(){return this.a}function curveFpGetB(){return this.b}function curveFpEquals(e){if(e==this)return true;return this.q.equals(e.q)&&this.a.equals(e.a)&&this.b.equals(e.b)}function curveFpGetInfinity(){return this.infinity}function curveFpFromBigInteger(e){return new ECFieldElementFp(this.q,e)}function curveReduce(e){this.reducer.reduce(e)}function curveFpDecodePointHex(e){switch(parseInt(e.substr(0,2),16)){case 0:return this.infinity;case 2:case 3:return null;case 4:case 6:case 7:var t=(e.length-2)/2;var n=e.substr(2,t);var i=e.substr(t+2,t);return new ECPointFp(this,this.fromBigInteger(new r(n,16)),this.fromBigInteger(new r(i,16)));default:return null}}function curveFpEncodePointHex(e){if(e.isInfinity())return"00";var t=e.getX().toBigInteger().toString(16);var n=e.getY().toBigInteger().toString(16);var r=this.getQ().toString(16).length;if(r%2!=0)r++;while(t.length<r){t="0"+t}while(n.length<r){n="0"+n}return"04"+t+n}ECCurveFp.prototype.getQ=curveFpGetQ;ECCurveFp.prototype.getA=curveFpGetA;ECCurveFp.prototype.getB=curveFpGetB;ECCurveFp.prototype.equals=curveFpEquals;ECCurveFp.prototype.getInfinity=curveFpGetInfinity;ECCurveFp.prototype.fromBigInteger=curveFpFromBigInteger;ECCurveFp.prototype.reduce=curveReduce;ECCurveFp.prototype.encodePointHex=curveFpEncodePointHex;ECCurveFp.prototype.decodePointHex=function(e){var t;switch(parseInt(e.substr(0,2),16)){case 0:return this.infinity;case 2:t=false;case 3:if(t==undefined)t=true;var n=e.length-2;var i=e.substr(2,n);var o=this.fromBigInteger(new r(i,16));var a=o.multiply(o.square().add(this.getA())).add(this.getB());var s=a.sqrt();if(s==null)throw"Invalid point compression";var c=s.toBigInteger();if(c.testBit(0)!=t){s=this.fromBigInteger(this.getQ().subtract(c))}return new ECPointFp(this,o,s);case 4:case 6:case 7:var n=(e.length-2)/2;var i=e.substr(2,n);var u=e.substr(n+2,n);return new ECPointFp(this,this.fromBigInteger(new r(i,16)),this.fromBigInteger(new r(u,16)));default:return null}};ECCurveFp.prototype.encodeCompressedPointHex=function(e){if(e.isInfinity())return"00";var t=e.getX().toBigInteger().toString(16);var n=this.getQ().toString(16).length;if(n%2!=0)n++;while(t.length<n)t="0"+t;var r;if(e.getY().toBigInteger().isEven())r="02";else r="03";return r+t};ECFieldElementFp.prototype.getR=function(){if(this.r!=undefined)return this.r;this.r=null;var e=this.q.bitLength();if(e>128){var t=this.q.shiftRight(e-64);if(t.intValue()==-1){this.r=r.ONE.shiftLeft(e).subtract(this.q)}}return this.r};ECFieldElementFp.prototype.modMult=function(e,t){return this.modReduce(e.multiply(t))};ECFieldElementFp.prototype.modReduce=function(e){if(this.getR()!=null){var t=q.bitLength();while(e.bitLength()>t+1){var n=e.shiftRight(t);var i=e.subtract(n.shiftLeft(t));if(!this.getR().equals(r.ONE)){n=n.multiply(this.getR())}e=n.add(i)}while(e.compareTo(q)>=0){e=e.subtract(q)}}else{e=e.mod(q)}return e};ECFieldElementFp.prototype.sqrt=function(){if(!this.q.testBit(0))throw"unsupported";if(this.q.testBit(1)){var e=new ECFieldElementFp(this.q,this.x.modPow(this.q.shiftRight(2).add(r.ONE),this.q));return e.square().equals(this)?e:null}var t=this.q.subtract(r.ONE);var n=t.shiftRight(1);if(!this.x.modPow(n,this.q).equals(r.ONE)){return null}var i=t.shiftRight(2);var o=i.shiftLeft(1).add(r.ONE);var a=this.x;var s=modDouble(modDouble(a));var c,u;do{var l;do{l=new r(this.q.bitLength(),new SecureRandom)}while(l.compareTo(this.q)>=0||!l.multiply(l).subtract(s).modPow(n,this.q).equals(t));var f=this.lucasSequence(l,a,o);c=f[0];u=f[1];if(this.modMult(u,u).equals(s)){if(u.testBit(0)){u=u.add(q)}u=u.shiftRight(1);return new ECFieldElementFp(q,u)}}while(c.equals(r.ONE)||c.equals(t));return null};ECFieldElementFp.prototype.lucasSequence=function(e,t,n){var i=n.bitLength();var o=n.getLowestSetBit();var a=r.ONE;var s=r.TWO;var c=e;var u=r.ONE;var l=r.ONE;for(var f=i-1;f>=o+1;--f){u=this.modMult(u,l);if(n.testBit(f)){l=this.modMult(u,t);a=this.modMult(a,c);s=this.modReduce(c.multiply(s).subtract(e.multiply(u)));c=this.modReduce(c.multiply(c).subtract(l.shiftLeft(1)))}else{l=u;a=this.modReduce(a.multiply(s).subtract(u));c=this.modReduce(c.multiply(s).subtract(e.multiply(u)));s=this.modReduce(s.multiply(s).subtract(u.shiftLeft(1)))}}u=this.modMult(u,l);l=this.modMult(u,t);a=this.modReduce(a.multiply(s).subtract(u));s=this.modReduce(c.multiply(s).subtract(e.multiply(u)));u=this.modMult(u,l);for(var f=1;f<=o;++f){a=this.modMult(a,s);s=this.modReduce(s.multiply(s).subtract(u.shiftLeft(1)));u=this.modMult(u,u)}return[a,s]};var o={ECCurveFp:ECCurveFp,ECPointFp:ECPointFp,ECFieldElementFp:ECFieldElementFp};e.exports=o},7886:function(e,t,n){e=n.nmd(e);var r=200;var i="__lodash_hash_undefined__";var o=800,a=16;var s=9007199254740991;var c="[object Arguments]",u="[object Array]",l="[object AsyncFunction]",f="[object Boolean]",p="[object Date]",d="[object Error]",h="[object Function]",m="[object GeneratorFunction]",v="[object Map]",g="[object Number]",y="[object Null]",b="[object Object]",w="[object Proxy]",x="[object RegExp]",k="[object Set]",j="[object String]",S="[object Undefined]",E="[object WeakMap]";var _="[object ArrayBuffer]",C="[object DataView]",A="[object Float32Array]",O="[object Float64Array]",F="[object Int8Array]",D="[object Int16Array]",T="[object Int32Array]",I="[object Uint8Array]",R="[object Uint8ClampedArray]",P="[object Uint16Array]",B="[object Uint32Array]";var N=/[\\^$.*+?()[\]{}|]/g;var z=/^\[object .+?Constructor\]$/;var L=/^(?:0|[1-9]\d*)$/;var M={};M[A]=M[O]=M[F]=M[D]=M[T]=M[I]=M[R]=M[P]=M[B]=true;M[c]=M[u]=M[_]=M[f]=M[C]=M[p]=M[d]=M[h]=M[v]=M[g]=M[b]=M[x]=M[k]=M[j]=M[E]=false;var U=typeof global=="object"&&global&&global.Object===Object&&global;var q=typeof self=="object"&&self&&self.Object===Object&&self;var H=U||q||Function("return this")();var G=true&&t&&!t.nodeType&&t;var W=G&&"object"=="object"&&e&&!e.nodeType&&e;var V=W&&W.exports===G;var J=V&&U.process;var Y=function(){try{var e=W&&W.require&&W.require("util").types;if(e){return e}return J&&J.binding&&J.binding("util")}catch(e){}}();var Z=Y&&Y.isTypedArray;function apply(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function baseTimes(e,t){var n=-1,r=Array(e);while(++n<e){r[n]=t(n)}return r}function baseUnary(e){return function(t){return e(t)}}function getValue(e,t){return e==null?undefined:e[t]}function overArg(e,t){return function(n){return e(t(n))}}var X=Array.prototype,Q=Function.prototype,K=Object.prototype;var $=H["__core-js_shared__"];var ee=Q.toString;var te=K.hasOwnProperty;var ne=function(){var e=/[^.]+$/.exec($&&$.keys&&$.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}();var re=K.toString;var ie=ee.call(Object);var oe=RegExp("^"+ee.call(te).replace(N,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");var ae=V?H.Buffer:undefined,se=H.Symbol,ce=H.Uint8Array,ue=ae?ae.allocUnsafe:undefined,le=overArg(Object.getPrototypeOf,Object),fe=Object.create,pe=K.propertyIsEnumerable,de=X.splice,he=se?se.toStringTag:undefined;var me=function(){try{var e=getNative(Object,"defineProperty");e({},"",{});return e}catch(e){}}();var ve=ae?ae.isBuffer:undefined,ge=Math.max,ye=Date.now;var be=getNative(H,"Map"),we=getNative(Object,"create");var xe=function(){function object(){}return function(e){if(!isObject(e)){return{}}if(fe){return fe(e)}object.prototype=e;var t=new object;object.prototype=undefined;return t}}();function Hash(e){var t=-1,n=e==null?0:e.length;this.clear();while(++t<n){var r=e[t];this.set(r[0],r[1])}}function hashClear(){this.__data__=we?we(null):{};this.size=0}function hashDelete(e){var t=this.has(e)&&delete this.__data__[e];this.size-=t?1:0;return t}function hashGet(e){var t=this.__data__;if(we){var n=t[e];return n===i?undefined:n}return te.call(t,e)?t[e]:undefined}function hashHas(e){var t=this.__data__;return we?t[e]!==undefined:te.call(t,e)}function hashSet(e,t){var n=this.__data__;this.size+=this.has(e)?0:1;n[e]=we&&t===undefined?i:t;return this}Hash.prototype.clear=hashClear;Hash.prototype["delete"]=hashDelete;Hash.prototype.get=hashGet;Hash.prototype.has=hashHas;Hash.prototype.set=hashSet;function ListCache(e){var t=-1,n=e==null?0:e.length;this.clear();while(++t<n){var r=e[t];this.set(r[0],r[1])}}function listCacheClear(){this.__data__=[];this.size=0}function listCacheDelete(e){var t=this.__data__,n=assocIndexOf(t,e);if(n<0){return false}var r=t.length-1;if(n==r){t.pop()}else{de.call(t,n,1)}--this.size;return true}function listCacheGet(e){var t=this.__data__,n=assocIndexOf(t,e);return n<0?undefined:t[n][1]}function listCacheHas(e){return assocIndexOf(this.__data__,e)>-1}function listCacheSet(e,t){var n=this.__data__,r=assocIndexOf(n,e);if(r<0){++this.size;n.push([e,t])}else{n[r][1]=t}return this}ListCache.prototype.clear=listCacheClear;ListCache.prototype["delete"]=listCacheDelete;ListCache.prototype.get=listCacheGet;ListCache.prototype.has=listCacheHas;ListCache.prototype.set=listCacheSet;function MapCache(e){var t=-1,n=e==null?0:e.length;this.clear();while(++t<n){var r=e[t];this.set(r[0],r[1])}}function mapCacheClear(){this.size=0;this.__data__={hash:new Hash,map:new(be||ListCache),string:new Hash}}function mapCacheDelete(e){var t=getMapData(this,e)["delete"](e);this.size-=t?1:0;return t}function mapCacheGet(e){return getMapData(this,e).get(e)}function mapCacheHas(e){return getMapData(this,e).has(e)}function mapCacheSet(e,t){var n=getMapData(this,e),r=n.size;n.set(e,t);this.size+=n.size==r?0:1;return this}MapCache.prototype.clear=mapCacheClear;MapCache.prototype["delete"]=mapCacheDelete;MapCache.prototype.get=mapCacheGet;MapCache.prototype.has=mapCacheHas;MapCache.prototype.set=mapCacheSet;function Stack(e){var t=this.__data__=new ListCache(e);this.size=t.size}function stackClear(){this.__data__=new ListCache;this.size=0}function stackDelete(e){var t=this.__data__,n=t["delete"](e);this.size=t.size;return n}function stackGet(e){return this.__data__.get(e)}function stackHas(e){return this.__data__.has(e)}function stackSet(e,t){var n=this.__data__;if(n instanceof ListCache){var i=n.__data__;if(!be||i.length<r-1){i.push([e,t]);this.size=++n.size;return this}n=this.__data__=new MapCache(i)}n.set(e,t);this.size=n.size;return this}Stack.prototype.clear=stackClear;Stack.prototype["delete"]=stackDelete;Stack.prototype.get=stackGet;Stack.prototype.has=stackHas;Stack.prototype.set=stackSet;function arrayLikeKeys(e,t){var n=_e(e),r=!n&&Ee(e),i=!n&&!r&&Ce(e),o=!n&&!r&&!i&&Ae(e),a=n||r||i||o,s=a?baseTimes(e.length,String):[],c=s.length;for(var u in e){if((t||te.call(e,u))&&!(a&&(u=="length"||i&&(u=="offset"||u=="parent")||o&&(u=="buffer"||u=="byteLength"||u=="byteOffset")||isIndex(u,c)))){s.push(u)}}return s}function assignMergeValue(e,t,n){if(n!==undefined&&!eq(e[t],n)||n===undefined&&!(t in e)){baseAssignValue(e,t,n)}}function assignValue(e,t,n){var r=e[t];if(!(te.call(e,t)&&eq(r,n))||n===undefined&&!(t in e)){baseAssignValue(e,t,n)}}function assocIndexOf(e,t){var n=e.length;while(n--){if(eq(e[n][0],t)){return n}}return-1}function baseAssignValue(e,t,n){if(t=="__proto__"&&me){me(e,t,{configurable:true,enumerable:true,value:n,writable:true})}else{e[t]=n}}var ke=createBaseFor();function baseGetTag(e){if(e==null){return e===undefined?S:y}return he&&he in Object(e)?getRawTag(e):objectToString(e)}function baseIsArguments(e){return isObjectLike(e)&&baseGetTag(e)==c}function baseIsNative(e){if(!isObject(e)||isMasked(e)){return false}var t=isFunction(e)?oe:z;return t.test(toSource(e))}function baseIsTypedArray(e){return isObjectLike(e)&&isLength(e.length)&&!!M[baseGetTag(e)]}function baseKeysIn(e){if(!isObject(e)){return nativeKeysIn(e)}var t=isPrototype(e),n=[];for(var r in e){if(!(r=="constructor"&&(t||!te.call(e,r)))){n.push(r)}}return n}function baseMerge(e,t,n,r,i){if(e===t){return}ke(t,function(o,a){i||(i=new Stack);if(isObject(o)){baseMergeDeep(e,t,a,n,baseMerge,r,i)}else{var s=r?r(safeGet(e,a),o,a+"",e,t,i):undefined;if(s===undefined){s=o}assignMergeValue(e,a,s)}},keysIn)}function baseMergeDeep(e,t,n,r,i,o,a){var s=safeGet(e,n),c=safeGet(t,n),u=a.get(c);if(u){assignMergeValue(e,n,u);return}var l=o?o(s,c,n+"",e,t,a):undefined;var f=l===undefined;if(f){var p=_e(c),d=!p&&Ce(c),h=!p&&!d&&Ae(c);l=c;if(p||d||h){if(_e(s)){l=s}else if(isArrayLikeObject(s)){l=copyArray(s)}else if(d){f=false;l=cloneBuffer(c,true)}else if(h){f=false;l=cloneTypedArray(c,true)}else{l=[]}}else if(isPlainObject(c)||Ee(c)){l=s;if(Ee(s)){l=toPlainObject(s)}else if(!isObject(s)||isFunction(s)){l=initCloneObject(c)}}else{f=false}}if(f){a.set(c,l);i(l,c,r,o,a);a["delete"](c)}assignMergeValue(e,n,l)}function baseRest(e,t){return Se(overRest(e,t,identity),e+"")}var je=!me?identity:function(e,t){return me(e,"toString",{configurable:true,enumerable:false,value:constant(t),writable:true})};function cloneBuffer(e,t){if(t){return e.slice()}var n=e.length,r=ue?ue(n):new e.constructor(n);e.copy(r);return r}function cloneArrayBuffer(e){var t=new e.constructor(e.byteLength);new ce(t).set(new ce(e));return t}function cloneTypedArray(e,t){var n=t?cloneArrayBuffer(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function copyArray(e,t){var n=-1,r=e.length;t||(t=Array(r));while(++n<r){t[n]=e[n]}return t}function copyObject(e,t,n,r){var i=!n;n||(n={});var o=-1,a=t.length;while(++o<a){var s=t[o];var c=r?r(n[s],e[s],s,n,e):undefined;if(c===undefined){c=e[s]}if(i){baseAssignValue(n,s,c)}else{assignValue(n,s,c)}}return n}function createAssigner(e){return baseRest(function(t,n){var r=-1,i=n.length,o=i>1?n[i-1]:undefined,a=i>2?n[2]:undefined;o=e.length>3&&typeof o=="function"?(i--,o):undefined;if(a&&isIterateeCall(n[0],n[1],a)){o=i<3?undefined:o;i=1}t=Object(t);while(++r<i){var s=n[r];if(s){e(t,s,r,o)}}return t})}function createBaseFor(e){return function(t,n,r){var i=-1,o=Object(t),a=r(t),s=a.length;while(s--){var c=a[e?s:++i];if(n(o[c],c,o)===false){break}}return t}}function getMapData(e,t){var n=e.__data__;return isKeyable(t)?n[typeof t=="string"?"string":"hash"]:n.map}function getNative(e,t){var n=getValue(e,t);return baseIsNative(n)?n:undefined}function getRawTag(e){var t=te.call(e,he),n=e[he];try{e[he]=undefined;var r=true}catch(e){}var i=re.call(e);if(r){if(t){e[he]=n}else{delete e[he]}}return i}function initCloneObject(e){return typeof e.constructor=="function"&&!isPrototype(e)?xe(le(e)):{}}function isIndex(e,t){var n=typeof e;t=t==null?s:t;return!!t&&(n=="number"||n!="symbol"&&L.test(e))&&(e>-1&&e%1==0&&e<t)}function isIterateeCall(e,t,n){if(!isObject(n)){return false}var r=typeof t;if(r=="number"?isArrayLike(n)&&isIndex(t,n.length):r=="string"&&t in n){return eq(n[t],e)}return false}function isKeyable(e){var t=typeof e;return t=="string"||t=="number"||t=="symbol"||t=="boolean"?e!=="__proto__":e===null}function isMasked(e){return!!ne&&ne in e}function isPrototype(e){var t=e&&e.constructor,n=typeof t=="function"&&t.prototype||K;return e===n}function nativeKeysIn(e){var t=[];if(e!=null){for(var n in Object(e)){t.push(n)}}return t}function objectToString(e){return re.call(e)}function overRest(e,t,n){t=ge(t===undefined?e.length-1:t,0);return function(){var r=arguments,i=-1,o=ge(r.length-t,0),a=Array(o);while(++i<o){a[i]=r[t+i]}i=-1;var s=Array(t+1);while(++i<t){s[i]=r[i]}s[t]=n(a);return apply(e,this,s)}}function safeGet(e,t){if(t==="constructor"&&typeof e[t]==="function"){return}if(t=="__proto__"){return}return e[t]}var Se=shortOut(je);function shortOut(e){var t=0,n=0;return function(){var r=ye(),i=a-(r-n);n=r;if(i>0){if(++t>=o){return arguments[0]}}else{t=0}return e.apply(undefined,arguments)}}function toSource(e){if(e!=null){try{return ee.call(e)}catch(e){}try{return e+""}catch(e){}}return""}function eq(e,t){return e===t||e!==e&&t!==t}var Ee=baseIsArguments(function(){return arguments}())?baseIsArguments:function(e){return isObjectLike(e)&&te.call(e,"callee")&&!pe.call(e,"callee")};var _e=Array.isArray;function isArrayLike(e){return e!=null&&isLength(e.length)&&!isFunction(e)}function isArrayLikeObject(e){return isObjectLike(e)&&isArrayLike(e)}var Ce=ve||stubFalse;function isFunction(e){if(!isObject(e)){return false}var t=baseGetTag(e);return t==h||t==m||t==l||t==w}function isLength(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=s}function isObject(e){var t=typeof e;return e!=null&&(t=="object"||t=="function")}function isObjectLike(e){return e!=null&&typeof e=="object"}function isPlainObject(e){if(!isObjectLike(e)||baseGetTag(e)!=b){return false}var t=le(e);if(t===null){return true}var n=te.call(t,"constructor")&&t.constructor;return typeof n=="function"&&n instanceof n&&ee.call(n)==ie}var Ae=Z?baseUnary(Z):baseIsTypedArray;function toPlainObject(e){return copyObject(e,keysIn(e))}function keysIn(e){return isArrayLike(e)?arrayLikeKeys(e,true):baseKeysIn(e)}var Oe=createAssigner(function(e,t,n){baseMerge(e,t,n)});function constant(e){return function(){return e}}function identity(e){return e}function stubFalse(){return false}e.exports=Oe},7887:function(e,t,n){"use strict";const r=n(9466);class TimeoutError extends Error{constructor(e){super(e);this.name="TimeoutError"}}e.exports=((e,t,n)=>new Promise((i,o)=>{if(typeof t!=="number"||t<0){throw new TypeError("Expected `ms` to be a positive number")}const a=setTimeout(()=>{if(typeof n==="function"){i(n());return}const e=typeof n==="string"?n:`Promise timed out after ${t} milliseconds`;const r=n instanceof Error?n:new TimeoutError(e);o(r)},t);r(e.then(i,o),()=>{clearTimeout(a)})}));e.exports.TimeoutError=TimeoutError},7889:function(e,t,n){"use strict";const r=n(5897);function getRootPath(e){e=r.normalize(r.resolve(e)).split(r.sep);if(e.length>0)return e[0];return null}const i=/[<>:"|?*]/;function invalidWin32Path(e){const t=getRootPath(e);e=e.replace(t,"");return i.test(e)}e.exports={getRootPath:getRootPath,invalidWin32Path:invalidWin32Path}},7891:function(e,t,n){"use strict";var r=this&&this.__await||function(e){return this instanceof r?(this.v=e,this):new r(e)};var i=this&&this.__asyncGenerator||function(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var i=n.apply(e,t||[]),o,a=[];return o={},verb("next"),verb("throw"),verb("return"),o[Symbol.asyncIterator]=function(){return this},o;function verb(e){if(i[e])o[e]=function(t){return new Promise(function(n,r){a.push([e,t,n,r])>1||resume(e,t)})}}function resume(e,t){try{step(i[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof r?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume("next",e)}function reject(e){resume("throw",e)}function settle(e,t){if(e(t),a.shift(),a.length)resume(a[0][0],a[0][1])}};var o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const a=o(n(780));const s=o(n(2229));const c=n(8841);const u=n(5948);function checkDeploymentStatus(e,t,n,o,l){return i(this,arguments,function*checkDeploymentStatus_1(){let i=e;let f=false;const p={};let d=n===2?c.API_DEPLOYMENTS:c.API_DEPLOYMENTS_LEGACY;l(`Using ${n?`${n}.0`:"2.0"} API for status checks`);if(u.isDone(i)){l(`Deployment is already READY. Not running status checks`);return yield r(void 0)}l("Waiting for builds and the deployment to complete...");while(true){if(!f){const n=yield r(c.fetch(`${d}/${e.id}/builds${o?`?teamId=${o}`:""}`,t));const i=yield r(n.json());const{builds:a=[]}=i;for(const e of a){const t=p[e.id];if(!t||t.readyState!==e.readyState){l(`Build state for '${e.entrypoint}' changed to ${e.readyState}`);yield yield r({type:"build-state-changed",payload:e})}if(e.readyState.includes("ERROR")){l(`Build '${e.entrypoint}' has errorred`);return yield r(yield yield r({type:"error",payload:e}))}p[e.id]=e}const s=a.filter(e=>u.isDone(e));if(s.length===a.length){l("All builds completed");f=true;yield yield r({type:"all-builds-completed",payload:s})}}else{const n=yield r(c.fetch(`${d}/${e.id||e.deploymentId}${o?`?teamId=${o}`:""}`,t));const i=yield r(n.json());if(i.error){l("Deployment status check has errorred");return yield r(yield yield r({type:"error",payload:i.error}))}if(u.isReady(i)){l("Deployment state changed to READY");return yield r(yield yield r({type:"ready",payload:i}))}if(u.isFailed(i)){l("Deployment has failed");return yield r(yield yield r({type:"error",payload:i.error||i}))}}yield r(a.default(s.default("1.5s")))}})}t.default=checkDeploymentStatus},7905:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});const r=n(4316);const i=n(5897);function humanizePath(e){const t=i.resolve(e);const n=r.homedir();return t.indexOf(n)===0?`~${t.substr(n.length)}`:t}t.default=humanizePath},7925:function(e,t,n){"use strict";const r=n(662);const i=n(5897);const o=n(3281);const a=e=>{if(typeof e!=="string"||!e){return e}const t=/(\\*)\$\{([^}]+)\}/g;return e.replace(t,(e,t,n)=>{t=t.length>0&&t.length%2;if(t){return e}if(process.env[n]===undefined){throw new Error(`Failed to replace env in config: ${e}`)}return process.env[n]})};const s=(e,t)=>{if(typeof e!=="string"){return e}const n=[].concat(o[t]);const r=n.indexOf(i)!==-1;const s=n.indexOf(Boolean)!==-1;const c=n.indexOf(String)!==-1;const u=n.indexOf(Number)!==-1;e=`${e}`.trim();if(/^".*"$/.test(e)){try{e=JSON.parse(e)}catch(n){throw new Error(`Failed parsing JSON config key ${t}: ${e}`)}}if(s&&!c&&e===""){return true}switch(e){case"true":{return true}case"false":{return false}case"null":{return null}case"undefined":{return undefined}}e=a(e);if(r){const t=process.platform==="win32"?/^~(\/|\\)/:/^~\//;if(t.test(e)&&process.env.HOME){e=i.resolve(process.env.HOME,e.substr(2))}e=i.resolve(e)}if(u&&!e.isNan()){e=Number(e)}return e};const c=e=>{e=i.resolve(e);let t=false;while(i.basename(e)==="node_modules"){e=i.dirname(e);t=true}if(t){return e}const n=(e,t)=>{const o=/^[a-zA-Z]:(\\|\/)?$/;if(e==="/"||process.platform==="win32"&&o.test(e)){return t}try{const o=r.readdirSync(e);if(o.indexOf("node_modules")!==-1||o.indexOf("package.json")!==-1){return e}const a=i.dirname(e);if(a===e){return t}return n(a,t)}catch(n){if(e===t){if(n.code==="ENOENT"){return t}throw n}return t}};return n(e,e)};t.envReplace=a;t.findPrefix=c;t.parseField=s},7928:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const o=n(2721);const a=i(n(8715));function getCertsForDomain(e,t,n,i){return r(this,void 0,void 0,function*(){try{const{certs:e}=yield t.fetch(`/v3/now/certs?${o.stringify({domain:i})}`);return e}catch(e){if(e.code==="forbidden"){return new a.CertsPermissionDenied(n,i)}throw e}})}t.default=getCertsForDomain},7930:function(e){"use strict";e.exports=bytes;e.exports.format=format;e.exports.parse=parse;var t=/\B(?=(\d{3})+(?!\d))/g;var n=/(?:\.0*|(\.[^0]+)0+)$/;var r={b:1,kb:1<<10,mb:1<<20,gb:1<<30,tb:(1<<30)*1024};var i=/^((-|\+)?(\d+(?:\.\d+)?)) *(kb|mb|gb|tb)$/i;function bytes(e,t){if(typeof e==="string"){return parse(e)}if(typeof e==="number"){return format(e,t)}return null}function format(e,i){if(!Number.isFinite(e)){return null}var o=Math.abs(e);var a=i&&i.thousandsSeparator||"";var s=i&&i.unitSeparator||"";var c=i&&i.decimalPlaces!==undefined?i.decimalPlaces:2;var u=Boolean(i&&i.fixedDecimals);var l=i&&i.unit||"";if(!l||!r[l.toLowerCase()]){if(o>=r.tb){l="TB"}else if(o>=r.gb){l="GB"}else if(o>=r.mb){l="MB"}else if(o>=r.kb){l="KB"}else{l="B"}}var f=e/r[l.toLowerCase()];var p=f.toFixed(c);if(!u){p=p.replace(n,"$1")}if(a){p=p.replace(t,a)}return p+s+l}function parse(e){if(typeof e==="number"&&!isNaN(e)){return e}if(typeof e!=="string"){return null}var t=i.exec(e);var n;var o="b";if(!t){n=parseInt(e,10);o="b"}else{n=parseFloat(t[1]);o=t[4].toLowerCase()}return Math.floor(r[o]*n)}},7939:function(e){"use strict";var t="pending";var n="settled";var r="fulfilled";var i="rejected";var o=function(){};var a=typeof global!=="undefined"&&typeof global.process!=="undefined"&&typeof global.process.emit==="function";var s=typeof setImmediate==="undefined"?setTimeout:setImmediate;var c=[];var u;function asyncFlush(){for(var e=0;e<c.length;e++){c[e][0](c[e][1])}c=[];u=false}function asyncCall(e,t){c.push([e,t]);if(!u){u=true;s(asyncFlush,0)}}function invokeResolver(e,t){function resolvePromise(e){resolve(t,e)}function rejectPromise(e){reject(t,e)}try{e(resolvePromise,rejectPromise)}catch(e){rejectPromise(e)}}function invokeCallback(e){var t=e.owner;var n=t._state;var o=t._data;var a=e[n];var s=e.then;if(typeof a==="function"){n=r;try{o=a(o)}catch(e){reject(s,e)}}if(!handleThenable(s,o)){if(n===r){resolve(s,o)}if(n===i){reject(s,o)}}}function handleThenable(e,t){var n;try{if(e===t){throw new TypeError("A promises callback cannot return that same promise.")}if(t&&(typeof t==="function"||typeof t==="object")){var r=t.then;if(typeof r==="function"){r.call(t,function(r){if(!n){n=true;if(t===r){fulfill(e,r)}else{resolve(e,r)}}},function(t){if(!n){n=true;reject(e,t)}});return true}}}catch(t){if(!n){reject(e,t)}return true}return false}function resolve(e,t){if(e===t||!handleThenable(e,t)){fulfill(e,t)}}function fulfill(e,r){if(e._state===t){e._state=n;e._data=r;asyncCall(publishFulfillment,e)}}function reject(e,r){if(e._state===t){e._state=n;e._data=r;asyncCall(publishRejection,e)}}function publish(e){e._then=e._then.forEach(invokeCallback)}function publishFulfillment(e){e._state=r;publish(e)}function publishRejection(e){e._state=i;publish(e);if(!e._handled&&a){global.process.emit("unhandledRejection",e._data,e)}}function notifyRejectionHandled(e){global.process.emit("rejectionHandled",e)}function Promise(e){if(typeof e!=="function"){throw new TypeError("Promise resolver "+e+" is not a function")}if(this instanceof Promise===false){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}this._then=[];invokeResolver(e,this)}Promise.prototype={constructor:Promise,_state:t,_then:null,_data:undefined,_handled:false,then:function(e,t){var n={owner:this,then:new this.constructor(o),fulfilled:e,rejected:t};if((t||e)&&!this._handled){this._handled=true;if(this._state===i&&a){asyncCall(notifyRejectionHandled,this)}}if(this._state===r||this._state===i){asyncCall(invokeCallback,n)}else{this._then.push(n)}return n.then},catch:function(e){return this.then(null,e)}};Promise.all=function(e){if(!Array.isArray(e)){throw new TypeError("You must pass an array to Promise.all().")}return new Promise(function(t,n){var r=[];var i=0;function resolver(e){i++;return function(n){r[e]=n;if(!--i){t(r)}}}for(var o=0,a;o<e.length;o++){a=e[o];if(a&&typeof a.then==="function"){a.then(resolver(o),n)}else{r[o]=a}}if(!i){t(r)}})};Promise.race=function(e){if(!Array.isArray(e)){throw new TypeError("You must pass an array to Promise.race().")}return new Promise(function(t,n){for(var r=0,i;r<e.length;r++){i=e[r];if(i&&typeof i.then==="function"){i.then(t,n)}else{t(i)}}})};Promise.resolve=function(e){if(e&&typeof e==="object"&&e.constructor===Promise){return e}return new Promise(function(t){t(e)})};Promise.reject=function(e){return new Promise(function(t,n){n(e)})};e.exports=Promise},7948:function(e,t,n){var r=n(8434);var i=Object.prototype.hasOwnProperty;var o=typeof Map!=="undefined";function ArraySet(){this._array=[];this._set=o?new Map:Object.create(null)}ArraySet.fromArray=function ArraySet_fromArray(e,t){var n=new ArraySet;for(var r=0,i=e.length;r<i;r++){n.add(e[r],t)}return n};ArraySet.prototype.size=function ArraySet_size(){return o?this._set.size:Object.getOwnPropertyNames(this._set).length};ArraySet.prototype.add=function ArraySet_add(e,t){var n=o?e:r.toSetString(e);var a=o?this.has(e):i.call(this._set,n);var s=this._array.length;if(!a||t){this._array.push(e)}if(!a){if(o){this._set.set(e,s)}else{this._set[n]=s}}};ArraySet.prototype.has=function ArraySet_has(e){if(o){return this._set.has(e)}else{var t=r.toSetString(e);return i.call(this._set,t)}};ArraySet.prototype.indexOf=function ArraySet_indexOf(e){if(o){var t=this._set.get(e);if(t>=0){return t}}else{var n=r.toSetString(e);if(i.call(this._set,n)){return this._set[n]}}throw new Error('"'+e+'" is not in the set.')};ArraySet.prototype.at=function ArraySet_at(e){if(e>=0&&e<this._array.length){return this._array[e]}throw new Error("No element indexed by "+e)};ArraySet.prototype.toArray=function ArraySet_toArray(){return this._array.slice()};t.ArraySet=ArraySet},7955:function(e,t,n){var r=n(2316);var i={"{":"}","(":")","[":"]"};var o=/\\(.)|(^!|\*|[\].+)]\?|\[[^\\\]]+\]|\{[^\\}]+\}|\(\?[:!=][^\\)]+\)|\([^|]+\|[^\\)]+\))/;var a=/\\(.)|(^!|[*?{}()[\]]|\(\?)/;e.exports=function isGlob(e,t){if(typeof e!=="string"||e===""){return false}if(r(e)){return true}var n=o;var s;if(t&&t.strict===false){n=a}while(s=n.exec(e)){if(s[2])return true;var c=s.index+s[0].length;var u=s[1];var l=u?i[u]:null;if(u&&l){var f=e.indexOf(l,c);if(f!==-1){c=f+1}}e=e.slice(c)}return false}},7961:function(e,t,n){var r=n(5897);var i=r.parse||n(6921);var o=function getNodeModulesDirs(e,t){var n="/";if(/^([A-Za-z]:)/.test(e)){n=""}else if(/^\\\\/.test(e)){n="\\\\"}var o=[e];var a=i(e);while(a.dir!==o[o.length-1]){o.push(a.dir);a=i(a.dir)}return o.reduce(function(e,i){return e.concat(t.map(function(e){return r.resolve(n,i,e)}))},[])};e.exports=function nodeModulesPaths(e,t,n){var r=t&&t.moduleDirectory?[].concat(t.moduleDirectory):["node_modules"];if(t&&typeof t.paths==="function"){return t.paths(n,e,function(){return o(e,r)},t)}var i=o(e,r);return t&&t.paths?i.concat(t.paths):i}},7978:function(e){var t=[0,1,3,7,15,31,63,127,255];e.exports=function bitIterator(e){var n=0,r=0;var i=e();var o=function(a){if(a===null&&n!=0){n=0;r++;return}var s=0;while(a>0){if(r>=i.length){r=0;i=e()}var c=8-n;if(n===0&&a>0)o.bytesRead++;if(a>=c){s<<=c;s|=t[c]&i[r++];n=0;a-=c}else{s<<=a;s|=(i[r]&t[a]<<8-a-n)>>8-a-n;n+=a;a=0}}return s};o.bytesRead=0;return o}},7981:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(3760).invalidWin32Path;const a=parseInt("0777",8);function mkdirsSync(e,t,n){if(!t||typeof t!=="object"){t={mode:t}}let s=t.mode;const c=t.fs||r;if(process.platform==="win32"&&o(e)){const t=new Error(e+" contains invalid WIN32 path characters.");t.code="EINVAL";throw t}if(s===undefined){s=a&~process.umask()}if(!n)n=null;e=i.resolve(e);try{c.mkdirSync(e,s);n=n||e}catch(r){if(r.code==="ENOENT"){if(i.dirname(e)===e)throw r;n=mkdirsSync(i.dirname(e),t,n);mkdirsSync(e,t,n)}else{let t;try{t=c.statSync(e)}catch(e){throw r}if(!t.isDirectory())throw r}}return n}e.exports=mkdirsSync},7982:function(e){"use strict";function posix(e){return e.charAt(0)==="/"}function win32(e){var t=/^([a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?([\\\/])?([\s\S]*?)$/;var n=t.exec(e);var r=n[1]||"";var i=Boolean(r&&r.charAt(1)!==":");return Boolean(n[2]||i)}e.exports=process.platform==="win32"?win32:posix;e.exports.posix=posix;e.exports.win32=win32},7991:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));function promptBool(e,t){return r(this,void 0,void 0,function*(){return new Promise(n=>{e.print(`${o.default.gray(">")} ${t} ${o.default.gray("[y/N] ")}`);process.stdin.on("data",e=>{process.stdin.pause();n(e.toString().trim().toLowerCase()==="y")}).resume()})})}t.default=promptBool},7999:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);function forget(e){e.catch(function(e){console.error(e)})}t.forget=forget;function filterAsync(e,t,n){return r.__awaiter(this,void 0,void 0,function(){var i;return r.__generator(this,function(r){switch(r.label){case 0:return[4,Promise.all(e.map(t,n))];case 1:i=r.sent();return[2,e.filter(function(e,t){return i[t]})]}})})}t.filterAsync=filterAsync},8027:function(e,t,n){"use strict";const r=n(5942);const i=n(984);const o=n(5635);e.exports={createFile:r.createFile,createFileSync:r.createFileSync,ensureFile:r.createFile,ensureFileSync:r.createFileSync,createLink:i.createLink,createLinkSync:i.createLinkSync,ensureLink:i.createLink,ensureLinkSync:i.createLinkSync,createSymlink:o.createSymlink,createSymlinkSync:o.createSymlinkSync,ensureSymlink:o.createSymlink,ensureSymlinkSync:o.createSymlinkSync}},8031:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(4316);const a=i(n(496));const s=i(n(5125));const c=i(n(6127));const u=n(5897);const l=n(4362);const f=i(n(9364));const p=n(1120);t.ZipFile=p.ZipFile;t.zipFromFile=p.open;t.zipFromBuffer=p.fromBuffer;const d=c.default("@zeit/fun:unzip");function unzipToTemp(e,t=o.tmpdir()){return r(this,void 0,void 0,function*(){const n=u.join(t,`zeit-fun-${Math.random().toString(16).substring(2)}`);let r;if(Buffer.isBuffer(e)){d("Unzipping buffer (length=%o) to temp dir %o",e.length,n);r=yield p.fromBuffer(e)}else{d("Unzipping %o to temp dir %o",e,n);r=yield p.open(e)}yield unzip(r,n);yield r.close();d("Finished unzipping to %o",n);return n})}t.unzipToTemp=unzipToTemp;const h=e=>new a.default({mode:e.externalFileAttributes>>>16});function unzip(e,t,n={}){return r(this,void 0,void 0,function*(){let r;const i=n.strip||0;while((r=yield e.readEntry())!==null){const e=i===0?r.fileName:r.fileName.split("/").slice(i).join("/");const n=u.join(t,e);if(/\/$/.test(r.fileName)){d("Creating directory %o",n);yield l.mkdirp(n)}else{const[e]=yield Promise.all([r.openReadStream(),l.mkdirp(u.dirname(n))]);const t=h(r);if(t.isSymbolicLink()){const t=String(yield f.default(e));d("Creating symboling link %o to %o",n,t);yield l.symlink(t,n)}else{const r=t.toOctal();const i=parseInt(r,8);if(i===0){d("Unzipping file to %o",n)}else{d("Unzipping file to %o with mode %s (%s)",n,r,String(t))}try{yield l.unlink(n)}catch(e){if(e.code!=="ENOENT"){throw e}}const o=l.createWriteStream(n,{mode:i});yield s.default(e,o)}}}})}t.unzip=unzip},8045:function(e,t,n){var r=n(8434);function generatedPositionAfter(e,t){var n=e.generatedLine;var i=t.generatedLine;var o=e.generatedColumn;var a=t.generatedColumn;return i>n||i==n&&a>=o||r.compareByGeneratedPositionsInflated(e,t)<=0}function MappingList(){this._array=[];this._sorted=true;this._last={generatedLine:-1,generatedColumn:0}}MappingList.prototype.unsortedForEach=function MappingList_forEach(e,t){this._array.forEach(e,t)};MappingList.prototype.add=function MappingList_add(e){if(generatedPositionAfter(this._last,e)){this._last=e;this._array.push(e)}else{this._sorted=false;this._array.push(e)}};MappingList.prototype.toArray=function MappingList_toArray(){if(!this._sorted){this._array.sort(r.compareByGeneratedPositionsInflated);this._sorted=true}return this._array};t.MappingList=MappingList},8051:function(e,t,n){e.exports={read:read,write:write};var r=n(9261);var i=n(3062).Buffer;var o=n(120);var a=n(1946);var s=n(5271);var c=n(4550);var u=n(3252);var l={"rsa-sha1":5,"rsa-sha256":8,"rsa-sha512":10,"ecdsa-p256-sha256":13,"ecdsa-p384-sha384":14};var f={};Object.keys(l).forEach(function(e){f[l[e]]=e.toUpperCase()});function read(e,t){if(typeof e!=="string"){r.buffer(e,"buf");e=e.toString("ascii")}var n=e.split("\n");if(n[0].match(/^Private-key-format\: v1/)){var i=n[1].split(" ");var o=parseInt(i[1],10);var a=i[2];if(!f[o])throw new Error("Unsupported algorithm: "+a);return readDNSSECPrivateKey(o,n.slice(2))}var s=0;while(n[s].match(/^\;/))s++;if((n[s].match(/\. IN KEY /)||n[s].match(/\. IN DNSKEY /))&&n[s+1].length===0){return readRFC3110(n[s])}throw new Error("Cannot parse dnssec key")}function readRFC3110(e){var t=e.split(" ");var n=parseInt(t[5],10);if(!f[n])throw new Error("Unsupported algorithm: "+n);var r=t.slice(6,t.length).join();var a=i.from(r,"base64");if(f[n].match(/^RSA-/)){var c=a.readUInt8(0);if(c!=3&&c!=1)throw new Error("Cannot parse dnssec key: "+"unsupported exponent length");var u=a.slice(1,c+1);u=s.mpNormalize(u);var l=a.slice(1+c);l=s.mpNormalize(l);var p={type:"rsa",parts:[]};p.parts.push({name:"e",data:u});p.parts.push({name:"n",data:l});return new o(p)}if(f[n]==="ECDSA-P384-SHA384"||f[n]==="ECDSA-P256-SHA256"){var d="nistp384";var h=384;if(f[n].match(/^ECDSA-P256-SHA256/)){d="nistp256";h=256}var m={type:"ecdsa",curve:d,size:h,parts:[{name:"curve",data:i.from(d)},{name:"Q",data:s.ecNormalize(a)}]};return new o(m)}throw new Error("Unsupported algorithm: "+f[n])}function elementToBuf(e){return i.from(e.split(" ")[1],"base64")}function readDNSSECRSAPrivateKey(e){var t={};e.forEach(function(e){if(e.split(" ")[0]==="Modulus:")t["n"]=elementToBuf(e);else if(e.split(" ")[0]==="PublicExponent:")t["e"]=elementToBuf(e);else if(e.split(" ")[0]==="PrivateExponent:")t["d"]=elementToBuf(e);else if(e.split(" ")[0]==="Prime1:")t["p"]=elementToBuf(e);else if(e.split(" ")[0]==="Prime2:")t["q"]=elementToBuf(e);else if(e.split(" ")[0]==="Exponent1:")t["dmodp"]=elementToBuf(e);else if(e.split(" ")[0]==="Exponent2:")t["dmodq"]=elementToBuf(e);else if(e.split(" ")[0]==="Coefficient:")t["iqmp"]=elementToBuf(e)});var n={type:"rsa",parts:[{name:"e",data:s.mpNormalize(t["e"])},{name:"n",data:s.mpNormalize(t["n"])},{name:"d",data:s.mpNormalize(t["d"])},{name:"p",data:s.mpNormalize(t["p"])},{name:"q",data:s.mpNormalize(t["q"])},{name:"dmodp",data:s.mpNormalize(t["dmodp"])},{name:"dmodq",data:s.mpNormalize(t["dmodq"])},{name:"iqmp",data:s.mpNormalize(t["iqmp"])}]};return new a(n)}function readDNSSECPrivateKey(e,t){if(f[e].match(/^RSA-/)){return readDNSSECRSAPrivateKey(t)}if(f[e]==="ECDSA-P384-SHA384"||f[e]==="ECDSA-P256-SHA256"){var n=i.from(t[0].split(" ")[1],"base64");var r="nistp384";var o=384;if(f[e]==="ECDSA-P256-SHA256"){r="nistp256";o=256}var c=s.publicFromPrivateECDSA(r,n);var u=c.part["Q"].data;var l={type:"ecdsa",curve:r,size:o,parts:[{name:"curve",data:i.from(r)},{name:"d",data:n},{name:"Q",data:u}]};return new a(l)}throw new Error("Unsupported algorithm: "+f[e])}function dnssecTimestamp(e){var t=e.getFullYear()+"";var n=e.getMonth()+1;var r=t+n+e.getUTCDate();r+=""+e.getUTCHours()+e.getUTCMinutes();r+=e.getUTCSeconds();return r}function rsaAlgFromOptions(e){if(!e||!e.hashAlgo||e.hashAlgo==="sha1")return"5 (RSASHA1)";else if(e.hashAlgo==="sha256")return"8 (RSASHA256)";else if(e.hashAlgo==="sha512")return"10 (RSASHA512)";else throw new Error("Unknown or unsupported hash: "+e.hashAlgo)}function writeRSA(e,t){if(!e.part.dmodp||!e.part.dmodq){s.addRSAMissing(e)}var n="";n+="Private-key-format: v1.3\n";n+="Algorithm: "+rsaAlgFromOptions(t)+"\n";var r=s.mpDenormalize(e.part["n"].data);n+="Modulus: "+r.toString("base64")+"\n";var o=s.mpDenormalize(e.part["e"].data);n+="PublicExponent: "+o.toString("base64")+"\n";var a=s.mpDenormalize(e.part["d"].data);n+="PrivateExponent: "+a.toString("base64")+"\n";var c=s.mpDenormalize(e.part["p"].data);n+="Prime1: "+c.toString("base64")+"\n";var u=s.mpDenormalize(e.part["q"].data);n+="Prime2: "+u.toString("base64")+"\n";var l=s.mpDenormalize(e.part["dmodp"].data);n+="Exponent1: "+l.toString("base64")+"\n";var f=s.mpDenormalize(e.part["dmodq"].data);n+="Exponent2: "+f.toString("base64")+"\n";var p=s.mpDenormalize(e.part["iqmp"].data);n+="Coefficient: "+p.toString("base64")+"\n";var d=new Date;n+="Created: "+dnssecTimestamp(d)+"\n";n+="Publish: "+dnssecTimestamp(d)+"\n";n+="Activate: "+dnssecTimestamp(d)+"\n";return i.from(n,"ascii")}function writeECDSA(e,t){var n="";n+="Private-key-format: v1.3\n";if(e.curve==="nistp256"){n+="Algorithm: 13 (ECDSAP256SHA256)\n"}else if(e.curve==="nistp384"){n+="Algorithm: 14 (ECDSAP384SHA384)\n"}else{throw new Error("Unsupported curve")}var r=e.part["d"].data.toString("base64");n+="PrivateKey: "+r+"\n";var o=new Date;n+="Created: "+dnssecTimestamp(o)+"\n";n+="Publish: "+dnssecTimestamp(o)+"\n";n+="Activate: "+dnssecTimestamp(o)+"\n";return i.from(n,"ascii")}function write(e,t){if(a.isPrivateKey(e)){if(e.type==="rsa"){return writeRSA(e,t)}else if(e.type==="ecdsa"){return writeECDSA(e,t)}else{throw new Error("Unsupported algorithm: "+e.type)}}else if(o.isKey(e)){throw new Error('Format "dnssec" only supports '+"writing private keys")}else{throw new Error("key is not a Key or PrivateKey")}}},8053:function(e){e.exports=require("punycode")},8060:function(e){e.exports=require("tls")},8070:function(module,__unusedexports,__webpack_require__){var callSiteToString=__webpack_require__(3630).callSiteToString;var eventListenerCount=__webpack_require__(3630).eventListenerCount;var relative=__webpack_require__(5897).relative;module.exports=depd;var basePath=process.cwd();function containsNamespace(e,t){var n=e.split(/[ ,]+/);var r=String(t).toLowerCase();for(var i=0;i<n.length;i++){var o=n[i];if(o&&(o==="*"||o.toLowerCase()===r)){return true}}return false}function convertDataDescriptorToAccessor(e,t,n){var r=Object.getOwnPropertyDescriptor(e,t);var i=r.value;r.get=function getter(){return i};if(r.writable){r.set=function setter(e){return i=e}}delete r.value;delete r.writable;Object.defineProperty(e,t,r);return r}function createArgumentsString(e){var t="";for(var n=0;n<e;n++){t+=", arg"+n}return t.substr(2)}function createStackString(e){var t=this.name+": "+this.namespace;if(this.message){t+=" deprecated "+this.message}for(var n=0;n<e.length;n++){t+="\n at "+callSiteToString(e[n])}return t}function depd(e){if(!e){throw new TypeError("argument namespace is required")}var t=getStack();var n=callSiteLocation(t[1]);var r=n[0];function deprecate(e){log.call(deprecate,e)}deprecate._file=r;deprecate._ignored=isignored(e);deprecate._namespace=e;deprecate._traced=istraced(e);deprecate._warned=Object.create(null);deprecate.function=wrapfunction;deprecate.property=wrapproperty;return deprecate}function isignored(e){if(process.noDeprecation){return true}var t=process.env.NO_DEPRECATION||"";return containsNamespace(t,e)}function istraced(e){if(process.traceDeprecation){return true}var t=process.env.TRACE_DEPRECATION||"";return containsNamespace(t,e)}function log(e,t){var n=eventListenerCount(process,"deprecation")!==0;if(!n&&this._ignored){return}var r;var i;var o;var a;var s=0;var c=false;var u=getStack();var l=this._file;if(t){a=t;o=callSiteLocation(u[1]);o.name=a.name;l=o[0]}else{s=2;a=callSiteLocation(u[s]);o=a}for(;s<u.length;s++){r=callSiteLocation(u[s]);i=r[0];if(i===l){c=true}else if(i===this._file){l=this._file}else if(c){break}}var f=r?a.join(":")+"__"+r.join(":"):undefined;if(f!==undefined&&f in this._warned){return}this._warned[f]=true;var p=e;if(!p){p=o===a||!o.name?defaultMessage(a):defaultMessage(o)}if(n){var d=DeprecationError(this._namespace,p,u.slice(s));process.emit("deprecation",d);return}var h=process.stderr.isTTY?formatColor:formatPlain;var m=h.call(this,p,r,u.slice(s));process.stderr.write(m+"\n","utf8")}function callSiteLocation(e){var t=e.getFileName()||"<anonymous>";var n=e.getLineNumber();var r=e.getColumnNumber();if(e.isEval()){t=e.getEvalOrigin()+", "+t}var i=[t,n,r];i.callSite=e;i.name=e.getFunctionName();return i}function defaultMessage(e){var t=e.callSite;var n=e.name;if(!n){n="<anonymous@"+formatLocation(e)+">"}var r=t.getThis();var i=r&&t.getTypeName();if(i==="Object"){i=undefined}if(i==="Function"){i=r.name||i}return i&&t.getMethodName()?i+"."+n:n}function formatPlain(e,t,n){var r=(new Date).toUTCString();var i=r+" "+this._namespace+" deprecated "+e;if(this._traced){for(var o=0;o<n.length;o++){i+="\n at "+callSiteToString(n[o])}return i}if(t){i+=" at "+formatLocation(t)}return i}function formatColor(e,t,n){var r=""+this._namespace+""+" deprecated"+" "+e+"";if(this._traced){for(var i=0;i<n.length;i++){r+="\n at "+callSiteToString(n[i])+""}return r}if(t){r+=" "+formatLocation(t)+""}return r}function formatLocation(e){return relative(basePath,e[0])+":"+e[1]+":"+e[2]}function getStack(){var e=Error.stackTraceLimit;var t={};var n=Error.prepareStackTrace;Error.prepareStackTrace=prepareObjectStackTrace;Error.stackTraceLimit=Math.max(10,e);Error.captureStackTrace(t);var r=t.stack.slice(1);Error.prepareStackTrace=n;Error.stackTraceLimit=e;return r}function prepareObjectStackTrace(e,t){return t}function wrapfunction(fn,message){if(typeof fn!=="function"){throw new TypeError("argument fn must be a function")}var args=createArgumentsString(fn.length);var deprecate=this;var stack=getStack();var site=callSiteLocation(stack[1]);site.name=fn.name;var deprecatedfn=eval("(function ("+args+") {\n"+'"use strict"\n'+"log.call(deprecate, message, site)\n"+"return fn.apply(this, arguments)\n"+"})");return deprecatedfn}function wrapproperty(e,t,n){if(!e||typeof e!=="object"&&typeof e!=="function"){throw new TypeError("argument obj must be object")}var r=Object.getOwnPropertyDescriptor(e,t);if(!r){throw new TypeError("must call property on owner object")}if(!r.configurable){throw new TypeError("property must be configurable")}var i=this;var o=getStack();var a=callSiteLocation(o[1]);a.name=t;if("value"in r){r=convertDataDescriptorToAccessor(e,t,n)}var s=r.get;var c=r.set;if(typeof s==="function"){r.get=function getter(){log.call(i,n,a);return s.apply(this,arguments)}}if(typeof c==="function"){r.set=function setter(){log.call(i,n,a);return c.apply(this,arguments)}}Object.defineProperty(e,t,r)}function DeprecationError(e,t,n){var r=new Error;var i;Object.defineProperty(r,"constructor",{value:DeprecationError});Object.defineProperty(r,"message",{configurable:true,enumerable:false,value:t,writable:true});Object.defineProperty(r,"name",{enumerable:false,configurable:true,value:"DeprecationError",writable:true});Object.defineProperty(r,"namespace",{configurable:true,enumerable:false,value:e,writable:true});Object.defineProperty(r,"stack",{configurable:true,enumerable:false,get:function(){if(i!==undefined){return i}return i=createStackString.call(this,n)},set:function setter(e){i=e}});return r}},8075:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(2229));const s=i(n(3759));const c=n(8715);const u=i(n(4573));const l=i(n(8508));const f=i(n(6167));const p=i(n(4638));const d=i(n(8303));const h=i(n(586));function ls(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:a}=e;const{currentTeam:l}=a;const{apiUrl:m}=e;const v=t["--debug"];const g=new u.default({apiUrl:m,token:r,currentTeam:l,debug:v});let y=null;try{({contextName:y}=yield d.default(g))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){i.error(e.message);return 1}throw e}const[b]=n;const w=h.default();if(n.length>1){i.error(`Invalid number of arguments. Usage: ${o.default.cyan("`now dns ls [domain]`")}`);return 1}if(b){const e=yield p.default(i,g,b);if(e instanceof c.DomainNotFound){i.error(`The domain ${b} can't be found under ${o.default.bold(y)} ${o.default.gray(w())}`);return 1}i.log(`${s.default("Record",e.length,true)} found under ${o.default.bold(y)} ${o.default.gray(w())}`);console.log(getDNSRecordsTable([{domainName:b,records:e}]));return 0}const x=yield f.default(i,g,y);const k=x.reduce((e,t)=>t.records.length+e,0);i.log(`${s.default("Record",k,true)} found under ${o.default.bold(y)} ${o.default.gray(w())}`);console.log(getDNSRecordsTable(x));return 0})}t.default=ls;function getDNSRecordsTable(e){return l.default(["","id","name","type","value","created"],["l","r","l","l","l","l"],e.map(({domainName:e,records:t})=>({name:o.default.bold(e),rows:t.map(getDNSRecordRow)})))}function getDNSRecordRow(e){const t=e.creator==="system";const n=`${a.default(Date.now()-new Date(Number(e.created)).getTime())} ago`;const r=e.mxPriority||e.priority||null;return["",!t?e.id:"",e.name,e.type,r?`${r} ${e.value}`:e.value,o.default.gray(t?"default":n)]}},8077:function(e,t,n){"use strict";e.exports=function(e,t,r,i,o,a){var s=e._getDomain;var c=n(4730);var u=c.tryCatch;var l=c.errorObj;var f=e._async;function MappingPromiseArray(e,t,n,r){this.constructor$(e);this._promise._captureStackTrace();var i=s();this._callback=i===null?t:c.domainBind(i,t);this._preservedValues=r===o?new Array(this.length()):null;this._limit=n;this._inFlight=0;this._queue=[];f.invoke(this._asyncInit,this,undefined)}c.inherits(MappingPromiseArray,t);MappingPromiseArray.prototype._asyncInit=function(){this._init$(undefined,-2)};MappingPromiseArray.prototype._init=function(){};MappingPromiseArray.prototype._promiseFulfilled=function(t,n){var r=this._values;var o=this.length();var s=this._preservedValues;var c=this._limit;if(n<0){n=n*-1-1;r[n]=t;if(c>=1){this._inFlight--;this._drainQueue();if(this._isResolved())return true}}else{if(c>=1&&this._inFlight>=c){r[n]=t;this._queue.push(n);return false}if(s!==null)s[n]=t;var f=this._promise;var p=this._callback;var d=f._boundValue();f._pushContext();var h=u(p).call(d,t,n,o);var m=f._popContext();a.checkForgottenReturns(h,m,s!==null?"Promise.filter":"Promise.map",f);if(h===l){this._reject(h.e);return true}var v=i(h,this._promise);if(v instanceof e){v=v._target();var g=v._bitField;if((g&50397184)===0){if(c>=1)this._inFlight++;r[n]=v;v._proxy(this,(n+1)*-1);return false}else if((g&33554432)!==0){h=v._value()}else if((g&16777216)!==0){this._reject(v._reason());return true}else{this._cancel();return true}}r[n]=h}var y=++this._totalResolved;if(y>=o){if(s!==null){this._filter(r,s)}else{this._resolve(r)}return true}return false};MappingPromiseArray.prototype._drainQueue=function(){var e=this._queue;var t=this._limit;var n=this._values;while(e.length>0&&this._inFlight<t){if(this._isResolved())return;var r=e.pop();this._promiseFulfilled(n[r],r)}};MappingPromiseArray.prototype._filter=function(e,t){var n=t.length;var r=new Array(n);var i=0;for(var o=0;o<n;++o){if(e[o])r[i++]=t[o]}r.length=i;this._resolve(r)};MappingPromiseArray.prototype.preservedValues=function(){return this._preservedValues};function map(t,n,i,o){if(typeof n!=="function"){return r("expecting a function but got "+c.classString(n))}var a=0;if(i!==undefined){if(typeof i==="object"&&i!==null){if(typeof i.concurrency!=="number"){return e.reject(new TypeError("'concurrency' must be a number but it is "+c.classString(i.concurrency)))}a=i.concurrency}else{return e.reject(new TypeError("options argument must be an object but it is "+c.classString(i)))}}a=typeof a==="number"&&isFinite(a)&&a>=1?a:0;return new MappingPromiseArray(t,n,a,o).promise()}e.prototype.map=function(e,t){return map(this,e,t,null)};e.map=function(e,t,n,r){return map(e,t,n,r)}}},8091:function(e,t,n){"use strict";var r=[].concat(n(3199)).concat(n(946));var i=n(5835);e.exports=function(e){var t=0;function hasMore(){return t<e.length}function read(n){if(n instanceof RegExp){var r=e.slice(t);var i=r.match(n);if(i){t+=i[0].length;return i[0]}}else{if(e.indexOf(n,t)===t){t+=n.length;return n}}}function skipWhitespace(){read(/[ ]*/)}function operator(){var n;var r=["WITH","AND","OR","(",")",":","+"];for(var i=0;i<r.length;i++){n=read(r[i]);if(n){break}}if(n==="+"&&t>1&&e[t-2]===" "){throw new Error("Space before `+`")}return n&&{type:"OPERATOR",string:n}}function idstring(){return read(/[A-Za-z0-9-.]+/)}function expectIdstring(){var e=idstring();if(!e){throw new Error("Expected idstring at offset "+t)}return e}function documentRef(){if(read("DocumentRef-")){var e=expectIdstring();return{type:"DOCUMENTREF",string:e}}}function licenseRef(){if(read("LicenseRef-")){var e=expectIdstring();return{type:"LICENSEREF",string:e}}}function identifier(){var e=t;var n=idstring();if(r.indexOf(n)!==-1){return{type:"LICENSE",string:n}}else if(i.indexOf(n)!==-1){return{type:"EXCEPTION",string:n}}t=e}function parseToken(){return operator()||documentRef()||licenseRef()||identifier()}var n=[];while(hasMore()){skipWhitespace();if(!hasMore()){break}var o=parseToken();if(!o){throw new Error("Unexpected `"+e[t]+"` at offset "+t)}n.push(o)}return n}},8094:function(e,t,n){"use strict";const r=n(4316);const i=n(5897);const o=()=>{const e={};e.cache=(()=>process.env.XDG_CACHE_HOME||i.join(r.homedir()||r.tmpdir(),".cache"));e.config=(()=>process.env.XDG_CONFIG_HOME||i.join(r.homedir()||r.tmpdir(),".config"));e.data=(()=>process.env.XDG_DATA_HOME||i.join(r.homedir()||r.tmpdir(),".local","share"));e.runtime=(()=>process.env.XDG_RUNTIME_DIR||undefined);e.state=(()=>process.env.XDG_STATE_HOME||i.join(r.homedir()||r.tmpdir(),".local","state"));return e};const a=()=>{const e={};e.cache=(()=>process.env.XDG_CACHE_HOME||i.join(i.join(r.homedir()||r.tmpdir(),"Library"),"Caches"));e.config=(()=>process.env.XDG_CONFIG_HOME||i.join(i.join(r.homedir()||r.tmpdir(),"Library"),"Preferences"));e.data=(()=>process.env.XDG_DATA_HOME||i.join(i.join(r.homedir()||r.tmpdir(),"Library"),"Application Support"));e.runtime=(()=>process.env.XDG_RUNTIME_DIR||undefined);e.state=(()=>process.env.XDG_STATE_HOME||i.join(i.join(r.homedir()||r.tmpdir(),"Library"),"State"));return e};const s=()=>{const e={};e.cache=(()=>{const e=process.env.LOCALAPPDATA||i.join(r.homedir()||r.tmpdir(),"AppData","Local");return process.env.XDG_CACHE_HOME||i.join(e,"xdg.cache")});e.config=(()=>{const e=process.env.APPDATA||i.join(r.homedir()||r.tmpdir(),"AppData","Roaming");return process.env.XDG_CONFIG_HOME||i.join(e,"xdg.config")});e.data=(()=>{const e=process.env.APPDATA||i.join(r.homedir()||r.tmpdir(),"AppData","Roaming");return process.env.XDG_DATA_HOME||i.join(e,"xdg.data")});e.runtime=(()=>process.env.XDG_RUNTIME_DIR||undefined);e.state=(()=>{const e=process.env.LOCALAPPDATA||i.join(r.homedir()||r.tmpdir(),"AppData","Local");return process.env.XDG_STATE_HOME||i.join(e,"xdg.state")});return e};const c=()=>{const e=function(){return c()};let t={};if(/^darwin$/i.test(process.platform)){t=a()}else if(/^win/i.test(process.platform)){t=s()}else{t=o()}t.configDirs=(()=>{const e=[];e.push(t.config());if(process.env.XDG_CONFIG_DIRS){e.push(...process.env.XDG_CONFIG_DIRS.split(i.delimiter))}return e});t.dataDirs=(()=>{const e=[];e.push(t.data());if(process.env.XDG_DATA_DIRS){e.push(...process.env.XDG_DATA_DIRS.split(i.delimiter))}return e});Object.keys(t).forEach(n=>{e[n]=t[n]});return e};e.exports=c()},8096:function(e,t,n){var r=n(6041);var i=n(7462);var o=n(4045);var a=Object.defineProperty;t.f=n(8205)?Object.defineProperty:function defineProperty(e,t,n){r(e);t=o(t,true);r(n);if(i)try{return a(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");if("value"in n)e[t]=n.value;return e}},8107:function(e,t){function isArray(e){if(Array.isArray){return Array.isArray(e)}return objectToString(e)==="[object Array]"}t.isArray=isArray;function isBoolean(e){return typeof e==="boolean"}t.isBoolean=isBoolean;function isNull(e){return e===null}t.isNull=isNull;function isNullOrUndefined(e){return e==null}t.isNullOrUndefined=isNullOrUndefined;function isNumber(e){return typeof e==="number"}t.isNumber=isNumber;function isString(e){return typeof e==="string"}t.isString=isString;function isSymbol(e){return typeof e==="symbol"}t.isSymbol=isSymbol;function isUndefined(e){return e===void 0}t.isUndefined=isUndefined;function isRegExp(e){return objectToString(e)==="[object RegExp]"}t.isRegExp=isRegExp;function isObject(e){return typeof e==="object"&&e!==null}t.isObject=isObject;function isDate(e){return objectToString(e)==="[object Date]"}t.isDate=isDate;function isError(e){return objectToString(e)==="[object Error]"||e instanceof Error}t.isError=isError;function isFunction(e){return typeof e==="function"}t.isFunction=isFunction;function isPrimitive(e){return e===null||typeof e==="boolean"||typeof e==="number"||typeof e==="string"||typeof e==="symbol"||typeof e==="undefined"}t.isPrimitive=isPrimitive;t.isBuffer=Buffer.isBuffer;function objectToString(e){return Object.prototype.toString.call(e)}},8109:function(e,t,n){"use strict";var r=this&&this.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof __values==="function"?__values(e):e[Symbol.iterator](),n={},verb("next"),verb("throw"),verb("return"),n[Symbol.asyncIterator]=function(){return this},n);function verb(t){n[t]=e[t]&&function(n){return new Promise(function(r,i){n=e[t](n),settle(r,i,n.done,n.value)})}}function settle(e,t,n,r){Promise.resolve(r).then(function(t){e({value:t,done:n})},t)}};var i=this&&this.__await||function(e){return this instanceof i?(this.v=e,this):new i(e)};var o=this&&this.__asyncGenerator||function(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=n.apply(e,t||[]),o,a=[];return o={},verb("next"),verb("throw"),verb("return"),o[Symbol.asyncIterator]=function(){return this},o;function verb(e){if(r[e])o[e]=function(t){return new Promise(function(n,r){a.push([e,t,n,r])>1||resume(e,t)})}}function resume(e,t){try{step(r[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof i?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume("next",e)}function reject(e){resume("throw",e)}function settle(e,t){if(e(t),a.shift(),a.length)resume(a[0][0],a[0][1])}};var a=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const s=a(n(2229));const c=n(8715);const u=a(n(6183));const l=a(n(2701));const f=a(n(4081));const p=a(n(1780));function verifyDeploymentScale(e,t,n,a,d={}){return o(this,arguments,function*verifyDeploymentScale_1(){var o,h;const{timeout:m=s.default("5m")}=d;const{pollingInterval:v=2e3}=d;const g=u.default(()=>l.default(t,n,p.default()),v);const y=f.default(g);const b=getInitialInstancesCountForScale(a);const w=getTargetInstancesCountForScale(a);const x=Date.now();e.debug(`Verifying scale minimum presets to ${JSON.stringify(w)}`);try{for(var k=r(y),j;j=yield i(k.next()),!j.done;){const[e,t]=j.value;if(Date.now()-x>m){yield yield i(new c.VerifyScaleTimeout(m));break}if(e){if(e.status!=="not_ready"){throw e}}else if(t){for(const e of Object.keys(t)){if(t[e].instances.length>b[e]){b[e]=t[e].instances.length;if(b[e]>=w[e]){yield yield i([e,b[e]])}}}if(allDcsMatched(w,b)){break}}}}catch(e){o={error:e}}finally{try{if(j&&!j.done&&(h=k.return))yield i(h.call(k))}finally{if(o)throw o.error}}})}t.default=verifyDeploymentScale;function allDcsMatched(e,t){return Object.keys(e).reduce((n,r)=>n&&t[r]>=e[r],true)}function getTargetInstancesCountForScale(e){return Object.keys(e).reduce((t,n)=>Object.assign({},t,{[n]:Math.min(Math.max(e[n].min,1),e[n].max)}),{})}function getInitialInstancesCountForScale(e){return Object.keys(e).reduce((e,t)=>Object.assign({},e,{[t]:0}),{})}},8110:function(e,t,n){"use strict";var r=n(1504);e.exports=function isObject(e){return e!=null&&typeof e==="object"&&r(e)===false}},8111:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(8715);function removeProject(e,t){return r(this,void 0,void 0,function*(){try{yield e.fetch(`/projects/${encodeURIComponent(t)}`,{method:"DELETE"})}catch(e){if(e.status===404){return new i.ProjectNotFound(t)}throw e}})}t.default=removeProject},8115:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true})},8120:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(1139);e.exports={remove:r(i),removeSync:i.sync}},8130:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(774);const a=i(n(6103));const s=n(8715);function sortByCreated(e,t){const n=new Date(e.created);const r=new Date(t.created);if(n>r){return-1}if(n<r){return 1}return 0}function getCerts(e,t,n){return r(this,void 0,void 0,function*(){const r=new o.URLSearchParams({limit:"100"});if(n&&n.after){const i=yield a.default(e,t,n.after);if(i instanceof s.CertNotFound){throw i}r.set("until",new Date(i.created).getTime().toString())}const{certs:i}=yield t.fetch(`/v3/now/certs?${r}`);return i.sort(sortByCreated)})}t.default=getCerts},8153:function(e,t,n){"use strict";const r=n(662);const i=n(5897);const o=n(1908).mkdirs;const a=n(8975).pathExists;const s=n(6493).utimesMillis;const c=n(7609);function copy(e,t,n,r){if(typeof n==="function"&&!r){r=n;n={}}else if(typeof n==="function"){n={filter:n}}r=r||function(){};n=n||{};n.clobber="clobber"in n?!!n.clobber:true;n.overwrite="overwrite"in n?!!n.overwrite:n.clobber;if(n.preserveTimestamps&&process.arch==="ia32"){console.warn(`fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269`)}c.checkPaths(e,t,"copy",(i,o)=>{if(i)return r(i);const{srcStat:a,destStat:s}=o;c.checkParentPaths(e,a,t,"copy",i=>{if(i)return r(i);if(n.filter)return handleFilter(checkParentDir,s,e,t,n,r);return checkParentDir(s,e,t,n,r)})})}function checkParentDir(e,t,n,r,s){const c=i.dirname(n);a(c,(i,a)=>{if(i)return s(i);if(a)return startCopy(e,t,n,r,s);o(c,i=>{if(i)return s(i);return startCopy(e,t,n,r,s)})})}function handleFilter(e,t,n,r,i,o){Promise.resolve(i.filter(n,r)).then(a=>{if(a)return e(t,n,r,i,o);return o()},e=>o(e))}function startCopy(e,t,n,r,i){if(r.filter)return handleFilter(getStats,e,t,n,r,i);return getStats(e,t,n,r,i)}function getStats(e,t,n,i,o){const a=i.dereference?r.stat:r.lstat;a(t,(r,a)=>{if(r)return o(r);if(a.isDirectory())return onDir(a,e,t,n,i,o);else if(a.isFile()||a.isCharacterDevice()||a.isBlockDevice())return onFile(a,e,t,n,i,o);else if(a.isSymbolicLink())return onLink(e,t,n,i,o)})}function onFile(e,t,n,r,i,o){if(!t)return copyFile(e,n,r,i,o);return mayCopyFile(e,n,r,i,o)}function mayCopyFile(e,t,n,i,o){if(i.overwrite){r.unlink(n,r=>{if(r)return o(r);return copyFile(e,t,n,i,o)})}else if(i.errorOnExist){return o(new Error(`'${n}' already exists`))}else return o()}function copyFile(e,t,n,i,o){if(typeof r.copyFile==="function"){return r.copyFile(t,n,t=>{if(t)return o(t);return setDestModeAndTimestamps(e,n,i,o)})}return copyFileFallback(e,t,n,i,o)}function copyFileFallback(e,t,n,i,o){const a=r.createReadStream(t);a.on("error",e=>o(e)).once("open",()=>{const t=r.createWriteStream(n,{mode:e.mode});t.on("error",e=>o(e)).on("open",()=>a.pipe(t)).once("close",()=>setDestModeAndTimestamps(e,n,i,o))})}function setDestModeAndTimestamps(e,t,n,i){r.chmod(t,e.mode,r=>{if(r)return i(r);if(n.preserveTimestamps){return s(t,e.atime,e.mtime,i)}return i()})}function onDir(e,t,n,r,i,o){if(!t)return mkDirAndCopy(e,n,r,i,o);if(t&&!t.isDirectory()){return o(new Error(`Cannot overwrite non-directory '${r}' with directory '${n}'.`))}return copyDir(n,r,i,o)}function mkDirAndCopy(e,t,n,i,o){r.mkdir(n,a=>{if(a)return o(a);copyDir(t,n,i,t=>{if(t)return o(t);return r.chmod(n,e.mode,o)})})}function copyDir(e,t,n,i){r.readdir(e,(r,o)=>{if(r)return i(r);return copyDirItems(o,e,t,n,i)})}function copyDirItems(e,t,n,r,i){const o=e.pop();if(!o)return i();return copyDirItem(e,o,t,n,r,i)}function copyDirItem(e,t,n,r,o,a){const s=i.join(n,t);const u=i.join(r,t);c.checkPaths(s,u,"copy",(t,i)=>{if(t)return a(t);const{destStat:c}=i;startCopy(c,s,u,o,t=>{if(t)return a(t);return copyDirItems(e,n,r,o,a)})})}function onLink(e,t,n,o,a){r.readlink(t,(t,s)=>{if(t)return a(t);if(o.dereference){s=i.resolve(process.cwd(),s)}if(!e){return r.symlink(s,n,a)}else{r.readlink(n,(t,u)=>{if(t){if(t.code==="EINVAL"||t.code==="UNKNOWN")return r.symlink(s,n,a);return a(t)}if(o.dereference){u=i.resolve(process.cwd(),u)}if(c.isSrcSubdir(s,u)){return a(new Error(`Cannot copy '${s}' to a subdirectory of itself, '${u}'.`))}if(e.isDirectory()&&c.isSrcSubdir(u,s)){return a(new Error(`Cannot overwrite '${u}' with '${s}'.`))}return copyLink(s,n,a)})}})}function copyLink(e,t,n){r.unlink(t,i=>{if(i)return n(i);return r.symlink(e,t,n)})}e.exports=copy},8158:function(e,t,n){"use strict";var r=n(1537);var i=n(8731);var o=n(2674);e.exports={create:o({method:"POST"}),list:o({method:"GET"}),retrieve:o({method:"GET",path:"/{id}",urlParams:["id"]}),update:o({method:"POST",path:"{id}",urlParams:["id"]}),del:o({method:"DELETE",path:"{id}",urlParams:["id"]}),setMetadata:function(e,t,n,o,a){var s=this;var c=t;var u=i(t);var l=c===null||u&&!Object.keys(c).length;if((l||u)&&typeof n=="string"){o=n}else if(typeof o!="string"){if(!a&&typeof o=="function"){a=o}o=null}var f=this.createUrlData();var p=this.createFullPath("/"+e,f);return this.wrapTimeout(new r(function(e,r){if(l){sendMetadata(null,o)}else if(!u){var i={};i[t]=n;sendMetadata(i,o)}else{this._request("POST",p,{metadata:null},o,{},function(e,t){if(e){return r(e)}sendMetadata(c,o)})}function sendMetadata(t,n){s._request("POST",p,{metadata:t},n,{},function(t,n){if(t){r(t)}else{e(n.metadata)}})}}.bind(this)),a)},getMetadata:function(e,t,n){if(!n&&typeof t=="function"){n=t;t=null}var i=this.createUrlData();var o=this.createFullPath("/"+e,i);return this.wrapTimeout(new r(function(e,n){this._request("GET",o,{},t,{},function(t,r){if(t){n(t)}else{e(r.metadata)}})}.bind(this)),n)}}},8161:function(e,t,n){e.exports=Identity;var r=n(9261);var i=n(6977);var o=n(2984);var a=n(3941);var s=n(5511);var c=n(7825);var u=n(649);var l=n(5271);var f=n(4833);var p=n(3062).Buffer;var d=/^([*]|[a-z0-9][a-z0-9\-]{0,62})(?:\.([*]|[a-z0-9][a-z0-9\-]{0,62}))*$/i;var h={};h.cn="2.5.4.3";h.o="2.5.4.10";h.ou="2.5.4.11";h.l="2.5.4.7";h.s="2.5.4.8";h.c="2.5.4.6";h.sn="2.5.4.4";h.postalCode="2.5.4.17";h.serialNumber="2.5.4.5";h.street="2.5.4.9";h.x500UniqueIdentifier="2.5.4.45";h.role="2.5.4.72";h.telephoneNumber="2.5.4.20";h.description="2.5.4.13";h.dc="0.9.2342.19200300.100.1.25";h.uid="0.9.2342.19200300.100.1.1";h.mail="0.9.2342.19200300.100.1.3";h.title="2.5.4.12";h.gn="2.5.4.42";h.initials="2.5.4.43";h.pseudonym="2.5.4.65";h.emailAddress="1.2.840.113549.1.9.1";var m={};Object.keys(h).forEach(function(e){m[h[e]]=e});function Identity(e){var t=this;r.object(e,"options");r.arrayOfObject(e.components,"options.components");this.components=e.components;this.componentLookup={};this.components.forEach(function(e){if(e.name&&!e.oid)e.oid=h[e.name];if(e.oid&&!e.name)e.name=m[e.oid];if(t.componentLookup[e.name]===undefined)t.componentLookup[e.name]=[];t.componentLookup[e.name].push(e)});if(this.componentLookup.cn&&this.componentLookup.cn.length>0){this.cn=this.componentLookup.cn[0].value}r.optionalString(e.type,"options.type");if(e.type===undefined){if(this.components.length===1&&this.componentLookup.cn&&this.componentLookup.cn.length===1&&this.componentLookup.cn[0].value.match(d)){this.type="host";this.hostname=this.componentLookup.cn[0].value}else if(this.componentLookup.dc&&this.components.length===this.componentLookup.dc.length){this.type="host";this.hostname=this.componentLookup.dc.map(function(e){return e.value}).join(".")}else if(this.componentLookup.uid&&this.components.length===this.componentLookup.uid.length){this.type="user";this.uid=this.componentLookup.uid[0].value}else if(this.componentLookup.cn&&this.componentLookup.cn.length===1&&this.componentLookup.cn[0].value.match(d)){this.type="host";this.hostname=this.componentLookup.cn[0].value}else if(this.componentLookup.uid&&this.componentLookup.uid.length===1){this.type="user";this.uid=this.componentLookup.uid[0].value}else if(this.componentLookup.mail&&this.componentLookup.mail.length===1){this.type="email";this.email=this.componentLookup.mail[0].value}else if(this.componentLookup.cn&&this.componentLookup.cn.length===1){this.type="user";this.uid=this.componentLookup.cn[0].value}else{this.type="unknown"}}else{this.type=e.type;if(this.type==="host")this.hostname=e.hostname;else if(this.type==="user")this.uid=e.uid;else if(this.type==="email")this.email=e.email;else throw new Error("Unknown type "+this.type)}}Identity.prototype.toString=function(){return this.components.map(function(e){var t=e.name.toUpperCase();t=t.replace(/=/g,"\\=");var n=e.value;n=n.replace(/,/g,"\\,");return t+"="+n}).join(", ")};Identity.prototype.get=function(e,t){r.string(e,"name");var n=this.componentLookup[e];if(n===undefined||n.length===0)return undefined;if(!t&&n.length>1)throw new Error("Multiple values for attribute "+e);if(!t)return n[0].value;return n.map(function(e){return e.value})};Identity.prototype.toArray=function(e){return this.components.map(function(e){return{name:e.name,value:e.value}})};var v=/[^a-zA-Z0-9 '(),+.\/:=?-]/;var g=/[^\x00-\x7f]/;Identity.prototype.toAsn1=function(e,t){e.startSequence(t);this.components.forEach(function(t){e.startSequence(f.Ber.Constructor|f.Ber.Set);e.startSequence();e.writeOID(t.oid);if(t.asn1type===f.Ber.Utf8String||t.value.match(g)){var n=p.from(t.value,"utf8");e.writeBuffer(n,f.Ber.Utf8String)}else if(t.asn1type===f.Ber.IA5String||t.value.match(v)){e.writeString(t.value,f.Ber.IA5String)}else{var r=f.Ber.PrintableString;if(t.asn1type!==undefined)r=t.asn1type;e.writeString(t.value,r)}e.endSequence();e.endSequence()});e.endSequence()};function globMatch(e,t){if(e==="**"||t==="**")return true;var n=e.split(".");var r=t.split(".");if(n.length!==r.length)return false;for(var i=0;i<n.length;++i){if(n[i]==="*"||r[i]==="*")continue;if(n[i]!==r[i])return false}return true}Identity.prototype.equals=function(e){if(!Identity.isIdentity(e,[1,0]))return false;if(e.components.length!==this.components.length)return false;for(var t=0;t<this.components.length;++t){if(this.components[t].oid!==e.components[t].oid)return false;if(!globMatch(this.components[t].value,e.components[t].value)){return false}}return true};Identity.forHost=function(e){r.string(e,"hostname");return new Identity({type:"host",hostname:e,components:[{name:"cn",value:e}]})};Identity.forUser=function(e){r.string(e,"uid");return new Identity({type:"user",uid:e,components:[{name:"uid",value:e}]})};Identity.forEmail=function(e){r.string(e,"email");return new Identity({type:"email",email:e,components:[{name:"mail",value:e}]})};Identity.parseDN=function(e){r.string(e,"dn");var t=[""];var n=0;var i=e;while(i.length>0){var o;if((o=/^,/.exec(i))!==null){t[++n]="";i=i.slice(o[0].length)}else if((o=/^\\,/.exec(i))!==null){t[n]+=",";i=i.slice(o[0].length)}else if((o=/^\\./.exec(i))!==null){t[n]+=o[0];i=i.slice(o[0].length)}else if((o=/^[^\\,]+/.exec(i))!==null){t[n]+=o[0];i=i.slice(o[0].length)}else{throw new Error("Failed to parse DN")}}var a=t.map(function(e){e=e.trim();var t=e.indexOf("=");while(t>0&&e.charAt(t-1)==="\\")t=e.indexOf("=",t+1);if(t===-1){throw new Error("Failed to parse DN")}var n=e.slice(0,t).toLowerCase().replace(/\\=/g,"=");var r=e.slice(t+1);return{name:n,value:r}});return new Identity({components:a})};Identity.fromArray=function(e){r.arrayOfObject(e,"components");e.forEach(function(e){r.object(e,"component");r.string(e.name,"component.name");if(!p.isBuffer(e.value)&&!(typeof e.value==="string")){throw new Error("Invalid component value")}});return new Identity({components:e})};Identity.parseAsn1=function(e,t){var n=[];e.readSequence(t);var r=e.offset+e.length;while(e.offset<r){e.readSequence(f.Ber.Constructor|f.Ber.Set);var i=e.offset+e.length;e.readSequence();var o=e.readOID();var a=e.peek();var s;switch(a){case f.Ber.PrintableString:case f.Ber.IA5String:case f.Ber.OctetString:case f.Ber.T61String:s=e.readString(a);break;case f.Ber.Utf8String:s=e.readString(a,true);s=s.toString("utf8");break;case f.Ber.CharacterString:case f.Ber.BMPString:s=e.readString(a,true);s=s.toString("utf16le");break;default:throw new Error("Unknown asn1 type "+a)}n.push({oid:o,asn1type:a,value:s});e._offset=i}e._offset=r;return new Identity({components:n})};Identity.isIdentity=function(e,t){return l.isCompatible(e,Identity,t)};Identity.prototype._sshpkApiVersion=[1,0];Identity._oldVersionDetect=function(e){return[1,0]}},8162:function(e,t,n){var r=n(120);var i=n(3941);var o=n(5511);var a=n(1946);var s=n(6399);var c=n(8161);var u=n(7825);e.exports={Key:r,parseKey:r.parse,Fingerprint:i,parseFingerprint:i.parse,Signature:o,parseSignature:o.parse,PrivateKey:a,parsePrivateKey:a.parse,generatePrivateKey:a.generate,Certificate:s,parseCertificate:s.parse,createSelfSignedCertificate:s.createSelfSigned,createCertificate:s.create,Identity:c,identityFromDN:c.parseDN,identityForHost:c.forHost,identityForUser:c.forUser,identityForEmail:c.forEmail,identityFromArray:c.fromArray,FingerprintFormatError:u.FingerprintFormatError,InvalidAlgorithmError:u.InvalidAlgorithmError,KeyParseError:u.KeyParseError,SignatureParseError:u.SignatureParseError,KeyEncryptedError:u.KeyEncryptedError,CertificateParseError:u.CertificateParseError}},8169:function(e){e.exports=[["8740","䏰䰲䘃䖦䕸𧉧䵷䖳𧲱䳢𧳅㮕䜶䝄䱇䱀𤊿𣘗𧍒𦺋𧃒䱗𪍑䝏䗚䲅𧱬䴇䪤䚡𦬣爥𥩔𡩣𣸆𣽡晍囻"],["8767","綕夝𨮹㷴霴𧯯寛𡵞媤㘥𩺰嫑宷峼杮薓𩥅瑡璝㡵𡵓𣚞𦀡㻬"],["87a1","𥣞㫵竼龗𤅡𨤍𣇪𠪊𣉞䌊蒄龖鐯䤰蘓墖靊鈘秐稲晠権袝瑌篅枂稬剏遆㓦珄𥶹瓆鿇垳䤯呌䄱𣚎堘穲𧭥讏䚮𦺈䆁𥶙箮𢒼鿈𢓁𢓉𢓌鿉蔄𣖻䂴鿊䓡𪷿拁灮鿋"],["8840","㇀",4,"𠄌㇅𠃑𠃍㇆㇇𠃋𡿨㇈𠃊㇉㇊㇋㇌𠄎㇍㇎ĀÁǍÀĒÉĚÈŌÓǑÒ࿿Ê̄Ế࿿Ê̌ỀÊāáǎàɑēéěèīíǐìōóǒòūúǔùǖǘǚ"],["88a1","ǜü࿿ê̄ế࿿ê̌ềêɡ⏚⏛"],["8940","𪎩𡅅"],["8943","攊"],["8946","丽滝鵎釟"],["894c","𧜵撑会伨侨兖兴农凤务动医华发变团声处备夲头学实実岚庆总斉柾栄桥济炼电纤纬纺织经统缆缷艺苏药视设询车轧轮"],["89a1","琑糼緍楆竉刧"],["89ab","醌碸酞肼"],["89b0","贋胶𠧧"],["89b5","肟黇䳍鷉鸌䰾𩷶𧀎鸊𪄳㗁"],["89c1","溚舾甙"],["89c5","䤑马骏龙禇𨑬𡷊𠗐𢫦两亁亀亇亿仫伷㑌侽㹈倃傈㑽㒓㒥円夅凛凼刅争剹劐匧㗇厩㕑厰㕓参吣㕭㕲㚁咓咣咴咹哐哯唘唣唨㖘唿㖥㖿嗗㗅"],["8a40","𧶄唥"],["8a43","𠱂𠴕𥄫喐𢳆㧬𠍁蹆𤶸𩓥䁓𨂾睺𢰸㨴䟕𨅝𦧲𤷪擝𠵼𠾴𠳕𡃴撍蹾𠺖𠰋𠽤𢲩𨉖𤓓"],["8a64","𠵆𩩍𨃩䟴𤺧𢳂骲㩧𩗴㿭㔆𥋇𩟔𧣈𢵄鵮頕"],["8a76","䏙𦂥撴哣𢵌𢯊𡁷㧻𡁯"],["8aa1","𦛚𦜖𧦠擪𥁒𠱃蹨𢆡𨭌𠜱"],["8aac","䠋𠆩㿺塳𢶍"],["8ab2","𤗈𠓼𦂗𠽌𠶖啹䂻䎺"],["8abb","䪴𢩦𡂝膪飵𠶜捹㧾𢝵跀嚡摼㹃"],["8ac9","𪘁𠸉𢫏𢳉"],["8ace","𡃈𣧂㦒㨆𨊛㕸𥹉𢃇噒𠼱𢲲𩜠㒼氽𤸻"],["8adf","𧕴𢺋𢈈𪙛𨳍𠹺𠰴𦠜羓𡃏𢠃𢤹㗻𥇣𠺌𠾍𠺪㾓𠼰𠵇𡅏𠹌"],["8af6","𠺫𠮩𠵈𡃀𡄽㿹𢚖搲𠾭"],["8b40","𣏴𧘹𢯎𠵾𠵿𢱑𢱕㨘𠺘𡃇𠼮𪘲𦭐𨳒𨶙𨳊閪哌苄喹"],["8b55","𩻃鰦骶𧝞𢷮煀腭胬尜𦕲脴㞗卟𨂽醶𠻺𠸏𠹷𠻻㗝𤷫㘉𠳖嚯𢞵𡃉𠸐𠹸𡁸𡅈𨈇𡑕𠹹𤹐𢶤婔𡀝𡀞𡃵𡃶垜𠸑"],["8ba1","𧚔𨋍𠾵𠹻𥅾㜃𠾶𡆀𥋘𪊽𤧚𡠺𤅷𨉼墙剨㘚𥜽箲孨䠀䬬鼧䧧鰟鮍𥭴𣄽嗻㗲嚉丨夂𡯁屮靑𠂆乛亻㔾尣彑忄㣺扌攵歺氵氺灬爫丬犭𤣩罒礻糹罓𦉪㓁"],["8bde","𦍋耂肀𦘒𦥑卝衤见𧢲讠贝钅镸长门𨸏韦页风飞饣𩠐鱼鸟黄歯龜丷𠂇阝户钢"],["8c40","倻淾𩱳龦㷉袏𤅎灷峵䬠𥇍㕙𥴰愢𨨲辧釶熑朙玺𣊁𪄇㲋𡦀䬐磤琂冮𨜏䀉橣𪊺䈣蘏𠩯稪𩥇𨫪靕灍匤𢁾鏴盙𨧣龧矝亣俰傼丯众龨吴綋墒壐𡶶庒庙忂𢜒斋"],["8ca1","𣏹椙橃𣱣泿"],["8ca7","爀𤔅玌㻛𤨓嬕璹讃𥲤𥚕窓篬糃繬苸薗龩袐龪躹龫迏蕟駠鈡龬𨶹𡐿䁱䊢娚"],["8cc9","顨杫䉶圽"],["8cce","藖𤥻芿𧄍䲁𦵴嵻𦬕𦾾龭龮宖龯曧繛湗秊㶈䓃𣉖𢞖䎚䔶"],["8ce6","峕𣬚諹屸㴒𣕑嵸龲煗䕘𤃬𡸣䱷㥸㑊𠆤𦱁諌侴𠈹妿腬顖𩣺弻"],["8d40","𠮟"],["8d42","𢇁𨥭䄂䚻𩁹㼇龳𪆵䃸㟖䛷𦱆䅼𨚲𧏿䕭㣔𥒚䕡䔛䶉䱻䵶䗪㿈𤬏㙡䓞䒽䇭崾嵈嵖㷼㠏嶤嶹㠠㠸幂庽弥徃㤈㤔㤿㥍惗愽峥㦉憷憹懏㦸戬抐拥挘㧸嚱"],["8da1","㨃揢揻搇摚㩋擀崕嘡龟㪗斆㪽旿晓㫲暒㬢朖㭂枤栀㭘桊梄㭲㭱㭻椉楃牜楤榟榅㮼槖㯝橥橴橱檂㯬檙㯲檫檵櫔櫶殁毁毪汵沪㳋洂洆洦涁㳯涤涱渕渘温溆𨧀溻滢滚齿滨滩漤漴㵆𣽁澁澾㵪㵵熷岙㶊瀬㶑灐灔灯灿炉𠌥䏁㗱𠻘"],["8e40","𣻗垾𦻓焾𥟠㙎榢𨯩孴穉𥣡𩓙穥穽𥦬窻窰竂竃燑𦒍䇊竚竝竪䇯咲𥰁笋筕笩𥌎𥳾箢筯莜𥮴𦱿篐萡箒箸𥴠㶭𥱥蒒篺簆簵𥳁籄粃𤢂粦晽𤕸糉糇糦籴糳糵糎"],["8ea1","繧䔝𦹄絝𦻖璍綉綫焵綳緒𤁗𦀩緤㴓緵𡟹緥𨍭縝𦄡𦅚繮纒䌫鑬縧罀罁罇礶𦋐駡羗𦍑羣𡙡𠁨䕜𣝦䔃𨌺翺𦒉者耈耝耨耯𪂇𦳃耻耼聡𢜔䦉𦘦𣷣𦛨朥肧𨩈脇脚墰𢛶汿𦒘𤾸擧𡒊舘𡡞橓𤩥𤪕䑺舩𠬍𦩒𣵾俹𡓽蓢荢𦬊𤦧𣔰𡝳𣷸芪椛芳䇛"],["8f40","蕋苐茚𠸖𡞴㛁𣅽𣕚艻苢茘𣺋𦶣𦬅𦮗𣗎㶿茝嗬莅䔋𦶥莬菁菓㑾𦻔橗蕚㒖𦹂𢻯葘𥯤葱㷓䓤檧葊𣲵祘蒨𦮖𦹷𦹃蓞萏莑䒠蒓蓤𥲑䉀𥳀䕃蔴嫲𦺙䔧蕳䔖枿蘖"],["8fa1","𨘥𨘻藁𧂈蘂𡖂𧃍䕫䕪蘨㙈𡢢号𧎚虾蝱𪃸蟮𢰧螱蟚蠏噡虬桖䘏衅衆𧗠𣶹𧗤衞袜䙛袴袵揁装睷𧜏覇覊覦覩覧覼𨨥觧𧤤𧪽誜瞓釾誐𧩙竩𧬺𣾏䜓𧬸煼謌謟𥐰𥕥謿譌譍誩𤩺讐讛誯𡛟䘕衏貛𧵔𧶏貫㜥𧵓賖𧶘𧶽贒贃𡤐賛灜贑𤳉㻐起"],["9040","趩𨀂𡀔𤦊㭼𨆼𧄌竧躭躶軃鋔輙輭𨍥𨐒辥錃𪊟𠩐辳䤪𨧞𨔽𣶻廸𣉢迹𪀔𨚼𨔁𢌥㦀𦻗逷𨔼𧪾遡𨕬𨘋邨𨜓郄𨛦邮都酧㫰醩釄粬𨤳𡺉鈎沟鉁鉢𥖹銹𨫆𣲛𨬌𥗛"],["90a1","𠴱錬鍫𨫡𨯫炏嫃𨫢𨫥䥥鉄𨯬𨰹𨯿鍳鑛躼閅閦鐦閠濶䊹𢙺𨛘𡉼𣸮䧟氜陻隖䅬隣𦻕懚隶磵𨫠隽双䦡𦲸𠉴𦐐𩂯𩃥𤫑𡤕𣌊霱虂霶䨏䔽䖅𤫩灵孁霛靜𩇕靗孊𩇫靟鐥僐𣂷𣂼鞉鞟鞱鞾韀韒韠𥑬韮琜𩐳響韵𩐝𧥺䫑頴頳顋顦㬎𧅵㵑𠘰𤅜"],["9140","𥜆飊颷飈飇䫿𦴧𡛓喰飡飦飬鍸餹𤨩䭲𩡗𩤅駵騌騻騐驘𥜥㛄𩂱𩯕髠髢𩬅髴䰎鬔鬭𨘀倴鬴𦦨㣃𣁽魐魀𩴾婅𡡣鮎𤉋鰂鯿鰌𩹨鷔𩾷𪆒𪆫𪃡𪄣𪇟鵾鶃𪄴鸎梈"],["91a1","鷄𢅛𪆓𪈠𡤻𪈳鴹𪂹𪊴麐麕麞麢䴴麪麯𤍤黁㭠㧥㴝伲㞾𨰫鼂鼈䮖鐤𦶢鼗鼖鼹嚟嚊齅馸𩂋韲葿齢齩竜龎爖䮾𤥵𤦻煷𤧸𤍈𤩑玞𨯚𡣺禟𨥾𨸶鍩鏳𨩄鋬鎁鏋𨥬𤒹爗㻫睲穃烐𤑳𤏸煾𡟯炣𡢾𣖙㻇𡢅𥐯𡟸㜢𡛻𡠹㛡𡝴𡣑𥽋㜣𡛀坛𤨥𡏾𡊨"],["9240","𡏆𡒶蔃𣚦蔃葕𤦔𧅥𣸱𥕜𣻻𧁒䓴𣛮𩦝𦼦柹㜳㰕㷧塬𡤢栐䁗𣜿𤃡𤂋𤄏𦰡哋嚞𦚱嚒𠿟𠮨𠸍鏆𨬓鎜仸儫㠙𤐶亼𠑥𠍿佋侊𥙑婨𠆫𠏋㦙𠌊𠐔㐵伩𠋀𨺳𠉵諚𠈌亘"],["92a1","働儍侢伃𤨎𣺊佂倮偬傁俌俥偘僼兙兛兝兞湶𣖕𣸹𣺿浲𡢄𣺉冨凃𠗠䓝𠒣𠒒𠒑赺𨪜𠜎剙劤𠡳勡鍮䙺熌𤎌𠰠𤦬𡃤槑𠸝瑹㻞璙琔瑖玘䮎𤪼𤂍叐㖄爏𤃉喴𠍅响𠯆圝鉝雴鍦埝垍坿㘾壋媙𨩆𡛺𡝯𡜐娬妸銏婾嫏娒𥥆𡧳𡡡𤊕㛵洅瑃娡𥺃"],["9340","媁𨯗𠐓鏠璌𡌃焅䥲鐈𨧻鎽㞠尞岞幞幈𡦖𡥼𣫮廍孏𡤃𡤄㜁𡢠㛝𡛾㛓脪𨩇𡶺𣑲𨦨弌弎𡤧𡞫婫𡜻孄蘔𧗽衠恾𢡠𢘫忛㺸𢖯𢖾𩂈𦽳懀𠀾𠁆𢘛憙憘恵𢲛𢴇𤛔𩅍"],["93a1","摱𤙥𢭪㨩𢬢𣑐𩣪𢹸挷𪑛撶挱揑𤧣𢵧护𢲡搻敫楲㯴𣂎𣊭𤦉𣊫唍𣋠𡣙𩐿曎𣊉𣆳㫠䆐𥖄𨬢𥖏𡛼𥕛𥐥磮𣄃𡠪𣈴㑤𣈏𣆂𤋉暎𦴤晫䮓昰𧡰𡷫晣𣋒𣋡昞𥡲㣑𣠺𣞼㮙𣞢𣏾瓐㮖枏𤘪梶栞㯄檾㡣𣟕𤒇樳橒櫉欅𡤒攑梘橌㯗橺歗𣿀𣲚鎠鋲𨯪𨫋"],["9440","銉𨀞𨧜鑧涥漋𤧬浧𣽿㶏渄𤀼娽渊塇洤硂焻𤌚𤉶烱牐犇犔𤞏𤜥兹𤪤𠗫瑺𣻸𣙟𤩊𤤗𥿡㼆㺱𤫟𨰣𣼵悧㻳瓌琼鎇琷䒟𦷪䕑疃㽣𤳙𤴆㽘畕癳𪗆㬙瑨𨫌𤦫𤦎㫻"],["94a1","㷍𤩎㻿𤧅𤣳釺圲鍂𨫣𡡤僟𥈡𥇧睸𣈲眎眏睻𤚗𣞁㩞𤣰琸璛㺿𤪺𤫇䃈𤪖𦆮錇𥖁砞碍碈磒珐祙𧝁𥛣䄎禛蒖禥樭𣻺稺秴䅮𡛦䄲鈵秱𠵌𤦌𠊙𣶺𡝮㖗啫㕰㚪𠇔𠰍竢婙𢛵𥪯𥪜娍𠉛磰娪𥯆竾䇹籝籭䈑𥮳𥺼𥺦糍𤧹𡞰粎籼粮檲緜縇緓罎𦉡"],["9540","𦅜𧭈綗𥺂䉪𦭵𠤖柖𠁎𣗏埄𦐒𦏸𤥢翝笧𠠬𥫩𥵃笌𥸎駦虅驣樜𣐿㧢𤧷𦖭騟𦖠蒀𧄧𦳑䓪脷䐂胆脉腂𦞴飃𦩂艢艥𦩑葓𦶧蘐𧈛媆䅿𡡀嬫𡢡嫤𡣘蚠蜨𣶏蠭𧐢娂"],["95a1","衮佅袇袿裦襥襍𥚃襔𧞅𧞄𨯵𨯙𨮜𨧹㺭蒣䛵䛏㟲訽訜𩑈彍鈫𤊄旔焩烄𡡅鵭貟賩𧷜妚矃姰䍮㛔踪躧𤰉輰轊䋴汘澻𢌡䢛潹溋𡟚鯩㚵𤤯邻邗啱䤆醻鐄𨩋䁢𨫼鐧𨰝𨰻蓥訫閙閧閗閖𨴴瑅㻂𤣿𤩂𤏪㻧𣈥随𨻧𨹦𨹥㻌𤧭𤩸𣿮琒瑫㻼靁𩂰"],["9640","桇䨝𩂓𥟟靝鍨𨦉𨰦𨬯𦎾銺嬑譩䤼珹𤈛鞛靱餸𠼦巁𨯅𤪲頟𩓚鋶𩗗釥䓀𨭐𤩧𨭤飜𨩅㼀鈪䤥萔餻饍𧬆㷽馛䭯馪驜𨭥𥣈檏騡嫾騯𩣱䮐𩥈馼䮽䮗鍽塲𡌂堢𤦸"],["96a1","𡓨硄𢜟𣶸棅㵽鑘㤧慐𢞁𢥫愇鱏鱓鱻鰵鰐魿鯏𩸭鮟𪇵𪃾鴡䲮𤄄鸘䲰鴌𪆴𪃭𪃳𩤯鶥蒽𦸒𦿟𦮂藼䔳𦶤𦺄𦷰萠藮𦸀𣟗𦁤秢𣖜𣙀䤭𤧞㵢鏛銾鍈𠊿碹鉷鑍俤㑀遤𥕝砽硔碶硋𡝗𣇉𤥁㚚佲濚濙瀞瀞吔𤆵垻壳垊鴖埗焴㒯𤆬燫𦱀𤾗嬨𡞵𨩉"],["9740","愌嫎娋䊼𤒈㜬䭻𨧼鎻鎸𡣖𠼝葲𦳀𡐓𤋺𢰦𤏁妔𣶷𦝁綨𦅛𦂤𤦹𤦋𨧺鋥珢㻩璴𨭣𡢟㻡𤪳櫘珳珻㻖𤨾𤪔𡟙𤩦𠎧𡐤𤧥瑈𤤖炥𤥶銄珦鍟𠓾錱𨫎𨨖鎆𨯧𥗕䤵𨪂煫"],["97a1","𤥃𠳿嚤𠘚𠯫𠲸唂秄𡟺緾𡛂𤩐𡡒䔮鐁㜊𨫀𤦭妰𡢿𡢃𧒄媡㛢𣵛㚰鉟婹𨪁𡡢鍴㳍𠪴䪖㦊僴㵩㵌𡎜煵䋻𨈘渏𩃤䓫浗𧹏灧沯㳖𣿭𣸭渂漌㵯𠏵畑㚼㓈䚀㻚䡱姄鉮䤾轁𨰜𦯀堒埈㛖𡑒烾𤍢𤩱𢿣𡊰𢎽梹楧𡎘𣓥𧯴𣛟𨪃𣟖𣏺𤲟樚𣚭𦲷萾䓟䓎"],["9840","𦴦𦵑𦲂𦿞漗𧄉茽𡜺菭𦲀𧁓𡟛妉媂𡞳婡婱𡤅𤇼㜭姯𡜼㛇熎鎐暚𤊥婮娫𤊓樫𣻹𧜶𤑛𤋊焝𤉙𨧡侰𦴨峂𤓎𧹍𤎽樌𤉖𡌄炦焳𤏩㶥泟勇𤩏繥姫崯㷳彜𤩝𡟟綤萦"],["98a1","咅𣫺𣌀𠈔坾𠣕𠘙㿥𡾞𪊶瀃𩅛嵰玏糓𨩙𩐠俈翧狍猐𧫴猸猹𥛶獁獈㺩𧬘遬燵𤣲珡臶㻊県㻑沢国琙琞琟㻢㻰㻴㻺瓓㼎㽓畂畭畲疍㽼痈痜㿀癍㿗癴㿜発𤽜熈嘣覀塩䀝睃䀹条䁅㗛瞘䁪䁯属瞾矋売砘点砜䂨砹硇硑硦葈𥔵礳栃礲䄃"],["9940","䄉禑禙辻稆込䅧窑䆲窼艹䇄竏竛䇏両筢筬筻簒簛䉠䉺类粜䊌粸䊔糭输烀𠳏総緔緐緽羮羴犟䎗耠耥笹耮耱联㷌垴炠肷胩䏭脌猪脎脒畠脔䐁㬹腖腙腚"],["99a1","䐓堺腼膄䐥膓䐭膥埯臁臤艔䒏芦艶苊苘苿䒰荗险榊萅烵葤惣蒈䔄蒾蓡蓸蔐蔸蕒䔻蕯蕰藠䕷虲蚒蚲蛯际螋䘆䘗袮裿褤襇覑𧥧訩訸誔誴豑賔賲贜䞘塟跃䟭仮踺嗘坔蹱嗵躰䠷軎転軤軭軲辷迁迊迌逳駄䢭飠鈓䤞鈨鉘鉫銱銮銿"],["9a40","鋣鋫鋳鋴鋽鍃鎄鎭䥅䥑麿鐗匁鐝鐭鐾䥪鑔鑹锭関䦧间阳䧥枠䨤靀䨵鞲韂噔䫤惨颹䬙飱塄餎餙冴餜餷饂饝饢䭰駅䮝騼鬏窃魩鮁鯝鯱鯴䱭鰠㝯𡯂鵉鰺"],["9aa1","黾噐鶓鶽鷀鷼银辶鹻麬麱麽黆铜黢黱黸竈齄𠂔𠊷𠎠椚铃妬𠓗塀铁㞹𠗕𠘕𠙶𡚺块煳𠫂𠫍𠮿呪吆𠯋咞𠯻𠰻𠱓𠱥𠱼惧𠲍噺𠲵𠳝𠳭𠵯𠶲𠷈楕鰯螥𠸄𠸎𠻗𠾐𠼭𠹳尠𠾼帋𡁜𡁏𡁶朞𡁻𡂈𡂖㙇𡂿𡃓𡄯𡄻卤蒭𡋣𡍵𡌶讁𡕷𡘙𡟃𡟇乸炻𡠭𡥪"],["9b40","𡨭𡩅𡰪𡱰𡲬𡻈拃𡻕𡼕熘桕𢁅槩㛈𢉼𢏗𢏺𢜪𢡱𢥏苽𢥧𢦓𢫕覥𢫨辠𢬎鞸𢬿顇骽𢱌"],["9b62","𢲈𢲷𥯨𢴈𢴒𢶷𢶕𢹂𢽴𢿌𣀳𣁦𣌟𣏞徱晈暿𧩹𣕧𣗳爁𤦺矗𣘚𣜖纇𠍆墵朎"],["9ba1","椘𣪧𧙗𥿢𣸑𣺹𧗾𢂚䣐䪸𤄙𨪚𤋮𤌍𤀻𤌴𤎖𤩅𠗊凒𠘑妟𡺨㮾𣳿𤐄𤓖垈𤙴㦛𤜯𨗨𩧉㝢𢇃譞𨭎駖𤠒𤣻𤨕爉𤫀𠱸奥𤺥𤾆𠝹軚𥀬劏圿煱𥊙𥐙𣽊𤪧喼𥑆𥑮𦭒釔㑳𥔿𧘲𥕞䜘𥕢𥕦𥟇𤤿𥡝偦㓻𣏌惞𥤃䝼𨥈𥪮𥮉𥰆𡶐垡煑澶𦄂𧰒遖𦆲𤾚譢𦐂𦑊"],["9c40","嵛𦯷輶𦒄𡤜諪𤧶𦒈𣿯𦔒䯀𦖿𦚵𢜛鑥𥟡憕娧晉侻嚹𤔡𦛼乪𤤴陖涏𦲽㘘襷𦞙𦡮𦐑𦡞營𦣇筂𩃀𠨑𦤦鄄𦤹穅鷰𦧺騦𦨭㙟𦑩𠀡禃𦨴𦭛崬𣔙菏𦮝䛐𦲤画补𦶮墶"],["9ca1","㜜𢖍𧁋𧇍㱔𧊀𧊅銁𢅺𧊋錰𧋦𤧐氹钟𧑐𠻸蠧裵𢤦𨑳𡞱溸𤨪𡠠㦤㚹尐秣䔿暶𩲭𩢤襃𧟌𧡘囖䃟𡘊㦡𣜯𨃨𡏅熭荦𧧝𩆨婧䲷𧂯𨦫𧧽𧨊𧬋𧵦𤅺筃祾𨀉澵𪋟樃𨌘厢𦸇鎿栶靝𨅯𨀣𦦵𡏭𣈯𨁈嶅𨰰𨂃圕頣𨥉嶫𤦈斾槕叒𤪥𣾁㰑朶𨂐𨃴𨄮𡾡𨅏"],["9d40","𨆉𨆯𨈚𨌆𨌯𨎊㗊𨑨𨚪䣺揦𨥖砈鉕𨦸䏲𨧧䏟𨧨𨭆𨯔姸𨰉輋𨿅𩃬筑𩄐𩄼㷷𩅞𤫊运犏嚋𩓧𩗩𩖰𩖸𩜲𩣑𩥉𩥪𩧃𩨨𩬎𩵚𩶛纟𩻸𩼣䲤镇𪊓熢𪋿䶑递𪗋䶜𠲜达嗁"],["9da1","辺𢒰边𤪓䔉繿潖檱仪㓤𨬬𧢝㜺躀𡟵𨀤𨭬𨮙𧨾𦚯㷫𧙕𣲷𥘵𥥖亚𥺁𦉘嚿𠹭踎孭𣺈𤲞揞拐𡟶𡡻攰嘭𥱊吚𥌑㷆𩶘䱽嘢嘞罉𥻘奵𣵀蝰东𠿪𠵉𣚺脗鵞贘瘻鱅癎瞹鍅吲腈苷嘥脲萘肽嗪祢噃吖𠺝㗎嘅嗱曱𨋢㘭甴嗰喺咗啲𠱁𠲖廐𥅈𠹶𢱢"],["9e40","𠺢麫絚嗞𡁵抝靭咔賍燶酶揼掹揾啩𢭃鱲𢺳冚㓟𠶧冧呍唞唓癦踭𦢊疱肶蠄螆裇膶萜𡃁䓬猄𤜆宐茋𦢓噻𢛴𧴯𤆣𧵳𦻐𧊶酰𡇙鈈𣳼𪚩𠺬𠻹牦𡲢䝎𤿂𧿹𠿫䃺"],["9ea1","鱝攟𢶠䣳𤟠𩵼𠿬𠸊恢𧖣𠿭"],["9ead","𦁈𡆇熣纎鵐业丄㕷嬍沲卧㚬㧜卽㚥𤘘墚𤭮舭呋垪𥪕𠥹"],["9ec5","㩒𢑥獴𩺬䴉鯭𣳾𩼰䱛𤾩𩖞𩿞葜𣶶𧊲𦞳𣜠挮紥𣻷𣸬㨪逈勌㹴㙺䗩𠒎癀嫰𠺶硺𧼮墧䂿噼鮋嵴癔𪐴麅䳡痹㟻愙𣃚𤏲"],["9ef5","噝𡊩垧𤥣𩸆刴𧂮㖭汊鵼"],["9f40","籖鬹埞𡝬屓擓𩓐𦌵𧅤蚭𠴨𦴢𤫢𠵱"],["9f4f","凾𡼏嶎霃𡷑麁遌笟鬂峑箣扨挵髿篏鬪籾鬮籂粆鰕篼鬉鼗鰛𤤾齚啳寃俽麘俲剠㸆勑坧偖妷帒韈鶫轜呩鞴饀鞺匬愰"],["9fa1","椬叚鰊鴂䰻陁榀傦畆𡝭駚剳"],["9fae","酙隁酜"],["9fb2","酑𨺗捿𦴣櫊嘑醎畺抅𠏼獏籰𥰡𣳽"],["9fc1","𤤙盖鮝个𠳔莾衂"],["9fc9","届槀僭坺刟巵从氱𠇲伹咜哚劚趂㗾弌㗳"],["9fdb","歒酼龥鮗頮颴骺麨麄煺笔"],["9fe7","毺蠘罸"],["9feb","嘠𪙊蹷齓"],["9ff0","跔蹏鸜踁抂𨍽踨蹵竓𤩷稾磘泪詧瘇"],["a040","𨩚鼦泎蟖痃𪊲硓咢贌狢獱謭猂瓱賫𤪻蘯徺袠䒷"],["a055","𡠻𦸅"],["a058","詾𢔛"],["a05b","惽癧髗鵄鍮鮏蟵"],["a063","蠏賷猬霡鮰㗖犲䰇籑饊𦅙慙䰄麖慽"],["a073","坟慯抦戹拎㩜懢厪𣏵捤栂㗒"],["a0a1","嵗𨯂迚𨸹"],["a0a6","僙𡵆礆匲阸𠼻䁥"],["a0ae","矾"],["a0b0","糂𥼚糚稭聦聣絍甅瓲覔舚朌聢𧒆聛瓰脃眤覉𦟌畓𦻑螩蟎臈螌詉貭譃眫瓸蓚㘵榲趦"],["a0d4","覩瑨涹蟁𤀑瓧㷛煶悤憜㳑煢恷"],["a0e2","罱𨬭牐惩䭾删㰘𣳇𥻗𧙖𥔱𡥄𡋾𩤃𦷜𧂭峁𦆭𨨏𣙷𠃮𦡆𤼎䕢嬟𦍌齐麦𦉫"],["a3c0","␀",31,"␡"],["c6a1","①",9,"⑴",9,"",9,"丶丿亅亠冂冖冫勹匸卩厶夊宀巛⼳广廴彐彡攴无疒癶辵隶¨ˆヽヾゝゞ〃仝々〆〇ー[]✽ぁ",23],["c740","す",58,"ァアィイ"],["c7a1","ゥ",81,"А",5,"ЁЖ",4],["c840","Л",26,"ёж",25,"⇧↸↹㇏𠃌乚𠂊刂䒑"],["c8a1","龰冈龱𧘇"],["c8cd","¬¦'"㈱№℡゛゜⺀⺄⺆⺇⺈⺊⺌⺍⺕⺜⺝⺥⺧⺪⺬⺮⺶⺼⺾⻆⻊⻌⻍⻏⻖⻗⻞⻣"],["c8f5","ʃɐɛɔɵœøŋʊɪ"],["f9fe","■"],["fa40","𠕇鋛𠗟𣿅蕌䊵珯况㙉𤥂𨧤鍄𡧛苮𣳈砼杄拟𤤳𨦪𠊠𦮳𡌅侫𢓭倈𦴩𧪄𣘀𤪱𢔓倩𠍾徤𠎀𠍇滛𠐟偽儁㑺儎顬㝃萖𤦤𠒇兠𣎴兪𠯿𢃼𠋥𢔰𠖎𣈳𡦃宂蝽𠖳𣲙冲冸"],["faa1","鴴凉减凑㳜凓𤪦决凢卂凭菍椾𣜭彻刋刦刼劵剗劔効勅簕蕂勠蘍𦬓包𨫞啉滙𣾀𠥔𣿬匳卄𠯢泋𡜦栛珕恊㺪㣌𡛨燝䒢卭却𨚫卾卿𡖖𡘓矦厓𨪛厠厫厮玧𥝲㽙玜叁叅汉义埾叙㪫𠮏叠𣿫𢶣叶𠱷吓灹唫晗浛呭𦭓𠵴啝咏咤䞦𡜍𠻝㶴𠵍"],["fb40","𨦼𢚘啇䳭启琗喆喩嘅𡣗𤀺䕒𤐵暳𡂴嘷曍𣊊暤暭噍噏磱囱鞇叾圀囯园𨭦㘣𡉏坆𤆥汮炋坂㚱𦱾埦𡐖堃𡑔𤍣堦𤯵塜墪㕡壠壜𡈼壻寿坃𪅐𤉸鏓㖡够梦㛃湙"],["fba1","𡘾娤啓𡚒蔅姉𠵎𦲁𦴪𡟜姙𡟻𡞲𦶦浱𡠨𡛕姹𦹅媫婣㛦𤦩婷㜈媖瑥嫓𦾡𢕔㶅𡤑㜲𡚸広勐孶斈孼𧨎䀄䡝𠈄寕慠𡨴𥧌𠖥寳宝䴐尅𡭄尓珎尔𡲥𦬨屉䣝岅峩峯嶋𡷹𡸷崐崘嵆𡺤岺巗苼㠭𤤁𢁉𢅳芇㠶㯂帮檊幵幺𤒼𠳓厦亷廐厨𡝱帉廴𨒂"],["fc40","廹廻㢠廼栾鐛弍𠇁弢㫞䢮𡌺强𦢈𢏐彘𢑱彣鞽𦹮彲鍀𨨶徧嶶㵟𥉐𡽪𧃸𢙨釖𠊞𨨩怱暅𡡷㥣㷇㘹垐𢞴祱㹀悞悤悳𤦂𤦏𧩓璤僡媠慤萤慂慈𦻒憁凴𠙖憇宪𣾷"],["fca1","𢡟懓𨮝𩥝懐㤲𢦀𢣁怣慜攞掋𠄘担𡝰拕𢸍捬𤧟㨗搸揸𡎎𡟼撐澊𢸶頔𤂌𥜝擡擥鑻㩦携㩗敍漖𤨨𤨣斅敭敟𣁾斵𤥀䬷旑䃘𡠩无旣忟𣐀昘𣇷𣇸晄𣆤𣆥晋𠹵晧𥇦晳晴𡸽𣈱𨗴𣇈𥌓矅𢣷馤朂𤎜𤨡㬫槺𣟂杞杧杢𤇍𩃭柗䓩栢湐鈼栁𣏦𦶠桝"],["fd40","𣑯槡樋𨫟楳棃𣗍椁椀㴲㨁𣘼㮀枬楡𨩊䋼椶榘㮡𠏉荣傐槹𣙙𢄪橅𣜃檝㯳枱櫈𩆜㰍欝𠤣惞欵歴𢟍溵𣫛𠎵𡥘㝀吡𣭚毡𣻼毜氷𢒋𤣱𦭑汚舦汹𣶼䓅𣶽𤆤𤤌𤤀"],["fda1","𣳉㛥㳫𠴲鮃𣇹𢒑羏样𦴥𦶡𦷫涖浜湼漄𤥿𤂅𦹲蔳𦽴凇沜渝萮𨬡港𣸯瑓𣾂秌湏媑𣁋濸㜍澝𣸰滺𡒗𤀽䕕鏰潄潜㵎潴𩅰㴻澟𤅄濓𤂑𤅕𤀹𣿰𣾴𤄿凟𤅖𤅗𤅀𦇝灋灾炧炁烌烕烖烟䄄㷨熴熖𤉷焫煅媈煊煮岜𤍥煏鍢𤋁焬𤑚𤨧𤨢熺𨯨炽爎"],["fe40","鑂爕夑鑃爤鍁𥘅爮牀𤥴梽牕牗㹕𣁄栍漽犂猪猫𤠣𨠫䣭𨠄猨献珏玪𠰺𦨮珉瑉𤇢𡛧𤨤昣㛅𤦷𤦍𤧻珷琕椃𤨦琹𠗃㻗瑜𢢭瑠𨺲瑇珤瑶莹瑬㜰瑴鏱樬璂䥓𤪌"],["fea1","𤅟𤩹𨮏孆𨰃𡢞瓈𡦈甎瓩甞𨻙𡩋寗𨺬鎅畍畊畧畮𤾂㼄𤴓疎瑝疞疴瘂瘬癑癏癯癶𦏵皐臯㟸𦤑𦤎皡皥皷盌𦾟葢𥂝𥅽𡸜眞眦着撯𥈠睘𣊬瞯𨥤𨥨𡛁矴砉𡍶𤨒棊碯磇磓隥礮𥗠磗礴碱𧘌辸袄𨬫𦂃𢘜禆褀椂禀𥡗禝𧬹礼禩渪𧄦㺨秆𩄍秔"]]},8181:function(e,t,n){const r=n(5897);const{readJSON:i}=n(834);const o=n(5837);const a=n(2728);const s={nowJSON:"now.json",pkg:"package.json",dockerfile:"Dockerfile"};const c=["node","npm","static","docker"];const u=async(e,t)=>{if(await a.file(e)){return"static"}if(await o(t.nowJSON)){const e=await i(t.nowJSON);if(e.type){if(!c.includes(e.type)){throw new Error("Deployment type specified in `now.json` is not allowed")}return e.type}}if(await o(t.pkg)){const e=await i(t.pkg);if(e.now&&e.now.type){if(!c.includes(e.now.type)){throw new Error("Deployment type specified in `package.json` is not allowed")}return e.now.type}}if(await o(t.dockerfile)){return"docker"}if(await o(t.pkg)){return"npm"}return"static"};e.exports=(async e=>{let t={};for(const n in s){if(!{}.hasOwnProperty.call(s,n)){continue}const i=s[n];t[n]=r.join(e,i)}return u(e,t)})},8185:function(e){e.exports={name:"now",version:"16.3.1",preferGlobal:true,license:"Apache-2.0",description:"The command-line interface for Now",homepage:"https://zeit.co",repository:{type:"git",url:"https://github.com/zeit/now.git",directory:"packages/now-cli"},scripts:{preinstall:"node ./scripts/preinstall.js","test-unit":"nyc ava test/*unit.js --serial --fail-fast --verbose","test-integration":"ava test/integration.js --serial --fail-fast","test-integration-now-dev":"ava test/dev/integration.js --serial --fail-fast --verbose",prepublishOnly:"yarn build",coverage:"nyc report --reporter=text-lcov > coverage.lcov && codecov",build:"ts-node ./scripts/build.ts","build-dev":"ts-node ./scripts/build.ts --dev","test-lint":"eslint . --ext .ts,.js --ignore-path ../../.eslintignore"},nyc:{include:["src/**"],extension:[".js",".ts"],require:["ts-node/register"],reporter:["text","html"],sourceMap:true,instrument:true,all:true},bin:{now:"./dist/index.js"},files:["dist","scripts/preinstall.js"],ava:{compileEnhancements:false,extensions:["ts"],require:["ts-node/register/transpile-only","esm"]},engines:{node:">= 8.11"},devDependencies:{"@sentry/node":"5.5.0","@types/ansi-escapes":"3.0.0","@types/ansi-regex":"4.0.0","@types/async-retry":"1.2.1","@types/bytes":"3.0.0","@types/debug":"0.0.31","@types/dotenv":"6.1.1","@types/escape-html":"0.0.20","@types/execa":"0.9.0","@types/fs-extra":"5.0.5","@types/glob":"7.1.1","@types/http-proxy":"1.16.2","@types/load-json-file":"2.0.7","@types/micro":"7.3.3","@types/mime-types":"2.1.0","@types/minimatch":"3.0.3","@types/mri":"1.1.0","@types/ms":"0.7.30","@types/node":"11.11.0","@types/node-fetch":"2.1.4","@types/npm-package-arg":"6.1.0","@types/pluralize":"0.0.29","@types/progress":"2.0.3","@types/psl":"1.1.0","@types/semver":"6.0.1","@types/tar-fs":"1.16.1","@types/text-table":"0.2.0","@types/universal-analytics":"0.4.2","@types/which":"1.3.1","@types/write-json-file":"2.2.1","@zeit/dockerignore":"0.0.5","@zeit/fun":"0.10.2","@zeit/ncc":"0.18.5","@zeit/source-map-support":"0.6.2",ajv:"6.10.2","alpha-sort":"2.0.1","ansi-escapes":"3.0.0","ansi-regex":"3.0.0",arg:"2.0.0","async-listen":"1.2.0","async-retry":"1.1.3","async-sema":"2.1.4",ava:"2.2.0",bytes:"3.0.0",chalk:"2.4.2",chokidar:"2.1.6",clipboardy:"2.1.0",codecov:"3.1.0",cpy:"7.2.0","credit-card":"3.0.1","date-fns":"1.29.0",death:"1.1.0",debug:"3.1.0","deployment-type":"1.0.1","docker-file-parser":"1.0.2",dot:"1.1.2",dotenv:"4.0.0",download:"6.2.5","email-prompt":"0.3.2","email-validator":"1.1.1",epipebomb:"1.0.0","escape-html":"1.0.3",esm:"3.1.4",execa:"1.0.0","fs-extra":"7.0.1",glob:"7.1.2","http-proxy":"1.17.0",ignore:"4.0.6",ini:"1.3.4",inquirer:"3.3.0","is-url":"1.2.2","jaro-winkler":"0.2.8",jsonlines:"0.1.1","load-json-file":"3.0.0",micro:"9.1.2","mime-types":"2.1.24",minimatch:"3.0.4",mri:"1.1.0",ms:"2.1.2","node-fetch":"1.7.3","now-client":"./packages/now-client","npm-package-arg":"6.1.0",nyc:"13.2.0",ora:"3.4.0","pcre-to-regexp":"1.0.0",pluralize:"7.0.0","pre-commit":"1.2.2",printf:"0.2.5",progress:"2.0.3",promisepipe:"3.0.0",psl:"1.1.31","qr-image":"3.2.0","raw-body":"2.4.1","read-pkg":"2.0.0","rx-lite-aggregates":"4.0.8",semver:"5.5.0","serve-handler":"6.1.1",sinon:"4.4.2","strip-ansi":"5.2.0",stripe:"5.1.0","tar-fs":"1.16.3","test-listen":"1.1.0","text-table":"0.2.0","then-sleep":"1.0.1",through2:"2.0.3",title:"3.4.1","tmp-promise":"1.0.3","ts-node":"8.3.0",typescript:"3.2.4","universal-analytics":"0.4.20","update-check":"1.5.3","utility-types":"2.1.0",which:"1.3.1","which-promise":"1.0.0","write-json-file":"2.2.0","xdg-app-paths":"5.1.0",yarn:"1.17.3"},gitHead:"500c36f5d4bb861487da841d828e68b58da9390e"}},8191:function(e,t,n){var r=n(554);function isHexDigit(e){return e>="0"&&e<="9"||e>="A"&&e<="F"||e>="a"&&e<="f"}function isOctDigit(e){return e>="0"&&e<="7"}function isDecDigit(e){return e>="0"&&e<="9"}var i={"'":"'",'"':'"',"\\":"\\",b:"\b",f:"\f",n:"\n",r:"\r",t:"\t",v:"\v","/":"/"};function formatError(e,t,n,i,o,a){var s=t+" at "+(i+1)+":"+(o+1),c=n-o-1,u="",l="";var f=a?r.isLineTerminator:r.isLineTerminatorJSON;if(c<n-70){c=n-70}while(1){var p=e[++c];if(f(p)||c===e.length){if(n>=c){l+="^"}break}u+=p;if(n===c){l+="^"}else if(n>c){l+=e[c]==="\t"?"\t":" "}if(u.length>78)break}return s+"\n"+u+"\n"+l}function parse(e,t){var n=!(t.mode==="json"||t.legacy);var o=n?r.isLineTerminator:r.isLineTerminatorJSON;var a=n?r.isWhiteSpace:r.isWhiteSpaceJSON;var s=e.length,c=0,u=0,l=0,f=[];var p=function(){};var d=function(e){return e};if(t._tokenize){(function(){var n=null;p=function(){if(n!==null)throw Error("internal error, token overlap");n=l};d=function(r,i){if(n!=l){var o={raw:e.substr(n,l-n),type:i,stack:f.slice(0)};if(r!==undefined)o.value=r;t._tokenize.call(null,o)}n=null;return r}})()}function fail(t){var r=l-u;if(!t){if(l<s){var i="'"+JSON.stringify(e[l]).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";if(!t)t="Unexpected token "+i}else{if(!t)t="Unexpected end of input"}}var o=SyntaxError(formatError(e,t,l,c,r,n));o.row=c+1;o.column=r+1;throw o}function newline(t){if(t==="\r"&&e[l]==="\n")l++;u=l;c++}function parseGeneric(){var t;while(l<s){p();var r=e[l++];if(r==='"'||r==="'"&&n){return d(parseString(r),"literal")}else if(r==="{"){d(undefined,"separator");return parseObject()}else if(r==="["){d(undefined,"separator");return parseArray()}else if(r==="-"||r==="."||isDecDigit(r)||n&&(r==="+"||r==="I"||r==="N")){return d(parseNumber(),"literal")}else if(r==="n"){parseKeyword("null");return d(null,"literal")}else if(r==="t"){parseKeyword("true");return d(true,"literal")}else if(r==="f"){parseKeyword("false");return d(false,"literal")}else{l--;return d(undefined)}}}function parseKey(){var t;while(l<s){p();var i=e[l++];if(i==='"'||i==="'"&&n){return d(parseString(i),"key")}else if(i==="{"){d(undefined,"separator");return parseObject()}else if(i==="["){d(undefined,"separator");return parseArray()}else if(i==="."||isDecDigit(i)){return d(parseNumber(true),"key")}else if(n&&r.isIdentifierStart(i)||i==="\\"&&e[l]==="u"){var o=l-1;var t=parseIdentifier();if(t===undefined){l=o;return d(undefined)}else{return d(t,"key")}}else{l--;return d(undefined)}}}function skipWhiteSpace(){p();while(l<s){var t=e[l++];if(o(t)){l--;d(undefined,"whitespace");p();l++;newline(t);d(undefined,"newline");p()}else if(a(t)){}else if(t==="/"&&n&&(e[l]==="/"||e[l]==="*")){l--;d(undefined,"whitespace");p();l++;skipComment(e[l++]==="*");d(undefined,"comment");p()}else{l--;break}}return d(undefined,"whitespace")}function skipComment(t){while(l<s){var n=e[l++];if(o(n)){if(!t){l--;return}newline(n)}else if(n==="*"&&t){if(e[l]==="/"){l++;return}}else{}}if(t){fail("Unclosed multiline comment")}}function parseKeyword(t){var n=l;var r=t.length;for(var i=1;i<r;i++){if(l>=s||t[i]!=e[l]){l=n-1;fail()}l++}}function parseObject(){var r=t.null_prototype?Object.create(null):{},i={},o=false;while(l<s){skipWhiteSpace();var a=parseKey();skipWhiteSpace();p();var c=e[l++];d(undefined,"separator");if(c==="}"&&a===undefined){if(!n&&o){l--;fail("Trailing comma in object")}return r}else if(c===":"&&a!==undefined){skipWhiteSpace();f.push(a);var u=parseGeneric();f.pop();if(u===undefined)fail("No value found for key "+a);if(typeof a!=="string"){if(!n||typeof a!=="number"){fail("Wrong key type: "+a)}}if((a in i||i[a]!=null)&&t.reserved_keys!=="replace"){if(t.reserved_keys==="throw"){fail("Reserved key: "+a)}else{}}else{if(typeof t.reviver==="function"){u=t.reviver.call(null,a,u)}if(u!==undefined){o=true;Object.defineProperty(r,a,{value:u,enumerable:true,configurable:true,writable:true})}}skipWhiteSpace();p();var c=e[l++];d(undefined,"separator");if(c===","){continue}else if(c==="}"){return r}else{fail()}}else{l--;fail()}}fail()}function parseArray(){var r=[];while(l<s){skipWhiteSpace();f.push(r.length);var i=parseGeneric();f.pop();skipWhiteSpace();p();var o=e[l++];d(undefined,"separator");if(i!==undefined){if(typeof t.reviver==="function"){i=t.reviver.call(null,String(r.length),i)}if(i===undefined){r.length++;i=true}else{r.push(i)}}if(o===","){if(i===undefined){fail("Elisions are not supported")}}else if(o==="]"){if(!n&&i===undefined&&r.length){l--;fail("Trailing comma in array")}return r}else{l--;fail()}}}function parseNumber(){l--;var t=l,r=e[l++],i;var o=function(r){var i=e.substr(t,l-t);if(r){var o=parseInt(i.replace(/^0o?/,""),8)}else{var o=Number(i)}if(Number.isNaN(o)){l--;fail('Bad numeric literal - "'+e.substr(t,l-t+1)+'"')}else if(!n&&!i.match(/^-?(0|[1-9][0-9]*)(\.[0-9]+)?(e[+-]?[0-9]+)?$/i)){l--;fail('Non-json numeric literal - "'+e.substr(t,l-t+1)+'"')}else{return o}};if(r==="-"||r==="+"&&n)r=e[l++];if(r==="N"&&n){parseKeyword("NaN");return NaN}if(r==="I"&&n){parseKeyword("Infinity");return o()}if(r>="1"&&r<="9"){while(l<s&&isDecDigit(e[l]))l++;r=e[l++]}if(r==="0"){r=e[l++];var a=r==="o"||r==="O"||isOctDigit(r);var c=r==="x"||r==="X";if(n&&(a||c)){while(l<s&&(c?isHexDigit:isOctDigit)(e[l]))l++;var u=1;if(e[t]==="-"){u=-1;t++}else if(e[t]==="+"){t++}return u*o(a)}}if(r==="."){while(l<s&&isDecDigit(e[l]))l++;r=e[l++]}if(r==="e"||r==="E"){r=e[l++];if(r==="-"||r==="+")l++;while(l<s&&isDecDigit(e[l]))l++;r=e[l++]}l--;return o()}function parseIdentifier(){l--;var t="";while(l<s){var n=e[l++];if(n==="\\"&&e[l]==="u"&&isHexDigit(e[l+1])&&isHexDigit(e[l+2])&&isHexDigit(e[l+3])&&isHexDigit(e[l+4])){n=String.fromCharCode(parseInt(e.substr(l+1,4),16));l+=5}if(t.length){if(r.isIdentifierPart(n)){t+=n}else{l--;return t}}else{if(r.isIdentifierStart(n)){t+=n}else{return undefined}}}fail()}function parseString(t){var r="";while(l<s){var a=e[l++];if(a===t){return r}else if(a==="\\"){if(l>=s)fail();a=e[l++];if(i[a]&&(n||a!="v"&&a!="'")){r+=i[a]}else if(n&&o(a)){newline(a)}else if(a==="u"||a==="x"&&n){var c=a==="u"?4:2;for(var u=0;u<c;u++){if(l>=s)fail();if(!isHexDigit(e[l]))fail("Bad escape sequence");l++}r+=String.fromCharCode(parseInt(e.substr(l-c,c),16))}else if(n&&isOctDigit(a)){if(a<"4"&&isOctDigit(e[l])&&isOctDigit(e[l+1])){var f=3}else if(isOctDigit(e[l])){var f=2}else{var f=1}l+=f-1;r+=String.fromCharCode(parseInt(e.substr(l-f,f),8))}else if(n){r+=a}else{l--;fail()}}else if(o(a)){fail()}else{if(!n&&a.charCodeAt(0)<32){l--;fail("Unexpected control character")}r+=a}}fail()}skipWhiteSpace();var h=parseGeneric();if(h!==undefined||l<s){skipWhiteSpace();if(l>=s){if(typeof t.reviver==="function"){h=t.reviver.call(null,"",h)}return h}else{fail()}}else{if(l){fail("No data, only a whitespace")}else{fail("No data, empty input")}}}e.exports.parse=function parseJSON(e,t){if(typeof t==="function"){t={reviver:t}}if(e===undefined){return undefined}if(typeof e!=="string")e=String(e);if(t==null)t={};if(t.reserved_keys==null)t.reserved_keys="ignore";if(t.reserved_keys==="throw"||t.reserved_keys==="ignore"){if(t.null_prototype==null){t.null_prototype=true}}try{return parse(e,t)}catch(e){if(e instanceof SyntaxError&&e.row!=null&&e.column!=null){var n=e;e=SyntaxError(n.message);e.column=n.column;e.row=n.row}throw e}};e.exports.tokenize=function tokenizeJSON(t,n){if(n==null)n={};n._tokenize=function(e){if(n._addstack)e.stack.unshift.apply(e.stack,n._addstack);r.push(e)};var r=[];r.data=e.exports.parse(t,n);return r}},8199:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(4578));const s=i(n(8737));const c=i(n(2970));const u=i(n(8950));function getDeploymentForAlias(e,t,n,i,l,f,p){return r(this,void 0,void 0,function*(){const r=u.default(`Fetching deployment to alias in ${o.default.bold(f)}`);if(n.length===2){const[t]=n;const i=yield c.default(e,f,t);r();return i}const d=yield s.default(t,p,i);if(!d){return null}const h=yield a.default(t,e,d,l,f);r();return h})}t.default=getDeploymentForAlias},8205:function(e,t,n){e.exports=!n(338)(function(){return Object.defineProperty({},"a",{get:function(){return 7}}).a!=7})},8208:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(7184).mkdirs;const a=n(5527).pathExists;const s=n(3381).utimesMillis;const c=Symbol("notExist");function copy(e,t,n,r){if(typeof n==="function"&&!r){r=n;n={}}else if(typeof n==="function"){n={filter:n}}r=r||function(){};n=n||{};n.clobber="clobber"in n?!!n.clobber:true;n.overwrite="overwrite"in n?!!n.overwrite:n.clobber;if(n.preserveTimestamps&&process.arch==="ia32"){console.warn(`fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269`)}checkPaths(e,t,(i,o)=>{if(i)return r(i);if(n.filter)return handleFilter(checkParentDir,o,e,t,n,r);return checkParentDir(o,e,t,n,r)})}function checkParentDir(e,t,n,r,s){const c=i.dirname(n);a(c,(i,a)=>{if(i)return s(i);if(a)return startCopy(e,t,n,r,s);o(c,i=>{if(i)return s(i);return startCopy(e,t,n,r,s)})})}function handleFilter(e,t,n,r,i,o){Promise.resolve(i.filter(n,r)).then(a=>{if(a){if(t)return e(t,n,r,i,o);return e(n,r,i,o)}return o()},e=>o(e))}function startCopy(e,t,n,r,i){if(r.filter)return handleFilter(getStats,e,t,n,r,i);return getStats(e,t,n,r,i)}function getStats(e,t,n,i,o){const a=i.dereference?r.stat:r.lstat;a(t,(r,a)=>{if(r)return o(r);if(a.isDirectory())return onDir(a,e,t,n,i,o);else if(a.isFile()||a.isCharacterDevice()||a.isBlockDevice())return onFile(a,e,t,n,i,o);else if(a.isSymbolicLink())return onLink(e,t,n,i,o)})}function onFile(e,t,n,r,i,o){if(t===c)return copyFile(e,n,r,i,o);return mayCopyFile(e,n,r,i,o)}function mayCopyFile(e,t,n,i,o){if(i.overwrite){r.unlink(n,r=>{if(r)return o(r);return copyFile(e,t,n,i,o)})}else if(i.errorOnExist){return o(new Error(`'${n}' already exists`))}else return o()}function copyFile(e,t,n,i,o){if(typeof r.copyFile==="function"){return r.copyFile(t,n,t=>{if(t)return o(t);return setDestModeAndTimestamps(e,n,i,o)})}return copyFileFallback(e,t,n,i,o)}function copyFileFallback(e,t,n,i,o){const a=r.createReadStream(t);a.on("error",e=>o(e)).once("open",()=>{const t=r.createWriteStream(n,{mode:e.mode});t.on("error",e=>o(e)).on("open",()=>a.pipe(t)).once("close",()=>setDestModeAndTimestamps(e,n,i,o))})}function setDestModeAndTimestamps(e,t,n,i){r.chmod(t,e.mode,r=>{if(r)return i(r);if(n.preserveTimestamps){return s(t,e.atime,e.mtime,i)}return i()})}function onDir(e,t,n,r,i,o){if(t===c)return mkDirAndCopy(e,n,r,i,o);if(t&&!t.isDirectory()){return o(new Error(`Cannot overwrite non-directory '${r}' with directory '${n}'.`))}return copyDir(n,r,i,o)}function mkDirAndCopy(e,t,n,i,o){r.mkdir(n,a=>{if(a)return o(a);copyDir(t,n,i,t=>{if(t)return o(t);return r.chmod(n,e.mode,o)})})}function copyDir(e,t,n,i){r.readdir(e,(r,o)=>{if(r)return i(r);return copyDirItems(o,e,t,n,i)})}function copyDirItems(e,t,n,r,i){const o=e.pop();if(!o)return i();return copyDirItem(e,o,t,n,r,i)}function copyDirItem(e,t,n,r,o,a){const s=i.join(n,t);const c=i.join(r,t);checkPaths(s,c,(t,i)=>{if(t)return a(t);startCopy(i,s,c,o,t=>{if(t)return a(t);return copyDirItems(e,n,r,o,a)})})}function onLink(e,t,n,o,a){r.readlink(t,(t,s)=>{if(t)return a(t);if(o.dereference){s=i.resolve(process.cwd(),s)}if(e===c){return r.symlink(s,n,a)}else{r.readlink(n,(t,c)=>{if(t){if(t.code==="EINVAL"||t.code==="UNKNOWN")return r.symlink(s,n,a);return a(t)}if(o.dereference){c=i.resolve(process.cwd(),c)}if(isSrcSubdir(s,c)){return a(new Error(`Cannot copy '${s}' to a subdirectory of itself, '${c}'.`))}if(e.isDirectory()&&isSrcSubdir(c,s)){return a(new Error(`Cannot overwrite '${c}' with '${s}'.`))}return copyLink(s,n,a)})}})}function copyLink(e,t,n){r.unlink(t,i=>{if(i)return n(i);return r.symlink(e,t,n)})}function isSrcSubdir(e,t){const n=i.resolve(e).split(i.sep);const r=i.resolve(t).split(i.sep);return n.reduce((e,t,n)=>e&&r[n]===t,true)}function checkStats(e,t,n){r.stat(e,(e,i)=>{if(e)return n(e);r.stat(t,(e,t)=>{if(e){if(e.code==="ENOENT")return n(null,{srcStat:i,destStat:c});return n(e)}return n(null,{srcStat:i,destStat:t})})})}function checkPaths(e,t,n){checkStats(e,t,(r,i)=>{if(r)return n(r);const{srcStat:o,destStat:a}=i;if(a.ino&&a.ino===o.ino){return n(new Error("Source and destination must not be the same."))}if(o.isDirectory()&&isSrcSubdir(e,t)){return n(new Error(`Cannot copy '${e}' to a subdirectory of itself, '${t}'.`))}return n(null,a)})}e.exports=copy},8213:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(2984);const a=i(n(7479));const s=n(16);function hash(e){return o.createHash("sha1").update(e).digest("hex")}t.mapToObject=(e=>{const t={};for(const[n,r]of e){t[n]=r}return t});function hashes(e){return r(this,void 0,void 0,function*(){const t=new Map;const n=new s.Sema(100);yield Promise.all(e.map(e=>r(this,void 0,void 0,function*(){yield n.acquire();const r=yield a.default.readFile(e);const i=hash(r);const o=t.get(i);if(o){o.names.push(e)}else{t.set(i,{names:[e],data:r})}n.release()})));return t})}t.default=hashes},8215:function(module,__unusedexports,__webpack_require__){module.exports=function(e,t){"use strict";var n={};function __webpack_require__(t){if(n[t]){return n[t].exports}var r=n[t]={i:t,l:false,exports:{}};e[t].call(r.exports,r,r.exports,__webpack_require__);r.l=true;return r.exports}__webpack_require__.ab=__dirname+"/dist";function startup(){return __webpack_require__(178)}return startup()}({4:function(e,t,n){"use strict";function _classCallCheck(e,t){if(!(e instanceof t)){throw new TypeError("Cannot call a class as a function")}}var r=n(393).Buffer;var i=n(669);function copyBuffer(e,t,n){e.copy(t,n)}e.exports=function(){function BufferList(){_classCallCheck(this,BufferList);this.head=null;this.tail=null;this.length=0}BufferList.prototype.push=function push(e){var t={data:e,next:null};if(this.length>0)this.tail.next=t;else this.head=t;this.tail=t;++this.length};BufferList.prototype.unshift=function unshift(e){var t={data:e,next:this.head};if(this.length===0)this.tail=t;this.head=t;++this.length};BufferList.prototype.shift=function shift(){if(this.length===0)return;var e=this.head.data;if(this.length===1)this.head=this.tail=null;else this.head=this.head.next;--this.length;return e};BufferList.prototype.clear=function clear(){this.head=this.tail=null;this.length=0};BufferList.prototype.join=function join(e){if(this.length===0)return"";var t=this.head;var n=""+t.data;while(t=t.next){n+=e+t.data}return n};BufferList.prototype.concat=function concat(e){if(this.length===0)return r.alloc(0);if(this.length===1)return this.head.data;var t=r.allocUnsafe(e>>>0);var n=this.head;var i=0;while(n){copyBuffer(n.data,t,i);i+=n.data.length;n=n.next}return t};return BufferList}();if(i&&i.inspect&&i.inspect.custom){e.exports.prototype[i.inspect.custom]=function(){var e=i.inspect({length:this.length});return this.constructor.name+" "+e}}},16:function(e,t,n){"use strict";const r=n(622);const i=n(505);const o=n(697)();function resolveCommandAttempt(e,t){const n=process.cwd();const a=e.options.cwd!=null;if(a){try{process.chdir(e.options.cwd)}catch(e){}}let s;try{s=i.sync(e.command,{path:(e.options.env||process.env)[o],pathExt:t?r.delimiter:undefined})}catch(e){}finally{process.chdir(n)}if(s){s=r.resolve(a?e.options.cwd:"",s)}return s}function resolveCommand(e){return resolveCommandAttempt(e)||resolveCommandAttempt(e,true)}e.exports=resolveCommand},19:function(e,t,n){"use strict";const r=n(129);const i=n(604);const o=n(884);function spawn(e,t,n){const a=i(e,t,n);const s=r.spawn(a.command,a.args,a.options);o.hookChildProcess(s,a);return s}function spawnSync(e,t,n){const a=i(e,t,n);const s=r.spawnSync(a.command,a.args,a.options);s.error=s.error||o.verifyENOENTSync(s.status,a);return s}e.exports=spawn;e.exports.spawn=spawn;e.exports.sync=spawnSync;e.exports._parse=i;e.exports._enoent=o},43:function(e,t,n){const r=n(614);const i=n(669);const o=n(431);class ReleaseEmitter extends r{}function isFn(e){return typeof e==="function"}function defaultInit(){return"1"}class Sema{constructor(e,{initFn:t=defaultInit,pauseFn:n,resumeFn:r,capacity:i=10}={}){if(isFn(n)^isFn(r)){throw new Error("pauseFn and resumeFn must be both set for pausing")}this.nrTokens=e;this.free=new o(e);this.waiting=new o(i);this.releaseEmitter=new ReleaseEmitter;this.noTokens=t===defaultInit;this.pauseFn=n;this.resumeFn=r;this.releaseEmitter.on("release",e=>{const t=this.waiting.shift();if(t){t.resolve(e)}else{if(this.resumeFn&&this.paused){this.paused=false;this.resumeFn()}this.free.push(e)}});for(let n=0;n<e;n++){this.free.push(t())}}async acquire(){let e=this.free.pop();if(e){return e}return new Promise((e,t)=>{if(this.pauseFn&&!this.paused){this.paused=true;this.pauseFn()}this.waiting.push({resolve:e,reject:t})})}async v(){return this.acquire()}release(e){this.releaseEmitter.emit("release",this.noTokens?"1":e)}p(e){return this.release(e)}drain(){const e=new Array(this.nrTokens);for(let t=0;t<this.nrTokens;t++){e[t]=this.acquire()}return Promise.all(e)}nrWaiting(){return this.waiting.length}}Sema.prototype.v=i.deprecate(Sema.prototype.v,"`v()` is deperecated; use `acquire()` instead");Sema.prototype.p=i.deprecate(Sema.prototype.p,"`p()` is deprecated; use `release()` instead");e.exports=Sema},46:function(e,t,n){"use strict";const r=n(323).fromCallback;const i=n(622);const o=n(729);const a=n(648);const s=n(370).pathExists;function createFile(e,t){function makeFile(){o.writeFile(e,"",e=>{if(e)return t(e);t()})}o.stat(e,(n,r)=>{if(!n&&r.isFile())return t();const o=i.dirname(e);s(o,(e,n)=>{if(e)return t(e);if(n)return makeFile();a.mkdirs(o,e=>{if(e)return t(e);makeFile()})})})}function createFileSync(e){let t;try{t=o.statSync(e)}catch(e){}if(t&&t.isFile())return;const n=i.dirname(e);if(!o.existsSync(n)){a.mkdirsSync(n)}o.writeFileSync(e,"")}e.exports={createFile:r(createFile),createFileSync:createFileSync}},50:function(e){"use strict";e.exports={437:"cp437",737:"cp737",775:"cp775",850:"cp850",852:"cp852",855:"cp855",856:"cp856",857:"cp857",858:"cp858",860:"cp860",861:"cp861",862:"cp862",863:"cp863",864:"cp864",865:"cp865",866:"cp866",869:"cp869",874:"windows874",922:"cp922",1046:"cp1046",1124:"cp1124",1125:"cp1125",1129:"cp1129",1133:"cp1133",1161:"cp1161",1162:"cp1162",1163:"cp1163",1250:"windows1250",1251:"windows1251",1252:"windows1252",1253:"windows1253",1254:"windows1254",1255:"windows1255",1256:"windows1256",1257:"windows1257",1258:"windows1258",28591:"iso88591",28592:"iso88592",28593:"iso88593",28594:"iso88594",28595:"iso88595",28596:"iso88596",28597:"iso88597",28598:"iso88598",28599:"iso88599",28600:"iso885910",28601:"iso885911",28603:"iso885913",28604:"iso885914",28605:"iso885915",28606:"iso885916",windows874:{type:"_sbcs",chars:"€<><E282AC><EFBFBD><EFBFBD><EFBFBD><E280A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>“”•<E28093><E28094><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู<E0B8B9><E0B8BA><EFBFBD><EFBFBD>฿เแโใไๅๆ็่้๊๋์ํ๎๏๑๒๓๔๕๖๗๘๙๚๛<E0B99A><E0B99B><EFBFBD><EFBFBD>"},win874:"windows874",cp874:"windows874",windows1250:{type:"_sbcs",chars:"€<><EFBFBD>„…†‡<E280A0>‰ŠŚŤŽŹ<C5BD>“”•<E28093>™šśťžź ˇ˘Ł¤Ą¦§¨©Ş«¬­®Ż°±˛ł´µ¶·¸ąş»Ľ˝ľżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙"},win1250:"windows1250",cp1250:"windows1250",windows1251:{type:"_sbcs",chars:"ЂЃѓ„…†‡€‰ЉЊЌЋЏђ“”•<E28093>™љњќћџ ЎўЈ¤Ґ¦§Ё©Є«¬­®Ї°±Ііґµ¶·ё№є»јЅѕїАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},win1251:"windows1251",cp1251:"windows1251",windows1252:{type:"_sbcs",chars:"€<>ƒ„…†‡ˆ‰ŠŒ<E280B9>Ž<EFBFBD><C5BD>“”•˜™šœ<E280BA>žŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},win1252:"windows1252",cp1252:"windows1252",windows1253:{type:"_sbcs",chars:"€<>ƒ„…†‡<E280A0><EFBFBD><EFBFBD><E280B9><EFBFBD><EFBFBD><EFBFBD>“”•<E28093><EFBFBD><EFBFBD><E280BA><EFBFBD><EFBFBD> ΅Ά£¤¥¦§¨©<C2A8>«¬­®―°±²³΄µ¶·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ<CEA0>ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ<CF8D>"},win1253:"windows1253",cp1253:"windows1253",windows1254:{type:"_sbcs",chars:"€<>ƒ„…†‡ˆ‰ŠŒ<E280B9><C592><EFBFBD><EFBFBD>“”•˜™šœ<E280BA><C593>Ÿ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ"},win1254:"windows1254",cp1254:"windows1254",windows1255:{type:"_sbcs",chars:"€<>ƒ„…†‡ˆ<CB86><EFBFBD><E280B9><EFBFBD><EFBFBD><EFBFBD>“”•˜<CB9C><EFBFBD><E280BA><EFBFBD><EFBFBD> ¡¢£₪¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾¿ְֱֲֳִֵֶַָֹֺֻּֽ־ֿ׀ׁׂ׃װױײ׳״<D7B3><D7B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>אבגדהוזחטיךכלםמןנסעףפץצקרשת<D7A9><D7AA><E2808E>"},win1255:"windows1255",cp1255:"windows1255",windows1256:{type:"_sbcs",chars:"€پ‚ƒ„…†‡ˆ‰ٹ‹Œچژڈگ‘’“”•–—ک™ڑ›œ‌‍ں ،¢£¤¥¦§¨©ھ«¬­®¯°±²³´µ¶·¸¹؛»¼½¾؟ہءآأؤإئابةتثجحخدذرزسشصض×طظعغـفقكàلâمنهوçèéêëىيîïًٌٍَôُِ÷ّùْûü‎‏ے"},win1256:"windows1256",cp1256:"windows1256",windows1257:{type:"_sbcs",chars:"€<><EFBFBD>„…†‡<E280A0><EFBFBD><EFBFBD>¨ˇ¸<CB87>“”•<E28093><EFBFBD><EFBFBD>¯˛<C2AF> <EFBFBD>¢£¤<C2A3>¦§Ø©Ŗ«¬­®Æ°±²³´µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž˙"},win1257:"windows1257",cp1257:"windows1257",windows1258:{type:"_sbcs",chars:"€<>ƒ„…†‡ˆ<CB86>Œ<E280B9><C592><EFBFBD><EFBFBD>“”•˜<CB9C>œ<E280BA><C593>Ÿ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},win1258:"windows1258",cp1258:"windows1258",iso88591:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},cp28591:"iso88591",iso88592:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ą˘Ł¤ĽŚ§¨ŠŞŤŹ­ŽŻ°ą˛ł´ľśˇ¸šşťź˝žżŔÁÂĂÄĹĆÇČÉĘËĚÍÎĎĐŃŇÓÔŐÖ×ŘŮÚŰÜÝŢßŕáâăäĺćçčéęëěíîďđńňóôőö÷řůúűüýţ˙"},cp28592:"iso88592",iso88593:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ħ˘£¤<C2A3>Ĥ§¨İŞĞĴ­<C4B4>ݰħ²³´µĥ·¸ışğĵ½<C4B5>żÀÁÂ<C381>ÄĊĈÇÈÉÊËÌÍÎÏ<C38E>ÑÒÓÔĠÖ×ĜÙÚÛÜŬŜßàáâ<C3A1>äċĉçèéêëìíîï<C3AE>ñòóôġö÷ĝùúûüŭŝ˙"},cp28593:"iso88593",iso88594:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄĸŖ¤Ĩϧ¨ŠĒĢŦ­Ž¯°ą˛ŗ´ĩšēģŧŊžŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎĪĐŅŌĶÔÕÖרŲÚÛÜŨŪßāáâãäåæįčéęëėíîīđņōķôõö÷øųúûüũū˙"},cp28594:"iso88594",iso88595:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ЁЂЃЄЅІЇЈЉЊЋЌ­ЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђѓєѕіїјљњћќ§ўџ"},cp28595:"iso88595",iso88596:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ <C29F><C2A0><EFBFBD>¤<EFBFBD><C2A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>،­<D88C><C2AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>؛<EFBFBD><D89B><EFBFBD>؟<EFBFBD>ءآأؤإئابةتثجحخدذرزسشصضطظعغ<D8B9><D8BA><EFBFBD><EFBFBD><EFBFBD>ـفقكلمنهوىيًٌٍَُِّْ<D991><D992><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"},cp28596:"iso88596",iso88597:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ £€₯¦§¨©ͺ«¬­<C2AC>―°±²³΄΅Ά·ΈΉΊ»Ό½ΎΏΐΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ<CEA0>ΣΤΥΦΧΨΩΪΫάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώ<CF8D>"},cp28597:"iso88597",iso88598:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ <C29F>¢£¤¥¦§¨©×«¬­®¯°±²³´µ¶·¸¹÷»¼½¾<C2BD><C2BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>‗אבגדהוזחטיךכלםמןנסעףפץצקרשת<D7A9><D7AA><E2808E>"},cp28598:"iso88598",iso88599:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏĞÑÒÓÔÕÖרÙÚÛÜİŞßàáâãäåæçèéêëìíîïğñòóôõö÷øùúûüışÿ"},cp28599:"iso88599",iso885910:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄĒĢĪĨͧĻĐŠŦŽ­ŪŊ°ąēģīĩķ·ļđšŧž―ūŋĀÁÂÃÄÅÆĮČÉĘËĖÍÎÏÐŅŌÓÔÕÖŨØŲÚÛÜÝÞßāáâãäåæįčéęëėíîïðņōóôõöũøųúûüýþĸ"},cp28600:"iso885910",iso885911:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู<E0B8B9><E0B8BA><EFBFBD><EFBFBD>฿เแโใไๅๆ็่้๊๋์ํ๎๏๑๒๓๔๕๖๗๘๙๚๛<E0B99A><E0B99B><EFBFBD><EFBFBD>"},cp28601:"iso885911",iso885913:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ”¢£¤„¦§Ø©Ŗ«¬­®Æ°±²³“µ¶·ø¹ŗ»¼½¾æĄĮĀĆÄÅĘĒČÉŹĖĢĶĪĻŠŃŅÓŌÕÖ×ŲŁŚŪÜŻŽßąįāćäåęēčéźėģķīļšńņóōõö÷ųłśūüżž’"},cp28603:"iso885913",iso885914:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ Ḃḃ£ĊċḊ§Ẁ©ẂḋỲ­®ŸḞḟĠġṀṁ¶ṖẁṗẃṠỳẄẅṡÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŴÑÒÓÔÕÖṪØÙÚÛÜÝŶßàáâãäåæçèéêëìíîïŵñòóôõöṫøùúûüýŷÿ"},cp28604:"iso885914",iso885915:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£€¥Š§š©ª«¬­®¯°±²³Žµ¶·ž¹º»ŒœŸ¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},cp28605:"iso885915",iso885916:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ĄąŁ€„Чš©Ș«Ź­źŻ°±ČłŽ”¶·žčș»ŒœŸżÀÁÂĂÄĆÆÇÈÉÊËÌÍÎÏĐŃÒÓÔŐÖŚŰÙÚÛÜĘȚßàáâăäćæçèéêëìíîïđńòóôőöśűùúûüęțÿ"},cp28606:"iso885916",cp437:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜ¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm437:"cp437",csibm437:"cp437",cp737:{type:"_sbcs",chars:"ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρσςτυφχψ░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀ωάέήϊίόύϋώΆΈΉΊΌΎΏ±≥≤ΪΫ÷≈°∙·√ⁿ²■ "},ibm737:"cp737",csibm737:"cp737",cp775:{type:"_sbcs",chars:"ĆüéāäģåćłēŖŗīŹÄÅÉæÆōöĢ¢ŚśÖÜø£Ø×¤ĀĪóŻżź”¦©®¬½¼Ł«»░▒▓│┤ĄČĘĖ╣║╗╝ĮŠ┐└┴┬├─┼ŲŪ╚╔╩╦╠═╬Žąčęėįšųūž┘┌█▄▌▐▀ÓßŌŃõÕµńĶķĻļņĒŅ’­±“¾¶§÷„°∙·¹³²■ "},ibm775:"cp775",csibm775:"cp775",cp850:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈıÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´­±‗¾¶§÷¸°¨·¹³²■ "},ibm850:"cp850",csibm850:"cp850",cp852:{type:"_sbcs",chars:"ÇüéâäůćçłëŐőîŹÄĆÉĹĺôöĽľŚśÖÜŤťŁ×čáíóúĄąŽžĘ꬟Ⱥ«»░▒▓│┤ÁÂĚŞ╣║╗╝Żż┐└┴┬├─┼Ăă╚╔╩╦╠═╬¤đĐĎËďŇÍÎě┘┌█▄ŢŮ▀ÓßÔŃńňŠšŔÚŕŰýÝţ´­˝˛ˇ˘§÷¸°¨˙űŘř■ "},ibm852:"cp852",csibm852:"cp852",cp855:{type:"_sbcs",chars:"ђЂѓЃёЁєЄѕЅіІїЇјЈљЉњЊћЋќЌўЎџЏюЮъЪаАбБцЦдДеЕфФгГ«»░▒▓│┤хХиИ╣║╗╝йЙ┐└┴┬├─┼кК╚╔╩╦╠═╬¤лЛмМнНоОп┘┌█▄Пя▀ЯрРсСтТуУжЖвВьЬ№­ыЫзЗшШэЭщЩчЧ§■ "},ibm855:"cp855",csibm855:"cp855",cp856:{type:"_sbcs",chars:"אבגדהוזחטיךכלםמןנסעףפץצקרשת<D7A9>£<EFBFBD>×<EFBFBD><C397><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>®¬½¼<C2BD>«»░▒▓│┤<E29482><E294A4><EFBFBD>©╣║╗╝¢¥┐└┴┬├─┼<E29480><E294BC>╚╔╩╦╠═╬¤<E295AC><C2A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>┘┌█▄¦<E29684><EFBFBD><E29680><EFBFBD><EFBFBD><EFBFBD><EFBFBD>µ<EFBFBD><C2B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¯´­±‗¾¶§÷¸°¨·¹³²■ "},ibm856:"cp856",csibm856:"cp856",cp857:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîıÄÅÉæÆôöòûùİÖÜø£ØŞşáíóúñÑĞ𿮬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ºªÊËÈ<C38B>ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµ<C395>×ÚÛÙìÿ¯´­±<C2AD>¾¶§÷¸°¨·¹³²■ "},ibm857:"cp857",csibm857:"cp857",cp858:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø×ƒáíóúñѪº¿®¬½¼¡«»░▒▓│┤ÁÂÀ©╣║╗╝¢¥┐└┴┬├─┼ãÃ╚╔╩╦╠═╬¤ðÐÊËÈ€ÍÎÏ┘┌█▄¦Ì▀ÓßÔÒõÕµþÞÚÛÙýݯ´­±‗¾¶§÷¸°¨·¹³²■ "},ibm858:"cp858",csibm858:"cp858",cp860:{type:"_sbcs",chars:"ÇüéâãàÁçêÊèÍÔìÃÂÉÀÈôõòÚùÌÕÜ¢£Ù₧ÓáíóúñѪº¿Ò¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm860:"cp860",csibm860:"cp860",cp861:{type:"_sbcs",chars:"ÇüéâäàåçêëèÐðÞÄÅÉæÆôöþûÝýÖÜø£Ø₧ƒáíóúÁÍÓÚ¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm861:"cp861",csibm861:"cp861",cp862:{type:"_sbcs",chars:"אבגדהוזחטיךכלםמןנסעףפץצקרשת¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm862:"cp862",csibm862:"cp862",cp863:{type:"_sbcs",chars:"ÇüéâÂà¶çêëèïî‗À§ÉÈÊôËÏûù¤ÔÜ¢£ÙÛƒ¦´óú¨¸³¯Î⌐¬½¼¾«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm863:"cp863",csibm863:"cp863",cp864:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#$٪&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~°·∙√▒─│┼┤┬├┴┐┌└┘β∞φ±½¼≈«»ﻷﻸ<EFBBB7><EFBBB8>ﻻﻼ<EFBBBB> ­ﺂ£¤ﺄ<C2A4><EFBA84>ﺏﺕﺙ،ﺝﺡﺥ٠١٢٣٤٥٦٧٨٩ﻑ؛ﺱﺵﺹ؟¢ﺀﺁﺃﺅﻊﺋﺑﺓﺗﺛﺟﺣﺧﺩﺫﺭﺯﺳﺷﺻﺿﻁﻅﻋﻏ¦¬÷×ﻉـﻓﻗﻛﻟﻣﻧﻭﻯﻳﺽﻌﻎﻍﻡﹽّﻥﻰﻲﻐﻕﻵﻶﻝﻙﻱ■<EFBBB1>"},ibm864:"cp864",csibm864:"cp864",cp865:{type:"_sbcs",chars:"ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜø£Ø₧ƒáíóúñѪº¿⌐¬½¼¡«¤░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ibm865:"cp865",csibm865:"cp865",cp866:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№¤■ "},ibm866:"cp866",csibm866:"cp866",cp869:{type:"_sbcs",chars:"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ά<EFBFBD>·¬¦Έ―ΉΊΪΌ<CEAA><CE8C>ΎΫ©Ώ²³ά£έήίϊΐόύΑΒΓΔΕΖΗ½ΘΙ«»░▒▓│┤ΚΛΜΝ╣║╗╝ΞΟ┐└┴┬├─┼ΠΡ╚╔╩╦╠═╬ΣΤΥΦΧΨΩαβγ┘┌█▄δε▀ζηθικλμνξοπρσςτ΄­±υφχ§ψ΅°¨ωϋΰώ■ "},ibm869:"cp869",csibm869:"cp869",cp922:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®‾°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏŠÑÒÓÔÕÖרÙÚÛÜÝŽßàáâãäåæçèéêëìíîïšñòóôõö÷øùúûüýžÿ"},ibm922:"cp922",csibm922:"cp922",cp1046:{type:"_sbcs",chars:"ﺈ×÷ﹱˆ■│─┐┌└┘ﹹﹻﹽﹿﹷﺊﻰﻳﻲﻎﻏﻐﻶﻸﻺﻼ ¤ﺋﺑﺗﺛﺟﺣ،­ﺧﺳ٠١٢٣٤٥٦٧٨٩ﺷ؛ﺻﺿﻊ؟ﻋءآأؤإئابةتثجحخدذرزسشصضطﻇعغﻌﺂﺄﻓـفقكلمنهوىيًٌٍَُِّْﻗﻛﻟﻵﻷﻹﻻﻣﻧ<EFBBAC>"},ibm1046:"cp1046",csibm1046:"cp1046",cp1124:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ЁЂҐЄЅІЇЈЉЊЋЌ­ЎЏАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя№ёђґєѕіїјљњћќ§ўџ"},ibm1124:"cp1124",csibm1124:"cp1124",cp1125:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёҐґЄєІіЇї·√№¤■ "},ibm1125:"cp1125",csibm1125:"cp1125",cp1129:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§œ©ª«¬­®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},ibm1129:"cp1129",csibm1129:"cp1129",cp1133:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ກຂຄງຈສຊຍດຕຖທນບປຜຝພຟມຢຣລວຫອຮ<E0BAAD><E0BAAE><EFBFBD>ຯະາຳິີຶືຸູຼັົຽ<E0BABB><E0BABD><EFBFBD>ເແໂໃໄ່້໊໋໌ໍໆ<E0BB8D>ໜໝ₭<E0BB9D><E282AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>໑໒໓໔໕໖໗໘໙<E0BB98><E0BB99>¢¬¦<C2AC>"},ibm1133:"cp1133",csibm1133:"cp1133",cp1161:{type:"_sbcs",chars:"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>่กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู้๊๋€฿เแโใไๅๆ็่้๊๋์ํ๎๏๑๒๓๔๕๖๗๘๙๚๛¢¬¦ "},ibm1161:"cp1161",csibm1161:"cp1161",cp1162:{type:"_sbcs",chars:"€‚ƒ„†‡ˆ‰Š‹ŒŽ“”•˜™š›œžŸ กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู<E0B8B9><E0B8BA><EFBFBD><EFBFBD>฿เแโใไๅๆ็่้๊๋์ํ๎๏๑๒๓๔๕๖๗๘๙๚๛<E0B99A><E0B99B><EFBFBD><EFBFBD>"},ibm1162:"cp1162",csibm1162:"cp1162",cp1163:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£€¥¦§œ©ª«¬­®¯°±²³Ÿµ¶·Œ¹º»¼½¾¿ÀÁÂĂÄÅÆÇÈÉÊË̀ÍÎÏĐÑ̉ÓÔƠÖרÙÚÛÜỮßàáâăäåæçèéêë́íîïđṇ̃óôơö÷øùúûüư₫ÿ"},ibm1163:"cp1163",csibm1163:"cp1163",maccroatian:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®Š™´¨≠ŽØ∞±≤≥∆µ∂∑∏š∫ªºΩžø¿¡¬√ƒ≈ƫȅ ÀÃÕŒœĐ—“”÷◊<C3B7>©¤Æ»·„‰ÂćÁčÈÍÎÏÌÓÔđÒÚÛÙıˆ˜¯πË˚¸Êæˇ"},maccyrillic:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°¢£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµ∂ЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤"},macgreek:{type:"_sbcs",chars:"Ĺ²É³ÖÜ΅àâä΄¨çéèê룙î‰ôö¦­ùûü†ΓΔΘΛΞΠß®©ΣΪ§≠°·Α±≤≥¥ΒΕΖΗΙΚΜΦΫΨΩάΝ¬ΟΡΤ«»… ΥΧΆΈœ―“”÷ΉΊΌΎέήίόΏύαβψδεφγηιξκλμνοπώρστθωςχυζϊϋΐΰ<CE90>"},maciceland:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûüݰ¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ—“”÷◊ÿŸ¤ÐðÞþý·„‰ÂÊÁËÈÍÎÏÌÓÔ<C393>ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macroman:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ—“”÷◊ÿŸ¤fifl‡·„‰ÂÊÁËÈÍÎÏÌÓÔ<C393>ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macromania:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ĂŞ∞±≤≥¥µ∂∑∏π∫ªºΩăş¿¡¬√ƒ≈∆«»… ÀÃÕŒœ—“”÷◊ÿŸ¤Ţţ‡·„‰ÂÊÁËÈÍÎÏÌÓÔ<C393>ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},macthai:{type:"_sbcs",chars:"«»…“”<E2809D>•<E28098> กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู\ufeff—฿เแโใไๅๆ็่้๊๋์ํ™๏๑๒๓๔๕๖๗๘๙®©<C2AE><C2A9><EFBFBD><EFBFBD>"},macturkish:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ—“”÷◊ÿŸĞğİıŞş‡·„‰ÂÊÁËÈÍÎÏÌÓÔ<C393>ÒÚÛÙ<C39B>ˆ˜¯˘˙˚¸˝˛ˇ"},macukraine:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ†°Ґ£§•¶І®©™Ђђ≠Ѓѓ∞±≤≥іµґЈЄєЇїЉљЊњјЅ¬√ƒ≈∆«»… ЋћЌќѕ–—“”‘’÷„ЎўЏџ№Ёёяабвгдежзийклмнопрстуфхцчшщъыьэю¤"},koi8r:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ё╓╔╕╖╗╘╙╚╛╜╝╞╟╠╡Ё╢╣╤╥╦╧╨╩╪╫╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8u:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґ╝╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪Ґ╬©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8ru:{type:"_sbcs",chars:"─│┌┐└┘├┤┬┴┼▀▄█▌▐░▒▓⌠■∙√≈≤≥ ⌡°²·÷═║╒ёє╔ії╗╘╙╚╛ґў╞╟╠╡ЁЄ╣ІЇ╦╧╨╩╪ҐЎ©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},koi8t:{type:"_sbcs",chars:"қғҒ„…†‡<E280A0>‰ҳҲҷҶ<D2B7>Қ“”•<E28093><EFBFBD><EFBFBD><E280BA><EFBFBD><EFBFBD><EFBFBD>ӯӮё¤ӣ¦§<C2A6><C2A7><EFBFBD>«¬­®<C2AD>°±²Ё<C2B2>Ӣ¶·<C2B6><EFBFBD>»<EFBFBD><C2BB><EFBFBD>©юабцдефгхийклмнопярстужвьызшэщчъЮАБЦДЕФГХИЙКЛМНОПЯРСТУЖВЬЫЗШЭЩЧЪ"},armscii8:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ <C29F>և։)(»«—.՝,-֊…՜՛՞ԱաԲբԳգԴդԵեԶզԷէԸըԹթԺժԻիԼլԽխԾծԿկՀհՁձՂղՃճՄմՅյՆնՇշՈոՉչՊպՋջՌռՍսՎվՏտՐրՑցՒւՓփՔքՕօՖֆ՚<D686>"},rk1048:{type:"_sbcs",chars:"ЂЃѓ„…†‡€‰ЉЊҚҺЏђ“”•<E28093>™љњқһџ ҰұӘ¤Ө¦§Ё©Ғ«¬­®Ү°±Ііөµ¶·ё№ғ»әҢңүАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},tcvn:{type:"_sbcs",chars:"\0ÚỤỪỬỮ\b\t\n\v\f\rỨỰỲỶỸÝỴ !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ÀẢÃÁẠẶẬÈẺẼÉẸỆÌỈĨÍỊÒỎÕÓỌỘỜỞỠỚỢÙỦŨ ĂÂÊÔƠƯĐăâêôơưđẶ̀̀̉̃́àảãáạẲằẳẵắẴẮẦẨẪẤỀặầẩẫấậèỂẻẽéẹềểễếệìỉỄẾỒĩíịòỔỏõóọồổỗốộờởỡớợùỖủũúụừửữứựỳỷỹýỵỐ"},georgianacademy:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზთიკლმნოპჟრსტუფქღყშჩცძწჭხჯჰჱჲჳჴჵჶçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},georgianps:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿აბგდევზჱთიკლმნჲოპჟრსტჳუფქღყშჩცძწჭხჴჯჰჵæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"},pt154:{type:"_sbcs",chars:"ҖҒӮғ„…ҶҮҲүҠӢҢҚҺҸҗ‘’“”•–—ҳҷҡӣңқһҹ ЎўЈӨҘҰ§Ё©Ә«¬ӯ®Ҝ°ұІіҙө¶·ё№ә»јҪҫҝАБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя"},viscii:{type:"_sbcs",chars:"\0ẴẪ\b\t\n\v\f\r !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ẠẮẰẶẤẦẨẬẼẸẾỀỂỄỆỐỒỔỖỘỢỚỜỞỊỎỌỈỦŨỤỲÕắằặấầẩậẽẹếềểễệốồổỗỠƠộờởịỰỨỪỬơớƯÀÁÂÃẢĂẳẵÈÉÊẺÌÍĨỳĐứÒÓÔạỷừửÙÚỹỵÝỡưàáâãảăữẫèéêẻìíĩỉđựòóôõỏọụùúũủýợỮ"},iso646cn:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#¥%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}‾<E280BE><7F><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"},iso646jp:{type:"_sbcs",chars:"\0\b\t\n\v\f\r !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[¥]^_`abcdefghijklmnopqrstuvwxyz{|}‾<E280BE><7F><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"},hproman8:{type:"_sbcs",chars:"€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ÀÂÈÊËÎÏ´ˋˆ¨˜ÙÛ₤¯Ýý°ÇçÑñ¡¿¤£¥§ƒ¢âêôûáéóúàèòùäëöüÅîØÆåíøæÄìÖÜÉïßÔÁÃãÐðÍÌÓÒÕõŠšÚŸÿÞþ·µ¶¾—¼½ªº«■»±<C2BB>"},macintosh:{type:"_sbcs",chars:"ÄÅÇÉÑÖÜáàâäãåçéèêëíìîïñóòôöõúùûü†°¢£§•¶ß®©™´¨≠ÆØ∞±≤≥¥µ∂∑∏π∫ªºΩæø¿¡¬√ƒ≈∆«»… ÀÃÕŒœ—“”÷◊ÿŸ¤fifl‡·„‰ÂÊÁËÈÍÎÏÌÓÔ<C393>ÒÚÛÙıˆ˜¯˘˙˚¸˝˛ˇ"},ascii:{type:"_sbcs",chars:"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"},tis620:{type:"_sbcs",chars:"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรฤลฦวศษสหฬอฮฯะัาำิีึืฺุู<E0B8B9><E0B8BA><EFBFBD><EFBFBD>฿เแโใไๅๆ็่้๊๋์ํ๎๏๑๒๓๔๕๖๗๘๙๚๛<E0B99A><E0B99B><EFBFBD><EFBFBD>"}}},51:function(e,t,n){e.exports=globSync;globSync.GlobSync=GlobSync;var r=n(747);var i=n(589);var o=n(904);var a=o.Minimatch;var s=n(478).Glob;var c=n(669);var u=n(622);var l=n(357);var f=n(100);var p=n(109);var d=p.alphasort;var h=p.alphasorti;var m=p.setopts;var v=p.ownProp;var g=p.childrenIgnored;var y=p.isIgnored;function globSync(e,t){if(typeof t==="function"||arguments.length===3)throw new TypeError("callback provided to sync glob\n"+"See: https://github.com/isaacs/node-glob/issues/167");return new GlobSync(e,t).found}function GlobSync(e,t){if(!e)throw new Error("must provide pattern");if(typeof t==="function"||arguments.length===3)throw new TypeError("callback provided to sync glob\n"+"See: https://github.com/isaacs/node-glob/issues/167");if(!(this instanceof GlobSync))return new GlobSync(e,t);m(this,e,t);if(this.noprocess)return this;var n=this.minimatch.set.length;this.matches=new Array(n);for(var r=0;r<n;r++){this._process(this.minimatch.set[r],r,false)}this._finish()}GlobSync.prototype._finish=function(){l(this instanceof GlobSync);if(this.realpath){var e=this;this.matches.forEach(function(t,n){var r=e.matches[n]=Object.create(null);for(var o in t){try{o=e._makeAbs(o);var a=i.realpathSync(o,e.realpathCache);r[a]=true}catch(t){if(t.syscall==="stat")r[e._makeAbs(o)]=true;else throw t}}})}p.finish(this)};GlobSync.prototype._process=function(e,t,n){l(this instanceof GlobSync);var r=0;while(typeof e[r]==="string"){r++}var i;switch(r){case e.length:this._processSimple(e.join("/"),t);return;case 0:i=null;break;default:i=e.slice(0,r).join("/");break}var a=e.slice(r);var s;if(i===null)s=".";else if(f(i)||f(e.join("/"))){if(!i||!f(i))i="/"+i;s=i}else s=i;var c=this._makeAbs(s);if(g(this,s))return;var u=a[0]===o.GLOBSTAR;if(u)this._processGlobStar(i,s,c,a,t,n);else this._processReaddir(i,s,c,a,t,n)};GlobSync.prototype._processReaddir=function(e,t,n,r,i,o){var a=this._readdir(n,o);if(!a)return;var s=r[0];var c=!!this.minimatch.negate;var l=s._glob;var f=this.dot||l.charAt(0)===".";var p=[];for(var d=0;d<a.length;d++){var h=a[d];if(h.charAt(0)!=="."||f){var m;if(c&&!e){m=!h.match(s)}else{m=h.match(s)}if(m)p.push(h)}}var v=p.length;if(v===0)return;if(r.length===1&&!this.mark&&!this.stat){if(!this.matches[i])this.matches[i]=Object.create(null);for(var d=0;d<v;d++){var h=p[d];if(e){if(e.slice(-1)!=="/")h=e+"/"+h;else h=e+h}if(h.charAt(0)==="/"&&!this.nomount){h=u.join(this.root,h)}this._emitMatch(i,h)}return}r.shift();for(var d=0;d<v;d++){var h=p[d];var g;if(e)g=[e,h];else g=[h];this._process(g.concat(r),i,o)}};GlobSync.prototype._emitMatch=function(e,t){if(y(this,t))return;var n=this._makeAbs(t);if(this.mark)t=this._mark(t);if(this.absolute){t=n}if(this.matches[e][t])return;if(this.nodir){var r=this.cache[n];if(r==="DIR"||Array.isArray(r))return}this.matches[e][t]=true;if(this.stat)this._stat(t)};GlobSync.prototype._readdirInGlobStar=function(e){if(this.follow)return this._readdir(e,false);var t;var n;var i;try{n=r.lstatSync(e)}catch(e){if(e.code==="ENOENT"){return null}}var o=n&&n.isSymbolicLink();this.symlinks[e]=o;if(!o&&n&&!n.isDirectory())this.cache[e]="FILE";else t=this._readdir(e,false);return t};GlobSync.prototype._readdir=function(e,t){var n;if(t&&!v(this.symlinks,e))return this._readdirInGlobStar(e);if(v(this.cache,e)){var i=this.cache[e];if(!i||i==="FILE")return null;if(Array.isArray(i))return i}try{return this._readdirEntries(e,r.readdirSync(e))}catch(t){this._readdirError(e,t);return null}};GlobSync.prototype._readdirEntries=function(e,t){if(!this.mark&&!this.stat){for(var n=0;n<t.length;n++){var r=t[n];if(e==="/")r=e+r;else r=e+"/"+r;this.cache[r]=true}}this.cache[e]=t;return t};GlobSync.prototype._readdirError=function(e,t){switch(t.code){case"ENOTSUP":case"ENOTDIR":var n=this._makeAbs(e);this.cache[n]="FILE";if(n===this.cwdAbs){var r=new Error(t.code+" invalid cwd "+this.cwd);r.path=this.cwd;r.code=t.code;throw r}break;case"ENOENT":case"ELOOP":case"ENAMETOOLONG":case"UNKNOWN":this.cache[this._makeAbs(e)]=false;break;default:this.cache[this._makeAbs(e)]=false;if(this.strict)throw t;if(!this.silent)console.error("glob error",t);break}};GlobSync.prototype._processGlobStar=function(e,t,n,r,i,o){var a=this._readdir(n,o);if(!a)return;var s=r.slice(1);var c=e?[e]:[];var u=c.concat(s);this._process(u,i,false);var l=a.length;var f=this.symlinks[n];if(f&&o)return;for(var p=0;p<l;p++){var d=a[p];if(d.charAt(0)==="."&&!this.dot)continue;var h=c.concat(a[p],s);this._process(h,i,true);var m=c.concat(a[p],r);this._process(m,i,true)}};GlobSync.prototype._processSimple=function(e,t){var n=this._stat(e);if(!this.matches[t])this.matches[t]=Object.create(null);if(!n)return;if(e&&f(e)&&!this.nomount){var r=/[\/\\]$/.test(e);if(e.charAt(0)==="/"){e=u.join(this.root,e)}else{e=u.resolve(this.root,e);if(r)e+="/"}}if(process.platform==="win32")e=e.replace(/\\/g,"/");this._emitMatch(t,e)};GlobSync.prototype._stat=function(e){var t=this._makeAbs(e);var n=e.slice(-1)==="/";if(e.length>this.maxLength)return false;if(!this.stat&&v(this.cache,t)){var i=this.cache[t];if(Array.isArray(i))i="DIR";if(!n||i==="DIR")return i;if(n&&i==="FILE")return false}var o;var a=this.statCache[t];if(!a){var s;try{s=r.lstatSync(t)}catch(e){if(e&&(e.code==="ENOENT"||e.code==="ENOTDIR")){this.statCache[t]=false;return false}}if(s&&s.isSymbolicLink()){try{a=r.statSync(t)}catch(e){a=s}}else{a=s}}this.statCache[t]=a;var i=true;if(a)i=a.isDirectory()?"DIR":"FILE";this.cache[t]=this.cache[t]||i;if(n&&i==="FILE")return false;return i};GlobSync.prototype._mark=function(e){return p.mark(this,e)};GlobSync.prototype._makeAbs=function(e){return p.makeAbs(this,e)}},68:function(e,t,n){"use strict";e.exports={shiftjis:{type:"_dbcs",table:function(){return n(73)},encodeAdd:{"¥":92,"‾":126},encodeSkipVals:[{from:60736,to:63808}]},csshiftjis:"shiftjis",mskanji:"shiftjis",sjis:"shiftjis",windows31j:"shiftjis",ms31j:"shiftjis",xsjis:"shiftjis",windows932:"shiftjis",ms932:"shiftjis",932:"shiftjis",cp932:"shiftjis",eucjp:{type:"_dbcs",table:function(){return n(145)},encodeAdd:{"¥":92,"‾":126}},gb2312:"cp936",gb231280:"cp936",gb23121980:"cp936",csgb2312:"cp936",csiso58gb231280:"cp936",euccn:"cp936",windows936:"cp936",ms936:"cp936",936:"cp936",cp936:{type:"_dbcs",table:function(){return n(466)}},gbk:{type:"_dbcs",table:function(){return n(466).concat(n(863))}},xgbk:"gbk",isoir58:"gbk",gb18030:{type:"_dbcs",table:function(){return n(466).concat(n(863))},gb18030:function(){return n(858)},encodeSkipVals:[128],encodeAdd:{"€":41699}},chinese:"gb18030",windows949:"cp949",ms949:"cp949",949:"cp949",cp949:{type:"_dbcs",table:function(){return n(585)}},cseuckr:"cp949",csksc56011987:"cp949",euckr:"cp949",isoir149:"cp949",korean:"cp949",ksc56011987:"cp949",ksc56011989:"cp949",ksc5601:"cp949",windows950:"cp950",ms950:"cp950",950:"cp950",cp950:{type:"_dbcs",table:function(){return n(544)}},big5:"big5hkscs",big5hkscs:{type:"_dbcs",table:function(){return n(544).concat(n(280))},encodeSkipVals:[41676]},cnbig5:"big5hkscs",csbig5:"big5hkscs",xxbig5:"big5hkscs"}},73:function(e){e.exports=[["0","\0",128],["a1","。",62],["8140"," 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈",9,"+-±×"],["8180","÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇◆□■△▲▽▼※〒→←↑↓〓"],["81b8","∈∋⊆⊇⊂⊃∪∩"],["81c8","∧∨¬⇒⇔∀∃"],["81da","∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬"],["81f0","ʼn♯♭♪†‡¶"],["81fc","◯"],["824f","",9],["8260","",25],["8281","",25],["829f","ぁ",82],["8340","ァ",62],["8380","ム",22],["839f","Α",16,"Σ",6],["83bf","α",16,"σ",6],["8440","А",5,"ЁЖ",25],["8470","а",5,"ёж",7],["8480","о",17],["849f","─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂"],["8740","①",19,"",9],["875f","㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡"],["877e","㍻"],["8780","〝〟№㏍℡㊤",4,"㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪"],["889f","亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭"],["8940","院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円"],["8980","園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改"],["8a40","魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫"],["8a80","橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄"],["8b40","機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救"],["8b80","朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈"],["8c40","掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨"],["8c80","劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向"],["8d40","后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降"],["8d80","項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷"],["8e40","察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止"],["8e80","死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周"],["8f40","宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳"],["8f80","準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾"],["9040","拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨"],["9080","逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線"],["9140","繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻"],["9180","操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只"],["9240","叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄"],["9280","逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓"],["9340","邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬"],["9380","凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入"],["9440","如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅"],["9480","楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美"],["9540","鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷"],["9580","斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋"],["9640","法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆"],["9680","摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒"],["9740","諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲"],["9780","沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯"],["9840","蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕"],["989f","弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲"],["9940","僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭"],["9980","凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨"],["9a40","咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸"],["9a80","噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩"],["9b40","奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀"],["9b80","它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏"],["9c40","廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠"],["9c80","怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛"],["9d40","戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫"],["9d80","捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼"],["9e40","曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎"],["9e80","梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣"],["9f40","檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯"],["9f80","麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌"],["e040","漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝"],["e080","烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱"],["e140","瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿"],["e180","痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬"],["e240","磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰"],["e280","窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆"],["e340","紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷"],["e380","縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋"],["e440","隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤"],["e480","艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈"],["e540","蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬"],["e580","蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞"],["e640","襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧"],["e680","諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊"],["e740","蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜"],["e780","轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮"],["e840","錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙"],["e880","閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰"],["e940","顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃"],["e980","騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈"],["ea40","鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯"],["ea80","黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠堯槇遙瑤凜熙"],["ed40","纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏"],["ed80","塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱"],["ee40","犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙"],["ee80","蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"],["eeef","",9,"¬¦'""],["f040","",62],["f080","",124],["f140","",62],["f180","",124],["f240","",62],["f280","",124],["f340","",62],["f380","",124],["f440","",62],["f480","",124],["f540","",62],["f580","",124],["f640","",62],["f680","",124],["f740","",62],["f780","",124],["f840","",62],["f880","",124],["f940",""],["fa40","",9,"",9,"¬¦'"㈱№℡∵纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊"],["fa80","兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯"],["fb40","涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神"],["fb80","祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙"],["fc40","髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"]]},79:function(e,t,n){"use strict";var r=n(886);var i=n(104);e.exports.convert=convert;function convert(e,t,n,r){n=checkEncoding(n||"UTF-8");t=checkEncoding(t||"UTF-8");e=e||"";var o;if(n!=="UTF-8"&&typeof e==="string"){e=new Buffer(e,"binary")}if(n===t){if(typeof e==="string"){o=new Buffer(e)}else{o=e}}else if(i&&!r){try{o=convertIconv(e,t,n)}catch(r){console.error(r);try{o=convertIconvLite(e,t,n)}catch(t){console.error(t);o=e}}}else{try{o=convertIconvLite(e,t,n)}catch(t){console.error(t);o=e}}if(typeof o==="string"){o=new Buffer(o,"utf-8")}return o}function convertIconv(e,t,n){var r,o;o=new i(n,t+"//TRANSLIT//IGNORE");r=o.convert(e);return r.slice(0,r.length)}function convertIconvLite(e,t,n){if(t==="UTF-8"){return r.decode(e,n)}else if(n==="UTF-8"){return r.encode(e,t)}else{return r.encode(r.decode(e,n),t)}}function checkEncoding(e){return(e||"").toString().trim().replace(/^latin[\-_]?(\d+)$/i,"ISO-8859-$1").replace(/^win(?:dows)?[\-_]?(\d+)$/i,"WINDOWS-$1").replace(/^utf[\-_]?(\d+)$/i,"UTF-$1").replace(/^ks_c_5601\-1987$/i,"CP949").replace(/^us[\-_]?ascii$/i,"ASCII").toUpperCase()}},87:function(e){e.exports=__webpack_require__(4316)},97:function(e){"use strict";const t=/([()\][%!^"`<>&|;, *?])/g;function escapeCommand(e){e=e.replace(t,"^$1");return e}function escapeArgument(e,n){e=`${e}`;e=e.replace(/(\\*)"/g,'$1$1\\"');e=e.replace(/(\\*)$/,"$1$1");e=`"${e}"`;e=e.replace(t,"^$1");if(n){e=e.replace(t,"^$1")}return e}e.exports.command=escapeCommand;e.exports.argument=escapeArgument},100:function(e){"use strict";function posix(e){return e.charAt(0)==="/"}function win32(e){var t=/^([a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?([\\\/])?([\s\S]*?)$/;var n=t.exec(e);var r=n[1]||"";var i=Boolean(r&&r.charAt(1)!==":");return Boolean(n[2]||i)}e.exports=process.platform==="win32"?win32:posix;e.exports.posix=posix;e.exports.win32=win32},104:function(e,t,n){"use strict";var r;var i;try{r="iconv";i=n(210).Iconv}catch(e){}e.exports=i},106:function(e,t,n){"use strict";const r=n(747);const i=n(147);function readShebang(e){const t=150;let n;if(Buffer.alloc){n=Buffer.alloc(t)}else{n=new Buffer(t);n.fill(0)}let o;try{o=r.openSync(e,"r");r.readSync(o,n,0,t,0);r.closeSync(o)}catch(e){}return i(n.toString())}e.exports=readShebang},109:function(e,t,n){t.alphasort=alphasort;t.alphasorti=alphasorti;t.setopts=setopts;t.ownProp=ownProp;t.makeAbs=makeAbs;t.finish=finish;t.mark=mark;t.isIgnored=isIgnored;t.childrenIgnored=childrenIgnored;function ownProp(e,t){return Object.prototype.hasOwnProperty.call(e,t)}var r=n(622);var i=n(904);var o=n(100);var a=i.Minimatch;function alphasorti(e,t){return e.toLowerCase().localeCompare(t.toLowerCase())}function alphasort(e,t){return e.localeCompare(t)}function setupIgnores(e,t){e.ignore=t.ignore||[];if(!Array.isArray(e.ignore))e.ignore=[e.ignore];if(e.ignore.length){e.ignore=e.ignore.map(ignoreMap)}}function ignoreMap(e){var t=null;if(e.slice(-3)==="/**"){var n=e.replace(/(\/\*\*)+$/,"");t=new a(n,{dot:true})}return{matcher:new a(e,{dot:true}),gmatcher:t}}function setopts(e,t,n){if(!n)n={};if(n.matchBase&&-1===t.indexOf("/")){if(n.noglobstar){throw new Error("base matching requires globstar")}t="**/"+t}e.silent=!!n.silent;e.pattern=t;e.strict=n.strict!==false;e.realpath=!!n.realpath;e.realpathCache=n.realpathCache||Object.create(null);e.follow=!!n.follow;e.dot=!!n.dot;e.mark=!!n.mark;e.nodir=!!n.nodir;if(e.nodir)e.mark=true;e.sync=!!n.sync;e.nounique=!!n.nounique;e.nonull=!!n.nonull;e.nosort=!!n.nosort;e.nocase=!!n.nocase;e.stat=!!n.stat;e.noprocess=!!n.noprocess;e.absolute=!!n.absolute;e.maxLength=n.maxLength||Infinity;e.cache=n.cache||Object.create(null);e.statCache=n.statCache||Object.create(null);e.symlinks=n.symlinks||Object.create(null);setupIgnores(e,n);e.changedCwd=false;var i=process.cwd();if(!ownProp(n,"cwd"))e.cwd=i;else{e.cwd=r.resolve(n.cwd);e.changedCwd=e.cwd!==i}e.root=n.root||r.resolve(e.cwd,"/");e.root=r.resolve(e.root);if(process.platform==="win32")e.root=e.root.replace(/\\/g,"/");e.cwdAbs=o(e.cwd)?e.cwd:makeAbs(e,e.cwd);if(process.platform==="win32")e.cwdAbs=e.cwdAbs.replace(/\\/g,"/");e.nomount=!!n.nomount;n.nonegate=true;n.nocomment=true;e.minimatch=new a(t,n);e.options=e.minimatch.options}function finish(e){var t=e.nounique;var n=t?[]:Object.create(null);for(var r=0,i=e.matches.length;r<i;r++){var o=e.matches[r];if(!o||Object.keys(o).length===0){if(e.nonull){var a=e.minimatch.globSet[r];if(t)n.push(a);else n[a]=true}}else{var s=Object.keys(o);if(t)n.push.apply(n,s);else s.forEach(function(e){n[e]=true})}}if(!t)n=Object.keys(n);if(!e.nosort)n=n.sort(e.nocase?alphasorti:alphasort);if(e.mark){for(var r=0;r<n.length;r++){n[r]=e._mark(n[r])}if(e.nodir){n=n.filter(function(t){var n=!/\/$/.test(t);var r=e.cache[t]||e.cache[makeAbs(e,t)];if(n&&r)n=r!=="DIR"&&!Array.isArray(r);return n})}}if(e.ignore.length)n=n.filter(function(t){return!isIgnored(e,t)});e.found=n}function mark(e,t){var n=makeAbs(e,t);var r=e.cache[n];var i=t;if(r){var o=r==="DIR"||Array.isArray(r);var a=t.slice(-1)==="/";if(o&&!a)i+="/";else if(!o&&a)i=i.slice(0,-1);if(i!==t){var s=makeAbs(e,i);e.statCache[s]=e.statCache[n];e.cache[s]=e.cache[n]}}return i}function makeAbs(e,t){var n=t;if(t.charAt(0)==="/"){n=r.join(e.root,t)}else if(o(t)||t===""){n=t}else if(e.changedCwd){n=r.resolve(e.cwd,t)}else{n=r.resolve(t)}if(process.platform==="win32")n=n.replace(/\\/g,"/");return n}function isIgnored(e,t){if(!e.ignore.length)return false;return e.ignore.some(function(e){return e.matcher.match(t)||!!(e.gmatcher&&e.gmatcher.match(t))})}function childrenIgnored(e,t){if(!e.ignore.length)return false;return e.ignore.some(function(e){return!!(e.gmatcher&&e.gmatcher.match(t))})}},129:function(e){e.exports=__webpack_require__(2041)},130:function(e,t){function isArray(e){if(Array.isArray){return Array.isArray(e)}return objectToString(e)==="[object Array]"}t.isArray=isArray;function isBoolean(e){return typeof e==="boolean"}t.isBoolean=isBoolean;function isNull(e){return e===null}t.isNull=isNull;function isNullOrUndefined(e){return e==null}t.isNullOrUndefined=isNullOrUndefined;function isNumber(e){return typeof e==="number"}t.isNumber=isNumber;function isString(e){return typeof e==="string"}t.isString=isString;function isSymbol(e){return typeof e==="symbol"}t.isSymbol=isSymbol;function isUndefined(e){return e===void 0}t.isUndefined=isUndefined;function isRegExp(e){return objectToString(e)==="[object RegExp]"}t.isRegExp=isRegExp;function isObject(e){return typeof e==="object"&&e!==null}t.isObject=isObject;function isDate(e){return objectToString(e)==="[object Date]"}t.isDate=isDate;function isError(e){return objectToString(e)==="[object Error]"||e instanceof Error}t.isError=isError;function isFunction(e){return typeof e==="function"}t.isFunction=isFunction;function isPrimitive(e){return e===null||typeof e==="boolean"||typeof e==="number"||typeof e==="string"||typeof e==="symbol"||typeof e==="undefined"}t.isPrimitive=isPrimitive;t.isBuffer=Buffer.isBuffer;function objectToString(e){return Object.prototype.toString.call(e)}},135:function(e,t,n){"use strict";var r=n(603).Buffer;e.exports={utf8:{type:"_internal",bomAware:true},cesu8:{type:"_internal",bomAware:true},unicode11utf8:"utf8",ucs2:{type:"_internal",bomAware:true},utf16le:"ucs2",binary:{type:"_internal"},base64:{type:"_internal"},hex:{type:"_internal"},_internal:InternalCodec};function InternalCodec(e,t){this.enc=e.encodingName;this.bomAware=e.bomAware;if(this.enc==="base64")this.encoder=InternalEncoderBase64;else if(this.enc==="cesu8"){this.enc="utf8";this.encoder=InternalEncoderCesu8;if(r.from("eda0bdedb2a9","hex").toString()!=="💩"){this.decoder=InternalDecoderCesu8;this.defaultCharUnicode=t.defaultCharUnicode}}}InternalCodec.prototype.encoder=InternalEncoder;InternalCodec.prototype.decoder=InternalDecoder;var i=n(304).StringDecoder;if(!i.prototype.end)i.prototype.end=function(){};function InternalDecoder(e,t){i.call(this,t.enc)}InternalDecoder.prototype=i.prototype;function InternalEncoder(e,t){this.enc=t.enc}InternalEncoder.prototype.write=function(e){return r.from(e,this.enc)};InternalEncoder.prototype.end=function(){};function InternalEncoderBase64(e,t){this.prevStr=""}InternalEncoderBase64.prototype.write=function(e){e=this.prevStr+e;var t=e.length-e.length%4;this.prevStr=e.slice(t);e=e.slice(0,t);return r.from(e,"base64")};InternalEncoderBase64.prototype.end=function(){return r.from(this.prevStr,"base64")};function InternalEncoderCesu8(e,t){}InternalEncoderCesu8.prototype.write=function(e){var t=r.alloc(e.length*3),n=0;for(var i=0;i<e.length;i++){var o=e.charCodeAt(i);if(o<128)t[n++]=o;else if(o<2048){t[n++]=192+(o>>>6);t[n++]=128+(o&63)}else{t[n++]=224+(o>>>12);t[n++]=128+(o>>>6&63);t[n++]=128+(o&63)}}return t.slice(0,n)};InternalEncoderCesu8.prototype.end=function(){};function InternalDecoderCesu8(e,t){this.acc=0;this.contBytes=0;this.accBytes=0;this.defaultCharUnicode=t.defaultCharUnicode}InternalDecoderCesu8.prototype.write=function(e){var t=this.acc,n=this.contBytes,r=this.accBytes,i="";for(var o=0;o<e.length;o++){var a=e[o];if((a&192)!==128){if(n>0){i+=this.defaultCharUnicode;n=0}if(a<128){i+=String.fromCharCode(a)}else if(a<224){t=a&31;n=1;r=1}else if(a<240){t=a&15;n=2;r=1}else{i+=this.defaultCharUnicode}}else{if(n>0){t=t<<6|a&63;n--;r++;if(n===0){if(r===2&&t<128&&t>0)i+=this.defaultCharUnicode;else if(r===3&&t<2048)i+=this.defaultCharUnicode;else i+=String.fromCharCode(t)}}else{i+=this.defaultCharUnicode}}}this.acc=t;this.contBytes=n;this.accBytes=r;return i};InternalDecoderCesu8.prototype.end=function(){var e=0;if(this.contBytes>0)e+=this.defaultCharUnicode;return e}},143:function(e,t,n){"use strict";const r=n(729);const i=n(622);const o=n(648).mkdirs;const a=n(370).pathExists;const s=n(402).utimesMillis;const c=Symbol("notExist");function copy(e,t,n,r){if(typeof n==="function"&&!r){r=n;n={}}else if(typeof n==="function"){n={filter:n}}r=r||function(){};n=n||{};n.clobber="clobber"in n?!!n.clobber:true;n.overwrite="overwrite"in n?!!n.overwrite:n.clobber;if(n.preserveTimestamps&&process.arch==="ia32"){console.warn(`fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269`)}checkPaths(e,t,(i,o)=>{if(i)return r(i);if(n.filter)return handleFilter(checkParentDir,o,e,t,n,r);return checkParentDir(o,e,t,n,r)})}function checkParentDir(e,t,n,r,s){const c=i.dirname(n);a(c,(i,a)=>{if(i)return s(i);if(a)return startCopy(e,t,n,r,s);o(c,i=>{if(i)return s(i);return startCopy(e,t,n,r,s)})})}function handleFilter(e,t,n,r,i,o){Promise.resolve(i.filter(n,r)).then(a=>{if(a){if(t)return e(t,n,r,i,o);return e(n,r,i,o)}return o()},e=>o(e))}function startCopy(e,t,n,r,i){if(r.filter)return handleFilter(getStats,e,t,n,r,i);return getStats(e,t,n,r,i)}function getStats(e,t,n,i,o){const a=i.dereference?r.stat:r.lstat;a(t,(r,a)=>{if(r)return o(r);if(a.isDirectory())return onDir(a,e,t,n,i,o);else if(a.isFile()||a.isCharacterDevice()||a.isBlockDevice())return onFile(a,e,t,n,i,o);else if(a.isSymbolicLink())return onLink(e,t,n,i,o)})}function onFile(e,t,n,r,i,o){if(t===c)return copyFile(e,n,r,i,o);return mayCopyFile(e,n,r,i,o)}function mayCopyFile(e,t,n,i,o){if(i.overwrite){r.unlink(n,r=>{if(r)return o(r);return copyFile(e,t,n,i,o)})}else if(i.errorOnExist){return o(new Error(`'${n}' already exists`))}else return o()}function copyFile(e,t,n,i,o){if(typeof r.copyFile==="function"){return r.copyFile(t,n,t=>{if(t)return o(t);return setDestModeAndTimestamps(e,n,i,o)})}return copyFileFallback(e,t,n,i,o)}function copyFileFallback(e,t,n,i,o){const a=r.createReadStream(t);a.on("error",e=>o(e)).once("open",()=>{const t=r.createWriteStream(n,{mode:e.mode});t.on("error",e=>o(e)).on("open",()=>a.pipe(t)).once("close",()=>setDestModeAndTimestamps(e,n,i,o))})}function setDestModeAndTimestamps(e,t,n,i){r.chmod(t,e.mode,r=>{if(r)return i(r);if(n.preserveTimestamps){return s(t,e.atime,e.mtime,i)}return i()})}function onDir(e,t,n,r,i,o){if(t===c)return mkDirAndCopy(e,n,r,i,o);if(t&&!t.isDirectory()){return o(new Error(`Cannot overwrite non-directory '${r}' with directory '${n}'.`))}return copyDir(n,r,i,o)}function mkDirAndCopy(e,t,n,i,o){r.mkdir(n,a=>{if(a)return o(a);copyDir(t,n,i,t=>{if(t)return o(t);return r.chmod(n,e.mode,o)})})}function copyDir(e,t,n,i){r.readdir(e,(r,o)=>{if(r)return i(r);return copyDirItems(o,e,t,n,i)})}function copyDirItems(e,t,n,r,i){const o=e.pop();if(!o)return i();return copyDirItem(e,o,t,n,r,i)}function copyDirItem(e,t,n,r,o,a){const s=i.join(n,t);const c=i.join(r,t);checkPaths(s,c,(t,i)=>{if(t)return a(t);startCopy(i,s,c,o,t=>{if(t)return a(t);return copyDirItems(e,n,r,o,a)})})}function onLink(e,t,n,o,a){r.readlink(t,(t,s)=>{if(t)return a(t);if(o.dereference){s=i.resolve(process.cwd(),s)}if(e===c){return r.symlink(s,n,a)}else{r.readlink(n,(t,c)=>{if(t){if(t.code==="EINVAL"||t.code==="UNKNOWN")return r.symlink(s,n,a);return a(t)}if(o.dereference){c=i.resolve(process.cwd(),c)}if(isSrcSubdir(s,c)){return a(new Error(`Cannot copy '${s}' to a subdirectory of itself, '${c}'.`))}if(e.isDirectory()&&isSrcSubdir(c,s)){return a(new Error(`Cannot overwrite '${c}' with '${s}'.`))}return copyLink(s,n,a)})}})}function copyLink(e,t,n){r.unlink(t,i=>{if(i)return n(i);return r.symlink(e,t,n)})}function isSrcSubdir(e,t){const n=i.resolve(e).split(i.sep);const r=i.resolve(t).split(i.sep);return n.reduce((e,t,n)=>e&&r[n]===t,true)}function checkStats(e,t,n){r.stat(e,(e,i)=>{if(e)return n(e);r.stat(t,(e,t)=>{if(e){if(e.code==="ENOENT")return n(null,{srcStat:i,destStat:c});return n(e)}return n(null,{srcStat:i,destStat:t})})})}function checkPaths(e,t,n){checkStats(e,t,(r,i)=>{if(r)return n(r);const{srcStat:o,destStat:a}=i;if(a.ino&&a.ino===o.ino){return n(new Error("Source and destination must not be the same."))}if(o.isDirectory()&&isSrcSubdir(e,t)){return n(new Error(`Cannot copy '${e}' to a subdirectory of itself, '${t}'.`))}return n(null,a)})}e.exports=copy},145:function(e){e.exports=[["0","\0",127],["8ea1","。",62],["a1a1"," 、。,.・:;?!゛゜´`¨^ ̄_ヽヾゝゞ〃仝々〆〇ー―‐/\~∥|…‥‘’“”()〔〕[]{}〈",9,"+-±×÷=≠<>≦≧∞∴♂♀°′″℃¥$¢£%#&*@§☆★○●◎◇"],["a2a1","◆□■△▲▽▼※〒→←↑↓〓"],["a2ba","∈∋⊆⊇⊂⊃∪∩"],["a2ca","∧∨¬⇒⇔∀∃"],["a2dc","∠⊥⌒∂∇≡≒≪≫√∽∝∵∫∬"],["a2f2","ʼn♯♭♪†‡¶"],["a2fe","◯"],["a3b0","",9],["a3c1","",25],["a3e1","",25],["a4a1","ぁ",82],["a5a1","ァ",85],["a6a1","Α",16,"Σ",6],["a6c1","α",16,"σ",6],["a7a1","А",5,"ЁЖ",25],["a7d1","а",5,"ёж",25],["a8a1","─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂"],["ada1","①",19,"",9],["adc0","㍉㌔㌢㍍㌘㌧㌃㌶㍑㍗㌍㌦㌣㌫㍊㌻㎜㎝㎞㎎㎏㏄㎡"],["addf","㍻〝〟№㏍℡㊤",4,"㈱㈲㈹㍾㍽㍼≒≡∫∮∑√⊥∠∟⊿∵∩∪"],["b0a1","亜唖娃阿哀愛挨姶逢葵茜穐悪握渥旭葦芦鯵梓圧斡扱宛姐虻飴絢綾鮎或粟袷安庵按暗案闇鞍杏以伊位依偉囲夷委威尉惟意慰易椅為畏異移維緯胃萎衣謂違遺医井亥域育郁磯一壱溢逸稲茨芋鰯允印咽員因姻引飲淫胤蔭"],["b1a1","院陰隠韻吋右宇烏羽迂雨卯鵜窺丑碓臼渦嘘唄欝蔚鰻姥厩浦瓜閏噂云運雲荏餌叡営嬰影映曳栄永泳洩瑛盈穎頴英衛詠鋭液疫益駅悦謁越閲榎厭円園堰奄宴延怨掩援沿演炎焔煙燕猿縁艶苑薗遠鉛鴛塩於汚甥凹央奥往応"],["b2a1","押旺横欧殴王翁襖鴬鴎黄岡沖荻億屋憶臆桶牡乙俺卸恩温穏音下化仮何伽価佳加可嘉夏嫁家寡科暇果架歌河火珂禍禾稼箇花苛茄荷華菓蝦課嘩貨迦過霞蚊俄峨我牙画臥芽蛾賀雅餓駕介会解回塊壊廻快怪悔恢懐戒拐改"],["b3a1","魁晦械海灰界皆絵芥蟹開階貝凱劾外咳害崖慨概涯碍蓋街該鎧骸浬馨蛙垣柿蛎鈎劃嚇各廓拡撹格核殻獲確穫覚角赫較郭閣隔革学岳楽額顎掛笠樫橿梶鰍潟割喝恰括活渇滑葛褐轄且鰹叶椛樺鞄株兜竃蒲釜鎌噛鴨栢茅萱"],["b4a1","粥刈苅瓦乾侃冠寒刊勘勧巻喚堪姦完官寛干幹患感慣憾換敢柑桓棺款歓汗漢澗潅環甘監看竿管簡緩缶翰肝艦莞観諌貫還鑑間閑関陥韓館舘丸含岸巌玩癌眼岩翫贋雁頑顔願企伎危喜器基奇嬉寄岐希幾忌揮机旗既期棋棄"],["b5a1","機帰毅気汽畿祈季稀紀徽規記貴起軌輝飢騎鬼亀偽儀妓宜戯技擬欺犠疑祇義蟻誼議掬菊鞠吉吃喫桔橘詰砧杵黍却客脚虐逆丘久仇休及吸宮弓急救朽求汲泣灸球究窮笈級糾給旧牛去居巨拒拠挙渠虚許距鋸漁禦魚亨享京"],["b6a1","供侠僑兇競共凶協匡卿叫喬境峡強彊怯恐恭挟教橋況狂狭矯胸脅興蕎郷鏡響饗驚仰凝尭暁業局曲極玉桐粁僅勤均巾錦斤欣欽琴禁禽筋緊芹菌衿襟謹近金吟銀九倶句区狗玖矩苦躯駆駈駒具愚虞喰空偶寓遇隅串櫛釧屑屈"],["b7a1","掘窟沓靴轡窪熊隈粂栗繰桑鍬勲君薫訓群軍郡卦袈祁係傾刑兄啓圭珪型契形径恵慶慧憩掲携敬景桂渓畦稽系経継繋罫茎荊蛍計詣警軽頚鶏芸迎鯨劇戟撃激隙桁傑欠決潔穴結血訣月件倹倦健兼券剣喧圏堅嫌建憲懸拳捲"],["b8a1","検権牽犬献研硯絹県肩見謙賢軒遣鍵険顕験鹸元原厳幻弦減源玄現絃舷言諺限乎個古呼固姑孤己庫弧戸故枯湖狐糊袴股胡菰虎誇跨鈷雇顧鼓五互伍午呉吾娯後御悟梧檎瑚碁語誤護醐乞鯉交佼侯候倖光公功効勾厚口向"],["b9a1","后喉坑垢好孔孝宏工巧巷幸広庚康弘恒慌抗拘控攻昂晃更杭校梗構江洪浩港溝甲皇硬稿糠紅紘絞綱耕考肯肱腔膏航荒行衡講貢購郊酵鉱砿鋼閤降項香高鴻剛劫号合壕拷濠豪轟麹克刻告国穀酷鵠黒獄漉腰甑忽惚骨狛込"],["baa1","此頃今困坤墾婚恨懇昏昆根梱混痕紺艮魂些佐叉唆嵯左差査沙瑳砂詐鎖裟坐座挫債催再最哉塞妻宰彩才採栽歳済災采犀砕砦祭斎細菜裁載際剤在材罪財冴坂阪堺榊肴咲崎埼碕鷺作削咋搾昨朔柵窄策索錯桜鮭笹匙冊刷"],["bba1","察拶撮擦札殺薩雑皐鯖捌錆鮫皿晒三傘参山惨撒散桟燦珊産算纂蚕讃賛酸餐斬暫残仕仔伺使刺司史嗣四士始姉姿子屍市師志思指支孜斯施旨枝止死氏獅祉私糸紙紫肢脂至視詞詩試誌諮資賜雌飼歯事似侍児字寺慈持時"],["bca1","次滋治爾璽痔磁示而耳自蒔辞汐鹿式識鴫竺軸宍雫七叱執失嫉室悉湿漆疾質実蔀篠偲柴芝屡蕊縞舎写射捨赦斜煮社紗者謝車遮蛇邪借勺尺杓灼爵酌釈錫若寂弱惹主取守手朱殊狩珠種腫趣酒首儒受呪寿授樹綬需囚収周"],["bda1","宗就州修愁拾洲秀秋終繍習臭舟蒐衆襲讐蹴輯週酋酬集醜什住充十従戎柔汁渋獣縦重銃叔夙宿淑祝縮粛塾熟出術述俊峻春瞬竣舜駿准循旬楯殉淳準潤盾純巡遵醇順処初所暑曙渚庶緒署書薯藷諸助叙女序徐恕鋤除傷償"],["bea1","勝匠升召哨商唱嘗奨妾娼宵将小少尚庄床廠彰承抄招掌捷昇昌昭晶松梢樟樵沼消渉湘焼焦照症省硝礁祥称章笑粧紹肖菖蒋蕉衝裳訟証詔詳象賞醤鉦鍾鐘障鞘上丈丞乗冗剰城場壌嬢常情擾条杖浄状畳穣蒸譲醸錠嘱埴飾"],["bfa1","拭植殖燭織職色触食蝕辱尻伸信侵唇娠寝審心慎振新晋森榛浸深申疹真神秦紳臣芯薪親診身辛進針震人仁刃塵壬尋甚尽腎訊迅陣靭笥諏須酢図厨逗吹垂帥推水炊睡粋翠衰遂酔錐錘随瑞髄崇嵩数枢趨雛据杉椙菅頗雀裾"],["c0a1","澄摺寸世瀬畝是凄制勢姓征性成政整星晴棲栖正清牲生盛精聖声製西誠誓請逝醒青静斉税脆隻席惜戚斥昔析石積籍績脊責赤跡蹟碩切拙接摂折設窃節説雪絶舌蝉仙先千占宣専尖川戦扇撰栓栴泉浅洗染潜煎煽旋穿箭線"],["c1a1","繊羨腺舛船薦詮賎践選遷銭銑閃鮮前善漸然全禅繕膳糎噌塑岨措曾曽楚狙疏疎礎祖租粗素組蘇訴阻遡鼠僧創双叢倉喪壮奏爽宋層匝惣想捜掃挿掻操早曹巣槍槽漕燥争痩相窓糟総綜聡草荘葬蒼藻装走送遭鎗霜騒像増憎"],["c2a1","臓蔵贈造促側則即息捉束測足速俗属賊族続卒袖其揃存孫尊損村遜他多太汰詑唾堕妥惰打柁舵楕陀駄騨体堆対耐岱帯待怠態戴替泰滞胎腿苔袋貸退逮隊黛鯛代台大第醍題鷹滝瀧卓啄宅托択拓沢濯琢託鐸濁諾茸凧蛸只"],["c3a1","叩但達辰奪脱巽竪辿棚谷狸鱈樽誰丹単嘆坦担探旦歎淡湛炭短端箪綻耽胆蛋誕鍛団壇弾断暖檀段男談値知地弛恥智池痴稚置致蜘遅馳築畜竹筑蓄逐秩窒茶嫡着中仲宙忠抽昼柱注虫衷註酎鋳駐樗瀦猪苧著貯丁兆凋喋寵"],["c4a1","帖帳庁弔張彫徴懲挑暢朝潮牒町眺聴脹腸蝶調諜超跳銚長頂鳥勅捗直朕沈珍賃鎮陳津墜椎槌追鎚痛通塚栂掴槻佃漬柘辻蔦綴鍔椿潰坪壷嬬紬爪吊釣鶴亭低停偵剃貞呈堤定帝底庭廷弟悌抵挺提梯汀碇禎程締艇訂諦蹄逓"],["c5a1","邸鄭釘鼎泥摘擢敵滴的笛適鏑溺哲徹撤轍迭鉄典填天展店添纏甜貼転顛点伝殿澱田電兎吐堵塗妬屠徒斗杜渡登菟賭途都鍍砥砺努度土奴怒倒党冬凍刀唐塔塘套宕島嶋悼投搭東桃梼棟盗淘湯涛灯燈当痘祷等答筒糖統到"],["c6a1","董蕩藤討謄豆踏逃透鐙陶頭騰闘働動同堂導憧撞洞瞳童胴萄道銅峠鴇匿得徳涜特督禿篤毒独読栃橡凸突椴届鳶苫寅酉瀞噸屯惇敦沌豚遁頓呑曇鈍奈那内乍凪薙謎灘捺鍋楢馴縄畷南楠軟難汝二尼弐迩匂賑肉虹廿日乳入"],["c7a1","如尿韮任妊忍認濡禰祢寧葱猫熱年念捻撚燃粘乃廼之埜嚢悩濃納能脳膿農覗蚤巴把播覇杷波派琶破婆罵芭馬俳廃拝排敗杯盃牌背肺輩配倍培媒梅楳煤狽買売賠陪這蝿秤矧萩伯剥博拍柏泊白箔粕舶薄迫曝漠爆縛莫駁麦"],["c8a1","函箱硲箸肇筈櫨幡肌畑畠八鉢溌発醗髪伐罰抜筏閥鳩噺塙蛤隼伴判半反叛帆搬斑板氾汎版犯班畔繁般藩販範釆煩頒飯挽晩番盤磐蕃蛮匪卑否妃庇彼悲扉批披斐比泌疲皮碑秘緋罷肥被誹費避非飛樋簸備尾微枇毘琵眉美"],["c9a1","鼻柊稗匹疋髭彦膝菱肘弼必畢筆逼桧姫媛紐百謬俵彪標氷漂瓢票表評豹廟描病秒苗錨鋲蒜蛭鰭品彬斌浜瀕貧賓頻敏瓶不付埠夫婦富冨布府怖扶敷斧普浮父符腐膚芙譜負賦赴阜附侮撫武舞葡蕪部封楓風葺蕗伏副復幅服"],["caa1","福腹複覆淵弗払沸仏物鮒分吻噴墳憤扮焚奮粉糞紛雰文聞丙併兵塀幣平弊柄並蔽閉陛米頁僻壁癖碧別瞥蔑箆偏変片篇編辺返遍便勉娩弁鞭保舗鋪圃捕歩甫補輔穂募墓慕戊暮母簿菩倣俸包呆報奉宝峰峯崩庖抱捧放方朋"],["cba1","法泡烹砲縫胞芳萌蓬蜂褒訪豊邦鋒飽鳳鵬乏亡傍剖坊妨帽忘忙房暴望某棒冒紡肪膨謀貌貿鉾防吠頬北僕卜墨撲朴牧睦穆釦勃没殆堀幌奔本翻凡盆摩磨魔麻埋妹昧枚毎哩槙幕膜枕鮪柾鱒桝亦俣又抹末沫迄侭繭麿万慢満"],["cca1","漫蔓味未魅巳箕岬密蜜湊蓑稔脈妙粍民眠務夢無牟矛霧鵡椋婿娘冥名命明盟迷銘鳴姪牝滅免棉綿緬面麺摸模茂妄孟毛猛盲網耗蒙儲木黙目杢勿餅尤戻籾貰問悶紋門匁也冶夜爺耶野弥矢厄役約薬訳躍靖柳薮鑓愉愈油癒"],["cda1","諭輸唯佑優勇友宥幽悠憂揖有柚湧涌猶猷由祐裕誘遊邑郵雄融夕予余与誉輿預傭幼妖容庸揚揺擁曜楊様洋溶熔用窯羊耀葉蓉要謡踊遥陽養慾抑欲沃浴翌翼淀羅螺裸来莱頼雷洛絡落酪乱卵嵐欄濫藍蘭覧利吏履李梨理璃"],["cea1","痢裏裡里離陸律率立葎掠略劉流溜琉留硫粒隆竜龍侶慮旅虜了亮僚両凌寮料梁涼猟療瞭稜糧良諒遼量陵領力緑倫厘林淋燐琳臨輪隣鱗麟瑠塁涙累類令伶例冷励嶺怜玲礼苓鈴隷零霊麗齢暦歴列劣烈裂廉恋憐漣煉簾練聯"],["cfa1","蓮連錬呂魯櫓炉賂路露労婁廊弄朗楼榔浪漏牢狼篭老聾蝋郎六麓禄肋録論倭和話歪賄脇惑枠鷲亙亘鰐詫藁蕨椀湾碗腕"],["d0a1","弌丐丕个丱丶丼丿乂乖乘亂亅豫亊舒弍于亞亟亠亢亰亳亶从仍仄仆仂仗仞仭仟价伉佚估佛佝佗佇佶侈侏侘佻佩佰侑佯來侖儘俔俟俎俘俛俑俚俐俤俥倚倨倔倪倥倅伜俶倡倩倬俾俯們倆偃假會偕偐偈做偖偬偸傀傚傅傴傲"],["d1a1","僉僊傳僂僖僞僥僭僣僮價僵儉儁儂儖儕儔儚儡儺儷儼儻儿兀兒兌兔兢竸兩兪兮冀冂囘册冉冏冑冓冕冖冤冦冢冩冪冫决冱冲冰况冽凅凉凛几處凩凭凰凵凾刄刋刔刎刧刪刮刳刹剏剄剋剌剞剔剪剴剩剳剿剽劍劔劒剱劈劑辨"],["d2a1","辧劬劭劼劵勁勍勗勞勣勦飭勠勳勵勸勹匆匈甸匍匐匏匕匚匣匯匱匳匸區卆卅丗卉卍凖卞卩卮夘卻卷厂厖厠厦厥厮厰厶參簒雙叟曼燮叮叨叭叺吁吽呀听吭吼吮吶吩吝呎咏呵咎呟呱呷呰咒呻咀呶咄咐咆哇咢咸咥咬哄哈咨"],["d3a1","咫哂咤咾咼哘哥哦唏唔哽哮哭哺哢唹啀啣啌售啜啅啖啗唸唳啝喙喀咯喊喟啻啾喘喞單啼喃喩喇喨嗚嗅嗟嗄嗜嗤嗔嘔嗷嘖嗾嗽嘛嗹噎噐營嘴嘶嘲嘸噫噤嘯噬噪嚆嚀嚊嚠嚔嚏嚥嚮嚶嚴囂嚼囁囃囀囈囎囑囓囗囮囹圀囿圄圉"],["d4a1","圈國圍圓團圖嗇圜圦圷圸坎圻址坏坩埀垈坡坿垉垓垠垳垤垪垰埃埆埔埒埓堊埖埣堋堙堝塲堡塢塋塰毀塒堽塹墅墹墟墫墺壞墻墸墮壅壓壑壗壙壘壥壜壤壟壯壺壹壻壼壽夂夊夐夛梦夥夬夭夲夸夾竒奕奐奎奚奘奢奠奧奬奩"],["d5a1","奸妁妝佞侫妣妲姆姨姜妍姙姚娥娟娑娜娉娚婀婬婉娵娶婢婪媚媼媾嫋嫂媽嫣嫗嫦嫩嫖嫺嫻嬌嬋嬖嬲嫐嬪嬶嬾孃孅孀孑孕孚孛孥孩孰孳孵學斈孺宀它宦宸寃寇寉寔寐寤實寢寞寥寫寰寶寳尅將專對尓尠尢尨尸尹屁屆屎屓"],["d6a1","屐屏孱屬屮乢屶屹岌岑岔妛岫岻岶岼岷峅岾峇峙峩峽峺峭嶌峪崋崕崗嵜崟崛崑崔崢崚崙崘嵌嵒嵎嵋嵬嵳嵶嶇嶄嶂嶢嶝嶬嶮嶽嶐嶷嶼巉巍巓巒巖巛巫已巵帋帚帙帑帛帶帷幄幃幀幎幗幔幟幢幤幇幵并幺麼广庠廁廂廈廐廏"],["d7a1","廖廣廝廚廛廢廡廨廩廬廱廳廰廴廸廾弃弉彝彜弋弑弖弩弭弸彁彈彌彎弯彑彖彗彙彡彭彳彷徃徂彿徊很徑徇從徙徘徠徨徭徼忖忻忤忸忱忝悳忿怡恠怙怐怩怎怱怛怕怫怦怏怺恚恁恪恷恟恊恆恍恣恃恤恂恬恫恙悁悍惧悃悚"],["d8a1","悄悛悖悗悒悧悋惡悸惠惓悴忰悽惆悵惘慍愕愆惶惷愀惴惺愃愡惻惱愍愎慇愾愨愧慊愿愼愬愴愽慂慄慳慷慘慙慚慫慴慯慥慱慟慝慓慵憙憖憇憬憔憚憊憑憫憮懌懊應懷懈懃懆憺懋罹懍懦懣懶懺懴懿懽懼懾戀戈戉戍戌戔戛"],["d9a1","戞戡截戮戰戲戳扁扎扞扣扛扠扨扼抂抉找抒抓抖拔抃抔拗拑抻拏拿拆擔拈拜拌拊拂拇抛拉挌拮拱挧挂挈拯拵捐挾捍搜捏掖掎掀掫捶掣掏掉掟掵捫捩掾揩揀揆揣揉插揶揄搖搴搆搓搦搶攝搗搨搏摧摯摶摎攪撕撓撥撩撈撼"],["daa1","據擒擅擇撻擘擂擱擧舉擠擡抬擣擯攬擶擴擲擺攀擽攘攜攅攤攣攫攴攵攷收攸畋效敖敕敍敘敞敝敲數斂斃變斛斟斫斷旃旆旁旄旌旒旛旙无旡旱杲昊昃旻杳昵昶昴昜晏晄晉晁晞晝晤晧晨晟晢晰暃暈暎暉暄暘暝曁暹曉暾暼"],["dba1","曄暸曖曚曠昿曦曩曰曵曷朏朖朞朦朧霸朮朿朶杁朸朷杆杞杠杙杣杤枉杰枩杼杪枌枋枦枡枅枷柯枴柬枳柩枸柤柞柝柢柮枹柎柆柧檜栞框栩桀桍栲桎梳栫桙档桷桿梟梏梭梔條梛梃檮梹桴梵梠梺椏梍桾椁棊椈棘椢椦棡椌棍"],["dca1","棔棧棕椶椒椄棗棣椥棹棠棯椨椪椚椣椡棆楹楷楜楸楫楔楾楮椹楴椽楙椰楡楞楝榁楪榲榮槐榿槁槓榾槎寨槊槝榻槃榧樮榑榠榜榕榴槞槨樂樛槿權槹槲槧樅榱樞槭樔槫樊樒櫁樣樓橄樌橲樶橸橇橢橙橦橈樸樢檐檍檠檄檢檣"],["dda1","檗蘗檻櫃櫂檸檳檬櫞櫑櫟檪櫚櫪櫻欅蘖櫺欒欖鬱欟欸欷盜欹飮歇歃歉歐歙歔歛歟歡歸歹歿殀殄殃殍殘殕殞殤殪殫殯殲殱殳殷殼毆毋毓毟毬毫毳毯麾氈氓气氛氤氣汞汕汢汪沂沍沚沁沛汾汨汳沒沐泄泱泓沽泗泅泝沮沱沾"],["dea1","沺泛泯泙泪洟衍洶洫洽洸洙洵洳洒洌浣涓浤浚浹浙涎涕濤涅淹渕渊涵淇淦涸淆淬淞淌淨淒淅淺淙淤淕淪淮渭湮渮渙湲湟渾渣湫渫湶湍渟湃渺湎渤滿渝游溂溪溘滉溷滓溽溯滄溲滔滕溏溥滂溟潁漑灌滬滸滾漿滲漱滯漲滌"],["dfa1","漾漓滷澆潺潸澁澀潯潛濳潭澂潼潘澎澑濂潦澳澣澡澤澹濆澪濟濕濬濔濘濱濮濛瀉瀋濺瀑瀁瀏濾瀛瀚潴瀝瀘瀟瀰瀾瀲灑灣炙炒炯烱炬炸炳炮烟烋烝烙焉烽焜焙煥煕熈煦煢煌煖煬熏燻熄熕熨熬燗熹熾燒燉燔燎燠燬燧燵燼"],["e0a1","燹燿爍爐爛爨爭爬爰爲爻爼爿牀牆牋牘牴牾犂犁犇犒犖犢犧犹犲狃狆狄狎狒狢狠狡狹狷倏猗猊猜猖猝猴猯猩猥猾獎獏默獗獪獨獰獸獵獻獺珈玳珎玻珀珥珮珞璢琅瑯琥珸琲琺瑕琿瑟瑙瑁瑜瑩瑰瑣瑪瑶瑾璋璞璧瓊瓏瓔珱"],["e1a1","瓠瓣瓧瓩瓮瓲瓰瓱瓸瓷甄甃甅甌甎甍甕甓甞甦甬甼畄畍畊畉畛畆畚畩畤畧畫畭畸當疆疇畴疊疉疂疔疚疝疥疣痂疳痃疵疽疸疼疱痍痊痒痙痣痞痾痿痼瘁痰痺痲痳瘋瘍瘉瘟瘧瘠瘡瘢瘤瘴瘰瘻癇癈癆癜癘癡癢癨癩癪癧癬癰"],["e2a1","癲癶癸發皀皃皈皋皎皖皓皙皚皰皴皸皹皺盂盍盖盒盞盡盥盧盪蘯盻眈眇眄眩眤眞眥眦眛眷眸睇睚睨睫睛睥睿睾睹瞎瞋瞑瞠瞞瞰瞶瞹瞿瞼瞽瞻矇矍矗矚矜矣矮矼砌砒礦砠礪硅碎硴碆硼碚碌碣碵碪碯磑磆磋磔碾碼磅磊磬"],["e3a1","磧磚磽磴礇礒礑礙礬礫祀祠祗祟祚祕祓祺祿禊禝禧齋禪禮禳禹禺秉秕秧秬秡秣稈稍稘稙稠稟禀稱稻稾稷穃穗穉穡穢穩龝穰穹穽窈窗窕窘窖窩竈窰窶竅竄窿邃竇竊竍竏竕竓站竚竝竡竢竦竭竰笂笏笊笆笳笘笙笞笵笨笶筐"],["e4a1","筺笄筍笋筌筅筵筥筴筧筰筱筬筮箝箘箟箍箜箚箋箒箏筝箙篋篁篌篏箴篆篝篩簑簔篦篥籠簀簇簓篳篷簗簍篶簣簧簪簟簷簫簽籌籃籔籏籀籐籘籟籤籖籥籬籵粃粐粤粭粢粫粡粨粳粲粱粮粹粽糀糅糂糘糒糜糢鬻糯糲糴糶糺紆"],["e5a1","紂紜紕紊絅絋紮紲紿紵絆絳絖絎絲絨絮絏絣經綉絛綏絽綛綺綮綣綵緇綽綫總綢綯緜綸綟綰緘緝緤緞緻緲緡縅縊縣縡縒縱縟縉縋縢繆繦縻縵縹繃縷縲縺繧繝繖繞繙繚繹繪繩繼繻纃緕繽辮繿纈纉續纒纐纓纔纖纎纛纜缸缺"],["e6a1","罅罌罍罎罐网罕罔罘罟罠罨罩罧罸羂羆羃羈羇羌羔羞羝羚羣羯羲羹羮羶羸譱翅翆翊翕翔翡翦翩翳翹飜耆耄耋耒耘耙耜耡耨耿耻聊聆聒聘聚聟聢聨聳聲聰聶聹聽聿肄肆肅肛肓肚肭冐肬胛胥胙胝胄胚胖脉胯胱脛脩脣脯腋"],["e7a1","隋腆脾腓腑胼腱腮腥腦腴膃膈膊膀膂膠膕膤膣腟膓膩膰膵膾膸膽臀臂膺臉臍臑臙臘臈臚臟臠臧臺臻臾舁舂舅與舊舍舐舖舩舫舸舳艀艙艘艝艚艟艤艢艨艪艫舮艱艷艸艾芍芒芫芟芻芬苡苣苟苒苴苳苺莓范苻苹苞茆苜茉苙"],["e8a1","茵茴茖茲茱荀茹荐荅茯茫茗茘莅莚莪莟莢莖茣莎莇莊荼莵荳荵莠莉莨菴萓菫菎菽萃菘萋菁菷萇菠菲萍萢萠莽萸蔆菻葭萪萼蕚蒄葷葫蒭葮蒂葩葆萬葯葹萵蓊葢蒹蒿蒟蓙蓍蒻蓚蓐蓁蓆蓖蒡蔡蓿蓴蔗蔘蔬蔟蔕蔔蓼蕀蕣蕘蕈"],["e9a1","蕁蘂蕋蕕薀薤薈薑薊薨蕭薔薛藪薇薜蕷蕾薐藉薺藏薹藐藕藝藥藜藹蘊蘓蘋藾藺蘆蘢蘚蘰蘿虍乕虔號虧虱蚓蚣蚩蚪蚋蚌蚶蚯蛄蛆蚰蛉蠣蚫蛔蛞蛩蛬蛟蛛蛯蜒蜆蜈蜀蜃蛻蜑蜉蜍蛹蜊蜴蜿蜷蜻蜥蜩蜚蝠蝟蝸蝌蝎蝴蝗蝨蝮蝙"],["eaa1","蝓蝣蝪蠅螢螟螂螯蟋螽蟀蟐雖螫蟄螳蟇蟆螻蟯蟲蟠蠏蠍蟾蟶蟷蠎蟒蠑蠖蠕蠢蠡蠱蠶蠹蠧蠻衄衂衒衙衞衢衫袁衾袞衵衽袵衲袂袗袒袮袙袢袍袤袰袿袱裃裄裔裘裙裝裹褂裼裴裨裲褄褌褊褓襃褞褥褪褫襁襄褻褶褸襌褝襠襞"],["eba1","襦襤襭襪襯襴襷襾覃覈覊覓覘覡覩覦覬覯覲覺覽覿觀觚觜觝觧觴觸訃訖訐訌訛訝訥訶詁詛詒詆詈詼詭詬詢誅誂誄誨誡誑誥誦誚誣諄諍諂諚諫諳諧諤諱謔諠諢諷諞諛謌謇謚諡謖謐謗謠謳鞫謦謫謾謨譁譌譏譎證譖譛譚譫"],["eca1","譟譬譯譴譽讀讌讎讒讓讖讙讚谺豁谿豈豌豎豐豕豢豬豸豺貂貉貅貊貍貎貔豼貘戝貭貪貽貲貳貮貶賈賁賤賣賚賽賺賻贄贅贊贇贏贍贐齎贓賍贔贖赧赭赱赳趁趙跂趾趺跏跚跖跌跛跋跪跫跟跣跼踈踉跿踝踞踐踟蹂踵踰踴蹊"],["eda1","蹇蹉蹌蹐蹈蹙蹤蹠踪蹣蹕蹶蹲蹼躁躇躅躄躋躊躓躑躔躙躪躡躬躰軆躱躾軅軈軋軛軣軼軻軫軾輊輅輕輒輙輓輜輟輛輌輦輳輻輹轅轂輾轌轉轆轎轗轜轢轣轤辜辟辣辭辯辷迚迥迢迪迯邇迴逅迹迺逑逕逡逍逞逖逋逧逶逵逹迸"],["eea1","遏遐遑遒逎遉逾遖遘遞遨遯遶隨遲邂遽邁邀邊邉邏邨邯邱邵郢郤扈郛鄂鄒鄙鄲鄰酊酖酘酣酥酩酳酲醋醉醂醢醫醯醪醵醴醺釀釁釉釋釐釖釟釡釛釼釵釶鈞釿鈔鈬鈕鈑鉞鉗鉅鉉鉤鉈銕鈿鉋鉐銜銖銓銛鉚鋏銹銷鋩錏鋺鍄錮"],["efa1","錙錢錚錣錺錵錻鍜鍠鍼鍮鍖鎰鎬鎭鎔鎹鏖鏗鏨鏥鏘鏃鏝鏐鏈鏤鐚鐔鐓鐃鐇鐐鐶鐫鐵鐡鐺鑁鑒鑄鑛鑠鑢鑞鑪鈩鑰鑵鑷鑽鑚鑼鑾钁鑿閂閇閊閔閖閘閙閠閨閧閭閼閻閹閾闊濶闃闍闌闕闔闖關闡闥闢阡阨阮阯陂陌陏陋陷陜陞"],["f0a1","陝陟陦陲陬隍隘隕隗險隧隱隲隰隴隶隸隹雎雋雉雍襍雜霍雕雹霄霆霈霓霎霑霏霖霙霤霪霰霹霽霾靄靆靈靂靉靜靠靤靦靨勒靫靱靹鞅靼鞁靺鞆鞋鞏鞐鞜鞨鞦鞣鞳鞴韃韆韈韋韜韭齏韲竟韶韵頏頌頸頤頡頷頽顆顏顋顫顯顰"],["f1a1","顱顴顳颪颯颱颶飄飃飆飩飫餃餉餒餔餘餡餝餞餤餠餬餮餽餾饂饉饅饐饋饑饒饌饕馗馘馥馭馮馼駟駛駝駘駑駭駮駱駲駻駸騁騏騅駢騙騫騷驅驂驀驃騾驕驍驛驗驟驢驥驤驩驫驪骭骰骼髀髏髑髓體髞髟髢髣髦髯髫髮髴髱髷"],["f2a1","髻鬆鬘鬚鬟鬢鬣鬥鬧鬨鬩鬪鬮鬯鬲魄魃魏魍魎魑魘魴鮓鮃鮑鮖鮗鮟鮠鮨鮴鯀鯊鮹鯆鯏鯑鯒鯣鯢鯤鯔鯡鰺鯲鯱鯰鰕鰔鰉鰓鰌鰆鰈鰒鰊鰄鰮鰛鰥鰤鰡鰰鱇鰲鱆鰾鱚鱠鱧鱶鱸鳧鳬鳰鴉鴈鳫鴃鴆鴪鴦鶯鴣鴟鵄鴕鴒鵁鴿鴾鵆鵈"],["f3a1","鵝鵞鵤鵑鵐鵙鵲鶉鶇鶫鵯鵺鶚鶤鶩鶲鷄鷁鶻鶸鶺鷆鷏鷂鷙鷓鷸鷦鷭鷯鷽鸚鸛鸞鹵鹹鹽麁麈麋麌麒麕麑麝麥麩麸麪麭靡黌黎黏黐黔黜點黝黠黥黨黯黴黶黷黹黻黼黽鼇鼈皷鼕鼡鼬鼾齊齒齔齣齟齠齡齦齧齬齪齷齲齶龕龜龠"],["f4a1","堯槇遙瑤凜熙"],["f9a1","纊褜鍈銈蓜俉炻昱棈鋹曻彅丨仡仼伀伃伹佖侒侊侚侔俍偀倢俿倞偆偰偂傔僴僘兊兤冝冾凬刕劜劦勀勛匀匇匤卲厓厲叝﨎咜咊咩哿喆坙坥垬埈埇﨏塚增墲夋奓奛奝奣妤妺孖寀甯寘寬尞岦岺峵崧嵓﨑嵂嵭嶸嶹巐弡弴彧德"],["faa1","忞恝悅悊惞惕愠惲愑愷愰憘戓抦揵摠撝擎敎昀昕昻昉昮昞昤晥晗晙晴晳暙暠暲暿曺朎朗杦枻桒柀栁桄棏﨓楨﨔榘槢樰橫橆橳橾櫢櫤毖氿汜沆汯泚洄涇浯涖涬淏淸淲淼渹湜渧渼溿澈澵濵瀅瀇瀨炅炫焏焄煜煆煇凞燁燾犱"],["fba1","犾猤猪獷玽珉珖珣珒琇珵琦琪琩琮瑢璉璟甁畯皂皜皞皛皦益睆劯砡硎硤硺礰礼神祥禔福禛竑竧靖竫箞精絈絜綷綠緖繒罇羡羽茁荢荿菇菶葈蒴蕓蕙蕫﨟薰蘒﨡蠇裵訒訷詹誧誾諟諸諶譓譿賰賴贒赶﨣軏﨤逸遧郞都鄕鄧釚"],["fca1","釗釞釭釮釤釥鈆鈐鈊鈺鉀鈼鉎鉙鉑鈹鉧銧鉷鉸鋧鋗鋙鋐﨧鋕鋠鋓錥錡鋻﨨錞鋿錝錂鍰鍗鎤鏆鏞鏸鐱鑅鑈閒隆﨩隝隯霳霻靃靍靏靑靕顗顥飯飼餧館馞驎髙髜魵魲鮏鮱鮻鰀鵰鵫鶴鸙黑"],["fcf1","",9,"¬¦'""],["8fa2af","˘ˇ¸˙˝¯˛˚~΄΅"],["8fa2c2","¡¦¿"],["8fa2eb","ºª©®™¤№"],["8fa6e1","ΆΈΉΊΪ"],["8fa6e7","Ό"],["8fa6e9","ΎΫ"],["8fa6ec","Ώ"],["8fa6f1","άέήίϊΐόςύϋΰώ"],["8fa7c2","Ђ",10,"ЎЏ"],["8fa7f2","ђ",10,"ўџ"],["8fa9a1","ÆĐ"],["8fa9a4","Ħ"],["8fa9a6","IJ"],["8fa9a8","ŁĿ"],["8fa9ab","ŊØŒ"],["8fa9af","ŦÞ"],["8fa9c1","æđðħıijĸłŀʼnŋøœßŧþ"],["8faaa1","ÁÀÄÂĂǍĀĄÅÃĆĈČÇĊĎÉÈËÊĚĖĒĘ"],["8faaba","ĜĞĢĠĤÍÌÏÎǏİĪĮĨĴĶĹĽĻŃŇŅÑÓÒÖÔǑŐŌÕŔŘŖŚŜŠŞŤŢÚÙÜÛŬǓŰŪŲŮŨǗǛǙǕŴÝŸŶŹŽŻ"],["8faba1","áàäâăǎāąåãćĉčçċďéèëêěėēęǵĝğ"],["8fabbd","ġĥíìïîǐ"],["8fabc5","īįĩĵķĺľļńňņñóòöôǒőōõŕřŗśŝšşťţúùüûŭǔűūųůũǘǜǚǖŵýÿŷźžż"],["8fb0a1","丂丄丅丌丒丟丣两丨丫丮丯丰丵乀乁乄乇乑乚乜乣乨乩乴乵乹乿亍亖亗亝亯亹仃仐仚仛仠仡仢仨仯仱仳仵份仾仿伀伂伃伈伋伌伒伕伖众伙伮伱你伳伵伷伹伻伾佀佂佈佉佋佌佒佔佖佘佟佣佪佬佮佱佷佸佹佺佽佾侁侂侄"],["8fb1a1","侅侉侊侌侎侐侒侓侔侗侙侚侞侟侲侷侹侻侼侽侾俀俁俅俆俈俉俋俌俍俏俒俜俠俢俰俲俼俽俿倀倁倄倇倊倌倎倐倓倗倘倛倜倝倞倢倧倮倰倲倳倵偀偁偂偅偆偊偌偎偑偒偓偗偙偟偠偢偣偦偧偪偭偰偱倻傁傃傄傆傊傎傏傐"],["8fb2a1","傒傓傔傖傛傜傞",4,"傪傯傰傹傺傽僀僃僄僇僌僎僐僓僔僘僜僝僟僢僤僦僨僩僯僱僶僺僾儃儆儇儈儋儌儍儎僲儐儗儙儛儜儝儞儣儧儨儬儭儯儱儳儴儵儸儹兂兊兏兓兕兗兘兟兤兦兾冃冄冋冎冘冝冡冣冭冸冺冼冾冿凂"],["8fb3a1","凈减凑凒凓凕凘凞凢凥凮凲凳凴凷刁刂刅划刓刕刖刘刢刨刱刲刵刼剅剉剕剗剘剚剜剟剠剡剦剮剷剸剹劀劂劅劊劌劓劕劖劗劘劚劜劤劥劦劧劯劰劶劷劸劺劻劽勀勄勆勈勌勏勑勔勖勛勜勡勥勨勩勪勬勰勱勴勶勷匀匃匊匋"],["8fb4a1","匌匑匓匘匛匜匞匟匥匧匨匩匫匬匭匰匲匵匼匽匾卂卌卋卙卛卡卣卥卬卭卲卹卾厃厇厈厎厓厔厙厝厡厤厪厫厯厲厴厵厷厸厺厽叀叅叏叒叓叕叚叝叞叠另叧叵吂吓吚吡吧吨吪启吱吴吵呃呄呇呍呏呞呢呤呦呧呩呫呭呮呴呿"],["8fb5a1","咁咃咅咈咉咍咑咕咖咜咟咡咦咧咩咪咭咮咱咷咹咺咻咿哆哊响哎哠哪哬哯哶哼哾哿唀唁唅唈唉唌唍唎唕唪唫唲唵唶唻唼唽啁啇啉啊啍啐啑啘啚啛啞啠啡啤啦啿喁喂喆喈喎喏喑喒喓喔喗喣喤喭喲喿嗁嗃嗆嗉嗋嗌嗎嗑嗒"],["8fb6a1","嗓嗗嗘嗛嗞嗢嗩嗶嗿嘅嘈嘊嘍",5,"嘙嘬嘰嘳嘵嘷嘹嘻嘼嘽嘿噀噁噃噄噆噉噋噍噏噔噞噠噡噢噣噦噩噭噯噱噲噵嚄嚅嚈嚋嚌嚕嚙嚚嚝嚞嚟嚦嚧嚨嚩嚫嚬嚭嚱嚳嚷嚾囅囉囊囋囏囐囌囍囙囜囝囟囡囤",4,"囱囫园"],["8fb7a1","囶囷圁圂圇圊圌圑圕圚圛圝圠圢圣圤圥圩圪圬圮圯圳圴圽圾圿坅坆坌坍坒坢坥坧坨坫坭",4,"坳坴坵坷坹坺坻坼坾垁垃垌垔垗垙垚垜垝垞垟垡垕垧垨垩垬垸垽埇埈埌埏埕埝埞埤埦埧埩埭埰埵埶埸埽埾埿堃堄堈堉埡"],["8fb8a1","堌堍堛堞堟堠堦堧堭堲堹堿塉塌塍塏塐塕塟塡塤塧塨塸塼塿墀墁墇墈墉墊墌墍墏墐墔墖墝墠墡墢墦墩墱墲壄墼壂壈壍壎壐壒壔壖壚壝壡壢壩壳夅夆夋夌夒夓夔虁夝夡夣夤夨夯夰夳夵夶夿奃奆奒奓奙奛奝奞奟奡奣奫奭"],["8fb9a1","奯奲奵奶她奻奼妋妌妎妒妕妗妟妤妧妭妮妯妰妳妷妺妼姁姃姄姈姊姍姒姝姞姟姣姤姧姮姯姱姲姴姷娀娄娌娍娎娒娓娞娣娤娧娨娪娭娰婄婅婇婈婌婐婕婞婣婥婧婭婷婺婻婾媋媐媓媖媙媜媞媟媠媢媧媬媱媲媳媵媸媺媻媿"],["8fbaa1","嫄嫆嫈嫏嫚嫜嫠嫥嫪嫮嫵嫶嫽嬀嬁嬈嬗嬴嬙嬛嬝嬡嬥嬭嬸孁孋孌孒孖孞孨孮孯孼孽孾孿宁宄宆宊宎宐宑宓宔宖宨宩宬宭宯宱宲宷宺宼寀寁寍寏寖",4,"寠寯寱寴寽尌尗尞尟尣尦尩尫尬尮尰尲尵尶屙屚屜屢屣屧屨屩"],["8fbba1","屭屰屴屵屺屻屼屽岇岈岊岏岒岝岟岠岢岣岦岪岲岴岵岺峉峋峒峝峗峮峱峲峴崁崆崍崒崫崣崤崦崧崱崴崹崽崿嵂嵃嵆嵈嵕嵑嵙嵊嵟嵠嵡嵢嵤嵪嵭嵰嵹嵺嵾嵿嶁嶃嶈嶊嶒嶓嶔嶕嶙嶛嶟嶠嶧嶫嶰嶴嶸嶹巃巇巋巐巎巘巙巠巤"],["8fbca1","巩巸巹帀帇帍帒帔帕帘帟帠帮帨帲帵帾幋幐幉幑幖幘幛幜幞幨幪",4,"幰庀庋庎庢庤庥庨庪庬庱庳庽庾庿廆廌廋廎廑廒廔廕廜廞廥廫异弆弇弈弎弙弜弝弡弢弣弤弨弫弬弮弰弴弶弻弽弿彀彄彅彇彍彐彔彘彛彠彣彤彧"],["8fbda1","彯彲彴彵彸彺彽彾徉徍徏徖徜徝徢徧徫徤徬徯徰徱徸忄忇忈忉忋忐",4,"忞忡忢忨忩忪忬忭忮忯忲忳忶忺忼怇怊怍怓怔怗怘怚怟怤怭怳怵恀恇恈恉恌恑恔恖恗恝恡恧恱恾恿悂悆悈悊悎悑悓悕悘悝悞悢悤悥您悰悱悷"],["8fbea1","悻悾惂惄惈惉惊惋惎惏惔惕惙惛惝惞惢惥惲惵惸惼惽愂愇愊愌愐",4,"愖愗愙愜愞愢愪愫愰愱愵愶愷愹慁慅慆慉慞慠慬慲慸慻慼慿憀憁憃憄憋憍憒憓憗憘憜憝憟憠憥憨憪憭憸憹憼懀懁懂懎懏懕懜懝懞懟懡懢懧懩懥"],["8fbfa1","懬懭懯戁戃戄戇戓戕戜戠戢戣戧戩戫戹戽扂扃扄扆扌扐扑扒扔扖扚扜扤扭扯扳扺扽抍抎抏抐抦抨抳抶抷抺抾抿拄拎拕拖拚拪拲拴拼拽挃挄挊挋挍挐挓挖挘挩挪挭挵挶挹挼捁捂捃捄捆捊捋捎捒捓捔捘捛捥捦捬捭捱捴捵"],["8fc0a1","捸捼捽捿掂掄掇掊掐掔掕掙掚掞掤掦掭掮掯掽揁揅揈揎揑揓揔揕揜揠揥揪揬揲揳揵揸揹搉搊搐搒搔搘搞搠搢搤搥搩搪搯搰搵搽搿摋摏摑摒摓摔摚摛摜摝摟摠摡摣摭摳摴摻摽撅撇撏撐撑撘撙撛撝撟撡撣撦撨撬撳撽撾撿"],["8fc1a1","擄擉擊擋擌擎擐擑擕擗擤擥擩擪擭擰擵擷擻擿攁攄攈攉攊攏攓攔攖攙攛攞攟攢攦攩攮攱攺攼攽敃敇敉敐敒敔敟敠敧敫敺敽斁斅斊斒斕斘斝斠斣斦斮斲斳斴斿旂旈旉旎旐旔旖旘旟旰旲旴旵旹旾旿昀昄昈昉昍昑昒昕昖昝"],["8fc2a1","昞昡昢昣昤昦昩昪昫昬昮昰昱昳昹昷晀晅晆晊晌晑晎晗晘晙晛晜晠晡曻晪晫晬晾晳晵晿晷晸晹晻暀晼暋暌暍暐暒暙暚暛暜暟暠暤暭暱暲暵暻暿曀曂曃曈曌曎曏曔曛曟曨曫曬曮曺朅朇朎朓朙朜朠朢朳朾杅杇杈杌杔杕杝"],["8fc3a1","杦杬杮杴杶杻极构枎枏枑枓枖枘枙枛枰枱枲枵枻枼枽柹柀柂柃柅柈柉柒柗柙柜柡柦柰柲柶柷桒栔栙栝栟栨栧栬栭栯栰栱栳栻栿桄桅桊桌桕桗桘桛桫桮",4,"桵桹桺桻桼梂梄梆梈梖梘梚梜梡梣梥梩梪梮梲梻棅棈棌棏"],["8fc4a1","棐棑棓棖棙棜棝棥棨棪棫棬棭棰棱棵棶棻棼棽椆椉椊椐椑椓椖椗椱椳椵椸椻楂楅楉楎楗楛楣楤楥楦楨楩楬楰楱楲楺楻楿榀榍榒榖榘榡榥榦榨榫榭榯榷榸榺榼槅槈槑槖槗槢槥槮槯槱槳槵槾樀樁樃樏樑樕樚樝樠樤樨樰樲"],["8fc5a1","樴樷樻樾樿橅橆橉橊橎橐橑橒橕橖橛橤橧橪橱橳橾檁檃檆檇檉檋檑檛檝檞檟檥檫檯檰檱檴檽檾檿櫆櫉櫈櫌櫐櫔櫕櫖櫜櫝櫤櫧櫬櫰櫱櫲櫼櫽欂欃欆欇欉欏欐欑欗欛欞欤欨欫欬欯欵欶欻欿歆歊歍歒歖歘歝歠歧歫歮歰歵歽"],["8fc6a1","歾殂殅殗殛殟殠殢殣殨殩殬殭殮殰殸殹殽殾毃毄毉毌毖毚毡毣毦毧毮毱毷毹毿氂氄氅氉氍氎氐氒氙氟氦氧氨氬氮氳氵氶氺氻氿汊汋汍汏汒汔汙汛汜汫汭汯汴汶汸汹汻沅沆沇沉沔沕沗沘沜沟沰沲沴泂泆泍泏泐泑泒泔泖"],["8fc7a1","泚泜泠泧泩泫泬泮泲泴洄洇洊洎洏洑洓洚洦洧洨汧洮洯洱洹洼洿浗浞浟浡浥浧浯浰浼涂涇涑涒涔涖涗涘涪涬涴涷涹涽涿淄淈淊淎淏淖淛淝淟淠淢淥淩淯淰淴淶淼渀渄渞渢渧渲渶渹渻渼湄湅湈湉湋湏湑湒湓湔湗湜湝湞"],["8fc8a1","湢湣湨湳湻湽溍溓溙溠溧溭溮溱溳溻溿滀滁滃滇滈滊滍滎滏滫滭滮滹滻滽漄漈漊漌漍漖漘漚漛漦漩漪漯漰漳漶漻漼漭潏潑潒潓潗潙潚潝潞潡潢潨潬潽潾澃澇澈澋澌澍澐澒澓澔澖澚澟澠澥澦澧澨澮澯澰澵澶澼濅濇濈濊"],["8fc9a1","濚濞濨濩濰濵濹濼濽瀀瀅瀆瀇瀍瀗瀠瀣瀯瀴瀷瀹瀼灃灄灈灉灊灋灔灕灝灞灎灤灥灬灮灵灶灾炁炅炆炔",4,"炛炤炫炰炱炴炷烊烑烓烔烕烖烘烜烤烺焃",4,"焋焌焏焞焠焫焭焯焰焱焸煁煅煆煇煊煋煐煒煗煚煜煞煠"],["8fcaa1","煨煹熀熅熇熌熒熚熛熠熢熯熰熲熳熺熿燀燁燄燋燌燓燖燙燚燜燸燾爀爇爈爉爓爗爚爝爟爤爫爯爴爸爹牁牂牃牅牎牏牐牓牕牖牚牜牞牠牣牨牫牮牯牱牷牸牻牼牿犄犉犍犎犓犛犨犭犮犱犴犾狁狇狉狌狕狖狘狟狥狳狴狺狻"],["8fcba1","狾猂猄猅猇猋猍猒猓猘猙猞猢猤猧猨猬猱猲猵猺猻猽獃獍獐獒獖獘獝獞獟獠獦獧獩獫獬獮獯獱獷獹獼玀玁玃玅玆玎玐玓玕玗玘玜玞玟玠玢玥玦玪玫玭玵玷玹玼玽玿珅珆珉珋珌珏珒珓珖珙珝珡珣珦珧珩珴珵珷珹珺珻珽"],["8fcca1","珿琀琁琄琇琊琑琚琛琤琦琨",9,"琹瑀瑃瑄瑆瑇瑋瑍瑑瑒瑗瑝瑢瑦瑧瑨瑫瑭瑮瑱瑲璀璁璅璆璇璉璏璐璑璒璘璙璚璜璟璠璡璣璦璨璩璪璫璮璯璱璲璵璹璻璿瓈瓉瓌瓐瓓瓘瓚瓛瓞瓟瓤瓨瓪瓫瓯瓴瓺瓻瓼瓿甆"],["8fcda1","甒甖甗甠甡甤甧甩甪甯甶甹甽甾甿畀畃畇畈畎畐畒畗畞畟畡畯畱畹",5,"疁疅疐疒疓疕疙疜疢疤疴疺疿痀痁痄痆痌痎痏痗痜痟痠痡痤痧痬痮痯痱痹瘀瘂瘃瘄瘇瘈瘊瘌瘏瘒瘓瘕瘖瘙瘛瘜瘝瘞瘣瘥瘦瘩瘭瘲瘳瘵瘸瘹"],["8fcea1","瘺瘼癊癀癁癃癄癅癉癋癕癙癟癤癥癭癮癯癱癴皁皅皌皍皕皛皜皝皟皠皢",6,"皪皭皽盁盅盉盋盌盎盔盙盠盦盨盬盰盱盶盹盼眀眆眊眎眒眔眕眗眙眚眜眢眨眭眮眯眴眵眶眹眽眾睂睅睆睊睍睎睏睒睖睗睜睞睟睠睢"],["8fcfa1","睤睧睪睬睰睲睳睴睺睽瞀瞄瞌瞍瞔瞕瞖瞚瞟瞢瞧瞪瞮瞯瞱瞵瞾矃矉矑矒矕矙矞矟矠矤矦矪矬矰矱矴矸矻砅砆砉砍砎砑砝砡砢砣砭砮砰砵砷硃硄硇硈硌硎硒硜硞硠硡硣硤硨硪确硺硾碊碏碔碘碡碝碞碟碤碨碬碭碰碱碲碳"],["8fd0a1","碻碽碿磇磈磉磌磎磒磓磕磖磤磛磟磠磡磦磪磲磳礀磶磷磺磻磿礆礌礐礚礜礞礟礠礥礧礩礭礱礴礵礻礽礿祄祅祆祊祋祏祑祔祘祛祜祧祩祫祲祹祻祼祾禋禌禑禓禔禕禖禘禛禜禡禨禩禫禯禱禴禸离秂秄秇秈秊秏秔秖秚秝秞"],["8fd1a1","秠秢秥秪秫秭秱秸秼稂稃稇稉稊稌稑稕稛稞稡稧稫稭稯稰稴稵稸稹稺穄穅穇穈穌穕穖穙穜穝穟穠穥穧穪穭穵穸穾窀窂窅窆窊窋窐窑窔窞窠窣窬窳窵窹窻窼竆竉竌竎竑竛竨竩竫竬竱竴竻竽竾笇笔笟笣笧笩笪笫笭笮笯笰"],["8fd2a1","笱笴笽笿筀筁筇筎筕筠筤筦筩筪筭筯筲筳筷箄箉箎箐箑箖箛箞箠箥箬箯箰箲箵箶箺箻箼箽篂篅篈篊篔篖篗篙篚篛篨篪篲篴篵篸篹篺篼篾簁簂簃簄簆簉簋簌簎簏簙簛簠簥簦簨簬簱簳簴簶簹簺籆籊籕籑籒籓籙",5],["8fd3a1","籡籣籧籩籭籮籰籲籹籼籽粆粇粏粔粞粠粦粰粶粷粺粻粼粿糄糇糈糉糍糏糓糔糕糗糙糚糝糦糩糫糵紃紇紈紉紏紑紒紓紖紝紞紣紦紪紭紱紼紽紾絀絁絇絈絍絑絓絗絙絚絜絝絥絧絪絰絸絺絻絿綁綂綃綅綆綈綋綌綍綑綖綗綝"],["8fd4a1","綞綦綧綪綳綶綷綹緂",4,"緌緍緎緗緙縀緢緥緦緪緫緭緱緵緶緹緺縈縐縑縕縗縜縝縠縧縨縬縭縯縳縶縿繄繅繇繎繐繒繘繟繡繢繥繫繮繯繳繸繾纁纆纇纊纍纑纕纘纚纝纞缼缻缽缾缿罃罄罇罏罒罓罛罜罝罡罣罤罥罦罭"],["8fd5a1","罱罽罾罿羀羋羍羏羐羑羖羗羜羡羢羦羪羭羴羼羿翀翃翈翎翏翛翟翣翥翨翬翮翯翲翺翽翾翿耇耈耊耍耎耏耑耓耔耖耝耞耟耠耤耦耬耮耰耴耵耷耹耺耼耾聀聄聠聤聦聭聱聵肁肈肎肜肞肦肧肫肸肹胈胍胏胒胔胕胗胘胠胭胮"],["8fd6a1","胰胲胳胶胹胺胾脃脋脖脗脘脜脞脠脤脧脬脰脵脺脼腅腇腊腌腒腗腠腡腧腨腩腭腯腷膁膐膄膅膆膋膎膖膘膛膞膢膮膲膴膻臋臃臅臊臎臏臕臗臛臝臞臡臤臫臬臰臱臲臵臶臸臹臽臿舀舃舏舓舔舙舚舝舡舢舨舲舴舺艃艄艅艆"],["8fd7a1","艋艎艏艑艖艜艠艣艧艭艴艻艽艿芀芁芃芄芇芉芊芎芑芔芖芘芚芛芠芡芣芤芧芨芩芪芮芰芲芴芷芺芼芾芿苆苐苕苚苠苢苤苨苪苭苯苶苷苽苾茀茁茇茈茊茋荔茛茝茞茟茡茢茬茭茮茰茳茷茺茼茽荂荃荄荇荍荎荑荕荖荗荰荸"],["8fd8a1","荽荿莀莂莄莆莍莒莔莕莘莙莛莜莝莦莧莩莬莾莿菀菇菉菏菐菑菔菝荓菨菪菶菸菹菼萁萆萊萏萑萕萙莭萯萹葅葇葈葊葍葏葑葒葖葘葙葚葜葠葤葥葧葪葰葳葴葶葸葼葽蒁蒅蒒蒓蒕蒞蒦蒨蒩蒪蒯蒱蒴蒺蒽蒾蓀蓂蓇蓈蓌蓏蓓"],["8fd9a1","蓜蓧蓪蓯蓰蓱蓲蓷蔲蓺蓻蓽蔂蔃蔇蔌蔎蔐蔜蔞蔢蔣蔤蔥蔧蔪蔫蔯蔳蔴蔶蔿蕆蕏",4,"蕖蕙蕜",6,"蕤蕫蕯蕹蕺蕻蕽蕿薁薅薆薉薋薌薏薓薘薝薟薠薢薥薧薴薶薷薸薼薽薾薿藂藇藊藋藎薭藘藚藟藠藦藨藭藳藶藼"],["8fdaa1","藿蘀蘄蘅蘍蘎蘐蘑蘒蘘蘙蘛蘞蘡蘧蘩蘶蘸蘺蘼蘽虀虂虆虒虓虖虗虘虙虝虠",4,"虩虬虯虵虶虷虺蚍蚑蚖蚘蚚蚜蚡蚦蚧蚨蚭蚱蚳蚴蚵蚷蚸蚹蚿蛀蛁蛃蛅蛑蛒蛕蛗蛚蛜蛠蛣蛥蛧蚈蛺蛼蛽蜄蜅蜇蜋蜎蜏蜐蜓蜔蜙蜞蜟蜡蜣"],["8fdba1","蜨蜮蜯蜱蜲蜹蜺蜼蜽蜾蝀蝃蝅蝍蝘蝝蝡蝤蝥蝯蝱蝲蝻螃",6,"螋螌螐螓螕螗螘螙螞螠螣螧螬螭螮螱螵螾螿蟁蟈蟉蟊蟎蟕蟖蟙蟚蟜蟟蟢蟣蟤蟪蟫蟭蟱蟳蟸蟺蟿蠁蠃蠆蠉蠊蠋蠐蠙蠒蠓蠔蠘蠚蠛蠜蠞蠟蠨蠭蠮蠰蠲蠵"],["8fdca1","蠺蠼衁衃衅衈衉衊衋衎衑衕衖衘衚衜衟衠衤衩衱衹衻袀袘袚袛袜袟袠袨袪袺袽袾裀裊",4,"裑裒裓裛裞裧裯裰裱裵裷褁褆褍褎褏褕褖褘褙褚褜褠褦褧褨褰褱褲褵褹褺褾襀襂襅襆襉襏襒襗襚襛襜襡襢襣襫襮襰襳襵襺"],["8fdda1","襻襼襽覉覍覐覔覕覛覜覟覠覥覰覴覵覶覷覼觔",4,"觥觩觫觭觱觳觶觹觽觿訄訅訇訏訑訒訔訕訞訠訢訤訦訫訬訯訵訷訽訾詀詃詅詇詉詍詎詓詖詗詘詜詝詡詥詧詵詶詷詹詺詻詾詿誀誃誆誋誏誐誒誖誗誙誟誧誩誮誯誳"],["8fdea1","誶誷誻誾諃諆諈諉諊諑諓諔諕諗諝諟諬諰諴諵諶諼諿謅謆謋謑謜謞謟謊謭謰謷謼譂",4,"譈譒譓譔譙譍譞譣譭譶譸譹譼譾讁讄讅讋讍讏讔讕讜讞讟谸谹谽谾豅豇豉豋豏豑豓豔豗豘豛豝豙豣豤豦豨豩豭豳豵豶豻豾貆"],["8fdfa1","貇貋貐貒貓貙貛貜貤貹貺賅賆賉賋賏賖賕賙賝賡賨賬賯賰賲賵賷賸賾賿贁贃贉贒贗贛赥赩赬赮赿趂趄趈趍趐趑趕趞趟趠趦趫趬趯趲趵趷趹趻跀跅跆跇跈跊跎跑跔跕跗跙跤跥跧跬跰趼跱跲跴跽踁踄踅踆踋踑踔踖踠踡踢"],["8fe0a1","踣踦踧踱踳踶踷踸踹踽蹀蹁蹋蹍蹎蹏蹔蹛蹜蹝蹞蹡蹢蹩蹬蹭蹯蹰蹱蹹蹺蹻躂躃躉躐躒躕躚躛躝躞躢躧躩躭躮躳躵躺躻軀軁軃軄軇軏軑軔軜軨軮軰軱軷軹軺軭輀輂輇輈輏輐輖輗輘輞輠輡輣輥輧輨輬輭輮輴輵輶輷輺轀轁"],["8fe1a1","轃轇轏轑",4,"轘轝轞轥辝辠辡辤辥辦辵辶辸达迀迁迆迊迋迍运迒迓迕迠迣迤迨迮迱迵迶迻迾适逄逈逌逘逛逨逩逯逪逬逭逳逴逷逿遃遄遌遛遝遢遦遧遬遰遴遹邅邈邋邌邎邐邕邗邘邙邛邠邡邢邥邰邲邳邴邶邽郌邾郃"],["8fe2a1","郄郅郇郈郕郗郘郙郜郝郟郥郒郶郫郯郰郴郾郿鄀鄄鄅鄆鄈鄍鄐鄔鄖鄗鄘鄚鄜鄞鄠鄥鄢鄣鄧鄩鄮鄯鄱鄴鄶鄷鄹鄺鄼鄽酃酇酈酏酓酗酙酚酛酡酤酧酭酴酹酺酻醁醃醅醆醊醎醑醓醔醕醘醞醡醦醨醬醭醮醰醱醲醳醶醻醼醽醿"],["8fe3a1","釂釃釅釓釔釗釙釚釞釤釥釩釪釬",5,"釷釹釻釽鈀鈁鈄鈅鈆鈇鈉鈊鈌鈐鈒鈓鈖鈘鈜鈝鈣鈤鈥鈦鈨鈮鈯鈰鈳鈵鈶鈸鈹鈺鈼鈾鉀鉂鉃鉆鉇鉊鉍鉎鉏鉑鉘鉙鉜鉝鉠鉡鉥鉧鉨鉩鉮鉯鉰鉵",4,"鉻鉼鉽鉿銈銉銊銍銎銒銗"],["8fe4a1","銙銟銠銤銥銧銨銫銯銲銶銸銺銻銼銽銿",4,"鋅鋆鋇鋈鋋鋌鋍鋎鋐鋓鋕鋗鋘鋙鋜鋝鋟鋠鋡鋣鋥鋧鋨鋬鋮鋰鋹鋻鋿錀錂錈錍錑錔錕錜錝錞錟錡錤錥錧錩錪錳錴錶錷鍇鍈鍉鍐鍑鍒鍕鍗鍘鍚鍞鍤鍥鍧鍩鍪鍭鍯鍰鍱鍳鍴鍶"],["8fe5a1","鍺鍽鍿鎀鎁鎂鎈鎊鎋鎍鎏鎒鎕鎘鎛鎞鎡鎣鎤鎦鎨鎫鎴鎵鎶鎺鎩鏁鏄鏅鏆鏇鏉",4,"鏓鏙鏜鏞鏟鏢鏦鏧鏹鏷鏸鏺鏻鏽鐁鐂鐄鐈鐉鐍鐎鐏鐕鐖鐗鐟鐮鐯鐱鐲鐳鐴鐻鐿鐽鑃鑅鑈鑊鑌鑕鑙鑜鑟鑡鑣鑨鑫鑭鑮鑯鑱鑲钄钃镸镹"],["8fe6a1","镾閄閈閌閍閎閝閞閟閡閦閩閫閬閴閶閺閽閿闆闈闉闋闐闑闒闓闙闚闝闞闟闠闤闦阝阞阢阤阥阦阬阱阳阷阸阹阺阼阽陁陒陔陖陗陘陡陮陴陻陼陾陿隁隂隃隄隉隑隖隚隝隟隤隥隦隩隮隯隳隺雊雒嶲雘雚雝雞雟雩雯雱雺霂"],["8fe7a1","霃霅霉霚霛霝霡霢霣霨霱霳靁靃靊靎靏靕靗靘靚靛靣靧靪靮靳靶靷靸靻靽靿鞀鞉鞕鞖鞗鞙鞚鞞鞟鞢鞬鞮鞱鞲鞵鞶鞸鞹鞺鞼鞾鞿韁韄韅韇韉韊韌韍韎韐韑韔韗韘韙韝韞韠韛韡韤韯韱韴韷韸韺頇頊頙頍頎頔頖頜頞頠頣頦"],["8fe8a1","頫頮頯頰頲頳頵頥頾顄顇顊顑顒顓顖顗顙顚顢顣顥顦顪顬颫颭颮颰颴颷颸颺颻颿飂飅飈飌飡飣飥飦飧飪飳飶餂餇餈餑餕餖餗餚餛餜餟餢餦餧餫餱",4,"餹餺餻餼饀饁饆饇饈饍饎饔饘饙饛饜饞饟饠馛馝馟馦馰馱馲馵"],["8fe9a1","馹馺馽馿駃駉駓駔駙駚駜駞駧駪駫駬駰駴駵駹駽駾騂騃騄騋騌騐騑騖騞騠騢騣騤騧騭騮騳騵騶騸驇驁驄驊驋驌驎驑驔驖驝骪骬骮骯骲骴骵骶骹骻骾骿髁髃髆髈髎髐髒髕髖髗髛髜髠髤髥髧髩髬髲髳髵髹髺髽髿",4],["8feaa1","鬄鬅鬈鬉鬋鬌鬍鬎鬐鬒鬖鬙鬛鬜鬠鬦鬫鬭鬳鬴鬵鬷鬹鬺鬽魈魋魌魕魖魗魛魞魡魣魥魦魨魪",4,"魳魵魷魸魹魿鮀鮄鮅鮆鮇鮉鮊鮋鮍鮏鮐鮔鮚鮝鮞鮦鮧鮩鮬鮰鮱鮲鮷鮸鮻鮼鮾鮿鯁鯇鯈鯎鯐鯗鯘鯝鯟鯥鯧鯪鯫鯯鯳鯷鯸"],["8feba1","鯹鯺鯽鯿鰀鰂鰋鰏鰑鰖鰘鰙鰚鰜鰞鰢鰣鰦",4,"鰱鰵鰶鰷鰽鱁鱃鱄鱅鱉鱊鱎鱏鱐鱓鱔鱖鱘鱛鱝鱞鱟鱣鱩鱪鱜鱫鱨鱮鱰鱲鱵鱷鱻鳦鳲鳷鳹鴋鴂鴑鴗鴘鴜鴝鴞鴯鴰鴲鴳鴴鴺鴼鵅鴽鵂鵃鵇鵊鵓鵔鵟鵣鵢鵥鵩鵪鵫鵰鵶鵷鵻"],["8feca1","鵼鵾鶃鶄鶆鶊鶍鶎鶒鶓鶕鶖鶗鶘鶡鶪鶬鶮鶱鶵鶹鶼鶿鷃鷇鷉鷊鷔鷕鷖鷗鷚鷞鷟鷠鷥鷧鷩鷫鷮鷰鷳鷴鷾鸊鸂鸇鸎鸐鸑鸒鸕鸖鸙鸜鸝鹺鹻鹼麀麂麃麄麅麇麎麏麖麘麛麞麤麨麬麮麯麰麳麴麵黆黈黋黕黟黤黧黬黭黮黰黱黲黵"],["8feda1","黸黿鼂鼃鼉鼏鼐鼑鼒鼔鼖鼗鼙鼚鼛鼟鼢鼦鼪鼫鼯鼱鼲鼴鼷鼹鼺鼼鼽鼿齁齃",4,"齓齕齖齗齘齚齝齞齨齩齭",4,"齳齵齺齽龏龐龑龒龔龖龗龞龡龢龣龥"]]},147:function(e,t,n){"use strict";var r=n(621);e.exports=function(e){var t=e.match(r);if(!t){return null}var n=t[0].replace(/#! ?/,"").split(" ");var i=n[0].split("/").pop();var o=n[1];return i==="env"?o:i+(o?" "+o:"")}},159:function(e,t,n){var r=n(623);function retry(e,t){function run(n,i){var o=t||{};var a=r.operation(o);function bail(e){i(e||new Error("Aborted"))}function onError(e,t){if(e.bail){bail(e);return}if(!a.retry(e)){i(a.mainError())}else if(o.onRetry){o.onRetry(e,t)}}function runAttempt(t){var r;try{r=e(bail,t)}catch(e){onError(e,t);return}Promise.resolve(r).then(n).catch(function catchIt(e){onError(e,t)})}a.attempt(runAttempt)}return new Promise(run)}e.exports=retry},161:function(e,t,n){"use strict";e.exports={copySync:n(968)}},169:function(e,t,n){"use strict";e.exports=Transform;var r=n(588);var i=n(130);i.inherits=n(536);i.inherits(Transform,r);function afterTransform(e,t){var n=this._transformState;n.transforming=false;var r=n.writecb;if(!r){return this.emit("error",new Error("write callback called multiple times"))}n.writechunk=null;n.writecb=null;if(t!=null)this.push(t);r(e);var i=this._readableState;i.reading=false;if(i.needReadable||i.length<i.highWaterMark){this._read(i.highWaterMark)}}function Transform(e){if(!(this instanceof Transform))return new Transform(e);r.call(this,e);this._transformState={afterTransform:afterTransform.bind(this),needTransform:false,transforming:false,writecb:null,writechunk:null,writeencoding:null};this._readableState.needReadable=true;this._readableState.sync=false;if(e){if(typeof e.transform==="function")this._transform=e.transform;if(typeof e.flush==="function")this._flush=e.flush}this.on("prefinish",prefinish)}function prefinish(){var e=this;if(typeof this._flush==="function"){this._flush(function(t,n){done(e,t,n)})}else{done(this,null,null)}}Transform.prototype.push=function(e,t){this._transformState.needTransform=false;return r.prototype.push.call(this,e,t)};Transform.prototype._transform=function(e,t,n){throw new Error("_transform() is not implemented")};Transform.prototype._write=function(e,t,n){var r=this._transformState;r.writecb=n;r.writechunk=e;r.writeencoding=t;if(!r.transforming){var i=this._readableState;if(r.needTransform||i.needReadable||i.length<i.highWaterMark)this._read(i.highWaterMark)}};Transform.prototype._read=function(e){var t=this._transformState;if(t.writechunk!==null&&t.writecb&&!t.transforming){t.transforming=true;this._transform(t.writechunk,t.writeencoding,t.afterTransform)}else{t.needTransform=true}};Transform.prototype._destroy=function(e,t){var n=this;r.prototype._destroy.call(this,e,function(e){t(e);n.emit("close")})};function done(e,t,n){if(t)return e.emit("error",t);if(n!=null)e.push(n);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)}},171:function(e,t,n){"use strict";const r=n(729);const i=n(622);const o=n(868).invalidWin32Path;const a=parseInt("0777",8);function mkdirs(e,t,n,s){if(typeof t==="function"){n=t;t={}}else if(!t||typeof t!=="object"){t={mode:t}}if(process.platform==="win32"&&o(e)){const t=new Error(e+" contains invalid WIN32 path characters.");t.code="EINVAL";return n(t)}let c=t.mode;const u=t.fs||r;if(c===undefined){c=a&~process.umask()}if(!s)s=null;n=n||function(){};e=i.resolve(e);u.mkdir(e,c,r=>{if(!r){s=s||e;return n(null,s)}switch(r.code){case"ENOENT":if(i.dirname(e)===e)return n(r);mkdirs(i.dirname(e),t,(r,i)=>{if(r)n(r,i);else mkdirs(e,t,n,i)});break;default:u.stat(e,(e,t)=>{if(e||!t.isDirectory())n(r,s);else n(null,s)});break}})}e.exports=mkdirs},174:function(e){e.exports=wrappy;function wrappy(e,t){if(e&&t)return wrappy(e)(t);if(typeof e!=="function")throw new TypeError("need wrapper function");Object.keys(e).forEach(function(t){wrapper[t]=e[t]});return wrapper;function wrapper(){var t=new Array(arguments.length);for(var n=0;n<t.length;n++){t[n]=arguments[n]}var r=e.apply(this,t);var i=t[t.length-1];if(typeof r==="function"&&r!==i){Object.keys(i).forEach(function(e){r[e]=i[e]})}return r}}},178:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(776));t.FileBlob=i.default;const o=r(n(194));t.FileFsRef=o.default;const a=r(n(616));t.FileRef=a.default;const s=n(322);t.Lambda=s.Lambda;t.createLambda=s.createLambda;const c=n(620);t.Prerender=c.Prerender;const u=r(n(629));t.download=u.default;const l=r(n(991));t.getWriteableDirectory=l.default;const f=r(n(244));t.glob=f.default;const p=r(n(852));t.rename=p.default;const d=n(985);t.spawnAsync=d.spawnAsync;t.installDependencies=d.installDependencies;t.runPackageJsonScript=d.runPackageJsonScript;t.runNpmInstall=d.runNpmInstall;t.runBundleInstall=d.runBundleInstall;t.runPipInstall=d.runPipInstall;t.runShellScript=d.runShellScript;t.getNodeVersion=d.getNodeVersion;t.getSpawnOptions=d.getSpawnOptions;const h=r(n(510));t.streamToBuffer=h.default;const m=r(n(497));t.shouldServe=m.default;const v=n(819);t.detectBuilders=v.detectBuilders;const g=n(691);t.detectRoutes=g.detectRoutes;const y=r(n(785));t.debug=y.default},180:function(e,t,n){"use strict";const r=n(729);const i=n(622);const o=n(357);const a=process.platform==="win32";function defaults(e){const t=["unlink","chmod","stat","lstat","rmdir","readdir"];t.forEach(t=>{e[t]=e[t]||r[t];t=t+"Sync";e[t]=e[t]||r[t]});e.maxBusyTries=e.maxBusyTries||3}function rimraf(e,t,n){let r=0;if(typeof t==="function"){n=t;t={}}o(e,"rimraf: missing path");o.strictEqual(typeof e,"string","rimraf: path should be a string");o.strictEqual(typeof n,"function","rimraf: callback function required");o(t,"rimraf: invalid options argument provided");o.strictEqual(typeof t,"object","rimraf: options should be object");defaults(t);rimraf_(e,t,function CB(i){if(i){if((i.code==="EBUSY"||i.code==="ENOTEMPTY"||i.code==="EPERM")&&r<t.maxBusyTries){r++;const n=r*100;return setTimeout(()=>rimraf_(e,t,CB),n)}if(i.code==="ENOENT")i=null}n(i)})}function rimraf_(e,t,n){o(e);o(t);o(typeof n==="function");t.lstat(e,(r,i)=>{if(r&&r.code==="ENOENT"){return n(null)}if(r&&r.code==="EPERM"&&a){return fixWinEPERM(e,t,r,n)}if(i&&i.isDirectory()){return rmdir(e,t,r,n)}t.unlink(e,r=>{if(r){if(r.code==="ENOENT"){return n(null)}if(r.code==="EPERM"){return a?fixWinEPERM(e,t,r,n):rmdir(e,t,r,n)}if(r.code==="EISDIR"){return rmdir(e,t,r,n)}}return n(r)})})}function fixWinEPERM(e,t,n,r){o(e);o(t);o(typeof r==="function");if(n){o(n instanceof Error)}t.chmod(e,438,i=>{if(i){r(i.code==="ENOENT"?null:n)}else{t.stat(e,(i,o)=>{if(i){r(i.code==="ENOENT"?null:n)}else if(o.isDirectory()){rmdir(e,t,n,r)}else{t.unlink(e,r)}})}})}function fixWinEPERMSync(e,t,n){let r;o(e);o(t);if(n){o(n instanceof Error)}try{t.chmodSync(e,438)}catch(e){if(e.code==="ENOENT"){return}else{throw n}}try{r=t.statSync(e)}catch(e){if(e.code==="ENOENT"){return}else{throw n}}if(r.isDirectory()){rmdirSync(e,t,n)}else{t.unlinkSync(e)}}function rmdir(e,t,n,r){o(e);o(t);if(n){o(n instanceof Error)}o(typeof r==="function");t.rmdir(e,i=>{if(i&&(i.code==="ENOTEMPTY"||i.code==="EEXIST"||i.code==="EPERM")){rmkids(e,t,r)}else if(i&&i.code==="ENOTDIR"){r(n)}else{r(i)}})}function rmkids(e,t,n){o(e);o(t);o(typeof n==="function");t.readdir(e,(r,o)=>{if(r)return n(r);let a=o.length;let s;if(a===0)return t.rmdir(e,n);o.forEach(r=>{rimraf(i.join(e,r),t,r=>{if(s){return}if(r)return n(s=r);if(--a===0){t.rmdir(e,n)}})})})}function rimrafSync(e,t){let n;t=t||{};defaults(t);o(e,"rimraf: missing path");o.strictEqual(typeof e,"string","rimraf: path should be a string");o(t,"rimraf: missing options");o.strictEqual(typeof t,"object","rimraf: options should be object");try{n=t.lstatSync(e)}catch(n){if(n.code==="ENOENT"){return}if(n.code==="EPERM"&&a){fixWinEPERMSync(e,t,n)}}try{if(n&&n.isDirectory()){rmdirSync(e,t,null)}else{t.unlinkSync(e)}}catch(n){if(n.code==="ENOENT"){return}else if(n.code==="EPERM"){return a?fixWinEPERMSync(e,t,n):rmdirSync(e,t,n)}else if(n.code!=="EISDIR"){throw n}rmdirSync(e,t,n)}}function rmdirSync(e,t,n){o(e);o(t);if(n){o(n instanceof Error)}try{t.rmdirSync(e)}catch(r){if(r.code==="ENOTDIR"){throw n}else if(r.code==="ENOTEMPTY"||r.code==="EEXIST"||r.code==="EPERM"){rmkidsSync(e,t)}else if(r.code!=="ENOENT"){throw r}}}function rmkidsSync(e,t){o(e);o(t);t.readdirSync(e).forEach(n=>rimrafSync(i.join(e,n),t));const n=a?100:1;let r=0;do{let i=true;try{const o=t.rmdirSync(e,t);i=false;return o}finally{if(++r<n&&i)continue}}while(true)}e.exports=rimraf;rimraf.sync=rimrafSync},186:function(e,t,n){e.exports=isexe;isexe.sync=sync;var r=n(747);function isexe(e,t,n){r.stat(e,function(e,r){n(e,e?false:checkStat(r,t))})}function sync(e,t){return checkStat(r.statSync(e),t)}function checkStat(e,t){return e.isFile()&&checkMode(e,t)}function checkMode(e,t){var n=e.mode;var r=e.uid;var i=e.gid;var o=t.uid!==undefined?t.uid:process.getuid&&process.getuid();var a=t.gid!==undefined?t.gid:process.getgid&&process.getgid();var s=parseInt("100",8);var c=parseInt("010",8);var u=parseInt("001",8);var l=s|c;var f=n&u||n&c&&i===a||n&s&&r===o||n&l&&o===0;return f}},192:function(e,t,n){"use strict";const r=n(323).fromCallback;const i=n(729);const o=n(622);const a=n(758).copy;const s=n(301).remove;const c=n(648).mkdirp;const u=n(370).pathExists;function move(e,t,n,r){if(typeof n==="function"){r=n;n={}}const a=n.overwrite||n.clobber||false;e=o.resolve(e);t=o.resolve(t);if(e===t)return i.access(e,r);i.stat(e,(n,i)=>{if(n)return r(n);if(i.isDirectory()&&isSrcSubdir(e,t)){return r(new Error(`Cannot move '${e}' to a subdirectory of itself, '${t}'.`))}c(o.dirname(t),n=>{if(n)return r(n);return doRename(e,t,a,r)})})}function doRename(e,t,n,r){if(n){return s(t,i=>{if(i)return r(i);return rename(e,t,n,r)})}u(t,(i,o)=>{if(i)return r(i);if(o)return r(new Error("dest already exists."));return rename(e,t,n,r)})}function rename(e,t,n,r){i.rename(e,t,i=>{if(!i)return r();if(i.code!=="EXDEV")return r(i);return moveAcrossDevice(e,t,n,r)})}function moveAcrossDevice(e,t,n,r){const i={overwrite:n,errorOnExist:true};a(e,t,i,t=>{if(t)return r(t);return s(e,r)})}function isSrcSubdir(e,t){const n=e.split(o.sep);const r=t.split(o.sep);return n.reduce((e,t,n)=>{return e&&r[n]===t},true)}e.exports={move:r(move)}},194:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};const i=r(n(357));const o=r(n(410));const a=r(n(415));const s=r(n(622));const c=r(n(43));const u=new c.default(20);class FileFsRef{constructor({mode:e=33188,fsPath:t}){i.default(typeof e==="number");i.default(typeof t==="string");this.type="FileFsRef";this.mode=e;this.fsPath=t}static async fromFsPath({mode:e,fsPath:t}){let n=e;if(!n){const e=await o.default.lstat(t);n=e.mode}return new FileFsRef({mode:n,fsPath:t})}static async fromStream({mode:e=33188,stream:t,fsPath:n}){i.default(typeof e==="number");i.default(typeof t.pipe==="function");i.default(typeof n==="string");await o.default.mkdirp(s.default.dirname(n));await new Promise((r,i)=>{const a=o.default.createWriteStream(n,{mode:e&511});t.pipe(a);t.on("error",i);a.on("finish",r);a.on("error",i)});return new FileFsRef({mode:e,fsPath:n})}async toStreamAsync(){await u.acquire();const e=()=>u.release();const t=o.default.createReadStream(this.fsPath);t.on("close",e);t.on("error",e);return t}toStream(){let e=false;return a.default(t=>{if(e)return t(null,null);e=true;this.toStreamAsync().then(e=>{t(null,e)}).catch(e=>{t(e,null)})})}}e.exports=FileFsRef},197:function(e,t,n){"use strict";var r=n(809).Buffer;var i=r.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 true;default:return false}};function _normalizeEncoding(e){if(!e)return"utf8";var t;while(true){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(t)return;e=(""+e).toLowerCase();t=true}}}function normalizeEncoding(e){var t=_normalizeEncoding(e);if(typeof t!=="string"&&(r.isEncoding===i||!i(e)))throw new Error("Unknown encoding: "+e);return t||e}t.StringDecoder=StringDecoder;function StringDecoder(e){this.encoding=normalizeEncoding(e);var t;switch(this.encoding){case"utf16le":this.text=utf16Text;this.end=utf16End;t=4;break;case"utf8":this.fillLast=utf8FillLast;t=4;break;case"base64":this.text=base64Text;this.end=base64End;t=3;break;default:this.write=simpleWrite;this.end=simpleEnd;return}this.lastNeed=0;this.lastTotal=0;this.lastChar=r.allocUnsafe(t)}StringDecoder.prototype.write=function(e){if(e.length===0)return"";var t;var n;if(this.lastNeed){t=this.fillLast(e);if(t===undefined)return"";n=this.lastNeed;this.lastNeed=0}else{n=0}if(n<e.length)return t?t+this.text(e,n):this.text(e,n);return t||""};StringDecoder.prototype.end=utf8End;StringDecoder.prototype.text=utf8Text;StringDecoder.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 utf8CheckByte(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 utf8CheckIncomplete(e,t,n){var r=t.length-1;if(r<n)return 0;var i=utf8CheckByte(t[r]);if(i>=0){if(i>0)e.lastNeed=i-1;return i}if(--r<n||i===-2)return 0;i=utf8CheckByte(t[r]);if(i>=0){if(i>0)e.lastNeed=i-2;return i}if(--r<n||i===-2)return 0;i=utf8CheckByte(t[r]);if(i>=0){if(i>0){if(i===2)i=0;else e.lastNeed=i-3}return i}return 0}function utf8CheckExtraBytes(e,t,n){if((t[0]&192)!==128){e.lastNeed=0;return"<22>"}if(e.lastNeed>1&&t.length>1){if((t[1]&192)!==128){e.lastNeed=1;return"<22>"}if(e.lastNeed>2&&t.length>2){if((t[2]&192)!==128){e.lastNeed=2;return"<22>"}}}}function utf8FillLast(e){var t=this.lastTotal-this.lastNeed;var n=utf8CheckExtraBytes(this,e,t);if(n!==undefined)return n;if(this.lastNeed<=e.length){e.copy(this.lastChar,t,0,this.lastNeed);return this.lastChar.toString(this.encoding,0,this.lastTotal)}e.copy(this.lastChar,t,0,e.length);this.lastNeed-=e.length}function utf8Text(e,t){var n=utf8CheckIncomplete(this,e,t);if(!this.lastNeed)return e.toString("utf8",t);this.lastTotal=n;var r=e.length-(n-this.lastNeed);e.copy(this.lastChar,0,r);return e.toString("utf8",t,r)}function utf8End(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed)return t+"<22>";return t}function utf16Text(e,t){if((e.length-t)%2===0){var n=e.toString("utf16le",t);if(n){var r=n.charCodeAt(n.length-1);if(r>=55296&&r<=56319){this.lastNeed=2;this.lastTotal=4;this.lastChar[0]=e[e.length-2];this.lastChar[1]=e[e.length-1];return n.slice(0,-1)}}return n}this.lastNeed=1;this.lastTotal=2;this.lastChar[0]=e[e.length-1];return e.toString("utf16le",t,e.length-1)}function utf16End(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed){var n=this.lastTotal-this.lastNeed;return t+this.lastChar.toString("utf16le",0,n)}return t}function base64Text(e,t){var n=(e.length-t)%3;if(n===0)return e.toString("base64",t);this.lastNeed=3-n;this.lastTotal=3;if(n===1){this.lastChar[0]=e[e.length-1]}else{this.lastChar[0]=e[e.length-2];this.lastChar[1]=e[e.length-1]}return e.toString("base64",t,e.length-n)}function base64End(e){var t=e&&e.length?this.write(e):"";if(this.lastNeed)return t+this.lastChar.toString("base64",0,3-this.lastNeed);return t}function simpleWrite(e){return e.toString(this.encoding)}function simpleEnd(e){return e&&e.length?this.write(e):""}},210:function(){eval("require")("iconv")},211:function(e){e.exports=__webpack_require__(2307)},228:function(e){e.exports=function(e,n){var r=[];for(var i=0;i<e.length;i++){var o=n(e[i],i);if(t(o))r.push.apply(r,o);else r.push(o)}return r};var t=Array.isArray||function(e){return Object.prototype.toString.call(e)==="[object Array]"}},238:function(e,t,n){"use strict";var r=n(603).Buffer;t._dbcs=DBCSCodec;var i=-1,o=-2,a=-10,s=-1e3,c=new Array(256),u=-1;for(var l=0;l<256;l++)c[l]=i;function DBCSCodec(e,t){this.encodingName=e.encodingName;if(!e)throw new Error("DBCS codec is called without the data.");if(!e.table)throw new Error("Encoding '"+this.encodingName+"' has no data.");var n=e.table();this.decodeTables=[];this.decodeTables[0]=c.slice(0);this.decodeTableSeq=[];for(var r=0;r<n.length;r++)this._addDecodeChunk(n[r]);this.defaultCharUnicode=t.defaultCharUnicode;this.encodeTable=[];this.encodeTableSeq=[];var a={};if(e.encodeSkipVals)for(var r=0;r<e.encodeSkipVals.length;r++){var u=e.encodeSkipVals[r];if(typeof u==="number")a[u]=true;else for(var l=u.from;l<=u.to;l++)a[l]=true}this._fillEncodeTable(0,0,a);if(e.encodeAdd){for(var f in e.encodeAdd)if(Object.prototype.hasOwnProperty.call(e.encodeAdd,f))this._setEncodeChar(f.charCodeAt(0),e.encodeAdd[f])}this.defCharSB=this.encodeTable[0][t.defaultCharSingleByte.charCodeAt(0)];if(this.defCharSB===i)this.defCharSB=this.encodeTable[0]["?"];if(this.defCharSB===i)this.defCharSB="?".charCodeAt(0);if(typeof e.gb18030==="function"){this.gb18030=e.gb18030();var p=this.decodeTables.length;var d=this.decodeTables[p]=c.slice(0);var h=this.decodeTables.length;var m=this.decodeTables[h]=c.slice(0);for(var r=129;r<=254;r++){var v=s-this.decodeTables[0][r];var g=this.decodeTables[v];for(var l=48;l<=57;l++)g[l]=s-p}for(var r=129;r<=254;r++)d[r]=s-h;for(var r=48;r<=57;r++)m[r]=o}}DBCSCodec.prototype.encoder=DBCSEncoder;DBCSCodec.prototype.decoder=DBCSDecoder;DBCSCodec.prototype._getDecodeTrieNode=function(e){var t=[];for(;e>0;e>>=8)t.push(e&255);if(t.length==0)t.push(0);var n=this.decodeTables[0];for(var r=t.length-1;r>0;r--){var o=n[t[r]];if(o==i){n[t[r]]=s-this.decodeTables.length;this.decodeTables.push(n=c.slice(0))}else if(o<=s){n=this.decodeTables[s-o]}else throw new Error("Overwrite byte in "+this.encodingName+", addr: "+e.toString(16))}return n};DBCSCodec.prototype._addDecodeChunk=function(e){var t=parseInt(e[0],16);var n=this._getDecodeTrieNode(t);t=t&255;for(var r=1;r<e.length;r++){var i=e[r];if(typeof i==="string"){for(var o=0;o<i.length;){var s=i.charCodeAt(o++);if(55296<=s&&s<56320){var c=i.charCodeAt(o++);if(56320<=c&&c<57344)n[t++]=65536+(s-55296)*1024+(c-56320);else throw new Error("Incorrect surrogate pair in "+this.encodingName+" at chunk "+e[0])}else if(4080<s&&s<=4095){var u=4095-s+2;var l=[];for(var f=0;f<u;f++)l.push(i.charCodeAt(o++));n[t++]=a-this.decodeTableSeq.length;this.decodeTableSeq.push(l)}else n[t++]=s}}else if(typeof i==="number"){var p=n[t-1]+1;for(var o=0;o<i;o++)n[t++]=p++}else throw new Error("Incorrect type '"+typeof i+"' given in "+this.encodingName+" at chunk "+e[0])}if(t>255)throw new Error("Incorrect chunk in "+this.encodingName+" at addr "+e[0]+": too long"+t)};DBCSCodec.prototype._getEncodeBucket=function(e){var t=e>>8;if(this.encodeTable[t]===undefined)this.encodeTable[t]=c.slice(0);return this.encodeTable[t]};DBCSCodec.prototype._setEncodeChar=function(e,t){var n=this._getEncodeBucket(e);var r=e&255;if(n[r]<=a)this.encodeTableSeq[a-n[r]][u]=t;else if(n[r]==i)n[r]=t};DBCSCodec.prototype._setEncodeSequence=function(e,t){var n=e[0];var r=this._getEncodeBucket(n);var o=n&255;var s;if(r[o]<=a){s=this.encodeTableSeq[a-r[o]]}else{s={};if(r[o]!==i)s[u]=r[o];r[o]=a-this.encodeTableSeq.length;this.encodeTableSeq.push(s)}for(var c=1;c<e.length-1;c++){var l=s[n];if(typeof l==="object")s=l;else{s=s[n]={};if(l!==undefined)s[u]=l}}n=e[e.length-1];s[n]=t};DBCSCodec.prototype._fillEncodeTable=function(e,t,n){var r=this.decodeTables[e];for(var i=0;i<256;i++){var o=r[i];var c=t+i;if(n[c])continue;if(o>=0)this._setEncodeChar(o,c);else if(o<=s)this._fillEncodeTable(s-o,c<<8,n);else if(o<=a)this._setEncodeSequence(this.decodeTableSeq[a-o],c)}};function DBCSEncoder(e,t){this.leadSurrogate=-1;this.seqObj=undefined;this.encodeTable=t.encodeTable;this.encodeTableSeq=t.encodeTableSeq;this.defaultCharSingleByte=t.defCharSB;this.gb18030=t.gb18030}DBCSEncoder.prototype.write=function(e){var t=r.alloc(e.length*(this.gb18030?4:3)),n=this.leadSurrogate,o=this.seqObj,s=-1,c=0,l=0;while(true){if(s===-1){if(c==e.length)break;var f=e.charCodeAt(c++)}else{var f=s;s=-1}if(55296<=f&&f<57344){if(f<56320){if(n===-1){n=f;continue}else{n=f;f=i}}else{if(n!==-1){f=65536+(n-55296)*1024+(f-56320);n=-1}else{f=i}}}else if(n!==-1){s=f;f=i;n=-1}var p=i;if(o!==undefined&&f!=i){var d=o[f];if(typeof d==="object"){o=d;continue}else if(typeof d=="number"){p=d}else if(d==undefined){d=o[u];if(d!==undefined){p=d;s=f}else{}}o=undefined}else if(f>=0){var h=this.encodeTable[f>>8];if(h!==undefined)p=h[f&255];if(p<=a){o=this.encodeTableSeq[a-p];continue}if(p==i&&this.gb18030){var m=findIdx(this.gb18030.uChars,f);if(m!=-1){var p=this.gb18030.gbChars[m]+(f-this.gb18030.uChars[m]);t[l++]=129+Math.floor(p/12600);p=p%12600;t[l++]=48+Math.floor(p/1260);p=p%1260;t[l++]=129+Math.floor(p/10);p=p%10;t[l++]=48+p;continue}}}if(p===i)p=this.defaultCharSingleByte;if(p<256){t[l++]=p}else if(p<65536){t[l++]=p>>8;t[l++]=p&255}else{t[l++]=p>>16;t[l++]=p>>8&255;t[l++]=p&255}}this.seqObj=o;this.leadSurrogate=n;return t.slice(0,l)};DBCSEncoder.prototype.end=function(){if(this.leadSurrogate===-1&&this.seqObj===undefined)return;var e=r.alloc(10),t=0;if(this.seqObj){var n=this.seqObj[u];if(n!==undefined){if(n<256){e[t++]=n}else{e[t++]=n>>8;e[t++]=n&255}}else{}this.seqObj=undefined}if(this.leadSurrogate!==-1){e[t++]=this.defaultCharSingleByte;this.leadSurrogate=-1}return e.slice(0,t)};DBCSEncoder.prototype.findIdx=findIdx;function DBCSDecoder(e,t){this.nodeIdx=0;this.prevBuf=r.alloc(0);this.decodeTables=t.decodeTables;this.decodeTableSeq=t.decodeTableSeq;this.defaultCharUnicode=t.defaultCharUnicode;this.gb18030=t.gb18030}DBCSDecoder.prototype.write=function(e){var t=r.alloc(e.length*2),n=this.nodeIdx,c=this.prevBuf,u=this.prevBuf.length,l=-this.prevBuf.length,f;if(u>0)c=r.concat([c,e.slice(0,10)]);for(var p=0,d=0;p<e.length;p++){var h=p>=0?e[p]:c[p+u];var f=this.decodeTables[n][h];if(f>=0){}else if(f===i){p=l;f=this.defaultCharUnicode.charCodeAt(0)}else if(f===o){var m=l>=0?e.slice(l,p+1):c.slice(l+u,p+1+u);var v=(m[0]-129)*12600+(m[1]-48)*1260+(m[2]-129)*10+(m[3]-48);var g=findIdx(this.gb18030.gbChars,v);f=this.gb18030.uChars[g]+v-this.gb18030.gbChars[g]}else if(f<=s){n=s-f;continue}else if(f<=a){var y=this.decodeTableSeq[a-f];for(var b=0;b<y.length-1;b++){f=y[b];t[d++]=f&255;t[d++]=f>>8}f=y[y.length-1]}else throw new Error("iconv-lite internal error: invalid decoding table value "+f+" at "+n+"/"+h);if(f>65535){f-=65536;var w=55296+Math.floor(f/1024);t[d++]=w&255;t[d++]=w>>8;f=56320+f%1024}t[d++]=f&255;t[d++]=f>>8;n=0;l=p+1}this.nodeIdx=n;this.prevBuf=l>=0?e.slice(l):c.slice(l+u);return t.slice(0,d).toString("ucs2")};DBCSDecoder.prototype.end=function(){var e="";while(this.prevBuf.length>0){e+=this.defaultCharUnicode;var t=this.prevBuf.slice(1);this.prevBuf=r.alloc(0);this.nodeIdx=0;if(t.length>0)e+=this.write(t)}this.nodeIdx=0;return e};function findIdx(e,t){if(e[0]>t)return-1;var n=0,r=e.length;while(n<r-1){var i=n+Math.floor((r-n+1)/2);if(e[i]<=t)n=i;else r=i}return n}},244:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(622));const o=r(n(357));const a=r(n(478));const s=n(669);const c=n(410);const u=r(n(194));const l=s.promisify(a.default);async function glob(e,t,n){let r;if(typeof t==="string"){r={cwd:t}}else{r=t}if(!r.cwd){throw new Error("Second argument (basePath) must be specified for names of resulting files")}if(!i.default.isAbsolute(r.cwd)){throw new Error(`basePath/cwd must be an absolute path (${r.cwd})`)}const a={};r.symlinks={};r.statCache={};r.stat=true;r.dot=true;const s=await l(e,r);for(const e of s){const t=i.default.join(r.cwd,e).replace(/\\/g,"/");let s=r.statCache[t];o.default(s,`statCache does not contain value for ${e} (resolved to ${t})`);if(s.isFile()){const o=r.symlinks[t];if(o){s=await c.lstat(t)}let l=e;if(n){l=i.default.join(n,l)}a[l]=new u.default({mode:s.mode,fsPath:t})}}return a}t.default=glob},265:function(e,t,n){e.exports=isexe;isexe.sync=sync;var r=n(747);function checkPathExt(e,t){var n=t.pathExt!==undefined?t.pathExt:process.env.PATHEXT;if(!n){return true}n=n.split(";");if(n.indexOf("")!==-1){return true}for(var r=0;r<n.length;r++){var i=n[r].toLowerCase();if(i&&e.substr(-i.length).toLowerCase()===i){return true}}return false}function checkStat(e,t,n){if(!e.isSymbolicLink()&&!e.isFile()){return false}return checkPathExt(t,n)}function isexe(e,t,n){r.stat(e,function(r,i){n(r,r?false:checkStat(i,e,t))})}function sync(e,t){return checkStat(r.statSync(e),e,t)}},266:function(e,t,n){var r=n(228);var i=n(599);e.exports=expandTop;var o="\0SLASH"+Math.random()+"\0";var a="\0OPEN"+Math.random()+"\0";var s="\0CLOSE"+Math.random()+"\0";var c="\0COMMA"+Math.random()+"\0";var u="\0PERIOD"+Math.random()+"\0";function numeric(e){return parseInt(e,10)==e?parseInt(e,10):e.charCodeAt(0)}function escapeBraces(e){return e.split("\\\\").join(o).split("\\{").join(a).split("\\}").join(s).split("\\,").join(c).split("\\.").join(u)}function unescapeBraces(e){return e.split(o).join("\\").split(a).join("{").split(s).join("}").split(c).join(",").split(u).join(".")}function parseCommaParts(e){if(!e)return[""];var t=[];var n=i("{","}",e);if(!n)return e.split(",");var r=n.pre;var o=n.body;var a=n.post;var s=r.split(",");s[s.length-1]+="{"+o+"}";var c=parseCommaParts(a);if(a.length){s[s.length-1]+=c.shift();s.push.apply(s,c)}t.push.apply(t,s);return t}function expandTop(e){if(!e)return[];if(e.substr(0,2)==="{}"){e="\\{\\}"+e.substr(2)}return expand(escapeBraces(e),true).map(unescapeBraces)}function identity(e){return e}function embrace(e){return"{"+e+"}"}function isPadded(e){return/^-?0\d/.test(e)}function lte(e,t){return e<=t}function gte(e,t){return e>=t}function expand(e,t){var n=[];var o=i("{","}",e);if(!o||/\$$/.test(o.pre))return[e];var a=/^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(o.body);var c=/^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(o.body);var u=a||c;var l=o.body.indexOf(",")>=0;if(!u&&!l){if(o.post.match(/,.*\}/)){e=o.pre+"{"+o.body+s+o.post;return expand(e)}return[e]}var f;if(u){f=o.body.split(/\.\./)}else{f=parseCommaParts(o.body);if(f.length===1){f=expand(f[0],false).map(embrace);if(f.length===1){var p=o.post.length?expand(o.post,false):[""];return p.map(function(e){return o.pre+f[0]+e})}}}var d=o.pre;var p=o.post.length?expand(o.post,false):[""];var h;if(u){var m=numeric(f[0]);var v=numeric(f[1]);var g=Math.max(f[0].length,f[1].length);var y=f.length==3?Math.abs(numeric(f[2])):1;var b=lte;var w=v<m;if(w){y*=-1;b=gte}var x=f.some(isPadded);h=[];for(var k=m;b(k,v);k+=y){var j;if(c){j=String.fromCharCode(k);if(j==="\\")j=""}else{j=String(k);if(x){var S=g-j.length;if(S>0){var E=new Array(S+1).join("0");if(k<0)j="-"+E+j.slice(1);else j=E+j}}}h.push(j)}}else{h=r(f,function(e){return expand(e,false)})}for(var _=0;_<h.length;_++){for(var C=0;C<p.length;C++){var A=d+h[_]+p[C];if(!t||u||A)n.push(A)}}return n}},280:function(e){e.exports=[["8740","䏰䰲䘃䖦䕸𧉧䵷䖳𧲱䳢𧳅㮕䜶䝄䱇䱀𤊿𣘗𧍒𦺋𧃒䱗𪍑䝏䗚䲅𧱬䴇䪤䚡𦬣爥𥩔𡩣𣸆𣽡晍囻"],["8767","綕夝𨮹㷴霴𧯯寛𡵞媤㘥𩺰嫑宷峼杮薓𩥅瑡璝㡵𡵓𣚞𦀡㻬"],["87a1","𥣞㫵竼龗𤅡𨤍𣇪𠪊𣉞䌊蒄龖鐯䤰蘓墖靊鈘秐稲晠権袝瑌篅枂稬剏遆㓦珄𥶹瓆鿇垳䤯呌䄱𣚎堘穲𧭥讏䚮𦺈䆁𥶙箮𢒼鿈𢓁𢓉𢓌鿉蔄𣖻䂴鿊䓡𪷿拁灮鿋"],["8840","㇀",4,"𠄌㇅𠃑𠃍㇆㇇𠃋𡿨㇈𠃊㇉㇊㇋㇌𠄎㇍㇎ĀÁǍÀĒÉĚÈŌÓǑÒ࿿Ê̄Ế࿿Ê̌ỀÊāáǎàɑēéěèīíǐìōóǒòūúǔùǖǘǚ"],["88a1","ǜü࿿ê̄ế࿿ê̌ềêɡ⏚⏛"],["8940","𪎩𡅅"],["8943","攊"],["8946","丽滝鵎釟"],["894c","𧜵撑会伨侨兖兴农凤务动医华发变团声处备夲头学实実岚庆总斉柾栄桥济炼电纤纬纺织经统缆缷艺苏药视设询车轧轮"],["89a1","琑糼緍楆竉刧"],["89ab","醌碸酞肼"],["89b0","贋胶𠧧"],["89b5","肟黇䳍鷉鸌䰾𩷶𧀎鸊𪄳㗁"],["89c1","溚舾甙"],["89c5","䤑马骏龙禇𨑬𡷊𠗐𢫦两亁亀亇亿仫伷㑌侽㹈倃傈㑽㒓㒥円夅凛凼刅争剹劐匧㗇厩㕑厰㕓参吣㕭㕲㚁咓咣咴咹哐哯唘唣唨㖘唿㖥㖿嗗㗅"],["8a40","𧶄唥"],["8a43","𠱂𠴕𥄫喐𢳆㧬𠍁蹆𤶸𩓥䁓𨂾睺𢰸㨴䟕𨅝𦧲𤷪擝𠵼𠾴𠳕𡃴撍蹾𠺖𠰋𠽤𢲩𨉖𤓓"],["8a64","𠵆𩩍𨃩䟴𤺧𢳂骲㩧𩗴㿭㔆𥋇𩟔𧣈𢵄鵮頕"],["8a76","䏙𦂥撴哣𢵌𢯊𡁷㧻𡁯"],["8aa1","𦛚𦜖𧦠擪𥁒𠱃蹨𢆡𨭌𠜱"],["8aac","䠋𠆩㿺塳𢶍"],["8ab2","𤗈𠓼𦂗𠽌𠶖啹䂻䎺"],["8abb","䪴𢩦𡂝膪飵𠶜捹㧾𢝵跀嚡摼㹃"],["8ac9","𪘁𠸉𢫏𢳉"],["8ace","𡃈𣧂㦒㨆𨊛㕸𥹉𢃇噒𠼱𢲲𩜠㒼氽𤸻"],["8adf","𧕴𢺋𢈈𪙛𨳍𠹺𠰴𦠜羓𡃏𢠃𢤹㗻𥇣𠺌𠾍𠺪㾓𠼰𠵇𡅏𠹌"],["8af6","𠺫𠮩𠵈𡃀𡄽㿹𢚖搲𠾭"],["8b40","𣏴𧘹𢯎𠵾𠵿𢱑𢱕㨘𠺘𡃇𠼮𪘲𦭐𨳒𨶙𨳊閪哌苄喹"],["8b55","𩻃鰦骶𧝞𢷮煀腭胬尜𦕲脴㞗卟𨂽醶𠻺𠸏𠹷𠻻㗝𤷫㘉𠳖嚯𢞵𡃉𠸐𠹸𡁸𡅈𨈇𡑕𠹹𤹐𢶤婔𡀝𡀞𡃵𡃶垜𠸑"],["8ba1","𧚔𨋍𠾵𠹻𥅾㜃𠾶𡆀𥋘𪊽𤧚𡠺𤅷𨉼墙剨㘚𥜽箲孨䠀䬬鼧䧧鰟鮍𥭴𣄽嗻㗲嚉丨夂𡯁屮靑𠂆乛亻㔾尣彑忄㣺扌攵歺氵氺灬爫丬犭𤣩罒礻糹罓𦉪㓁"],["8bde","𦍋耂肀𦘒𦥑卝衤见𧢲讠贝钅镸长门𨸏韦页风飞饣𩠐鱼鸟黄歯龜丷𠂇阝户钢"],["8c40","倻淾𩱳龦㷉袏𤅎灷峵䬠𥇍㕙𥴰愢𨨲辧釶熑朙玺𣊁𪄇㲋𡦀䬐磤琂冮𨜏䀉橣𪊺䈣蘏𠩯稪𩥇𨫪靕灍匤𢁾鏴盙𨧣龧矝亣俰傼丯众龨吴綋墒壐𡶶庒庙忂𢜒斋"],["8ca1","𣏹椙橃𣱣泿"],["8ca7","爀𤔅玌㻛𤨓嬕璹讃𥲤𥚕窓篬糃繬苸薗龩袐龪躹龫迏蕟駠鈡龬𨶹𡐿䁱䊢娚"],["8cc9","顨杫䉶圽"],["8cce","藖𤥻芿𧄍䲁𦵴嵻𦬕𦾾龭龮宖龯曧繛湗秊㶈䓃𣉖𢞖䎚䔶"],["8ce6","峕𣬚諹屸㴒𣕑嵸龲煗䕘𤃬𡸣䱷㥸㑊𠆤𦱁諌侴𠈹妿腬顖𩣺弻"],["8d40","𠮟"],["8d42","𢇁𨥭䄂䚻𩁹㼇龳𪆵䃸㟖䛷𦱆䅼𨚲𧏿䕭㣔𥒚䕡䔛䶉䱻䵶䗪㿈𤬏㙡䓞䒽䇭崾嵈嵖㷼㠏嶤嶹㠠㠸幂庽弥徃㤈㤔㤿㥍惗愽峥㦉憷憹懏㦸戬抐拥挘㧸嚱"],["8da1","㨃揢揻搇摚㩋擀崕嘡龟㪗斆㪽旿晓㫲暒㬢朖㭂枤栀㭘桊梄㭲㭱㭻椉楃牜楤榟榅㮼槖㯝橥橴橱檂㯬檙㯲檫檵櫔櫶殁毁毪汵沪㳋洂洆洦涁㳯涤涱渕渘温溆𨧀溻滢滚齿滨滩漤漴㵆𣽁澁澾㵪㵵熷岙㶊瀬㶑灐灔灯灿炉𠌥䏁㗱𠻘"],["8e40","𣻗垾𦻓焾𥟠㙎榢𨯩孴穉𥣡𩓙穥穽𥦬窻窰竂竃燑𦒍䇊竚竝竪䇯咲𥰁笋筕笩𥌎𥳾箢筯莜𥮴𦱿篐萡箒箸𥴠㶭𥱥蒒篺簆簵𥳁籄粃𤢂粦晽𤕸糉糇糦籴糳糵糎"],["8ea1","繧䔝𦹄絝𦻖璍綉綫焵綳緒𤁗𦀩緤㴓緵𡟹緥𨍭縝𦄡𦅚繮纒䌫鑬縧罀罁罇礶𦋐駡羗𦍑羣𡙡𠁨䕜𣝦䔃𨌺翺𦒉者耈耝耨耯𪂇𦳃耻耼聡𢜔䦉𦘦𣷣𦛨朥肧𨩈脇脚墰𢛶汿𦒘𤾸擧𡒊舘𡡞橓𤩥𤪕䑺舩𠬍𦩒𣵾俹𡓽蓢荢𦬊𤦧𣔰𡝳𣷸芪椛芳䇛"],["8f40","蕋苐茚𠸖𡞴㛁𣅽𣕚艻苢茘𣺋𦶣𦬅𦮗𣗎㶿茝嗬莅䔋𦶥莬菁菓㑾𦻔橗蕚㒖𦹂𢻯葘𥯤葱㷓䓤檧葊𣲵祘蒨𦮖𦹷𦹃蓞萏莑䒠蒓蓤𥲑䉀𥳀䕃蔴嫲𦺙䔧蕳䔖枿蘖"],["8fa1","𨘥𨘻藁𧂈蘂𡖂𧃍䕫䕪蘨㙈𡢢号𧎚虾蝱𪃸蟮𢰧螱蟚蠏噡虬桖䘏衅衆𧗠𣶹𧗤衞袜䙛袴袵揁装睷𧜏覇覊覦覩覧覼𨨥觧𧤤𧪽誜瞓釾誐𧩙竩𧬺𣾏䜓𧬸煼謌謟𥐰𥕥謿譌譍誩𤩺讐讛誯𡛟䘕衏貛𧵔𧶏貫㜥𧵓賖𧶘𧶽贒贃𡤐賛灜贑𤳉㻐起"],["9040","趩𨀂𡀔𤦊㭼𨆼𧄌竧躭躶軃鋔輙輭𨍥𨐒辥錃𪊟𠩐辳䤪𨧞𨔽𣶻廸𣉢迹𪀔𨚼𨔁𢌥㦀𦻗逷𨔼𧪾遡𨕬𨘋邨𨜓郄𨛦邮都酧㫰醩釄粬𨤳𡺉鈎沟鉁鉢𥖹銹𨫆𣲛𨬌𥗛"],["90a1","𠴱錬鍫𨫡𨯫炏嫃𨫢𨫥䥥鉄𨯬𨰹𨯿鍳鑛躼閅閦鐦閠濶䊹𢙺𨛘𡉼𣸮䧟氜陻隖䅬隣𦻕懚隶磵𨫠隽双䦡𦲸𠉴𦐐𩂯𩃥𤫑𡤕𣌊霱虂霶䨏䔽䖅𤫩灵孁霛靜𩇕靗孊𩇫靟鐥僐𣂷𣂼鞉鞟鞱鞾韀韒韠𥑬韮琜𩐳響韵𩐝𧥺䫑頴頳顋顦㬎𧅵㵑𠘰𤅜"],["9140","𥜆飊颷飈飇䫿𦴧𡛓喰飡飦飬鍸餹𤨩䭲𩡗𩤅駵騌騻騐驘𥜥㛄𩂱𩯕髠髢𩬅髴䰎鬔鬭𨘀倴鬴𦦨㣃𣁽魐魀𩴾婅𡡣鮎𤉋鰂鯿鰌𩹨鷔𩾷𪆒𪆫𪃡𪄣𪇟鵾鶃𪄴鸎梈"],["91a1","鷄𢅛𪆓𪈠𡤻𪈳鴹𪂹𪊴麐麕麞麢䴴麪麯𤍤黁㭠㧥㴝伲㞾𨰫鼂鼈䮖鐤𦶢鼗鼖鼹嚟嚊齅馸𩂋韲葿齢齩竜龎爖䮾𤥵𤦻煷𤧸𤍈𤩑玞𨯚𡣺禟𨥾𨸶鍩鏳𨩄鋬鎁鏋𨥬𤒹爗㻫睲穃烐𤑳𤏸煾𡟯炣𡢾𣖙㻇𡢅𥐯𡟸㜢𡛻𡠹㛡𡝴𡣑𥽋㜣𡛀坛𤨥𡏾𡊨"],["9240","𡏆𡒶蔃𣚦蔃葕𤦔𧅥𣸱𥕜𣻻𧁒䓴𣛮𩦝𦼦柹㜳㰕㷧塬𡤢栐䁗𣜿𤃡𤂋𤄏𦰡哋嚞𦚱嚒𠿟𠮨𠸍鏆𨬓鎜仸儫㠙𤐶亼𠑥𠍿佋侊𥙑婨𠆫𠏋㦙𠌊𠐔㐵伩𠋀𨺳𠉵諚𠈌亘"],["92a1","働儍侢伃𤨎𣺊佂倮偬傁俌俥偘僼兙兛兝兞湶𣖕𣸹𣺿浲𡢄𣺉冨凃𠗠䓝𠒣𠒒𠒑赺𨪜𠜎剙劤𠡳勡鍮䙺熌𤎌𠰠𤦬𡃤槑𠸝瑹㻞璙琔瑖玘䮎𤪼𤂍叐㖄爏𤃉喴𠍅响𠯆圝鉝雴鍦埝垍坿㘾壋媙𨩆𡛺𡝯𡜐娬妸銏婾嫏娒𥥆𡧳𡡡𤊕㛵洅瑃娡𥺃"],["9340","媁𨯗𠐓鏠璌𡌃焅䥲鐈𨧻鎽㞠尞岞幞幈𡦖𡥼𣫮廍孏𡤃𡤄㜁𡢠㛝𡛾㛓脪𨩇𡶺𣑲𨦨弌弎𡤧𡞫婫𡜻孄蘔𧗽衠恾𢡠𢘫忛㺸𢖯𢖾𩂈𦽳懀𠀾𠁆𢘛憙憘恵𢲛𢴇𤛔𩅍"],["93a1","摱𤙥𢭪㨩𢬢𣑐𩣪𢹸挷𪑛撶挱揑𤧣𢵧护𢲡搻敫楲㯴𣂎𣊭𤦉𣊫唍𣋠𡣙𩐿曎𣊉𣆳㫠䆐𥖄𨬢𥖏𡛼𥕛𥐥磮𣄃𡠪𣈴㑤𣈏𣆂𤋉暎𦴤晫䮓昰𧡰𡷫晣𣋒𣋡昞𥡲㣑𣠺𣞼㮙𣞢𣏾瓐㮖枏𤘪梶栞㯄檾㡣𣟕𤒇樳橒櫉欅𡤒攑梘橌㯗橺歗𣿀𣲚鎠鋲𨯪𨫋"],["9440","銉𨀞𨧜鑧涥漋𤧬浧𣽿㶏渄𤀼娽渊塇洤硂焻𤌚𤉶烱牐犇犔𤞏𤜥兹𤪤𠗫瑺𣻸𣙟𤩊𤤗𥿡㼆㺱𤫟𨰣𣼵悧㻳瓌琼鎇琷䒟𦷪䕑疃㽣𤳙𤴆㽘畕癳𪗆㬙瑨𨫌𤦫𤦎㫻"],["94a1","㷍𤩎㻿𤧅𤣳釺圲鍂𨫣𡡤僟𥈡𥇧睸𣈲眎眏睻𤚗𣞁㩞𤣰琸璛㺿𤪺𤫇䃈𤪖𦆮錇𥖁砞碍碈磒珐祙𧝁𥛣䄎禛蒖禥樭𣻺稺秴䅮𡛦䄲鈵秱𠵌𤦌𠊙𣶺𡝮㖗啫㕰㚪𠇔𠰍竢婙𢛵𥪯𥪜娍𠉛磰娪𥯆竾䇹籝籭䈑𥮳𥺼𥺦糍𤧹𡞰粎籼粮檲緜縇緓罎𦉡"],["9540","𦅜𧭈綗𥺂䉪𦭵𠤖柖𠁎𣗏埄𦐒𦏸𤥢翝笧𠠬𥫩𥵃笌𥸎駦虅驣樜𣐿㧢𤧷𦖭騟𦖠蒀𧄧𦳑䓪脷䐂胆脉腂𦞴飃𦩂艢艥𦩑葓𦶧蘐𧈛媆䅿𡡀嬫𡢡嫤𡣘蚠蜨𣶏蠭𧐢娂"],["95a1","衮佅袇袿裦襥襍𥚃襔𧞅𧞄𨯵𨯙𨮜𨧹㺭蒣䛵䛏㟲訽訜𩑈彍鈫𤊄旔焩烄𡡅鵭貟賩𧷜妚矃姰䍮㛔踪躧𤰉輰轊䋴汘澻𢌡䢛潹溋𡟚鯩㚵𤤯邻邗啱䤆醻鐄𨩋䁢𨫼鐧𨰝𨰻蓥訫閙閧閗閖𨴴瑅㻂𤣿𤩂𤏪㻧𣈥随𨻧𨹦𨹥㻌𤧭𤩸𣿮琒瑫㻼靁𩂰"],["9640","桇䨝𩂓𥟟靝鍨𨦉𨰦𨬯𦎾銺嬑譩䤼珹𤈛鞛靱餸𠼦巁𨯅𤪲頟𩓚鋶𩗗釥䓀𨭐𤩧𨭤飜𨩅㼀鈪䤥萔餻饍𧬆㷽馛䭯馪驜𨭥𥣈檏騡嫾騯𩣱䮐𩥈馼䮽䮗鍽塲𡌂堢𤦸"],["96a1","𡓨硄𢜟𣶸棅㵽鑘㤧慐𢞁𢥫愇鱏鱓鱻鰵鰐魿鯏𩸭鮟𪇵𪃾鴡䲮𤄄鸘䲰鴌𪆴𪃭𪃳𩤯鶥蒽𦸒𦿟𦮂藼䔳𦶤𦺄𦷰萠藮𦸀𣟗𦁤秢𣖜𣙀䤭𤧞㵢鏛銾鍈𠊿碹鉷鑍俤㑀遤𥕝砽硔碶硋𡝗𣇉𤥁㚚佲濚濙瀞瀞吔𤆵垻壳垊鴖埗焴㒯𤆬燫𦱀𤾗嬨𡞵𨩉"],["9740","愌嫎娋䊼𤒈㜬䭻𨧼鎻鎸𡣖𠼝葲𦳀𡐓𤋺𢰦𤏁妔𣶷𦝁綨𦅛𦂤𤦹𤦋𨧺鋥珢㻩璴𨭣𡢟㻡𤪳櫘珳珻㻖𤨾𤪔𡟙𤩦𠎧𡐤𤧥瑈𤤖炥𤥶銄珦鍟𠓾錱𨫎𨨖鎆𨯧𥗕䤵𨪂煫"],["97a1","𤥃𠳿嚤𠘚𠯫𠲸唂秄𡟺緾𡛂𤩐𡡒䔮鐁㜊𨫀𤦭妰𡢿𡢃𧒄媡㛢𣵛㚰鉟婹𨪁𡡢鍴㳍𠪴䪖㦊僴㵩㵌𡎜煵䋻𨈘渏𩃤䓫浗𧹏灧沯㳖𣿭𣸭渂漌㵯𠏵畑㚼㓈䚀㻚䡱姄鉮䤾轁𨰜𦯀堒埈㛖𡑒烾𤍢𤩱𢿣𡊰𢎽梹楧𡎘𣓥𧯴𣛟𨪃𣟖𣏺𤲟樚𣚭𦲷萾䓟䓎"],["9840","𦴦𦵑𦲂𦿞漗𧄉茽𡜺菭𦲀𧁓𡟛妉媂𡞳婡婱𡤅𤇼㜭姯𡜼㛇熎鎐暚𤊥婮娫𤊓樫𣻹𧜶𤑛𤋊焝𤉙𨧡侰𦴨峂𤓎𧹍𤎽樌𤉖𡌄炦焳𤏩㶥泟勇𤩏繥姫崯㷳彜𤩝𡟟綤萦"],["98a1","咅𣫺𣌀𠈔坾𠣕𠘙㿥𡾞𪊶瀃𩅛嵰玏糓𨩙𩐠俈翧狍猐𧫴猸猹𥛶獁獈㺩𧬘遬燵𤣲珡臶㻊県㻑沢国琙琞琟㻢㻰㻴㻺瓓㼎㽓畂畭畲疍㽼痈痜㿀癍㿗癴㿜発𤽜熈嘣覀塩䀝睃䀹条䁅㗛瞘䁪䁯属瞾矋売砘点砜䂨砹硇硑硦葈𥔵礳栃礲䄃"],["9940","䄉禑禙辻稆込䅧窑䆲窼艹䇄竏竛䇏両筢筬筻簒簛䉠䉺类粜䊌粸䊔糭输烀𠳏総緔緐緽羮羴犟䎗耠耥笹耮耱联㷌垴炠肷胩䏭脌猪脎脒畠脔䐁㬹腖腙腚"],["99a1","䐓堺腼膄䐥膓䐭膥埯臁臤艔䒏芦艶苊苘苿䒰荗险榊萅烵葤惣蒈䔄蒾蓡蓸蔐蔸蕒䔻蕯蕰藠䕷虲蚒蚲蛯际螋䘆䘗袮裿褤襇覑𧥧訩訸誔誴豑賔賲贜䞘塟跃䟭仮踺嗘坔蹱嗵躰䠷軎転軤軭軲辷迁迊迌逳駄䢭飠鈓䤞鈨鉘鉫銱銮銿"],["9a40","鋣鋫鋳鋴鋽鍃鎄鎭䥅䥑麿鐗匁鐝鐭鐾䥪鑔鑹锭関䦧间阳䧥枠䨤靀䨵鞲韂噔䫤惨颹䬙飱塄餎餙冴餜餷饂饝饢䭰駅䮝騼鬏窃魩鮁鯝鯱鯴䱭鰠㝯𡯂鵉鰺"],["9aa1","黾噐鶓鶽鷀鷼银辶鹻麬麱麽黆铜黢黱黸竈齄𠂔𠊷𠎠椚铃妬𠓗塀铁㞹𠗕𠘕𠙶𡚺块煳𠫂𠫍𠮿呪吆𠯋咞𠯻𠰻𠱓𠱥𠱼惧𠲍噺𠲵𠳝𠳭𠵯𠶲𠷈楕鰯螥𠸄𠸎𠻗𠾐𠼭𠹳尠𠾼帋𡁜𡁏𡁶朞𡁻𡂈𡂖㙇𡂿𡃓𡄯𡄻卤蒭𡋣𡍵𡌶讁𡕷𡘙𡟃𡟇乸炻𡠭𡥪"],["9b40","𡨭𡩅𡰪𡱰𡲬𡻈拃𡻕𡼕熘桕𢁅槩㛈𢉼𢏗𢏺𢜪𢡱𢥏苽𢥧𢦓𢫕覥𢫨辠𢬎鞸𢬿顇骽𢱌"],["9b62","𢲈𢲷𥯨𢴈𢴒𢶷𢶕𢹂𢽴𢿌𣀳𣁦𣌟𣏞徱晈暿𧩹𣕧𣗳爁𤦺矗𣘚𣜖纇𠍆墵朎"],["9ba1","椘𣪧𧙗𥿢𣸑𣺹𧗾𢂚䣐䪸𤄙𨪚𤋮𤌍𤀻𤌴𤎖𤩅𠗊凒𠘑妟𡺨㮾𣳿𤐄𤓖垈𤙴㦛𤜯𨗨𩧉㝢𢇃譞𨭎駖𤠒𤣻𤨕爉𤫀𠱸奥𤺥𤾆𠝹軚𥀬劏圿煱𥊙𥐙𣽊𤪧喼𥑆𥑮𦭒釔㑳𥔿𧘲𥕞䜘𥕢𥕦𥟇𤤿𥡝偦㓻𣏌惞𥤃䝼𨥈𥪮𥮉𥰆𡶐垡煑澶𦄂𧰒遖𦆲𤾚譢𦐂𦑊"],["9c40","嵛𦯷輶𦒄𡤜諪𤧶𦒈𣿯𦔒䯀𦖿𦚵𢜛鑥𥟡憕娧晉侻嚹𤔡𦛼乪𤤴陖涏𦲽㘘襷𦞙𦡮𦐑𦡞營𦣇筂𩃀𠨑𦤦鄄𦤹穅鷰𦧺騦𦨭㙟𦑩𠀡禃𦨴𦭛崬𣔙菏𦮝䛐𦲤画补𦶮墶"],["9ca1","㜜𢖍𧁋𧇍㱔𧊀𧊅銁𢅺𧊋錰𧋦𤧐氹钟𧑐𠻸蠧裵𢤦𨑳𡞱溸𤨪𡠠㦤㚹尐秣䔿暶𩲭𩢤襃𧟌𧡘囖䃟𡘊㦡𣜯𨃨𡏅熭荦𧧝𩆨婧䲷𧂯𨦫𧧽𧨊𧬋𧵦𤅺筃祾𨀉澵𪋟樃𨌘厢𦸇鎿栶靝𨅯𨀣𦦵𡏭𣈯𨁈嶅𨰰𨂃圕頣𨥉嶫𤦈斾槕叒𤪥𣾁㰑朶𨂐𨃴𨄮𡾡𨅏"],["9d40","𨆉𨆯𨈚𨌆𨌯𨎊㗊𨑨𨚪䣺揦𨥖砈鉕𨦸䏲𨧧䏟𨧨𨭆𨯔姸𨰉輋𨿅𩃬筑𩄐𩄼㷷𩅞𤫊运犏嚋𩓧𩗩𩖰𩖸𩜲𩣑𩥉𩥪𩧃𩨨𩬎𩵚𩶛纟𩻸𩼣䲤镇𪊓熢𪋿䶑递𪗋䶜𠲜达嗁"],["9da1","辺𢒰边𤪓䔉繿潖檱仪㓤𨬬𧢝㜺躀𡟵𨀤𨭬𨮙𧨾𦚯㷫𧙕𣲷𥘵𥥖亚𥺁𦉘嚿𠹭踎孭𣺈𤲞揞拐𡟶𡡻攰嘭𥱊吚𥌑㷆𩶘䱽嘢嘞罉𥻘奵𣵀蝰东𠿪𠵉𣚺脗鵞贘瘻鱅癎瞹鍅吲腈苷嘥脲萘肽嗪祢噃吖𠺝㗎嘅嗱曱𨋢㘭甴嗰喺咗啲𠱁𠲖廐𥅈𠹶𢱢"],["9e40","𠺢麫絚嗞𡁵抝靭咔賍燶酶揼掹揾啩𢭃鱲𢺳冚㓟𠶧冧呍唞唓癦踭𦢊疱肶蠄螆裇膶萜𡃁䓬猄𤜆宐茋𦢓噻𢛴𧴯𤆣𧵳𦻐𧊶酰𡇙鈈𣳼𪚩𠺬𠻹牦𡲢䝎𤿂𧿹𠿫䃺"],["9ea1","鱝攟𢶠䣳𤟠𩵼𠿬𠸊恢𧖣𠿭"],["9ead","𦁈𡆇熣纎鵐业丄㕷嬍沲卧㚬㧜卽㚥𤘘墚𤭮舭呋垪𥪕𠥹"],["9ec5","㩒𢑥獴𩺬䴉鯭𣳾𩼰䱛𤾩𩖞𩿞葜𣶶𧊲𦞳𣜠挮紥𣻷𣸬㨪逈勌㹴㙺䗩𠒎癀嫰𠺶硺𧼮墧䂿噼鮋嵴癔𪐴麅䳡痹㟻愙𣃚𤏲"],["9ef5","噝𡊩垧𤥣𩸆刴𧂮㖭汊鵼"],["9f40","籖鬹埞𡝬屓擓𩓐𦌵𧅤蚭𠴨𦴢𤫢𠵱"],["9f4f","凾𡼏嶎霃𡷑麁遌笟鬂峑箣扨挵髿篏鬪籾鬮籂粆鰕篼鬉鼗鰛𤤾齚啳寃俽麘俲剠㸆勑坧偖妷帒韈鶫轜呩鞴饀鞺匬愰"],["9fa1","椬叚鰊鴂䰻陁榀傦畆𡝭駚剳"],["9fae","酙隁酜"],["9fb2","酑𨺗捿𦴣櫊嘑醎畺抅𠏼獏籰𥰡𣳽"],["9fc1","𤤙盖鮝个𠳔莾衂"],["9fc9","届槀僭坺刟巵从氱𠇲伹咜哚劚趂㗾弌㗳"],["9fdb","歒酼龥鮗頮颴骺麨麄煺笔"],["9fe7","毺蠘罸"],["9feb","嘠𪙊蹷齓"],["9ff0","跔蹏鸜踁抂𨍽踨蹵竓𤩷稾磘泪詧瘇"],["a040","𨩚鼦泎蟖痃𪊲硓咢贌狢獱謭猂瓱賫𤪻蘯徺袠䒷"],["a055","𡠻𦸅"],["a058","詾𢔛"],["a05b","惽癧髗鵄鍮鮏蟵"],["a063","蠏賷猬霡鮰㗖犲䰇籑饊𦅙慙䰄麖慽"],["a073","坟慯抦戹拎㩜懢厪𣏵捤栂㗒"],["a0a1","嵗𨯂迚𨸹"],["a0a6","僙𡵆礆匲阸𠼻䁥"],["a0ae","矾"],["a0b0","糂𥼚糚稭聦聣絍甅瓲覔舚朌聢𧒆聛瓰脃眤覉𦟌畓𦻑螩蟎臈螌詉貭譃眫瓸蓚㘵榲趦"],["a0d4","覩瑨涹蟁𤀑瓧㷛煶悤憜㳑煢恷"],["a0e2","罱𨬭牐惩䭾删㰘𣳇𥻗𧙖𥔱𡥄𡋾𩤃𦷜𧂭峁𦆭𨨏𣙷𠃮𦡆𤼎䕢嬟𦍌齐麦𦉫"],["a3c0","␀",31,"␡"],["c6a1","①",9,"⑴",9,"",9,"丶丿亅亠冂冖冫勹匸卩厶夊宀巛⼳广廴彐彡攴无疒癶辵隶¨ˆヽヾゝゞ〃仝々〆〇ー[]✽ぁ",23],["c740","す",58,"ァアィイ"],["c7a1","ゥ",81,"А",5,"ЁЖ",4],["c840","Л",26,"ёж",25,"⇧↸↹㇏𠃌乚𠂊刂䒑"],["c8a1","龰冈龱𧘇"],["c8cd","¬¦'"㈱№℡゛゜⺀⺄⺆⺇⺈⺊⺌⺍⺕⺜⺝⺥⺧⺪⺬⺮⺶⺼⺾⻆⻊⻌⻍⻏⻖⻗⻞⻣"],["c8f5","ʃɐɛɔɵœøŋʊɪ"],["f9fe","■"],["fa40","𠕇鋛𠗟𣿅蕌䊵珯况㙉𤥂𨧤鍄𡧛苮𣳈砼杄拟𤤳𨦪𠊠𦮳𡌅侫𢓭倈𦴩𧪄𣘀𤪱𢔓倩𠍾徤𠎀𠍇滛𠐟偽儁㑺儎顬㝃萖𤦤𠒇兠𣎴兪𠯿𢃼𠋥𢔰𠖎𣈳𡦃宂蝽𠖳𣲙冲冸"],["faa1","鴴凉减凑㳜凓𤪦决凢卂凭菍椾𣜭彻刋刦刼劵剗劔効勅簕蕂勠蘍𦬓包𨫞啉滙𣾀𠥔𣿬匳卄𠯢泋𡜦栛珕恊㺪㣌𡛨燝䒢卭却𨚫卾卿𡖖𡘓矦厓𨪛厠厫厮玧𥝲㽙玜叁叅汉义埾叙㪫𠮏叠𣿫𢶣叶𠱷吓灹唫晗浛呭𦭓𠵴啝咏咤䞦𡜍𠻝㶴𠵍"],["fb40","𨦼𢚘啇䳭启琗喆喩嘅𡣗𤀺䕒𤐵暳𡂴嘷曍𣊊暤暭噍噏磱囱鞇叾圀囯园𨭦㘣𡉏坆𤆥汮炋坂㚱𦱾埦𡐖堃𡑔𤍣堦𤯵塜墪㕡壠壜𡈼壻寿坃𪅐𤉸鏓㖡够梦㛃湙"],["fba1","𡘾娤啓𡚒蔅姉𠵎𦲁𦴪𡟜姙𡟻𡞲𦶦浱𡠨𡛕姹𦹅媫婣㛦𤦩婷㜈媖瑥嫓𦾡𢕔㶅𡤑㜲𡚸広勐孶斈孼𧨎䀄䡝𠈄寕慠𡨴𥧌𠖥寳宝䴐尅𡭄尓珎尔𡲥𦬨屉䣝岅峩峯嶋𡷹𡸷崐崘嵆𡺤岺巗苼㠭𤤁𢁉𢅳芇㠶㯂帮檊幵幺𤒼𠳓厦亷廐厨𡝱帉廴𨒂"],["fc40","廹廻㢠廼栾鐛弍𠇁弢㫞䢮𡌺强𦢈𢏐彘𢑱彣鞽𦹮彲鍀𨨶徧嶶㵟𥉐𡽪𧃸𢙨釖𠊞𨨩怱暅𡡷㥣㷇㘹垐𢞴祱㹀悞悤悳𤦂𤦏𧩓璤僡媠慤萤慂慈𦻒憁凴𠙖憇宪𣾷"],["fca1","𢡟懓𨮝𩥝懐㤲𢦀𢣁怣慜攞掋𠄘担𡝰拕𢸍捬𤧟㨗搸揸𡎎𡟼撐澊𢸶頔𤂌𥜝擡擥鑻㩦携㩗敍漖𤨨𤨣斅敭敟𣁾斵𤥀䬷旑䃘𡠩无旣忟𣐀昘𣇷𣇸晄𣆤𣆥晋𠹵晧𥇦晳晴𡸽𣈱𨗴𣇈𥌓矅𢣷馤朂𤎜𤨡㬫槺𣟂杞杧杢𤇍𩃭柗䓩栢湐鈼栁𣏦𦶠桝"],["fd40","𣑯槡樋𨫟楳棃𣗍椁椀㴲㨁𣘼㮀枬楡𨩊䋼椶榘㮡𠏉荣傐槹𣙙𢄪橅𣜃檝㯳枱櫈𩆜㰍欝𠤣惞欵歴𢟍溵𣫛𠎵𡥘㝀吡𣭚毡𣻼毜氷𢒋𤣱𦭑汚舦汹𣶼䓅𣶽𤆤𤤌𤤀"],["fda1","𣳉㛥㳫𠴲鮃𣇹𢒑羏样𦴥𦶡𦷫涖浜湼漄𤥿𤂅𦹲蔳𦽴凇沜渝萮𨬡港𣸯瑓𣾂秌湏媑𣁋濸㜍澝𣸰滺𡒗𤀽䕕鏰潄潜㵎潴𩅰㴻澟𤅄濓𤂑𤅕𤀹𣿰𣾴𤄿凟𤅖𤅗𤅀𦇝灋灾炧炁烌烕烖烟䄄㷨熴熖𤉷焫煅媈煊煮岜𤍥煏鍢𤋁焬𤑚𤨧𤨢熺𨯨炽爎"],["fe40","鑂爕夑鑃爤鍁𥘅爮牀𤥴梽牕牗㹕𣁄栍漽犂猪猫𤠣𨠫䣭𨠄猨献珏玪𠰺𦨮珉瑉𤇢𡛧𤨤昣㛅𤦷𤦍𤧻珷琕椃𤨦琹𠗃㻗瑜𢢭瑠𨺲瑇珤瑶莹瑬㜰瑴鏱樬璂䥓𤪌"],["fea1","𤅟𤩹𨮏孆𨰃𡢞瓈𡦈甎瓩甞𨻙𡩋寗𨺬鎅畍畊畧畮𤾂㼄𤴓疎瑝疞疴瘂瘬癑癏癯癶𦏵皐臯㟸𦤑𦤎皡皥皷盌𦾟葢𥂝𥅽𡸜眞眦着撯𥈠睘𣊬瞯𨥤𨥨𡛁矴砉𡍶𤨒棊碯磇磓隥礮𥗠磗礴碱𧘌辸袄𨬫𦂃𢘜禆褀椂禀𥡗禝𧬹礼禩渪𧄦㺨秆𩄍秔"]]},293:function(e){e.exports=__webpack_require__(9423)},301:function(e,t,n){"use strict";const r=n(323).fromCallback;const i=n(180);e.exports={remove:r(i),removeSync:i.sync}},304:function(e){e.exports=__webpack_require__(552)},311:function(e,t){t=e.exports=SemVer;var n;if(typeof process==="object"&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)){n=function(){var e=Array.prototype.slice.call(arguments,0);e.unshift("SEMVER");console.log.apply(console,e)}}else{n=function(){}}t.SEMVER_SPEC_VERSION="2.0.0";var r=256;var i=Number.MAX_SAFE_INTEGER||9007199254740991;var o=16;var a=t.re=[];var s=t.src=[];var c=0;var u=c++;s[u]="0|[1-9]\\d*";var l=c++;s[l]="[0-9]+";var f=c++;s[f]="\\d*[a-zA-Z-][a-zA-Z0-9-]*";var p=c++;s[p]="("+s[u]+")\\."+"("+s[u]+")\\."+"("+s[u]+")";var d=c++;s[d]="("+s[l]+")\\."+"("+s[l]+")\\."+"("+s[l]+")";var h=c++;s[h]="(?:"+s[u]+"|"+s[f]+")";var m=c++;s[m]="(?:"+s[l]+"|"+s[f]+")";var v=c++;s[v]="(?:-("+s[h]+"(?:\\."+s[h]+")*))";var g=c++;s[g]="(?:-?("+s[m]+"(?:\\."+s[m]+")*))";var y=c++;s[y]="[0-9A-Za-z-]+";var b=c++;s[b]="(?:\\+("+s[y]+"(?:\\."+s[y]+")*))";var w=c++;var x="v?"+s[p]+s[v]+"?"+s[b]+"?";s[w]="^"+x+"$";var k="[v=\\s]*"+s[d]+s[g]+"?"+s[b]+"?";var j=c++;s[j]="^"+k+"$";var S=c++;s[S]="((?:<|>)?=?)";var E=c++;s[E]=s[l]+"|x|X|\\*";var _=c++;s[_]=s[u]+"|x|X|\\*";var C=c++;s[C]="[v=\\s]*("+s[_]+")"+"(?:\\.("+s[_]+")"+"(?:\\.("+s[_]+")"+"(?:"+s[v]+")?"+s[b]+"?"+")?)?";var A=c++;s[A]="[v=\\s]*("+s[E]+")"+"(?:\\.("+s[E]+")"+"(?:\\.("+s[E]+")"+"(?:"+s[g]+")?"+s[b]+"?"+")?)?";var O=c++;s[O]="^"+s[S]+"\\s*"+s[C]+"$";var F=c++;s[F]="^"+s[S]+"\\s*"+s[A]+"$";var D=c++;s[D]="(?:^|[^\\d])"+"(\\d{1,"+o+"})"+"(?:\\.(\\d{1,"+o+"}))?"+"(?:\\.(\\d{1,"+o+"}))?"+"(?:$|[^\\d])";var T=c++;s[T]="(?:~>?)";var I=c++;s[I]="(\\s*)"+s[T]+"\\s+";a[I]=new RegExp(s[I],"g");var R="$1~";var P=c++;s[P]="^"+s[T]+s[C]+"$";var B=c++;s[B]="^"+s[T]+s[A]+"$";var N=c++;s[N]="(?:\\^)";var z=c++;s[z]="(\\s*)"+s[N]+"\\s+";a[z]=new RegExp(s[z],"g");var L="$1^";var M=c++;s[M]="^"+s[N]+s[C]+"$";var U=c++;s[U]="^"+s[N]+s[A]+"$";var q=c++;s[q]="^"+s[S]+"\\s*("+k+")$|^$";var H=c++;s[H]="^"+s[S]+"\\s*("+x+")$|^$";var G=c++;s[G]="(\\s*)"+s[S]+"\\s*("+k+"|"+s[C]+")";a[G]=new RegExp(s[G],"g");var W="$1$2$3";var V=c++;s[V]="^\\s*("+s[C]+")"+"\\s+-\\s+"+"("+s[C]+")"+"\\s*$";var J=c++;s[J]="^\\s*("+s[A]+")"+"\\s+-\\s+"+"("+s[A]+")"+"\\s*$";var Y=c++;s[Y]="(<|>)?=?\\s*\\*";for(var Z=0;Z<c;Z++){n(Z,s[Z]);if(!a[Z]){a[Z]=new RegExp(s[Z])}}t.parse=parse;function parse(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof SemVer){return e}if(typeof e!=="string"){return null}if(e.length>r){return null}var n=t.loose?a[j]:a[w];if(!n.test(e)){return null}try{return new SemVer(e,t)}catch(e){return null}}t.valid=valid;function valid(e,t){var n=parse(e,t);return n?n.version:null}t.clean=clean;function clean(e,t){var n=parse(e.trim().replace(/^[=v]+/,""),t);return n?n.version:null}t.SemVer=SemVer;function SemVer(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof SemVer){if(e.loose===t.loose){return e}else{e=e.version}}else if(typeof e!=="string"){throw new TypeError("Invalid Version: "+e)}if(e.length>r){throw new TypeError("version is longer than "+r+" characters")}if(!(this instanceof SemVer)){return new SemVer(e,t)}n("SemVer",e,t);this.options=t;this.loose=!!t.loose;var o=e.trim().match(t.loose?a[j]:a[w]);if(!o){throw new TypeError("Invalid Version: "+e)}this.raw=e;this.major=+o[1];this.minor=+o[2];this.patch=+o[3];if(this.major>i||this.major<0){throw new TypeError("Invalid major version")}if(this.minor>i||this.minor<0){throw new TypeError("Invalid minor version")}if(this.patch>i||this.patch<0){throw new TypeError("Invalid patch version")}if(!o[4]){this.prerelease=[]}else{this.prerelease=o[4].split(".").map(function(e){if(/^[0-9]+$/.test(e)){var t=+e;if(t>=0&&t<i){return t}}return e})}this.build=o[5]?o[5].split("."):[];this.format()}SemVer.prototype.format=function(){this.version=this.major+"."+this.minor+"."+this.patch;if(this.prerelease.length){this.version+="-"+this.prerelease.join(".")}return this.version};SemVer.prototype.toString=function(){return this.version};SemVer.prototype.compare=function(e){n("SemVer.compare",this.version,this.options,e);if(!(e instanceof SemVer)){e=new SemVer(e,this.options)}return this.compareMain(e)||this.comparePre(e)};SemVer.prototype.compareMain=function(e){if(!(e instanceof SemVer)){e=new SemVer(e,this.options)}return compareIdentifiers(this.major,e.major)||compareIdentifiers(this.minor,e.minor)||compareIdentifiers(this.patch,e.patch)};SemVer.prototype.comparePre=function(e){if(!(e instanceof SemVer)){e=new SemVer(e,this.options)}if(this.prerelease.length&&!e.prerelease.length){return-1}else if(!this.prerelease.length&&e.prerelease.length){return 1}else if(!this.prerelease.length&&!e.prerelease.length){return 0}var t=0;do{var r=this.prerelease[t];var i=e.prerelease[t];n("prerelease compare",t,r,i);if(r===undefined&&i===undefined){return 0}else if(i===undefined){return 1}else if(r===undefined){return-1}else if(r===i){continue}else{return compareIdentifiers(r,i)}}while(++t)};SemVer.prototype.inc=function(e,t){switch(e){case"premajor":this.prerelease.length=0;this.patch=0;this.minor=0;this.major++;this.inc("pre",t);break;case"preminor":this.prerelease.length=0;this.patch=0;this.minor++;this.inc("pre",t);break;case"prepatch":this.prerelease.length=0;this.inc("patch",t);this.inc("pre",t);break;case"prerelease":if(this.prerelease.length===0){this.inc("patch",t)}this.inc("pre",t);break;case"major":if(this.minor!==0||this.patch!==0||this.prerelease.length===0){this.major++}this.minor=0;this.patch=0;this.prerelease=[];break;case"minor":if(this.patch!==0||this.prerelease.length===0){this.minor++}this.patch=0;this.prerelease=[];break;case"patch":if(this.prerelease.length===0){this.patch++}this.prerelease=[];break;case"pre":if(this.prerelease.length===0){this.prerelease=[0]}else{var n=this.prerelease.length;while(--n>=0){if(typeof this.prerelease[n]==="number"){this.prerelease[n]++;n=-2}}if(n===-1){this.prerelease.push(0)}}if(t){if(this.prerelease[0]===t){if(isNaN(this.prerelease[1])){this.prerelease=[t,0]}}else{this.prerelease=[t,0]}}break;default:throw new Error("invalid increment argument: "+e)}this.format();this.raw=this.version;return this};t.inc=inc;function inc(e,t,n,r){if(typeof n==="string"){r=n;n=undefined}try{return new SemVer(e,n).inc(t,r).version}catch(e){return null}}t.diff=diff;function diff(e,t){if(eq(e,t)){return null}else{var n=parse(e);var r=parse(t);var i="";if(n.prerelease.length||r.prerelease.length){i="pre";var o="prerelease"}for(var a in n){if(a==="major"||a==="minor"||a==="patch"){if(n[a]!==r[a]){return i+a}}}return o}}t.compareIdentifiers=compareIdentifiers;var X=/^[0-9]+$/;function compareIdentifiers(e,t){var n=X.test(e);var r=X.test(t);if(n&&r){e=+e;t=+t}return e===t?0:n&&!r?-1:r&&!n?1:e<t?-1:1}t.rcompareIdentifiers=rcompareIdentifiers;function rcompareIdentifiers(e,t){return compareIdentifiers(t,e)}t.major=major;function major(e,t){return new SemVer(e,t).major}t.minor=minor;function minor(e,t){return new SemVer(e,t).minor}t.patch=patch;function patch(e,t){return new SemVer(e,t).patch}t.compare=compare;function compare(e,t,n){return new SemVer(e,n).compare(new SemVer(t,n))}t.compareLoose=compareLoose;function compareLoose(e,t){return compare(e,t,true)}t.rcompare=rcompare;function rcompare(e,t,n){return compare(t,e,n)}t.sort=sort;function sort(e,n){return e.sort(function(e,r){return t.compare(e,r,n)})}t.rsort=rsort;function rsort(e,n){return e.sort(function(e,r){return t.rcompare(e,r,n)})}t.gt=gt;function gt(e,t,n){return compare(e,t,n)>0}t.lt=lt;function lt(e,t,n){return compare(e,t,n)<0}t.eq=eq;function eq(e,t,n){return compare(e,t,n)===0}t.neq=neq;function neq(e,t,n){return compare(e,t,n)!==0}t.gte=gte;function gte(e,t,n){return compare(e,t,n)>=0}t.lte=lte;function lte(e,t,n){return compare(e,t,n)<=0}t.cmp=cmp;function cmp(e,t,n,r){switch(t){case"===":if(typeof e==="object")e=e.version;if(typeof n==="object")n=n.version;return e===n;case"!==":if(typeof e==="object")e=e.version;if(typeof n==="object")n=n.version;return e!==n;case"":case"=":case"==":return eq(e,n,r);case"!=":return neq(e,n,r);case">":return gt(e,n,r);case">=":return gte(e,n,r);case"<":return lt(e,n,r);case"<=":return lte(e,n,r);default:throw new TypeError("Invalid operator: "+t)}}t.Comparator=Comparator;function Comparator(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof Comparator){if(e.loose===!!t.loose){return e}else{e=e.value}}if(!(this instanceof Comparator)){return new Comparator(e,t)}n("comparator",e,t);this.options=t;this.loose=!!t.loose;this.parse(e);if(this.semver===Q){this.value=""}else{this.value=this.operator+this.semver.version}n("comp",this)}var Q={};Comparator.prototype.parse=function(e){var t=this.options.loose?a[q]:a[H];var n=e.match(t);if(!n){throw new TypeError("Invalid comparator: "+e)}this.operator=n[1];if(this.operator==="="){this.operator=""}if(!n[2]){this.semver=Q}else{this.semver=new SemVer(n[2],this.options.loose)}};Comparator.prototype.toString=function(){return this.value};Comparator.prototype.test=function(e){n("Comparator.test",e,this.options.loose);if(this.semver===Q){return true}if(typeof e==="string"){e=new SemVer(e,this.options)}return cmp(e,this.operator,this.semver,this.options)};Comparator.prototype.intersects=function(e,t){if(!(e instanceof Comparator)){throw new TypeError("a Comparator is required")}if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}var n;if(this.operator===""){n=new Range(e.value,t);return satisfies(this.value,n,t)}else if(e.operator===""){n=new Range(this.value,t);return satisfies(e.semver,n,t)}var r=(this.operator===">="||this.operator===">")&&(e.operator===">="||e.operator===">");var i=(this.operator==="<="||this.operator==="<")&&(e.operator==="<="||e.operator==="<");var o=this.semver.version===e.semver.version;var a=(this.operator===">="||this.operator==="<=")&&(e.operator===">="||e.operator==="<=");var s=cmp(this.semver,"<",e.semver,t)&&((this.operator===">="||this.operator===">")&&(e.operator==="<="||e.operator==="<"));var c=cmp(this.semver,">",e.semver,t)&&((this.operator==="<="||this.operator==="<")&&(e.operator===">="||e.operator===">"));return r||i||o&&a||s||c};t.Range=Range;function Range(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof Range){if(e.loose===!!t.loose&&e.includePrerelease===!!t.includePrerelease){return e}else{return new Range(e.raw,t)}}if(e instanceof Comparator){return new Range(e.value,t)}if(!(this instanceof Range)){return new Range(e,t)}this.options=t;this.loose=!!t.loose;this.includePrerelease=!!t.includePrerelease;this.raw=e;this.set=e.split(/\s*\|\|\s*/).map(function(e){return this.parseRange(e.trim())},this).filter(function(e){return e.length});if(!this.set.length){throw new TypeError("Invalid SemVer Range: "+e)}this.format()}Range.prototype.format=function(){this.range=this.set.map(function(e){return e.join(" ").trim()}).join("||").trim();return this.range};Range.prototype.toString=function(){return this.range};Range.prototype.parseRange=function(e){var t=this.options.loose;e=e.trim();var r=t?a[J]:a[V];e=e.replace(r,hyphenReplace);n("hyphen replace",e);e=e.replace(a[G],W);n("comparator trim",e,a[G]);e=e.replace(a[I],R);e=e.replace(a[z],L);e=e.split(/\s+/).join(" ");var i=t?a[q]:a[H];var o=e.split(" ").map(function(e){return parseComparator(e,this.options)},this).join(" ").split(/\s+/);if(this.options.loose){o=o.filter(function(e){return!!e.match(i)})}o=o.map(function(e){return new Comparator(e,this.options)},this);return o};Range.prototype.intersects=function(e,t){if(!(e instanceof Range)){throw new TypeError("a Range is required")}return this.set.some(function(n){return n.every(function(n){return e.set.some(function(e){return e.every(function(e){return n.intersects(e,t)})})})})};t.toComparators=toComparators;function toComparators(e,t){return new Range(e,t).set.map(function(e){return e.map(function(e){return e.value}).join(" ").trim().split(" ")})}function parseComparator(e,t){n("comp",e,t);e=replaceCarets(e,t);n("caret",e);e=replaceTildes(e,t);n("tildes",e);e=replaceXRanges(e,t);n("xrange",e);e=replaceStars(e,t);n("stars",e);return e}function isX(e){return!e||e.toLowerCase()==="x"||e==="*"}function replaceTildes(e,t){return e.trim().split(/\s+/).map(function(e){return replaceTilde(e,t)}).join(" ")}function replaceTilde(e,t){var r=t.loose?a[B]:a[P];return e.replace(r,function(t,r,i,o,a){n("tilde",e,t,r,i,o,a);var s;if(isX(r)){s=""}else if(isX(i)){s=">="+r+".0.0 <"+(+r+1)+".0.0"}else if(isX(o)){s=">="+r+"."+i+".0 <"+r+"."+(+i+1)+".0"}else if(a){n("replaceTilde pr",a);s=">="+r+"."+i+"."+o+"-"+a+" <"+r+"."+(+i+1)+".0"}else{s=">="+r+"."+i+"."+o+" <"+r+"."+(+i+1)+".0"}n("tilde return",s);return s})}function replaceCarets(e,t){return e.trim().split(/\s+/).map(function(e){return replaceCaret(e,t)}).join(" ")}function replaceCaret(e,t){n("caret",e,t);var r=t.loose?a[U]:a[M];return e.replace(r,function(t,r,i,o,a){n("caret",e,t,r,i,o,a);var s;if(isX(r)){s=""}else if(isX(i)){s=">="+r+".0.0 <"+(+r+1)+".0.0"}else if(isX(o)){if(r==="0"){s=">="+r+"."+i+".0 <"+r+"."+(+i+1)+".0"}else{s=">="+r+"."+i+".0 <"+(+r+1)+".0.0"}}else if(a){n("replaceCaret pr",a);if(r==="0"){if(i==="0"){s=">="+r+"."+i+"."+o+"-"+a+" <"+r+"."+i+"."+(+o+1)}else{s=">="+r+"."+i+"."+o+"-"+a+" <"+r+"."+(+i+1)+".0"}}else{s=">="+r+"."+i+"."+o+"-"+a+" <"+(+r+1)+".0.0"}}else{n("no pr");if(r==="0"){if(i==="0"){s=">="+r+"."+i+"."+o+" <"+r+"."+i+"."+(+o+1)}else{s=">="+r+"."+i+"."+o+" <"+r+"."+(+i+1)+".0"}}else{s=">="+r+"."+i+"."+o+" <"+(+r+1)+".0.0"}}n("caret return",s);return s})}function replaceXRanges(e,t){n("replaceXRanges",e,t);return e.split(/\s+/).map(function(e){return replaceXRange(e,t)}).join(" ")}function replaceXRange(e,t){e=e.trim();var r=t.loose?a[F]:a[O];return e.replace(r,function(t,r,i,o,a,s){n("xRange",e,t,r,i,o,a,s);var c=isX(i);var u=c||isX(o);var l=u||isX(a);var f=l;if(r==="="&&f){r=""}if(c){if(r===">"||r==="<"){t="<0.0.0"}else{t="*"}}else if(r&&f){if(u){o=0}a=0;if(r===">"){r=">=";if(u){i=+i+1;o=0;a=0}else{o=+o+1;a=0}}else if(r==="<="){r="<";if(u){i=+i+1}else{o=+o+1}}t=r+i+"."+o+"."+a}else if(u){t=">="+i+".0.0 <"+(+i+1)+".0.0"}else if(l){t=">="+i+"."+o+".0 <"+i+"."+(+o+1)+".0"}n("xRange return",t);return t})}function replaceStars(e,t){n("replaceStars",e,t);return e.trim().replace(a[Y],"")}function hyphenReplace(e,t,n,r,i,o,a,s,c,u,l,f,p){if(isX(n)){t=""}else if(isX(r)){t=">="+n+".0.0"}else if(isX(i)){t=">="+n+"."+r+".0"}else{t=">="+t}if(isX(c)){s=""}else if(isX(u)){s="<"+(+c+1)+".0.0"}else if(isX(l)){s="<"+c+"."+(+u+1)+".0"}else if(f){s="<="+c+"."+u+"."+l+"-"+f}else{s="<="+s}return(t+" "+s).trim()}Range.prototype.test=function(e){if(!e){return false}if(typeof e==="string"){e=new SemVer(e,this.options)}for(var t=0;t<this.set.length;t++){if(testSet(this.set[t],e,this.options)){return true}}return false};function testSet(e,t,r){for(var i=0;i<e.length;i++){if(!e[i].test(t)){return false}}if(t.prerelease.length&&!r.includePrerelease){for(i=0;i<e.length;i++){n(e[i].semver);if(e[i].semver===Q){continue}if(e[i].semver.prerelease.length>0){var o=e[i].semver;if(o.major===t.major&&o.minor===t.minor&&o.patch===t.patch){return true}}}return false}return true}t.satisfies=satisfies;function satisfies(e,t,n){try{t=new Range(t,n)}catch(e){return false}return t.test(e)}t.maxSatisfying=maxSatisfying;function maxSatisfying(e,t,n){var r=null;var i=null;try{var o=new Range(t,n)}catch(e){return null}e.forEach(function(e){if(o.test(e)){if(!r||i.compare(e)===-1){r=e;i=new SemVer(r,n)}}});return r}t.minSatisfying=minSatisfying;function minSatisfying(e,t,n){var r=null;var i=null;try{var o=new Range(t,n)}catch(e){return null}e.forEach(function(e){if(o.test(e)){if(!r||i.compare(e)===1){r=e;i=new SemVer(r,n)}}});return r}t.minVersion=minVersion;function minVersion(e,t){e=new Range(e,t);var n=new SemVer("0.0.0");if(e.test(n)){return n}n=new SemVer("0.0.0-0");if(e.test(n)){return n}n=null;for(var r=0;r<e.set.length;++r){var i=e.set[r];i.forEach(function(e){var t=new SemVer(e.semver.version);switch(e.operator){case">":if(t.prerelease.length===0){t.patch++}else{t.prerelease.push(0)}t.raw=t.format();case"":case">=":if(!n||gt(n,t)){n=t}break;case"<":case"<=":break;default:throw new Error("Unexpected operation: "+e.operator)}})}if(n&&e.test(n)){return n}return null}t.validRange=validRange;function validRange(e,t){try{return new Range(e,t).range||"*"}catch(e){return null}}t.ltr=ltr;function ltr(e,t,n){return outside(e,t,"<",n)}t.gtr=gtr;function gtr(e,t,n){return outside(e,t,">",n)}t.outside=outside;function outside(e,t,n,r){e=new SemVer(e,r);t=new Range(t,r);var i,o,a,s,c;switch(n){case">":i=gt;o=lte;a=lt;s=">";c=">=";break;case"<":i=lt;o=gte;a=gt;s="<";c="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(satisfies(e,t,r)){return false}for(var u=0;u<t.set.length;++u){var l=t.set[u];var f=null;var p=null;l.forEach(function(e){if(e.semver===Q){e=new Comparator(">=0.0.0")}f=f||e;p=p||e;if(i(e.semver,f.semver,r)){f=e}else if(a(e.semver,p.semver,r)){p=e}});if(f.operator===s||f.operator===c){return false}if((!p.operator||p.operator===s)&&o(e,p.semver)){return false}else if(p.operator===c&&a(e,p.semver)){return false}}return true}t.prerelease=prerelease;function prerelease(e,t){var n=parse(e,t);return n&&n.prerelease.length?n.prerelease:null}t.intersects=intersects;function intersects(e,t,n){e=new Range(e,n);t=new Range(t,n);return e.intersects(t)}t.coerce=coerce;function coerce(e){if(e instanceof SemVer){return e}if(typeof e!=="string"){return null}var t=e.match(a[D]);if(t==null){return null}return parse(t[1]+"."+(t[2]||"0")+"."+(t[3]||"0"))}},322:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(357));const o=r(n(43));const a=n(849);const s=n(410);const c=n(629);const u=r(n(510));class Lambda{constructor({zipBuffer:e,handler:t,runtime:n,environment:r}){this.type="Lambda";this.zipBuffer=e;this.handler=t;this.runtime=n;this.environment=r}}t.Lambda=Lambda;const l=new o.default(10);const f=new Date(154e10);async function createLambda({files:e,handler:t,runtime:n,environment:r={}}){i.default(typeof e==="object",'"files" must be an object');i.default(typeof t==="string",'"handler" is not a string');i.default(typeof n==="string",'"runtime" is not a string');i.default(typeof r==="object",'"environment" is not an object');await l.acquire();try{const i=await createZip(e);return new Lambda({zipBuffer:i,handler:t,runtime:n,environment:r})}finally{l.release()}}t.createLambda=createLambda;async function createZip(e){const t=Object.keys(e).sort();const n=new Map;for(const r of t){const t=e[r];if(t.mode&&c.isSymbolicLink(t.mode)&&t.type==="FileFsRef"){const e=await s.readlink(t.fsPath);n.set(r,e)}}const r=new a.ZipFile;const i=await new Promise((i,o)=>{for(const i of t){const t=e[i];const a={mode:t.mode,mtime:f};const s=n.get(i);if(typeof s==="string"){r.addBuffer(Buffer.from(s,"utf8"),i,a)}else{const e=t.toStream();e.on("error",o);r.addReadStream(e,i,a)}}r.end();u.default(r.outputStream).then(i).catch(o)});return i}t.createZip=createZip},323:function(e,t){"use strict";t.fromCallback=function(e){return Object.defineProperty(function(){if(typeof arguments[arguments.length-1]==="function")e.apply(this,arguments);else{return new Promise((t,n)=>{arguments[arguments.length]=((e,r)=>{if(e)return n(e);t(r)});arguments.length++;e.apply(this,arguments)})}},"name",{value:e.name})};t.fromPromise=function(e){return Object.defineProperty(function(){const t=arguments[arguments.length-1];if(typeof t!=="function")return e.apply(this,arguments);else e.apply(this,arguments).then(e=>t(null,e),t)},"name",{value:e.name})}},328:function(e,t,n){"use strict";const r=n(663);const i=n(766);const o=e=>{if(Array.isArray(e)){e=e.slice()}let t;let n;prepare(e);function prepare(r){e=r;if(e instanceof ArrayBuffer||ArrayBuffer.isView(e)&&!Buffer.isBuffer(e)){e=Buffer.from(e)}t=i(e)?e:null;const o=!t&&e[Symbol.iterator]&&typeof e!=="string"&&!Buffer.isBuffer(e);n=o?e[Symbol.iterator]():null}return r(function reader(r,i){if(t){(async()=>{try{await prepare(await t);reader.call(this,r,i)}catch(e){i(e)}})();return}if(n){const e=n.next();setImmediate(i,null,e.done?null:e.value);return}if(e.length===0){setImmediate(i,null,null);return}const o=e.slice(0,r);e=e.slice(r);setImmediate(i,null,o)})};e.exports=o;e.exports.default=o;e.exports.object=(e=>{if(Array.isArray(e)){e=e.slice()}let t;let n;prepare(e);function prepare(r){e=r;t=i(e)?e:null;n=!t&&e[Symbol.iterator]?e[Symbol.iterator]():null}return r.obj(function reader(r,i){if(t){(async()=>{try{await prepare(await t);reader.call(this,r,i)}catch(e){i(e)}})();return}if(n){const e=n.next();setImmediate(i,null,e.done?null:e.value);return}this.push(e);setImmediate(i,null,null)})})},346:function(e,t,n){var r=n(174);var i=Object.create(null);var o=n(538);e.exports=r(inflight);function inflight(e,t){if(i[e]){i[e].push(t);return null}else{i[e]=[t];return makeres(e)}}function makeres(e){return o(function RES(){var t=i[e];var n=t.length;var r=slice(arguments);try{for(var o=0;o<n;o++){t[o].apply(null,r)}}finally{if(t.length>n){t.splice(0,n);process.nextTick(function(){RES.apply(null,r)})}else{delete i[e]}}})}function slice(e){var t=e.length;var n=[];for(var r=0;r<t;r++)n[r]=e[r];return n}},351:function(e,t,n){"use strict";const r=n(323).fromCallback;const i=n(622);const o=n(729);const a=n(648);const s=a.mkdirs;const c=a.mkdirsSync;const u=n(383);const l=u.symlinkPaths;const f=u.symlinkPathsSync;const p=n(517);const d=p.symlinkType;const h=p.symlinkTypeSync;const m=n(370).pathExists;function createSymlink(e,t,n,r){r=typeof n==="function"?n:r;n=typeof n==="function"?false:n;m(t,(a,c)=>{if(a)return r(a);if(c)return r(null);l(e,t,(a,c)=>{if(a)return r(a);e=c.toDst;d(c.toCwd,n,(n,a)=>{if(n)return r(n);const c=i.dirname(t);m(c,(n,i)=>{if(n)return r(n);if(i)return o.symlink(e,t,a,r);s(c,n=>{if(n)return r(n);o.symlink(e,t,a,r)})})})})})}function createSymlinkSync(e,t,n){const r=o.existsSync(t);if(r)return undefined;const a=f(e,t);e=a.toDst;n=h(a.toCwd,n);const s=i.dirname(t);const u=o.existsSync(s);if(u)return o.symlinkSync(e,t,n);c(s);return o.symlinkSync(e,t,n)}e.exports={createSymlink:r(createSymlink),createSymlinkSync:createSymlinkSync}},357:function(e){e.exports=__webpack_require__(3930)},365:function(e){"use strict";e.exports={10029:"maccenteuro",maccenteuro:{type:"_sbcs",chars:"ÄĀāÉĄÖÜáąČäčĆć鏟ĎíďĒēĖóėôöõúĚěü†°Ę£§•¶ß®©™ę¨≠ģĮįĪ≤≥īĶ∂∑łĻļĽľĹĺŅņѬ√ńŇ∆«»… ňŐÕőŌ–—“”‘’÷◊ōŔŕŘ‹›řŖŗŠ‚„šŚśÁŤťÍŽžŪÓÔūŮÚůŰűŲųÝýķŻŁżĢˇ"},808:"cp808",ibm808:"cp808",cp808:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀рстуфхцчшщъыьэюяЁёЄєЇїЎў°∙·√№€■ "},mik:{type:"_sbcs",chars:"АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмнопрстуфхцчшщъыьэюя└┴┬├─┼╣║╚╔╩╦╠═╬┐░▒▓│┤№§╗╝┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ "},ascii8bit:"ascii",usascii:"ascii",ansix34:"ascii",ansix341968:"ascii",ansix341986:"ascii",csascii:"ascii",cp367:"ascii",ibm367:"ascii",isoir6:"ascii",iso646us:"ascii",iso646irv:"ascii",us:"ascii",latin1:"iso88591",latin2:"iso88592",latin3:"iso88593",latin4:"iso88594",latin5:"iso88599",latin6:"iso885910",latin7:"iso885913",latin8:"iso885914",latin9:"iso885915",latin10:"iso885916",csisolatin1:"iso88591",csisolatin2:"iso88592",csisolatin3:"iso88593",csisolatin4:"iso88594",csisolatincyrillic:"iso88595",csisolatinarabic:"iso88596",csisolatingreek:"iso88597",csisolatinhebrew:"iso88598",csisolatin5:"iso88599",csisolatin6:"iso885910",l1:"iso88591",l2:"iso88592",l3:"iso88593",l4:"iso88594",l5:"iso88599",l6:"iso885910",l7:"iso885913",l8:"iso885914",l9:"iso885915",l10:"iso885916",isoir14:"iso646jp",isoir57:"iso646cn",isoir100:"iso88591",isoir101:"iso88592",isoir109:"iso88593",isoir110:"iso88594",isoir144:"iso88595",isoir127:"iso88596",isoir126:"iso88597",isoir138:"iso88598",isoir148:"iso88599",isoir157:"iso885910",isoir166:"tis620",isoir179:"iso885913",isoir199:"iso885914",isoir203:"iso885915",isoir226:"iso885916",cp819:"iso88591",ibm819:"iso88591",cyrillic:"iso88595",arabic:"iso88596",arabic8:"iso88596",ecma114:"iso88596",asmo708:"iso88596",greek:"iso88597",greek8:"iso88597",ecma118:"iso88597",elot928:"iso88597",hebrew:"iso88598",hebrew8:"iso88598",turkish:"iso88599",turkish8:"iso88599",thai:"iso885911",thai8:"iso885911",celtic:"iso885914",celtic8:"iso885914",isoceltic:"iso885914",tis6200:"tis620",tis62025291:"tis620",tis62025330:"tis620",10000:"macroman",10006:"macgreek",10007:"maccyrillic",10079:"maciceland",10081:"macturkish",cspc8codepage437:"cp437",cspc775baltic:"cp775",cspc850multilingual:"cp850",cspcp852:"cp852",cspc862latinhebrew:"cp862",cpgr:"cp869",msee:"cp1250",mscyrl:"cp1251",msansi:"cp1252",msgreek:"cp1253",msturk:"cp1254",mshebr:"cp1255",msarab:"cp1256",winbaltrim:"cp1257",cp20866:"koi8r",20866:"koi8r",ibm878:"koi8r",cskoi8r:"koi8r",cp21866:"koi8u",21866:"koi8u",ibm1168:"koi8u",strk10482002:"rk1048",tcvn5712:"tcvn",tcvn57121:"tcvn",gb198880:"iso646cn",cn:"iso646cn",csiso14jisc6220ro:"iso646jp",jisc62201969ro:"iso646jp",jp:"iso646jp",cshproman8:"hproman8",r8:"hproman8",roman8:"hproman8",xroman8:"hproman8",ibm1051:"hproman8",mac:"macintosh",csmacintosh:"macintosh"}},366:function(e,t,n){var r=n(413);if(process.env.READABLE_STREAM==="disable"&&r){e.exports=r;t=e.exports=r.Readable;t.Readable=r.Readable;t.Writable=r.Writable;t.Duplex=r.Duplex;t.Transform=r.Transform;t.PassThrough=r.PassThrough;t.Stream=r}else{t=e.exports=n(706);t.Stream=r||t;t.Readable=t;t.Writable=n(860);t.Duplex=n(588);t.Transform=n(169);t.PassThrough=n(498)}},370:function(e,t,n){"use strict";const r=n(323).fromPromise;const i=n(936);function pathExists(e){return i.access(e).then(()=>true).catch(()=>false)}e.exports={pathExists:r(pathExists),pathExistsSync:i.existsSync}},380:function(e,t,n){var r=n(622);var i=process.platform==="win32";var o=n(747);var a=process.env.NODE_DEBUG&&/fs/.test(process.env.NODE_DEBUG);function rethrow(){var e;if(a){var t=new Error;e=debugCallback}else e=missingCallback;return e;function debugCallback(e){if(e){t.message=e.message;e=t;missingCallback(e)}}function missingCallback(e){if(e){if(process.throwDeprecation)throw e;else if(!process.noDeprecation){var t="fs: missing callback "+(e.stack||e.message);if(process.traceDeprecation)console.trace(t);else console.error(t)}}}}function maybeCallback(e){return typeof e==="function"?e:rethrow()}var s=r.normalize;if(i){var c=/(.*?)(?:[\/\\]+|$)/g}else{var c=/(.*?)(?:[\/]+|$)/g}if(i){var u=/^(?:[a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/][^\\\/]+)?[\\\/]*/}else{var u=/^[\/]*/}t.realpathSync=function realpathSync(e,t){e=r.resolve(e);if(t&&Object.prototype.hasOwnProperty.call(t,e)){return t[e]}var n=e,a={},s={};var l;var f;var p;var d;start();function start(){var t=u.exec(e);l=t[0].length;f=t[0];p=t[0];d="";if(i&&!s[p]){o.lstatSync(p);s[p]=true}}while(l<e.length){c.lastIndex=l;var h=c.exec(e);d=f;f+=h[0];p=d+h[1];l=c.lastIndex;if(s[p]||t&&t[p]===p){continue}var m;if(t&&Object.prototype.hasOwnProperty.call(t,p)){m=t[p]}else{var v=o.lstatSync(p);if(!v.isSymbolicLink()){s[p]=true;if(t)t[p]=p;continue}var g=null;if(!i){var y=v.dev.toString(32)+":"+v.ino.toString(32);if(a.hasOwnProperty(y)){g=a[y]}}if(g===null){o.statSync(p);g=o.readlinkSync(p)}m=r.resolve(d,g);if(t)t[p]=m;if(!i)a[y]=g}e=r.resolve(m,e.slice(l));start()}if(t)t[n]=e;return e};t.realpath=function realpath(e,t,n){if(typeof n!=="function"){n=maybeCallback(t);t=null}e=r.resolve(e);if(t&&Object.prototype.hasOwnProperty.call(t,e)){return process.nextTick(n.bind(null,null,t[e]))}var a=e,s={},l={};var f;var p;var d;var h;start();function start(){var t=u.exec(e);f=t[0].length;p=t[0];d=t[0];h="";if(i&&!l[d]){o.lstat(d,function(e){if(e)return n(e);l[d]=true;LOOP()})}else{process.nextTick(LOOP)}}function LOOP(){if(f>=e.length){if(t)t[a]=e;return n(null,e)}c.lastIndex=f;var r=c.exec(e);h=p;p+=r[0];d=h+r[1];f=c.lastIndex;if(l[d]||t&&t[d]===d){return process.nextTick(LOOP)}if(t&&Object.prototype.hasOwnProperty.call(t,d)){return gotResolvedLink(t[d])}return o.lstat(d,gotStat)}function gotStat(e,r){if(e)return n(e);if(!r.isSymbolicLink()){l[d]=true;if(t)t[d]=d;return process.nextTick(LOOP)}if(!i){var a=r.dev.toString(32)+":"+r.ino.toString(32);if(s.hasOwnProperty(a)){return gotTarget(null,s[a],d)}}o.stat(d,function(e){if(e)return n(e);o.readlink(d,function(e,t){if(!i)s[a]=t;gotTarget(e,t)})})}function gotTarget(e,i,o){if(e)return n(e);var a=r.resolve(h,i);if(t)t[o]=a;gotResolvedLink(a)}function gotResolvedLink(t){e=r.resolve(t,e.slice(f));start()}}},383:function(e,t,n){"use strict";const r=n(622);const i=n(729);const o=n(370).pathExists;function symlinkPaths(e,t,n){if(r.isAbsolute(e)){return i.lstat(e,t=>{if(t){t.message=t.message.replace("lstat","ensureSymlink");return n(t)}return n(null,{toCwd:e,toDst:e})})}else{const a=r.dirname(t);const s=r.join(a,e);return o(s,(t,o)=>{if(t)return n(t);if(o){return n(null,{toCwd:s,toDst:e})}else{return i.lstat(e,t=>{if(t){t.message=t.message.replace("lstat","ensureSymlink");return n(t)}return n(null,{toCwd:e,toDst:r.relative(a,e)})})}})}}function symlinkPathsSync(e,t){let n;if(r.isAbsolute(e)){n=i.existsSync(e);if(!n)throw new Error("absolute srcpath does not exist");return{toCwd:e,toDst:e}}else{const o=r.dirname(t);const a=r.join(o,e);n=i.existsSync(a);if(n){return{toCwd:a,toDst:e}}else{n=i.existsSync(e);if(!n)throw new Error("relative srcpath does not exist");return{toCwd:e,toDst:r.relative(o,e)}}}}e.exports={symlinkPaths:symlinkPaths,symlinkPathsSync:symlinkPathsSync}},391:function(e,t){t=e.exports=SemVer;var n;if(typeof process==="object"&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)){n=function(){var e=Array.prototype.slice.call(arguments,0);e.unshift("SEMVER");console.log.apply(console,e)}}else{n=function(){}}t.SEMVER_SPEC_VERSION="2.0.0";var r=256;var i=Number.MAX_SAFE_INTEGER||9007199254740991;var o=16;var a=t.re=[];var s=t.src=[];var c=0;var u=c++;s[u]="0|[1-9]\\d*";var l=c++;s[l]="[0-9]+";var f=c++;s[f]="\\d*[a-zA-Z-][a-zA-Z0-9-]*";var p=c++;s[p]="("+s[u]+")\\."+"("+s[u]+")\\."+"("+s[u]+")";var d=c++;s[d]="("+s[l]+")\\."+"("+s[l]+")\\."+"("+s[l]+")";var h=c++;s[h]="(?:"+s[u]+"|"+s[f]+")";var m=c++;s[m]="(?:"+s[l]+"|"+s[f]+")";var v=c++;s[v]="(?:-("+s[h]+"(?:\\."+s[h]+")*))";var g=c++;s[g]="(?:-?("+s[m]+"(?:\\."+s[m]+")*))";var y=c++;s[y]="[0-9A-Za-z-]+";var b=c++;s[b]="(?:\\+("+s[y]+"(?:\\."+s[y]+")*))";var w=c++;var x="v?"+s[p]+s[v]+"?"+s[b]+"?";s[w]="^"+x+"$";var k="[v=\\s]*"+s[d]+s[g]+"?"+s[b]+"?";var j=c++;s[j]="^"+k+"$";var S=c++;s[S]="((?:<|>)?=?)";var E=c++;s[E]=s[l]+"|x|X|\\*";var _=c++;s[_]=s[u]+"|x|X|\\*";var C=c++;s[C]="[v=\\s]*("+s[_]+")"+"(?:\\.("+s[_]+")"+"(?:\\.("+s[_]+")"+"(?:"+s[v]+")?"+s[b]+"?"+")?)?";var A=c++;s[A]="[v=\\s]*("+s[E]+")"+"(?:\\.("+s[E]+")"+"(?:\\.("+s[E]+")"+"(?:"+s[g]+")?"+s[b]+"?"+")?)?";var O=c++;s[O]="^"+s[S]+"\\s*"+s[C]+"$";var F=c++;s[F]="^"+s[S]+"\\s*"+s[A]+"$";var D=c++;s[D]="(?:^|[^\\d])"+"(\\d{1,"+o+"})"+"(?:\\.(\\d{1,"+o+"}))?"+"(?:\\.(\\d{1,"+o+"}))?"+"(?:$|[^\\d])";var T=c++;s[T]="(?:~>?)";var I=c++;s[I]="(\\s*)"+s[T]+"\\s+";a[I]=new RegExp(s[I],"g");var R="$1~";var P=c++;s[P]="^"+s[T]+s[C]+"$";var B=c++;s[B]="^"+s[T]+s[A]+"$";var N=c++;s[N]="(?:\\^)";var z=c++;s[z]="(\\s*)"+s[N]+"\\s+";a[z]=new RegExp(s[z],"g");var L="$1^";var M=c++;s[M]="^"+s[N]+s[C]+"$";var U=c++;s[U]="^"+s[N]+s[A]+"$";var q=c++;s[q]="^"+s[S]+"\\s*("+k+")$|^$";var H=c++;s[H]="^"+s[S]+"\\s*("+x+")$|^$";var G=c++;s[G]="(\\s*)"+s[S]+"\\s*("+k+"|"+s[C]+")";a[G]=new RegExp(s[G],"g");var W="$1$2$3";var V=c++;s[V]="^\\s*("+s[C]+")"+"\\s+-\\s+"+"("+s[C]+")"+"\\s*$";var J=c++;s[J]="^\\s*("+s[A]+")"+"\\s+-\\s+"+"("+s[A]+")"+"\\s*$";var Y=c++;s[Y]="(<|>)?=?\\s*\\*";for(var Z=0;Z<c;Z++){n(Z,s[Z]);if(!a[Z]){a[Z]=new RegExp(s[Z])}}t.parse=parse;function parse(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof SemVer){return e}if(typeof e!=="string"){return null}if(e.length>r){return null}var n=t.loose?a[j]:a[w];if(!n.test(e)){return null}try{return new SemVer(e,t)}catch(e){return null}}t.valid=valid;function valid(e,t){var n=parse(e,t);return n?n.version:null}t.clean=clean;function clean(e,t){var n=parse(e.trim().replace(/^[=v]+/,""),t);return n?n.version:null}t.SemVer=SemVer;function SemVer(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof SemVer){if(e.loose===t.loose){return e}else{e=e.version}}else if(typeof e!=="string"){throw new TypeError("Invalid Version: "+e)}if(e.length>r){throw new TypeError("version is longer than "+r+" characters")}if(!(this instanceof SemVer)){return new SemVer(e,t)}n("SemVer",e,t);this.options=t;this.loose=!!t.loose;var o=e.trim().match(t.loose?a[j]:a[w]);if(!o){throw new TypeError("Invalid Version: "+e)}this.raw=e;this.major=+o[1];this.minor=+o[2];this.patch=+o[3];if(this.major>i||this.major<0){throw new TypeError("Invalid major version")}if(this.minor>i||this.minor<0){throw new TypeError("Invalid minor version")}if(this.patch>i||this.patch<0){throw new TypeError("Invalid patch version")}if(!o[4]){this.prerelease=[]}else{this.prerelease=o[4].split(".").map(function(e){if(/^[0-9]+$/.test(e)){var t=+e;if(t>=0&&t<i){return t}}return e})}this.build=o[5]?o[5].split("."):[];this.format()}SemVer.prototype.format=function(){this.version=this.major+"."+this.minor+"."+this.patch;if(this.prerelease.length){this.version+="-"+this.prerelease.join(".")}return this.version};SemVer.prototype.toString=function(){return this.version};SemVer.prototype.compare=function(e){n("SemVer.compare",this.version,this.options,e);if(!(e instanceof SemVer)){e=new SemVer(e,this.options)}return this.compareMain(e)||this.comparePre(e)};SemVer.prototype.compareMain=function(e){if(!(e instanceof SemVer)){e=new SemVer(e,this.options)}return compareIdentifiers(this.major,e.major)||compareIdentifiers(this.minor,e.minor)||compareIdentifiers(this.patch,e.patch)};SemVer.prototype.comparePre=function(e){if(!(e instanceof SemVer)){e=new SemVer(e,this.options)}if(this.prerelease.length&&!e.prerelease.length){return-1}else if(!this.prerelease.length&&e.prerelease.length){return 1}else if(!this.prerelease.length&&!e.prerelease.length){return 0}var t=0;do{var r=this.prerelease[t];var i=e.prerelease[t];n("prerelease compare",t,r,i);if(r===undefined&&i===undefined){return 0}else if(i===undefined){return 1}else if(r===undefined){return-1}else if(r===i){continue}else{return compareIdentifiers(r,i)}}while(++t)};SemVer.prototype.compareBuild=function(e){if(!(e instanceof SemVer)){e=new SemVer(e,this.options)}var t=0;do{var r=this.build[t];var i=e.build[t];n("prerelease compare",t,r,i);if(r===undefined&&i===undefined){return 0}else if(i===undefined){return 1}else if(r===undefined){return-1}else if(r===i){continue}else{return compareIdentifiers(r,i)}}while(++t)};SemVer.prototype.inc=function(e,t){switch(e){case"premajor":this.prerelease.length=0;this.patch=0;this.minor=0;this.major++;this.inc("pre",t);break;case"preminor":this.prerelease.length=0;this.patch=0;this.minor++;this.inc("pre",t);break;case"prepatch":this.prerelease.length=0;this.inc("patch",t);this.inc("pre",t);break;case"prerelease":if(this.prerelease.length===0){this.inc("patch",t)}this.inc("pre",t);break;case"major":if(this.minor!==0||this.patch!==0||this.prerelease.length===0){this.major++}this.minor=0;this.patch=0;this.prerelease=[];break;case"minor":if(this.patch!==0||this.prerelease.length===0){this.minor++}this.patch=0;this.prerelease=[];break;case"patch":if(this.prerelease.length===0){this.patch++}this.prerelease=[];break;case"pre":if(this.prerelease.length===0){this.prerelease=[0]}else{var n=this.prerelease.length;while(--n>=0){if(typeof this.prerelease[n]==="number"){this.prerelease[n]++;n=-2}}if(n===-1){this.prerelease.push(0)}}if(t){if(this.prerelease[0]===t){if(isNaN(this.prerelease[1])){this.prerelease=[t,0]}}else{this.prerelease=[t,0]}}break;default:throw new Error("invalid increment argument: "+e)}this.format();this.raw=this.version;return this};t.inc=inc;function inc(e,t,n,r){if(typeof n==="string"){r=n;n=undefined}try{return new SemVer(e,n).inc(t,r).version}catch(e){return null}}t.diff=diff;function diff(e,t){if(eq(e,t)){return null}else{var n=parse(e);var r=parse(t);var i="";if(n.prerelease.length||r.prerelease.length){i="pre";var o="prerelease"}for(var a in n){if(a==="major"||a==="minor"||a==="patch"){if(n[a]!==r[a]){return i+a}}}return o}}t.compareIdentifiers=compareIdentifiers;var X=/^[0-9]+$/;function compareIdentifiers(e,t){var n=X.test(e);var r=X.test(t);if(n&&r){e=+e;t=+t}return e===t?0:n&&!r?-1:r&&!n?1:e<t?-1:1}t.rcompareIdentifiers=rcompareIdentifiers;function rcompareIdentifiers(e,t){return compareIdentifiers(t,e)}t.major=major;function major(e,t){return new SemVer(e,t).major}t.minor=minor;function minor(e,t){return new SemVer(e,t).minor}t.patch=patch;function patch(e,t){return new SemVer(e,t).patch}t.compare=compare;function compare(e,t,n){return new SemVer(e,n).compare(new SemVer(t,n))}t.compareLoose=compareLoose;function compareLoose(e,t){return compare(e,t,true)}t.compareBuild=compareBuild;function compareBuild(e,t,n){var r=new SemVer(e,n);var i=new SemVer(t,n);return r.compare(i)||r.compareBuild(i)}t.rcompare=rcompare;function rcompare(e,t,n){return compare(t,e,n)}t.sort=sort;function sort(e,n){return e.sort(function(e,r){return t.compareBuild(e,r,n)})}t.rsort=rsort;function rsort(e,n){return e.sort(function(e,r){return t.compareBuild(r,e,n)})}t.gt=gt;function gt(e,t,n){return compare(e,t,n)>0}t.lt=lt;function lt(e,t,n){return compare(e,t,n)<0}t.eq=eq;function eq(e,t,n){return compare(e,t,n)===0}t.neq=neq;function neq(e,t,n){return compare(e,t,n)!==0}t.gte=gte;function gte(e,t,n){return compare(e,t,n)>=0}t.lte=lte;function lte(e,t,n){return compare(e,t,n)<=0}t.cmp=cmp;function cmp(e,t,n,r){switch(t){case"===":if(typeof e==="object")e=e.version;if(typeof n==="object")n=n.version;return e===n;case"!==":if(typeof e==="object")e=e.version;if(typeof n==="object")n=n.version;return e!==n;case"":case"=":case"==":return eq(e,n,r);case"!=":return neq(e,n,r);case">":return gt(e,n,r);case">=":return gte(e,n,r);case"<":return lt(e,n,r);case"<=":return lte(e,n,r);default:throw new TypeError("Invalid operator: "+t)}}t.Comparator=Comparator;function Comparator(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof Comparator){if(e.loose===!!t.loose){return e}else{e=e.value}}if(!(this instanceof Comparator)){return new Comparator(e,t)}n("comparator",e,t);this.options=t;this.loose=!!t.loose;this.parse(e);if(this.semver===Q){this.value=""}else{this.value=this.operator+this.semver.version}n("comp",this)}var Q={};Comparator.prototype.parse=function(e){var t=this.options.loose?a[q]:a[H];var n=e.match(t);if(!n){throw new TypeError("Invalid comparator: "+e)}this.operator=n[1]!==undefined?n[1]:"";if(this.operator==="="){this.operator=""}if(!n[2]){this.semver=Q}else{this.semver=new SemVer(n[2],this.options.loose)}};Comparator.prototype.toString=function(){return this.value};Comparator.prototype.test=function(e){n("Comparator.test",e,this.options.loose);if(this.semver===Q||e===Q){return true}if(typeof e==="string"){e=new SemVer(e,this.options)}return cmp(e,this.operator,this.semver,this.options)};Comparator.prototype.intersects=function(e,t){if(!(e instanceof Comparator)){throw new TypeError("a Comparator is required")}if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}var n;if(this.operator===""){if(this.value===""){return true}n=new Range(e.value,t);return satisfies(this.value,n,t)}else if(e.operator===""){if(e.value===""){return true}n=new Range(this.value,t);return satisfies(e.semver,n,t)}var r=(this.operator===">="||this.operator===">")&&(e.operator===">="||e.operator===">");var i=(this.operator==="<="||this.operator==="<")&&(e.operator==="<="||e.operator==="<");var o=this.semver.version===e.semver.version;var a=(this.operator===">="||this.operator==="<=")&&(e.operator===">="||e.operator==="<=");var s=cmp(this.semver,"<",e.semver,t)&&((this.operator===">="||this.operator===">")&&(e.operator==="<="||e.operator==="<"));var c=cmp(this.semver,">",e.semver,t)&&((this.operator==="<="||this.operator==="<")&&(e.operator===">="||e.operator===">"));return r||i||o&&a||s||c};t.Range=Range;function Range(e,t){if(!t||typeof t!=="object"){t={loose:!!t,includePrerelease:false}}if(e instanceof Range){if(e.loose===!!t.loose&&e.includePrerelease===!!t.includePrerelease){return e}else{return new Range(e.raw,t)}}if(e instanceof Comparator){return new Range(e.value,t)}if(!(this instanceof Range)){return new Range(e,t)}this.options=t;this.loose=!!t.loose;this.includePrerelease=!!t.includePrerelease;this.raw=e;this.set=e.split(/\s*\|\|\s*/).map(function(e){return this.parseRange(e.trim())},this).filter(function(e){return e.length});if(!this.set.length){throw new TypeError("Invalid SemVer Range: "+e)}this.format()}Range.prototype.format=function(){this.range=this.set.map(function(e){return e.join(" ").trim()}).join("||").trim();return this.range};Range.prototype.toString=function(){return this.range};Range.prototype.parseRange=function(e){var t=this.options.loose;e=e.trim();var r=t?a[J]:a[V];e=e.replace(r,hyphenReplace);n("hyphen replace",e);e=e.replace(a[G],W);n("comparator trim",e,a[G]);e=e.replace(a[I],R);e=e.replace(a[z],L);e=e.split(/\s+/).join(" ");var i=t?a[q]:a[H];var o=e.split(" ").map(function(e){return parseComparator(e,this.options)},this).join(" ").split(/\s+/);if(this.options.loose){o=o.filter(function(e){return!!e.match(i)})}o=o.map(function(e){return new Comparator(e,this.options)},this);return o};Range.prototype.intersects=function(e,t){if(!(e instanceof Range)){throw new TypeError("a Range is required")}return this.set.some(function(n){return isSatisfiable(n,t)&&e.set.some(function(e){return isSatisfiable(e,t)&&n.every(function(n){return e.every(function(e){return n.intersects(e,t)})})})})};function isSatisfiable(e,t){var n=true;var r=e.slice();var i=r.pop();while(n&&r.length){n=r.every(function(e){return i.intersects(e,t)});i=r.pop()}return n}t.toComparators=toComparators;function toComparators(e,t){return new Range(e,t).set.map(function(e){return e.map(function(e){return e.value}).join(" ").trim().split(" ")})}function parseComparator(e,t){n("comp",e,t);e=replaceCarets(e,t);n("caret",e);e=replaceTildes(e,t);n("tildes",e);e=replaceXRanges(e,t);n("xrange",e);e=replaceStars(e,t);n("stars",e);return e}function isX(e){return!e||e.toLowerCase()==="x"||e==="*"}function replaceTildes(e,t){return e.trim().split(/\s+/).map(function(e){return replaceTilde(e,t)}).join(" ")}function replaceTilde(e,t){var r=t.loose?a[B]:a[P];return e.replace(r,function(t,r,i,o,a){n("tilde",e,t,r,i,o,a);var s;if(isX(r)){s=""}else if(isX(i)){s=">="+r+".0.0 <"+(+r+1)+".0.0"}else if(isX(o)){s=">="+r+"."+i+".0 <"+r+"."+(+i+1)+".0"}else if(a){n("replaceTilde pr",a);s=">="+r+"."+i+"."+o+"-"+a+" <"+r+"."+(+i+1)+".0"}else{s=">="+r+"."+i+"."+o+" <"+r+"."+(+i+1)+".0"}n("tilde return",s);return s})}function replaceCarets(e,t){return e.trim().split(/\s+/).map(function(e){return replaceCaret(e,t)}).join(" ")}function replaceCaret(e,t){n("caret",e,t);var r=t.loose?a[U]:a[M];return e.replace(r,function(t,r,i,o,a){n("caret",e,t,r,i,o,a);var s;if(isX(r)){s=""}else if(isX(i)){s=">="+r+".0.0 <"+(+r+1)+".0.0"}else if(isX(o)){if(r==="0"){s=">="+r+"."+i+".0 <"+r+"."+(+i+1)+".0"}else{s=">="+r+"."+i+".0 <"+(+r+1)+".0.0"}}else if(a){n("replaceCaret pr",a);if(r==="0"){if(i==="0"){s=">="+r+"."+i+"."+o+"-"+a+" <"+r+"."+i+"."+(+o+1)}else{s=">="+r+"."+i+"."+o+"-"+a+" <"+r+"."+(+i+1)+".0"}}else{s=">="+r+"."+i+"."+o+"-"+a+" <"+(+r+1)+".0.0"}}else{n("no pr");if(r==="0"){if(i==="0"){s=">="+r+"."+i+"."+o+" <"+r+"."+i+"."+(+o+1)}else{s=">="+r+"."+i+"."+o+" <"+r+"."+(+i+1)+".0"}}else{s=">="+r+"."+i+"."+o+" <"+(+r+1)+".0.0"}}n("caret return",s);return s})}function replaceXRanges(e,t){n("replaceXRanges",e,t);return e.split(/\s+/).map(function(e){return replaceXRange(e,t)}).join(" ")}function replaceXRange(e,t){e=e.trim();var r=t.loose?a[F]:a[O];return e.replace(r,function(t,r,i,o,a,s){n("xRange",e,t,r,i,o,a,s);var c=isX(i);var u=c||isX(o);var l=u||isX(a);var f=l;if(r==="="&&f){r=""}if(c){if(r===">"||r==="<"){t="<0.0.0"}else{t="*"}}else if(r&&f){if(u){o=0}a=0;if(r===">"){r=">=";if(u){i=+i+1;o=0;a=0}else{o=+o+1;a=0}}else if(r==="<="){r="<";if(u){i=+i+1}else{o=+o+1}}t=r+i+"."+o+"."+a}else if(u){t=">="+i+".0.0 <"+(+i+1)+".0.0"}else if(l){t=">="+i+"."+o+".0 <"+i+"."+(+o+1)+".0"}n("xRange return",t);return t})}function replaceStars(e,t){n("replaceStars",e,t);return e.trim().replace(a[Y],"")}function hyphenReplace(e,t,n,r,i,o,a,s,c,u,l,f,p){if(isX(n)){t=""}else if(isX(r)){t=">="+n+".0.0"}else if(isX(i)){t=">="+n+"."+r+".0"}else{t=">="+t}if(isX(c)){s=""}else if(isX(u)){s="<"+(+c+1)+".0.0"}else if(isX(l)){s="<"+c+"."+(+u+1)+".0"}else if(f){s="<="+c+"."+u+"."+l+"-"+f}else{s="<="+s}return(t+" "+s).trim()}Range.prototype.test=function(e){if(!e){return false}if(typeof e==="string"){e=new SemVer(e,this.options)}for(var t=0;t<this.set.length;t++){if(testSet(this.set[t],e,this.options)){return true}}return false};function testSet(e,t,r){for(var i=0;i<e.length;i++){if(!e[i].test(t)){return false}}if(t.prerelease.length&&!r.includePrerelease){for(i=0;i<e.length;i++){n(e[i].semver);if(e[i].semver===Q){continue}if(e[i].semver.prerelease.length>0){var o=e[i].semver;if(o.major===t.major&&o.minor===t.minor&&o.patch===t.patch){return true}}}return false}return true}t.satisfies=satisfies;function satisfies(e,t,n){try{t=new Range(t,n)}catch(e){return false}return t.test(e)}t.maxSatisfying=maxSatisfying;function maxSatisfying(e,t,n){var r=null;var i=null;try{var o=new Range(t,n)}catch(e){return null}e.forEach(function(e){if(o.test(e)){if(!r||i.compare(e)===-1){r=e;i=new SemVer(r,n)}}});return r}t.minSatisfying=minSatisfying;function minSatisfying(e,t,n){var r=null;var i=null;try{var o=new Range(t,n)}catch(e){return null}e.forEach(function(e){if(o.test(e)){if(!r||i.compare(e)===1){r=e;i=new SemVer(r,n)}}});return r}t.minVersion=minVersion;function minVersion(e,t){e=new Range(e,t);var n=new SemVer("0.0.0");if(e.test(n)){return n}n=new SemVer("0.0.0-0");if(e.test(n)){return n}n=null;for(var r=0;r<e.set.length;++r){var i=e.set[r];i.forEach(function(e){var t=new SemVer(e.semver.version);switch(e.operator){case">":if(t.prerelease.length===0){t.patch++}else{t.prerelease.push(0)}t.raw=t.format();case"":case">=":if(!n||gt(n,t)){n=t}break;case"<":case"<=":break;default:throw new Error("Unexpected operation: "+e.operator)}})}if(n&&e.test(n)){return n}return null}t.validRange=validRange;function validRange(e,t){try{return new Range(e,t).range||"*"}catch(e){return null}}t.ltr=ltr;function ltr(e,t,n){return outside(e,t,"<",n)}t.gtr=gtr;function gtr(e,t,n){return outside(e,t,">",n)}t.outside=outside;function outside(e,t,n,r){e=new SemVer(e,r);t=new Range(t,r);var i,o,a,s,c;switch(n){case">":i=gt;o=lte;a=lt;s=">";c=">=";break;case"<":i=lt;o=gte;a=gt;s="<";c="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(satisfies(e,t,r)){return false}for(var u=0;u<t.set.length;++u){var l=t.set[u];var f=null;var p=null;l.forEach(function(e){if(e.semver===Q){e=new Comparator(">=0.0.0")}f=f||e;p=p||e;if(i(e.semver,f.semver,r)){f=e}else if(a(e.semver,p.semver,r)){p=e}});if(f.operator===s||f.operator===c){return false}if((!p.operator||p.operator===s)&&o(e,p.semver)){return false}else if(p.operator===c&&a(e,p.semver)){return false}}return true}t.prerelease=prerelease;function prerelease(e,t){var n=parse(e,t);return n&&n.prerelease.length?n.prerelease:null}t.intersects=intersects;function intersects(e,t,n){e=new Range(e,n);t=new Range(t,n);return e.intersects(t)}t.coerce=coerce;function coerce(e,t){if(e instanceof SemVer){return e}if(typeof e!=="string"){return null}var n=e.match(a[D]);if(n==null){return null}return parse(n[1]+"."+(n[2]||"0")+"."+(n[3]||"0"),t)}},393:function(e,t,n){var r=n(293);var i=r.Buffer;function copyProps(e,t){for(var n in e){t[n]=e[n]}}if(i.from&&i.alloc&&i.allocUnsafe&&i.allocUnsafeSlow){e.exports=r}else{copyProps(r,t);t.Buffer=SafeBuffer}function SafeBuffer(e,t,n){return i(e,t,n)}copyProps(i,SafeBuffer);SafeBuffer.from=function(e,t,n){if(typeof e==="number"){throw new TypeError("Argument must not be a number")}return i(e,t,n)};SafeBuffer.alloc=function(e,t,n){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}var r=i(e);if(t!==undefined){if(typeof n==="string"){r.fill(t,n)}else{r.fill(t)}}else{r.fill(0)}return r};SafeBuffer.allocUnsafe=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return i(e)};SafeBuffer.allocUnsafeSlow=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return r.SlowBuffer(e)}},402:function(e,t,n){"use strict";const r=n(729);const i=n(87);const o=n(622);function hasMillisResSync(){let e=o.join("millis-test-sync"+Date.now().toString()+Math.random().toString().slice(2));e=o.join(i.tmpdir(),e);const t=new Date(1435410243862);r.writeFileSync(e,"https://github.com/jprichardson/node-fs-extra/pull/141");const n=r.openSync(e,"r+");r.futimesSync(n,t,t);r.closeSync(n);return r.statSync(e).mtime>1435410243e3}function hasMillisRes(e){let t=o.join("millis-test"+Date.now().toString()+Math.random().toString().slice(2));t=o.join(i.tmpdir(),t);const n=new Date(1435410243862);r.writeFile(t,"https://github.com/jprichardson/node-fs-extra/pull/141",i=>{if(i)return e(i);r.open(t,"r+",(i,o)=>{if(i)return e(i);r.futimes(o,n,n,n=>{if(n)return e(n);r.close(o,n=>{if(n)return e(n);r.stat(t,(t,n)=>{if(t)return e(t);e(null,n.mtime>1435410243e3)})})})})})}function timeRemoveMillis(e){if(typeof e==="number"){return Math.floor(e/1e3)*1e3}else if(e instanceof Date){return new Date(Math.floor(e.getTime()/1e3)*1e3)}else{throw new Error("fs-extra: timeRemoveMillis() unknown parameter type")}}function utimesMillis(e,t,n,i){r.open(e,"r+",(e,o)=>{if(e)return i(e);r.futimes(o,t,n,e=>{r.close(o,t=>{if(i)i(e||t)})})})}function utimesMillisSync(e,t,n){const i=r.openSync(e,"r+");r.futimesSync(i,t,n);return r.closeSync(i)}e.exports={hasMillisRes:hasMillisRes,hasMillisResSync:hasMillisResSync,timeRemoveMillis:timeRemoveMillis,utimesMillis:utimesMillis,utimesMillisSync:utimesMillisSync}},410:function(e,t,n){"use strict";e.exports=Object.assign({},n(936),n(161),n(758),n(502),n(757),n(742),n(648),n(667),n(192),n(719),n(370),n(301));const r=n(747);if(Object.getOwnPropertyDescriptor(r,"promises")){Object.defineProperty(e.exports,"promises",{get(){return r.promises}})}},413:function(e){e.exports=__webpack_require__(6886)},415:function(e,t,n){e.exports=MultiStream;var r=n(536);var i=n(366);r(MultiStream,i.Readable);function MultiStream(e,t){var n=this;if(!(n instanceof MultiStream))return new MultiStream(e,t);i.Readable.call(n,t);n.destroyed=false;n._drained=false;n._forwarding=false;n._current=null;n._toStreams2=t&&t.objectMode?toStreams2Obj:toStreams2Buf;if(typeof e==="function"){n._queue=e}else{n._queue=e.map(n._toStreams2);n._queue.forEach(function(e){if(typeof e!=="function")n._attachErrorListener(e)})}n._next()}MultiStream.obj=function(e){return new MultiStream(e,{objectMode:true,highWaterMark:16})};MultiStream.prototype._read=function(){this._drained=true;this._forward()};MultiStream.prototype._forward=function(){if(this._forwarding||!this._drained||!this._current)return;this._forwarding=true;var e;while((e=this._current.read())!==null){this._drained=this.push(e)}this._forwarding=false};MultiStream.prototype.destroy=function(e){if(this.destroyed)return;this.destroyed=true;if(this._current&&this._current.destroy)this._current.destroy();if(typeof this._queue!=="function"){this._queue.forEach(function(e){if(e.destroy)e.destroy()})}if(e)this.emit("error",e);this.emit("close")};MultiStream.prototype._next=function(){var e=this;e._current=null;if(typeof e._queue==="function"){e._queue(function(t,n){if(t)return e.destroy(t);n=e._toStreams2(n);e._attachErrorListener(n);e._gotNextStream(n)})}else{var t=e._queue.shift();if(typeof t==="function"){t=e._toStreams2(t());e._attachErrorListener(t)}e._gotNextStream(t)}};MultiStream.prototype._gotNextStream=function(e){var t=this;if(!e){t.push(null);t.destroy();return}t._current=e;t._forward();e.on("readable",onReadable);e.once("end",onEnd);e.once("close",onClose);function onReadable(){t._forward()}function onClose(){if(!e._readableState.ended){t.destroy()}}function onEnd(){t._current=null;e.removeListener("readable",onReadable);e.removeListener("end",onEnd);e.removeListener("close",onClose);t._next()}};MultiStream.prototype._attachErrorListener=function(e){var t=this;if(!e)return;e.once("error",onError);function onError(n){e.removeListener("error",onError);t.destroy(n)}};function toStreams2Obj(e){return toStreams2(e,{objectMode:true,highWaterMark:16})}function toStreams2Buf(e){return toStreams2(e)}function toStreams2(e,t){if(!e||typeof e==="function"||e._readableState)return e;var n=new i.Readable(t).wrap(e);if(e.destroy){n.destroy=e.destroy.bind(e)}return n}},431:function(e){"use strict";function Deque(e){this._capacity=getCapacity(e);this._length=0;this._front=0;if(t(e)){var n=e.length;for(var r=0;r<n;++r){this[r]=e[r]}this._length=n}}Deque.prototype.toArray=function Deque$toArray(){var e=this._length;var t=new Array(e);var n=this._front;var r=this._capacity;for(var i=0;i<e;++i){t[i]=this[n+i&r-1]}return t};Deque.prototype.push=function Deque$push(e){var t=arguments.length;var n=this._length;if(t>1){var r=this._capacity;if(n+t>r){for(var i=0;i<t;++i){this._checkCapacity(n+1);var o=this._front+n&this._capacity-1;this[o]=arguments[i];n++;this._length=n}return n}else{var o=this._front;for(var i=0;i<t;++i){this[o+n&r-1]=arguments[i];o++}this._length=n+t;return n+t}}if(t===0)return n;this._checkCapacity(n+1);var i=this._front+n&this._capacity-1;this[i]=e;this._length=n+1;return n+1};Deque.prototype.pop=function Deque$pop(){var e=this._length;if(e===0){return void 0}var t=this._front+e-1&this._capacity-1;var n=this[t];this[t]=void 0;this._length=e-1;return n};Deque.prototype.shift=function Deque$shift(){var e=this._length;if(e===0){return void 0}var t=this._front;var n=this[t];this[t]=void 0;this._front=t+1&this._capacity-1;this._length=e-1;return n};Deque.prototype.unshift=function Deque$unshift(e){var t=this._length;var n=arguments.length;if(n>1){var r=this._capacity;if(t+n>r){for(var i=n-1;i>=0;i--){this._checkCapacity(t+1);var r=this._capacity;var o=(this._front-1&r-1^r)-r;this[o]=arguments[i];t++;this._length=t;this._front=o}return t}else{var a=this._front;for(var i=n-1;i>=0;i--){var o=(a-1&r-1^r)-r;this[o]=arguments[i];a=o}this._front=a;this._length=t+n;return t+n}}if(n===0)return t;this._checkCapacity(t+1);var r=this._capacity;var i=(this._front-1&r-1^r)-r;this[i]=e;this._length=t+1;this._front=i;return t+1};Deque.prototype.peekBack=function Deque$peekBack(){var e=this._length;if(e===0){return void 0}var t=this._front+e-1&this._capacity-1;return this[t]};Deque.prototype.peekFront=function Deque$peekFront(){if(this._length===0){return void 0}return this[this._front]};Deque.prototype.get=function Deque$get(e){var t=e;if(t!==(t|0)){return void 0}var n=this._length;if(t<0){t=t+n}if(t<0||t>=n){return void 0}return this[this._front+t&this._capacity-1]};Deque.prototype.isEmpty=function Deque$isEmpty(){return this._length===0};Deque.prototype.clear=function Deque$clear(){var e=this._length;var t=this._front;var n=this._capacity;for(var r=0;r<e;++r){this[t+r&n-1]=void 0}this._length=0;this._front=0};Deque.prototype.toString=function Deque$toString(){return this.toArray().toString()};Deque.prototype.valueOf=Deque.prototype.toString;Deque.prototype.removeFront=Deque.prototype.shift;Deque.prototype.removeBack=Deque.prototype.pop;Deque.prototype.insertFront=Deque.prototype.unshift;Deque.prototype.insertBack=Deque.prototype.push;Deque.prototype.enqueue=Deque.prototype.push;Deque.prototype.dequeue=Deque.prototype.shift;Deque.prototype.toJSON=Deque.prototype.toArray;Object.defineProperty(Deque.prototype,"length",{get:function(){return this._length},set:function(){throw new RangeError("")}});Deque.prototype._checkCapacity=function Deque$_checkCapacity(e){if(this._capacity<e){this._resizeTo(getCapacity(this._capacity*1.5+16))}};Deque.prototype._resizeTo=function Deque$_resizeTo(e){var t=this._capacity;this._capacity=e;var n=this._front;var r=this._length;if(n+r>t){var i=n+r&t-1;arrayMove(this,0,this,t,i)}};var t=Array.isArray;function arrayMove(e,t,n,r,i){for(var o=0;o<i;++o){n[o+r]=e[o+t];e[o+t]=void 0}}function pow2AtLeast(e){e=e>>>0;e=e-1;e=e|e>>1;e=e|e>>2;e=e|e>>4;e=e|e>>8;e=e|e>>16;return e+1}function getCapacity(e){if(typeof e!=="number"){if(t(e)){e=e.length}else{return 16}}return pow2AtLeast(Math.min(Math.max(16,e),1073741824))}e.exports=Deque},443:function(e,t,n){e.exports=n(669).deprecate},452:function(e,t,n){"use strict";const r=n(729);const i=n(622);const o=n(868).invalidWin32Path;const a=parseInt("0777",8);function mkdirsSync(e,t,n){if(!t||typeof t!=="object"){t={mode:t}}let s=t.mode;const c=t.fs||r;if(process.platform==="win32"&&o(e)){const t=new Error(e+" contains invalid WIN32 path characters.");t.code="EINVAL";throw t}if(s===undefined){s=a&~process.umask()}if(!n)n=null;e=i.resolve(e);try{c.mkdirSync(e,s);n=n||e}catch(r){if(r.code==="ENOENT"){if(i.dirname(e)===e)throw r;n=mkdirsSync(i.dirname(e),t,n);mkdirsSync(e,t,n)}else{let t;try{t=c.statSync(e)}catch(e){throw r}if(!t.isDirectory())throw r}}return n}e.exports=mkdirsSync},457:function(e,t,n){"use strict";var r=n(603).Buffer;t.utf7=Utf7Codec;t.unicode11utf7="utf7";function Utf7Codec(e,t){this.iconv=t}Utf7Codec.prototype.encoder=Utf7Encoder;Utf7Codec.prototype.decoder=Utf7Decoder;Utf7Codec.prototype.bomAware=true;var i=/[^A-Za-z0-9'\(\),-\.\/:\? \n\r\t]+/g;function Utf7Encoder(e,t){this.iconv=t.iconv}Utf7Encoder.prototype.write=function(e){return r.from(e.replace(i,function(e){return"+"+(e==="+"?"":this.iconv.encode(e,"utf16-be").toString("base64").replace(/=+$/,""))+"-"}.bind(this)))};Utf7Encoder.prototype.end=function(){};function Utf7Decoder(e,t){this.iconv=t.iconv;this.inBase64=false;this.base64Accum=""}var o=/[A-Za-z0-9\/+]/;var a=[];for(var s=0;s<256;s++)a[s]=o.test(String.fromCharCode(s));var c="+".charCodeAt(0),u="-".charCodeAt(0),l="&".charCodeAt(0);Utf7Decoder.prototype.write=function(e){var t="",n=0,i=this.inBase64,o=this.base64Accum;for(var s=0;s<e.length;s++){if(!i){if(e[s]==c){t+=this.iconv.decode(e.slice(n,s),"ascii");n=s+1;i=true}}else{if(!a[e[s]]){if(s==n&&e[s]==u){t+="+"}else{var l=o+e.slice(n,s).toString();t+=this.iconv.decode(r.from(l,"base64"),"utf16-be")}if(e[s]!=u)s--;n=s+1;i=false;o=""}}}if(!i){t+=this.iconv.decode(e.slice(n),"ascii")}else{var l=o+e.slice(n).toString();var f=l.length-l.length%8;o=l.slice(f);l=l.slice(0,f);t+=this.iconv.decode(r.from(l,"base64"),"utf16-be")}this.inBase64=i;this.base64Accum=o;return t};Utf7Decoder.prototype.end=function(){var e="";if(this.inBase64&&this.base64Accum.length>0)e=this.iconv.decode(r.from(this.base64Accum,"base64"),"utf16-be");this.inBase64=false;this.base64Accum="";return e};t.utf7imap=Utf7IMAPCodec;function Utf7IMAPCodec(e,t){this.iconv=t}Utf7IMAPCodec.prototype.encoder=Utf7IMAPEncoder;Utf7IMAPCodec.prototype.decoder=Utf7IMAPDecoder;Utf7IMAPCodec.prototype.bomAware=true;function Utf7IMAPEncoder(e,t){this.iconv=t.iconv;this.inBase64=false;this.base64Accum=r.alloc(6);this.base64AccumIdx=0}Utf7IMAPEncoder.prototype.write=function(e){var t=this.inBase64,n=this.base64Accum,i=this.base64AccumIdx,o=r.alloc(e.length*5+10),a=0;for(var s=0;s<e.length;s++){var c=e.charCodeAt(s);if(32<=c&&c<=126){if(t){if(i>0){a+=o.write(n.slice(0,i).toString("base64").replace(/\//g,",").replace(/=+$/,""),a);i=0}o[a++]=u;t=false}if(!t){o[a++]=c;if(c===l)o[a++]=u}}else{if(!t){o[a++]=l;t=true}if(t){n[i++]=c>>8;n[i++]=c&255;if(i==n.length){a+=o.write(n.toString("base64").replace(/\//g,","),a);i=0}}}}this.inBase64=t;this.base64AccumIdx=i;return o.slice(0,a)};Utf7IMAPEncoder.prototype.end=function(){var e=r.alloc(10),t=0;if(this.inBase64){if(this.base64AccumIdx>0){t+=e.write(this.base64Accum.slice(0,this.base64AccumIdx).toString("base64").replace(/\//g,",").replace(/=+$/,""),t);this.base64AccumIdx=0}e[t++]=u;this.inBase64=false}return e.slice(0,t)};function Utf7IMAPDecoder(e,t){this.iconv=t.iconv;this.inBase64=false;this.base64Accum=""}var f=a.slice();f[",".charCodeAt(0)]=true;Utf7IMAPDecoder.prototype.write=function(e){var t="",n=0,i=this.inBase64,o=this.base64Accum;for(var a=0;a<e.length;a++){if(!i){if(e[a]==l){t+=this.iconv.decode(e.slice(n,a),"ascii");n=a+1;i=true}}else{if(!f[e[a]]){if(a==n&&e[a]==u){t+="&"}else{var s=o+e.slice(n,a).toString().replace(/,/g,"/");t+=this.iconv.decode(r.from(s,"base64"),"utf16-be")}if(e[a]!=u)a--;n=a+1;i=false;o=""}}}if(!i){t+=this.iconv.decode(e.slice(n),"ascii")}else{var s=o+e.slice(n).toString().replace(/,/g,"/");var c=s.length-s.length%8;o=s.slice(c);s=s.slice(0,c);t+=this.iconv.decode(r.from(s,"base64"),"utf16-be")}this.inBase64=i;this.base64Accum=o;return t};Utf7IMAPDecoder.prototype.end=function(){var e="";if(this.inBase64&&this.base64Accum.length>0)e=this.iconv.decode(r.from(this.base64Accum,"base64"),"utf16-be");this.inBase64=false;this.base64Accum="";return e}},458:function(e,t,n){"use strict";const r=n(323).fromCallback;const i=n(914);e.exports={readJson:r(i.readFile),readJsonSync:i.readFileSync,writeJson:r(i.writeFile),writeJsonSync:i.writeFileSync}},466:function(e){e.exports=[["0","\0",127,"€"],["8140","丂丄丅丆丏丒丗丟丠両丣並丩丮丯丱丳丵丷丼乀乁乂乄乆乊乑乕乗乚乛乢乣乤乥乧乨乪",5,"乲乴",9,"乿",6,"亇亊"],["8180","亐亖亗亙亜亝亞亣亪亯亰亱亴亶亷亸亹亼亽亾仈仌仏仐仒仚仛仜仠仢仦仧仩仭仮仯仱仴仸仹仺仼仾伀伂",6,"伋伌伒",4,"伜伝伡伣伨伩伬伭伮伱伳伵伷伹伻伾",4,"佄佅佇",5,"佒佔佖佡佢佦佨佪佫佭佮佱佲併佷佸佹佺佽侀侁侂侅來侇侊侌侎侐侒侓侕侖侘侙侚侜侞侟価侢"],["8240","侤侫侭侰",4,"侶",8,"俀俁係俆俇俈俉俋俌俍俒",4,"俙俛俠俢俤俥俧俫俬俰俲俴俵俶俷俹俻俼俽俿",11],["8280","個倎倐們倓倕倖倗倛倝倞倠倢倣値倧倫倯",10,"倻倽倿偀偁偂偄偅偆偉偊偋偍偐",4,"偖偗偘偙偛偝",7,"偦",5,"偭",8,"偸偹偺偼偽傁傂傃傄傆傇傉傊傋傌傎",20,"傤傦傪傫傭",4,"傳",6,"傼"],["8340","傽",17,"僐",5,"僗僘僙僛",10,"僨僩僪僫僯僰僱僲僴僶",4,"僼",9,"儈"],["8380","儉儊儌",5,"儓",13,"儢",28,"兂兇兊兌兎兏児兒兓兗兘兙兛兝",4,"兣兤兦內兩兪兯兲兺兾兿冃冄円冇冊冋冎冏冐冑冓冔冘冚冝冞冟冡冣冦",4,"冭冮冴冸冹冺冾冿凁凂凃凅凈凊凍凎凐凒",5],["8440","凘凙凚凜凞凟凢凣凥",5,"凬凮凱凲凴凷凾刄刅刉刋刌刏刐刓刔刕刜刞刟刡刢刣別刦刧刪刬刯刱刲刴刵刼刾剄",5,"剋剎剏剒剓剕剗剘"],["8480","剙剚剛剝剟剠剢剣剤剦剨剫剬剭剮剰剱剳",9,"剾劀劃",4,"劉",6,"劑劒劔",6,"劜劤劥劦劧劮劯劰労",9,"勀勁勂勄勅勆勈勊勌勍勎勏勑勓勔動勗務",5,"勠勡勢勣勥",10,"勱",7,"勻勼勽匁匂匃匄匇匉匊匋匌匎"],["8540","匑匒匓匔匘匛匜匞匟匢匤匥匧匨匩匫匬匭匯",9,"匼匽區卂卄卆卋卌卍卐協単卙卛卝卥卨卪卬卭卲卶卹卻卼卽卾厀厁厃厇厈厊厎厏"],["8580","厐",4,"厖厗厙厛厜厞厠厡厤厧厪厫厬厭厯",6,"厷厸厹厺厼厽厾叀參",4,"収叏叐叒叓叕叚叜叝叞叡叢叧叴叺叾叿吀吂吅吇吋吔吘吙吚吜吢吤吥吪吰吳吶吷吺吽吿呁呂呄呅呇呉呌呍呎呏呑呚呝",4,"呣呥呧呩",7,"呴呹呺呾呿咁咃咅咇咈咉咊咍咑咓咗咘咜咞咟咠咡"],["8640","咢咥咮咰咲咵咶咷咹咺咼咾哃哅哊哋哖哘哛哠",4,"哫哬哯哰哱哴",5,"哻哾唀唂唃唄唅唈唊",4,"唒唓唕",5,"唜唝唞唟唡唥唦"],["8680","唨唩唫唭唲唴唵唶唸唹唺唻唽啀啂啅啇啈啋",4,"啑啒啓啔啗",4,"啝啞啟啠啢啣啨啩啫啯",5,"啹啺啽啿喅喆喌喍喎喐喒喓喕喖喗喚喛喞喠",6,"喨",8,"喲喴営喸喺喼喿",4,"嗆嗇嗈嗊嗋嗎嗏嗐嗕嗗",4,"嗞嗠嗢嗧嗩嗭嗮嗰嗱嗴嗶嗸",4,"嗿嘂嘃嘄嘅"],["8740","嘆嘇嘊嘋嘍嘐",7,"嘙嘚嘜嘝嘠嘡嘢嘥嘦嘨嘩嘪嘫嘮嘯嘰嘳嘵嘷嘸嘺嘼嘽嘾噀",11,"噏",4,"噕噖噚噛噝",4],["8780","噣噥噦噧噭噮噯噰噲噳噴噵噷噸噹噺噽",7,"嚇",6,"嚐嚑嚒嚔",14,"嚤",10,"嚰",6,"嚸嚹嚺嚻嚽",12,"囋",8,"囕囖囘囙囜団囥",5,"囬囮囯囲図囶囷囸囻囼圀圁圂圅圇國",6],["8840","園",9,"圝圞圠圡圢圤圥圦圧圫圱圲圴",4,"圼圽圿坁坃坄坅坆坈坉坋坒",4,"坘坙坢坣坥坧坬坮坰坱坲坴坵坸坹坺坽坾坿垀"],["8880","垁垇垈垉垊垍",4,"垔",6,"垜垝垞垟垥垨垪垬垯垰垱垳垵垶垷垹",8,"埄",6,"埌埍埐埑埓埖埗埛埜埞埡埢埣埥",7,"埮埰埱埲埳埵埶執埻埼埾埿堁堃堄堅堈堉堊堌堎堏堐堒堓堔堖堗堘堚堛堜堝堟堢堣堥",4,"堫",4,"報堲堳場堶",7],["8940","堾",5,"塅",6,"塎塏塐塒塓塕塖塗塙",4,"塟",5,"塦",4,"塭",16,"塿墂墄墆墇墈墊墋墌"],["8980","墍",4,"墔",4,"墛墜墝墠",7,"墪",17,"墽墾墿壀壂壃壄壆",10,"壒壓壔壖",13,"壥",5,"壭壯壱売壴壵壷壸壺",7,"夃夅夆夈",4,"夎夐夑夒夓夗夘夛夝夞夠夡夢夣夦夨夬夰夲夳夵夶夻"],["8a40","夽夾夿奀奃奅奆奊奌奍奐奒奓奙奛",4,"奡奣奤奦",12,"奵奷奺奻奼奾奿妀妅妉妋妌妎妏妐妑妔妕妘妚妛妜妝妟妠妡妢妦"],["8a80","妧妬妭妰妱妳",5,"妺妼妽妿",6,"姇姈姉姌姍姎姏姕姖姙姛姞",4,"姤姦姧姩姪姫姭",11,"姺姼姽姾娀娂娊娋娍娎娏娐娒娔娕娖娗娙娚娛娝娞娡娢娤娦娧娨娪",6,"娳娵娷",4,"娽娾娿婁",4,"婇婈婋",9,"婖婗婘婙婛",5],["8b40","婡婣婤婥婦婨婩婫",8,"婸婹婻婼婽婾媀",17,"媓",6,"媜",13,"媫媬"],["8b80","媭",4,"媴媶媷媹",4,"媿嫀嫃",5,"嫊嫋嫍",4,"嫓嫕嫗嫙嫚嫛嫝嫞嫟嫢嫤嫥嫧嫨嫪嫬",4,"嫲",22,"嬊",11,"嬘",25,"嬳嬵嬶嬸",7,"孁",6],["8c40","孈",7,"孒孖孞孠孡孧孨孫孭孮孯孲孴孶孷學孹孻孼孾孿宂宆宊宍宎宐宑宒宔宖実宧宨宩宬宭宮宯宱宲宷宺宻宼寀寁寃寈寉寊寋寍寎寏"],["8c80","寑寔",8,"寠寢寣實寧審",4,"寯寱",6,"寽対尀専尃尅將專尋尌對導尐尒尓尗尙尛尞尟尠尡尣尦尨尩尪尫尭尮尯尰尲尳尵尶尷屃屄屆屇屌屍屒屓屔屖屗屘屚屛屜屝屟屢層屧",6,"屰屲",6,"屻屼屽屾岀岃",4,"岉岊岋岎岏岒岓岕岝",4,"岤",4],["8d40","岪岮岯岰岲岴岶岹岺岻岼岾峀峂峃峅",5,"峌",5,"峓",5,"峚",6,"峢峣峧峩峫峬峮峯峱",9,"峼",4],["8d80","崁崄崅崈",5,"崏",4,"崕崗崘崙崚崜崝崟",4,"崥崨崪崫崬崯",4,"崵",7,"崿",7,"嵈嵉嵍",10,"嵙嵚嵜嵞",10,"嵪嵭嵮嵰嵱嵲嵳嵵",12,"嶃",21,"嶚嶛嶜嶞嶟嶠"],["8e40","嶡",21,"嶸",12,"巆",6,"巎",12,"巜巟巠巣巤巪巬巭"],["8e80","巰巵巶巸",4,"巿帀帄帇帉帊帋帍帎帒帓帗帞",7,"帨",4,"帯帰帲",4,"帹帺帾帿幀幁幃幆",5,"幍",6,"幖",4,"幜幝幟幠幣",14,"幵幷幹幾庁庂広庅庈庉庌庍庎庒庘庛庝庡庢庣庤庨",4,"庮",4,"庴庺庻庼庽庿",6],["8f40","廆廇廈廋",5,"廔廕廗廘廙廚廜",11,"廩廫",8,"廵廸廹廻廼廽弅弆弇弉弌弍弎弐弒弔弖弙弚弜弝弞弡弢弣弤"],["8f80","弨弫弬弮弰弲",6,"弻弽弾弿彁",14,"彑彔彙彚彛彜彞彟彠彣彥彧彨彫彮彯彲彴彵彶彸彺彽彾彿徃徆徍徎徏徑従徔徖徚徛徝從徟徠徢",5,"復徫徬徯",5,"徶徸徹徺徻徾",4,"忇忈忊忋忎忓忔忕忚忛応忞忟忢忣忥忦忨忩忬忯忰忲忳忴忶忷忹忺忼怇"],["9040","怈怉怋怌怐怑怓怗怘怚怞怟怢怣怤怬怭怮怰",4,"怶",4,"怽怾恀恄",6,"恌恎恏恑恓恔恖恗恘恛恜恞恟恠恡恥恦恮恱恲恴恵恷恾悀"],["9080","悁悂悅悆悇悈悊悋悎悏悐悑悓悕悗悘悙悜悞悡悢悤悥悧悩悪悮悰悳悵悶悷悹悺悽",7,"惇惈惉惌",4,"惒惓惔惖惗惙惛惞惡",4,"惪惱惲惵惷惸惻",4,"愂愃愄愅愇愊愋愌愐",4,"愖愗愘愙愛愜愝愞愡愢愥愨愩愪愬",18,"慀",6],["9140","慇慉態慍慏慐慒慓慔慖",6,"慞慟慠慡慣慤慥慦慩",6,"慱慲慳慴慶慸",18,"憌憍憏",4,"憕"],["9180","憖",6,"憞",8,"憪憫憭",9,"憸",5,"憿懀懁懃",4,"應懌",4,"懓懕",16,"懧",13,"懶",8,"戀",5,"戇戉戓戔戙戜戝戞戠戣戦戧戨戩戫戭戯戰戱戲戵戶戸",4,"扂扄扅扆扊"],["9240","扏扐払扖扗扙扚扜",6,"扤扥扨扱扲扴扵扷扸扺扻扽抁抂抃抅抆抇抈抋",5,"抔抙抜抝択抣抦抧抩抪抭抮抯抰抲抳抴抶抷抸抺抾拀拁"],["9280","拃拋拏拑拕拝拞拠拡拤拪拫拰拲拵拸拹拺拻挀挃挄挅挆挊挋挌挍挏挐挒挓挔挕挗挘挙挜挦挧挩挬挭挮挰挱挳",5,"挻挼挾挿捀捁捄捇捈捊捑捒捓捔捖",7,"捠捤捥捦捨捪捫捬捯捰捲捳捴捵捸捹捼捽捾捿掁掃掄掅掆掋掍掑掓掔掕掗掙",6,"採掤掦掫掯掱掲掵掶掹掻掽掿揀"],["9340","揁揂揃揅揇揈揊揋揌揑揓揔揕揗",6,"揟揢揤",4,"揫揬揮揯揰揱揳揵揷揹揺揻揼揾搃搄搆",4,"損搎搑搒搕",5,"搝搟搢搣搤"],["9380","搥搧搨搩搫搮",5,"搵",4,"搻搼搾摀摂摃摉摋",6,"摓摕摖摗摙",4,"摟",7,"摨摪摫摬摮",9,"摻",6,"撃撆撈",8,"撓撔撗撘撚撛撜撝撟",4,"撥撦撧撨撪撫撯撱撲撳撴撶撹撻撽撾撿擁擃擄擆",6,"擏擑擓擔擕擖擙據"],["9440","擛擜擝擟擠擡擣擥擧",24,"攁",7,"攊",7,"攓",4,"攙",8],["9480","攢攣攤攦",4,"攬攭攰攱攲攳攷攺攼攽敀",4,"敆敇敊敋敍敎敐敒敓敔敗敘敚敜敟敠敡敤敥敧敨敩敪敭敮敯敱敳敵敶數",14,"斈斉斊斍斎斏斒斔斕斖斘斚斝斞斠斢斣斦斨斪斬斮斱",7,"斺斻斾斿旀旂旇旈旉旊旍旐旑旓旔旕旘",7,"旡旣旤旪旫"],["9540","旲旳旴旵旸旹旻",4,"昁昄昅昇昈昉昋昍昐昑昒昖昗昘昚昛昜昞昡昢昣昤昦昩昪昫昬昮昰昲昳昷",4,"昽昿晀時晄",6,"晍晎晐晑晘"],["9580","晙晛晜晝晞晠晢晣晥晧晩",4,"晱晲晳晵晸晹晻晼晽晿暀暁暃暅暆暈暉暊暋暍暎暏暐暒暓暔暕暘",4,"暞",8,"暩",4,"暯",4,"暵暶暷暸暺暻暼暽暿",25,"曚曞",7,"曧曨曪",5,"曱曵曶書曺曻曽朁朂會"],["9640","朄朅朆朇朌朎朏朑朒朓朖朘朙朚朜朞朠",5,"朧朩朮朰朲朳朶朷朸朹朻朼朾朿杁杄杅杇杊杋杍杒杔杕杗",4,"杝杢杣杤杦杧杫杬杮東杴杶"],["9680","杸杹杺杻杽枀枂枃枅枆枈枊枌枍枎枏枑枒枓枔枖枙枛枟枠枡枤枦枩枬枮枱枲枴枹",7,"柂柅",9,"柕柖柗柛柟柡柣柤柦柧柨柪柫柭柮柲柵",7,"柾栁栂栃栄栆栍栐栒栔栕栘",4,"栞栟栠栢",6,"栫",6,"栴栵栶栺栻栿桇桋桍桏桒桖",5],["9740","桜桝桞桟桪桬",7,"桵桸",8,"梂梄梇",7,"梐梑梒梔梕梖梘",9,"梣梤梥梩梪梫梬梮梱梲梴梶梷梸"],["9780","梹",6,"棁棃",5,"棊棌棎棏棐棑棓棔棖棗棙棛",4,"棡棢棤",9,"棯棲棳棴棶棷棸棻棽棾棿椀椂椃椄椆",4,"椌椏椑椓",11,"椡椢椣椥",7,"椮椯椱椲椳椵椶椷椸椺椻椼椾楀楁楃",16,"楕楖楘楙楛楜楟"],["9840","楡楢楤楥楧楨楩楪楬業楯楰楲",4,"楺楻楽楾楿榁榃榅榊榋榌榎",5,"榖榗榙榚榝",9,"榩榪榬榮榯榰榲榳榵榶榸榹榺榼榽"],["9880","榾榿槀槂",7,"構槍槏槑槒槓槕",5,"槜槝槞槡",11,"槮槯槰槱槳",9,"槾樀",9,"樋",11,"標",5,"樠樢",5,"権樫樬樭樮樰樲樳樴樶",6,"樿",4,"橅橆橈",7,"橑",6,"橚"],["9940","橜",4,"橢橣橤橦",10,"橲",6,"橺橻橽橾橿檁檂檃檅",8,"檏檒",4,"檘",7,"檡",5],["9980","檧檨檪檭",114,"欥欦欨",6],["9a40","欯欰欱欳欴欵欶欸欻欼欽欿歀歁歂歄歅歈歊歋歍",11,"歚",7,"歨歩歫",13,"歺歽歾歿殀殅殈"],["9a80","殌殎殏殐殑殔殕殗殘殙殜",4,"殢",7,"殫",7,"殶殸",6,"毀毃毄毆",4,"毌毎毐毑毘毚毜",4,"毢",7,"毬毭毮毰毱毲毴毶毷毸毺毻毼毾",6,"氈",4,"氎氒気氜氝氞氠氣氥氫氬氭氱氳氶氷氹氺氻氼氾氿汃汄汅汈汋",4,"汑汒汓汖汘"],["9b40","汙汚汢汣汥汦汧汫",4,"汱汳汵汷汸決汻汼汿沀沄沇沊沋沍沎沑沒沕沖沗沘沚沜沝沞沠沢沨沬沯沰沴沵沶沷沺泀況泂泃泆泇泈泋泍泎泏泑泒泘"],["9b80","泙泚泜泝泟泤泦泧泩泬泭泲泴泹泿洀洂洃洅洆洈洉洊洍洏洐洑洓洔洕洖洘洜洝洟",5,"洦洨洩洬洭洯洰洴洶洷洸洺洿浀浂浄浉浌浐浕浖浗浘浛浝浟浡浢浤浥浧浨浫浬浭浰浱浲浳浵浶浹浺浻浽",4,"涃涄涆涇涊涋涍涏涐涒涖",4,"涜涢涥涬涭涰涱涳涴涶涷涹",5,"淁淂淃淈淉淊"],["9c40","淍淎淏淐淒淓淔淕淗淚淛淜淟淢淣淥淧淨淩淪淭淯淰淲淴淵淶淸淺淽",7,"渆渇済渉渋渏渒渓渕渘渙減渜渞渟渢渦渧渨渪測渮渰渱渳渵"],["9c80","渶渷渹渻",7,"湅",7,"湏湐湑湒湕湗湙湚湜湝湞湠",10,"湬湭湯",14,"満溁溂溄溇溈溊",4,"溑",6,"溙溚溛溝溞溠溡溣溤溦溨溩溫溬溭溮溰溳溵溸溹溼溾溿滀滃滄滅滆滈滉滊滌滍滎滐滒滖滘滙滛滜滝滣滧滪",5],["9d40","滰滱滲滳滵滶滷滸滺",7,"漃漄漅漇漈漊",4,"漐漑漒漖",9,"漡漢漣漥漦漧漨漬漮漰漲漴漵漷",6,"漿潀潁潂"],["9d80","潃潄潅潈潉潊潌潎",9,"潙潚潛潝潟潠潡潣潤潥潧",5,"潯潰潱潳潵潶潷潹潻潽",6,"澅澆澇澊澋澏",12,"澝澞澟澠澢",4,"澨",10,"澴澵澷澸澺",5,"濁濃",5,"濊",6,"濓",10,"濟濢濣濤濥"],["9e40","濦",7,"濰",32,"瀒",7,"瀜",6,"瀤",6],["9e80","瀫",9,"瀶瀷瀸瀺",17,"灍灎灐",13,"灟",11,"灮灱灲灳灴灷灹灺灻災炁炂炃炄炆炇炈炋炌炍炏炐炑炓炗炘炚炛炞",12,"炰炲炴炵炶為炾炿烄烅烆烇烉烋",12,"烚"],["9f40","烜烝烞烠烡烢烣烥烪烮烰",6,"烸烺烻烼烾",10,"焋",4,"焑焒焔焗焛",10,"焧",7,"焲焳焴"],["9f80","焵焷",13,"煆煇煈煉煋煍煏",12,"煝煟",4,"煥煩",4,"煯煰煱煴煵煶煷煹煻煼煾",5,"熅",4,"熋熌熍熎熐熑熒熓熕熖熗熚",4,"熡",6,"熩熪熫熭",5,"熴熶熷熸熺",8,"燄",9,"燏",4],["a040","燖",9,"燡燢燣燤燦燨",5,"燯",9,"燺",11,"爇",19],["a080","爛爜爞",9,"爩爫爭爮爯爲爳爴爺爼爾牀",6,"牉牊牋牎牏牐牑牓牔牕牗牘牚牜牞牠牣牤牥牨牪牫牬牭牰牱牳牴牶牷牸牻牼牽犂犃犅",4,"犌犎犐犑犓",11,"犠",11,"犮犱犲犳犵犺",6,"狅狆狇狉狊狋狌狏狑狓狔狕狖狘狚狛"],["a1a1"," 、。·ˉˇ¨〃々—~‖…‘’“”〔〕〈",7,"〖〗【】±×÷∶∧∨∑∏∪∩∈∷√⊥∥∠⌒⊙∫∮≡≌≈∽∝≠≮≯≤≥∞∵∴♂♀°′″℃$¤¢£‰§№☆★○●◎◇◆□■△▲※→←↑↓〓"],["a2a1","",9],["a2b1","⒈",19,"⑴",19,"①",9],["a2e5","㈠",9],["a2f1","",11],["a3a1","!"#¥%",88," ̄"],["a4a1","ぁ",82],["a5a1","ァ",85],["a6a1","Α",16,"Σ",6],["a6c1","α",16,"σ",6],["a6e0","︵︶︹︺︿﹀︽︾﹁﹂﹃﹄"],["a6ee","︻︼︷︸︱"],["a6f4","︳︴"],["a7a1","А",5,"ЁЖ",25],["a7d1","а",5,"ёж",25],["a840","ˊˋ˙–―‥‵℅℉↖↗↘↙∕∟∣≒≦≧⊿═",35,"▁",6],["a880","█",7,"▓▔▕▼▽◢◣◤◥☉⊕〒〝〞"],["a8a1","āáǎàēéěèīíǐìōóǒòūúǔùǖǘǚǜüêɑ"],["a8bd","ńň"],["a8c0","ɡ"],["a8c5","ㄅ",36],["a940","〡",8,"㊣㎎㎏㎜㎝㎞㎡㏄㏎㏑㏒㏕︰¬¦"],["a959","℡㈱"],["a95c",""],["a960","ー゛゜ヽヾ〆ゝゞ﹉",9,"﹔﹕﹖﹗﹙",8],["a980","﹢",4,"﹨﹩﹪﹫"],["a996",""],["a9a4","─",75],["aa40","狜狝狟狢",5,"狪狫狵狶狹狽狾狿猀猂猄",5,"猋猌猍猏猐猑猒猔猘猙猚猟猠猣猤猦猧猨猭猯猰猲猳猵猶猺猻猼猽獀",8],["aa80","獉獊獋獌獎獏獑獓獔獕獖獘",7,"獡",10,"獮獰獱"],["ab40","獲",11,"獿",4,"玅玆玈玊玌玍玏玐玒玓玔玕玗玘玙玚玜玝玞玠玡玣",5,"玪玬玭玱玴玵玶玸玹玼玽玾玿珁珃",4],["ab80","珋珌珎珒",6,"珚珛珜珝珟珡珢珣珤珦珨珪珫珬珮珯珰珱珳",4],["ac40","珸",10,"琄琇琈琋琌琍琎琑",8,"琜",5,"琣琤琧琩琫琭琯琱琲琷",4,"琽琾琿瑀瑂",11],["ac80","瑎",6,"瑖瑘瑝瑠",12,"瑮瑯瑱",4,"瑸瑹瑺"],["ad40","瑻瑼瑽瑿璂璄璅璆璈璉璊璌璍璏璑",10,"璝璟",7,"璪",15,"璻",12],["ad80","瓈",9,"瓓",8,"瓝瓟瓡瓥瓧",6,"瓰瓱瓲"],["ae40","瓳瓵瓸",6,"甀甁甂甃甅",7,"甎甐甒甔甕甖甗甛甝甞甠",4,"甦甧甪甮甴甶甹甼甽甿畁畂畃畄畆畇畉畊畍畐畑畒畓畕畖畗畘"],["ae80","畝",7,"畧畨畩畫",6,"畳畵當畷畺",4,"疀疁疂疄疅疇"],["af40","疈疉疊疌疍疎疐疓疕疘疛疜疞疢疦",4,"疭疶疷疺疻疿痀痁痆痋痌痎痏痐痑痓痗痙痚痜痝痟痠痡痥痩痬痭痮痯痲痳痵痶痷痸痺痻痽痾瘂瘄瘆瘇"],["af80","瘈瘉瘋瘍瘎瘏瘑瘒瘓瘔瘖瘚瘜瘝瘞瘡瘣瘧瘨瘬瘮瘯瘱瘲瘶瘷瘹瘺瘻瘽癁療癄"],["b040","癅",6,"癎",5,"癕癗",4,"癝癟癠癡癢癤",6,"癬癭癮癰",7,"癹発發癿皀皁皃皅皉皊皌皍皏皐皒皔皕皗皘皚皛"],["b080","皜",7,"皥",8,"皯皰皳皵",9,"盀盁盃啊阿埃挨哎唉哀皑癌蔼矮艾碍爱隘鞍氨安俺按暗岸胺案肮昂盎凹敖熬翱袄傲奥懊澳芭捌扒叭吧笆八疤巴拔跋靶把耙坝霸罢爸白柏百摆佰败拜稗斑班搬扳般颁板版扮拌伴瓣半办绊邦帮梆榜膀绑棒磅蚌镑傍谤苞胞包褒剥"],["b140","盄盇盉盋盌盓盕盙盚盜盝盞盠",4,"盦",7,"盰盳盵盶盷盺盻盽盿眀眂眃眅眆眊県眎",10,"眛眜眝眞眡眣眤眥眧眪眫"],["b180","眬眮眰",4,"眹眻眽眾眿睂睄睅睆睈",7,"睒",7,"睜薄雹保堡饱宝抱报暴豹鲍爆杯碑悲卑北辈背贝钡倍狈备惫焙被奔苯本笨崩绷甭泵蹦迸逼鼻比鄙笔彼碧蓖蔽毕毙毖币庇痹闭敝弊必辟壁臂避陛鞭边编贬扁便变卞辨辩辫遍标彪膘表鳖憋别瘪彬斌濒滨宾摈兵冰柄丙秉饼炳"],["b240","睝睞睟睠睤睧睩睪睭",11,"睺睻睼瞁瞂瞃瞆",5,"瞏瞐瞓",11,"瞡瞣瞤瞦瞨瞫瞭瞮瞯瞱瞲瞴瞶",4],["b280","瞼瞾矀",12,"矎",8,"矘矙矚矝",4,"矤病并玻菠播拨钵波博勃搏铂箔伯帛舶脖膊渤泊驳捕卜哺补埠不布步簿部怖擦猜裁材才财睬踩采彩菜蔡餐参蚕残惭惨灿苍舱仓沧藏操糙槽曹草厕策侧册测层蹭插叉茬茶查碴搽察岔差诧拆柴豺搀掺蝉馋谗缠铲产阐颤昌猖"],["b340","矦矨矪矯矰矱矲矴矵矷矹矺矻矼砃",5,"砊砋砎砏砐砓砕砙砛砞砠砡砢砤砨砪砫砮砯砱砲砳砵砶砽砿硁硂硃硄硆硈硉硊硋硍硏硑硓硔硘硙硚"],["b380","硛硜硞",11,"硯",7,"硸硹硺硻硽",6,"场尝常长偿肠厂敞畅唱倡超抄钞朝嘲潮巢吵炒车扯撤掣彻澈郴臣辰尘晨忱沉陈趁衬撑称城橙成呈乘程惩澄诚承逞骋秤吃痴持匙池迟弛驰耻齿侈尺赤翅斥炽充冲虫崇宠抽酬畴踌稠愁筹仇绸瞅丑臭初出橱厨躇锄雏滁除楚"],["b440","碄碅碆碈碊碋碏碐碒碔碕碖碙碝碞碠碢碤碦碨",7,"碵碶碷碸確碻碼碽碿磀磂磃磄磆磇磈磌磍磎磏磑磒磓磖磗磘磚",9],["b480","磤磥磦磧磩磪磫磭",4,"磳磵磶磸磹磻",5,"礂礃礄礆",6,"础储矗搐触处揣川穿椽传船喘串疮窗幢床闯创吹炊捶锤垂春椿醇唇淳纯蠢戳绰疵茨磁雌辞慈瓷词此刺赐次聪葱囱匆从丛凑粗醋簇促蹿篡窜摧崔催脆瘁粹淬翠村存寸磋撮搓措挫错搭达答瘩打大呆歹傣戴带殆代贷袋待逮"],["b540","礍",5,"礔",9,"礟",4,"礥",14,"礵",4,"礽礿祂祃祄祅祇祊",8,"祔祕祘祙祡祣"],["b580","祤祦祩祪祫祬祮祰",6,"祹祻",4,"禂禃禆禇禈禉禋禌禍禎禐禑禒怠耽担丹单郸掸胆旦氮但惮淡诞弹蛋当挡党荡档刀捣蹈倒岛祷导到稻悼道盗德得的蹬灯登等瞪凳邓堤低滴迪敌笛狄涤翟嫡抵底地蒂第帝弟递缔颠掂滇碘点典靛垫电佃甸店惦奠淀殿碉叼雕凋刁掉吊钓调跌爹碟蝶迭谍叠"],["b640","禓",6,"禛",11,"禨",10,"禴",4,"禼禿秂秄秅秇秈秊秌秎秏秐秓秔秖秗秙",5,"秠秡秢秥秨秪"],["b680","秬秮秱",6,"秹秺秼秾秿稁稄稅稇稈稉稊稌稏",4,"稕稖稘稙稛稜丁盯叮钉顶鼎锭定订丢东冬董懂动栋侗恫冻洞兜抖斗陡豆逗痘都督毒犊独读堵睹赌杜镀肚度渡妒端短锻段断缎堆兑队对墩吨蹲敦顿囤钝盾遁掇哆多夺垛躲朵跺舵剁惰堕蛾峨鹅俄额讹娥恶厄扼遏鄂饿恩而儿耳尔饵洱二"],["b740","稝稟稡稢稤",14,"稴稵稶稸稺稾穀",5,"穇",9,"穒",4,"穘",16],["b780","穩",6,"穱穲穳穵穻穼穽穾窂窅窇窉窊窋窌窎窏窐窓窔窙窚窛窞窡窢贰发罚筏伐乏阀法珐藩帆番翻樊矾钒繁凡烦反返范贩犯饭泛坊芳方肪房防妨仿访纺放菲非啡飞肥匪诽吠肺废沸费芬酚吩氛分纷坟焚汾粉奋份忿愤粪丰封枫蜂峰锋风疯烽逢冯缝讽奉凤佛否夫敷肤孵扶拂辐幅氟符伏俘服"],["b840","窣窤窧窩窪窫窮",4,"窴",10,"竀",10,"竌",9,"竗竘竚竛竜竝竡竢竤竧",5,"竮竰竱竲竳"],["b880","竴",4,"竻竼竾笀笁笂笅笇笉笌笍笎笐笒笓笖笗笘笚笜笝笟笡笢笣笧笩笭浮涪福袱弗甫抚辅俯釜斧脯腑府腐赴副覆赋复傅付阜父腹负富讣附妇缚咐噶嘎该改概钙盖溉干甘杆柑竿肝赶感秆敢赣冈刚钢缸肛纲岗港杠篙皋高膏羔糕搞镐稿告哥歌搁戈鸽胳疙割革葛格蛤阁隔铬个各给根跟耕更庚羹"],["b940","笯笰笲笴笵笶笷笹笻笽笿",5,"筆筈筊筍筎筓筕筗筙筜筞筟筡筣",10,"筯筰筳筴筶筸筺筼筽筿箁箂箃箄箆",6,"箎箏"],["b980","箑箒箓箖箘箙箚箛箞箟箠箣箤箥箮箯箰箲箳箵箶箷箹",7,"篂篃範埂耿梗工攻功恭龚供躬公宫弓巩汞拱贡共钩勾沟苟狗垢构购够辜菇咕箍估沽孤姑鼓古蛊骨谷股故顾固雇刮瓜剐寡挂褂乖拐怪棺关官冠观管馆罐惯灌贯光广逛瑰规圭硅归龟闺轨鬼诡癸桂柜跪贵刽辊滚棍锅郭国果裹过哈"],["ba40","篅篈築篊篋篍篎篏篐篒篔",4,"篛篜篞篟篠篢篣篤篧篨篩篫篬篭篯篰篲",4,"篸篹篺篻篽篿",7,"簈簉簊簍簎簐",5,"簗簘簙"],["ba80","簚",4,"簠",5,"簨簩簫",12,"簹",5,"籂骸孩海氦亥害骇酣憨邯韩含涵寒函喊罕翰撼捍旱憾悍焊汗汉夯杭航壕嚎豪毫郝好耗号浩呵喝荷菏核禾和何合盒貉阂河涸赫褐鹤贺嘿黑痕很狠恨哼亨横衡恒轰哄烘虹鸿洪宏弘红喉侯猴吼厚候后呼乎忽瑚壶葫胡蝴狐糊湖"],["bb40","籃",9,"籎",36,"籵",5,"籾",9],["bb80","粈粊",6,"粓粔粖粙粚粛粠粡粣粦粧粨粩粫粬粭粯粰粴",4,"粺粻弧虎唬护互沪户花哗华猾滑画划化话槐徊怀淮坏欢环桓还缓换患唤痪豢焕涣宦幻荒慌黄磺蝗簧皇凰惶煌晃幌恍谎灰挥辉徽恢蛔回毁悔慧卉惠晦贿秽会烩汇讳诲绘荤昏婚魂浑混豁活伙火获或惑霍货祸击圾基机畸稽积箕"],["bc40","粿糀糂糃糄糆糉糋糎",6,"糘糚糛糝糞糡",6,"糩",5,"糰",7,"糹糺糼",13,"紋",5],["bc80","紑",14,"紡紣紤紥紦紨紩紪紬紭紮細",6,"肌饥迹激讥鸡姬绩缉吉极棘辑籍集及急疾汲即嫉级挤几脊己蓟技冀季伎祭剂悸济寄寂计记既忌际妓继纪嘉枷夹佳家加荚颊贾甲钾假稼价架驾嫁歼监坚尖笺间煎兼肩艰奸缄茧检柬碱硷拣捡简俭剪减荐槛鉴践贱见键箭件"],["bd40","紷",54,"絯",7],["bd80","絸",32,"健舰剑饯渐溅涧建僵姜将浆江疆蒋桨奖讲匠酱降蕉椒礁焦胶交郊浇骄娇嚼搅铰矫侥脚狡角饺缴绞剿教酵轿较叫窖揭接皆秸街阶截劫节桔杰捷睫竭洁结解姐戒藉芥界借介疥诫届巾筋斤金今津襟紧锦仅谨进靳晋禁近烬浸"],["be40","継",12,"綧",6,"綯",42],["be80","線",32,"尽劲荆兢茎睛晶鲸京惊精粳经井警景颈静境敬镜径痉靖竟竞净炯窘揪究纠玖韭久灸九酒厩救旧臼舅咎就疚鞠拘狙疽居驹菊局咀矩举沮聚拒据巨具距踞锯俱句惧炬剧捐鹃娟倦眷卷绢撅攫抉掘倔爵觉决诀绝均菌钧军君峻"],["bf40","緻",62],["bf80","縺縼",4,"繂",4,"繈",21,"俊竣浚郡骏喀咖卡咯开揩楷凯慨刊堪勘坎砍看康慷糠扛抗亢炕考拷烤靠坷苛柯棵磕颗科壳咳可渴克刻客课肯啃垦恳坑吭空恐孔控抠口扣寇枯哭窟苦酷库裤夸垮挎跨胯块筷侩快宽款匡筐狂框矿眶旷况亏盔岿窥葵奎魁傀"],["c040","繞",35,"纃",23,"纜纝纞"],["c080","纮纴纻纼绖绤绬绹缊缐缞缷缹缻",6,"罃罆",9,"罒罓馈愧溃坤昆捆困括扩廓阔垃拉喇蜡腊辣啦莱来赖蓝婪栏拦篮阑兰澜谰揽览懒缆烂滥琅榔狼廊郎朗浪捞劳牢老佬姥酪烙涝勒乐雷镭蕾磊累儡垒擂肋类泪棱楞冷厘梨犁黎篱狸离漓理李里鲤礼莉荔吏栗丽厉励砾历利傈例俐"],["c140","罖罙罛罜罝罞罠罣",4,"罫罬罭罯罰罳罵罶罷罸罺罻罼罽罿羀羂",7,"羋羍羏",4,"羕",4,"羛羜羠羢羣羥羦羨",6,"羱"],["c180","羳",4,"羺羻羾翀翂翃翄翆翇翈翉翋翍翏",4,"翖翗翙",5,"翢翣痢立粒沥隶力璃哩俩联莲连镰廉怜涟帘敛脸链恋炼练粮凉梁粱良两辆量晾亮谅撩聊僚疗燎寥辽潦了撂镣廖料列裂烈劣猎琳林磷霖临邻鳞淋凛赁吝拎玲菱零龄铃伶羚凌灵陵岭领另令溜琉榴硫馏留刘瘤流柳六龙聋咙笼窿"],["c240","翤翧翨翪翫翬翭翯翲翴",6,"翽翾翿耂耇耈耉耊耎耏耑耓耚耛耝耞耟耡耣耤耫",5,"耲耴耹耺耼耾聀聁聄聅聇聈聉聎聏聐聑聓聕聖聗"],["c280","聙聛",13,"聫",5,"聲",11,"隆垄拢陇楼娄搂篓漏陋芦卢颅庐炉掳卤虏鲁麓碌露路赂鹿潞禄录陆戮驴吕铝侣旅履屡缕虑氯律率滤绿峦挛孪滦卵乱掠略抡轮伦仑沦纶论萝螺罗逻锣箩骡裸落洛骆络妈麻玛码蚂马骂嘛吗埋买麦卖迈脉瞒馒蛮满蔓曼慢漫"],["c340","聾肁肂肅肈肊肍",5,"肔肕肗肙肞肣肦肧肨肬肰肳肵肶肸肹肻胅胇",4,"胏",6,"胘胟胠胢胣胦胮胵胷胹胻胾胿脀脁脃脄脅脇脈脋"],["c380","脌脕脗脙脛脜脝脟",12,"脭脮脰脳脴脵脷脹",4,"脿谩芒茫盲氓忙莽猫茅锚毛矛铆卯茂冒帽貌贸么玫枚梅酶霉煤没眉媒镁每美昧寐妹媚门闷们萌蒙檬盟锰猛梦孟眯醚靡糜迷谜弥米秘觅泌蜜密幂棉眠绵冕免勉娩缅面苗描瞄藐秒渺庙妙蔑灭民抿皿敏悯闽明螟鸣铭名命谬摸"],["c440","腀",5,"腇腉腍腎腏腒腖腗腘腛",4,"腡腢腣腤腦腨腪腫腬腯腲腳腵腶腷腸膁膃",4,"膉膋膌膍膎膐膒",5,"膙膚膞",4,"膤膥"],["c480","膧膩膫",7,"膴",5,"膼膽膾膿臄臅臇臈臉臋臍",6,"摹蘑模膜磨摩魔抹末莫墨默沫漠寞陌谋牟某拇牡亩姆母墓暮幕募慕木目睦牧穆拿哪呐钠那娜纳氖乃奶耐奈南男难囊挠脑恼闹淖呢馁内嫩能妮霓倪泥尼拟你匿腻逆溺蔫拈年碾撵捻念娘酿鸟尿捏聂孽啮镊镍涅您柠狞凝宁"],["c540","臔",14,"臤臥臦臨臩臫臮",4,"臵",5,"臽臿舃與",4,"舎舏舑舓舕",5,"舝舠舤舥舦舧舩舮舲舺舼舽舿"],["c580","艀艁艂艃艅艆艈艊艌艍艎艐",7,"艙艛艜艝艞艠",7,"艩拧泞牛扭钮纽脓浓农弄奴努怒女暖虐疟挪懦糯诺哦欧鸥殴藕呕偶沤啪趴爬帕怕琶拍排牌徘湃派攀潘盘磐盼畔判叛乓庞旁耪胖抛咆刨炮袍跑泡呸胚培裴赔陪配佩沛喷盆砰抨烹澎彭蓬棚硼篷膨朋鹏捧碰坯砒霹批披劈琵毗"],["c640","艪艫艬艭艱艵艶艷艸艻艼芀芁芃芅芆芇芉芌芐芓芔芕芖芚芛芞芠芢芣芧芲芵芶芺芻芼芿苀苂苃苅苆苉苐苖苙苚苝苢苧苨苩苪苬苭苮苰苲苳苵苶苸"],["c680","苺苼",4,"茊茋茍茐茒茓茖茘茙茝",9,"茩茪茮茰茲茷茻茽啤脾疲皮匹痞僻屁譬篇偏片骗飘漂瓢票撇瞥拼频贫品聘乒坪苹萍平凭瓶评屏坡泼颇婆破魄迫粕剖扑铺仆莆葡菩蒲埔朴圃普浦谱曝瀑期欺栖戚妻七凄漆柒沏其棋奇歧畦崎脐齐旗祈祁骑起岂乞企启契砌器气迄弃汽泣讫掐"],["c740","茾茿荁荂荄荅荈荊",4,"荓荕",4,"荝荢荰",6,"荹荺荾",6,"莇莈莊莋莌莍莏莐莑莔莕莖莗莙莚莝莟莡",6,"莬莭莮"],["c780","莯莵莻莾莿菂菃菄菆菈菉菋菍菎菐菑菒菓菕菗菙菚菛菞菢菣菤菦菧菨菫菬菭恰洽牵扦钎铅千迁签仟谦乾黔钱钳前潜遣浅谴堑嵌欠歉枪呛腔羌墙蔷强抢橇锹敲悄桥瞧乔侨巧鞘撬翘峭俏窍切茄且怯窃钦侵亲秦琴勤芹擒禽寝沁青轻氢倾卿清擎晴氰情顷请庆琼穷秋丘邱球求囚酋泅趋区蛆曲躯屈驱渠"],["c840","菮華菳",4,"菺菻菼菾菿萀萂萅萇萈萉萊萐萒",5,"萙萚萛萞",5,"萩",7,"萲",5,"萹萺萻萾",7,"葇葈葉"],["c880","葊",6,"葒",4,"葘葝葞葟葠葢葤",4,"葪葮葯葰葲葴葷葹葻葼取娶龋趣去圈颧权醛泉全痊拳犬券劝缺炔瘸却鹊榷确雀裙群然燃冉染瓤壤攘嚷让饶扰绕惹热壬仁人忍韧任认刃妊纫扔仍日戎茸蓉荣融熔溶容绒冗揉柔肉茹蠕儒孺如辱乳汝入褥软阮蕊瑞锐闰润若弱撒洒萨腮鳃塞赛三叁"],["c940","葽",4,"蒃蒄蒅蒆蒊蒍蒏",7,"蒘蒚蒛蒝蒞蒟蒠蒢",12,"蒰蒱蒳蒵蒶蒷蒻蒼蒾蓀蓂蓃蓅蓆蓇蓈蓋蓌蓎蓏蓒蓔蓕蓗"],["c980","蓘",4,"蓞蓡蓢蓤蓧",4,"蓭蓮蓯蓱",10,"蓽蓾蔀蔁蔂伞散桑嗓丧搔骚扫嫂瑟色涩森僧莎砂杀刹沙纱傻啥煞筛晒珊苫杉山删煽衫闪陕擅赡膳善汕扇缮墒伤商赏晌上尚裳梢捎稍烧芍勺韶少哨邵绍奢赊蛇舌舍赦摄射慑涉社设砷申呻伸身深娠绅神沈审婶甚肾慎渗声生甥牲升绳"],["ca40","蔃",8,"蔍蔎蔏蔐蔒蔔蔕蔖蔘蔙蔛蔜蔝蔞蔠蔢",8,"蔭",9,"蔾",4,"蕄蕅蕆蕇蕋",10],["ca80","蕗蕘蕚蕛蕜蕝蕟",4,"蕥蕦蕧蕩",8,"蕳蕵蕶蕷蕸蕼蕽蕿薀薁省盛剩胜圣师失狮施湿诗尸虱十石拾时什食蚀实识史矢使屎驶始式示士世柿事拭誓逝势是嗜噬适仕侍释饰氏市恃室视试收手首守寿授售受瘦兽蔬枢梳殊抒输叔舒淑疏书赎孰熟薯暑曙署蜀黍鼠属术述树束戍竖墅庶数漱"],["cb40","薂薃薆薈",6,"薐",10,"薝",6,"薥薦薧薩薫薬薭薱",5,"薸薺",6,"藂",6,"藊",4,"藑藒"],["cb80","藔藖",5,"藝",6,"藥藦藧藨藪",14,"恕刷耍摔衰甩帅栓拴霜双爽谁水睡税吮瞬顺舜说硕朔烁斯撕嘶思私司丝死肆寺嗣四伺似饲巳松耸怂颂送宋讼诵搜艘擞嗽苏酥俗素速粟僳塑溯宿诉肃酸蒜算虽隋随绥髓碎岁穗遂隧祟孙损笋蓑梭唆缩琐索锁所塌他它她塔"],["cc40","藹藺藼藽藾蘀",4,"蘆",10,"蘒蘓蘔蘕蘗",15,"蘨蘪",13,"蘹蘺蘻蘽蘾蘿虀"],["cc80","虁",11,"虒虓處",4,"虛虜虝號虠虡虣",7,"獭挞蹋踏胎苔抬台泰酞太态汰坍摊贪瘫滩坛檀痰潭谭谈坦毯袒碳探叹炭汤塘搪堂棠膛唐糖倘躺淌趟烫掏涛滔绦萄桃逃淘陶讨套特藤腾疼誊梯剔踢锑提题蹄啼体替嚏惕涕剃屉天添填田甜恬舔腆挑条迢眺跳贴铁帖厅听烃"],["cd40","虭虯虰虲",6,"蚃",6,"蚎",4,"蚔蚖",5,"蚞",4,"蚥蚦蚫蚭蚮蚲蚳蚷蚸蚹蚻",4,"蛁蛂蛃蛅蛈蛌蛍蛒蛓蛕蛖蛗蛚蛜"],["cd80","蛝蛠蛡蛢蛣蛥蛦蛧蛨蛪蛫蛬蛯蛵蛶蛷蛺蛻蛼蛽蛿蜁蜄蜅蜆蜋蜌蜎蜏蜐蜑蜔蜖汀廷停亭庭挺艇通桐酮瞳同铜彤童桶捅筒统痛偷投头透凸秃突图徒途涂屠土吐兔湍团推颓腿蜕褪退吞屯臀拖托脱鸵陀驮驼椭妥拓唾挖哇蛙洼娃瓦袜歪外豌弯湾玩顽丸烷完碗挽晚皖惋宛婉万腕汪王亡枉网往旺望忘妄威"],["ce40","蜙蜛蜝蜟蜠蜤蜦蜧蜨蜪蜫蜬蜭蜯蜰蜲蜳蜵蜶蜸蜹蜺蜼蜽蝀",6,"蝊蝋蝍蝏蝐蝑蝒蝔蝕蝖蝘蝚",5,"蝡蝢蝦",7,"蝯蝱蝲蝳蝵"],["ce80","蝷蝸蝹蝺蝿螀螁螄螆螇螉螊螌螎",4,"螔螕螖螘",6,"螠",4,"巍微危韦违桅围唯惟为潍维苇萎委伟伪尾纬未蔚味畏胃喂魏位渭谓尉慰卫瘟温蚊文闻纹吻稳紊问嗡翁瓮挝蜗涡窝我斡卧握沃巫呜钨乌污诬屋无芜梧吾吴毋武五捂午舞伍侮坞戊雾晤物勿务悟误昔熙析西硒矽晰嘻吸锡牺"],["cf40","螥螦螧螩螪螮螰螱螲螴螶螷螸螹螻螼螾螿蟁",4,"蟇蟈蟉蟌",4,"蟔",6,"蟜蟝蟞蟟蟡蟢蟣蟤蟦蟧蟨蟩蟫蟬蟭蟯",9],["cf80","蟺蟻蟼蟽蟿蠀蠁蠂蠄",5,"蠋",7,"蠔蠗蠘蠙蠚蠜",4,"蠣稀息希悉膝夕惜熄烯溪汐犀檄袭席习媳喜铣洗系隙戏细瞎虾匣霞辖暇峡侠狭下厦夏吓掀锨先仙鲜纤咸贤衔舷闲涎弦嫌显险现献县腺馅羡宪陷限线相厢镶香箱襄湘乡翔祥详想响享项巷橡像向象萧硝霄削哮嚣销消宵淆晓"],["d040","蠤",13,"蠳",5,"蠺蠻蠽蠾蠿衁衂衃衆",5,"衎",5,"衕衖衘衚",6,"衦衧衪衭衯衱衳衴衵衶衸衹衺"],["d080","衻衼袀袃袆袇袉袊袌袎袏袐袑袓袔袕袗",4,"袝",4,"袣袥",5,"小孝校肖啸笑效楔些歇蝎鞋协挟携邪斜胁谐写械卸蟹懈泄泻谢屑薪芯锌欣辛新忻心信衅星腥猩惺兴刑型形邢行醒幸杏性姓兄凶胸匈汹雄熊休修羞朽嗅锈秀袖绣墟戌需虚嘘须徐许蓄酗叙旭序畜恤絮婿绪续轩喧宣悬旋玄"],["d140","袬袮袯袰袲",4,"袸袹袺袻袽袾袿裀裃裄裇裈裊裋裌裍裏裐裑裓裖裗裚",4,"裠裡裦裧裩",6,"裲裵裶裷裺裻製裿褀褁褃",5],["d180","褉褋",4,"褑褔",4,"褜",4,"褢褣褤褦褧褨褩褬褭褮褯褱褲褳褵褷选癣眩绚靴薛学穴雪血勋熏循旬询寻驯巡殉汛训讯逊迅压押鸦鸭呀丫芽牙蚜崖衙涯雅哑亚讶焉咽阉烟淹盐严研蜒岩延言颜阎炎沿奄掩眼衍演艳堰燕厌砚雁唁彦焰宴谚验殃央鸯秧杨扬佯疡羊洋阳氧仰痒养样漾邀腰妖瑶"],["d240","褸",8,"襂襃襅",24,"襠",5,"襧",19,"襼"],["d280","襽襾覀覂覄覅覇",26,"摇尧遥窑谣姚咬舀药要耀椰噎耶爷野冶也页掖业叶曳腋夜液一壹医揖铱依伊衣颐夷遗移仪胰疑沂宜姨彝椅蚁倚已乙矣以艺抑易邑屹亿役臆逸肄疫亦裔意毅忆义益溢诣议谊译异翼翌绎茵荫因殷音阴姻吟银淫寅饮尹引隐"],["d340","覢",30,"觃觍觓觔觕觗觘觙觛觝觟觠觡觢觤觧觨觩觪觬觭觮觰觱觲觴",6],["d380","觻",4,"訁",5,"計",21,"印英樱婴鹰应缨莹萤营荧蝇迎赢盈影颖硬映哟拥佣臃痈庸雍踊蛹咏泳涌永恿勇用幽优悠忧尤由邮铀犹油游酉有友右佑釉诱又幼迂淤于盂榆虞愚舆余俞逾鱼愉渝渔隅予娱雨与屿禹宇语羽玉域芋郁吁遇喻峪御愈欲狱育誉"],["d440","訞",31,"訿",8,"詉",21],["d480","詟",25,"詺",6,"浴寓裕预豫驭鸳渊冤元垣袁原援辕园员圆猿源缘远苑愿怨院曰约越跃钥岳粤月悦阅耘云郧匀陨允运蕴酝晕韵孕匝砸杂栽哉灾宰载再在咱攒暂赞赃脏葬遭糟凿藻枣早澡蚤躁噪造皂灶燥责择则泽贼怎增憎曾赠扎喳渣札轧"],["d540","誁",7,"誋",7,"誔",46],["d580","諃",32,"铡闸眨栅榨咋乍炸诈摘斋宅窄债寨瞻毡詹粘沾盏斩辗崭展蘸栈占战站湛绽樟章彰漳张掌涨杖丈帐账仗胀瘴障招昭找沼赵照罩兆肇召遮折哲蛰辙者锗蔗这浙珍斟真甄砧臻贞针侦枕疹诊震振镇阵蒸挣睁征狰争怔整拯正政"],["d640","諤",34,"謈",27],["d680","謤謥謧",30,"帧症郑证芝枝支吱蜘知肢脂汁之织职直植殖执值侄址指止趾只旨纸志挚掷至致置帜峙制智秩稚质炙痔滞治窒中盅忠钟衷终种肿重仲众舟周州洲诌粥轴肘帚咒皱宙昼骤珠株蛛朱猪诸诛逐竹烛煮拄瞩嘱主著柱助蛀贮铸筑"],["d740","譆",31,"譧",4,"譭",25],["d780","讇",24,"讬讱讻诇诐诪谉谞住注祝驻抓爪拽专砖转撰赚篆桩庄装妆撞壮状椎锥追赘坠缀谆准捉拙卓桌琢茁酌啄着灼浊兹咨资姿滋淄孜紫仔籽滓子自渍字鬃棕踪宗综总纵邹走奏揍租足卒族祖诅阻组钻纂嘴醉最罪尊遵昨左佐柞做作坐座"],["d840","谸",8,"豂豃豄豅豈豊豋豍",7,"豖豗豘豙豛",5,"豣",6,"豬",6,"豴豵豶豷豻",6,"貃貄貆貇"],["d880","貈貋貍",6,"貕貖貗貙",20,"亍丌兀丐廿卅丕亘丞鬲孬噩丨禺丿匕乇夭爻卮氐囟胤馗毓睾鼗丶亟鼐乜乩亓芈孛啬嘏仄厍厝厣厥厮靥赝匚叵匦匮匾赜卦卣刂刈刎刭刳刿剀剌剞剡剜蒯剽劂劁劐劓冂罔亻仃仉仂仨仡仫仞伛仳伢佤仵伥伧伉伫佞佧攸佚佝"],["d940","貮",62],["d980","賭",32,"佟佗伲伽佶佴侑侉侃侏佾佻侪佼侬侔俦俨俪俅俚俣俜俑俟俸倩偌俳倬倏倮倭俾倜倌倥倨偾偃偕偈偎偬偻傥傧傩傺僖儆僭僬僦僮儇儋仝氽佘佥俎龠汆籴兮巽黉馘冁夔勹匍訇匐凫夙兕亠兖亳衮袤亵脔裒禀嬴蠃羸冫冱冽冼"],["da40","贎",14,"贠赑赒赗赟赥赨赩赪赬赮赯赱赲赸",8,"趂趃趆趇趈趉趌",4,"趒趓趕",9,"趠趡"],["da80","趢趤",12,"趲趶趷趹趻趽跀跁跂跅跇跈跉跊跍跐跒跓跔凇冖冢冥讠讦讧讪讴讵讷诂诃诋诏诎诒诓诔诖诘诙诜诟诠诤诨诩诮诰诳诶诹诼诿谀谂谄谇谌谏谑谒谔谕谖谙谛谘谝谟谠谡谥谧谪谫谮谯谲谳谵谶卩卺阝阢阡阱阪阽阼陂陉陔陟陧陬陲陴隈隍隗隰邗邛邝邙邬邡邴邳邶邺"],["db40","跕跘跙跜跠跡跢跥跦跧跩跭跮跰跱跲跴跶跼跾",6,"踆踇踈踋踍踎踐踑踒踓踕",7,"踠踡踤",4,"踫踭踰踲踳踴踶踷踸踻踼踾"],["db80","踿蹃蹅蹆蹌",4,"蹓",5,"蹚",11,"蹧蹨蹪蹫蹮蹱邸邰郏郅邾郐郄郇郓郦郢郜郗郛郫郯郾鄄鄢鄞鄣鄱鄯鄹酃酆刍奂劢劬劭劾哿勐勖勰叟燮矍廴凵凼鬯厶弁畚巯坌垩垡塾墼壅壑圩圬圪圳圹圮圯坜圻坂坩垅坫垆坼坻坨坭坶坳垭垤垌垲埏垧垴垓垠埕埘埚埙埒垸埴埯埸埤埝"],["dc40","蹳蹵蹷",4,"蹽蹾躀躂躃躄躆躈",6,"躑躒躓躕",6,"躝躟",11,"躭躮躰躱躳",6,"躻",7],["dc80","軃",10,"軏",21,"堋堍埽埭堀堞堙塄堠塥塬墁墉墚墀馨鼙懿艹艽艿芏芊芨芄芎芑芗芙芫芸芾芰苈苊苣芘芷芮苋苌苁芩芴芡芪芟苄苎芤苡茉苷苤茏茇苜苴苒苘茌苻苓茑茚茆茔茕苠苕茜荑荛荜茈莒茼茴茱莛荞茯荏荇荃荟荀茗荠茭茺茳荦荥"],["dd40","軥",62],["dd80","輤",32,"荨茛荩荬荪荭荮莰荸莳莴莠莪莓莜莅荼莶莩荽莸荻莘莞莨莺莼菁萁菥菘堇萘萋菝菽菖萜萸萑萆菔菟萏萃菸菹菪菅菀萦菰菡葜葑葚葙葳蒇蒈葺蒉葸萼葆葩葶蒌蒎萱葭蓁蓍蓐蓦蒽蓓蓊蒿蒺蓠蒡蒹蒴蒗蓥蓣蔌甍蔸蓰蔹蔟蔺"],["de40","轅",32,"轪辀辌辒辝辠辡辢辤辥辦辧辪辬辭辮辯農辳辴辵辷辸辺辻込辿迀迃迆"],["de80","迉",4,"迏迒迖迗迚迠迡迣迧迬迯迱迲迴迵迶迺迻迼迾迿逇逈逌逎逓逕逘蕖蔻蓿蓼蕙蕈蕨蕤蕞蕺瞢蕃蕲蕻薤薨薇薏蕹薮薜薅薹薷薰藓藁藜藿蘧蘅蘩蘖蘼廾弈夼奁耷奕奚奘匏尢尥尬尴扌扪抟抻拊拚拗拮挢拶挹捋捃掭揶捱捺掎掴捭掬掊捩掮掼揲揸揠揿揄揞揎摒揆掾摅摁搋搛搠搌搦搡摞撄摭撖"],["df40","這逜連逤逥逧",5,"逰",4,"逷逹逺逽逿遀遃遅遆遈",4,"過達違遖遙遚遜",5,"遤遦遧適遪遫遬遯",4,"遶",6,"遾邁"],["df80","還邅邆邇邉邊邌",4,"邒邔邖邘邚邜邞邟邠邤邥邧邨邩邫邭邲邷邼邽邿郀摺撷撸撙撺擀擐擗擤擢攉攥攮弋忒甙弑卟叱叽叩叨叻吒吖吆呋呒呓呔呖呃吡呗呙吣吲咂咔呷呱呤咚咛咄呶呦咝哐咭哂咴哒咧咦哓哔呲咣哕咻咿哌哙哚哜咩咪咤哝哏哞唛哧唠哽唔哳唢唣唏唑唧唪啧喏喵啉啭啁啕唿啐唼"],["e040","郂郃郆郈郉郋郌郍郒郔郕郖郘郙郚郞郟郠郣郤郥郩郪郬郮郰郱郲郳郵郶郷郹郺郻郼郿鄀鄁鄃鄅",19,"鄚鄛鄜"],["e080","鄝鄟鄠鄡鄤",10,"鄰鄲",6,"鄺",8,"酄唷啖啵啶啷唳唰啜喋嗒喃喱喹喈喁喟啾嗖喑啻嗟喽喾喔喙嗪嗷嗉嘟嗑嗫嗬嗔嗦嗝嗄嗯嗥嗲嗳嗌嗍嗨嗵嗤辔嘞嘈嘌嘁嘤嘣嗾嘀嘧嘭噘嘹噗嘬噍噢噙噜噌噔嚆噤噱噫噻噼嚅嚓嚯囔囗囝囡囵囫囹囿圄圊圉圜帏帙帔帑帱帻帼"],["e140","酅酇酈酑酓酔酕酖酘酙酛酜酟酠酦酧酨酫酭酳酺酻酼醀",4,"醆醈醊醎醏醓",6,"醜",5,"醤",5,"醫醬醰醱醲醳醶醷醸醹醻"],["e180","醼",10,"釈釋釐釒",9,"針",8,"帷幄幔幛幞幡岌屺岍岐岖岈岘岙岑岚岜岵岢岽岬岫岱岣峁岷峄峒峤峋峥崂崃崧崦崮崤崞崆崛嵘崾崴崽嵬嵛嵯嵝嵫嵋嵊嵩嵴嶂嶙嶝豳嶷巅彳彷徂徇徉後徕徙徜徨徭徵徼衢彡犭犰犴犷犸狃狁狎狍狒狨狯狩狲狴狷猁狳猃狺"],["e240","釦",62],["e280","鈥",32,"狻猗猓猡猊猞猝猕猢猹猥猬猸猱獐獍獗獠獬獯獾舛夥飧夤夂饣饧",5,"饴饷饽馀馄馇馊馍馐馑馓馔馕庀庑庋庖庥庠庹庵庾庳赓廒廑廛廨廪膺忄忉忖忏怃忮怄忡忤忾怅怆忪忭忸怙怵怦怛怏怍怩怫怊怿怡恸恹恻恺恂"],["e340","鉆",45,"鉵",16],["e380","銆",7,"銏",24,"恪恽悖悚悭悝悃悒悌悛惬悻悱惝惘惆惚悴愠愦愕愣惴愀愎愫慊慵憬憔憧憷懔懵忝隳闩闫闱闳闵闶闼闾阃阄阆阈阊阋阌阍阏阒阕阖阗阙阚丬爿戕氵汔汜汊沣沅沐沔沌汨汩汴汶沆沩泐泔沭泷泸泱泗沲泠泖泺泫泮沱泓泯泾"],["e440","銨",5,"銯",24,"鋉",31],["e480","鋩",32,"洹洧洌浃浈洇洄洙洎洫浍洮洵洚浏浒浔洳涑浯涞涠浞涓涔浜浠浼浣渚淇淅淞渎涿淠渑淦淝淙渖涫渌涮渫湮湎湫溲湟溆湓湔渲渥湄滟溱溘滠漭滢溥溧溽溻溷滗溴滏溏滂溟潢潆潇漤漕滹漯漶潋潴漪漉漩澉澍澌潸潲潼潺濑"],["e540","錊",51,"錿",10],["e580","鍊",31,"鍫濉澧澹澶濂濡濮濞濠濯瀚瀣瀛瀹瀵灏灞宀宄宕宓宥宸甯骞搴寤寮褰寰蹇謇辶迓迕迥迮迤迩迦迳迨逅逄逋逦逑逍逖逡逵逶逭逯遄遑遒遐遨遘遢遛暹遴遽邂邈邃邋彐彗彖彘尻咫屐屙孱屣屦羼弪弩弭艴弼鬻屮妁妃妍妩妪妣"],["e640","鍬",34,"鎐",27],["e680","鎬",29,"鏋鏌鏍妗姊妫妞妤姒妲妯姗妾娅娆姝娈姣姘姹娌娉娲娴娑娣娓婀婧婊婕娼婢婵胬媪媛婷婺媾嫫媲嫒嫔媸嫠嫣嫱嫖嫦嫘嫜嬉嬗嬖嬲嬷孀尕尜孚孥孳孑孓孢驵驷驸驺驿驽骀骁骅骈骊骐骒骓骖骘骛骜骝骟骠骢骣骥骧纟纡纣纥纨纩"],["e740","鏎",7,"鏗",54],["e780","鐎",32,"纭纰纾绀绁绂绉绋绌绐绔绗绛绠绡绨绫绮绯绱绲缍绶绺绻绾缁缂缃缇缈缋缌缏缑缒缗缙缜缛缟缡",6,"缪缫缬缭缯",4,"缵幺畿巛甾邕玎玑玮玢玟珏珂珑玷玳珀珉珈珥珙顼琊珩珧珞玺珲琏琪瑛琦琥琨琰琮琬"],["e840","鐯",14,"鐿",43,"鑬鑭鑮鑯"],["e880","鑰",20,"钑钖钘铇铏铓铔铚铦铻锜锠琛琚瑁瑜瑗瑕瑙瑷瑭瑾璜璎璀璁璇璋璞璨璩璐璧瓒璺韪韫韬杌杓杞杈杩枥枇杪杳枘枧杵枨枞枭枋杷杼柰栉柘栊柩枰栌柙枵柚枳柝栀柃枸柢栎柁柽栲栳桠桡桎桢桄桤梃栝桕桦桁桧桀栾桊桉栩梵梏桴桷梓桫棂楮棼椟椠棹"],["e940","锧锳锽镃镈镋镕镚镠镮镴镵長",7,"門",42],["e980","閫",32,"椤棰椋椁楗棣椐楱椹楠楂楝榄楫榀榘楸椴槌榇榈槎榉楦楣楹榛榧榻榫榭槔榱槁槊槟榕槠榍槿樯槭樗樘橥槲橄樾檠橐橛樵檎橹樽樨橘橼檑檐檩檗檫猷獒殁殂殇殄殒殓殍殚殛殡殪轫轭轱轲轳轵轶轸轷轹轺轼轾辁辂辄辇辋"],["ea40","闌",27,"闬闿阇阓阘阛阞阠阣",6,"阫阬阭阯阰阷阸阹阺阾陁陃陊陎陏陑陒陓陖陗"],["ea80","陘陙陚陜陝陞陠陣陥陦陫陭",4,"陳陸",12,"隇隉隊辍辎辏辘辚軎戋戗戛戟戢戡戥戤戬臧瓯瓴瓿甏甑甓攴旮旯旰昊昙杲昃昕昀炅曷昝昴昱昶昵耆晟晔晁晏晖晡晗晷暄暌暧暝暾曛曜曦曩贲贳贶贻贽赀赅赆赈赉赇赍赕赙觇觊觋觌觎觏觐觑牮犟牝牦牯牾牿犄犋犍犏犒挈挲掰"],["eb40","隌階隑隒隓隕隖隚際隝",9,"隨",7,"隱隲隴隵隷隸隺隻隿雂雃雈雊雋雐雑雓雔雖",9,"雡",6,"雫"],["eb80","雬雭雮雰雱雲雴雵雸雺電雼雽雿霂霃霅霊霋霌霐霑霒霔霕霗",4,"霝霟霠搿擘耄毪毳毽毵毹氅氇氆氍氕氘氙氚氡氩氤氪氲攵敕敫牍牒牖爰虢刖肟肜肓肼朊肽肱肫肭肴肷胧胨胩胪胛胂胄胙胍胗朐胝胫胱胴胭脍脎胲胼朕脒豚脶脞脬脘脲腈腌腓腴腙腚腱腠腩腼腽腭腧塍媵膈膂膑滕膣膪臌朦臊膻"],["ec40","霡",8,"霫霬霮霯霱霳",4,"霺霻霼霽霿",18,"靔靕靗靘靚靜靝靟靣靤靦靧靨靪",7],["ec80","靲靵靷",4,"靽",7,"鞆",4,"鞌鞎鞏鞐鞓鞕鞖鞗鞙",4,"臁膦欤欷欹歃歆歙飑飒飓飕飙飚殳彀毂觳斐齑斓於旆旄旃旌旎旒旖炀炜炖炝炻烀炷炫炱烨烊焐焓焖焯焱煳煜煨煅煲煊煸煺熘熳熵熨熠燠燔燧燹爝爨灬焘煦熹戾戽扃扈扉礻祀祆祉祛祜祓祚祢祗祠祯祧祺禅禊禚禧禳忑忐"],["ed40","鞞鞟鞡鞢鞤",6,"鞬鞮鞰鞱鞳鞵",46],["ed80","韤韥韨韮",4,"韴韷",23,"怼恝恚恧恁恙恣悫愆愍慝憩憝懋懑戆肀聿沓泶淼矶矸砀砉砗砘砑斫砭砜砝砹砺砻砟砼砥砬砣砩硎硭硖硗砦硐硇硌硪碛碓碚碇碜碡碣碲碹碥磔磙磉磬磲礅磴礓礤礞礴龛黹黻黼盱眄眍盹眇眈眚眢眙眭眦眵眸睐睑睇睃睚睨"],["ee40","頏",62],["ee80","顎",32,"睢睥睿瞍睽瞀瞌瞑瞟瞠瞰瞵瞽町畀畎畋畈畛畲畹疃罘罡罟詈罨罴罱罹羁罾盍盥蠲钅钆钇钋钊钌钍钏钐钔钗钕钚钛钜钣钤钫钪钭钬钯钰钲钴钶",4,"钼钽钿铄铈",6,"铐铑铒铕铖铗铙铘铛铞铟铠铢铤铥铧铨铪"],["ef40","顯",5,"颋颎颒颕颙颣風",37,"飏飐飔飖飗飛飜飝飠",4],["ef80","飥飦飩",30,"铩铫铮铯铳铴铵铷铹铼铽铿锃锂锆锇锉锊锍锎锏锒",4,"锘锛锝锞锟锢锪锫锩锬锱锲锴锶锷锸锼锾锿镂锵镄镅镆镉镌镎镏镒镓镔镖镗镘镙镛镞镟镝镡镢镤",8,"镯镱镲镳锺矧矬雉秕秭秣秫稆嵇稃稂稞稔"],["f040","餈",4,"餎餏餑",28,"餯",26],["f080","饊",9,"饖",12,"饤饦饳饸饹饻饾馂馃馉稹稷穑黏馥穰皈皎皓皙皤瓞瓠甬鸠鸢鸨",4,"鸲鸱鸶鸸鸷鸹鸺鸾鹁鹂鹄鹆鹇鹈鹉鹋鹌鹎鹑鹕鹗鹚鹛鹜鹞鹣鹦",6,"鹱鹭鹳疒疔疖疠疝疬疣疳疴疸痄疱疰痃痂痖痍痣痨痦痤痫痧瘃痱痼痿瘐瘀瘅瘌瘗瘊瘥瘘瘕瘙"],["f140","馌馎馚",10,"馦馧馩",47],["f180","駙",32,"瘛瘼瘢瘠癀瘭瘰瘿瘵癃瘾瘳癍癞癔癜癖癫癯翊竦穸穹窀窆窈窕窦窠窬窨窭窳衤衩衲衽衿袂袢裆袷袼裉裢裎裣裥裱褚裼裨裾裰褡褙褓褛褊褴褫褶襁襦襻疋胥皲皴矜耒耔耖耜耠耢耥耦耧耩耨耱耋耵聃聆聍聒聩聱覃顸颀颃"],["f240","駺",62],["f280","騹",32,"颉颌颍颏颔颚颛颞颟颡颢颥颦虍虔虬虮虿虺虼虻蚨蚍蚋蚬蚝蚧蚣蚪蚓蚩蚶蛄蚵蛎蚰蚺蚱蚯蛉蛏蚴蛩蛱蛲蛭蛳蛐蜓蛞蛴蛟蛘蛑蜃蜇蛸蜈蜊蜍蜉蜣蜻蜞蜥蜮蜚蜾蝈蜴蜱蜩蜷蜿螂蜢蝽蝾蝻蝠蝰蝌蝮螋蝓蝣蝼蝤蝙蝥螓螯螨蟒"],["f340","驚",17,"驲骃骉骍骎骔骕骙骦骩",6,"骲骳骴骵骹骻骽骾骿髃髄髆",4,"髍髎髏髐髒體髕髖髗髙髚髛髜"],["f380","髝髞髠髢髣髤髥髧髨髩髪髬髮髰",8,"髺髼",6,"鬄鬅鬆蟆螈螅螭螗螃螫蟥螬螵螳蟋蟓螽蟑蟀蟊蟛蟪蟠蟮蠖蠓蟾蠊蠛蠡蠹蠼缶罂罄罅舐竺竽笈笃笄笕笊笫笏筇笸笪笙笮笱笠笥笤笳笾笞筘筚筅筵筌筝筠筮筻筢筲筱箐箦箧箸箬箝箨箅箪箜箢箫箴篑篁篌篝篚篥篦篪簌篾篼簏簖簋"],["f440","鬇鬉",5,"鬐鬑鬒鬔",10,"鬠鬡鬢鬤",10,"鬰鬱鬳",7,"鬽鬾鬿魀魆魊魋魌魎魐魒魓魕",5],["f480","魛",32,"簟簪簦簸籁籀臾舁舂舄臬衄舡舢舣舭舯舨舫舸舻舳舴舾艄艉艋艏艚艟艨衾袅袈裘裟襞羝羟羧羯羰羲籼敉粑粝粜粞粢粲粼粽糁糇糌糍糈糅糗糨艮暨羿翎翕翥翡翦翩翮翳糸絷綦綮繇纛麸麴赳趄趔趑趱赧赭豇豉酊酐酎酏酤"],["f540","魼",62],["f580","鮻",32,"酢酡酰酩酯酽酾酲酴酹醌醅醐醍醑醢醣醪醭醮醯醵醴醺豕鹾趸跫踅蹙蹩趵趿趼趺跄跖跗跚跞跎跏跛跆跬跷跸跣跹跻跤踉跽踔踝踟踬踮踣踯踺蹀踹踵踽踱蹉蹁蹂蹑蹒蹊蹰蹶蹼蹯蹴躅躏躔躐躜躞豸貂貊貅貘貔斛觖觞觚觜"],["f640","鯜",62],["f680","鰛",32,"觥觫觯訾謦靓雩雳雯霆霁霈霏霎霪霭霰霾龀龃龅",5,"龌黾鼋鼍隹隼隽雎雒瞿雠銎銮鋈錾鍪鏊鎏鐾鑫鱿鲂鲅鲆鲇鲈稣鲋鲎鲐鲑鲒鲔鲕鲚鲛鲞",5,"鲥",4,"鲫鲭鲮鲰",7,"鲺鲻鲼鲽鳄鳅鳆鳇鳊鳋"],["f740","鰼",62],["f780","鱻鱽鱾鲀鲃鲄鲉鲊鲌鲏鲓鲖鲗鲘鲙鲝鲪鲬鲯鲹鲾",4,"鳈鳉鳑鳒鳚鳛鳠鳡鳌",4,"鳓鳔鳕鳗鳘鳙鳜鳝鳟鳢靼鞅鞑鞒鞔鞯鞫鞣鞲鞴骱骰骷鹘骶骺骼髁髀髅髂髋髌髑魅魃魇魉魈魍魑飨餍餮饕饔髟髡髦髯髫髻髭髹鬈鬏鬓鬟鬣麽麾縻麂麇麈麋麒鏖麝麟黛黜黝黠黟黢黩黧黥黪黯鼢鼬鼯鼹鼷鼽鼾齄"],["f840","鳣",62],["f880","鴢",32],["f940","鵃",62],["f980","鶂",32],["fa40","鶣",62],["fa80","鷢",32],["fb40","鸃",27,"鸤鸧鸮鸰鸴鸻鸼鹀鹍鹐鹒鹓鹔鹖鹙鹝鹟鹠鹡鹢鹥鹮鹯鹲鹴",9,"麀"],["fb80","麁麃麄麅麆麉麊麌",5,"麔",8,"麞麠",5,"麧麨麩麪"],["fc40","麫",8,"麵麶麷麹麺麼麿",4,"黅黆黇黈黊黋黌黐黒黓黕黖黗黙黚點黡黣黤黦黨黫黬黭黮黰",8,"黺黽黿",6],["fc80","鼆",4,"鼌鼏鼑鼒鼔鼕鼖鼘鼚",5,"鼡鼣",8,"鼭鼮鼰鼱"],["fd40","鼲",4,"鼸鼺鼼鼿",4,"齅",10,"齒",38],["fd80","齹",5,"龁龂龍",11,"龜龝龞龡",4,"郎凉秊裏隣"],["fe40","兀嗀﨎﨏﨑﨓﨔礼﨟蘒﨡﨣﨤﨧﨨﨩"]]},470:function(e,t,n){"use strict";const r=n(622);const i=n(648);const o=n(370).pathExists;const a=n(458);function outputJson(e,t,n,s){if(typeof n==="function"){s=n;n={}}const c=r.dirname(e);o(c,(r,o)=>{if(r)return s(r);if(o)return a.writeJson(e,t,n,s);i.mkdirs(c,r=>{if(r)return s(r);a.writeJson(e,t,n,s)})})}e.exports=outputJson},477:function(e){var t={}.toString;e.exports=Array.isArray||function(e){return t.call(e)=="[object Array]"}},478:function(e,t,n){e.exports=glob;var r=n(747);var i=n(589);var o=n(904);var a=o.Minimatch;var s=n(536);var c=n(614).EventEmitter;var u=n(622);var l=n(357);var f=n(100);var p=n(51);var d=n(109);var h=d.alphasort;var m=d.alphasorti;var v=d.setopts;var g=d.ownProp;var y=n(346);var b=n(669);var w=d.childrenIgnored;var x=d.isIgnored;var k=n(538);function glob(e,t,n){if(typeof t==="function")n=t,t={};if(!t)t={};if(t.sync){if(n)throw new TypeError("callback provided to sync glob");return p(e,t)}return new Glob(e,t,n)}glob.sync=p;var j=glob.GlobSync=p.GlobSync;glob.glob=glob;function extend(e,t){if(t===null||typeof t!=="object"){return e}var n=Object.keys(t);var r=n.length;while(r--){e[n[r]]=t[n[r]]}return e}glob.hasMagic=function(e,t){var n=extend({},t);n.noprocess=true;var r=new Glob(e,n);var i=r.minimatch.set;if(!e)return false;if(i.length>1)return true;for(var o=0;o<i[0].length;o++){if(typeof i[0][o]!=="string")return true}return false};glob.Glob=Glob;s(Glob,c);function Glob(e,t,n){if(typeof t==="function"){n=t;t=null}if(t&&t.sync){if(n)throw new TypeError("callback provided to sync glob");return new j(e,t)}if(!(this instanceof Glob))return new Glob(e,t,n);v(this,e,t);this._didRealPath=false;var r=this.minimatch.set.length;this.matches=new Array(r);if(typeof n==="function"){n=k(n);this.on("error",n);this.on("end",function(e){n(null,e)})}var i=this;this._processing=0;this._emitQueue=[];this._processQueue=[];this.paused=false;if(this.noprocess)return this;if(r===0)return done();var o=true;for(var a=0;a<r;a++){this._process(this.minimatch.set[a],a,false,done)}o=false;function done(){--i._processing;if(i._processing<=0){if(o){process.nextTick(function(){i._finish()})}else{i._finish()}}}}Glob.prototype._finish=function(){l(this instanceof Glob);if(this.aborted)return;if(this.realpath&&!this._didRealpath)return this._realpath();d.finish(this);this.emit("end",this.found)};Glob.prototype._realpath=function(){if(this._didRealpath)return;this._didRealpath=true;var e=this.matches.length;if(e===0)return this._finish();var t=this;for(var n=0;n<this.matches.length;n++)this._realpathSet(n,next);function next(){if(--e===0)t._finish()}};Glob.prototype._realpathSet=function(e,t){var n=this.matches[e];if(!n)return t();var r=Object.keys(n);var o=this;var a=r.length;if(a===0)return t();var s=this.matches[e]=Object.create(null);r.forEach(function(n,r){n=o._makeAbs(n);i.realpath(n,o.realpathCache,function(r,i){if(!r)s[i]=true;else if(r.syscall==="stat")s[n]=true;else o.emit("error",r);if(--a===0){o.matches[e]=s;t()}})})};Glob.prototype._mark=function(e){return d.mark(this,e)};Glob.prototype._makeAbs=function(e){return d.makeAbs(this,e)};Glob.prototype.abort=function(){this.aborted=true;this.emit("abort")};Glob.prototype.pause=function(){if(!this.paused){this.paused=true;this.emit("pause")}};Glob.prototype.resume=function(){if(this.paused){this.emit("resume");this.paused=false;if(this._emitQueue.length){var e=this._emitQueue.slice(0);this._emitQueue.length=0;for(var t=0;t<e.length;t++){var n=e[t];this._emitMatch(n[0],n[1])}}if(this._processQueue.length){var r=this._processQueue.slice(0);this._processQueue.length=0;for(var t=0;t<r.length;t++){var i=r[t];this._processing--;this._process(i[0],i[1],i[2],i[3])}}}};Glob.prototype._process=function(e,t,n,r){l(this instanceof Glob);l(typeof r==="function");if(this.aborted)return;this._processing++;if(this.paused){this._processQueue.push([e,t,n,r]);return}var i=0;while(typeof e[i]==="string"){i++}var a;switch(i){case e.length:this._processSimple(e.join("/"),t,r);return;case 0:a=null;break;default:a=e.slice(0,i).join("/");break}var s=e.slice(i);var c;if(a===null)c=".";else if(f(a)||f(e.join("/"))){if(!a||!f(a))a="/"+a;c=a}else c=a;var u=this._makeAbs(c);if(w(this,c))return r();var p=s[0]===o.GLOBSTAR;if(p)this._processGlobStar(a,c,u,s,t,n,r);else this._processReaddir(a,c,u,s,t,n,r)};Glob.prototype._processReaddir=function(e,t,n,r,i,o,a){var s=this;this._readdir(n,o,function(c,u){return s._processReaddir2(e,t,n,r,i,o,u,a)})};Glob.prototype._processReaddir2=function(e,t,n,r,i,o,a,s){if(!a)return s();var c=r[0];var l=!!this.minimatch.negate;var f=c._glob;var p=this.dot||f.charAt(0)===".";var d=[];for(var h=0;h<a.length;h++){var m=a[h];if(m.charAt(0)!=="."||p){var v;if(l&&!e){v=!m.match(c)}else{v=m.match(c)}if(v)d.push(m)}}var g=d.length;if(g===0)return s();if(r.length===1&&!this.mark&&!this.stat){if(!this.matches[i])this.matches[i]=Object.create(null);for(var h=0;h<g;h++){var m=d[h];if(e){if(e!=="/")m=e+"/"+m;else m=e+m}if(m.charAt(0)==="/"&&!this.nomount){m=u.join(this.root,m)}this._emitMatch(i,m)}return s()}r.shift();for(var h=0;h<g;h++){var m=d[h];var y;if(e){if(e!=="/")m=e+"/"+m;else m=e+m}this._process([m].concat(r),i,o,s)}s()};Glob.prototype._emitMatch=function(e,t){if(this.aborted)return;if(x(this,t))return;if(this.paused){this._emitQueue.push([e,t]);return}var n=f(t)?t:this._makeAbs(t);if(this.mark)t=this._mark(t);if(this.absolute)t=n;if(this.matches[e][t])return;if(this.nodir){var r=this.cache[n];if(r==="DIR"||Array.isArray(r))return}this.matches[e][t]=true;var i=this.statCache[n];if(i)this.emit("stat",t,i);this.emit("match",t)};Glob.prototype._readdirInGlobStar=function(e,t){if(this.aborted)return;if(this.follow)return this._readdir(e,false,t);var n="lstat\0"+e;var i=this;var o=y(n,lstatcb_);if(o)r.lstat(e,o);function lstatcb_(n,r){if(n&&n.code==="ENOENT")return t();var o=r&&r.isSymbolicLink();i.symlinks[e]=o;if(!o&&r&&!r.isDirectory()){i.cache[e]="FILE";t()}else i._readdir(e,false,t)}};Glob.prototype._readdir=function(e,t,n){if(this.aborted)return;n=y("readdir\0"+e+"\0"+t,n);if(!n)return;if(t&&!g(this.symlinks,e))return this._readdirInGlobStar(e,n);if(g(this.cache,e)){var i=this.cache[e];if(!i||i==="FILE")return n();if(Array.isArray(i))return n(null,i)}var o=this;r.readdir(e,readdirCb(this,e,n))};function readdirCb(e,t,n){return function(r,i){if(r)e._readdirError(t,r,n);else e._readdirEntries(t,i,n)}}Glob.prototype._readdirEntries=function(e,t,n){if(this.aborted)return;if(!this.mark&&!this.stat){for(var r=0;r<t.length;r++){var i=t[r];if(e==="/")i=e+i;else i=e+"/"+i;this.cache[i]=true}}this.cache[e]=t;return n(null,t)};Glob.prototype._readdirError=function(e,t,n){if(this.aborted)return;switch(t.code){case"ENOTSUP":case"ENOTDIR":var r=this._makeAbs(e);this.cache[r]="FILE";if(r===this.cwdAbs){var i=new Error(t.code+" invalid cwd "+this.cwd);i.path=this.cwd;i.code=t.code;this.emit("error",i);this.abort()}break;case"ENOENT":case"ELOOP":case"ENAMETOOLONG":case"UNKNOWN":this.cache[this._makeAbs(e)]=false;break;default:this.cache[this._makeAbs(e)]=false;if(this.strict){this.emit("error",t);this.abort()}if(!this.silent)console.error("glob error",t);break}return n()};Glob.prototype._processGlobStar=function(e,t,n,r,i,o,a){var s=this;this._readdir(n,o,function(c,u){s._processGlobStar2(e,t,n,r,i,o,u,a)})};Glob.prototype._processGlobStar2=function(e,t,n,r,i,o,a,s){if(!a)return s();var c=r.slice(1);var u=e?[e]:[];var l=u.concat(c);this._process(l,i,false,s);var f=this.symlinks[n];var p=a.length;if(f&&o)return s();for(var d=0;d<p;d++){var h=a[d];if(h.charAt(0)==="."&&!this.dot)continue;var m=u.concat(a[d],c);this._process(m,i,true,s);var v=u.concat(a[d],r);this._process(v,i,true,s)}s()};Glob.prototype._processSimple=function(e,t,n){var r=this;this._stat(e,function(i,o){r._processSimple2(e,t,i,o,n)})};Glob.prototype._processSimple2=function(e,t,n,r,i){if(!this.matches[t])this.matches[t]=Object.create(null);if(!r)return i();if(e&&f(e)&&!this.nomount){var o=/[\/\\]$/.test(e);if(e.charAt(0)==="/"){e=u.join(this.root,e)}else{e=u.resolve(this.root,e);if(o)e+="/"}}if(process.platform==="win32")e=e.replace(/\\/g,"/");this._emitMatch(t,e);i()};Glob.prototype._stat=function(e,t){var n=this._makeAbs(e);var i=e.slice(-1)==="/";if(e.length>this.maxLength)return t();if(!this.stat&&g(this.cache,n)){var o=this.cache[n];if(Array.isArray(o))o="DIR";if(!i||o==="DIR")return t(null,o);if(i&&o==="FILE")return t()}var a;var s=this.statCache[n];if(s!==undefined){if(s===false)return t(null,s);else{var c=s.isDirectory()?"DIR":"FILE";if(i&&c==="FILE")return t();else return t(null,c,s)}}var u=this;var l=y("stat\0"+n,lstatcb_);if(l)r.lstat(n,l);function lstatcb_(i,o){if(o&&o.isSymbolicLink()){return r.stat(n,function(r,i){if(r)u._stat2(e,n,null,o,t);else u._stat2(e,n,r,i,t)})}else{u._stat2(e,n,i,o,t)}}};Glob.prototype._stat2=function(e,t,n,r,i){if(n&&(n.code==="ENOENT"||n.code==="ENOTDIR")){this.statCache[t]=false;return i()}var o=e.slice(-1)==="/";this.statCache[t]=r;if(t.slice(-1)==="/"&&r&&!r.isDirectory())return i(null,false,r);var a=true;if(r)a=r.isDirectory()?"DIR":"FILE";this.cache[t]=this.cache[t]||a;if(o&&a==="FILE")return i();return i(null,a,r)}},497:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});const r=n(622);function shouldServe({entrypoint:e,files:t,requestPath:n}){n=n.replace(/\/$/,"");e=e.replace(/\\/,"/");if(e===n&&hasProp(t,e)){return true}const{dir:i,name:o}=r.parse(e);if(o==="index"&&i===n&&hasProp(t,e)){return true}return false}t.default=shouldServe;function hasProp(e,t){return Object.hasOwnProperty.call(e,t)}},498:function(e,t,n){"use strict";e.exports=PassThrough;var r=n(169);var i=n(130);i.inherits=n(536);i.inherits(PassThrough,r);function PassThrough(e){if(!(this instanceof PassThrough))return new PassThrough(e);r.call(this,e)}PassThrough.prototype._transform=function(e,t,n){n(null,e)}},502:function(e,t,n){"use strict";const r=n(323).fromCallback;const i=n(747);const o=n(622);const a=n(648);const s=n(301);const c=r(function emptyDir(e,t){t=t||function(){};i.readdir(e,(n,r)=>{if(n)return a.mkdirs(e,t);r=r.map(t=>o.join(e,t));deleteItem();function deleteItem(){const e=r.pop();if(!e)return t();s.remove(e,e=>{if(e)return t(e);deleteItem()})}})});function emptyDirSync(e){let t;try{t=i.readdirSync(e)}catch(t){return a.mkdirsSync(e)}t.forEach(t=>{t=o.join(e,t);s.removeSync(t)})}e.exports={emptyDirSync:emptyDirSync,emptydirSync:emptyDirSync,emptyDir:c,emptydir:c}},505:function(e,t,n){e.exports=which;which.sync=whichSync;var r=process.platform==="win32"||process.env.OSTYPE==="cygwin"||process.env.OSTYPE==="msys";var i=n(622);var o=r?";":":";var a=n(841);function getNotFoundError(e){var t=new Error("not found: "+e);t.code="ENOENT";return t}function getPathInfo(e,t){var n=t.colon||o;var i=t.path||process.env.PATH||"";var a=[""];i=i.split(n);var s="";if(r){i.unshift(process.cwd());s=t.pathExt||process.env.PATHEXT||".EXE;.CMD;.BAT;.COM";a=s.split(n);if(e.indexOf(".")!==-1&&a[0]!=="")a.unshift("")}if(e.match(/\//)||r&&e.match(/\\/))i=[""];return{env:i,ext:a,extExe:s}}function which(e,t,n){if(typeof t==="function"){n=t;t={}}var r=getPathInfo(e,t);var o=r.env;var s=r.ext;var c=r.extExe;var u=[];(function F(r,l){if(r===l){if(t.all&&u.length)return n(null,u);else return n(getNotFoundError(e))}var f=o[r];if(f.charAt(0)==='"'&&f.slice(-1)==='"')f=f.slice(1,-1);var p=i.join(f,e);if(!f&&/^\.[\\\/]/.test(e)){p=e.slice(0,2)+p}(function E(e,i){if(e===i)return F(r+1,l);var o=s[e];a(p+o,{pathExt:c},function(r,a){if(!r&&a){if(t.all)u.push(p+o);else return n(null,p+o)}return E(e+1,i)})})(0,s.length)})(0,o.length)}function whichSync(e,t){t=t||{};var n=getPathInfo(e,t);var r=n.env;var o=n.ext;var s=n.extExe;var c=[];for(var u=0,l=r.length;u<l;u++){var f=r[u];if(f.charAt(0)==='"'&&f.slice(-1)==='"')f=f.slice(1,-1);var p=i.join(f,e);if(!f&&/^\.[\\\/]/.test(e)){p=e.slice(0,2)+p}for(var d=0,h=o.length;d<h;d++){var m=p+o[d];var v;try{v=a.sync(m,{pathExt:s});if(v){if(t.all)c.push(m);else return m}}catch(e){}}}if(t.all&&c.length)return c;if(t.nothrow)return null;throw getNotFoundError(e)}},506:function(e,t,n){"use strict";var r=n(603).Buffer;t.utf16be=Utf16BECodec;function Utf16BECodec(){}Utf16BECodec.prototype.encoder=Utf16BEEncoder;Utf16BECodec.prototype.decoder=Utf16BEDecoder;Utf16BECodec.prototype.bomAware=true;function Utf16BEEncoder(){}Utf16BEEncoder.prototype.write=function(e){var t=r.from(e,"ucs2");for(var n=0;n<t.length;n+=2){var i=t[n];t[n]=t[n+1];t[n+1]=i}return t};Utf16BEEncoder.prototype.end=function(){};function Utf16BEDecoder(){this.overflowByte=-1}Utf16BEDecoder.prototype.write=function(e){if(e.length==0)return"";var t=r.alloc(e.length+1),n=0,i=0;if(this.overflowByte!==-1){t[0]=e[0];t[1]=this.overflowByte;n=1;i=2}for(;n<e.length-1;n+=2,i+=2){t[i]=e[n+1];t[i+1]=e[n]}this.overflowByte=n==e.length-1?e[e.length-1]:-1;return t.slice(0,i).toString("ucs2")};Utf16BEDecoder.prototype.end=function(){};t.utf16=Utf16Codec;function Utf16Codec(e,t){this.iconv=t}Utf16Codec.prototype.encoder=Utf16Encoder;Utf16Codec.prototype.decoder=Utf16Decoder;function Utf16Encoder(e,t){e=e||{};if(e.addBOM===undefined)e.addBOM=true;this.encoder=t.iconv.getEncoder("utf-16le",e)}Utf16Encoder.prototype.write=function(e){return this.encoder.write(e)};Utf16Encoder.prototype.end=function(){return this.encoder.end()};function Utf16Decoder(e,t){this.decoder=null;this.initialBytes=[];this.initialBytesLen=0;this.options=e||{};this.iconv=t.iconv}Utf16Decoder.prototype.write=function(e){if(!this.decoder){this.initialBytes.push(e);this.initialBytesLen+=e.length;if(this.initialBytesLen<16)return"";var e=r.concat(this.initialBytes),t=detectEncoding(e,this.options.defaultEncoding);this.decoder=this.iconv.getDecoder(t,this.options);this.initialBytes.length=this.initialBytesLen=0}return this.decoder.write(e)};Utf16Decoder.prototype.end=function(){if(!this.decoder){var e=r.concat(this.initialBytes),t=detectEncoding(e,this.options.defaultEncoding);this.decoder=this.iconv.getDecoder(t,this.options);var n=this.decoder.write(e),i=this.decoder.end();return i?n+i:n}return this.decoder.end()};function detectEncoding(e,t){var n=t||"utf-16le";if(e.length>=2){if(e[0]==254&&e[1]==255)n="utf-16be";else if(e[0]==255&&e[1]==254)n="utf-16le";else{var r=0,i=0,o=Math.min(e.length-e.length%2,64);for(var a=0;a<o;a+=2){if(e[a]===0&&e[a+1]!==0)i++;if(e[a]!==0&&e[a+1]===0)r++}if(i>r)n="utf-16be";else if(i<r)n="utf-16le"}}return n}},510:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(866));function streamToBuffer(e){return new Promise((t,n)=>{const r=[];e.on("data",r.push.bind(r));i.default(e,e=>{if(e){n(e);return}switch(r.length){case 0:t(Buffer.allocUnsafe(0));break;case 1:t(r[0]);break;default:t(Buffer.concat(r))}})})}t.default=streamToBuffer},511:function(e){"use strict";if(typeof process==="undefined"||!process.version||process.version.indexOf("v0.")===0||process.version.indexOf("v1.")===0&&process.version.indexOf("v1.8.")!==0){e.exports={nextTick:nextTick}}else{e.exports=process}function nextTick(e,t,n,r){if(typeof e!=="function"){throw new TypeError('"callback" argument must be a function')}var i=arguments.length;var o,a;switch(i){case 0:case 1:return process.nextTick(e);case 2:return process.nextTick(function afterTickOne(){e.call(null,t)});case 3:return process.nextTick(function afterTickTwo(){e.call(null,t,n)});case 4:return process.nextTick(function afterTickThree(){e.call(null,t,n,r)});default:o=new Array(i-1);a=0;while(a<o.length){o[a++]=arguments[a]}return process.nextTick(function afterTick(){e.apply(null,o)})}}},517:function(e,t,n){"use strict";const r=n(729);function symlinkType(e,t,n){n=typeof t==="function"?t:n;t=typeof t==="function"?false:t;if(t)return n(null,t);r.lstat(e,(e,r)=>{if(e)return n(null,"file");t=r&&r.isDirectory()?"dir":"file";n(null,t)})}function symlinkTypeSync(e,t){let n;if(t)return t;try{n=r.lstatSync(e)}catch(e){return"file"}return n&&n.isDirectory()?"dir":"file"}e.exports={symlinkType:symlinkType,symlinkTypeSync:symlinkTypeSync}},518:function(e){"use strict";e.exports=function(e){if(typeof Buffer.allocUnsafe==="function"){try{return Buffer.allocUnsafe(e)}catch(t){return new Buffer(e)}}return new Buffer(e)}},536:function(e,t,n){try{var r=n(669);if(typeof r.inherits!=="function")throw"";e.exports=r.inherits}catch(t){e.exports=n(637)}},538:function(e,t,n){var r=n(174);e.exports=r(once);e.exports.strict=r(onceStrict);once.proto=once(function(){Object.defineProperty(Function.prototype,"once",{value:function(){return once(this)},configurable:true});Object.defineProperty(Function.prototype,"onceStrict",{value:function(){return onceStrict(this)},configurable:true})});function once(e){var t=function(){if(t.called)return t.value;t.called=true;return t.value=e.apply(this,arguments)};t.called=false;return t}function onceStrict(e){var t=function(){if(t.called)throw new Error(t.onceError);t.called=true;return t.value=e.apply(this,arguments)};var n=e.name||"Function wrapped with `once`";t.onceError=n+" shouldn't be called more than once";t.called=false;return t}},544:function(e){e.exports=[["0","\0",127],["a140"," ,、。.‧;:?!︰…‥﹐﹑﹒·﹔﹕﹖﹗|–︱—︳╴︴﹏()︵︶{}︷︸〔〕︹︺【】︻︼《》︽︾〈〉︿﹀「」﹁﹂『』﹃﹄﹙﹚"],["a1a1","﹛﹜﹝﹞‘’“”〝〞‵′#&*※§〃○●△▲◎☆★◇◆□■▽▼㊣℅¯ ̄_ˍ﹉﹊﹍﹎﹋﹌﹟﹠﹡+-×÷±√<>=≦≧≠∞≒≡﹢",4,"~∩∪⊥∠∟⊿㏒㏑∫∮∵∴♀♂⊕⊙↑↓←→↖↗↙↘∥∣/"],["a240","\∕﹨$¥〒¢£%@℃℉﹩﹪﹫㏕㎜㎝㎞㏎㎡㎎㎏㏄°兙兛兞兝兡兣嗧瓩糎▁",7,"▏▎▍▌▋▊▉┼┴┬┤├▔─│▕┌┐└┘╭"],["a2a1","╮╰╯═╞╪╡◢◣◥◤╱╲╳0",9,"",9,"〡",8,"十卄卅A",25,"",21],["a340","Α",16,"Σ",6,"α",16,"σ",6,"ㄅ",10],["a3a1","ㄐ",25,"˙ˉˊˇˋ"],["a3e1","€"],["a440","一乙丁七乃九了二人儿入八几刀刁力匕十卜又三下丈上丫丸凡久么也乞于亡兀刃勺千叉口土士夕大女子孑孓寸小尢尸山川工己已巳巾干廾弋弓才"],["a4a1","丑丐不中丰丹之尹予云井互五亢仁什仃仆仇仍今介仄元允內六兮公冗凶分切刈勻勾勿化匹午升卅卞厄友及反壬天夫太夭孔少尤尺屯巴幻廿弔引心戈戶手扎支文斗斤方日曰月木欠止歹毋比毛氏水火爪父爻片牙牛犬王丙"],["a540","世丕且丘主乍乏乎以付仔仕他仗代令仙仞充兄冉冊冬凹出凸刊加功包匆北匝仟半卉卡占卯卮去可古右召叮叩叨叼司叵叫另只史叱台句叭叻四囚外"],["a5a1","央失奴奶孕它尼巨巧左市布平幼弁弘弗必戊打扔扒扑斥旦朮本未末札正母民氐永汁汀氾犯玄玉瓜瓦甘生用甩田由甲申疋白皮皿目矛矢石示禾穴立丞丟乒乓乩亙交亦亥仿伉伙伊伕伍伐休伏仲件任仰仳份企伋光兇兆先全"],["a640","共再冰列刑划刎刖劣匈匡匠印危吉吏同吊吐吁吋各向名合吃后吆吒因回囝圳地在圭圬圯圩夙多夷夸妄奸妃好她如妁字存宇守宅安寺尖屹州帆并年"],["a6a1","式弛忙忖戎戌戍成扣扛托收早旨旬旭曲曳有朽朴朱朵次此死氖汝汗汙江池汐汕污汛汍汎灰牟牝百竹米糸缶羊羽老考而耒耳聿肉肋肌臣自至臼舌舛舟艮色艾虫血行衣西阡串亨位住佇佗佞伴佛何估佐佑伽伺伸佃佔似但佣"],["a740","作你伯低伶余佝佈佚兌克免兵冶冷別判利刪刨劫助努劬匣即卵吝吭吞吾否呎吧呆呃吳呈呂君吩告吹吻吸吮吵吶吠吼呀吱含吟听囪困囤囫坊坑址坍"],["a7a1","均坎圾坐坏圻壯夾妝妒妨妞妣妙妖妍妤妓妊妥孝孜孚孛完宋宏尬局屁尿尾岐岑岔岌巫希序庇床廷弄弟彤形彷役忘忌志忍忱快忸忪戒我抄抗抖技扶抉扭把扼找批扳抒扯折扮投抓抑抆改攻攸旱更束李杏材村杜杖杞杉杆杠"],["a840","杓杗步每求汞沙沁沈沉沅沛汪決沐汰沌汨沖沒汽沃汲汾汴沆汶沍沔沘沂灶灼災灸牢牡牠狄狂玖甬甫男甸皂盯矣私秀禿究系罕肖肓肝肘肛肚育良芒"],["a8a1","芋芍見角言谷豆豕貝赤走足身車辛辰迂迆迅迄巡邑邢邪邦那酉釆里防阮阱阪阬並乖乳事些亞享京佯依侍佳使佬供例來侃佰併侈佩佻侖佾侏侑佺兔兒兕兩具其典冽函刻券刷刺到刮制剁劾劻卒協卓卑卦卷卸卹取叔受味呵"],["a940","咖呸咕咀呻呷咄咒咆呼咐呱呶和咚呢周咋命咎固垃坷坪坩坡坦坤坼夜奉奇奈奄奔妾妻委妹妮姑姆姐姍始姓姊妯妳姒姅孟孤季宗定官宜宙宛尚屈居"],["a9a1","屆岷岡岸岩岫岱岳帘帚帖帕帛帑幸庚店府底庖延弦弧弩往征彿彼忝忠忽念忿怏怔怯怵怖怪怕怡性怩怫怛或戕房戾所承拉拌拄抿拂抹拒招披拓拔拋拈抨抽押拐拙拇拍抵拚抱拘拖拗拆抬拎放斧於旺昔易昌昆昂明昀昏昕昊"],["aa40","昇服朋杭枋枕東果杳杷枇枝林杯杰板枉松析杵枚枓杼杪杲欣武歧歿氓氛泣注泳沱泌泥河沽沾沼波沫法泓沸泄油況沮泗泅泱沿治泡泛泊沬泯泜泖泠"],["aaa1","炕炎炒炊炙爬爭爸版牧物狀狎狙狗狐玩玨玟玫玥甽疝疙疚的盂盲直知矽社祀祁秉秈空穹竺糾罔羌羋者肺肥肢肱股肫肩肴肪肯臥臾舍芳芝芙芭芽芟芹花芬芥芯芸芣芰芾芷虎虱初表軋迎返近邵邸邱邶采金長門阜陀阿阻附"],["ab40","陂隹雨青非亟亭亮信侵侯便俠俑俏保促侶俘俟俊俗侮俐俄係俚俎俞侷兗冒冑冠剎剃削前剌剋則勇勉勃勁匍南卻厚叛咬哀咨哎哉咸咦咳哇哂咽咪品"],["aba1","哄哈咯咫咱咻咩咧咿囿垂型垠垣垢城垮垓奕契奏奎奐姜姘姿姣姨娃姥姪姚姦威姻孩宣宦室客宥封屎屏屍屋峙峒巷帝帥帟幽庠度建弈弭彥很待徊律徇後徉怒思怠急怎怨恍恰恨恢恆恃恬恫恪恤扁拜挖按拼拭持拮拽指拱拷"],["ac40","拯括拾拴挑挂政故斫施既春昭映昧是星昨昱昤曷柿染柱柔某柬架枯柵柩柯柄柑枴柚查枸柏柞柳枰柙柢柝柒歪殃殆段毒毗氟泉洋洲洪流津洌洱洞洗"],["aca1","活洽派洶洛泵洹洧洸洩洮洵洎洫炫為炳炬炯炭炸炮炤爰牲牯牴狩狠狡玷珊玻玲珍珀玳甚甭畏界畎畋疫疤疥疢疣癸皆皇皈盈盆盃盅省盹相眉看盾盼眇矜砂研砌砍祆祉祈祇禹禺科秒秋穿突竿竽籽紂紅紀紉紇約紆缸美羿耄"],["ad40","耐耍耑耶胖胥胚胃胄背胡胛胎胞胤胝致舢苧范茅苣苛苦茄若茂茉苒苗英茁苜苔苑苞苓苟苯茆虐虹虻虺衍衫要觔計訂訃貞負赴赳趴軍軌述迦迢迪迥"],["ada1","迭迫迤迨郊郎郁郃酋酊重閂限陋陌降面革韋韭音頁風飛食首香乘亳倌倍倣俯倦倥俸倩倖倆值借倚倒們俺倀倔倨俱倡個候倘俳修倭倪俾倫倉兼冤冥冢凍凌准凋剖剜剔剛剝匪卿原厝叟哨唐唁唷哼哥哲唆哺唔哩哭員唉哮哪"],["ae40","哦唧唇哽唏圃圄埂埔埋埃堉夏套奘奚娑娘娜娟娛娓姬娠娣娩娥娌娉孫屘宰害家宴宮宵容宸射屑展屐峭峽峻峪峨峰島崁峴差席師庫庭座弱徒徑徐恙"],["aea1","恣恥恐恕恭恩息悄悟悚悍悔悌悅悖扇拳挈拿捎挾振捕捂捆捏捉挺捐挽挪挫挨捍捌效敉料旁旅時晉晏晃晒晌晅晁書朔朕朗校核案框桓根桂桔栩梳栗桌桑栽柴桐桀格桃株桅栓栘桁殊殉殷氣氧氨氦氤泰浪涕消涇浦浸海浙涓"],["af40","浬涉浮浚浴浩涌涊浹涅浥涔烊烘烤烙烈烏爹特狼狹狽狸狷玆班琉珮珠珪珞畔畝畜畚留疾病症疲疳疽疼疹痂疸皋皰益盍盎眩真眠眨矩砰砧砸砝破砷"],["afa1","砥砭砠砟砲祕祐祠祟祖神祝祗祚秤秣秧租秦秩秘窄窈站笆笑粉紡紗紋紊素索純紐紕級紜納紙紛缺罟羔翅翁耆耘耕耙耗耽耿胱脂胰脅胭胴脆胸胳脈能脊胼胯臭臬舀舐航舫舨般芻茫荒荔荊茸荐草茵茴荏茲茹茶茗荀茱茨荃"],["b040","虔蚊蚪蚓蚤蚩蚌蚣蚜衰衷袁袂衽衹記訐討訌訕訊託訓訖訏訑豈豺豹財貢起躬軒軔軏辱送逆迷退迺迴逃追逅迸邕郡郝郢酒配酌釘針釗釜釙閃院陣陡"],["b0a1","陛陝除陘陞隻飢馬骨高鬥鬲鬼乾偺偽停假偃偌做偉健偶偎偕偵側偷偏倏偯偭兜冕凰剪副勒務勘動匐匏匙匿區匾參曼商啪啦啄啞啡啃啊唱啖問啕唯啤唸售啜唬啣唳啁啗圈國圉域堅堊堆埠埤基堂堵執培夠奢娶婁婉婦婪婀"],["b140","娼婢婚婆婊孰寇寅寄寂宿密尉專將屠屜屝崇崆崎崛崖崢崑崩崔崙崤崧崗巢常帶帳帷康庸庶庵庾張強彗彬彩彫得徙從徘御徠徜恿患悉悠您惋悴惦悽"],["b1a1","情悻悵惜悼惘惕惆惟悸惚惇戚戛扈掠控捲掖探接捷捧掘措捱掩掉掃掛捫推掄授掙採掬排掏掀捻捩捨捺敝敖救教敗啟敏敘敕敔斜斛斬族旋旌旎晝晚晤晨晦晞曹勗望梁梯梢梓梵桿桶梱梧梗械梃棄梭梆梅梔條梨梟梡梂欲殺"],["b240","毫毬氫涎涼淳淙液淡淌淤添淺清淇淋涯淑涮淞淹涸混淵淅淒渚涵淚淫淘淪深淮淨淆淄涪淬涿淦烹焉焊烽烯爽牽犁猜猛猖猓猙率琅琊球理現琍瓠瓶"],["b2a1","瓷甜產略畦畢異疏痔痕疵痊痍皎盔盒盛眷眾眼眶眸眺硫硃硎祥票祭移窒窕笠笨笛第符笙笞笮粒粗粕絆絃統紮紹紼絀細紳組累終紲紱缽羞羚翌翎習耜聊聆脯脖脣脫脩脰脤舂舵舷舶船莎莞莘荸莢莖莽莫莒莊莓莉莠荷荻荼"],["b340","莆莧處彪蛇蛀蚶蛄蚵蛆蛋蚱蚯蛉術袞袈被袒袖袍袋覓規訪訝訣訥許設訟訛訢豉豚販責貫貨貪貧赧赦趾趺軛軟這逍通逗連速逝逐逕逞造透逢逖逛途"],["b3a1","部郭都酗野釵釦釣釧釭釩閉陪陵陳陸陰陴陶陷陬雀雪雩章竟頂頃魚鳥鹵鹿麥麻傢傍傅備傑傀傖傘傚最凱割剴創剩勞勝勛博厥啻喀喧啼喊喝喘喂喜喪喔喇喋喃喳單喟唾喲喚喻喬喱啾喉喫喙圍堯堪場堤堰報堡堝堠壹壺奠"],["b440","婷媚婿媒媛媧孳孱寒富寓寐尊尋就嵌嵐崴嵇巽幅帽幀幃幾廊廁廂廄弼彭復循徨惑惡悲悶惠愜愣惺愕惰惻惴慨惱愎惶愉愀愒戟扉掣掌描揀揩揉揆揍"],["b4a1","插揣提握揖揭揮捶援揪換摒揚揹敞敦敢散斑斐斯普晰晴晶景暑智晾晷曾替期朝棺棕棠棘棗椅棟棵森棧棹棒棲棣棋棍植椒椎棉棚楮棻款欺欽殘殖殼毯氮氯氬港游湔渡渲湧湊渠渥渣減湛湘渤湖湮渭渦湯渴湍渺測湃渝渾滋"],["b540","溉渙湎湣湄湲湩湟焙焚焦焰無然煮焜牌犄犀猶猥猴猩琺琪琳琢琥琵琶琴琯琛琦琨甥甦畫番痢痛痣痙痘痞痠登發皖皓皴盜睏短硝硬硯稍稈程稅稀窘"],["b5a1","窗窖童竣等策筆筐筒答筍筋筏筑粟粥絞結絨絕紫絮絲絡給絢絰絳善翔翕耋聒肅腕腔腋腑腎脹腆脾腌腓腴舒舜菩萃菸萍菠菅萋菁華菱菴著萊菰萌菌菽菲菊萸萎萄菜萇菔菟虛蛟蛙蛭蛔蛛蛤蛐蛞街裁裂袱覃視註詠評詞証詁"],["b640","詔詛詐詆訴診訶詖象貂貯貼貳貽賁費賀貴買貶貿貸越超趁跎距跋跚跑跌跛跆軻軸軼辜逮逵週逸進逶鄂郵鄉郾酣酥量鈔鈕鈣鈉鈞鈍鈐鈇鈑閔閏開閑"],["b6a1","間閒閎隊階隋陽隅隆隍陲隄雁雅雄集雇雯雲韌項順須飧飪飯飩飲飭馮馭黃黍黑亂傭債傲傳僅傾催傷傻傯僇剿剷剽募勦勤勢勣匯嗟嗨嗓嗦嗎嗜嗇嗑嗣嗤嗯嗚嗡嗅嗆嗥嗉園圓塞塑塘塗塚塔填塌塭塊塢塒塋奧嫁嫉嫌媾媽媼"],["b740","媳嫂媲嵩嵯幌幹廉廈弒彙徬微愚意慈感想愛惹愁愈慎慌慄慍愾愴愧愍愆愷戡戢搓搾搞搪搭搽搬搏搜搔損搶搖搗搆敬斟新暗暉暇暈暖暄暘暍會榔業"],["b7a1","楚楷楠楔極椰概楊楨楫楞楓楹榆楝楣楛歇歲毀殿毓毽溢溯滓溶滂源溝滇滅溥溘溼溺溫滑準溜滄滔溪溧溴煎煙煩煤煉照煜煬煦煌煥煞煆煨煖爺牒猷獅猿猾瑯瑚瑕瑟瑞瑁琿瑙瑛瑜當畸瘀痰瘁痲痱痺痿痴痳盞盟睛睫睦睞督"],["b840","睹睪睬睜睥睨睢矮碎碰碗碘碌碉硼碑碓硿祺祿禁萬禽稜稚稠稔稟稞窟窠筷節筠筮筧粱粳粵經絹綑綁綏絛置罩罪署義羨群聖聘肆肄腱腰腸腥腮腳腫"],["b8a1","腹腺腦舅艇蒂葷落萱葵葦葫葉葬葛萼萵葡董葩葭葆虞虜號蛹蜓蜈蜇蜀蛾蛻蜂蜃蜆蜊衙裟裔裙補裘裝裡裊裕裒覜解詫該詳試詩詰誇詼詣誠話誅詭詢詮詬詹詻訾詨豢貊貉賊資賈賄貲賃賂賅跡跟跨路跳跺跪跤跦躲較載軾輊"],["b940","辟農運遊道遂達逼違遐遇遏過遍遑逾遁鄒鄗酬酪酩釉鈷鉗鈸鈽鉀鈾鉛鉋鉤鉑鈴鉉鉍鉅鈹鈿鉚閘隘隔隕雍雋雉雊雷電雹零靖靴靶預頑頓頊頒頌飼飴"],["b9a1","飽飾馳馱馴髡鳩麂鼎鼓鼠僧僮僥僖僭僚僕像僑僱僎僩兢凳劃劂匱厭嗾嘀嘛嘗嗽嘔嘆嘉嘍嘎嗷嘖嘟嘈嘐嗶團圖塵塾境墓墊塹墅塽壽夥夢夤奪奩嫡嫦嫩嫗嫖嫘嫣孵寞寧寡寥實寨寢寤察對屢嶄嶇幛幣幕幗幔廓廖弊彆彰徹慇"],["ba40","愿態慷慢慣慟慚慘慵截撇摘摔撤摸摟摺摑摧搴摭摻敲斡旗旖暢暨暝榜榨榕槁榮槓構榛榷榻榫榴槐槍榭槌榦槃榣歉歌氳漳演滾漓滴漩漾漠漬漏漂漢"],["baa1","滿滯漆漱漸漲漣漕漫漯澈漪滬漁滲滌滷熔熙煽熊熄熒爾犒犖獄獐瑤瑣瑪瑰瑭甄疑瘧瘍瘋瘉瘓盡監瞄睽睿睡磁碟碧碳碩碣禎福禍種稱窪窩竭端管箕箋筵算箝箔箏箸箇箄粹粽精綻綰綜綽綾綠緊綴網綱綺綢綿綵綸維緒緇綬"],["bb40","罰翠翡翟聞聚肇腐膀膏膈膊腿膂臧臺與舔舞艋蓉蒿蓆蓄蒙蒞蒲蒜蓋蒸蓀蓓蒐蒼蓑蓊蜿蜜蜻蜢蜥蜴蜘蝕蜷蜩裳褂裴裹裸製裨褚裯誦誌語誣認誡誓誤"],["bba1","說誥誨誘誑誚誧豪貍貌賓賑賒赫趙趕跼輔輒輕輓辣遠遘遜遣遙遞遢遝遛鄙鄘鄞酵酸酷酴鉸銀銅銘銖鉻銓銜銨鉼銑閡閨閩閣閥閤隙障際雌雒需靼鞅韶頗領颯颱餃餅餌餉駁骯骰髦魁魂鳴鳶鳳麼鼻齊億儀僻僵價儂儈儉儅凜"],["bc40","劇劈劉劍劊勰厲嘮嘻嘹嘲嘿嘴嘩噓噎噗噴嘶嘯嘰墀墟增墳墜墮墩墦奭嬉嫻嬋嫵嬌嬈寮寬審寫層履嶝嶔幢幟幡廢廚廟廝廣廠彈影德徵慶慧慮慝慕憂"],["bca1","慼慰慫慾憧憐憫憎憬憚憤憔憮戮摩摯摹撞撲撈撐撰撥撓撕撩撒撮播撫撚撬撙撢撳敵敷數暮暫暴暱樣樟槨樁樞標槽模樓樊槳樂樅槭樑歐歎殤毅毆漿潼澄潑潦潔澆潭潛潸潮澎潺潰潤澗潘滕潯潠潟熟熬熱熨牖犛獎獗瑩璋璃"],["bd40","瑾璀畿瘠瘩瘟瘤瘦瘡瘢皚皺盤瞎瞇瞌瞑瞋磋磅確磊碾磕碼磐稿稼穀稽稷稻窯窮箭箱範箴篆篇篁箠篌糊締練緯緻緘緬緝編緣線緞緩綞緙緲緹罵罷羯"],["bda1","翩耦膛膜膝膠膚膘蔗蔽蔚蓮蔬蔭蔓蔑蔣蔡蔔蓬蔥蓿蔆螂蝴蝶蝠蝦蝸蝨蝙蝗蝌蝓衛衝褐複褒褓褕褊誼諒談諄誕請諸課諉諂調誰論諍誶誹諛豌豎豬賠賞賦賤賬賭賢賣賜質賡赭趟趣踫踐踝踢踏踩踟踡踞躺輝輛輟輩輦輪輜輞"],["be40","輥適遮遨遭遷鄰鄭鄧鄱醇醉醋醃鋅銻銷鋪銬鋤鋁銳銼鋒鋇鋰銲閭閱霄霆震霉靠鞍鞋鞏頡頫頜颳養餓餒餘駝駐駟駛駑駕駒駙骷髮髯鬧魅魄魷魯鴆鴉"],["bea1","鴃麩麾黎墨齒儒儘儔儐儕冀冪凝劑劓勳噙噫噹噩噤噸噪器噥噱噯噬噢噶壁墾壇壅奮嬝嬴學寰導彊憲憑憩憊懍憶憾懊懈戰擅擁擋撻撼據擄擇擂操撿擒擔撾整曆曉暹曄曇暸樽樸樺橙橫橘樹橄橢橡橋橇樵機橈歙歷氅濂澱澡"],["bf40","濃澤濁澧澳激澹澶澦澠澴熾燉燐燒燈燕熹燎燙燜燃燄獨璜璣璘璟璞瓢甌甍瘴瘸瘺盧盥瞠瞞瞟瞥磨磚磬磧禦積穎穆穌穋窺篙簑築篤篛篡篩篦糕糖縊"],["bfa1","縑縈縛縣縞縝縉縐罹羲翰翱翮耨膳膩膨臻興艘艙蕊蕙蕈蕨蕩蕃蕉蕭蕪蕞螃螟螞螢融衡褪褲褥褫褡親覦諦諺諫諱謀諜諧諮諾謁謂諷諭諳諶諼豫豭貓賴蹄踱踴蹂踹踵輻輯輸輳辨辦遵遴選遲遼遺鄴醒錠錶鋸錳錯錢鋼錫錄錚"],["c040","錐錦錡錕錮錙閻隧隨險雕霎霑霖霍霓霏靛靜靦鞘頰頸頻頷頭頹頤餐館餞餛餡餚駭駢駱骸骼髻髭鬨鮑鴕鴣鴦鴨鴒鴛默黔龍龜優償儡儲勵嚎嚀嚐嚅嚇"],["c0a1","嚏壕壓壑壎嬰嬪嬤孺尷屨嶼嶺嶽嶸幫彌徽應懂懇懦懋戲戴擎擊擘擠擰擦擬擱擢擭斂斃曙曖檀檔檄檢檜櫛檣橾檗檐檠歜殮毚氈濘濱濟濠濛濤濫濯澀濬濡濩濕濮濰燧營燮燦燥燭燬燴燠爵牆獰獲璩環璦璨癆療癌盪瞳瞪瞰瞬"],["c140","瞧瞭矯磷磺磴磯礁禧禪穗窿簇簍篾篷簌篠糠糜糞糢糟糙糝縮績繆縷縲繃縫總縱繅繁縴縹繈縵縿縯罄翳翼聱聲聰聯聳臆臃膺臂臀膿膽臉膾臨舉艱薪"],["c1a1","薄蕾薜薑薔薯薛薇薨薊虧蟀蟑螳蟒蟆螫螻螺蟈蟋褻褶襄褸褽覬謎謗謙講謊謠謝謄謐豁谿豳賺賽購賸賻趨蹉蹋蹈蹊轄輾轂轅輿避遽還邁邂邀鄹醣醞醜鍍鎂錨鍵鍊鍥鍋錘鍾鍬鍛鍰鍚鍔闊闋闌闈闆隱隸雖霜霞鞠韓顆颶餵騁"],["c240","駿鮮鮫鮪鮭鴻鴿麋黏點黜黝黛鼾齋叢嚕嚮壙壘嬸彝懣戳擴擲擾攆擺擻擷斷曜朦檳檬櫃檻檸櫂檮檯歟歸殯瀉瀋濾瀆濺瀑瀏燻燼燾燸獷獵璧璿甕癖癘"],["c2a1","癒瞽瞿瞻瞼礎禮穡穢穠竄竅簫簧簪簞簣簡糧織繕繞繚繡繒繙罈翹翻職聶臍臏舊藏薩藍藐藉薰薺薹薦蟯蟬蟲蟠覆覲觴謨謹謬謫豐贅蹙蹣蹦蹤蹟蹕軀轉轍邇邃邈醫醬釐鎔鎊鎖鎢鎳鎮鎬鎰鎘鎚鎗闔闖闐闕離雜雙雛雞霤鞣鞦"],["c340","鞭韹額顏題顎顓颺餾餿餽餮馥騎髁鬃鬆魏魎魍鯊鯉鯽鯈鯀鵑鵝鵠黠鼕鼬儳嚥壞壟壢寵龐廬懲懷懶懵攀攏曠曝櫥櫝櫚櫓瀛瀟瀨瀚瀝瀕瀘爆爍牘犢獸"],["c3a1","獺璽瓊瓣疇疆癟癡矇礙禱穫穩簾簿簸簽簷籀繫繭繹繩繪羅繳羶羹羸臘藩藝藪藕藤藥藷蟻蠅蠍蟹蟾襠襟襖襞譁譜識證譚譎譏譆譙贈贊蹼蹲躇蹶蹬蹺蹴轔轎辭邊邋醱醮鏡鏑鏟鏃鏈鏜鏝鏖鏢鏍鏘鏤鏗鏨關隴難霪霧靡韜韻類"],["c440","願顛颼饅饉騖騙鬍鯨鯧鯖鯛鶉鵡鵲鵪鵬麒麗麓麴勸嚨嚷嚶嚴嚼壤孀孃孽寶巉懸懺攘攔攙曦朧櫬瀾瀰瀲爐獻瓏癢癥礦礪礬礫竇競籌籃籍糯糰辮繽繼"],["c4a1","纂罌耀臚艦藻藹蘑藺蘆蘋蘇蘊蠔蠕襤覺觸議譬警譯譟譫贏贍躉躁躅躂醴釋鐘鐃鏽闡霰飄饒饑馨騫騰騷騵鰓鰍鹹麵黨鼯齟齣齡儷儸囁囀囂夔屬巍懼懾攝攜斕曩櫻欄櫺殲灌爛犧瓖瓔癩矓籐纏續羼蘗蘭蘚蠣蠢蠡蠟襪襬覽譴"],["c540","護譽贓躊躍躋轟辯醺鐮鐳鐵鐺鐸鐲鐫闢霸霹露響顧顥饗驅驃驀騾髏魔魑鰭鰥鶯鶴鷂鶸麝黯鼙齜齦齧儼儻囈囊囉孿巔巒彎懿攤權歡灑灘玀瓤疊癮癬"],["c5a1","禳籠籟聾聽臟襲襯觼讀贖贗躑躓轡酈鑄鑑鑒霽霾韃韁顫饕驕驍髒鬚鱉鰱鰾鰻鷓鷗鼴齬齪龔囌巖戀攣攫攪曬欐瓚竊籤籣籥纓纖纔臢蘸蘿蠱變邐邏鑣鑠鑤靨顯饜驚驛驗髓體髑鱔鱗鱖鷥麟黴囑壩攬灞癱癲矗罐羈蠶蠹衢讓讒"],["c640","讖艷贛釀鑪靂靈靄韆顰驟鬢魘鱟鷹鷺鹼鹽鼇齷齲廳欖灣籬籮蠻觀躡釁鑲鑰顱饞髖鬣黌灤矚讚鑷韉驢驥纜讜躪釅鑽鑾鑼鱷鱸黷豔鑿鸚爨驪鬱鸛鸞籲"],["c940","乂乜凵匚厂万丌乇亍囗兀屮彳丏冇与丮亓仂仉仈冘勼卬厹圠夃夬尐巿旡殳毌气爿丱丼仨仜仩仡仝仚刌匜卌圢圣夗夯宁宄尒尻屴屳帄庀庂忉戉扐氕"],["c9a1","氶汃氿氻犮犰玊禸肊阞伎优伬仵伔仱伀价伈伝伂伅伢伓伄仴伒冱刓刉刐劦匢匟卍厊吇囡囟圮圪圴夼妀奼妅奻奾奷奿孖尕尥屼屺屻屾巟幵庄异弚彴忕忔忏扜扞扤扡扦扢扙扠扚扥旯旮朾朹朸朻机朿朼朳氘汆汒汜汏汊汔汋"],["ca40","汌灱牞犴犵玎甪癿穵网艸艼芀艽艿虍襾邙邗邘邛邔阢阤阠阣佖伻佢佉体佤伾佧佒佟佁佘伭伳伿佡冏冹刜刞刡劭劮匉卣卲厎厏吰吷吪呔呅吙吜吥吘"],["caa1","吽呏呁吨吤呇囮囧囥坁坅坌坉坋坒夆奀妦妘妠妗妎妢妐妏妧妡宎宒尨尪岍岏岈岋岉岒岊岆岓岕巠帊帎庋庉庌庈庍弅弝彸彶忒忑忐忭忨忮忳忡忤忣忺忯忷忻怀忴戺抃抌抎抏抔抇扱扻扺扰抁抈扷扽扲扴攷旰旴旳旲旵杅杇"],["cb40","杙杕杌杈杝杍杚杋毐氙氚汸汧汫沄沋沏汱汯汩沚汭沇沕沜汦汳汥汻沎灴灺牣犿犽狃狆狁犺狅玕玗玓玔玒町甹疔疕皁礽耴肕肙肐肒肜芐芏芅芎芑芓"],["cba1","芊芃芄豸迉辿邟邡邥邞邧邠阰阨阯阭丳侘佼侅佽侀侇佶佴侉侄佷佌侗佪侚佹侁佸侐侜侔侞侒侂侕佫佮冞冼冾刵刲刳剆刱劼匊匋匼厒厔咇呿咁咑咂咈呫呺呾呥呬呴呦咍呯呡呠咘呣呧呤囷囹坯坲坭坫坱坰坶垀坵坻坳坴坢"],["cc40","坨坽夌奅妵妺姏姎妲姌姁妶妼姃姖妱妽姀姈妴姇孢孥宓宕屄屇岮岤岠岵岯岨岬岟岣岭岢岪岧岝岥岶岰岦帗帔帙弨弢弣弤彔徂彾彽忞忥怭怦怙怲怋"],["cca1","怴怊怗怳怚怞怬怢怍怐怮怓怑怌怉怜戔戽抭抴拑抾抪抶拊抮抳抯抻抩抰抸攽斨斻昉旼昄昒昈旻昃昋昍昅旽昑昐曶朊枅杬枎枒杶杻枘枆构杴枍枌杺枟枑枙枃杽极杸杹枔欥殀歾毞氝沓泬泫泮泙沶泔沭泧沷泐泂沺泃泆泭泲"],["cd40","泒泝沴沊沝沀泞泀洰泍泇沰泹泏泩泑炔炘炅炓炆炄炑炖炂炚炃牪狖狋狘狉狜狒狔狚狌狑玤玡玭玦玢玠玬玝瓝瓨甿畀甾疌疘皯盳盱盰盵矸矼矹矻矺"],["cda1","矷祂礿秅穸穻竻籵糽耵肏肮肣肸肵肭舠芠苀芫芚芘芛芵芧芮芼芞芺芴芨芡芩苂芤苃芶芢虰虯虭虮豖迒迋迓迍迖迕迗邲邴邯邳邰阹阽阼阺陃俍俅俓侲俉俋俁俔俜俙侻侳俛俇俖侺俀侹俬剄剉勀勂匽卼厗厖厙厘咺咡咭咥哏"],["ce40","哃茍咷咮哖咶哅哆咠呰咼咢咾呲哞咰垵垞垟垤垌垗垝垛垔垘垏垙垥垚垕壴复奓姡姞姮娀姱姝姺姽姼姶姤姲姷姛姩姳姵姠姾姴姭宨屌峐峘峌峗峋峛"],["cea1","峞峚峉峇峊峖峓峔峏峈峆峎峟峸巹帡帢帣帠帤庰庤庢庛庣庥弇弮彖徆怷怹恔恲恞恅恓恇恉恛恌恀恂恟怤恄恘恦恮扂扃拏挍挋拵挎挃拫拹挏挌拸拶挀挓挔拺挕拻拰敁敃斪斿昶昡昲昵昜昦昢昳昫昺昝昴昹昮朏朐柁柲柈枺"],["cf40","柜枻柸柘柀枷柅柫柤柟枵柍枳柷柶柮柣柂枹柎柧柰枲柼柆柭柌枮柦柛柺柉柊柃柪柋欨殂殄殶毖毘毠氠氡洨洴洭洟洼洿洒洊泚洳洄洙洺洚洑洀洝浂"],["cfa1","洁洘洷洃洏浀洇洠洬洈洢洉洐炷炟炾炱炰炡炴炵炩牁牉牊牬牰牳牮狊狤狨狫狟狪狦狣玅珌珂珈珅玹玶玵玴珫玿珇玾珃珆玸珋瓬瓮甮畇畈疧疪癹盄眈眃眄眅眊盷盻盺矧矨砆砑砒砅砐砏砎砉砃砓祊祌祋祅祄秕种秏秖秎窀"],["d040","穾竑笀笁籺籸籹籿粀粁紃紈紁罘羑羍羾耇耎耏耔耷胘胇胠胑胈胂胐胅胣胙胜胊胕胉胏胗胦胍臿舡芔苙苾苹茇苨茀苕茺苫苖苴苬苡苲苵茌苻苶苰苪"],["d0a1","苤苠苺苳苭虷虴虼虳衁衎衧衪衩觓訄訇赲迣迡迮迠郱邽邿郕郅邾郇郋郈釔釓陔陏陑陓陊陎倞倅倇倓倢倰倛俵俴倳倷倬俶俷倗倜倠倧倵倯倱倎党冔冓凊凄凅凈凎剡剚剒剞剟剕剢勍匎厞唦哢唗唒哧哳哤唚哿唄唈哫唑唅哱"],["d140","唊哻哷哸哠唎唃唋圁圂埌堲埕埒垺埆垽垼垸垶垿埇埐垹埁夎奊娙娖娭娮娕娏娗娊娞娳孬宧宭宬尃屖屔峬峿峮峱峷崀峹帩帨庨庮庪庬弳弰彧恝恚恧"],["d1a1","恁悢悈悀悒悁悝悃悕悛悗悇悜悎戙扆拲挐捖挬捄捅挶捃揤挹捋捊挼挩捁挴捘捔捙挭捇挳捚捑挸捗捀捈敊敆旆旃旄旂晊晟晇晑朒朓栟栚桉栲栳栻桋桏栖栱栜栵栫栭栯桎桄栴栝栒栔栦栨栮桍栺栥栠欬欯欭欱欴歭肂殈毦毤"],["d240","毨毣毢毧氥浺浣浤浶洍浡涒浘浢浭浯涑涍淯浿涆浞浧浠涗浰浼浟涂涘洯浨涋浾涀涄洖涃浻浽浵涐烜烓烑烝烋缹烢烗烒烞烠烔烍烅烆烇烚烎烡牂牸"],["d2a1","牷牶猀狺狴狾狶狳狻猁珓珙珥珖玼珧珣珩珜珒珛珔珝珚珗珘珨瓞瓟瓴瓵甡畛畟疰痁疻痄痀疿疶疺皊盉眝眛眐眓眒眣眑眕眙眚眢眧砣砬砢砵砯砨砮砫砡砩砳砪砱祔祛祏祜祓祒祑秫秬秠秮秭秪秜秞秝窆窉窅窋窌窊窇竘笐"],["d340","笄笓笅笏笈笊笎笉笒粄粑粊粌粈粍粅紞紝紑紎紘紖紓紟紒紏紌罜罡罞罠罝罛羖羒翃翂翀耖耾耹胺胲胹胵脁胻脀舁舯舥茳茭荄茙荑茥荖茿荁茦茜茢"],["d3a1","荂荎茛茪茈茼荍茖茤茠茷茯茩荇荅荌荓茞茬荋茧荈虓虒蚢蚨蚖蚍蚑蚞蚇蚗蚆蚋蚚蚅蚥蚙蚡蚧蚕蚘蚎蚝蚐蚔衃衄衭衵衶衲袀衱衿衯袃衾衴衼訒豇豗豻貤貣赶赸趵趷趶軑軓迾迵适迿迻逄迼迶郖郠郙郚郣郟郥郘郛郗郜郤酐"],["d440","酎酏釕釢釚陜陟隼飣髟鬯乿偰偪偡偞偠偓偋偝偲偈偍偁偛偊偢倕偅偟偩偫偣偤偆偀偮偳偗偑凐剫剭剬剮勖勓匭厜啵啶唼啍啐唴唪啑啢唶唵唰啒啅"],["d4a1","唌唲啥啎唹啈唭唻啀啋圊圇埻堔埢埶埜埴堀埭埽堈埸堋埳埏堇埮埣埲埥埬埡堎埼堐埧堁堌埱埩埰堍堄奜婠婘婕婧婞娸娵婭婐婟婥婬婓婤婗婃婝婒婄婛婈媎娾婍娹婌婰婩婇婑婖婂婜孲孮寁寀屙崞崋崝崚崠崌崨崍崦崥崏"],["d540","崰崒崣崟崮帾帴庱庴庹庲庳弶弸徛徖徟悊悐悆悾悰悺惓惔惏惤惙惝惈悱惛悷惊悿惃惍惀挲捥掊掂捽掽掞掭掝掗掫掎捯掇掐据掯捵掜捭掮捼掤挻掟"],["d5a1","捸掅掁掑掍捰敓旍晥晡晛晙晜晢朘桹梇梐梜桭桮梮梫楖桯梣梬梩桵桴梲梏桷梒桼桫桲梪梀桱桾梛梖梋梠梉梤桸桻梑梌梊桽欶欳欷欸殑殏殍殎殌氪淀涫涴涳湴涬淩淢涷淶淔渀淈淠淟淖涾淥淜淝淛淴淊涽淭淰涺淕淂淏淉"],["d640","淐淲淓淽淗淍淣涻烺焍烷焗烴焌烰焄烳焐烼烿焆焓焀烸烶焋焂焎牾牻牼牿猝猗猇猑猘猊猈狿猏猞玈珶珸珵琄琁珽琇琀珺珼珿琌琋珴琈畤畣痎痒痏"],["d6a1","痋痌痑痐皏皉盓眹眯眭眱眲眴眳眽眥眻眵硈硒硉硍硊硌砦硅硐祤祧祩祪祣祫祡离秺秸秶秷窏窔窐笵筇笴笥笰笢笤笳笘笪笝笱笫笭笯笲笸笚笣粔粘粖粣紵紽紸紶紺絅紬紩絁絇紾紿絊紻紨罣羕羜羝羛翊翋翍翐翑翇翏翉耟"],["d740","耞耛聇聃聈脘脥脙脛脭脟脬脞脡脕脧脝脢舑舸舳舺舴舲艴莐莣莨莍荺荳莤荴莏莁莕莙荵莔莩荽莃莌莝莛莪莋荾莥莯莈莗莰荿莦莇莮荶莚虙虖蚿蚷"],["d7a1","蛂蛁蛅蚺蚰蛈蚹蚳蚸蛌蚴蚻蚼蛃蚽蚾衒袉袕袨袢袪袚袑袡袟袘袧袙袛袗袤袬袌袓袎覂觖觙觕訰訧訬訞谹谻豜豝豽貥赽赻赹趼跂趹趿跁軘軞軝軜軗軠軡逤逋逑逜逌逡郯郪郰郴郲郳郔郫郬郩酖酘酚酓酕釬釴釱釳釸釤釹釪"],["d840","釫釷釨釮镺閆閈陼陭陫陱陯隿靪頄飥馗傛傕傔傞傋傣傃傌傎傝偨傜傒傂傇兟凔匒匑厤厧喑喨喥喭啷噅喢喓喈喏喵喁喣喒喤啽喌喦啿喕喡喎圌堩堷"],["d8a1","堙堞堧堣堨埵塈堥堜堛堳堿堶堮堹堸堭堬堻奡媯媔媟婺媢媞婸媦婼媥媬媕媮娷媄媊媗媃媋媩婻婽媌媜媏媓媝寪寍寋寔寑寊寎尌尰崷嵃嵫嵁嵋崿崵嵑嵎嵕崳崺嵒崽崱嵙嵂崹嵉崸崼崲崶嵀嵅幄幁彘徦徥徫惉悹惌惢惎惄愔"],["d940","惲愊愖愅惵愓惸惼惾惁愃愘愝愐惿愄愋扊掔掱掰揎揥揨揯揃撝揳揊揠揶揕揲揵摡揟掾揝揜揄揘揓揂揇揌揋揈揰揗揙攲敧敪敤敜敨敥斌斝斞斮旐旒"],["d9a1","晼晬晻暀晱晹晪晲朁椌棓椄棜椪棬棪棱椏棖棷棫棤棶椓椐棳棡椇棌椈楰梴椑棯棆椔棸棐棽棼棨椋椊椗棎棈棝棞棦棴棑椆棔棩椕椥棇欹欻欿欼殔殗殙殕殽毰毲毳氰淼湆湇渟湉溈渼渽湅湢渫渿湁湝湳渜渳湋湀湑渻渃渮湞"],["da40","湨湜湡渱渨湠湱湫渹渢渰湓湥渧湸湤湷湕湹湒湦渵渶湚焠焞焯烻焮焱焣焥焢焲焟焨焺焛牋牚犈犉犆犅犋猒猋猰猢猱猳猧猲猭猦猣猵猌琮琬琰琫琖"],["daa1","琚琡琭琱琤琣琝琩琠琲瓻甯畯畬痧痚痡痦痝痟痤痗皕皒盚睆睇睄睍睅睊睎睋睌矞矬硠硤硥硜硭硱硪确硰硩硨硞硢祴祳祲祰稂稊稃稌稄窙竦竤筊笻筄筈筌筎筀筘筅粢粞粨粡絘絯絣絓絖絧絪絏絭絜絫絒絔絩絑絟絎缾缿罥"],["db40","罦羢羠羡翗聑聏聐胾胔腃腊腒腏腇脽腍脺臦臮臷臸臹舄舼舽舿艵茻菏菹萣菀菨萒菧菤菼菶萐菆菈菫菣莿萁菝菥菘菿菡菋菎菖菵菉萉萏菞萑萆菂菳"],["dba1","菕菺菇菑菪萓菃菬菮菄菻菗菢萛菛菾蛘蛢蛦蛓蛣蛚蛪蛝蛫蛜蛬蛩蛗蛨蛑衈衖衕袺裗袹袸裀袾袶袼袷袽袲褁裉覕覘覗觝觚觛詎詍訹詙詀詗詘詄詅詒詈詑詊詌詏豟貁貀貺貾貰貹貵趄趀趉跘跓跍跇跖跜跏跕跙跈跗跅軯軷軺"],["dc40","軹軦軮軥軵軧軨軶軫軱軬軴軩逭逴逯鄆鄬鄄郿郼鄈郹郻鄁鄀鄇鄅鄃酡酤酟酢酠鈁鈊鈥鈃鈚鈦鈏鈌鈀鈒釿釽鈆鈄鈧鈂鈜鈤鈙鈗鈅鈖镻閍閌閐隇陾隈"],["dca1","隉隃隀雂雈雃雱雰靬靰靮頇颩飫鳦黹亃亄亶傽傿僆傮僄僊傴僈僂傰僁傺傱僋僉傶傸凗剺剸剻剼嗃嗛嗌嗐嗋嗊嗝嗀嗔嗄嗩喿嗒喍嗏嗕嗢嗖嗈嗲嗍嗙嗂圔塓塨塤塏塍塉塯塕塎塝塙塥塛堽塣塱壼嫇嫄嫋媺媸媱媵媰媿嫈媻嫆"],["dd40","媷嫀嫊媴媶嫍媹媐寖寘寙尟尳嵱嵣嵊嵥嵲嵬嵞嵨嵧嵢巰幏幎幊幍幋廅廌廆廋廇彀徯徭惷慉慊愫慅愶愲愮慆愯慏愩慀戠酨戣戥戤揅揱揫搐搒搉搠搤"],["dda1","搳摃搟搕搘搹搷搢搣搌搦搰搨摁搵搯搊搚摀搥搧搋揧搛搮搡搎敯斒旓暆暌暕暐暋暊暙暔晸朠楦楟椸楎楢楱椿楅楪椹楂楗楙楺楈楉椵楬椳椽楥棰楸椴楩楀楯楄楶楘楁楴楌椻楋椷楜楏楑椲楒椯楻椼歆歅歃歂歈歁殛嗀毻毼"],["de40","毹毷毸溛滖滈溏滀溟溓溔溠溱溹滆滒溽滁溞滉溷溰滍溦滏溲溾滃滜滘溙溒溎溍溤溡溿溳滐滊溗溮溣煇煔煒煣煠煁煝煢煲煸煪煡煂煘煃煋煰煟煐煓"],["dea1","煄煍煚牏犍犌犑犐犎猼獂猻猺獀獊獉瑄瑊瑋瑒瑑瑗瑀瑏瑐瑎瑂瑆瑍瑔瓡瓿瓾瓽甝畹畷榃痯瘏瘃痷痾痼痹痸瘐痻痶痭痵痽皙皵盝睕睟睠睒睖睚睩睧睔睙睭矠碇碚碔碏碄碕碅碆碡碃硹碙碀碖硻祼禂祽祹稑稘稙稒稗稕稢稓"],["df40","稛稐窣窢窞竫筦筤筭筴筩筲筥筳筱筰筡筸筶筣粲粴粯綈綆綀綍絿綅絺綎絻綃絼綌綔綄絽綒罭罫罧罨罬羦羥羧翛翜耡腤腠腷腜腩腛腢腲朡腞腶腧腯"],["dfa1","腄腡舝艉艄艀艂艅蓱萿葖葶葹蒏蒍葥葑葀蒆葧萰葍葽葚葙葴葳葝蔇葞萷萺萴葺葃葸萲葅萩菙葋萯葂萭葟葰萹葎葌葒葯蓅蒎萻葇萶萳葨葾葄萫葠葔葮葐蜋蜄蛷蜌蛺蛖蛵蝍蛸蜎蜉蜁蛶蜍蜅裖裋裍裎裞裛裚裌裐覅覛觟觥觤"],["e040","觡觠觢觜触詶誆詿詡訿詷誂誄詵誃誁詴詺谼豋豊豥豤豦貆貄貅賌赨赩趑趌趎趏趍趓趔趐趒跰跠跬跱跮跐跩跣跢跧跲跫跴輆軿輁輀輅輇輈輂輋遒逿"],["e0a1","遄遉逽鄐鄍鄏鄑鄖鄔鄋鄎酮酯鉈鉒鈰鈺鉦鈳鉥鉞銃鈮鉊鉆鉭鉬鉏鉠鉧鉯鈶鉡鉰鈱鉔鉣鉐鉲鉎鉓鉌鉖鈲閟閜閞閛隒隓隑隗雎雺雽雸雵靳靷靸靲頏頍頎颬飶飹馯馲馰馵骭骫魛鳪鳭鳧麀黽僦僔僗僨僳僛僪僝僤僓僬僰僯僣僠"],["e140","凘劀劁勩勫匰厬嘧嘕嘌嘒嗼嘏嘜嘁嘓嘂嗺嘝嘄嗿嗹墉塼墐墘墆墁塿塴墋塺墇墑墎塶墂墈塻墔墏壾奫嫜嫮嫥嫕嫪嫚嫭嫫嫳嫢嫠嫛嫬嫞嫝嫙嫨嫟孷寠"],["e1a1","寣屣嶂嶀嵽嶆嵺嶁嵷嶊嶉嶈嵾嵼嶍嵹嵿幘幙幓廘廑廗廎廜廕廙廒廔彄彃彯徶愬愨慁慞慱慳慒慓慲慬憀慴慔慺慛慥愻慪慡慖戩戧戫搫摍摛摝摴摶摲摳摽摵摦撦摎撂摞摜摋摓摠摐摿搿摬摫摙摥摷敳斠暡暠暟朅朄朢榱榶槉"],["e240","榠槎榖榰榬榼榑榙榎榧榍榩榾榯榿槄榽榤槔榹槊榚槏榳榓榪榡榞槙榗榐槂榵榥槆歊歍歋殞殟殠毃毄毾滎滵滱漃漥滸漷滻漮漉潎漙漚漧漘漻漒滭漊"],["e2a1","漶潳滹滮漭潀漰漼漵滫漇漎潃漅滽滶漹漜滼漺漟漍漞漈漡熇熐熉熀熅熂熏煻熆熁熗牄牓犗犕犓獃獍獑獌瑢瑳瑱瑵瑲瑧瑮甀甂甃畽疐瘖瘈瘌瘕瘑瘊瘔皸瞁睼瞅瞂睮瞀睯睾瞃碲碪碴碭碨硾碫碞碥碠碬碢碤禘禊禋禖禕禔禓"],["e340","禗禈禒禐稫穊稰稯稨稦窨窫窬竮箈箜箊箑箐箖箍箌箛箎箅箘劄箙箤箂粻粿粼粺綧綷緂綣綪緁緀緅綝緎緄緆緋緌綯綹綖綼綟綦綮綩綡緉罳翢翣翥翞"],["e3a1","耤聝聜膉膆膃膇膍膌膋舕蒗蒤蒡蒟蒺蓎蓂蒬蒮蒫蒹蒴蓁蓍蒪蒚蒱蓐蒝蒧蒻蒢蒔蓇蓌蒛蒩蒯蒨蓖蒘蒶蓏蒠蓗蓔蓒蓛蒰蒑虡蜳蜣蜨蝫蝀蜮蜞蜡蜙蜛蝃蜬蝁蜾蝆蜠蜲蜪蜭蜼蜒蜺蜱蜵蝂蜦蜧蜸蜤蜚蜰蜑裷裧裱裲裺裾裮裼裶裻"],["e440","裰裬裫覝覡覟覞觩觫觨誫誙誋誒誏誖谽豨豩賕賏賗趖踉踂跿踍跽踊踃踇踆踅跾踀踄輐輑輎輍鄣鄜鄠鄢鄟鄝鄚鄤鄡鄛酺酲酹酳銥銤鉶銛鉺銠銔銪銍"],["e4a1","銦銚銫鉹銗鉿銣鋮銎銂銕銢鉽銈銡銊銆銌銙銧鉾銇銩銝銋鈭隞隡雿靘靽靺靾鞃鞀鞂靻鞄鞁靿韎韍頖颭颮餂餀餇馝馜駃馹馻馺駂馽駇骱髣髧鬾鬿魠魡魟鳱鳲鳵麧僿儃儰僸儆儇僶僾儋儌僽儊劋劌勱勯噈噂噌嘵噁噊噉噆噘"],["e540","噚噀嘳嘽嘬嘾嘸嘪嘺圚墫墝墱墠墣墯墬墥墡壿嫿嫴嫽嫷嫶嬃嫸嬂嫹嬁嬇嬅嬏屧嶙嶗嶟嶒嶢嶓嶕嶠嶜嶡嶚嶞幩幝幠幜緳廛廞廡彉徲憋憃慹憱憰憢憉"],["e5a1","憛憓憯憭憟憒憪憡憍慦憳戭摮摰撖撠撅撗撜撏撋撊撌撣撟摨撱撘敶敺敹敻斲斳暵暰暩暲暷暪暯樀樆樗槥槸樕槱槤樠槿槬槢樛樝槾樧槲槮樔槷槧橀樈槦槻樍槼槫樉樄樘樥樏槶樦樇槴樖歑殥殣殢殦氁氀毿氂潁漦潾澇濆澒"],["e640","澍澉澌潢潏澅潚澖潶潬澂潕潲潒潐潗澔澓潝漀潡潫潽潧澐潓澋潩潿澕潣潷潪潻熲熯熛熰熠熚熩熵熝熥熞熤熡熪熜熧熳犘犚獘獒獞獟獠獝獛獡獚獙"],["e6a1","獢璇璉璊璆璁瑽璅璈瑼瑹甈甇畾瘥瘞瘙瘝瘜瘣瘚瘨瘛皜皝皞皛瞍瞏瞉瞈磍碻磏磌磑磎磔磈磃磄磉禚禡禠禜禢禛歶稹窲窴窳箷篋箾箬篎箯箹篊箵糅糈糌糋緷緛緪緧緗緡縃緺緦緶緱緰緮緟罶羬羰羭翭翫翪翬翦翨聤聧膣膟"],["e740","膞膕膢膙膗舖艏艓艒艐艎艑蔤蔻蔏蔀蔩蔎蔉蔍蔟蔊蔧蔜蓻蔫蓺蔈蔌蓴蔪蓲蔕蓷蓫蓳蓼蔒蓪蓩蔖蓾蔨蔝蔮蔂蓽蔞蓶蔱蔦蓧蓨蓰蓯蓹蔘蔠蔰蔋蔙蔯虢"],["e7a1","蝖蝣蝤蝷蟡蝳蝘蝔蝛蝒蝡蝚蝑蝞蝭蝪蝐蝎蝟蝝蝯蝬蝺蝮蝜蝥蝏蝻蝵蝢蝧蝩衚褅褌褔褋褗褘褙褆褖褑褎褉覢覤覣觭觰觬諏諆誸諓諑諔諕誻諗誾諀諅諘諃誺誽諙谾豍貏賥賟賙賨賚賝賧趠趜趡趛踠踣踥踤踮踕踛踖踑踙踦踧"],["e840","踔踒踘踓踜踗踚輬輤輘輚輠輣輖輗遳遰遯遧遫鄯鄫鄩鄪鄲鄦鄮醅醆醊醁醂醄醀鋐鋃鋄鋀鋙銶鋏鋱鋟鋘鋩鋗鋝鋌鋯鋂鋨鋊鋈鋎鋦鋍鋕鋉鋠鋞鋧鋑鋓"],["e8a1","銵鋡鋆銴镼閬閫閮閰隤隢雓霅霈霂靚鞊鞎鞈韐韏頞頝頦頩頨頠頛頧颲餈飺餑餔餖餗餕駜駍駏駓駔駎駉駖駘駋駗駌骳髬髫髳髲髱魆魃魧魴魱魦魶魵魰魨魤魬鳼鳺鳽鳿鳷鴇鴀鳹鳻鴈鴅鴄麃黓鼏鼐儜儓儗儚儑凞匴叡噰噠噮"],["e940","噳噦噣噭噲噞噷圜圛壈墽壉墿墺壂墼壆嬗嬙嬛嬡嬔嬓嬐嬖嬨嬚嬠嬞寯嶬嶱嶩嶧嶵嶰嶮嶪嶨嶲嶭嶯嶴幧幨幦幯廩廧廦廨廥彋徼憝憨憖懅憴懆懁懌憺"],["e9a1","憿憸憌擗擖擐擏擉撽撉擃擛擳擙攳敿敼斢曈暾曀曊曋曏暽暻暺曌朣樴橦橉橧樲橨樾橝橭橶橛橑樨橚樻樿橁橪橤橐橏橔橯橩橠樼橞橖橕橍橎橆歕歔歖殧殪殫毈毇氄氃氆澭濋澣濇澼濎濈潞濄澽澞濊澨瀄澥澮澺澬澪濏澿澸"],["ea40","澢濉澫濍澯澲澰燅燂熿熸燖燀燁燋燔燊燇燏熽燘熼燆燚燛犝犞獩獦獧獬獥獫獪瑿璚璠璔璒璕璡甋疀瘯瘭瘱瘽瘳瘼瘵瘲瘰皻盦瞚瞝瞡瞜瞛瞢瞣瞕瞙"],["eaa1","瞗磝磩磥磪磞磣磛磡磢磭磟磠禤穄穈穇窶窸窵窱窷篞篣篧篝篕篥篚篨篹篔篪篢篜篫篘篟糒糔糗糐糑縒縡縗縌縟縠縓縎縜縕縚縢縋縏縖縍縔縥縤罃罻罼罺羱翯耪耩聬膱膦膮膹膵膫膰膬膴膲膷膧臲艕艖艗蕖蕅蕫蕍蕓蕡蕘"],["eb40","蕀蕆蕤蕁蕢蕄蕑蕇蕣蔾蕛蕱蕎蕮蕵蕕蕧蕠薌蕦蕝蕔蕥蕬虣虥虤螛螏螗螓螒螈螁螖螘蝹螇螣螅螐螑螝螄螔螜螚螉褞褦褰褭褮褧褱褢褩褣褯褬褟觱諠"],["eba1","諢諲諴諵諝謔諤諟諰諈諞諡諨諿諯諻貑貒貐賵賮賱賰賳赬赮趥趧踳踾踸蹀蹅踶踼踽蹁踰踿躽輶輮輵輲輹輷輴遶遹遻邆郺鄳鄵鄶醓醐醑醍醏錧錞錈錟錆錏鍺錸錼錛錣錒錁鍆錭錎錍鋋錝鋺錥錓鋹鋷錴錂錤鋿錩錹錵錪錔錌"],["ec40","錋鋾錉錀鋻錖閼闍閾閹閺閶閿閵閽隩雔霋霒霐鞙鞗鞔韰韸頵頯頲餤餟餧餩馞駮駬駥駤駰駣駪駩駧骹骿骴骻髶髺髹髷鬳鮀鮅鮇魼魾魻鮂鮓鮒鮐魺鮕"],["eca1","魽鮈鴥鴗鴠鴞鴔鴩鴝鴘鴢鴐鴙鴟麈麆麇麮麭黕黖黺鼒鼽儦儥儢儤儠儩勴嚓嚌嚍嚆嚄嚃噾嚂噿嚁壖壔壏壒嬭嬥嬲嬣嬬嬧嬦嬯嬮孻寱寲嶷幬幪徾徻懃憵憼懧懠懥懤懨懞擯擩擣擫擤擨斁斀斶旚曒檍檖檁檥檉檟檛檡檞檇檓檎"],["ed40","檕檃檨檤檑橿檦檚檅檌檒歛殭氉濌澩濴濔濣濜濭濧濦濞濲濝濢濨燡燱燨燲燤燰燢獳獮獯璗璲璫璐璪璭璱璥璯甐甑甒甏疄癃癈癉癇皤盩瞵瞫瞲瞷瞶"],["eda1","瞴瞱瞨矰磳磽礂磻磼磲礅磹磾礄禫禨穜穛穖穘穔穚窾竀竁簅簏篲簀篿篻簎篴簋篳簂簉簃簁篸篽簆篰篱簐簊糨縭縼繂縳顈縸縪繉繀繇縩繌縰縻縶繄縺罅罿罾罽翴翲耬膻臄臌臊臅臇膼臩艛艚艜薃薀薏薧薕薠薋薣蕻薤薚薞"],["ee40","蕷蕼薉薡蕺蕸蕗薎薖薆薍薙薝薁薢薂薈薅蕹蕶薘薐薟虨螾螪螭蟅螰螬螹螵螼螮蟉蟃蟂蟌螷螯蟄蟊螴螶螿螸螽蟞螲褵褳褼褾襁襒褷襂覭覯覮觲觳謞"],["eea1","謘謖謑謅謋謢謏謒謕謇謍謈謆謜謓謚豏豰豲豱豯貕貔賹赯蹎蹍蹓蹐蹌蹇轃轀邅遾鄸醚醢醛醙醟醡醝醠鎡鎃鎯鍤鍖鍇鍼鍘鍜鍶鍉鍐鍑鍠鍭鎏鍌鍪鍹鍗鍕鍒鍏鍱鍷鍻鍡鍞鍣鍧鎀鍎鍙闇闀闉闃闅閷隮隰隬霠霟霘霝霙鞚鞡鞜"],["ef40","鞞鞝韕韔韱顁顄顊顉顅顃餥餫餬餪餳餲餯餭餱餰馘馣馡騂駺駴駷駹駸駶駻駽駾駼騃骾髾髽鬁髼魈鮚鮨鮞鮛鮦鮡鮥鮤鮆鮢鮠鮯鴳鵁鵧鴶鴮鴯鴱鴸鴰"],["efa1","鵅鵂鵃鴾鴷鵀鴽翵鴭麊麉麍麰黈黚黻黿鼤鼣鼢齔龠儱儭儮嚘嚜嚗嚚嚝嚙奰嬼屩屪巀幭幮懘懟懭懮懱懪懰懫懖懩擿攄擽擸攁攃擼斔旛曚曛曘櫅檹檽櫡櫆檺檶檷櫇檴檭歞毉氋瀇瀌瀍瀁瀅瀔瀎濿瀀濻瀦濼濷瀊爁燿燹爃燽獶"],["f040","璸瓀璵瓁璾璶璻瓂甔甓癜癤癙癐癓癗癚皦皽盬矂瞺磿礌礓礔礉礐礒礑禭禬穟簜簩簙簠簟簭簝簦簨簢簥簰繜繐繖繣繘繢繟繑繠繗繓羵羳翷翸聵臑臒"],["f0a1","臐艟艞薴藆藀藃藂薳薵薽藇藄薿藋藎藈藅薱薶藒蘤薸薷薾虩蟧蟦蟢蟛蟫蟪蟥蟟蟳蟤蟔蟜蟓蟭蟘蟣螤蟗蟙蠁蟴蟨蟝襓襋襏襌襆襐襑襉謪謧謣謳謰謵譇謯謼謾謱謥謷謦謶謮謤謻謽謺豂豵貙貘貗賾贄贂贀蹜蹢蹠蹗蹖蹞蹥蹧"],["f140","蹛蹚蹡蹝蹩蹔轆轇轈轋鄨鄺鄻鄾醨醥醧醯醪鎵鎌鎒鎷鎛鎝鎉鎧鎎鎪鎞鎦鎕鎈鎙鎟鎍鎱鎑鎲鎤鎨鎴鎣鎥闒闓闑隳雗雚巂雟雘雝霣霢霥鞬鞮鞨鞫鞤鞪"],["f1a1","鞢鞥韗韙韖韘韺顐顑顒颸饁餼餺騏騋騉騍騄騑騊騅騇騆髀髜鬈鬄鬅鬩鬵魊魌魋鯇鯆鯃鮿鯁鮵鮸鯓鮶鯄鮹鮽鵜鵓鵏鵊鵛鵋鵙鵖鵌鵗鵒鵔鵟鵘鵚麎麌黟鼁鼀鼖鼥鼫鼪鼩鼨齌齕儴儵劖勷厴嚫嚭嚦嚧嚪嚬壚壝壛夒嬽嬾嬿巃幰"],["f240","徿懻攇攐攍攉攌攎斄旞旝曞櫧櫠櫌櫑櫙櫋櫟櫜櫐櫫櫏櫍櫞歠殰氌瀙瀧瀠瀖瀫瀡瀢瀣瀩瀗瀤瀜瀪爌爊爇爂爅犥犦犤犣犡瓋瓅璷瓃甖癠矉矊矄矱礝礛"],["f2a1","礡礜礗礞禰穧穨簳簼簹簬簻糬糪繶繵繸繰繷繯繺繲繴繨罋罊羃羆羷翽翾聸臗臕艤艡艣藫藱藭藙藡藨藚藗藬藲藸藘藟藣藜藑藰藦藯藞藢蠀蟺蠃蟶蟷蠉蠌蠋蠆蟼蠈蟿蠊蠂襢襚襛襗襡襜襘襝襙覈覷覶觶譐譈譊譀譓譖譔譋譕"],["f340","譑譂譒譗豃豷豶貚贆贇贉趬趪趭趫蹭蹸蹳蹪蹯蹻軂轒轑轏轐轓辴酀鄿醰醭鏞鏇鏏鏂鏚鏐鏹鏬鏌鏙鎩鏦鏊鏔鏮鏣鏕鏄鏎鏀鏒鏧镽闚闛雡霩霫霬霨霦"],["f3a1","鞳鞷鞶韝韞韟顜顙顝顗颿颽颻颾饈饇饃馦馧騚騕騥騝騤騛騢騠騧騣騞騜騔髂鬋鬊鬎鬌鬷鯪鯫鯠鯞鯤鯦鯢鯰鯔鯗鯬鯜鯙鯥鯕鯡鯚鵷鶁鶊鶄鶈鵱鶀鵸鶆鶋鶌鵽鵫鵴鵵鵰鵩鶅鵳鵻鶂鵯鵹鵿鶇鵨麔麑黀黼鼭齀齁齍齖齗齘匷嚲"],["f440","嚵嚳壣孅巆巇廮廯忀忁懹攗攖攕攓旟曨曣曤櫳櫰櫪櫨櫹櫱櫮櫯瀼瀵瀯瀷瀴瀱灂瀸瀿瀺瀹灀瀻瀳灁爓爔犨獽獼璺皫皪皾盭矌矎矏矍矲礥礣礧礨礤礩"],["f4a1","禲穮穬穭竷籉籈籊籇籅糮繻繾纁纀羺翿聹臛臙舋艨艩蘢藿蘁藾蘛蘀藶蘄蘉蘅蘌藽蠙蠐蠑蠗蠓蠖襣襦覹觷譠譪譝譨譣譥譧譭趮躆躈躄轙轖轗轕轘轚邍酃酁醷醵醲醳鐋鐓鏻鐠鐏鐔鏾鐕鐐鐨鐙鐍鏵鐀鏷鐇鐎鐖鐒鏺鐉鏸鐊鏿"],["f540","鏼鐌鏶鐑鐆闞闠闟霮霯鞹鞻韽韾顠顢顣顟飁飂饐饎饙饌饋饓騲騴騱騬騪騶騩騮騸騭髇髊髆鬐鬒鬑鰋鰈鯷鰅鰒鯸鱀鰇鰎鰆鰗鰔鰉鶟鶙鶤鶝鶒鶘鶐鶛"],["f5a1","鶠鶔鶜鶪鶗鶡鶚鶢鶨鶞鶣鶿鶩鶖鶦鶧麙麛麚黥黤黧黦鼰鼮齛齠齞齝齙龑儺儹劘劗囃嚽嚾孈孇巋巏廱懽攛欂櫼欃櫸欀灃灄灊灈灉灅灆爝爚爙獾甗癪矐礭礱礯籔籓糲纊纇纈纋纆纍罍羻耰臝蘘蘪蘦蘟蘣蘜蘙蘧蘮蘡蘠蘩蘞蘥"],["f640","蠩蠝蠛蠠蠤蠜蠫衊襭襩襮襫觺譹譸譅譺譻贐贔趯躎躌轞轛轝酆酄酅醹鐿鐻鐶鐩鐽鐼鐰鐹鐪鐷鐬鑀鐱闥闤闣霵霺鞿韡顤飉飆飀饘饖騹騽驆驄驂驁騺"],["f6a1","騿髍鬕鬗鬘鬖鬺魒鰫鰝鰜鰬鰣鰨鰩鰤鰡鶷鶶鶼鷁鷇鷊鷏鶾鷅鷃鶻鶵鷎鶹鶺鶬鷈鶱鶭鷌鶳鷍鶲鹺麜黫黮黭鼛鼘鼚鼱齎齥齤龒亹囆囅囋奱孋孌巕巑廲攡攠攦攢欋欈欉氍灕灖灗灒爞爟犩獿瓘瓕瓙瓗癭皭礵禴穰穱籗籜籙籛籚"],["f740","糴糱纑罏羇臞艫蘴蘵蘳蘬蘲蘶蠬蠨蠦蠪蠥襱覿覾觻譾讄讂讆讅譿贕躕躔躚躒躐躖躗轠轢酇鑌鑐鑊鑋鑏鑇鑅鑈鑉鑆霿韣顪顩飋饔饛驎驓驔驌驏驈驊"],["f7a1","驉驒驐髐鬙鬫鬻魖魕鱆鱈鰿鱄鰹鰳鱁鰼鰷鰴鰲鰽鰶鷛鷒鷞鷚鷋鷐鷜鷑鷟鷩鷙鷘鷖鷵鷕鷝麶黰鼵鼳鼲齂齫龕龢儽劙壨壧奲孍巘蠯彏戁戃戄攩攥斖曫欑欒欏毊灛灚爢玂玁玃癰矔籧籦纕艬蘺虀蘹蘼蘱蘻蘾蠰蠲蠮蠳襶襴襳觾"],["f840","讌讎讋讈豅贙躘轤轣醼鑢鑕鑝鑗鑞韄韅頀驖驙鬞鬟鬠鱒鱘鱐鱊鱍鱋鱕鱙鱌鱎鷻鷷鷯鷣鷫鷸鷤鷶鷡鷮鷦鷲鷰鷢鷬鷴鷳鷨鷭黂黐黲黳鼆鼜鼸鼷鼶齃齏"],["f8a1","齱齰齮齯囓囍孎屭攭曭曮欓灟灡灝灠爣瓛瓥矕礸禷禶籪纗羉艭虃蠸蠷蠵衋讔讕躞躟躠躝醾醽釂鑫鑨鑩雥靆靃靇韇韥驞髕魙鱣鱧鱦鱢鱞鱠鸂鷾鸇鸃鸆鸅鸀鸁鸉鷿鷽鸄麠鼞齆齴齵齶囔攮斸欘欙欗欚灢爦犪矘矙礹籩籫糶纚"],["f940","纘纛纙臠臡虆虇虈襹襺襼襻觿讘讙躥躤躣鑮鑭鑯鑱鑳靉顲饟鱨鱮鱭鸋鸍鸐鸏鸒鸑麡黵鼉齇齸齻齺齹圞灦籯蠼趲躦釃鑴鑸鑶鑵驠鱴鱳鱱鱵鸔鸓黶鼊"],["f9a1","龤灨灥糷虪蠾蠽蠿讞貜躩軉靋顳顴飌饡馫驤驦驧鬤鸕鸗齈戇欞爧虌躨钂钀钁驩驨鬮鸙爩虋讟钃鱹麷癵驫鱺鸝灩灪麤齾齉龘碁銹裏墻恒粧嫺╔╦╗╠╬╣╚╩╝╒╤╕╞╪╡╘╧╛╓╥╖╟╫╢╙╨╜║═╭╮╰╯▓"]]},562:function(e){function RetryOperation(e,t){if(typeof t==="boolean"){t={forever:t}}this._originalTimeouts=JSON.parse(JSON.stringify(e));this._timeouts=e;this._options=t||{};this._maxRetryTime=t&&t.maxRetryTime||Infinity;this._fn=null;this._errors=[];this._attempts=1;this._operationTimeout=null;this._operationTimeoutCb=null;this._timeout=null;this._operationStart=null;if(this._options.forever){this._cachedTimeouts=this._timeouts.slice(0)}}e.exports=RetryOperation;RetryOperation.prototype.reset=function(){this._attempts=1;this._timeouts=this._originalTimeouts};RetryOperation.prototype.stop=function(){if(this._timeout){clearTimeout(this._timeout)}this._timeouts=[];this._cachedTimeouts=null};RetryOperation.prototype.retry=function(e){if(this._timeout){clearTimeout(this._timeout)}if(!e){return false}var t=(new Date).getTime();if(e&&t-this._operationStart>=this._maxRetryTime){this._errors.unshift(new Error("RetryOperation timeout occurred"));return false}this._errors.push(e);var n=this._timeouts.shift();if(n===undefined){if(this._cachedTimeouts){this._errors.splice(this._errors.length-1,this._errors.length);this._timeouts=this._cachedTimeouts.slice(0);n=this._timeouts.shift()}else{return false}}var r=this;var i=setTimeout(function(){r._attempts++;if(r._operationTimeoutCb){r._timeout=setTimeout(function(){r._operationTimeoutCb(r._attempts)},r._operationTimeout);if(r._options.unref){r._timeout.unref()}}r._fn(r._attempts)},n);if(this._options.unref){i.unref()}return true};RetryOperation.prototype.attempt=function(e,t){this._fn=e;if(t){if(t.timeout){this._operationTimeout=t.timeout}if(t.cb){this._operationTimeoutCb=t.cb}}var n=this;if(this._operationTimeoutCb){this._timeout=setTimeout(function(){n._operationTimeoutCb()},n._operationTimeout)}this._operationStart=(new Date).getTime();this._fn(this._attempts)};RetryOperation.prototype.try=function(e){console.log("Using RetryOperation.try() is deprecated");this.attempt(e)};RetryOperation.prototype.start=function(e){console.log("Using RetryOperation.start() is deprecated");this.attempt(e)};RetryOperation.prototype.start=RetryOperation.prototype.try;RetryOperation.prototype.errors=function(){return this._errors};RetryOperation.prototype.attempts=function(){return this._attempts};RetryOperation.prototype.mainError=function(){if(this._errors.length===0){return null}var e={};var t=null;var n=0;for(var r=0;r<this._errors.length;r++){var i=this._errors[r];var o=i.message;var a=(e[o]||0)+1;e[o]=a;if(a>=n){t=i;n=a}}return t}},585:function(e){e.exports=[["0","\0",127],["8141","갂갃갅갆갋",4,"갘갞갟갡갢갣갥",6,"갮갲갳갴"],["8161","갵갶갷갺갻갽갾갿걁",9,"걌걎",5,"걕"],["8181","걖걗걙걚걛걝",18,"걲걳걵걶걹걻",4,"겂겇겈겍겎겏겑겒겓겕",6,"겞겢",5,"겫겭겮겱",6,"겺겾겿곀곂곃곅곆곇곉곊곋곍",7,"곖곘",7,"곢곣곥곦곩곫곭곮곲곴곷",4,"곾곿괁괂괃괅괇",4,"괎괐괒괓"],["8241","괔괕괖괗괙괚괛괝괞괟괡",7,"괪괫괮",5],["8261","괶괷괹괺괻괽",6,"굆굈굊",5,"굑굒굓굕굖굗"],["8281","굙",7,"굢굤",7,"굮굯굱굲굷굸굹굺굾궀궃",4,"궊궋궍궎궏궑",10,"궞",5,"궥",17,"궸",7,"귂귃귅귆귇귉",6,"귒귔",7,"귝귞귟귡귢귣귥",18],["8341","귺귻귽귾긂",5,"긊긌긎",5,"긕",7],["8361","긝",18,"긲긳긵긶긹긻긼"],["8381","긽긾긿깂깄깇깈깉깋깏깑깒깓깕깗",4,"깞깢깣깤깦깧깪깫깭깮깯깱",6,"깺깾",5,"꺆",5,"꺍",46,"꺿껁껂껃껅",6,"껎껒",5,"껚껛껝",8],["8441","껦껧껩껪껬껮",5,"껵껶껷껹껺껻껽",8],["8461","꼆꼉꼊꼋꼌꼎꼏꼑",18],["8481","꼤",7,"꼮꼯꼱꼳꼵",6,"꼾꽀꽄꽅꽆꽇꽊",5,"꽑",10,"꽞",5,"꽦",18,"꽺",5,"꾁꾂꾃꾅꾆꾇꾉",6,"꾒꾓꾔꾖",5,"꾝",26,"꾺꾻꾽꾾"],["8541","꾿꿁",5,"꿊꿌꿏",4,"꿕",6,"꿝",4],["8561","꿢",5,"꿪",5,"꿲꿳꿵꿶꿷꿹",6,"뀂뀃"],["8581","뀅",6,"뀍뀎뀏뀑뀒뀓뀕",6,"뀞",9,"뀩",26,"끆끇끉끋끍끏끐끑끒끖끘끚끛끜끞",29,"끾끿낁낂낃낅",6,"낎낐낒",5,"낛낝낞낣낤"],["8641","낥낦낧낪낰낲낶낷낹낺낻낽",6,"냆냊",5,"냒"],["8661","냓냕냖냗냙",6,"냡냢냣냤냦",10],["8681","냱",22,"넊넍넎넏넑넔넕넖넗넚넞",4,"넦넧넩넪넫넭",6,"넶넺",5,"녂녃녅녆녇녉",6,"녒녓녖녗녙녚녛녝녞녟녡",22,"녺녻녽녾녿놁놃",4,"놊놌놎놏놐놑놕놖놗놙놚놛놝"],["8741","놞",9,"놩",15],["8761","놹",18,"뇍뇎뇏뇑뇒뇓뇕"],["8781","뇖",5,"뇞뇠",7,"뇪뇫뇭뇮뇯뇱",7,"뇺뇼뇾",5,"눆눇눉눊눍",6,"눖눘눚",5,"눡",18,"눵",6,"눽",26,"뉙뉚뉛뉝뉞뉟뉡",6,"뉪",4],["8841","뉯",4,"뉶",5,"뉽",6,"늆늇늈늊",4],["8861","늏늒늓늕늖늗늛",4,"늢늤늧늨늩늫늭늮늯늱늲늳늵늶늷"],["8881","늸",15,"닊닋닍닎닏닑닓",4,"닚닜닞닟닠닡닣닧닩닪닰닱닲닶닼닽닾댂댃댅댆댇댉",6,"댒댖",5,"댝",54,"덗덙덚덝덠덡덢덣"],["8941","덦덨덪덬덭덯덲덳덵덶덷덹",6,"뎂뎆",5,"뎍"],["8961","뎎뎏뎑뎒뎓뎕",10,"뎢",5,"뎩뎪뎫뎭"],["8981","뎮",21,"돆돇돉돊돍돏돑돒돓돖돘돚돜돞돟돡돢돣돥돦돧돩",18,"돽",18,"됑",6,"됙됚됛됝됞됟됡",6,"됪됬",7,"됵",15],["8a41","둅",10,"둒둓둕둖둗둙",6,"둢둤둦"],["8a61","둧",4,"둭",18,"뒁뒂"],["8a81","뒃",4,"뒉",19,"뒞",5,"뒥뒦뒧뒩뒪뒫뒭",7,"뒶뒸뒺",5,"듁듂듃듅듆듇듉",6,"듑듒듓듔듖",5,"듞듟듡듢듥듧",4,"듮듰듲",5,"듹",26,"딖딗딙딚딝"],["8b41","딞",5,"딦딫",4,"딲딳딵딶딷딹",6,"땂땆"],["8b61","땇땈땉땊땎땏땑땒땓땕",6,"땞땢",8],["8b81","땫",52,"떢떣떥떦떧떩떬떭떮떯떲떶",4,"떾떿뗁뗂뗃뗅",6,"뗎뗒",5,"뗙",18,"뗭",18],["8c41","똀",15,"똒똓똕똖똗똙",4],["8c61","똞",6,"똦",5,"똭",6,"똵",5],["8c81","똻",12,"뙉",26,"뙥뙦뙧뙩",50,"뚞뚟뚡뚢뚣뚥",5,"뚭뚮뚯뚰뚲",16],["8d41","뛃",16,"뛕",8],["8d61","뛞",17,"뛱뛲뛳뛵뛶뛷뛹뛺"],["8d81","뛻",4,"뜂뜃뜄뜆",33,"뜪뜫뜭뜮뜱",6,"뜺뜼",7,"띅띆띇띉띊띋띍",6,"띖",9,"띡띢띣띥띦띧띩",6,"띲띴띶",5,"띾띿랁랂랃랅",6,"랎랓랔랕랚랛랝랞"],["8e41","랟랡",6,"랪랮",5,"랶랷랹",8],["8e61","럂",4,"럈럊",19],["8e81","럞",13,"럮럯럱럲럳럵",6,"럾렂",4,"렊렋렍렎렏렑",6,"렚렜렞",5,"렦렧렩렪렫렭",6,"렶렺",5,"롁롂롃롅",11,"롒롔",7,"롞롟롡롢롣롥",6,"롮롰롲",5,"롹롺롻롽",7],["8f41","뢅",7,"뢎",17],["8f61","뢠",7,"뢩",6,"뢱뢲뢳뢵뢶뢷뢹",4],["8f81","뢾뢿룂룄룆",5,"룍룎룏룑룒룓룕",7,"룞룠룢",5,"룪룫룭룮룯룱",6,"룺룼룾",5,"뤅",18,"뤙",6,"뤡",26,"뤾뤿륁륂륃륅",6,"륍륎륐륒",5],["9041","륚륛륝륞륟륡",6,"륪륬륮",5,"륶륷륹륺륻륽"],["9061","륾",5,"릆릈릋릌릏",15],["9081","릟",12,"릮릯릱릲릳릵",6,"릾맀맂",5,"맊맋맍맓",4,"맚맜맟맠맢맦맧맩맪맫맭",6,"맶맻",4,"먂",5,"먉",11,"먖",33,"먺먻먽먾먿멁멃멄멅멆"],["9141","멇멊멌멏멐멑멒멖멗멙멚멛멝",6,"멦멪",5],["9161","멲멳멵멶멷멹",9,"몆몈몉몊몋몍",5],["9181","몓",20,"몪몭몮몯몱몳",4,"몺몼몾",5,"뫅뫆뫇뫉",14,"뫚",33,"뫽뫾뫿묁묂묃묅",7,"묎묐묒",5,"묙묚묛묝묞묟묡",6],["9241","묨묪묬",7,"묷묹묺묿",4,"뭆뭈뭊뭋뭌뭎뭑뭒"],["9261","뭓뭕뭖뭗뭙",7,"뭢뭤",7,"뭭",4],["9281","뭲",21,"뮉뮊뮋뮍뮎뮏뮑",18,"뮥뮦뮧뮩뮪뮫뮭",6,"뮵뮶뮸",7,"믁믂믃믅믆믇믉",6,"믑믒믔",35,"믺믻믽믾밁"],["9341","밃",4,"밊밎밐밒밓밙밚밠밡밢밣밦밨밪밫밬밮밯밲밳밵"],["9361","밶밷밹",6,"뱂뱆뱇뱈뱊뱋뱎뱏뱑",8],["9381","뱚뱛뱜뱞",37,"벆벇벉벊벍벏",4,"벖벘벛",4,"벢벣벥벦벩",6,"벲벶",5,"벾벿볁볂볃볅",7,"볎볒볓볔볖볗볙볚볛볝",22,"볷볹볺볻볽"],["9441","볾",5,"봆봈봊",5,"봑봒봓봕",8],["9461","봞",5,"봥",6,"봭",12],["9481","봺",5,"뵁",6,"뵊뵋뵍뵎뵏뵑",6,"뵚",9,"뵥뵦뵧뵩",22,"붂붃붅붆붋",4,"붒붔붖붗붘붛붝",6,"붥",10,"붱",6,"붹",24],["9541","뷒뷓뷖뷗뷙뷚뷛뷝",11,"뷪",5,"뷱"],["9561","뷲뷳뷵뷶뷷뷹",6,"븁븂븄븆",5,"븎븏븑븒븓"],["9581","븕",6,"븞븠",35,"빆빇빉빊빋빍빏",4,"빖빘빜빝빞빟빢빣빥빦빧빩빫",4,"빲빶",4,"빾빿뺁뺂뺃뺅",6,"뺎뺒",5,"뺚",13,"뺩",14],["9641","뺸",23,"뻒뻓"],["9661","뻕뻖뻙",6,"뻡뻢뻦",5,"뻭",8],["9681","뻶",10,"뼂",5,"뼊",13,"뼚뼞",33,"뽂뽃뽅뽆뽇뽉",6,"뽒뽓뽔뽖",44],["9741","뾃",16,"뾕",8],["9761","뾞",17,"뾱",7],["9781","뾹",11,"뿆",5,"뿎뿏뿑뿒뿓뿕",6,"뿝뿞뿠뿢",89,"쀽쀾쀿"],["9841","쁀",16,"쁒",5,"쁙쁚쁛"],["9861","쁝쁞쁟쁡",6,"쁪",15],["9881","쁺",21,"삒삓삕삖삗삙",6,"삢삤삦",5,"삮삱삲삷",4,"삾샂샃샄샆샇샊샋샍샎샏샑",6,"샚샞",5,"샦샧샩샪샫샭",6,"샶샸샺",5,"섁섂섃섅섆섇섉",6,"섑섒섓섔섖",5,"섡섢섥섨섩섪섫섮"],["9941","섲섳섴섵섷섺섻섽섾섿셁",6,"셊셎",5,"셖셗"],["9961","셙셚셛셝",6,"셦셪",5,"셱셲셳셵셶셷셹셺셻"],["9981","셼",8,"솆",5,"솏솑솒솓솕솗",4,"솞솠솢솣솤솦솧솪솫솭솮솯솱",11,"솾",5,"쇅쇆쇇쇉쇊쇋쇍",6,"쇕쇖쇙",6,"쇡쇢쇣쇥쇦쇧쇩",6,"쇲쇴",7,"쇾쇿숁숂숃숅",6,"숎숐숒",5,"숚숛숝숞숡숢숣"],["9a41","숤숥숦숧숪숬숮숰숳숵",16],["9a61","쉆쉇쉉",6,"쉒쉓쉕쉖쉗쉙",6,"쉡쉢쉣쉤쉦"],["9a81","쉧",4,"쉮쉯쉱쉲쉳쉵",6,"쉾슀슂",5,"슊",5,"슑",6,"슙슚슜슞",5,"슦슧슩슪슫슮",5,"슶슸슺",33,"싞싟싡싢싥",5,"싮싰싲싳싴싵싷싺싽싾싿쌁",6,"쌊쌋쌎쌏"],["9b41","쌐쌑쌒쌖쌗쌙쌚쌛쌝",6,"쌦쌧쌪",8],["9b61","쌳",17,"썆",7],["9b81","썎",25,"썪썫썭썮썯썱썳",4,"썺썻썾",5,"쎅쎆쎇쎉쎊쎋쎍",50,"쏁",22,"쏚"],["9c41","쏛쏝쏞쏡쏣",4,"쏪쏫쏬쏮",5,"쏶쏷쏹",5],["9c61","쏿",8,"쐉",6,"쐑",9],["9c81","쐛",8,"쐥",6,"쐭쐮쐯쐱쐲쐳쐵",6,"쐾",9,"쑉",26,"쑦쑧쑩쑪쑫쑭",6,"쑶쑷쑸쑺",5,"쒁",18,"쒕",6,"쒝",12],["9d41","쒪",13,"쒹쒺쒻쒽",8],["9d61","쓆",25],["9d81","쓠",8,"쓪",5,"쓲쓳쓵쓶쓷쓹쓻쓼쓽쓾씂",9,"씍씎씏씑씒씓씕",6,"씝",10,"씪씫씭씮씯씱",6,"씺씼씾",5,"앆앇앋앏앐앑앒앖앚앛앜앟앢앣앥앦앧앩",6,"앲앶",5,"앾앿얁얂얃얅얆얈얉얊얋얎얐얒얓얔"],["9e41","얖얙얚얛얝얞얟얡",7,"얪",9,"얶"],["9e61","얷얺얿",4,"엋엍엏엒엓엕엖엗엙",6,"엢엤엦엧"],["9e81","엨엩엪엫엯엱엲엳엵엸엹엺엻옂옃옄옉옊옋옍옎옏옑",6,"옚옝",6,"옦옧옩옪옫옯옱옲옶옸옺옼옽옾옿왂왃왅왆왇왉",6,"왒왖",5,"왞왟왡",10,"왭왮왰왲",5,"왺왻왽왾왿욁",6,"욊욌욎",5,"욖욗욙욚욛욝",6,"욦"],["9f41","욨욪",5,"욲욳욵욶욷욻",4,"웂웄웆",5,"웎"],["9f61","웏웑웒웓웕",6,"웞웟웢",5,"웪웫웭웮웯웱웲"],["9f81","웳",4,"웺웻웼웾",5,"윆윇윉윊윋윍",6,"윖윘윚",5,"윢윣윥윦윧윩",6,"윲윴윶윸윹윺윻윾윿읁읂읃읅",4,"읋읎읐읙읚읛읝읞읟읡",6,"읩읪읬",7,"읶읷읹읺읻읿잀잁잂잆잋잌잍잏잒잓잕잙잛",4,"잢잧",4,"잮잯잱잲잳잵잶잷"],["a041","잸잹잺잻잾쟂",5,"쟊쟋쟍쟏쟑",6,"쟙쟚쟛쟜"],["a061","쟞",5,"쟥쟦쟧쟩쟪쟫쟭",13],["a081","쟻",4,"젂젃젅젆젇젉젋",4,"젒젔젗",4,"젞젟젡젢젣젥",6,"젮젰젲",5,"젹젺젻젽젾젿졁",6,"졊졋졎",5,"졕",26,"졲졳졵졶졷졹졻",4,"좂좄좈좉좊좎",5,"좕",7,"좞좠좢좣좤"],["a141","좥좦좧좩",18,"좾좿죀죁"],["a161","죂죃죅죆죇죉죊죋죍",6,"죖죘죚",5,"죢죣죥"],["a181","죦",14,"죶",5,"죾죿줁줂줃줇",4,"줎 、。·‥…¨〃­―∥\∼‘’“”〔〕〈",9,"±×÷≠≤≥∞∴°′″℃Å¢£¥♂♀∠⊥⌒∂∇≡≒§※☆★○●◎◇◆□■△▲▽▼→←↑↓↔〓≪≫√∽∝∵∫∬∈∋⊆⊇⊂⊃∪∩∧∨¬"],["a241","줐줒",5,"줙",18],["a261","줭",6,"줵",18],["a281","쥈",7,"쥒쥓쥕쥖쥗쥙",6,"쥢쥤",7,"쥭쥮쥯⇒⇔∀∃´~ˇ˘˝˚˙¸˛¡¿ː∮∑∏¤℉‰◁◀▷▶♤♠♡♥♧♣⊙◈▣◐◑▒▤▥▨▧▦▩♨☏☎☜☞¶†‡↕↗↙↖↘♭♩♪♬㉿㈜№㏇™㏂㏘℡€®"],["a341","쥱쥲쥳쥵",6,"쥽",10,"즊즋즍즎즏"],["a361","즑",6,"즚즜즞",16],["a381","즯",16,"짂짃짅짆짉짋",4,"짒짔짗짘짛!",58,"₩]",32," ̄"],["a441","짞짟짡짣짥짦짨짩짪짫짮짲",5,"짺짻짽짾짿쨁쨂쨃쨄"],["a461","쨅쨆쨇쨊쨎",5,"쨕쨖쨗쨙",12],["a481","쨦쨧쨨쨪",28,"ㄱ",93],["a541","쩇",4,"쩎쩏쩑쩒쩓쩕",6,"쩞쩢",5,"쩩쩪"],["a561","쩫",17,"쩾",5,"쪅쪆"],["a581","쪇",16,"쪙",14,"",9],["a5b0","",9],["a5c1","Α",16,"Σ",6],["a5e1","α",16,"σ",6],["a641","쪨",19,"쪾쪿쫁쫂쫃쫅"],["a661","쫆",5,"쫎쫐쫒쫔쫕쫖쫗쫚",5,"쫡",6],["a681","쫨쫩쫪쫫쫭",6,"쫵",18,"쬉쬊─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂┒┑┚┙┖┕┎┍┞┟┡┢┦┧┩┪┭┮┱┲┵┶┹┺┽┾╀╁╃",7],["a741","쬋",4,"쬑쬒쬓쬕쬖쬗쬙",6,"쬢",7],["a761","쬪",22,"쭂쭃쭄"],["a781","쭅쭆쭇쭊쭋쭍쭎쭏쭑",6,"쭚쭛쭜쭞",5,"쭥",7,"㎕㎖㎗ℓ㎘㏄㎣㎤㎥㎦㎙",9,"㏊㎍㎎㎏㏏㎈㎉㏈㎧㎨㎰",9,"㎀",4,"㎺",5,"㎐",4,"Ω㏀㏁㎊㎋㎌㏖㏅㎭㎮㎯㏛㎩㎪㎫㎬㏝㏐㏓㏃㏉㏜㏆"],["a841","쭭",10,"쭺",14],["a861","쮉",18,"쮝",6],["a881","쮤",19,"쮹",11,"ÆÐªĦ"],["a8a6","IJ"],["a8a8","ĿŁØŒºÞŦŊ"],["a8b1","㉠",27,"ⓐ",25,"①",14,"½⅓⅔¼¾⅛⅜⅝⅞"],["a941","쯅",14,"쯕",10],["a961","쯠쯡쯢쯣쯥쯦쯨쯪",18],["a981","쯽",14,"찎찏찑찒찓찕",6,"찞찟찠찣찤æđðħıijĸŀłøœßþŧŋʼn㈀",27,"⒜",25,"⑴",14,"¹²³⁴ⁿ₁₂₃₄"],["aa41","찥찦찪찫찭찯찱",6,"찺찿",4,"챆챇챉챊챋챍챎"],["aa61","챏",4,"챖챚",5,"챡챢챣챥챧챩",6,"챱챲"],["aa81","챳챴챶",29,"ぁ",82],["ab41","첔첕첖첗첚첛첝첞첟첡",6,"첪첮",5,"첶첷첹"],["ab61","첺첻첽",6,"쳆쳈쳊",5,"쳑쳒쳓쳕",5],["ab81","쳛",8,"쳥",6,"쳭쳮쳯쳱",12,"ァ",85],["ac41","쳾쳿촀촂",5,"촊촋촍촎촏촑",6,"촚촜촞촟촠"],["ac61","촡촢촣촥촦촧촩촪촫촭",11,"촺",4],["ac81","촿",28,"쵝쵞쵟А",5,"ЁЖ",25],["acd1","а",5,"ёж",25],["ad41","쵡쵢쵣쵥",6,"쵮쵰쵲",5,"쵹",7],["ad61","춁",6,"춉",10,"춖춗춙춚춛춝춞춟"],["ad81","춠춡춢춣춦춨춪",5,"춱",18,"췅"],["ae41","췆",5,"췍췎췏췑",16],["ae61","췢",5,"췩췪췫췭췮췯췱",6,"췺췼췾",4],["ae81","츃츅츆츇츉츊츋츍",6,"츕츖츗츘츚",5,"츢츣츥츦츧츩츪츫"],["af41","츬츭츮츯츲츴츶",19],["af61","칊",13,"칚칛칝칞칢",5,"칪칬"],["af81","칮",5,"칶칷칹칺칻칽",6,"캆캈캊",5,"캒캓캕캖캗캙"],["b041","캚",5,"캢캦",5,"캮",12],["b061","캻",5,"컂",19],["b081","컖",13,"컦컧컩컪컭",6,"컶컺",5,"가각간갇갈갉갊감",7,"같",4,"갠갤갬갭갯갰갱갸갹갼걀걋걍걔걘걜거걱건걷걸걺검겁것겄겅겆겉겊겋게겐겔겜겝겟겠겡겨격겪견겯결겸겹겻겼경곁계곈곌곕곗고곡곤곧골곪곬곯곰곱곳공곶과곽관괄괆"],["b141","켂켃켅켆켇켉",6,"켒켔켖",5,"켝켞켟켡켢켣"],["b161","켥",6,"켮켲",5,"켹",11],["b181","콅",14,"콖콗콙콚콛콝",6,"콦콨콪콫콬괌괍괏광괘괜괠괩괬괭괴괵괸괼굄굅굇굉교굔굘굡굣구국군굳굴굵굶굻굼굽굿궁궂궈궉권궐궜궝궤궷귀귁귄귈귐귑귓규균귤그극근귿글긁금급긋긍긔기긱긴긷길긺김깁깃깅깆깊까깍깎깐깔깖깜깝깟깠깡깥깨깩깬깰깸"],["b241","콭콮콯콲콳콵콶콷콹",6,"쾁쾂쾃쾄쾆",5,"쾍"],["b261","쾎",18,"쾢",5,"쾩"],["b281","쾪",5,"쾱",18,"쿅",6,"깹깻깼깽꺄꺅꺌꺼꺽꺾껀껄껌껍껏껐껑께껙껜껨껫껭껴껸껼꼇꼈꼍꼐꼬꼭꼰꼲꼴꼼꼽꼿꽁꽂꽃꽈꽉꽐꽜꽝꽤꽥꽹꾀꾄꾈꾐꾑꾕꾜꾸꾹꾼꿀꿇꿈꿉꿋꿍꿎꿔꿜꿨꿩꿰꿱꿴꿸뀀뀁뀄뀌뀐뀔뀜뀝뀨끄끅끈끊끌끎끓끔끕끗끙"],["b341","쿌",19,"쿢쿣쿥쿦쿧쿩"],["b361","쿪",5,"쿲쿴쿶",5,"쿽쿾쿿퀁퀂퀃퀅",5],["b381","퀋",5,"퀒",5,"퀙",19,"끝끼끽낀낄낌낍낏낑나낙낚난낟날낡낢남납낫",4,"낱낳내낵낸낼냄냅냇냈냉냐냑냔냘냠냥너넉넋넌널넒넓넘넙넛넜넝넣네넥넨넬넴넵넷넸넹녀녁년녈념녑녔녕녘녜녠노녹논놀놂놈놉놋농높놓놔놘놜놨뇌뇐뇔뇜뇝"],["b441","퀮",5,"퀶퀷퀹퀺퀻퀽",6,"큆큈큊",5],["b461","큑큒큓큕큖큗큙",6,"큡",10,"큮큯"],["b481","큱큲큳큵",6,"큾큿킀킂",18,"뇟뇨뇩뇬뇰뇹뇻뇽누눅눈눋눌눔눕눗눙눠눴눼뉘뉜뉠뉨뉩뉴뉵뉼늄늅늉느늑는늘늙늚늠늡늣능늦늪늬늰늴니닉닌닐닒님닙닛닝닢다닥닦단닫",4,"닳담답닷",4,"닿대댁댄댈댐댑댓댔댕댜더덕덖던덛덜덞덟덤덥"],["b541","킕",14,"킦킧킩킪킫킭",5],["b561","킳킶킸킺",5,"탂탃탅탆탇탊",5,"탒탖",4],["b581","탛탞탟탡탢탣탥",6,"탮탲",5,"탹",11,"덧덩덫덮데덱덴델뎀뎁뎃뎄뎅뎌뎐뎔뎠뎡뎨뎬도독돈돋돌돎돐돔돕돗동돛돝돠돤돨돼됐되된될됨됩됫됴두둑둔둘둠둡둣둥둬뒀뒈뒝뒤뒨뒬뒵뒷뒹듀듄듈듐듕드득든듣들듦듬듭듯등듸디딕딘딛딜딤딥딧딨딩딪따딱딴딸"],["b641","턅",7,"턎",17],["b661","턠",15,"턲턳턵턶턷턹턻턼턽턾"],["b681","턿텂텆",5,"텎텏텑텒텓텕",6,"텞텠텢",5,"텩텪텫텭땀땁땃땄땅땋때땍땐땔땜땝땟땠땡떠떡떤떨떪떫떰떱떳떴떵떻떼떽뗀뗄뗌뗍뗏뗐뗑뗘뗬또똑똔똘똥똬똴뙈뙤뙨뚜뚝뚠뚤뚫뚬뚱뛔뛰뛴뛸뜀뜁뜅뜨뜩뜬뜯뜰뜸뜹뜻띄띈띌띔띕띠띤띨띰띱띳띵라락란랄람랍랏랐랑랒랖랗"],["b741","텮",13,"텽",6,"톅톆톇톉톊"],["b761","톋",20,"톢톣톥톦톧"],["b781","톩",6,"톲톴톶톷톸톹톻톽톾톿퇁",14,"래랙랜랠램랩랫랬랭랴략랸럇량러럭런럴럼럽럿렀렁렇레렉렌렐렘렙렛렝려력련렬렴렵렷렸령례롄롑롓로록론롤롬롭롯롱롸롼뢍뢨뢰뢴뢸룀룁룃룅료룐룔룝룟룡루룩룬룰룸룹룻룽뤄뤘뤠뤼뤽륀륄륌륏륑류륙륜률륨륩"],["b841","퇐",7,"퇙",17],["b861","퇫",8,"퇵퇶퇷퇹",13],["b881","툈툊",5,"툑",24,"륫륭르륵른를름릅릇릉릊릍릎리릭린릴림립릿링마막만많",4,"맘맙맛망맞맡맣매맥맨맬맴맵맷맸맹맺먀먁먈먕머먹먼멀멂멈멉멋멍멎멓메멕멘멜멤멥멧멨멩며멱면멸몃몄명몇몌모목몫몬몰몲몸몹못몽뫄뫈뫘뫙뫼"],["b941","툪툫툮툯툱툲툳툵",6,"툾퉀퉂",5,"퉉퉊퉋퉌"],["b961","퉍",14,"퉝",6,"퉥퉦퉧퉨"],["b981","퉩",22,"튂튃튅튆튇튉튊튋튌묀묄묍묏묑묘묜묠묩묫무묵묶문묻물묽묾뭄뭅뭇뭉뭍뭏뭐뭔뭘뭡뭣뭬뮈뮌뮐뮤뮨뮬뮴뮷므믄믈믐믓미믹민믿밀밂밈밉밋밌밍및밑바",4,"받",4,"밤밥밧방밭배백밴밸뱀뱁뱃뱄뱅뱉뱌뱍뱐뱝버벅번벋벌벎범법벗"],["ba41","튍튎튏튒튓튔튖",5,"튝튞튟튡튢튣튥",6,"튭"],["ba61","튮튯튰튲",5,"튺튻튽튾틁틃",4,"틊틌",5],["ba81","틒틓틕틖틗틙틚틛틝",6,"틦",9,"틲틳틵틶틷틹틺벙벚베벡벤벧벨벰벱벳벴벵벼벽변별볍볏볐병볕볘볜보복볶본볼봄봅봇봉봐봔봤봬뵀뵈뵉뵌뵐뵘뵙뵤뵨부북분붇불붉붊붐붑붓붕붙붚붜붤붰붸뷔뷕뷘뷜뷩뷰뷴뷸븀븃븅브븍븐블븜븝븟비빅빈빌빎빔빕빗빙빚빛빠빡빤"],["bb41","틻",4,"팂팄팆",5,"팏팑팒팓팕팗",4,"팞팢팣"],["bb61","팤팦팧팪팫팭팮팯팱",6,"팺팾",5,"퍆퍇퍈퍉"],["bb81","퍊",31,"빨빪빰빱빳빴빵빻빼빽뺀뺄뺌뺍뺏뺐뺑뺘뺙뺨뻐뻑뻔뻗뻘뻠뻣뻤뻥뻬뼁뼈뼉뼘뼙뼛뼜뼝뽀뽁뽄뽈뽐뽑뽕뾔뾰뿅뿌뿍뿐뿔뿜뿟뿡쀼쁑쁘쁜쁠쁨쁩삐삑삔삘삠삡삣삥사삭삯산삳살삵삶삼삽삿샀상샅새색샌샐샘샙샛샜생샤"],["bc41","퍪",17,"퍾퍿펁펂펃펅펆펇"],["bc61","펈펉펊펋펎펒",5,"펚펛펝펞펟펡",6,"펪펬펮"],["bc81","펯",4,"펵펶펷펹펺펻펽",6,"폆폇폊",5,"폑",5,"샥샨샬샴샵샷샹섀섄섈섐섕서",4,"섣설섦섧섬섭섯섰성섶세섹센셀셈셉셋셌셍셔셕션셜셤셥셧셨셩셰셴셸솅소속솎손솔솖솜솝솟송솥솨솩솬솰솽쇄쇈쇌쇔쇗쇘쇠쇤쇨쇰쇱쇳쇼쇽숀숄숌숍숏숑수숙순숟술숨숩숫숭"],["bd41","폗폙",7,"폢폤",7,"폮폯폱폲폳폵폶폷"],["bd61","폸폹폺폻폾퐀퐂",5,"퐉",13],["bd81","퐗",5,"퐞",25,"숯숱숲숴쉈쉐쉑쉔쉘쉠쉥쉬쉭쉰쉴쉼쉽쉿슁슈슉슐슘슛슝스슥슨슬슭슴습슷승시식신싣실싫심십싯싱싶싸싹싻싼쌀쌈쌉쌌쌍쌓쌔쌕쌘쌜쌤쌥쌨쌩썅써썩썬썰썲썸썹썼썽쎄쎈쎌쏀쏘쏙쏜쏟쏠쏢쏨쏩쏭쏴쏵쏸쐈쐐쐤쐬쐰"],["be41","퐸",7,"푁푂푃푅",14],["be61","푔",7,"푝푞푟푡푢푣푥",7,"푮푰푱푲"],["be81","푳",4,"푺푻푽푾풁풃",4,"풊풌풎",5,"풕",8,"쐴쐼쐽쑈쑤쑥쑨쑬쑴쑵쑹쒀쒔쒜쒸쒼쓩쓰쓱쓴쓸쓺쓿씀씁씌씐씔씜씨씩씬씰씸씹씻씽아악안앉않알앍앎앓암압앗았앙앝앞애액앤앨앰앱앳앴앵야약얀얄얇얌얍얏양얕얗얘얜얠얩어억언얹얻얼얽얾엄",6,"엌엎"],["bf41","풞",10,"풪",14],["bf61","풹",18,"퓍퓎퓏퓑퓒퓓퓕"],["bf81","퓖",5,"퓝퓞퓠",7,"퓩퓪퓫퓭퓮퓯퓱",6,"퓹퓺퓼에엑엔엘엠엡엣엥여역엮연열엶엷염",5,"옅옆옇예옌옐옘옙옛옜오옥온올옭옮옰옳옴옵옷옹옻와왁완왈왐왑왓왔왕왜왝왠왬왯왱외왹왼욀욈욉욋욍요욕욘욜욤욥욧용우욱운울욹욺움웁웃웅워웍원월웜웝웠웡웨"],["c041","퓾",5,"픅픆픇픉픊픋픍",6,"픖픘",5],["c061","픞",25],["c081","픸픹픺픻픾픿핁핂핃핅",6,"핎핐핒",5,"핚핛핝핞핟핡핢핣웩웬웰웸웹웽위윅윈윌윔윕윗윙유육윤율윰윱윳융윷으윽은을읊음읍읏응",7,"읜읠읨읫이익인일읽읾잃임입잇있잉잊잎자작잔잖잗잘잚잠잡잣잤장잦재잭잰잴잼잽잿쟀쟁쟈쟉쟌쟎쟐쟘쟝쟤쟨쟬저적전절젊"],["c141","핤핦핧핪핬핮",5,"핶핷핹핺핻핽",6,"햆햊햋"],["c161","햌햍햎햏햑",19,"햦햧"],["c181","햨",31,"점접젓정젖제젝젠젤젬젭젯젱져젼졀졈졉졌졍졔조족존졸졺좀좁좃종좆좇좋좌좍좔좝좟좡좨좼좽죄죈죌죔죕죗죙죠죡죤죵주죽준줄줅줆줌줍줏중줘줬줴쥐쥑쥔쥘쥠쥡쥣쥬쥰쥴쥼즈즉즌즐즘즙즛증지직진짇질짊짐집짓"],["c241","헊헋헍헎헏헑헓",4,"헚헜헞",5,"헦헧헩헪헫헭헮"],["c261","헯",4,"헶헸헺",5,"혂혃혅혆혇혉",6,"혒"],["c281","혖",5,"혝혞혟혡혢혣혥",7,"혮",9,"혺혻징짖짙짚짜짝짠짢짤짧짬짭짯짰짱째짹짼쨀쨈쨉쨋쨌쨍쨔쨘쨩쩌쩍쩐쩔쩜쩝쩟쩠쩡쩨쩽쪄쪘쪼쪽쫀쫄쫌쫍쫏쫑쫓쫘쫙쫠쫬쫴쬈쬐쬔쬘쬠쬡쭁쭈쭉쭌쭐쭘쭙쭝쭤쭸쭹쮜쮸쯔쯤쯧쯩찌찍찐찔찜찝찡찢찧차착찬찮찰참찹찻"],["c341","혽혾혿홁홂홃홄홆홇홊홌홎홏홐홒홓홖홗홙홚홛홝",4],["c361","홢",4,"홨홪",5,"홲홳홵",11],["c381","횁횂횄횆",5,"횎횏횑횒횓횕",7,"횞횠횢",5,"횩횪찼창찾채책챈챌챔챕챗챘챙챠챤챦챨챰챵처척천철첨첩첫첬청체첵첸첼쳄쳅쳇쳉쳐쳔쳤쳬쳰촁초촉촌촐촘촙촛총촤촨촬촹최쵠쵤쵬쵭쵯쵱쵸춈추축춘출춤춥춧충춰췄췌췐취췬췰췸췹췻췽츄츈츌츔츙츠측츤츨츰츱츳층"],["c441","횫횭횮횯횱",7,"횺횼",7,"훆훇훉훊훋"],["c461","훍훎훏훐훒훓훕훖훘훚",5,"훡훢훣훥훦훧훩",4],["c481","훮훯훱훲훳훴훶",5,"훾훿휁휂휃휅",11,"휒휓휔치칙친칟칠칡침칩칫칭카칵칸칼캄캅캇캉캐캑캔캘캠캡캣캤캥캬캭컁커컥컨컫컬컴컵컷컸컹케켁켄켈켐켑켓켕켜켠켤켬켭켯켰켱켸코콕콘콜콤콥콧콩콰콱콴콸쾀쾅쾌쾡쾨쾰쿄쿠쿡쿤쿨쿰쿱쿳쿵쿼퀀퀄퀑퀘퀭퀴퀵퀸퀼"],["c541","휕휖휗휚휛휝휞휟휡",6,"휪휬휮",5,"휶휷휹"],["c561","휺휻휽",6,"흅흆흈흊",5,"흒흓흕흚",4],["c581","흟흢흤흦흧흨흪흫흭흮흯흱흲흳흵",6,"흾흿힀힂",5,"힊힋큄큅큇큉큐큔큘큠크큭큰클큼큽킁키킥킨킬킴킵킷킹타탁탄탈탉탐탑탓탔탕태택탠탤탬탭탯탰탱탸턍터턱턴털턺텀텁텃텄텅테텍텐텔템텝텟텡텨텬텼톄톈토톡톤톨톰톱톳통톺톼퇀퇘퇴퇸툇툉툐투툭툰툴툼툽툿퉁퉈퉜"],["c641","힍힎힏힑",6,"힚힜힞",5],["c6a1","퉤튀튁튄튈튐튑튕튜튠튤튬튱트특튼튿틀틂틈틉틋틔틘틜틤틥티틱틴틸팀팁팃팅파팍팎판팔팖팜팝팟팠팡팥패팩팬팰팸팹팻팼팽퍄퍅퍼퍽펀펄펌펍펏펐펑페펙펜펠펨펩펫펭펴편펼폄폅폈평폐폘폡폣포폭폰폴폼폽폿퐁"],["c7a1","퐈퐝푀푄표푠푤푭푯푸푹푼푿풀풂품풉풋풍풔풩퓌퓐퓔퓜퓟퓨퓬퓰퓸퓻퓽프픈플픔픕픗피픽핀필핌핍핏핑하학한할핥함합핫항해핵핸핼햄햅햇했행햐향허헉헌헐헒험헙헛헝헤헥헨헬헴헵헷헹혀혁현혈혐협혓혔형혜혠"],["c8a1","혤혭호혹혼홀홅홈홉홋홍홑화확환활홧황홰홱홴횃횅회획횐횔횝횟횡효횬횰횹횻후훅훈훌훑훔훗훙훠훤훨훰훵훼훽휀휄휑휘휙휜휠휨휩휫휭휴휵휸휼흄흇흉흐흑흔흖흗흘흙흠흡흣흥흩희흰흴흼흽힁히힉힌힐힘힙힛힝"],["caa1","伽佳假價加可呵哥嘉嫁家暇架枷柯歌珂痂稼苛茄街袈訶賈跏軻迦駕刻却各恪慤殼珏脚覺角閣侃刊墾奸姦干幹懇揀杆柬桿澗癎看磵稈竿簡肝艮艱諫間乫喝曷渴碣竭葛褐蝎鞨勘坎堪嵌感憾戡敢柑橄減甘疳監瞰紺邯鑑鑒龕"],["cba1","匣岬甲胛鉀閘剛堈姜岡崗康强彊慷江畺疆糠絳綱羌腔舡薑襁講鋼降鱇介价個凱塏愷愾慨改槪漑疥皆盖箇芥蓋豈鎧開喀客坑更粳羹醵倨去居巨拒据據擧渠炬祛距踞車遽鉅鋸乾件健巾建愆楗腱虔蹇鍵騫乞傑杰桀儉劍劒檢"],["cca1","瞼鈐黔劫怯迲偈憩揭擊格檄激膈覡隔堅牽犬甄絹繭肩見譴遣鵑抉決潔結缺訣兼慊箝謙鉗鎌京俓倞傾儆勁勍卿坰境庚徑慶憬擎敬景暻更梗涇炅烱璟璥瓊痙硬磬竟競絅經耕耿脛莖警輕逕鏡頃頸驚鯨係啓堺契季屆悸戒桂械"],["cda1","棨溪界癸磎稽系繫繼計誡谿階鷄古叩告呱固姑孤尻庫拷攷故敲暠枯槁沽痼皐睾稿羔考股膏苦苽菰藁蠱袴誥賈辜錮雇顧高鼓哭斛曲梏穀谷鵠困坤崑昆梱棍滾琨袞鯤汨滑骨供公共功孔工恐恭拱控攻珙空蚣貢鞏串寡戈果瓜"],["cea1","科菓誇課跨過鍋顆廓槨藿郭串冠官寬慣棺款灌琯瓘管罐菅觀貫關館刮恝括适侊光匡壙廣曠洸炚狂珖筐胱鑛卦掛罫乖傀塊壞怪愧拐槐魁宏紘肱轟交僑咬喬嬌嶠巧攪敎校橋狡皎矯絞翹膠蕎蛟較轎郊餃驕鮫丘久九仇俱具勾"],["cfa1","區口句咎嘔坵垢寇嶇廐懼拘救枸柩構歐毆毬求溝灸狗玖球瞿矩究絿耉臼舅舊苟衢謳購軀逑邱鉤銶駒驅鳩鷗龜國局菊鞠鞫麴君窘群裙軍郡堀屈掘窟宮弓穹窮芎躬倦券勸卷圈拳捲權淃眷厥獗蕨蹶闕机櫃潰詭軌饋句晷歸貴"],["d0a1","鬼龜叫圭奎揆槻珪硅窺竅糾葵規赳逵閨勻均畇筠菌鈞龜橘克剋劇戟棘極隙僅劤勤懃斤根槿瑾筋芹菫覲謹近饉契今妗擒昑檎琴禁禽芩衾衿襟金錦伋及急扱汲級給亘兢矜肯企伎其冀嗜器圻基埼夔奇妓寄岐崎己幾忌技旗旣"],["d1a1","朞期杞棋棄機欺氣汽沂淇玘琦琪璂璣畸畿碁磯祁祇祈祺箕紀綺羈耆耭肌記譏豈起錡錤飢饑騎騏驥麒緊佶吉拮桔金喫儺喇奈娜懦懶拏拿癩",5,"那樂",4,"諾酪駱亂卵暖欄煖爛蘭難鸞捏捺南嵐枏楠湳濫男藍襤拉"],["d2a1","納臘蠟衲囊娘廊",4,"乃來內奈柰耐冷女年撚秊念恬拈捻寧寗努勞奴弩怒擄櫓爐瑙盧",5,"駑魯",10,"濃籠聾膿農惱牢磊腦賂雷尿壘",7,"嫩訥杻紐勒",5,"能菱陵尼泥匿溺多茶"],["d3a1","丹亶但單團壇彖斷旦檀段湍短端簞緞蛋袒鄲鍛撻澾獺疸達啖坍憺擔曇淡湛潭澹痰聃膽蕁覃談譚錟沓畓答踏遝唐堂塘幢戇撞棠當糖螳黨代垈坮大對岱帶待戴擡玳臺袋貸隊黛宅德悳倒刀到圖堵塗導屠島嶋度徒悼挑掉搗桃"],["d4a1","棹櫂淘渡滔濤燾盜睹禱稻萄覩賭跳蹈逃途道都鍍陶韜毒瀆牘犢獨督禿篤纛讀墩惇敦旽暾沌焞燉豚頓乭突仝冬凍動同憧東桐棟洞潼疼瞳童胴董銅兜斗杜枓痘竇荳讀豆逗頭屯臀芚遁遯鈍得嶝橙燈登等藤謄鄧騰喇懶拏癩羅"],["d5a1","蘿螺裸邏樂洛烙珞絡落諾酪駱丹亂卵欄欒瀾爛蘭鸞剌辣嵐擥攬欖濫籃纜藍襤覽拉臘蠟廊朗浪狼琅瑯螂郞來崍徠萊冷掠略亮倆兩凉梁樑粮粱糧良諒輛量侶儷勵呂廬慮戾旅櫚濾礪藜蠣閭驢驪麗黎力曆歷瀝礫轢靂憐戀攣漣"],["d6a1","煉璉練聯蓮輦連鍊冽列劣洌烈裂廉斂殮濂簾獵令伶囹寧岺嶺怜玲笭羚翎聆逞鈴零靈領齡例澧禮醴隷勞怒撈擄櫓潞瀘爐盧老蘆虜路輅露魯鷺鹵碌祿綠菉錄鹿麓論壟弄朧瀧瓏籠聾儡瀨牢磊賂賚賴雷了僚寮廖料燎療瞭聊蓼"],["d7a1","遼鬧龍壘婁屢樓淚漏瘻累縷蔞褸鏤陋劉旒柳榴流溜瀏琉瑠留瘤硫謬類六戮陸侖倫崙淪綸輪律慄栗率隆勒肋凜凌楞稜綾菱陵俚利厘吏唎履悧李梨浬犁狸理璃異痢籬罹羸莉裏裡里釐離鯉吝潾燐璘藺躪隣鱗麟林淋琳臨霖砬"],["d8a1","立笠粒摩瑪痲碼磨馬魔麻寞幕漠膜莫邈万卍娩巒彎慢挽晩曼滿漫灣瞞萬蔓蠻輓饅鰻唜抹末沫茉襪靺亡妄忘忙望網罔芒茫莽輞邙埋妹媒寐昧枚梅每煤罵買賣邁魅脈貊陌驀麥孟氓猛盲盟萌冪覓免冕勉棉沔眄眠綿緬面麵滅"],["d9a1","蔑冥名命明暝椧溟皿瞑茗蓂螟酩銘鳴袂侮冒募姆帽慕摸摹暮某模母毛牟牡瑁眸矛耗芼茅謀謨貌木沐牧目睦穆鶩歿沒夢朦蒙卯墓妙廟描昴杳渺猫竗苗錨務巫憮懋戊拇撫无楙武毋無珷畝繆舞茂蕪誣貿霧鵡墨默們刎吻問文"],["daa1","汶紊紋聞蚊門雯勿沕物味媚尾嵋彌微未梶楣渼湄眉米美薇謎迷靡黴岷悶愍憫敏旻旼民泯玟珉緡閔密蜜謐剝博拍搏撲朴樸泊珀璞箔粕縛膊舶薄迫雹駁伴半反叛拌搬攀斑槃泮潘班畔瘢盤盼磐磻礬絆般蟠返頒飯勃拔撥渤潑"],["dba1","發跋醱鉢髮魃倣傍坊妨尨幇彷房放方旁昉枋榜滂磅紡肪膀舫芳蒡蚌訪謗邦防龐倍俳北培徘拜排杯湃焙盃背胚裴裵褙賠輩配陪伯佰帛柏栢白百魄幡樊煩燔番磻繁蕃藩飜伐筏罰閥凡帆梵氾汎泛犯範范法琺僻劈壁擘檗璧癖"],["dca1","碧蘗闢霹便卞弁變辨辯邊別瞥鱉鼈丙倂兵屛幷昞昺柄棅炳甁病秉竝輧餠騈保堡報寶普步洑湺潽珤甫菩補褓譜輔伏僕匐卜宓復服福腹茯蔔複覆輹輻馥鰒本乶俸奉封峯峰捧棒烽熢琫縫蓬蜂逢鋒鳳不付俯傅剖副否咐埠夫婦"],["dda1","孚孵富府復扶敷斧浮溥父符簿缶腐腑膚艀芙莩訃負賦賻赴趺部釜阜附駙鳧北分吩噴墳奔奮忿憤扮昐汾焚盆粉糞紛芬賁雰不佛弗彿拂崩朋棚硼繃鵬丕備匕匪卑妃婢庇悲憊扉批斐枇榧比毖毗毘沸泌琵痺砒碑秕秘粃緋翡肥"],["dea1","脾臂菲蜚裨誹譬費鄙非飛鼻嚬嬪彬斌檳殯浜濱瀕牝玭貧賓頻憑氷聘騁乍事些仕伺似使俟僿史司唆嗣四士奢娑寫寺射巳師徙思捨斜斯柶査梭死沙泗渣瀉獅砂社祀祠私篩紗絲肆舍莎蓑蛇裟詐詞謝賜赦辭邪飼駟麝削數朔索"],["dfa1","傘刪山散汕珊産疝算蒜酸霰乷撒殺煞薩三參杉森渗芟蔘衫揷澁鈒颯上傷像償商喪嘗孀尙峠常床庠廂想桑橡湘爽牀狀相祥箱翔裳觴詳象賞霜塞璽賽嗇塞穡索色牲生甥省笙墅壻嶼序庶徐恕抒捿敍暑曙書栖棲犀瑞筮絮緖署"],["e0a1","胥舒薯西誓逝鋤黍鼠夕奭席惜昔晳析汐淅潟石碩蓆釋錫仙僊先善嬋宣扇敾旋渲煽琁瑄璇璿癬禪線繕羨腺膳船蘚蟬詵跣選銑鐥饍鮮卨屑楔泄洩渫舌薛褻設說雪齧剡暹殲纖蟾贍閃陝攝涉燮葉城姓宬性惺成星晟猩珹盛省筬"],["e1a1","聖聲腥誠醒世勢歲洗稅笹細說貰召嘯塑宵小少巢所掃搔昭梳沼消溯瀟炤燒甦疏疎瘙笑篠簫素紹蔬蕭蘇訴逍遡邵銷韶騷俗屬束涑粟續謖贖速孫巽損蓀遜飡率宋悚松淞訟誦送頌刷殺灑碎鎖衰釗修受嗽囚垂壽嫂守岫峀帥愁"],["e2a1","戍手授搜收數樹殊水洙漱燧狩獸琇璲瘦睡秀穗竪粹綏綬繡羞脩茱蒐蓚藪袖誰讐輸遂邃酬銖銹隋隧隨雖需須首髓鬚叔塾夙孰宿淑潚熟琡璹肅菽巡徇循恂旬栒楯橓殉洵淳珣盾瞬筍純脣舜荀蓴蕣詢諄醇錞順馴戌術述鉥崇崧"],["e3a1","嵩瑟膝蝨濕拾習褶襲丞乘僧勝升承昇繩蠅陞侍匙嘶始媤尸屎屍市弑恃施是時枾柴猜矢示翅蒔蓍視試詩諡豕豺埴寔式息拭植殖湜熄篒蝕識軾食飾伸侁信呻娠宸愼新晨燼申神紳腎臣莘薪藎蜃訊身辛辰迅失室實悉審尋心沁"],["e4a1","沈深瀋甚芯諶什十拾雙氏亞俄兒啞娥峨我牙芽莪蛾衙訝阿雅餓鴉鵝堊岳嶽幄惡愕握樂渥鄂鍔顎鰐齷安岸按晏案眼雁鞍顔鮟斡謁軋閼唵岩巖庵暗癌菴闇壓押狎鴨仰央怏昻殃秧鴦厓哀埃崖愛曖涯碍艾隘靄厄扼掖液縊腋額"],["e5a1","櫻罌鶯鸚也倻冶夜惹揶椰爺耶若野弱掠略約若葯蒻藥躍亮佯兩凉壤孃恙揚攘敭暘梁楊樣洋瀁煬痒瘍禳穰糧羊良襄諒讓釀陽量養圄御於漁瘀禦語馭魚齬億憶抑檍臆偃堰彦焉言諺孼蘖俺儼嚴奄掩淹嶪業円予余勵呂女如廬"],["e6a1","旅歟汝濾璵礖礪與艅茹輿轝閭餘驪麗黎亦力域役易曆歷疫繹譯轢逆驛嚥堧姸娟宴年延憐戀捐挻撚椽沇沿涎涓淵演漣烟然煙煉燃燕璉硏硯秊筵緣練縯聯衍軟輦蓮連鉛鍊鳶列劣咽悅涅烈熱裂說閱厭廉念捻染殮炎焰琰艶苒"],["e7a1","簾閻髥鹽曄獵燁葉令囹塋寧嶺嶸影怜映暎楹榮永泳渶潁濚瀛瀯煐營獰玲瑛瑩瓔盈穎纓羚聆英詠迎鈴鍈零霙靈領乂倪例刈叡曳汭濊猊睿穢芮藝蘂禮裔詣譽豫醴銳隸霓預五伍俉傲午吾吳嗚塢墺奧娛寤悟惡懊敖旿晤梧汚澳"],["e8a1","烏熬獒筽蜈誤鰲鼇屋沃獄玉鈺溫瑥瘟穩縕蘊兀壅擁瓮甕癰翁邕雍饔渦瓦窩窪臥蛙蝸訛婉完宛梡椀浣玩琓琬碗緩翫脘腕莞豌阮頑曰往旺枉汪王倭娃歪矮外嵬巍猥畏了僚僥凹堯夭妖姚寥寮尿嶢拗搖撓擾料曜樂橈燎燿瑤療"],["e9a1","窈窯繇繞耀腰蓼蟯要謠遙遼邀饒慾欲浴縟褥辱俑傭冗勇埇墉容庸慂榕涌湧溶熔瑢用甬聳茸蓉踊鎔鏞龍于佑偶優又友右宇寓尤愚憂旴牛玗瑀盂祐禑禹紆羽芋藕虞迂遇郵釪隅雨雩勖彧旭昱栯煜稶郁頊云暈橒殞澐熉耘芸蕓"],["eaa1","運隕雲韻蔚鬱亐熊雄元原員圓園垣媛嫄寃怨愿援沅洹湲源爰猿瑗苑袁轅遠阮院願鴛月越鉞位偉僞危圍委威尉慰暐渭爲瑋緯胃萎葦蔿蝟衛褘謂違韋魏乳侑儒兪劉唯喩孺宥幼幽庾悠惟愈愉揄攸有杻柔柚柳楡楢油洧流游溜"],["eba1","濡猶猷琉瑜由留癒硫紐維臾萸裕誘諛諭踰蹂遊逾遺酉釉鍮類六堉戮毓肉育陸倫允奫尹崙淪潤玧胤贇輪鈗閏律慄栗率聿戎瀜絨融隆垠恩慇殷誾銀隱乙吟淫蔭陰音飮揖泣邑凝應膺鷹依倚儀宜意懿擬椅毅疑矣義艤薏蟻衣誼"],["eca1","議醫二以伊利吏夷姨履已弛彛怡易李梨泥爾珥理異痍痢移罹而耳肄苡荑裏裡貽貳邇里離飴餌匿溺瀷益翊翌翼謚人仁刃印吝咽因姻寅引忍湮燐璘絪茵藺蚓認隣靭靷鱗麟一佚佾壹日溢逸鎰馹任壬妊姙恁林淋稔臨荏賃入卄"],["eda1","立笠粒仍剩孕芿仔刺咨姉姿子字孜恣慈滋炙煮玆瓷疵磁紫者自茨蔗藉諮資雌作勺嚼斫昨灼炸爵綽芍酌雀鵲孱棧殘潺盞岑暫潛箴簪蠶雜丈仗匠場墻壯奬將帳庄張掌暲杖樟檣欌漿牆狀獐璋章粧腸臟臧莊葬蔣薔藏裝贓醬長"],["eea1","障再哉在宰才材栽梓渽滓災縡裁財載齋齎爭箏諍錚佇低儲咀姐底抵杵楮樗沮渚狙猪疽箸紵苧菹著藷詛貯躇這邸雎齟勣吊嫡寂摘敵滴狄炙的積笛籍績翟荻謫賊赤跡蹟迪迹適鏑佃佺傳全典前剪塡塼奠專展廛悛戰栓殿氈澱"],["efa1","煎琠田甸畑癲筌箋箭篆纏詮輾轉鈿銓錢鐫電顚顫餞切截折浙癤竊節絶占岾店漸点粘霑鮎點接摺蝶丁井亭停偵呈姃定幀庭廷征情挺政整旌晶晸柾楨檉正汀淀淨渟湞瀞炡玎珽町睛碇禎程穽精綎艇訂諪貞鄭酊釘鉦鋌錠霆靖"],["f0a1","靜頂鼎制劑啼堤帝弟悌提梯濟祭第臍薺製諸蹄醍除際霽題齊俎兆凋助嘲弔彫措操早晁曺曹朝條棗槽漕潮照燥爪璪眺祖祚租稠窕粗糟組繰肇藻蚤詔調趙躁造遭釣阻雕鳥族簇足鏃存尊卒拙猝倧宗從悰慫棕淙琮種終綜縱腫"],["f1a1","踪踵鍾鐘佐坐左座挫罪主住侏做姝胄呪周嗾奏宙州廚晝朱柱株注洲湊澍炷珠疇籌紂紬綢舟蛛註誅走躊輳週酎酒鑄駐竹粥俊儁准埈寯峻晙樽浚準濬焌畯竣蠢逡遵雋駿茁中仲衆重卽櫛楫汁葺增憎曾拯烝甑症繒蒸證贈之只"],["f2a1","咫地址志持指摯支旨智枝枳止池沚漬知砥祉祗紙肢脂至芝芷蜘誌識贄趾遲直稙稷織職唇嗔塵振搢晉晋桭榛殄津溱珍瑨璡畛疹盡眞瞋秦縉縝臻蔯袗診賑軫辰進鎭陣陳震侄叱姪嫉帙桎瓆疾秩窒膣蛭質跌迭斟朕什執潗緝輯"],["f3a1","鏶集徵懲澄且侘借叉嗟嵯差次此磋箚茶蹉車遮捉搾着窄錯鑿齪撰澯燦璨瓚竄簒纂粲纘讚贊鑽餐饌刹察擦札紮僭參塹慘慙懺斬站讒讖倉倡創唱娼廠彰愴敞昌昶暢槍滄漲猖瘡窓脹艙菖蒼債埰寀寨彩採砦綵菜蔡采釵冊柵策"],["f4a1","責凄妻悽處倜刺剔尺慽戚拓擲斥滌瘠脊蹠陟隻仟千喘天川擅泉淺玔穿舛薦賤踐遷釧闡阡韆凸哲喆徹撤澈綴輟轍鐵僉尖沾添甛瞻簽籤詹諂堞妾帖捷牒疊睫諜貼輒廳晴淸聽菁請靑鯖切剃替涕滯締諦逮遞體初剿哨憔抄招梢"],["f5a1","椒楚樵炒焦硝礁礎秒稍肖艸苕草蕉貂超酢醋醮促囑燭矗蜀觸寸忖村邨叢塚寵悤憁摠總聰蔥銃撮催崔最墜抽推椎楸樞湫皺秋芻萩諏趨追鄒酋醜錐錘鎚雛騶鰍丑畜祝竺筑築縮蓄蹙蹴軸逐春椿瑃出朮黜充忠沖蟲衝衷悴膵萃"],["f6a1","贅取吹嘴娶就炊翠聚脆臭趣醉驟鷲側仄厠惻測層侈値嗤峙幟恥梔治淄熾痔痴癡稚穉緇緻置致蚩輜雉馳齒則勅飭親七柒漆侵寢枕沈浸琛砧針鍼蟄秤稱快他咤唾墮妥惰打拖朶楕舵陀馱駝倬卓啄坼度托拓擢晫柝濁濯琢琸託"],["f7a1","鐸呑嘆坦彈憚歎灘炭綻誕奪脫探眈耽貪塔搭榻宕帑湯糖蕩兌台太怠態殆汰泰笞胎苔跆邰颱宅擇澤撑攄兎吐土討慟桶洞痛筒統通堆槌腿褪退頹偸套妬投透鬪慝特闖坡婆巴把播擺杷波派爬琶破罷芭跛頗判坂板版瓣販辦鈑"],["f8a1","阪八叭捌佩唄悖敗沛浿牌狽稗覇貝彭澎烹膨愎便偏扁片篇編翩遍鞭騙貶坪平枰萍評吠嬖幣廢弊斃肺蔽閉陛佈包匍匏咆哺圃布怖抛抱捕暴泡浦疱砲胞脯苞葡蒲袍褒逋鋪飽鮑幅暴曝瀑爆輻俵剽彪慓杓標漂瓢票表豹飇飄驃"],["f9a1","品稟楓諷豊風馮彼披疲皮被避陂匹弼必泌珌畢疋筆苾馝乏逼下何厦夏廈昰河瑕荷蝦賀遐霞鰕壑學虐謔鶴寒恨悍旱汗漢澣瀚罕翰閑閒限韓割轄函含咸啣喊檻涵緘艦銜陷鹹合哈盒蛤閤闔陜亢伉姮嫦巷恒抗杭桁沆港缸肛航"],["faa1","行降項亥偕咳垓奚孩害懈楷海瀣蟹解該諧邂駭骸劾核倖幸杏荇行享向嚮珦鄕響餉饗香噓墟虛許憲櫶獻軒歇險驗奕爀赫革俔峴弦懸晛泫炫玄玹現眩睍絃絢縣舷衒見賢鉉顯孑穴血頁嫌俠協夾峽挾浹狹脅脇莢鋏頰亨兄刑型"],["fba1","形泂滎瀅灐炯熒珩瑩荊螢衡逈邢鎣馨兮彗惠慧暳蕙蹊醯鞋乎互呼壕壺好岵弧戶扈昊晧毫浩淏湖滸澔濠濩灝狐琥瑚瓠皓祜糊縞胡芦葫蒿虎號蝴護豪鎬頀顥惑或酷婚昏混渾琿魂忽惚笏哄弘汞泓洪烘紅虹訌鴻化和嬅樺火畵"],["fca1","禍禾花華話譁貨靴廓擴攫確碻穫丸喚奐宦幻患換歡晥桓渙煥環紈還驩鰥活滑猾豁闊凰幌徨恍惶愰慌晃晄榥況湟滉潢煌璜皇篁簧荒蝗遑隍黃匯回廻徊恢悔懷晦會檜淮澮灰獪繪膾茴蛔誨賄劃獲宖橫鐄哮嚆孝效斅曉梟涍淆"],["fda1","爻肴酵驍侯候厚后吼喉嗅帿後朽煦珝逅勛勳塤壎焄熏燻薰訓暈薨喧暄煊萱卉喙毁彙徽揮暉煇諱輝麾休携烋畦虧恤譎鷸兇凶匈洶胸黑昕欣炘痕吃屹紇訖欠欽歆吸恰洽翕興僖凞喜噫囍姬嬉希憙憘戱晞曦熙熹熺犧禧稀羲詰"]]},588:function(e,t,n){"use strict";var r=n(511);var i=Object.keys||function(e){var t=[];for(var n in e){t.push(n)}return t};e.exports=Duplex;var o=n(130);o.inherits=n(536);var a=n(706);var s=n(860);o.inherits(Duplex,a);{var c=i(s.prototype);for(var u=0;u<c.length;u++){var l=c[u];if(!Duplex.prototype[l])Duplex.prototype[l]=s.prototype[l]}}function Duplex(e){if(!(this instanceof Duplex))return new Duplex(e);a.call(this,e);s.call(this,e);if(e&&e.readable===false)this.readable=false;if(e&&e.writable===false)this.writable=false;this.allowHalfOpen=true;if(e&&e.allowHalfOpen===false)this.allowHalfOpen=false;this.once("end",onend)}Object.defineProperty(Duplex.prototype,"writableHighWaterMark",{enumerable:false,get:function(){return this._writableState.highWaterMark}});function onend(){if(this.allowHalfOpen||this._writableState.ended)return;r.nextTick(onEndNT,this)}function onEndNT(e){e.end()}Object.defineProperty(Duplex.prototype,"destroyed",{get:function(){if(this._readableState===undefined||this._writableState===undefined){return false}return this._readableState.destroyed&&this._writableState.destroyed},set:function(e){if(this._readableState===undefined||this._writableState===undefined){return}this._readableState.destroyed=e;this._writableState.destroyed=e}});Duplex.prototype._destroy=function(e,t){this.push(null);this.end();r.nextTick(t,e)}},589:function(e,t,n){e.exports=realpath;realpath.realpath=realpath;realpath.sync=realpathSync;realpath.realpathSync=realpathSync;realpath.monkeypatch=monkeypatch;realpath.unmonkeypatch=unmonkeypatch;var r=n(747);var i=r.realpath;var o=r.realpathSync;var a=process.version;var s=/^v[0-5]\./.test(a);var c=n(380);function newError(e){return e&&e.syscall==="realpath"&&(e.code==="ELOOP"||e.code==="ENOMEM"||e.code==="ENAMETOOLONG")}function realpath(e,t,n){if(s){return i(e,t,n)}if(typeof t==="function"){n=t;t=null}i(e,t,function(r,i){if(newError(r)){c.realpath(e,t,n)}else{n(r,i)}})}function realpathSync(e,t){if(s){return o(e,t)}try{return o(e,t)}catch(n){if(newError(n)){return c.realpathSync(e,t)}else{throw n}}}function monkeypatch(){r.realpath=realpath;r.realpathSync=realpathSync}function unmonkeypatch(){r.realpath=i;r.realpathSync=o}},596:function(e,t,n){"use strict";var r=n(511);function destroy(e,t){var n=this;var i=this._readableState&&this._readableState.destroyed;var o=this._writableState&&this._writableState.destroyed;if(i||o){if(t){t(e)}else if(e&&(!this._writableState||!this._writableState.errorEmitted)){r.nextTick(emitErrorNT,this,e)}return this}if(this._readableState){this._readableState.destroyed=true}if(this._writableState){this._writableState.destroyed=true}this._destroy(e||null,function(e){if(!t&&e){r.nextTick(emitErrorNT,n,e);if(n._writableState){n._writableState.errorEmitted=true}}else if(t){t(e)}});return this}function undestroy(){if(this._readableState){this._readableState.destroyed=false;this._readableState.reading=false;this._readableState.ended=false;this._readableState.endEmitted=false}if(this._writableState){this._writableState.destroyed=false;this._writableState.ended=false;this._writableState.ending=false;this._writableState.finished=false;this._writableState.errorEmitted=false}}function emitErrorNT(e,t){e.emit("error",t)}e.exports={destroy:destroy,undestroy:undestroy}},599:function(e){"use strict";e.exports=balanced;function balanced(e,t,n){if(e instanceof RegExp)e=maybeMatch(e,n);if(t instanceof RegExp)t=maybeMatch(t,n);var r=range(e,t,n);return r&&{start:r[0],end:r[1],pre:n.slice(0,r[0]),body:n.slice(r[0]+e.length,r[1]),post:n.slice(r[1]+t.length)}}function maybeMatch(e,t){var n=t.match(e);return n?n[0]:null}balanced.range=range;function range(e,t,n){var r,i,o,a,s;var c=n.indexOf(e);var u=n.indexOf(t,c+1);var l=c;if(c>=0&&u>0){r=[];o=n.length;while(l>=0&&!s){if(l==c){r.push(l);c=n.indexOf(e,l+1)}else if(r.length==1){s=[r.pop(),u]}else{i=r.pop();if(i<o){o=i;a=u}u=n.indexOf(t,l+1)}l=c<u&&c>=0?c:u}if(r.length){s=[o,a]}}return s}},603:function(e,t,n){"use strict";var r=n(293);var i=r.Buffer;var o={};var a;for(a in r){if(!r.hasOwnProperty(a))continue;if(a==="SlowBuffer"||a==="Buffer")continue;o[a]=r[a]}var s=o.Buffer={};for(a in i){if(!i.hasOwnProperty(a))continue;if(a==="allocUnsafe"||a==="allocUnsafeSlow")continue;s[a]=i[a]}o.Buffer.prototype=i.prototype;if(!s.from||s.from===Uint8Array.from){s.from=function(e,t,n){if(typeof e==="number"){throw new TypeError('The "value" argument must not be of type number. Received type '+typeof e)}if(e&&typeof e.length==="undefined"){throw new TypeError("The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type "+typeof e)}return i(e,t,n)}}if(!s.alloc){s.alloc=function(e,t,n){if(typeof e!=="number"){throw new TypeError('The "size" argument must be of type number. Received type '+typeof e)}if(e<0||e>=2*(1<<30)){throw new RangeError('The value "'+e+'" is invalid for option "size"')}var r=i(e);if(!t||t.length===0){r.fill(0)}else if(typeof n==="string"){r.fill(t,n)}else{r.fill(t)}return r}}if(!o.kStringMaxLength){try{o.kStringMaxLength=process.binding("buffer").kStringMaxLength}catch(e){}}if(!o.constants){o.constants={MAX_LENGTH:o.kMaxLength};if(o.kStringMaxLength){o.constants.MAX_STRING_LENGTH=o.kStringMaxLength}}e.exports=o},604:function(e,t,n){"use strict";const r=n(622);const i=n(829);const o=n(16);const a=n(97);const s=n(106);const c=n(311);const u=process.platform==="win32";const l=/\.(?:com|exe)$/i;const f=/node_modules[\\\/].bin[\\\/][^\\\/]+\.cmd$/i;const p=i(()=>c.satisfies(process.version,"^4.8.0 || ^5.7.0 || >= 6.0.0",true))||false;function detectShebang(e){e.file=o(e);const t=e.file&&s(e.file);if(t){e.args.unshift(e.file);e.command=t;return o(e)}return e.file}function parseNonShell(e){if(!u){return e}const t=detectShebang(e);const n=!l.test(t);if(e.options.forceShell||n){const n=f.test(t);e.command=r.normalize(e.command);e.command=a.command(e.command);e.args=e.args.map(e=>a.argument(e,n));const i=[e.command].concat(e.args).join(" ");e.args=["/d","/s","/c",`"${i}"`];e.command=process.env.comspec||"cmd.exe";e.options.windowsVerbatimArguments=true}return e}function parseShell(e){if(p){return e}const t=[e.command].concat(e.args).join(" ");if(u){e.command=typeof e.options.shell==="string"?e.options.shell:process.env.comspec||"cmd.exe";e.args=["/d","/s","/c",`"${t}"`];e.options.windowsVerbatimArguments=true}else{if(typeof e.options.shell==="string"){e.command=e.options.shell}else if(process.platform==="android"){e.command="/system/bin/sh"}else{e.command="/bin/sh"}e.args=["-c",t]}return e}function parse(e,t,n){if(t&&!Array.isArray(t)){n=t;t=null}t=t?t.slice(0):[];n=Object.assign({},n);const r={command:e,args:t,options:n,file:undefined,original:{command:e,args:t}};return n.shell?parseShell(r):parseNonShell(r)}e.exports=parse},605:function(e){e.exports=__webpack_require__(4219)},614:function(e){e.exports=__webpack_require__(4859)},616:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(357));const o=r(n(846));const a=r(n(415));const s=r(n(159));const c=r(n(43));const u=new c.default(5);class BailableError extends Error{constructor(...e){super(...e);this.bail=false}}class FileRef{constructor({mode:e=33188,digest:t,mutable:n=false}){i.default(typeof e==="number");i.default(typeof t==="string");this.type="FileRef";this.mode=e;this.digest=t;this.mutable=n}async toStreamAsync(){let e="";const[t,n]=this.digest.split(":");if(t==="sha"){e=this.mutable?`https://now-files.s3.amazonaws.com/${n}`:`https://dmmcy0pwk6bqi.cloudfront.net/${n}`}else if(t==="sha+ephemeral"){e=`https://now-ephemeral-files.s3.amazonaws.com/${n}`}else{throw new Error("Expected digest to be sha")}await u.acquire();try{return await s.default(async()=>{const t=await o.default(e);if(!t.ok){const n=new BailableError(`download: ${t.status} ${t.statusText} for ${e}`);if(t.status===403)n.bail=true;throw n}return t.body},{factor:1,retries:3})}finally{u.release()}}toStream(){let e=false;return a.default(t=>{if(e)return t(null,null);e=true;this.toStreamAsync().then(e=>{t(null,e)}).catch(e=>{t(e,null)})})}}t.default=FileRef},619:function(e){e.exports=__webpack_require__(9380)},620:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});class Prerender{constructor({expiration:e,lambda:t,fallback:n,group:r}){this.type="Prerender";this.expiration=e;this.lambda=t;this.fallback=n;if(typeof r!=="undefined"&&(r<=0||!Number.isInteger(r))){throw new Error("The `group` argument for `Prerender` needs to be a natural number.")}this.group=r}}t.Prerender=Prerender},621:function(e){"use strict";e.exports=/^#!.*/},622:function(e){e.exports=__webpack_require__(5897)},623:function(e,t,n){e.exports=n(696)},624:function(e,t,n){"use strict";var r=n(293).Buffer,i=n(413).Transform;e.exports=function(e){e.encodeStream=function encodeStream(t,n){return new IconvLiteEncoderStream(e.getEncoder(t,n),n)};e.decodeStream=function decodeStream(t,n){return new IconvLiteDecoderStream(e.getDecoder(t,n),n)};e.supportsStreams=true;e.IconvLiteEncoderStream=IconvLiteEncoderStream;e.IconvLiteDecoderStream=IconvLiteDecoderStream;e._collect=IconvLiteDecoderStream.prototype.collect};function IconvLiteEncoderStream(e,t){this.conv=e;t=t||{};t.decodeStrings=false;i.call(this,t)}IconvLiteEncoderStream.prototype=Object.create(i.prototype,{constructor:{value:IconvLiteEncoderStream}});IconvLiteEncoderStream.prototype._transform=function(e,t,n){if(typeof e!="string")return n(new Error("Iconv encoding stream needs strings as its input."));try{var r=this.conv.write(e);if(r&&r.length)this.push(r);n()}catch(e){n(e)}};IconvLiteEncoderStream.prototype._flush=function(e){try{var t=this.conv.end();if(t&&t.length)this.push(t);e()}catch(t){e(t)}};IconvLiteEncoderStream.prototype.collect=function(e){var t=[];this.on("error",e);this.on("data",function(e){t.push(e)});this.on("end",function(){e(null,r.concat(t))});return this};function IconvLiteDecoderStream(e,t){this.conv=e;t=t||{};t.encoding=this.encoding="utf8";i.call(this,t)}IconvLiteDecoderStream.prototype=Object.create(i.prototype,{constructor:{value:IconvLiteDecoderStream}});IconvLiteDecoderStream.prototype._transform=function(e,t,n){if(!r.isBuffer(e))return n(new Error("Iconv decoding stream needs buffers as its input."));try{var i=this.conv.write(e);if(i&&i.length)this.push(i,this.encoding);n()}catch(e){n(e)}};IconvLiteDecoderStream.prototype._flush=function(e){try{var t=this.conv.end();if(t&&t.length)this.push(t,this.encoding);e()}catch(t){e(t)}};IconvLiteDecoderStream.prototype.collect=function(e){var t="";this.on("error",e);this.on("data",function(e){t+=e});this.on("end",function(){e(null,t)});return this}},629:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(622));const o=r(n(194));const a=n(410);const s=61440;const c=40960;function isSymbolicLink(e){return(e&s)===c}t.isSymbolicLink=isSymbolicLink;async function downloadFile(e,t){const{mode:n}=e;if(n&&isSymbolicLink(n)&&e.type==="FileFsRef"){const[r]=await Promise.all([a.readlink(e.fsPath),a.mkdirp(i.default.dirname(t))]);await a.symlink(r,t);return o.default.fromFsPath({mode:n,fsPath:t})}else{const r=e.toStream();return o.default.fromStream({mode:n,stream:r,fsPath:t})}}async function removeFile(e,t){const n=i.default.join(e,t);await a.remove(n)}async function download(e,t,n){const{isDev:r=false,skipDownload:o=false,filesChanged:a=null,filesRemoved:s=null}=n||{};if(r||o){return e}const c={};await Promise.all(Object.keys(e).map(async n=>{if(Array.isArray(s)&&s.includes(n)){await removeFile(t,n);return}if(Array.isArray(a)&&!a.includes(n)){return}const r=e[n];const o=i.default.join(t,n);c[n]=await downloadFile(r,o)}));return c}t.default=download},637:function(e){if(typeof Object.create==="function"){e.exports=function inherits(e,t){if(t){e.super_=t;e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:false,writable:true,configurable:true}})}}}else{e.exports=function inherits(e,t){if(t){e.super_=t;var n=function(){};n.prototype=t.prototype;e.prototype=new n;e.prototype.constructor=e}}}},648:function(e,t,n){"use strict";const r=n(323).fromCallback;const i=r(n(171));const o=n(452);e.exports={mkdirs:i,mkdirsSync:o,mkdirp:i,mkdirpSync:o,ensureDir:i,ensureDirSync:o}},663:function(e,t,n){var r=n(366).Readable;var i=n(536);e.exports=from2;from2.ctor=ctor;from2.obj=obj;var o=ctor();function toFunction(e){e=e.slice();return function(t,n){var r=null;var i=e.length?e.shift():null;if(i instanceof Error){r=i;i=null}n(r,i)}}function from2(e,t){if(typeof e!=="object"||Array.isArray(e)){t=e;e={}}var n=new o(e);n._from=Array.isArray(t)?toFunction(t):t||noop;return n}function ctor(e,t){if(typeof e==="function"){t=e;e={}}e=defaults(e);i(Class,r);function Class(t){if(!(this instanceof Class))return new Class(t);this._reading=false;this._callback=check;this.destroyed=false;r.call(this,t||e);var n=this;var i=this._readableState.highWaterMark;function check(e,t){if(n.destroyed)return;if(e)return n.destroy(e);if(t===null)return n.push(null);n._reading=false;if(n.push(t))n._read(i)}}Class.prototype._from=t||noop;Class.prototype._read=function(e){if(this._reading||this.destroyed)return;this._reading=true;this._from(e,this._callback)};Class.prototype.destroy=function(e){if(this.destroyed)return;this.destroyed=true;var t=this;process.nextTick(function(){if(e)t.emit("error",e);t.emit("close")})};return Class}function obj(e,t){if(typeof e==="function"||Array.isArray(e)){t=e;e={}}e=defaults(e);e.objectMode=true;e.highWaterMark=16;return from2(e,t)}function noop(){}function defaults(e){e=e||{};return e}},667:function(e,t,n){"use strict";const r=n(729);const i=n(622);const o=n(161).copySync;const a=n(301).removeSync;const s=n(648).mkdirsSync;const c=n(518);function moveSync(e,t,n){n=n||{};const o=n.overwrite||n.clobber||false;e=i.resolve(e);t=i.resolve(t);if(e===t)return r.accessSync(e);if(isSrcSubdir(e,t))throw new Error(`Cannot move '${e}' into itself '${t}'.`);s(i.dirname(t));tryRenameSync();function tryRenameSync(){if(o){try{return r.renameSync(e,t)}catch(r){if(r.code==="ENOTEMPTY"||r.code==="EEXIST"||r.code==="EPERM"){a(t);n.overwrite=false;return moveSync(e,t,n)}if(r.code!=="EXDEV")throw r;return moveSyncAcrossDevice(e,t,o)}}else{try{r.linkSync(e,t);return r.unlinkSync(e)}catch(n){if(n.code==="EXDEV"||n.code==="EISDIR"||n.code==="EPERM"||n.code==="ENOTSUP"){return moveSyncAcrossDevice(e,t,o)}throw n}}}}function moveSyncAcrossDevice(e,t,n){const i=r.statSync(e);if(i.isDirectory()){return moveDirSyncAcrossDevice(e,t,n)}else{return moveFileSyncAcrossDevice(e,t,n)}}function moveFileSyncAcrossDevice(e,t,n){const i=64*1024;const o=c(i);const a=n?"w":"wx";const s=r.openSync(e,"r");const u=r.fstatSync(s);const l=r.openSync(t,a,u.mode);let f=0;while(f<u.size){const e=r.readSync(s,o,0,i,f);r.writeSync(l,o,0,e);f+=e}r.closeSync(s);r.closeSync(l);return r.unlinkSync(e)}function moveDirSyncAcrossDevice(e,t,n){const r={overwrite:false};if(n){a(t);tryCopySync()}else{tryCopySync()}function tryCopySync(){o(e,t,r);return a(e)}}function isSrcSubdir(e,t){try{return r.statSync(e).isDirectory()&&e!==t&&t.indexOf(e)>-1&&t.split(i.dirname(e)+i.sep)[1].split(i.sep)[0]===i.basename(e)}catch(e){return false}}e.exports={moveSync:moveSync}},669:function(e){e.exports=__webpack_require__(649)},672:function(e,t,n){"use strict";var r=n(293).Buffer;e.exports=function(e){var t=undefined;e.supportsNodeEncodingsExtension=!(r.from||new r(0)instanceof Uint8Array);e.extendNodeEncodings=function extendNodeEncodings(){if(t)return;t={};if(!e.supportsNodeEncodingsExtension){console.error("ACTION NEEDED: require('iconv-lite').extendNodeEncodings() is not supported in your version of Node");console.error("See more info at https://github.com/ashtuchkin/iconv-lite/wiki/Node-v4-compatibility");return}var i={hex:true,utf8:true,"utf-8":true,ascii:true,binary:true,base64:true,ucs2:true,"ucs-2":true,utf16le:true,"utf-16le":true};r.isNativeEncoding=function(e){return e&&i[e.toLowerCase()]};var o=n(293).SlowBuffer;t.SlowBufferToString=o.prototype.toString;o.prototype.toString=function(n,i,o){n=String(n||"utf8").toLowerCase();if(r.isNativeEncoding(n))return t.SlowBufferToString.call(this,n,i,o);if(typeof i=="undefined")i=0;if(typeof o=="undefined")o=this.length;return e.decode(this.slice(i,o),n)};t.SlowBufferWrite=o.prototype.write;o.prototype.write=function(n,i,o,a){if(isFinite(i)){if(!isFinite(o)){a=o;o=undefined}}else{var s=a;a=i;i=o;o=s}i=+i||0;var c=this.length-i;if(!o){o=c}else{o=+o;if(o>c){o=c}}a=String(a||"utf8").toLowerCase();if(r.isNativeEncoding(a))return t.SlowBufferWrite.call(this,n,i,o,a);if(n.length>0&&(o<0||i<0))throw new RangeError("attempt to write beyond buffer bounds");var u=e.encode(n,a);if(u.length<o)o=u.length;u.copy(this,i,0,o);return o};t.BufferIsEncoding=r.isEncoding;r.isEncoding=function(t){return r.isNativeEncoding(t)||e.encodingExists(t)};t.BufferByteLength=r.byteLength;r.byteLength=o.byteLength=function(n,i){i=String(i||"utf8").toLowerCase();if(r.isNativeEncoding(i))return t.BufferByteLength.call(this,n,i);return e.encode(n,i).length};t.BufferToString=r.prototype.toString;r.prototype.toString=function(n,i,o){n=String(n||"utf8").toLowerCase();if(r.isNativeEncoding(n))return t.BufferToString.call(this,n,i,o);if(typeof i=="undefined")i=0;if(typeof o=="undefined")o=this.length;return e.decode(this.slice(i,o),n)};t.BufferWrite=r.prototype.write;r.prototype.write=function(n,i,o,a){var s=i,c=o,u=a;if(isFinite(i)){if(!isFinite(o)){a=o;o=undefined}}else{var l=a;a=i;i=o;o=l}a=String(a||"utf8").toLowerCase();if(r.isNativeEncoding(a))return t.BufferWrite.call(this,n,s,c,u);i=+i||0;var f=this.length-i;if(!o){o=f}else{o=+o;if(o>f){o=f}}if(n.length>0&&(o<0||i<0))throw new RangeError("attempt to write beyond buffer bounds");var p=e.encode(n,a);if(p.length<o)o=p.length;p.copy(this,i,0,o);return o};if(e.supportsStreams){var a=n(413).Readable;t.ReadableSetEncoding=a.prototype.setEncoding;a.prototype.setEncoding=function setEncoding(t,n){this._readableState.decoder=e.getDecoder(t,n);this._readableState.encoding=t};a.prototype.collect=e._collect}};e.undoExtendNodeEncodings=function undoExtendNodeEncodings(){if(!e.supportsNodeEncodingsExtension)return;if(!t)throw new Error("require('iconv-lite').undoExtendNodeEncodings(): Nothing to undo; extendNodeEncodings() is not called.");delete r.isNativeEncoding;var i=n(293).SlowBuffer;i.prototype.toString=t.SlowBufferToString;i.prototype.write=t.SlowBufferWrite;r.isEncoding=t.BufferIsEncoding;r.byteLength=t.BufferByteLength;r.prototype.toString=t.BufferToString;r.prototype.write=t.BufferWrite;if(e.supportsStreams){var o=n(413).Readable;o.prototype.setEncoding=t.ReadableSetEncoding;delete o.prototype.collect}t=undefined}}},691:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});const r=n(622);const i=n(819);function escapeName(e){const t="[]^$.|?*+()".split("");for(const n of t){e=e.replace(new RegExp(`\\${n}`,"g"),`\\${n}`)}return e}function joinPath(...e){const t=e.join("/");return t.replace(/\/{2,}/g,"/")}function concatArrayOfText(e){if(e.length<=2){return e.join(" and ")}const t=e.pop();return`${e.join(", ")}, and ${t}`}function getSegmentName(e){const{name:t}=r.parse(e);if(t.startsWith("[")&&t.endsWith("]")){return t.slice(1,-1)}return null}function createRouteFromPath(e){const t=e.split("/");let n=1;const i=[];const o=t.map((e,o)=>{const a=getSegmentName(e);const s=o===t.length-1;if(a!==null){i.push(`${a}=$${n++}`);return`([^\\/]+)`}else if(s){const{name:t,ext:n}=r.parse(e);const i=t==="index";const o=i?"\\/":"";const a=[o,o+escapeName(t),o+escapeName(t)+escapeName(n)].filter(Boolean);return`(${a.join("|")})${i?"?":""}`}return e});const{name:a}=r.parse(e);const s=a==="index";const c=s?`^/${o.slice(0,-1).join("/")}${o.slice(-1)[0]}$`:`^/${o.join("/")}$`;const u=`/${e}${i.length?"?":""}${i.join("&")}`;return{src:c,dest:u}}function partiallyMatches(e,t){const n=e.split("/");const r=t.split("/");const i=n.length>r.length?n:r;const o=i===n?r:n;let a=0;for(const e of o){const t=i[a];const n=getSegmentName(t);const r=getSegmentName(e);if(e!==t&&(!n||!r)){return false}if(n!==r){return true}a+=1}return false}function pathOccurrences(e,t){const n=e=>{const{dir:t,name:n}=r.parse(e);const i=joinPath(t,n).split("/");return i.map(e=>e.replace(/\[.*\]/,"1")).join("/")};const i=n(e);return t.reduce((t,r)=>{const o=n(r);if(o===i){t.push(r)}else if(partiallyMatches(e,r)){t.push(r)}return t},[])}function getConflictingSegment(e){const t=new Set;for(const n of e.split("/")){const e=getSegmentName(n);if(e!==null&&t.has(e)){return e}if(e){t.add(e)}}return null}function sortFilesBySegmentCount(e,t){const n=e.split("/").length;const r=t.split("/").length;if(n>r){return-1}if(n<r){return 1}const i=(e,t)=>getSegmentName(t)?e+1:0;const o=e.split("/").reduce(i,0);const a=t.split("/").reduce(i,0);if(o>a){return 1}if(o<a){return-1}return 0}async function detectApiRoutes(e){if(!e||e.length===0){return{defaultRoutes:null,error:null}}const t=e.filter(i.ignoreApiFilter).sort(i.sortFiles).sort(sortFilesBySegmentCount);const n=[];for(const e of t){if(!e.startsWith("api/")){continue}const r=getConflictingSegment(e);if(r){return{defaultRoutes:null,error:{code:"conflicting_path_segment",message:`The segment "${r}" occurres more than `+`one time in your path "${e}". Please make sure that `+`every segment in a path is unique`}}}const i=pathOccurrences(e,t).filter(t=>t!==e);if(i.length>0){const t=concatArrayOfText(i.map(e=>`"${e}"`));return{defaultRoutes:null,error:{code:"conflicting_file_path",message:`Two or more files have conflicting paths or names. `+`Please make sure path segments and filenames, without their extension, are unique. `+`The path "${e}" has conflicts with ${t}`}}}n.push(createRouteFromPath(e))}if(n.length){n.push({status:404,src:"/api(\\/.*)?$"})}return{defaultRoutes:n,error:null}}function hasPublicBuilder(e){return e.some(e=>e.use==="@now/static"&&e.src==="public/**/*"&&e.config&&e.config.zeroConfig===true)}async function detectRoutes(e,t){const n=await detectApiRoutes(e);if(n.defaultRoutes&&hasPublicBuilder(t)){n.defaultRoutes.push({src:"/(.*)",dest:"/public/$1"})}return n}t.detectRoutes=detectRoutes},696:function(e,t,n){var r=n(562);t.operation=function(e){var n=t.timeouts(e);return new r(n,{forever:e&&e.forever,unref:e&&e.unref,maxRetryTime:e&&e.maxRetryTime})};t.timeouts=function(e){if(e instanceof Array){return[].concat(e)}var t={retries:10,factor:2,minTimeout:1*1e3,maxTimeout:Infinity,randomize:false};for(var n in e){t[n]=e[n]}if(t.minTimeout>t.maxTimeout){throw new Error("minTimeout is greater than maxTimeout")}var r=[];for(var i=0;i<t.retries;i++){r.push(this.createTimeout(i,t))}if(e&&e.forever&&!r.length){r.push(this.createTimeout(i,t))}r.sort(function(e,t){return e-t});return r};t.createTimeout=function(e,t){var n=t.randomize?Math.random()+1:1;var r=Math.round(n*t.minTimeout*Math.pow(t.factor,e));r=Math.min(r,t.maxTimeout);return r};t.wrap=function(e,n,r){if(n instanceof Array){r=n;n=null}if(!r){r=[];for(var i in e){if(typeof e[i]==="function"){r.push(i)}}}for(var o=0;o<r.length;o++){var a=r[o];var s=e[a];e[a]=function retryWrapper(r){var i=t.operation(n);var o=Array.prototype.slice.call(arguments,1);var a=o.pop();o.push(function(e){if(i.retry(e)){return}if(e){arguments[0]=i.mainError()}a.apply(this,arguments)});i.attempt(function(){r.apply(e,o)})}.bind(e,s);e[a].options=n}}},697:function(e){"use strict";e.exports=(e=>{e=e||{};const t=e.env||process.env;const n=e.platform||process.platform;if(n!=="win32"){return"PATH"}return Object.keys(t).find(e=>e.toUpperCase()==="PATH")||"Path"})},706:function(e,t,n){"use strict";var r=n(511);e.exports=Readable;var i=n(477);var o;Readable.ReadableState=ReadableState;var a=n(614).EventEmitter;var s=function(e,t){return e.listeners(t).length};var c=n(707);var u=n(393).Buffer;var l=global.Uint8Array||function(){};function _uint8ArrayToBuffer(e){return u.from(e)}function _isUint8Array(e){return u.isBuffer(e)||e instanceof l}var f=n(130);f.inherits=n(536);var p=n(669);var d=void 0;if(p&&p.debuglog){d=p.debuglog("stream")}else{d=function(){}}var h=n(4);var m=n(596);var v;f.inherits(Readable,c);var g=["error","close","destroy","pause","resume"];function prependListener(e,t,n){if(typeof e.prependListener==="function")return e.prependListener(t,n);if(!e._events||!e._events[t])e.on(t,n);else if(i(e._events[t]))e._events[t].unshift(n);else e._events[t]=[n,e._events[t]]}function ReadableState(e,t){o=o||n(588);e=e||{};var r=t instanceof o;this.objectMode=!!e.objectMode;if(r)this.objectMode=this.objectMode||!!e.readableObjectMode;var i=e.highWaterMark;var a=e.readableHighWaterMark;var s=this.objectMode?16:16*1024;if(i||i===0)this.highWaterMark=i;else if(r&&(a||a===0))this.highWaterMark=a;else this.highWaterMark=s;this.highWaterMark=Math.floor(this.highWaterMark);this.buffer=new h;this.length=0;this.pipes=null;this.pipesCount=0;this.flowing=null;this.ended=false;this.endEmitted=false;this.reading=false;this.sync=true;this.needReadable=false;this.emittedReadable=false;this.readableListening=false;this.resumeScheduled=false;this.destroyed=false;this.defaultEncoding=e.defaultEncoding||"utf8";this.awaitDrain=0;this.readingMore=false;this.decoder=null;this.encoding=null;if(e.encoding){if(!v)v=n(197).StringDecoder;this.decoder=new v(e.encoding);this.encoding=e.encoding}}function Readable(e){o=o||n(588);if(!(this instanceof Readable))return new Readable(e);this._readableState=new ReadableState(e,this);this.readable=true;if(e){if(typeof e.read==="function")this._read=e.read;if(typeof e.destroy==="function")this._destroy=e.destroy}c.call(this)}Object.defineProperty(Readable.prototype,"destroyed",{get:function(){if(this._readableState===undefined){return false}return this._readableState.destroyed},set:function(e){if(!this._readableState){return}this._readableState.destroyed=e}});Readable.prototype.destroy=m.destroy;Readable.prototype._undestroy=m.undestroy;Readable.prototype._destroy=function(e,t){this.push(null);t(e)};Readable.prototype.push=function(e,t){var n=this._readableState;var r;if(!n.objectMode){if(typeof e==="string"){t=t||n.defaultEncoding;if(t!==n.encoding){e=u.from(e,t);t=""}r=true}}else{r=true}return readableAddChunk(this,e,t,false,r)};Readable.prototype.unshift=function(e){return readableAddChunk(this,e,null,true,false)};function readableAddChunk(e,t,n,r,i){var o=e._readableState;if(t===null){o.reading=false;onEofChunk(e,o)}else{var a;if(!i)a=chunkInvalid(o,t);if(a){e.emit("error",a)}else if(o.objectMode||t&&t.length>0){if(typeof t!=="string"&&!o.objectMode&&Object.getPrototypeOf(t)!==u.prototype){t=_uint8ArrayToBuffer(t)}if(r){if(o.endEmitted)e.emit("error",new Error("stream.unshift() after end event"));else addChunk(e,o,t,true)}else if(o.ended){e.emit("error",new Error("stream.push() after EOF"))}else{o.reading=false;if(o.decoder&&!n){t=o.decoder.write(t);if(o.objectMode||t.length!==0)addChunk(e,o,t,false);else maybeReadMore(e,o)}else{addChunk(e,o,t,false)}}}else if(!r){o.reading=false}}return needMoreData(o)}function addChunk(e,t,n,r){if(t.flowing&&t.length===0&&!t.sync){e.emit("data",n);e.read(0)}else{t.length+=t.objectMode?1:n.length;if(r)t.buffer.unshift(n);else t.buffer.push(n);if(t.needReadable)emitReadable(e)}maybeReadMore(e,t)}function chunkInvalid(e,t){var n;if(!_isUint8Array(t)&&typeof t!=="string"&&t!==undefined&&!e.objectMode){n=new TypeError("Invalid non-string/buffer chunk")}return n}function needMoreData(e){return!e.ended&&(e.needReadable||e.length<e.highWaterMark||e.length===0)}Readable.prototype.isPaused=function(){return this._readableState.flowing===false};Readable.prototype.setEncoding=function(e){if(!v)v=n(197).StringDecoder;this._readableState.decoder=new v(e);this._readableState.encoding=e;return this};var y=8388608;function computeNewHighWaterMark(e){if(e>=y){e=y}else{e--;e|=e>>>1;e|=e>>>2;e|=e>>>4;e|=e>>>8;e|=e>>>16;e++}return e}function howMuchToRead(e,t){if(e<=0||t.length===0&&t.ended)return 0;if(t.objectMode)return 1;if(e!==e){if(t.flowing&&t.length)return t.buffer.head.data.length;else return t.length}if(e>t.highWaterMark)t.highWaterMark=computeNewHighWaterMark(e);if(e<=t.length)return e;if(!t.ended){t.needReadable=true;return 0}return t.length}Readable.prototype.read=function(e){d("read",e);e=parseInt(e,10);var t=this._readableState;var n=e;if(e!==0)t.emittedReadable=false;if(e===0&&t.needReadable&&(t.length>=t.highWaterMark||t.ended)){d("read: emitReadable",t.length,t.ended);if(t.length===0&&t.ended)endReadable(this);else emitReadable(this);return null}e=howMuchToRead(e,t);if(e===0&&t.ended){if(t.length===0)endReadable(this);return null}var r=t.needReadable;d("need readable",r);if(t.length===0||t.length-e<t.highWaterMark){r=true;d("length less than watermark",r)}if(t.ended||t.reading){r=false;d("reading or ended",r)}else if(r){d("do read");t.reading=true;t.sync=true;if(t.length===0)t.needReadable=true;this._read(t.highWaterMark);t.sync=false;if(!t.reading)e=howMuchToRead(n,t)}var i;if(e>0)i=fromList(e,t);else i=null;if(i===null){t.needReadable=true;e=0}else{t.length-=e}if(t.length===0){if(!t.ended)t.needReadable=true;if(n!==e&&t.ended)endReadable(this)}if(i!==null)this.emit("data",i);return i};function onEofChunk(e,t){if(t.ended)return;if(t.decoder){var n=t.decoder.end();if(n&&n.length){t.buffer.push(n);t.length+=t.objectMode?1:n.length}}t.ended=true;emitReadable(e)}function emitReadable(e){var t=e._readableState;t.needReadable=false;if(!t.emittedReadable){d("emitReadable",t.flowing);t.emittedReadable=true;if(t.sync)r.nextTick(emitReadable_,e);else emitReadable_(e)}}function emitReadable_(e){d("emit readable");e.emit("readable");flow(e)}function maybeReadMore(e,t){if(!t.readingMore){t.readingMore=true;r.nextTick(maybeReadMore_,e,t)}}function maybeReadMore_(e,t){var n=t.length;while(!t.reading&&!t.flowing&&!t.ended&&t.length<t.highWaterMark){d("maybeReadMore read 0");e.read(0);if(n===t.length)break;else n=t.length}t.readingMore=false}Readable.prototype._read=function(e){this.emit("error",new Error("_read() is not implemented"))};Readable.prototype.pipe=function(e,t){var n=this;var i=this._readableState;switch(i.pipesCount){case 0:i.pipes=e;break;case 1:i.pipes=[i.pipes,e];break;default:i.pipes.push(e);break}i.pipesCount+=1;d("pipe count=%d opts=%j",i.pipesCount,t);var o=(!t||t.end!==false)&&e!==process.stdout&&e!==process.stderr;var a=o?onend:unpipe;if(i.endEmitted)r.nextTick(a);else n.once("end",a);e.on("unpipe",onunpipe);function onunpipe(e,t){d("onunpipe");if(e===n){if(t&&t.hasUnpiped===false){t.hasUnpiped=true;cleanup()}}}function onend(){d("onend");e.end()}var c=pipeOnDrain(n);e.on("drain",c);var u=false;function cleanup(){d("cleanup");e.removeListener("close",onclose);e.removeListener("finish",onfinish);e.removeListener("drain",c);e.removeListener("error",onerror);e.removeListener("unpipe",onunpipe);n.removeListener("end",onend);n.removeListener("end",unpipe);n.removeListener("data",ondata);u=true;if(i.awaitDrain&&(!e._writableState||e._writableState.needDrain))c()}var l=false;n.on("data",ondata);function ondata(t){d("ondata");l=false;var r=e.write(t);if(false===r&&!l){if((i.pipesCount===1&&i.pipes===e||i.pipesCount>1&&indexOf(i.pipes,e)!==-1)&&!u){d("false write response, pause",n._readableState.awaitDrain);n._readableState.awaitDrain++;l=true}n.pause()}}function onerror(t){d("onerror",t);unpipe();e.removeListener("error",onerror);if(s(e,"error")===0)e.emit("error",t)}prependListener(e,"error",onerror);function onclose(){e.removeListener("finish",onfinish);unpipe()}e.once("close",onclose);function onfinish(){d("onfinish");e.removeListener("close",onclose);unpipe()}e.once("finish",onfinish);function unpipe(){d("unpipe");n.unpipe(e)}e.emit("pipe",n);if(!i.flowing){d("pipe resume");n.resume()}return e};function pipeOnDrain(e){return function(){var t=e._readableState;d("pipeOnDrain",t.awaitDrain);if(t.awaitDrain)t.awaitDrain--;if(t.awaitDrain===0&&s(e,"data")){t.flowing=true;flow(e)}}}Readable.prototype.unpipe=function(e){var t=this._readableState;var n={hasUnpiped:false};if(t.pipesCount===0)return this;if(t.pipesCount===1){if(e&&e!==t.pipes)return this;if(!e)e=t.pipes;t.pipes=null;t.pipesCount=0;t.flowing=false;if(e)e.emit("unpipe",this,n);return this}if(!e){var r=t.pipes;var i=t.pipesCount;t.pipes=null;t.pipesCount=0;t.flowing=false;for(var o=0;o<i;o++){r[o].emit("unpipe",this,n)}return this}var a=indexOf(t.pipes,e);if(a===-1)return this;t.pipes.splice(a,1);t.pipesCount-=1;if(t.pipesCount===1)t.pipes=t.pipes[0];e.emit("unpipe",this,n);return this};Readable.prototype.on=function(e,t){var n=c.prototype.on.call(this,e,t);if(e==="data"){if(this._readableState.flowing!==false)this.resume()}else if(e==="readable"){var i=this._readableState;if(!i.endEmitted&&!i.readableListening){i.readableListening=i.needReadable=true;i.emittedReadable=false;if(!i.reading){r.nextTick(nReadingNextTick,this)}else if(i.length){emitReadable(this)}}}return n};Readable.prototype.addListener=Readable.prototype.on;function nReadingNextTick(e){d("readable nexttick read 0");e.read(0)}Readable.prototype.resume=function(){var e=this._readableState;if(!e.flowing){d("resume");e.flowing=true;resume(this,e)}return this};function resume(e,t){if(!t.resumeScheduled){t.resumeScheduled=true;r.nextTick(resume_,e,t)}}function resume_(e,t){if(!t.reading){d("resume read 0");e.read(0)}t.resumeScheduled=false;t.awaitDrain=0;e.emit("resume");flow(e);if(t.flowing&&!t.reading)e.read(0)}Readable.prototype.pause=function(){d("call pause flowing=%j",this._readableState.flowing);if(false!==this._readableState.flowing){d("pause");this._readableState.flowing=false;this.emit("pause")}return this};function flow(e){var t=e._readableState;d("flow",t.flowing);while(t.flowing&&e.read()!==null){}}Readable.prototype.wrap=function(e){var t=this;var n=this._readableState;var r=false;e.on("end",function(){d("wrapped end");if(n.decoder&&!n.ended){var e=n.decoder.end();if(e&&e.length)t.push(e)}t.push(null)});e.on("data",function(i){d("wrapped data");if(n.decoder)i=n.decoder.write(i);if(n.objectMode&&(i===null||i===undefined))return;else if(!n.objectMode&&(!i||!i.length))return;var o=t.push(i);if(!o){r=true;e.pause()}});for(var i in e){if(this[i]===undefined&&typeof e[i]==="function"){this[i]=function(t){return function(){return e[t].apply(e,arguments)}}(i)}}for(var o=0;o<g.length;o++){e.on(g[o],this.emit.bind(this,g[o]))}this._read=function(t){d("wrapped _read",t);if(r){r=false;e.resume()}};return this};Object.defineProperty(Readable.prototype,"readableHighWaterMark",{enumerable:false,get:function(){return this._readableState.highWaterMark}});Readable._fromList=fromList;function fromList(e,t){if(t.length===0)return null;var n;if(t.objectMode)n=t.buffer.shift();else if(!e||e>=t.length){if(t.decoder)n=t.buffer.join("");else if(t.buffer.length===1)n=t.buffer.head.data;else n=t.buffer.concat(t.length);t.buffer.clear()}else{n=fromListPartial(e,t.buffer,t.decoder)}return n}function fromListPartial(e,t,n){var r;if(e<t.head.data.length){r=t.head.data.slice(0,e);t.head.data=t.head.data.slice(e)}else if(e===t.head.data.length){r=t.shift()}else{r=n?copyFromBufferString(e,t):copyFromBuffer(e,t)}return r}function copyFromBufferString(e,t){var n=t.head;var r=1;var i=n.data;e-=i.length;while(n=n.next){var o=n.data;var a=e>o.length?o.length:e;if(a===o.length)i+=o;else i+=o.slice(0,e);e-=a;if(e===0){if(a===o.length){++r;if(n.next)t.head=n.next;else t.head=t.tail=null}else{t.head=n;n.data=o.slice(a)}break}++r}t.length-=r;return i}function copyFromBuffer(e,t){var n=u.allocUnsafe(e);var r=t.head;var i=1;r.data.copy(n);e-=r.data.length;while(r=r.next){var o=r.data;var a=e>o.length?o.length:e;o.copy(n,n.length-e,0,a);e-=a;if(e===0){if(a===o.length){++i;if(r.next)t.head=r.next;else t.head=t.tail=null}else{t.head=r;r.data=o.slice(a)}break}++i}t.length-=i;return n}function endReadable(e){var t=e._readableState;if(t.length>0)throw new Error('"endReadable()" called on non-empty stream');if(!t.endEmitted){t.ended=true;r.nextTick(endReadableNT,t,e)}}function endReadableNT(e,t){if(!e.endEmitted&&e.length===0){e.endEmitted=true;t.readable=false;t.emit("end")}}function indexOf(e,t){for(var n=0,r=e.length;n<r;n++){if(e[n]===t)return n}return-1}},707:function(e,t,n){e.exports=n(413)},709:function(e,t,n){"use strict";var r=[n(135),n(506),n(457),n(947),n(365),n(50),n(238),n(68)];for(var i=0;i<r.length;i++){var o=r[i];for(var a in o)if(Object.prototype.hasOwnProperty.call(o,a))t[a]=o[a]}},718:function(e){"use strict";e.exports=clone;function clone(e){if(e===null||typeof e!=="object")return e;if(e instanceof Object)var t={__proto__:e.__proto__};else var t=Object.create(null);Object.getOwnPropertyNames(e).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(e,n))});return t}},719:function(e,t,n){"use strict";const r=n(323).fromCallback;const i=n(729);const o=n(622);const a=n(648);const s=n(370).pathExists;function outputFile(e,t,n,r){if(typeof n==="function"){r=n;n="utf8"}const c=o.dirname(e);s(c,(o,s)=>{if(o)return r(o);if(s)return i.writeFile(e,t,n,r);a.mkdirs(c,o=>{if(o)return r(o);i.writeFile(e,t,n,r)})})}function outputFileSync(e,...t){const n=o.dirname(e);if(i.existsSync(n)){return i.writeFileSync(e,...t)}a.mkdirsSync(n);i.writeFileSync(e,...t)}e.exports={outputFile:r(outputFile),outputFileSync:outputFileSync}},729:function(e,t,n){var r=n(747);var i=n(782);var o=n(825);var a=n(718);var s=n(669);var c;var u;if(typeof Symbol==="function"&&typeof Symbol.for==="function"){c=Symbol.for("graceful-fs.queue");u=Symbol.for("graceful-fs.previous")}else{c="___graceful-fs.queue";u="___graceful-fs.previous"}function noop(){}var l=noop;if(s.debuglog)l=s.debuglog("gfs4");else if(/\bgfs4\b/i.test(process.env.NODE_DEBUG||""))l=function(){var e=s.format.apply(s,arguments);e="GFS4: "+e.split(/\n/).join("\nGFS4: ");console.error(e)};if(!global[c]){var f=[];Object.defineProperty(global,c,{get:function(){return f}});r.close=function(e){function close(t,n){return e.call(r,t,function(e){if(!e){retry()}if(typeof n==="function")n.apply(this,arguments)})}Object.defineProperty(close,u,{value:e});return close}(r.close);r.closeSync=function(e){function closeSync(t){e.apply(r,arguments);retry()}Object.defineProperty(closeSync,u,{value:e});return closeSync}(r.closeSync);if(/\bgfs4\b/i.test(process.env.NODE_DEBUG||"")){process.on("exit",function(){l(global[c]);n(357).equal(global[c].length,0)})}}e.exports=patch(a(r));if(process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH&&!r.__patched){e.exports=patch(r);r.__patched=true}function patch(e){i(e);e.gracefulify=patch;e.createReadStream=createReadStream;e.createWriteStream=createWriteStream;var t=e.readFile;e.readFile=readFile;function readFile(e,n,r){if(typeof n==="function")r=n,n=null;return go$readFile(e,n,r);function go$readFile(e,n,r){return t(e,n,function(t){if(t&&(t.code==="EMFILE"||t.code==="ENFILE"))enqueue([go$readFile,[e,n,r]]);else{if(typeof r==="function")r.apply(this,arguments);retry()}})}}var n=e.writeFile;e.writeFile=writeFile;function writeFile(e,t,r,i){if(typeof r==="function")i=r,r=null;return go$writeFile(e,t,r,i);function go$writeFile(e,t,r,i){return n(e,t,r,function(n){if(n&&(n.code==="EMFILE"||n.code==="ENFILE"))enqueue([go$writeFile,[e,t,r,i]]);else{if(typeof i==="function")i.apply(this,arguments);retry()}})}}var r=e.appendFile;if(r)e.appendFile=appendFile;function appendFile(e,t,n,i){if(typeof n==="function")i=n,n=null;return go$appendFile(e,t,n,i);function go$appendFile(e,t,n,i){return r(e,t,n,function(r){if(r&&(r.code==="EMFILE"||r.code==="ENFILE"))enqueue([go$appendFile,[e,t,n,i]]);else{if(typeof i==="function")i.apply(this,arguments);retry()}})}}var a=e.readdir;e.readdir=readdir;function readdir(e,t,n){var r=[e];if(typeof t!=="function"){r.push(t)}else{n=t}r.push(go$readdir$cb);return go$readdir(r);function go$readdir$cb(e,t){if(t&&t.sort)t.sort();if(e&&(e.code==="EMFILE"||e.code==="ENFILE"))enqueue([go$readdir,[r]]);else{if(typeof n==="function")n.apply(this,arguments);retry()}}}function go$readdir(t){return a.apply(e,t)}if(process.version.substr(0,4)==="v0.8"){var s=o(e);ReadStream=s.ReadStream;WriteStream=s.WriteStream}var c=e.ReadStream;if(c){ReadStream.prototype=Object.create(c.prototype);ReadStream.prototype.open=ReadStream$open}var u=e.WriteStream;if(u){WriteStream.prototype=Object.create(u.prototype);WriteStream.prototype.open=WriteStream$open}Object.defineProperty(e,"ReadStream",{get:function(){return ReadStream},set:function(e){ReadStream=e},enumerable:true,configurable:true});Object.defineProperty(e,"WriteStream",{get:function(){return WriteStream},set:function(e){WriteStream=e},enumerable:true,configurable:true});Object.defineProperty(e,"FileReadStream",{get:function(){return ReadStream},set:function(e){ReadStream=e},enumerable:true,configurable:true});Object.defineProperty(e,"FileWriteStream",{get:function(){return WriteStream},set:function(e){WriteStream=e},enumerable:true,configurable:true});function ReadStream(e,t){if(this instanceof ReadStream)return c.apply(this,arguments),this;else return ReadStream.apply(Object.create(ReadStream.prototype),arguments)}function ReadStream$open(){var e=this;open(e.path,e.flags,e.mode,function(t,n){if(t){if(e.autoClose)e.destroy();e.emit("error",t)}else{e.fd=n;e.emit("open",n);e.read()}})}function WriteStream(e,t){if(this instanceof WriteStream)return u.apply(this,arguments),this;else return WriteStream.apply(Object.create(WriteStream.prototype),arguments)}function WriteStream$open(){var e=this;open(e.path,e.flags,e.mode,function(t,n){if(t){e.destroy();e.emit("error",t)}else{e.fd=n;e.emit("open",n)}})}function createReadStream(t,n){return new e.ReadStream(t,n)}function createWriteStream(t,n){return new e.WriteStream(t,n)}var l=e.open;e.open=open;function open(e,t,n,r){if(typeof n==="function")r=n,n=null;return go$open(e,t,n,r);function go$open(e,t,n,r){return l(e,t,n,function(i,o){if(i&&(i.code==="EMFILE"||i.code==="ENFILE"))enqueue([go$open,[e,t,n,r]]);else{if(typeof r==="function")r.apply(this,arguments);retry()}})}}return e}function enqueue(e){l("ENQUEUE",e[0].name,e[1]);global[c].push(e)}function retry(){var e=global[c].shift();if(e){l("RETRY",e[0].name,e[1]);e[0].apply(null,e[1])}}},742:function(e,t,n){"use strict";const r=n(323).fromCallback;const i=n(458);i.outputJson=r(n(470));i.outputJsonSync=n(944);i.outputJSON=i.outputJson;i.outputJSONSync=i.outputJsonSync;i.writeJSON=i.writeJson;i.writeJSONSync=i.writeJsonSync;i.readJSON=i.readJson;i.readJSONSync=i.readJsonSync;e.exports=i},747:function(e){e.exports=__webpack_require__(662)},757:function(e,t,n){"use strict";const r=n(46);const i=n(950);const o=n(351);e.exports={createFile:r.createFile,createFileSync:r.createFileSync,ensureFile:r.createFile,ensureFileSync:r.createFileSync,createLink:i.createLink,createLinkSync:i.createLinkSync,ensureLink:i.createLink,ensureLinkSync:i.createLinkSync,createSymlink:o.createSymlink,createSymlinkSync:o.createSymlinkSync,ensureSymlink:o.createSymlink,ensureSymlinkSync:o.createSymlinkSync}},758:function(e,t,n){"use strict";const r=n(323).fromCallback;e.exports={copy:r(n(143))}},761:function(e){e.exports=__webpack_require__(2673)},766:function(e){"use strict";const t=e=>e instanceof Promise||e!==null&&typeof e==="object"&&typeof e.then==="function"&&typeof e.catch==="function";e.exports=t;e.exports.default=t},776:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(357));const o=r(n(328));class FileBlob{constructor({mode:e=33188,data:t}){i.default(typeof e==="number");i.default(typeof t==="string"||Buffer.isBuffer(t));this.type="FileBlob";this.mode=e;this.data=t}static async fromStream({mode:e=33188,stream:t}){i.default(typeof e==="number");i.default(typeof t.pipe==="function");const n=[];await new Promise((e,r)=>{t.on("data",e=>n.push(Buffer.from(e)));t.on("error",e=>r(e));t.on("end",()=>e())});const r=Buffer.concat(n);return new FileBlob({mode:e,data:r})}toStream(){return o.default(this.data)}}t.default=FileBlob},782:function(e,t,n){var r=n(619);var i=process.cwd;var o=null;var a=process.env.GRACEFUL_FS_PLATFORM||process.platform;process.cwd=function(){if(!o)o=i.call(process);return o};try{process.cwd()}catch(e){}var s=process.chdir;process.chdir=function(e){o=null;s.call(process,e)};e.exports=patch;function patch(e){if(r.hasOwnProperty("O_SYMLINK")&&process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)){patchLchmod(e)}if(!e.lutimes){patchLutimes(e)}e.chown=chownFix(e.chown);e.fchown=chownFix(e.fchown);e.lchown=chownFix(e.lchown);e.chmod=chmodFix(e.chmod);e.fchmod=chmodFix(e.fchmod);e.lchmod=chmodFix(e.lchmod);e.chownSync=chownFixSync(e.chownSync);e.fchownSync=chownFixSync(e.fchownSync);e.lchownSync=chownFixSync(e.lchownSync);e.chmodSync=chmodFixSync(e.chmodSync);e.fchmodSync=chmodFixSync(e.fchmodSync);e.lchmodSync=chmodFixSync(e.lchmodSync);e.stat=statFix(e.stat);e.fstat=statFix(e.fstat);e.lstat=statFix(e.lstat);e.statSync=statFixSync(e.statSync);e.fstatSync=statFixSync(e.fstatSync);e.lstatSync=statFixSync(e.lstatSync);if(!e.lchmod){e.lchmod=function(e,t,n){if(n)process.nextTick(n)};e.lchmodSync=function(){}}if(!e.lchown){e.lchown=function(e,t,n,r){if(r)process.nextTick(r)};e.lchownSync=function(){}}if(a==="win32"){e.rename=function(t){return function(n,r,i){var o=Date.now();var a=0;t(n,r,function CB(s){if(s&&(s.code==="EACCES"||s.code==="EPERM")&&Date.now()-o<6e4){setTimeout(function(){e.stat(r,function(e,o){if(e&&e.code==="ENOENT")t(n,r,CB);else i(s)})},a);if(a<100)a+=10;return}if(i)i(s)})}}(e.rename)}e.read=function(t){function read(n,r,i,o,a,s){var c;if(s&&typeof s==="function"){var u=0;c=function(l,f,p){if(l&&l.code==="EAGAIN"&&u<10){u++;return t.call(e,n,r,i,o,a,c)}s.apply(this,arguments)}}return t.call(e,n,r,i,o,a,c)}read.__proto__=t;return read}(e.read);e.readSync=function(t){return function(n,r,i,o,a){var s=0;while(true){try{return t.call(e,n,r,i,o,a)}catch(e){if(e.code==="EAGAIN"&&s<10){s++;continue}throw e}}}}(e.readSync);function patchLchmod(e){e.lchmod=function(t,n,i){e.open(t,r.O_WRONLY|r.O_SYMLINK,n,function(t,r){if(t){if(i)i(t);return}e.fchmod(r,n,function(t){e.close(r,function(e){if(i)i(t||e)})})})};e.lchmodSync=function(t,n){var i=e.openSync(t,r.O_WRONLY|r.O_SYMLINK,n);var o=true;var a;try{a=e.fchmodSync(i,n);o=false}finally{if(o){try{e.closeSync(i)}catch(e){}}else{e.closeSync(i)}}return a}}function patchLutimes(e){if(r.hasOwnProperty("O_SYMLINK")){e.lutimes=function(t,n,i,o){e.open(t,r.O_SYMLINK,function(t,r){if(t){if(o)o(t);return}e.futimes(r,n,i,function(t){e.close(r,function(e){if(o)o(t||e)})})})};e.lutimesSync=function(t,n,i){var o=e.openSync(t,r.O_SYMLINK);var a;var s=true;try{a=e.futimesSync(o,n,i);s=false}finally{if(s){try{e.closeSync(o)}catch(e){}}else{e.closeSync(o)}}return a}}else{e.lutimes=function(e,t,n,r){if(r)process.nextTick(r)};e.lutimesSync=function(){}}}function chmodFix(t){if(!t)return t;return function(n,r,i){return t.call(e,n,r,function(e){if(chownErOk(e))e=null;if(i)i.apply(this,arguments)})}}function chmodFixSync(t){if(!t)return t;return function(n,r){try{return t.call(e,n,r)}catch(e){if(!chownErOk(e))throw e}}}function chownFix(t){if(!t)return t;return function(n,r,i,o){return t.call(e,n,r,i,function(e){if(chownErOk(e))e=null;if(o)o.apply(this,arguments)})}}function chownFixSync(t){if(!t)return t;return function(n,r,i){try{return t.call(e,n,r,i)}catch(e){if(!chownErOk(e))throw e}}}function statFix(t){if(!t)return t;return function(n,r,i){if(typeof r==="function"){i=r;r=null}function callback(e,t){if(t){if(t.uid<0)t.uid+=4294967296;if(t.gid<0)t.gid+=4294967296}if(i)i.apply(this,arguments)}return r?t.call(e,n,r,callback):t.call(e,n,callback)}}function statFixSync(t){if(!t)return t;return function(n,r){var i=r?t.call(e,n,r):t.call(e,n);if(i.uid<0)i.uid+=4294967296;if(i.gid<0)i.gid+=4294967296;return i}}function chownErOk(e){if(!e)return true;if(e.code==="ENOSYS")return true;var t=!process.getuid||process.getuid()!==0;if(t){if(e.code==="EINVAL"||e.code==="EPERM")return true}return false}}},785:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function debug(e,...t){if(process.env.NOW_BUILDER_DEBUG){console.log(e,...t)}}t.default=debug},802:function(e,t,n){var r=n(293).Buffer;var i=[0,1996959894,3993919788,2567524794,124634137,1886057615,3915621685,2657392035,249268274,2044508324,3772115230,2547177864,162941995,2125561021,3887607047,2428444049,498536548,1789927666,4089016648,2227061214,450548861,1843258603,4107580753,2211677639,325883990,1684777152,4251122042,2321926636,335633487,1661365465,4195302755,2366115317,997073096,1281953886,3579855332,2724688242,1006888145,1258607687,3524101629,2768942443,901097722,1119000684,3686517206,2898065728,853044451,1172266101,3705015759,2882616665,651767980,1373503546,3369554304,3218104598,565507253,1454621731,3485111705,3099436303,671266974,1594198024,3322730930,2970347812,795835527,1483230225,3244367275,3060149565,1994146192,31158534,2563907772,4023717930,1907459465,112637215,2680153253,3904427059,2013776290,251722036,2517215374,3775830040,2137656763,141376813,2439277719,3865271297,1802195444,476864866,2238001368,4066508878,1812370925,453092731,2181625025,4111451223,1706088902,314042704,2344532202,4240017532,1658658271,366619977,2362670323,4224994405,1303535960,984961486,2747007092,3569037538,1256170817,1037604311,2765210733,3554079995,1131014506,879679996,2909243462,3663771856,1141124467,855842277,2852801631,3708648649,1342533948,654459306,3188396048,3373015174,1466479909,544179635,3110523913,3462522015,1591671054,702138776,2966460450,3352799412,1504918807,783551873,3082640443,3233442989,3988292384,2596254646,62317068,1957810842,3939845945,2647816111,81470997,1943803523,3814918930,2489596804,225274430,2053790376,3826175755,2466906013,167816743,2097651377,4027552580,2265490386,503444072,1762050814,4150417245,2154129355,426522225,1852507879,4275313526,2312317920,282753626,1742555852,4189708143,2394877945,397917763,1622183637,3604390888,2714866558,953729732,1340076626,3518719985,2797360999,1068828381,1219638859,3624741850,2936675148,906185462,1090812512,3747672003,2825379669,829329135,1181335161,3412177804,3160834842,628085408,1382605366,3423369109,3138078467,570562233,1426400815,3317316542,2998733608,733239954,1555261956,3268935591,3050360625,752459403,1541320221,2607071920,3965973030,1969922972,40735498,2617837225,3943577151,1913087877,83908371,2512341634,3803740692,2075208622,213261112,2463272603,3855990285,2094854071,198958881,2262029012,4057260610,1759359992,534414190,2176718541,4139329115,1873836001,414664567,2282248934,4279200368,1711684554,285281116,2405801727,4167216745,1634467795,376229701,2685067896,3608007406,1308918612,956543938,2808555105,3495958263,1231636301,1047427035,2932959818,3654703836,1088359270,936918e3,2847714899,3736837829,1202900863,817233897,3183342108,3401237130,1404277552,615818150,3134207493,3453421203,1423857449,601450431,3009837614,3294710456,1567103746,711928724,3020668471,3272380065,1510334235,755167117];if(typeof Int32Array!=="undefined"){i=new Int32Array(i)}function ensureBuffer(e){if(r.isBuffer(e)){return e}var t=typeof r.alloc==="function"&&typeof r.from==="function";if(typeof e==="number"){return t?r.alloc(e):new r(e)}else if(typeof e==="string"){return t?r.from(e):new r(e)}else{throw new Error("input must be buffer, number, or string, received "+typeof e)}}function bufferizeInt(e){var t=ensureBuffer(4);t.writeInt32BE(e,0);return t}function _crc32(e,t){e=ensureBuffer(e);if(r.isBuffer(t)){t=t.readUInt32BE(0)}var n=~~t^-1;for(var o=0;o<e.length;o++){n=i[(n^e[o])&255]^n>>>8}return n^-1}function crc32(){return bufferizeInt(_crc32.apply(null,arguments))}crc32.signed=function(){return _crc32.apply(null,arguments)};crc32.unsigned=function(){return _crc32.apply(null,arguments)>>>0};e.exports=crc32},809:function(e,t,n){var r=n(293);var i=r.Buffer;function copyProps(e,t){for(var n in e){t[n]=e[n]}}if(i.from&&i.alloc&&i.allocUnsafe&&i.allocUnsafeSlow){e.exports=r}else{copyProps(r,t);t.Buffer=SafeBuffer}function SafeBuffer(e,t,n){return i(e,t,n)}copyProps(i,SafeBuffer);SafeBuffer.from=function(e,t,n){if(typeof e==="number"){throw new TypeError("Argument must not be a number")}return i(e,t,n)};SafeBuffer.alloc=function(e,t,n){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}var r=i(e);if(t!==undefined){if(typeof n==="string"){r.fill(t,n)}else{r.fill(t)}}else{r.fill(0)}return r};SafeBuffer.allocUnsafe=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return i(e)};SafeBuffer.allocUnsafeSlow=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return r.SlowBuffer(e)}},819:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(904));const o="package.json";const a={zeroConfig:true};const s={code:"missing_build_script",message:"Your `package.json` file is missing a `build` property inside the `script` property."+"\nMore details: https://zeit.co/docs/v2/advanced/platform/frequently-asked-questions#missing-build-script"};function getBuilders(){return new Map([["next",{src:o,use:"@now/next",config:a}]])}function getApiBuilders(){return[{src:"api/**/*.js",use:"@now/node",config:a},{src:"api/**/*.ts",use:"@now/node",config:a},{src:"api/**/*.go",use:"@now/go",config:a},{src:"api/**/*.py",use:"@now/python",config:a},{src:"api/**/*.rb",use:"@now/ruby",config:a}]}function hasPublicDirectory(e){return e.some(e=>e.startsWith("public/"))}function hasBuildScript(e){const{scripts:t={}}=e||{};return Boolean(t&&t["build"])}async function detectBuilder(e){for(const[t,n]of getBuilders()){const r=Object.assign({},e.dependencies,e.devDependencies);if(r[t]){return n}}return{src:o,use:"@now/static-build",config:a}}function ignoreApiFilter(e){if(e.includes("/.")){return false}if(e.includes("/_")){return false}if(e.endsWith(".d.ts")){return false}if(getApiBuilders().every(({src:t})=>!i.default(e,t))){return false}return true}t.ignoreApiFilter=ignoreApiFilter;function sortFiles(e,t){return e.localeCompare(t)}t.sortFiles=sortFiles;async function detectApiBuilders(e){const t=e.sort(sortFiles).filter(ignoreApiFilter).map(e=>{const t=getApiBuilders().find(({src:t})=>i.default(e,t));return t?{...t,src:e}:null});const n=t.filter(Boolean);return n}async function checkConflictingFiles(e,t){if(t.some(e=>e.use.startsWith("@now/next"))){const n=e.some(e=>e.startsWith("pages/api/"));const r=t.some(e=>e.src.startsWith("api/"));if(n&&r){return{code:"conflicting_files",message:"It is not possible to use `api` and `pages/api` at the same time, please only use one option"}}}return null}async function detectBuilders(e,t,n){const r=[];const i=[];let o=await detectApiBuilders(e);if(t&&hasBuildScript(t)){o.push(await detectBuilder(t));const n=await checkConflictingFiles(e,o);if(n){i.push(n)}}else{if(t&&o.length===0){r.push(s);return{errors:r,warnings:i,builders:null}}if(hasPublicDirectory(e)){o.push({use:"@now/static",src:"public/**/*",config:a})}else if(o.length>0){o.push(...e.filter(e=>!e.startsWith("api/")).filter(e=>!(e==="package.json")).map(e=>({use:"@now/static",src:e,config:a})))}}if(o&&o.length){const e=n&&n.tag;if(e){o=o.map(t=>{const n={...t};if(n.use!=="@now/static"){n.use=`${n.use}@${e}`}return n})}}return{builders:o.length?o:null,errors:r.length?r:null,warnings:i}}t.detectBuilders=detectBuilders},825:function(e,t,n){var r=n(413).Stream;e.exports=legacy;function legacy(e){return{ReadStream:ReadStream,WriteStream:WriteStream};function ReadStream(t,n){if(!(this instanceof ReadStream))return new ReadStream(t,n);r.call(this);var i=this;this.path=t;this.fd=null;this.readable=true;this.paused=false;this.flags="r";this.mode=438;this.bufferSize=64*1024;n=n||{};var o=Object.keys(n);for(var a=0,s=o.length;a<s;a++){var c=o[a];this[c]=n[c]}if(this.encoding)this.setEncoding(this.encoding);if(this.start!==undefined){if("number"!==typeof this.start){throw TypeError("start must be a Number")}if(this.end===undefined){this.end=Infinity}else if("number"!==typeof this.end){throw TypeError("end must be a Number")}if(this.start>this.end){throw new Error("start must be <= end")}this.pos=this.start}if(this.fd!==null){process.nextTick(function(){i._read()});return}e.open(this.path,this.flags,this.mode,function(e,t){if(e){i.emit("error",e);i.readable=false;return}i.fd=t;i.emit("open",t);i._read()})}function WriteStream(t,n){if(!(this instanceof WriteStream))return new WriteStream(t,n);r.call(this);this.path=t;this.fd=null;this.writable=true;this.flags="w";this.encoding="binary";this.mode=438;this.bytesWritten=0;n=n||{};var i=Object.keys(n);for(var o=0,a=i.length;o<a;o++){var s=i[o];this[s]=n[s]}if(this.start!==undefined){if("number"!==typeof this.start){throw TypeError("start must be a Number")}if(this.start<0){throw new Error("start must be >= zero")}this.pos=this.start}this.busy=false;this._queue=[];if(this.fd===null){this._open=e.open;this._queue.push([this._open,this.path,this.flags,this.mode,undefined]);this.flush()}}}},829:function(e){"use strict";e.exports=function(e){try{return e()}catch(e){}}},835:function(e){e.exports=__webpack_require__(774)},841:function(e,t,n){var r=n(747);var i;if(process.platform==="win32"||global.TESTING_WINDOWS){i=n(265)}else{i=n(186)}e.exports=isexe;isexe.sync=sync;function isexe(e,t,n){if(typeof t==="function"){n=t;t={}}if(!n){if(typeof Promise!=="function"){throw new TypeError("callback not provided")}return new Promise(function(n,r){isexe(e,t||{},function(e,t){if(e){r(e)}else{n(t)}})})}i(e,t||{},function(e,r){if(e){if(e.code==="EACCES"||t&&t.ignoreErrors){e=null;r=false}}n(e,r)})}function sync(e,t){try{return i.sync(e,t||{})}catch(e){if(t&&t.ignoreErrors||e.code==="EACCES"){return false}else{throw e}}}},846:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});function _interopDefault(e){return e&&typeof e==="object"&&"default"in e?e["default"]:e}var r=n(413);var i=_interopDefault(r);var o=n(605);var a=_interopDefault(o);var s=n(835);var c=_interopDefault(n(211));var u=_interopDefault(n(761));const l=Symbol("buffer");const f=Symbol("type");class Blob{constructor(){this[f]="";const e=arguments[0];const t=arguments[1];const n=[];if(e){const t=e;const r=Number(t.length);for(let e=0;e<r;e++){const r=t[e];let i;if(r instanceof Buffer){i=r}else if(ArrayBuffer.isView(r)){i=Buffer.from(r.buffer,r.byteOffset,r.byteLength)}else if(r instanceof ArrayBuffer){i=Buffer.from(r)}else if(r instanceof Blob){i=r[l]}else{i=Buffer.from(typeof r==="string"?r:String(r))}n.push(i)}}this[l]=Buffer.concat(n);let r=t&&t.type!==undefined&&String(t.type).toLowerCase();if(r&&!/[^\u0020-\u007E]/.test(r)){this[f]=r}}get size(){return this[l].length}get type(){return this[f]}slice(){const e=this.size;const t=arguments[0];const n=arguments[1];let r,i;if(t===undefined){r=0}else if(t<0){r=Math.max(e+t,0)}else{r=Math.min(t,e)}if(n===undefined){i=e}else if(n<0){i=Math.max(e+n,0)}else{i=Math.min(n,e)}const o=Math.max(i-r,0);const a=this[l];const s=a.slice(r,r+o);const c=new Blob([],{type:arguments[2]});c[l]=s;return c}}Object.defineProperties(Blob.prototype,{size:{enumerable:true},type:{enumerable:true},slice:{enumerable:true}});Object.defineProperty(Blob.prototype,Symbol.toStringTag,{value:"Blob",writable:false,enumerable:false,configurable:true});function FetchError(e,t,n){Error.call(this,e);this.message=e;this.type=t;if(n){this.code=this.errno=n.code}Error.captureStackTrace(this,this.constructor)}FetchError.prototype=Object.create(Error.prototype);FetchError.prototype.constructor=FetchError;FetchError.prototype.name="FetchError";let p;try{p=n(79).convert}catch(e){}const d=Symbol("Body internals");function Body(e){var t=this;var n=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{},r=n.size;let o=r===undefined?0:r;var a=n.timeout;let s=a===undefined?0:a;if(e==null){e=null}else if(typeof e==="string") ;else if(isURLSearchParams(e)) ;else if(e instanceof Blob) ;else if(Buffer.isBuffer(e)) ;else if(Object.prototype.toString.call(e)==="[object ArrayBuffer]") ;else if(ArrayBuffer.isView(e)) ;else if(e instanceof i) ;else{e=String(e)}this[d]={body:e,disturbed:false,error:null};this.size=o;this.timeout=s;if(e instanceof i){e.on("error",function(e){t[d].error=new FetchError(`Invalid response body while trying to fetch ${t.url}: ${e.message}`,"system",e)})}}Body.prototype={get body(){return this[d].body},get bodyUsed(){return this[d].disturbed},arrayBuffer(){return consumeBody.call(this).then(function(e){return e.buffer.slice(e.byteOffset,e.byteOffset+e.byteLength)})},blob(){let e=this.headers&&this.headers.get("content-type")||"";return consumeBody.call(this).then(function(t){return Object.assign(new Blob([],{type:e.toLowerCase()}),{[l]:t})})},json(){var e=this;return consumeBody.call(this).then(function(t){try{return JSON.parse(t.toString())}catch(t){return Body.Promise.reject(new FetchError(`invalid json response body at ${e.url} reason: ${t.message}`,"invalid-json"))}})},text(){return consumeBody.call(this).then(function(e){return e.toString()})},buffer(){return consumeBody.call(this)},textConverted(){var e=this;return consumeBody.call(this).then(function(t){return convertBody(t,e.headers)})}};Object.defineProperties(Body.prototype,{body:{enumerable:true},bodyUsed:{enumerable:true},arrayBuffer:{enumerable:true},blob:{enumerable:true},json:{enumerable:true},text:{enumerable:true}});Body.mixIn=function(e){for(const t of Object.getOwnPropertyNames(Body.prototype)){if(!(t in e)){const n=Object.getOwnPropertyDescriptor(Body.prototype,t);Object.defineProperty(e,t,n)}}};function consumeBody(){var e=this;if(this[d].disturbed){return Body.Promise.reject(new TypeError(`body used already for: ${this.url}`))}this[d].disturbed=true;if(this[d].error){return Body.Promise.reject(this[d].error)}if(this.body===null){return Body.Promise.resolve(Buffer.alloc(0))}if(typeof this.body==="string"){return Body.Promise.resolve(Buffer.from(this.body))}if(this.body instanceof Blob){return Body.Promise.resolve(this.body[l])}if(Buffer.isBuffer(this.body)){return Body.Promise.resolve(this.body)}if(Object.prototype.toString.call(this.body)==="[object ArrayBuffer]"){return Body.Promise.resolve(Buffer.from(this.body))}if(ArrayBuffer.isView(this.body)){return Body.Promise.resolve(Buffer.from(this.body.buffer,this.body.byteOffset,this.body.byteLength))}if(!(this.body instanceof i)){return Body.Promise.resolve(Buffer.alloc(0))}let t=[];let n=0;let r=false;return new Body.Promise(function(i,o){let a;if(e.timeout){a=setTimeout(function(){r=true;o(new FetchError(`Response timeout while trying to fetch ${e.url} (over ${e.timeout}ms)`,"body-timeout"))},e.timeout)}e.body.on("error",function(t){o(new FetchError(`Invalid response body while trying to fetch ${e.url}: ${t.message}`,"system",t))});e.body.on("data",function(i){if(r||i===null){return}if(e.size&&n+i.length>e.size){r=true;o(new FetchError(`content size at ${e.url} over limit: ${e.size}`,"max-size"));return}n+=i.length;t.push(i)});e.body.on("end",function(){if(r){return}clearTimeout(a);try{i(Buffer.concat(t))}catch(t){o(new FetchError(`Could not create Buffer from response body for ${e.url}: ${t.message}`,"system",t))}})})}function convertBody(e,t){if(typeof p!=="function"){throw new Error("The package `encoding` must be installed to use the textConverted() function")}const n=t.get("content-type");let r="utf-8";let i,o;if(n){i=/charset=([^;]*)/i.exec(n)}o=e.slice(0,1024).toString();if(!i&&o){i=/<meta.+?charset=(['"])(.+?)\1/i.exec(o)}if(!i&&o){i=/<meta[\s]+?http-equiv=(['"])content-type\1[\s]+?content=(['"])(.+?)\2/i.exec(o);if(i){i=/charset=(.*)/i.exec(i.pop())}}if(!i&&o){i=/<\?xml.+?encoding=(['"])(.+?)\1/i.exec(o)}if(i){r=i.pop();if(r==="gb2312"||r==="gbk"){r="gb18030"}}return p(e,"UTF-8",r).toString()}function isURLSearchParams(e){if(typeof e!=="object"||typeof e.append!=="function"||typeof e.delete!=="function"||typeof e.get!=="function"||typeof e.getAll!=="function"||typeof e.has!=="function"||typeof e.set!=="function"){return false}return e.constructor.name==="URLSearchParams"||Object.prototype.toString.call(e)==="[object URLSearchParams]"||typeof e.sort==="function"}function clone(e){let t,n;let o=e.body;if(e.bodyUsed){throw new Error("cannot clone body after it is used")}if(o instanceof i&&typeof o.getBoundary!=="function"){t=new r.PassThrough;n=new r.PassThrough;o.pipe(t);o.pipe(n);e[d].body=t;o=n}return o}function extractContentType(e){const t=e.body;if(t===null){return null}else if(typeof t==="string"){return"text/plain;charset=UTF-8"}else if(isURLSearchParams(t)){return"application/x-www-form-urlencoded;charset=UTF-8"}else if(t instanceof Blob){return t.type||null}else if(Buffer.isBuffer(t)){return null}else if(Object.prototype.toString.call(t)==="[object ArrayBuffer]"){return null}else if(ArrayBuffer.isView(t)){return null}else if(typeof t.getBoundary==="function"){return`multipart/form-data;boundary=${t.getBoundary()}`}else{return null}}function getTotalBytes(e){const t=e.body;if(t===null){return 0}else if(typeof t==="string"){return Buffer.byteLength(t)}else if(isURLSearchParams(t)){return Buffer.byteLength(String(t))}else if(t instanceof Blob){return t.size}else if(Buffer.isBuffer(t)){return t.length}else if(Object.prototype.toString.call(t)==="[object ArrayBuffer]"){return t.byteLength}else if(ArrayBuffer.isView(t)){return t.byteLength}else if(t&&typeof t.getLengthSync==="function"){if(t._lengthRetrievers&&t._lengthRetrievers.length==0||t.hasKnownLength&&t.hasKnownLength()){return t.getLengthSync()}return null}else{return null}}function writeToStream(e,t){const n=t.body;if(n===null){e.end()}else if(typeof n==="string"){e.write(n);e.end()}else if(isURLSearchParams(n)){e.write(Buffer.from(String(n)));e.end()}else if(n instanceof Blob){e.write(n[l]);e.end()}else if(Buffer.isBuffer(n)){e.write(n);e.end()}else if(Object.prototype.toString.call(n)==="[object ArrayBuffer]"){e.write(Buffer.from(n));e.end()}else if(ArrayBuffer.isView(n)){e.write(Buffer.from(n.buffer,n.byteOffset,n.byteLength));e.end()}else{n.pipe(e)}}Body.Promise=global.Promise;const h=/[^\^_`a-zA-Z\-0-9!#$%&'*+.|~]/;const m=/[^\t\x20-\x7e\x80-\xff]/;function validateName(e){e=`${e}`;if(h.test(e)){throw new TypeError(`${e} is not a legal HTTP header name`)}}function validateValue(e){e=`${e}`;if(m.test(e)){throw new TypeError(`${e} is not a legal HTTP header value`)}}function find(e,t){t=t.toLowerCase();for(const n in e){if(n.toLowerCase()===t){return n}}return undefined}const v=Symbol("map");class Headers{constructor(){let e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:undefined;this[v]=Object.create(null);if(e instanceof Headers){const t=e.raw();const n=Object.keys(t);for(const e of n){for(const n of t[e]){this.append(e,n)}}return}if(e==null) ;else if(typeof e==="object"){const t=e[Symbol.iterator];if(t!=null){if(typeof t!=="function"){throw new TypeError("Header pairs must be iterable")}const n=[];for(const t of e){if(typeof t!=="object"||typeof t[Symbol.iterator]!=="function"){throw new TypeError("Each header pair must be iterable")}n.push(Array.from(t))}for(const e of n){if(e.length!==2){throw new TypeError("Each header pair must be a name/value tuple")}this.append(e[0],e[1])}}else{for(const t of Object.keys(e)){const n=e[t];this.append(t,n)}}}else{throw new TypeError("Provided initializer must be an object")}}get(e){e=`${e}`;validateName(e);const t=find(this[v],e);if(t===undefined){return null}return this[v][t].join(", ")}forEach(e){let t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:undefined;let n=getHeaders(this);let r=0;while(r<n.length){var i=n[r];const o=i[0],a=i[1];e.call(t,a,o,this);n=getHeaders(this);r++}}set(e,t){e=`${e}`;t=`${t}`;validateName(e);validateValue(t);const n=find(this[v],e);this[v][n!==undefined?n:e]=[t]}append(e,t){e=`${e}`;t=`${t}`;validateName(e);validateValue(t);const n=find(this[v],e);if(n!==undefined){this[v][n].push(t)}else{this[v][e]=[t]}}has(e){e=`${e}`;validateName(e);return find(this[v],e)!==undefined}delete(e){e=`${e}`;validateName(e);const t=find(this[v],e);if(t!==undefined){delete this[v][t]}}raw(){return this[v]}keys(){return createHeadersIterator(this,"key")}values(){return createHeadersIterator(this,"value")}[Symbol.iterator](){return createHeadersIterator(this,"key+value")}}Headers.prototype.entries=Headers.prototype[Symbol.iterator];Object.defineProperty(Headers.prototype,Symbol.toStringTag,{value:"Headers",writable:false,enumerable:false,configurable:true});Object.defineProperties(Headers.prototype,{get:{enumerable:true},forEach:{enumerable:true},set:{enumerable:true},append:{enumerable:true},has:{enumerable:true},delete:{enumerable:true},keys:{enumerable:true},values:{enumerable:true},entries:{enumerable:true}});function getHeaders(e){let t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:"key+value";const n=Object.keys(e[v]).sort();return n.map(t==="key"?function(e){return e.toLowerCase()}:t==="value"?function(t){return e[v][t].join(", ")}:function(t){return[t.toLowerCase(),e[v][t].join(", ")]})}const g=Symbol("internal");function createHeadersIterator(e,t){const n=Object.create(y);n[g]={target:e,kind:t,index:0};return n}const y=Object.setPrototypeOf({next(){if(!this||Object.getPrototypeOf(this)!==y){throw new TypeError("Value of `this` is not a HeadersIterator")}var e=this[g];const t=e.target,n=e.kind,r=e.index;const i=getHeaders(t,n);const o=i.length;if(r>=o){return{value:undefined,done:true}}this[g].index=r+1;return{value:i[r],done:false}}},Object.getPrototypeOf(Object.getPrototypeOf([][Symbol.iterator]())));Object.defineProperty(y,Symbol.toStringTag,{value:"HeadersIterator",writable:false,enumerable:false,configurable:true});function exportNodeCompatibleHeaders(e){const t=Object.assign({__proto__:null},e[v]);const n=find(e[v],"Host");if(n!==undefined){t[n]=t[n][0]}return t}function createHeadersLenient(e){const t=new Headers;for(const n of Object.keys(e)){if(h.test(n)){continue}if(Array.isArray(e[n])){for(const r of e[n]){if(m.test(r)){continue}if(t[v][n]===undefined){t[v][n]=[r]}else{t[v][n].push(r)}}}else if(!m.test(e[n])){t[v][n]=[e[n]]}}return t}const b=Symbol("Response internals");class Response{constructor(){let e=arguments.length>0&&arguments[0]!==undefined?arguments[0]:null;let t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};Body.call(this,e,t);const n=t.status||200;this[b]={url:t.url,status:n,statusText:t.statusText||o.STATUS_CODES[n],headers:new Headers(t.headers)}}get url(){return this[b].url}get status(){return this[b].status}get ok(){return this[b].status>=200&&this[b].status<300}get statusText(){return this[b].statusText}get headers(){return this[b].headers}clone(){return new Response(clone(this),{url:this.url,status:this.status,statusText:this.statusText,headers:this.headers,ok:this.ok})}}Body.mixIn(Response.prototype);Object.defineProperties(Response.prototype,{url:{enumerable:true},status:{enumerable:true},ok:{enumerable:true},statusText:{enumerable:true},headers:{enumerable:true},clone:{enumerable:true}});Object.defineProperty(Response.prototype,Symbol.toStringTag,{value:"Response",writable:false,enumerable:false,configurable:true});const w=Symbol("Request internals");function isRequest(e){return typeof e==="object"&&typeof e[w]==="object"}class Request{constructor(e){let t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};let n;if(!isRequest(e)){if(e&&e.href){n=s.parse(e.href)}else{n=s.parse(`${e}`)}e={}}else{n=s.parse(e.url)}let r=t.method||e.method||"GET";r=r.toUpperCase();if((t.body!=null||isRequest(e)&&e.body!==null)&&(r==="GET"||r==="HEAD")){throw new TypeError("Request with GET/HEAD method cannot have body")}let i=t.body!=null?t.body:isRequest(e)&&e.body!==null?clone(e):null;Body.call(this,i,{timeout:t.timeout||e.timeout||0,size:t.size||e.size||0});const o=new Headers(t.headers||e.headers||{});if(t.body!=null){const e=extractContentType(this);if(e!==null&&!o.has("Content-Type")){o.append("Content-Type",e)}}this[w]={method:r,redirect:t.redirect||e.redirect||"follow",headers:o,parsedURL:n};this.follow=t.follow!==undefined?t.follow:e.follow!==undefined?e.follow:20;this.compress=t.compress!==undefined?t.compress:e.compress!==undefined?e.compress:true;this.counter=t.counter||e.counter||0;this.agent=t.agent||e.agent}get method(){return this[w].method}get url(){return s.format(this[w].parsedURL)}get headers(){return this[w].headers}get redirect(){return this[w].redirect}clone(){return new Request(this)}}Body.mixIn(Request.prototype);Object.defineProperty(Request.prototype,Symbol.toStringTag,{value:"Request",writable:false,enumerable:false,configurable:true});Object.defineProperties(Request.prototype,{method:{enumerable:true},url:{enumerable:true},headers:{enumerable:true},redirect:{enumerable:true},clone:{enumerable:true}});function getNodeRequestOptions(e){const t=e[w].parsedURL;const n=new Headers(e[w].headers);if(!n.has("Accept")){n.set("Accept","*/*")}if(!t.protocol||!t.hostname){throw new TypeError("Only absolute URLs are supported")}if(!/^https?:$/.test(t.protocol)){throw new TypeError("Only HTTP(S) protocols are supported")}let r=null;if(e.body==null&&/^(POST|PUT)$/i.test(e.method)){r="0"}if(e.body!=null){const t=getTotalBytes(e);if(typeof t==="number"){r=String(t)}}if(r){n.set("Content-Length",r)}if(!n.has("User-Agent")){n.set("User-Agent","node-fetch/1.0 (+https://github.com/bitinn/node-fetch)")}if(e.compress){n.set("Accept-Encoding","gzip,deflate")}if(!n.has("Connection")&&!e.agent){n.set("Connection","close")}return Object.assign({},t,{method:e.method,headers:exportNodeCompatibleHeaders(n),agent:e.agent})}function fetch(e,t){if(!fetch.Promise){throw new Error("native promise missing, set fetch.Promise to your favorite alternative")}Body.Promise=fetch.Promise;return new fetch.Promise(function(n,i){const o=new Request(e,t);const l=getNodeRequestOptions(o);const f=(l.protocol==="https:"?c:a).request;const p=f(l);let d;function finalize(){p.abort();clearTimeout(d)}if(o.timeout){p.once("socket",function(e){d=setTimeout(function(){i(new FetchError(`network timeout at: ${o.url}`,"request-timeout"));finalize()},o.timeout)})}p.on("error",function(e){i(new FetchError(`request to ${o.url} failed, reason: ${e.message}`,"system",e));finalize()});p.on("response",function(e){clearTimeout(d);const t=createHeadersLenient(e.headers);if(fetch.isRedirect(e.statusCode)){const r=t.get("Location");const a=r===null?null:s.resolve(o.url,r);switch(o.redirect){case"error":i(new FetchError(`redirect mode is set to error: ${o.url}`,"no-redirect"));finalize();return;case"manual":if(a!==null){t.set("Location",a)}break;case"follow":if(a===null){break}if(o.counter>=o.follow){i(new FetchError(`maximum redirect reached at: ${o.url}`,"max-redirect"));finalize();return}const r={headers:new Headers(o.headers),follow:o.follow,counter:o.counter+1,agent:o.agent,compress:o.compress,method:o.method,body:o.body};if(e.statusCode!==303&&o.body&&getTotalBytes(o)===null){i(new FetchError("Cannot follow redirect with body being a readable stream","unsupported-redirect"));finalize();return}if(e.statusCode===303||(e.statusCode===301||e.statusCode===302)&&o.method==="POST"){r.method="GET";r.body=undefined;r.headers.delete("content-length")}n(fetch(new Request(a,r)));finalize();return}}let a=e.pipe(new r.PassThrough);const c={url:o.url,status:e.statusCode,statusText:e.statusMessage,headers:t,size:o.size,timeout:o.timeout};const l=t.get("Content-Encoding");if(!o.compress||o.method==="HEAD"||l===null||e.statusCode===204||e.statusCode===304){n(new Response(a,c));return}const f={flush:u.Z_SYNC_FLUSH,finishFlush:u.Z_SYNC_FLUSH};if(l=="gzip"||l=="x-gzip"){a=a.pipe(u.createGunzip(f));n(new Response(a,c));return}if(l=="deflate"||l=="x-deflate"){const t=e.pipe(new r.PassThrough);t.once("data",function(e){if((e[0]&15)===8){a=a.pipe(u.createInflate())}else{a=a.pipe(u.createInflateRaw())}n(new Response(a,c))});return}n(new Response(a,c))});writeToStream(p,o)})}fetch.isRedirect=function(e){return e===301||e===302||e===303||e===307||e===308};fetch.Promise=global.Promise;e.exports=t=fetch;Object.defineProperty(t,"__esModule",{value:true});t.default=t;t.Headers=Headers;t.Request=Request;t.Response=Response;t.FetchError=FetchError},849:function(e,t,n){var r=n(747);var i=n(413).Transform;var o=n(413).PassThrough;var a=n(761);var s=n(669);var c=n(614).EventEmitter;var u=n(802);t.ZipFile=ZipFile;t.dateToDosDateTime=dateToDosDateTime;s.inherits(ZipFile,c);function ZipFile(){this.outputStream=new o;this.entries=[];this.outputStreamCursor=0;this.ended=false;this.allDone=false;this.forceZip64Eocd=false}ZipFile.prototype.addFile=function(e,t,n){var i=this;t=validateMetadataPath(t,false);if(n==null)n={};var o=new Entry(t,false,n);i.entries.push(o);r.stat(e,function(t,a){if(t)return i.emit("error",t);if(!a.isFile())return i.emit("error",new Error("not a file: "+e));o.uncompressedSize=a.size;if(n.mtime==null)o.setLastModDate(a.mtime);if(n.mode==null)o.setFileAttributesMode(a.mode);o.setFileDataPumpFunction(function(){var t=r.createReadStream(e);o.state=Entry.FILE_DATA_IN_PROGRESS;t.on("error",function(e){i.emit("error",e)});pumpFileDataReadStream(i,o,t)});pumpEntries(i)})};ZipFile.prototype.addReadStream=function(e,t,n){var r=this;t=validateMetadataPath(t,false);if(n==null)n={};var i=new Entry(t,false,n);r.entries.push(i);i.setFileDataPumpFunction(function(){i.state=Entry.FILE_DATA_IN_PROGRESS;pumpFileDataReadStream(r,i,e)});pumpEntries(r)};ZipFile.prototype.addBuffer=function(e,t,n){var r=this;t=validateMetadataPath(t,false);if(e.length>1073741823)throw new Error("buffer too large: "+e.length+" > "+1073741823);if(n==null)n={};if(n.size!=null)throw new Error("options.size not allowed");var i=new Entry(t,false,n);i.uncompressedSize=e.length;i.crc32=u.unsigned(e);i.crcAndFileSizeKnown=true;r.entries.push(i);if(!i.compress){setCompressedBuffer(e)}else{a.deflateRaw(e,function(e,t){setCompressedBuffer(t)})}function setCompressedBuffer(e){i.compressedSize=e.length;i.setFileDataPumpFunction(function(){writeToOutputStream(r,e);writeToOutputStream(r,i.getDataDescriptor());i.state=Entry.FILE_DATA_DONE;setImmediate(function(){pumpEntries(r)})});pumpEntries(r)}};ZipFile.prototype.addEmptyDirectory=function(e,t){var n=this;e=validateMetadataPath(e,true);if(t==null)t={};if(t.size!=null)throw new Error("options.size not allowed");if(t.compress!=null)throw new Error("options.compress not allowed");var r=new Entry(e,true,t);n.entries.push(r);r.setFileDataPumpFunction(function(){writeToOutputStream(n,r.getDataDescriptor());r.state=Entry.FILE_DATA_DONE;pumpEntries(n)});pumpEntries(n)};ZipFile.prototype.end=function(e,t){if(typeof e==="function"){t=e;e=null}if(e==null)e={};if(this.ended)return;this.ended=true;this.finalSizeCallback=t;this.forceZip64Eocd=!!e.forceZip64Format;pumpEntries(this)};function writeToOutputStream(e,t){e.outputStream.write(t);e.outputStreamCursor+=t.length}function pumpFileDataReadStream(e,t,n){var r=new Crc32Watcher;var i=new ByteCounter;var s=t.compress?new a.DeflateRaw:new o;var c=new ByteCounter;n.pipe(r).pipe(i).pipe(s).pipe(c).pipe(e.outputStream,{end:false});c.on("end",function(){t.crc32=r.crc32;if(t.uncompressedSize==null){t.uncompressedSize=i.byteCount}else{if(t.uncompressedSize!==i.byteCount)return e.emit("error",new Error("file data stream has unexpected number of bytes"))}t.compressedSize=c.byteCount;e.outputStreamCursor+=t.compressedSize;writeToOutputStream(e,t.getDataDescriptor());t.state=Entry.FILE_DATA_DONE;pumpEntries(e)})}function pumpEntries(e){if(e.allDone)return;if(e.ended&&e.finalSizeCallback!=null){var t=calculateFinalSize(e);if(t!=null){e.finalSizeCallback(t);e.finalSizeCallback=null}}var n=getFirstNotDoneEntry();function getFirstNotDoneEntry(){for(var t=0;t<e.entries.length;t++){var n=e.entries[t];if(n.state<Entry.FILE_DATA_DONE)return n}return null}if(n!=null){if(n.state<Entry.READY_TO_PUMP_FILE_DATA)return;if(n.state===Entry.FILE_DATA_IN_PROGRESS)return;n.relativeOffsetOfLocalHeader=e.outputStreamCursor;var r=n.getLocalFileHeader();writeToOutputStream(e,r);n.doFileDataPump()}else{if(e.ended){e.offsetOfStartOfCentralDirectory=e.outputStreamCursor;e.entries.forEach(function(t){var n=t.getCentralDirectoryRecord();writeToOutputStream(e,n)});writeToOutputStream(e,getEndOfCentralDirectoryRecord(e));e.outputStream.end();e.allDone=true}}}function calculateFinalSize(e){var t=0;var n=0;for(var r=0;r<e.entries.length;r++){var i=e.entries[r];if(i.compress)return-1;if(i.state>=Entry.READY_TO_PUMP_FILE_DATA){if(i.uncompressedSize==null)return-1}else{if(i.uncompressedSize==null)return null}i.relativeOffsetOfLocalHeader=t;var o=i.useZip64Format();t+=m+i.utf8FileName.length;t+=i.uncompressedSize;if(!i.crcAndFileSizeKnown){if(o){t+=k}else{t+=x}}n+=j+i.utf8FileName.length;if(o){n+=S}}var a=0;if(e.forceZip64Eocd||e.entries.length>=65535||n>=65535||t>=4294967295){a+=l+f}a+=p;return t+n+a}var l=56;var f=20;var p=22;function getEndOfCentralDirectoryRecord(e,t){var n=false;var r=e.entries.length;if(e.forceZip64Eocd||e.entries.length>=65535){r=65535;n=true}var i=e.outputStreamCursor-e.offsetOfStartOfCentralDirectory;var o=i;if(e.forceZip64Eocd||i>=4294967295){o=4294967295;n=true}var a=e.offsetOfStartOfCentralDirectory;if(e.forceZip64Eocd||e.offsetOfStartOfCentralDirectory>=4294967295){a=4294967295;n=true}if(t){if(n){return l+f+p}else{return p}}var s=new Buffer(p);s.writeUInt32LE(101010256,0);s.writeUInt16LE(0,4);s.writeUInt16LE(0,6);s.writeUInt16LE(r,8);s.writeUInt16LE(r,10);s.writeUInt32LE(o,12);s.writeUInt32LE(a,16);s.writeUInt16LE(0,20);if(!n)return s;var c=new Buffer(l);c.writeUInt32LE(101075792,0);writeUInt64LE(c,l-12,4);c.writeUInt16LE(y,12);c.writeUInt16LE(g,14);c.writeUInt32LE(0,16);c.writeUInt32LE(0,20);writeUInt64LE(c,e.entries.length,24);writeUInt64LE(c,e.entries.length,32);writeUInt64LE(c,i,40);writeUInt64LE(c,e.offsetOfStartOfCentralDirectory,48);var u=new Buffer(f);u.writeUInt32LE(117853008,0);u.writeUInt32LE(0,4);writeUInt64LE(u,e.outputStreamCursor,8);u.writeUInt32LE(1,16);return Buffer.concat([c,u,s])}function validateMetadataPath(e,t){if(e==="")throw new Error("empty metadataPath");e=e.replace(/\\/g,"/");if(/^[a-zA-Z]:/.test(e)||/^\//.test(e))throw new Error("absolute path: "+e);if(e.split("/").indexOf("..")!==-1)throw new Error("invalid relative path: "+e);var n=/\/$/.test(e);if(t){if(!n)e+="/"}else{if(n)throw new Error("file path cannot end with '/': "+e)}return e}var d=parseInt("0100664",8);var h=parseInt("040775",8);function Entry(e,t,n){this.utf8FileName=new Buffer(e);if(this.utf8FileName.length>65535)throw new Error("utf8 file name too long. "+utf8FileName.length+" > "+65535);this.isDirectory=t;this.state=Entry.WAITING_FOR_METADATA;this.setLastModDate(n.mtime!=null?n.mtime:new Date);if(n.mode!=null){this.setFileAttributesMode(n.mode)}else{this.setFileAttributesMode(t?h:d)}if(t){this.crcAndFileSizeKnown=true;this.crc32=0;this.uncompressedSize=0;this.compressedSize=0}else{this.crcAndFileSizeKnown=false;this.crc32=null;this.uncompressedSize=null;this.compressedSize=null;if(n.size!=null)this.uncompressedSize=n.size}if(t){this.compress=false}else{this.compress=true;if(n.compress!=null)this.compress=!!n.compress}this.forceZip64Format=!!n.forceZip64Format}Entry.WAITING_FOR_METADATA=0;Entry.READY_TO_PUMP_FILE_DATA=1;Entry.FILE_DATA_IN_PROGRESS=2;Entry.FILE_DATA_DONE=3;Entry.prototype.setLastModDate=function(e){var t=dateToDosDateTime(e);this.lastModFileTime=t.time;this.lastModFileDate=t.date};Entry.prototype.setFileAttributesMode=function(e){if((e&65535)!==e)throw new Error("invalid mode. expected: 0 <= "+e+" <= "+65535);this.externalFileAttributes=e<<16>>>0};Entry.prototype.setFileDataPumpFunction=function(e){this.doFileDataPump=e;this.state=Entry.READY_TO_PUMP_FILE_DATA};Entry.prototype.useZip64Format=function(){return this.forceZip64Format||this.uncompressedSize!=null&&this.uncompressedSize>4294967294||this.compressedSize!=null&&this.compressedSize>4294967294||this.relativeOffsetOfLocalHeader!=null&&this.relativeOffsetOfLocalHeader>4294967294};var m=30;var v=20;var g=45;var y=3<<8|63;var b=1<<11;var w=1<<3;Entry.prototype.getLocalFileHeader=function(){var e=0;var t=0;var n=0;if(this.crcAndFileSizeKnown){e=this.crc32;t=this.compressedSize;n=this.uncompressedSize}var r=new Buffer(m);var i=b;if(!this.crcAndFileSizeKnown)i|=w;r.writeUInt32LE(67324752,0);r.writeUInt16LE(v,4);r.writeUInt16LE(i,6);r.writeUInt16LE(this.getCompressionMethod(),8);r.writeUInt16LE(this.lastModFileTime,10);r.writeUInt16LE(this.lastModFileDate,12);r.writeUInt32LE(e,14);r.writeUInt32LE(t,18);r.writeUInt32LE(n,22);r.writeUInt16LE(this.utf8FileName.length,26);r.writeUInt16LE(0,28);return Buffer.concat([r,this.utf8FileName])};var x=16;var k=24;Entry.prototype.getDataDescriptor=function(){if(this.crcAndFileSizeKnown){return new Buffer(0)}if(!this.useZip64Format()){var e=new Buffer(x);e.writeUInt32LE(134695760,0);e.writeUInt32LE(this.crc32,4);e.writeUInt32LE(this.compressedSize,8);e.writeUInt32LE(this.uncompressedSize,12);return e}else{var e=new Buffer(k);e.writeUInt32LE(134695760,0);e.writeUInt32LE(this.crc32,4);writeUInt64LE(e,this.compressedSize,8);writeUInt64LE(e,this.uncompressedSize,16);return e}};var j=46;var S=28;Entry.prototype.getCentralDirectoryRecord=function(){var e=new Buffer(j);var t=b;if(!this.crcAndFileSizeKnown)t|=w;var n=this.compressedSize;var r=this.uncompressedSize;var i=this.relativeOffsetOfLocalHeader;var o;var a;if(this.useZip64Format()){n=4294967295;r=4294967295;i=4294967295;o=g;a=new Buffer(S);a.writeUInt16LE(1,0);a.writeUInt16LE(S-4,2);writeUInt64LE(a,this.uncompressedSize,4);writeUInt64LE(a,this.compressedSize,12);writeUInt64LE(a,this.relativeOffsetOfLocalHeader,20)}else{o=v;a=new Buffer(0)}e.writeUInt32LE(33639248,0);e.writeUInt16LE(y,4);e.writeUInt16LE(o,6);e.writeUInt16LE(t,8);e.writeUInt16LE(this.getCompressionMethod(),10);e.writeUInt16LE(this.lastModFileTime,12);e.writeUInt16LE(this.lastModFileDate,14);e.writeUInt32LE(this.crc32,16);e.writeUInt32LE(n,20);e.writeUInt32LE(r,24);e.writeUInt16LE(this.utf8FileName.length,28);e.writeUInt16LE(a.length,30);e.writeUInt16LE(0,32);e.writeUInt16LE(0,34);e.writeUInt16LE(0,36);e.writeUInt32LE(this.externalFileAttributes,38);e.writeUInt32LE(i,42);return Buffer.concat([e,this.utf8FileName,a])};Entry.prototype.getCompressionMethod=function(){var e=0;var t=8;return this.compress?t:e};function dateToDosDateTime(e){var t=0;t|=e.getDate()&31;t|=(e.getMonth()+1&15)<<5;t|=(e.getFullYear()-1980&127)<<9;var n=0;n|=Math.floor(e.getSeconds()/2);n|=(e.getMinutes()&63)<<5;n|=(e.getHours()&31)<<11;return{date:t,time:n}}function writeUInt64LE(e,t,n){var r=Math.floor(t/4294967296);var i=t%4294967296;e.writeUInt32LE(i,n);e.writeUInt32LE(r,n+4)}function defaultCallback(e){if(e)throw e}s.inherits(ByteCounter,i);function ByteCounter(e){i.call(this,e);this.byteCount=0}ByteCounter.prototype._transform=function(e,t,n){this.byteCount+=e.length;n(null,e)};s.inherits(Crc32Watcher,i);function Crc32Watcher(e){i.call(this,e);this.crc32=0}Crc32Watcher.prototype._transform=function(e,t,n){this.crc32=u.unsigned(e,this.crc32);n(null,e)}},852:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function rename(e,t){return Object.keys(e).reduce((n,r)=>({...n,[t(r)]:e[r]}),{})}t.default=rename},858:function(e){e.exports={uChars:[128,165,169,178,184,216,226,235,238,244,248,251,253,258,276,284,300,325,329,334,364,463,465,467,469,471,473,475,477,506,594,610,712,716,730,930,938,962,970,1026,1104,1106,8209,8215,8218,8222,8231,8241,8244,8246,8252,8365,8452,8454,8458,8471,8482,8556,8570,8596,8602,8713,8720,8722,8726,8731,8737,8740,8742,8748,8751,8760,8766,8777,8781,8787,8802,8808,8816,8854,8858,8870,8896,8979,9322,9372,9548,9588,9616,9622,9634,9652,9662,9672,9676,9680,9702,9735,9738,9793,9795,11906,11909,11913,11917,11928,11944,11947,11951,11956,11960,11964,11979,12284,12292,12312,12319,12330,12351,12436,12447,12535,12543,12586,12842,12850,12964,13200,13215,13218,13253,13263,13267,13270,13384,13428,13727,13839,13851,14617,14703,14801,14816,14964,15183,15471,15585,16471,16736,17208,17325,17330,17374,17623,17997,18018,18212,18218,18301,18318,18760,18811,18814,18820,18823,18844,18848,18872,19576,19620,19738,19887,40870,59244,59336,59367,59413,59417,59423,59431,59437,59443,59452,59460,59478,59493,63789,63866,63894,63976,63986,64016,64018,64021,64025,64034,64037,64042,65074,65093,65107,65112,65127,65132,65375,65510,65536],gbChars:[0,36,38,45,50,81,89,95,96,100,103,104,105,109,126,133,148,172,175,179,208,306,307,308,309,310,311,312,313,341,428,443,544,545,558,741,742,749,750,805,819,820,7922,7924,7925,7927,7934,7943,7944,7945,7950,8062,8148,8149,8152,8164,8174,8236,8240,8262,8264,8374,8380,8381,8384,8388,8390,8392,8393,8394,8396,8401,8406,8416,8419,8424,8437,8439,8445,8482,8485,8496,8521,8603,8936,8946,9046,9050,9063,9066,9076,9092,9100,9108,9111,9113,9131,9162,9164,9218,9219,11329,11331,11334,11336,11346,11361,11363,11366,11370,11372,11375,11389,11682,11686,11687,11692,11694,11714,11716,11723,11725,11730,11736,11982,11989,12102,12336,12348,12350,12384,12393,12395,12397,12510,12553,12851,12962,12973,13738,13823,13919,13933,14080,14298,14585,14698,15583,15847,16318,16434,16438,16481,16729,17102,17122,17315,17320,17402,17418,17859,17909,17911,17915,17916,17936,17939,17961,18664,18703,18814,18962,19043,33469,33470,33471,33484,33485,33490,33497,33501,33505,33513,33520,33536,33550,37845,37921,37948,38029,38038,38064,38065,38066,38069,38075,38076,38078,39108,39109,39113,39114,39115,39116,39265,39394,189e3]}},860:function(e,t,n){"use strict";var r=n(511);e.exports=Writable;function WriteReq(e,t,n){this.chunk=e;this.encoding=t;this.callback=n;this.next=null}function CorkedRequest(e){var t=this;this.next=null;this.entry=null;this.finish=function(){onCorkedFinish(t,e)}}var i=!process.browser&&["v0.10","v0.9."].indexOf(process.version.slice(0,5))>-1?setImmediate:r.nextTick;var o;Writable.WritableState=WritableState;var a=n(130);a.inherits=n(536);var s={deprecate:n(443)};var c=n(707);var u=n(393).Buffer;var l=global.Uint8Array||function(){};function _uint8ArrayToBuffer(e){return u.from(e)}function _isUint8Array(e){return u.isBuffer(e)||e instanceof l}var f=n(596);a.inherits(Writable,c);function nop(){}function WritableState(e,t){o=o||n(588);e=e||{};var r=t instanceof o;this.objectMode=!!e.objectMode;if(r)this.objectMode=this.objectMode||!!e.writableObjectMode;var i=e.highWaterMark;var a=e.writableHighWaterMark;var s=this.objectMode?16:16*1024;if(i||i===0)this.highWaterMark=i;else if(r&&(a||a===0))this.highWaterMark=a;else this.highWaterMark=s;this.highWaterMark=Math.floor(this.highWaterMark);this.finalCalled=false;this.needDrain=false;this.ending=false;this.ended=false;this.finished=false;this.destroyed=false;var c=e.decodeStrings===false;this.decodeStrings=!c;this.defaultEncoding=e.defaultEncoding||"utf8";this.length=0;this.writing=false;this.corked=0;this.sync=true;this.bufferProcessing=false;this.onwrite=function(e){onwrite(t,e)};this.writecb=null;this.writelen=0;this.bufferedRequest=null;this.lastBufferedRequest=null;this.pendingcb=0;this.prefinished=false;this.errorEmitted=false;this.bufferedRequestCount=0;this.corkedRequestsFree=new CorkedRequest(this)}WritableState.prototype.getBuffer=function getBuffer(){var e=this.bufferedRequest;var t=[];while(e){t.push(e);e=e.next}return t};(function(){try{Object.defineProperty(WritableState.prototype,"buffer",{get:s.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer "+"instead.","DEP0003")})}catch(e){}})();var p;if(typeof Symbol==="function"&&Symbol.hasInstance&&typeof Function.prototype[Symbol.hasInstance]==="function"){p=Function.prototype[Symbol.hasInstance];Object.defineProperty(Writable,Symbol.hasInstance,{value:function(e){if(p.call(this,e))return true;if(this!==Writable)return false;return e&&e._writableState instanceof WritableState}})}else{p=function(e){return e instanceof this}}function Writable(e){o=o||n(588);if(!p.call(Writable,this)&&!(this instanceof o)){return new Writable(e)}this._writableState=new WritableState(e,this);this.writable=true;if(e){if(typeof e.write==="function")this._write=e.write;if(typeof e.writev==="function")this._writev=e.writev;if(typeof e.destroy==="function")this._destroy=e.destroy;if(typeof e.final==="function")this._final=e.final}c.call(this)}Writable.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))};function writeAfterEnd(e,t){var n=new Error("write after end");e.emit("error",n);r.nextTick(t,n)}function validChunk(e,t,n,i){var o=true;var a=false;if(n===null){a=new TypeError("May not write null values to stream")}else if(typeof n!=="string"&&n!==undefined&&!t.objectMode){a=new TypeError("Invalid non-string/buffer chunk")}if(a){e.emit("error",a);r.nextTick(i,a);o=false}return o}Writable.prototype.write=function(e,t,n){var r=this._writableState;var i=false;var o=!r.objectMode&&_isUint8Array(e);if(o&&!u.isBuffer(e)){e=_uint8ArrayToBuffer(e)}if(typeof t==="function"){n=t;t=null}if(o)t="buffer";else if(!t)t=r.defaultEncoding;if(typeof n!=="function")n=nop;if(r.ended)writeAfterEnd(this,n);else if(o||validChunk(this,r,e,n)){r.pendingcb++;i=writeOrBuffer(this,r,o,e,t,n)}return i};Writable.prototype.cork=function(){var e=this._writableState;e.corked++};Writable.prototype.uncork=function(){var e=this._writableState;if(e.corked){e.corked--;if(!e.writing&&!e.corked&&!e.finished&&!e.bufferProcessing&&e.bufferedRequest)clearBuffer(this,e)}};Writable.prototype.setDefaultEncoding=function setDefaultEncoding(e){if(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 decodeChunk(e,t,n){if(!e.objectMode&&e.decodeStrings!==false&&typeof t==="string"){t=u.from(t,n)}return t}Object.defineProperty(Writable.prototype,"writableHighWaterMark",{enumerable:false,get:function(){return this._writableState.highWaterMark}});function writeOrBuffer(e,t,n,r,i,o){if(!n){var a=decodeChunk(t,r,i);if(r!==a){n=true;i="buffer";r=a}}var s=t.objectMode?1:r.length;t.length+=s;var c=t.length<t.highWaterMark;if(!c)t.needDrain=true;if(t.writing||t.corked){var u=t.lastBufferedRequest;t.lastBufferedRequest={chunk:r,encoding:i,isBuf:n,callback:o,next:null};if(u){u.next=t.lastBufferedRequest}else{t.bufferedRequest=t.lastBufferedRequest}t.bufferedRequestCount+=1}else{doWrite(e,t,false,s,r,i,o)}return c}function doWrite(e,t,n,r,i,o,a){t.writelen=r;t.writecb=a;t.writing=true;t.sync=true;if(n)e._writev(i,t.onwrite);else e._write(i,o,t.onwrite);t.sync=false}function onwriteError(e,t,n,i,o){--t.pendingcb;if(n){r.nextTick(o,i);r.nextTick(finishMaybe,e,t);e._writableState.errorEmitted=true;e.emit("error",i)}else{o(i);e._writableState.errorEmitted=true;e.emit("error",i);finishMaybe(e,t)}}function onwriteStateUpdate(e){e.writing=false;e.writecb=null;e.length-=e.writelen;e.writelen=0}function onwrite(e,t){var n=e._writableState;var r=n.sync;var o=n.writecb;onwriteStateUpdate(n);if(t)onwriteError(e,n,r,t,o);else{var a=needFinish(n);if(!a&&!n.corked&&!n.bufferProcessing&&n.bufferedRequest){clearBuffer(e,n)}if(r){i(afterWrite,e,n,a,o)}else{afterWrite(e,n,a,o)}}}function afterWrite(e,t,n,r){if(!n)onwriteDrain(e,t);t.pendingcb--;r();finishMaybe(e,t)}function onwriteDrain(e,t){if(t.length===0&&t.needDrain){t.needDrain=false;e.emit("drain")}}function clearBuffer(e,t){t.bufferProcessing=true;var n=t.bufferedRequest;if(e._writev&&n&&n.next){var r=t.bufferedRequestCount;var i=new Array(r);var o=t.corkedRequestsFree;o.entry=n;var a=0;var s=true;while(n){i[a]=n;if(!n.isBuf)s=false;n=n.next;a+=1}i.allBuffers=s;doWrite(e,t,true,t.length,i,"",o.finish);t.pendingcb++;t.lastBufferedRequest=null;if(o.next){t.corkedRequestsFree=o.next;o.next=null}else{t.corkedRequestsFree=new CorkedRequest(t)}t.bufferedRequestCount=0}else{while(n){var c=n.chunk;var u=n.encoding;var l=n.callback;var f=t.objectMode?1:c.length;doWrite(e,t,false,f,c,u,l);n=n.next;t.bufferedRequestCount--;if(t.writing){break}}if(n===null)t.lastBufferedRequest=null}t.bufferedRequest=n;t.bufferProcessing=false}Writable.prototype._write=function(e,t,n){n(new Error("_write() is not implemented"))};Writable.prototype._writev=null;Writable.prototype.end=function(e,t,n){var r=this._writableState;if(typeof e==="function"){n=e;e=null;t=null}else if(typeof t==="function"){n=t;t=null}if(e!==null&&e!==undefined)this.write(e,t);if(r.corked){r.corked=1;this.uncork()}if(!r.ending&&!r.finished)endWritable(this,r,n)};function needFinish(e){return e.ending&&e.length===0&&e.bufferedRequest===null&&!e.finished&&!e.writing}function callFinal(e,t){e._final(function(n){t.pendingcb--;if(n){e.emit("error",n)}t.prefinished=true;e.emit("prefinish");finishMaybe(e,t)})}function prefinish(e,t){if(!t.prefinished&&!t.finalCalled){if(typeof e._final==="function"){t.pendingcb++;t.finalCalled=true;r.nextTick(callFinal,e,t)}else{t.prefinished=true;e.emit("prefinish")}}}function finishMaybe(e,t){var n=needFinish(t);if(n){prefinish(e,t);if(t.pendingcb===0){t.finished=true;e.emit("finish")}}return n}function endWritable(e,t,n){t.ending=true;finishMaybe(e,t);if(n){if(t.finished)r.nextTick(n);else e.once("finish",n)}t.ended=true;e.writable=false}function onCorkedFinish(e,t,n){var r=e.entry;e.entry=null;while(r){var i=r.callback;t.pendingcb--;i(n);r=r.next}if(t.corkedRequestsFree){t.corkedRequestsFree.next=e}else{t.corkedRequestsFree=e}}Object.defineProperty(Writable.prototype,"destroyed",{get:function(){if(this._writableState===undefined){return false}return this._writableState.destroyed},set:function(e){if(!this._writableState){return}this._writableState.destroyed=e}});Writable.prototype.destroy=f.destroy;Writable.prototype._undestroy=f.undestroy;Writable.prototype._destroy=function(e,t){this.end();t(e)}},863:function(e){e.exports=[["a140","",62],["a180","",32],["a240","",62],["a280","",32],["a2ab","",5],["a2e3","€"],["a2ef",""],["a2fd",""],["a340","",62],["a380","",31," "],["a440","",62],["a480","",32],["a4f4","",10],["a540","",62],["a580","",32],["a5f7","",7],["a640","",62],["a680","",32],["a6b9","",7],["a6d9","",6],["a6ec",""],["a6f3",""],["a6f6","",8],["a740","",62],["a780","",32],["a7c2","",14],["a7f2","",12],["a896","",10],["a8bc",""],["a8bf","ǹ"],["a8c1",""],["a8ea","",20],["a958",""],["a95b",""],["a95d",""],["a989","〾⿰",11],["a997","",12],["a9f0","",14],["aaa1","",93],["aba1","",93],["aca1","",93],["ada1","",93],["aea1","",93],["afa1","",93],["d7fa","",4],["f8a1","",93],["f9a1","",93],["faa1","",93],["fba1","",93],["fca1","",93],["fda1","",93],["fe50","⺁⺄㑳㑇⺈⺋㖞㘚㘎⺌⺗㥮㤘㧏㧟㩳㧐㭎㱮㳠⺧⺪䁖䅟⺮䌷⺳⺶⺷䎱䎬⺻䏝䓖䙡䙌"],["fe80","䜣䜩䝼䞍⻊䥇䥺䥽䦂䦃䦅䦆䦟䦛䦷䦶䲣䲟䲠䲡䱷䲢䴓",6,"䶮",93]]},866:function(e,t,n){var r=n(538);var i=function(){};var o=function(e){return e.setHeader&&typeof e.abort==="function"};var a=function(e){return e.stdio&&Array.isArray(e.stdio)&&e.stdio.length===3};var s=function(e,t,n){if(typeof t==="function")return s(e,null,t);if(!t)t={};n=r(n||i);var c=e._writableState;var u=e._readableState;var l=t.readable||t.readable!==false&&e.readable;var f=t.writable||t.writable!==false&&e.writable;var p=function(){if(!e.writable)d()};var d=function(){f=false;if(!l)n.call(e)};var h=function(){l=false;if(!f)n.call(e)};var m=function(t){n.call(e,t?new Error("exited with error code: "+t):null)};var v=function(t){n.call(e,t)};var g=function(){if(l&&!(u&&u.ended))return n.call(e,new Error("premature close"));if(f&&!(c&&c.ended))return n.call(e,new Error("premature close"))};var y=function(){e.req.on("finish",d)};if(o(e)){e.on("complete",d);e.on("abort",g);if(e.req)y();else e.on("request",y)}else if(f&&!c){e.on("end",p);e.on("close",p)}if(a(e))e.on("exit",m);e.on("end",h);e.on("finish",d);if(t.error!==false)e.on("error",v);e.on("close",g);return function(){e.removeListener("complete",d);e.removeListener("abort",g);e.removeListener("request",y);if(e.req)e.req.removeListener("finish",d);e.removeListener("end",p);e.removeListener("close",p);e.removeListener("finish",d);e.removeListener("exit",m);e.removeListener("end",h);e.removeListener("error",v);e.removeListener("close",g)}};e.exports=s},868:function(e,t,n){"use strict";const r=n(622);function getRootPath(e){e=r.normalize(r.resolve(e)).split(r.sep);if(e.length>0)return e[0];return null}const i=/[<>:"|?*]/;function invalidWin32Path(e){const t=getRootPath(e);e=e.replace(t,"");return i.test(e)}e.exports={getRootPath:getRootPath,invalidWin32Path:invalidWin32Path}},874:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=n(391);const o=r(n(785));const a=[{major:10,range:"10.x",runtime:"nodejs10.x"},{major:8,range:"8.10.x",runtime:"nodejs8.10"}];t.defaultSelection=a.find(e=>e.major===8);async function getSupportedNodeVersion(e,n){let r=t.defaultSelection;if(!e){if(!n){o.default("missing `engines` in `package.json`, using default range: "+r.range)}}else{const t=a.some(t=>{r=t;return i.intersects(t.range,e)});if(t){if(!n){o.default("Found `engines` in `package.json`, selecting range: "+r.range)}}else{if(!n){throw new Error("found `engines` in `package.json` with an unsupported node range: "+e+"\nplease use `10.x` or `8.10.x` instead")}}}return r}t.getSupportedNodeVersion=getSupportedNodeVersion},884:function(e){"use strict";const t=process.platform==="win32";function notFoundError(e,t){return Object.assign(new Error(`${t} ${e.command} ENOENT`),{code:"ENOENT",errno:"ENOENT",syscall:`${t} ${e.command}`,path:e.command,spawnargs:e.args})}function hookChildProcess(e,n){if(!t){return}const r=e.emit;e.emit=function(t,i){if(t==="exit"){const t=verifyENOENT(i,n,"spawn");if(t){return r.call(e,"error",t)}}return r.apply(e,arguments)}}function verifyENOENT(e,n){if(t&&e===1&&!n.file){return notFoundError(n.original,"spawn")}return null}function verifyENOENTSync(e,n){if(t&&e===1&&!n.file){return notFoundError(n.original,"spawnSync")}return null}e.exports={hookChildProcess:hookChildProcess,verifyENOENT:verifyENOENT,verifyENOENTSync:verifyENOENTSync,notFoundError:notFoundError}},886:function(e,t,n){"use strict";var r=n(603).Buffer;var i=n(924),o=e.exports;o.encodings=null;o.defaultCharUnicode="<22>";o.defaultCharSingleByte="?";o.encode=function encode(e,t,n){e=""+(e||"");var i=o.getEncoder(t,n);var a=i.write(e);var s=i.end();return s&&s.length>0?r.concat([a,s]):a};o.decode=function decode(e,t,n){if(typeof e==="string"){if(!o.skipDecodeWarning){console.error("Iconv-lite warning: decode()-ing strings is deprecated. Refer to https://github.com/ashtuchkin/iconv-lite/wiki/Use-Buffers-when-decoding");o.skipDecodeWarning=true}e=r.from(""+(e||""),"binary")}var i=o.getDecoder(t,n);var a=i.write(e);var s=i.end();return s?a+s:a};o.encodingExists=function encodingExists(e){try{o.getCodec(e);return true}catch(e){return false}};o.toEncoding=o.encode;o.fromEncoding=o.decode;o._codecDataCache={};o.getCodec=function getCodec(e){if(!o.encodings)o.encodings=n(709);var t=o._canonicalizeEncoding(e);var r={};while(true){var i=o._codecDataCache[t];if(i)return i;var a=o.encodings[t];switch(typeof a){case"string":t=a;break;case"object":for(var s in a)r[s]=a[s];if(!r.encodingName)r.encodingName=t;t=a.type;break;case"function":if(!r.encodingName)r.encodingName=t;i=new a(r,o);o._codecDataCache[r.encodingName]=i;return i;default:throw new Error("Encoding not recognized: '"+e+"' (searched as: '"+t+"')")}}};o._canonicalizeEncoding=function(e){return(""+e).toLowerCase().replace(/:\d{4}$|[^0-9a-z]/g,"")};o.getEncoder=function getEncoder(e,t){var n=o.getCodec(e),r=new n.encoder(t,n);if(n.bomAware&&t&&t.addBOM)r=new i.PrependBOM(r,t);return r};o.getDecoder=function getDecoder(e,t){var n=o.getCodec(e),r=new n.decoder(t,n);if(n.bomAware&&!(t&&t.stripBOM===false))r=new i.StripBOM(r,t);return r};var a=typeof process!=="undefined"&&process.versions&&process.versions.node;if(a){var s=a.split(".").map(Number);if(s[0]>0||s[1]>=10){n(624)(o)}n(672)(o)}if(false){}},904:function(e,t,n){e.exports=minimatch;minimatch.Minimatch=Minimatch;var r={sep:"/"};try{r=n(622)}catch(e){}var i=minimatch.GLOBSTAR=Minimatch.GLOBSTAR={};var o=n(266);var a={"!":{open:"(?:(?!(?:",close:"))[^/]*?)"},"?":{open:"(?:",close:")?"},"+":{open:"(?:",close:")+"},"*":{open:"(?:",close:")*"},"@":{open:"(?:",close:")"}};var s="[^/]";var c=s+"*?";var u="(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?";var l="(?:(?!(?:\\/|^)\\.).)*?";var f=charSet("().*{}+?[]^$\\!");function charSet(e){return e.split("").reduce(function(e,t){e[t]=true;return e},{})}var p=/\/+/;minimatch.filter=filter;function filter(e,t){t=t||{};return function(n,r,i){return minimatch(n,e,t)}}function ext(e,t){e=e||{};t=t||{};var n={};Object.keys(t).forEach(function(e){n[e]=t[e]});Object.keys(e).forEach(function(t){n[t]=e[t]});return n}minimatch.defaults=function(e){if(!e||!Object.keys(e).length)return minimatch;var t=minimatch;var n=function minimatch(n,r,i){return t.minimatch(n,r,ext(e,i))};n.Minimatch=function Minimatch(n,r){return new t.Minimatch(n,ext(e,r))};return n};Minimatch.defaults=function(e){if(!e||!Object.keys(e).length)return Minimatch;return minimatch.defaults(e).Minimatch};function minimatch(e,t,n){if(typeof t!=="string"){throw new TypeError("glob pattern string required")}if(!n)n={};if(!n.nocomment&&t.charAt(0)==="#"){return false}if(t.trim()==="")return e==="";return new Minimatch(t,n).match(e)}function Minimatch(e,t){if(!(this instanceof Minimatch)){return new Minimatch(e,t)}if(typeof e!=="string"){throw new TypeError("glob pattern string required")}if(!t)t={};e=e.trim();if(r.sep!=="/"){e=e.split(r.sep).join("/")}this.options=t;this.set=[];this.pattern=e;this.regexp=null;this.negate=false;this.comment=false;this.empty=false;this.make()}Minimatch.prototype.debug=function(){};Minimatch.prototype.make=make;function make(){if(this._made)return;var e=this.pattern;var t=this.options;if(!t.nocomment&&e.charAt(0)==="#"){this.comment=true;return}if(!e){this.empty=true;return}this.parseNegate();var n=this.globSet=this.braceExpand();if(t.debug)this.debug=console.error;this.debug(this.pattern,n);n=this.globParts=n.map(function(e){return e.split(p)});this.debug(this.pattern,n);n=n.map(function(e,t,n){return e.map(this.parse,this)},this);this.debug(this.pattern,n);n=n.filter(function(e){return e.indexOf(false)===-1});this.debug(this.pattern,n);this.set=n}Minimatch.prototype.parseNegate=parseNegate;function parseNegate(){var e=this.pattern;var t=false;var n=this.options;var r=0;if(n.nonegate)return;for(var i=0,o=e.length;i<o&&e.charAt(i)==="!";i++){t=!t;r++}if(r)this.pattern=e.substr(r);this.negate=t}minimatch.braceExpand=function(e,t){return braceExpand(e,t)};Minimatch.prototype.braceExpand=braceExpand;function braceExpand(e,t){if(!t){if(this instanceof Minimatch){t=this.options}else{t={}}}e=typeof e==="undefined"?this.pattern:e;if(typeof e==="undefined"){throw new TypeError("undefined pattern")}if(t.nobrace||!e.match(/\{.*\}/)){return[e]}return o(e)}Minimatch.prototype.parse=parse;var d={};function parse(e,t){if(e.length>1024*64){throw new TypeError("pattern is too long")}var n=this.options;if(!n.noglobstar&&e==="**")return i;if(e==="")return"";var r="";var o=!!n.nocase;var u=false;var l=[];var p=[];var h;var m=false;var v=-1;var g=-1;var y=e.charAt(0)==="."?"":n.dot?"(?!(?:^|\\/)\\.{1,2}(?:$|\\/))":"(?!\\.)";var b=this;function clearStateChar(){if(h){switch(h){case"*":r+=c;o=true;break;case"?":r+=s;o=true;break;default:r+="\\"+h;break}b.debug("clearStateChar %j %j",h,r);h=false}}for(var w=0,x=e.length,k;w<x&&(k=e.charAt(w));w++){this.debug("%s\t%s %s %j",e,w,r,k);if(u&&f[k]){r+="\\"+k;u=false;continue}switch(k){case"/":return false;case"\\":clearStateChar();u=true;continue;case"?":case"*":case"+":case"@":case"!":this.debug("%s\t%s %s %j <-- stateChar",e,w,r,k);if(m){this.debug(" in class");if(k==="!"&&w===g+1)k="^";r+=k;continue}b.debug("call clearStateChar %j",h);clearStateChar();h=k;if(n.noext)clearStateChar();continue;case"(":if(m){r+="(";continue}if(!h){r+="\\(";continue}l.push({type:h,start:w-1,reStart:r.length,open:a[h].open,close:a[h].close});r+=h==="!"?"(?:(?!(?:":"(?:";this.debug("plType %j %j",h,r);h=false;continue;case")":if(m||!l.length){r+="\\)";continue}clearStateChar();o=true;var j=l.pop();r+=j.close;if(j.type==="!"){p.push(j)}j.reEnd=r.length;continue;case"|":if(m||!l.length||u){r+="\\|";u=false;continue}clearStateChar();r+="|";continue;case"[":clearStateChar();if(m){r+="\\"+k;continue}m=true;g=w;v=r.length;r+=k;continue;case"]":if(w===g+1||!m){r+="\\"+k;u=false;continue}if(m){var S=e.substring(g+1,w);try{RegExp("["+S+"]")}catch(e){var E=this.parse(S,d);r=r.substr(0,v)+"\\["+E[0]+"\\]";o=o||E[1];m=false;continue}}o=true;m=false;r+=k;continue;default:clearStateChar();if(u){u=false}else if(f[k]&&!(k==="^"&&m)){r+="\\"}r+=k}}if(m){S=e.substr(g+1);E=this.parse(S,d);r=r.substr(0,v)+"\\["+E[0];o=o||E[1]}for(j=l.pop();j;j=l.pop()){var _=r.slice(j.reStart+j.open.length);this.debug("setting tail",r,j);_=_.replace(/((?:\\{2}){0,64})(\\?)\|/g,function(e,t,n){if(!n){n="\\"}return t+t+n+"|"});this.debug("tail=%j\n %s",_,_,j,r);var C=j.type==="*"?c:j.type==="?"?s:"\\"+j.type;o=true;r=r.slice(0,j.reStart)+C+"\\("+_}clearStateChar();if(u){r+="\\\\"}var A=false;switch(r.charAt(0)){case".":case"[":case"(":A=true}for(var O=p.length-1;O>-1;O--){var F=p[O];var D=r.slice(0,F.reStart);var T=r.slice(F.reStart,F.reEnd-8);var I=r.slice(F.reEnd-8,F.reEnd);var R=r.slice(F.reEnd);I+=R;var P=D.split("(").length-1;var B=R;for(w=0;w<P;w++){B=B.replace(/\)[+*?]?/,"")}R=B;var N="";if(R===""&&t!==d){N="$"}var z=D+T+R+N+I;r=z}if(r!==""&&o){r="(?=.)"+r}if(A){r=y+r}if(t===d){return[r,o]}if(!o){return globUnescape(e)}var L=n.nocase?"i":"";try{var M=new RegExp("^"+r+"$",L)}catch(e){return new RegExp("$.")}M._glob=e;M._src=r;return M}minimatch.makeRe=function(e,t){return new Minimatch(e,t||{}).makeRe()};Minimatch.prototype.makeRe=makeRe;function makeRe(){if(this.regexp||this.regexp===false)return this.regexp;var e=this.set;if(!e.length){this.regexp=false;return this.regexp}var t=this.options;var n=t.noglobstar?c:t.dot?u:l;var r=t.nocase?"i":"";var o=e.map(function(e){return e.map(function(e){return e===i?n:typeof e==="string"?regExpEscape(e):e._src}).join("\\/")}).join("|");o="^(?:"+o+")$";if(this.negate)o="^(?!"+o+").*$";try{this.regexp=new RegExp(o,r)}catch(e){this.regexp=false}return this.regexp}minimatch.match=function(e,t,n){n=n||{};var r=new Minimatch(t,n);e=e.filter(function(e){return r.match(e)});if(r.options.nonull&&!e.length){e.push(t)}return e};Minimatch.prototype.match=match;function match(e,t){this.debug("match",e,this.pattern);if(this.comment)return false;if(this.empty)return e==="";if(e==="/"&&t)return true;var n=this.options;if(r.sep!=="/"){e=e.split(r.sep).join("/")}e=e.split(p);this.debug(this.pattern,"split",e);var i=this.set;this.debug(this.pattern,"set",i);var o;var a;for(a=e.length-1;a>=0;a--){o=e[a];if(o)break}for(a=0;a<i.length;a++){var s=i[a];var c=e;if(n.matchBase&&s.length===1){c=[o]}var u=this.matchOne(c,s,t);if(u){if(n.flipNegate)return true;return!this.negate}}if(n.flipNegate)return false;return this.negate}Minimatch.prototype.matchOne=function(e,t,n){var r=this.options;this.debug("matchOne",{this:this,file:e,pattern:t});this.debug("matchOne",e.length,t.length);for(var o=0,a=0,s=e.length,c=t.length;o<s&&a<c;o++,a++){this.debug("matchOne loop");var u=t[a];var l=e[o];this.debug(t,u,l);if(u===false)return false;if(u===i){this.debug("GLOBSTAR",[t,u,l]);var f=o;var p=a+1;if(p===c){this.debug("** at the end");for(;o<s;o++){if(e[o]==="."||e[o]===".."||!r.dot&&e[o].charAt(0)===".")return false}return true}while(f<s){var d=e[f];this.debug("\nglobstar while",e,f,t,p,d);if(this.matchOne(e.slice(f),t.slice(p),n)){this.debug("globstar found match!",f,s,d);return true}else{if(d==="."||d===".."||!r.dot&&d.charAt(0)==="."){this.debug("dot detected!",e,f,t,p);break}this.debug("globstar swallow a segment, and continue");f++}}if(n){this.debug("\n>>> no match, partial?",e,f,t,p);if(f===s)return true}return false}var h;if(typeof u==="string"){if(r.nocase){h=l.toLowerCase()===u.toLowerCase()}else{h=l===u}this.debug("string match",u,l,h)}else{h=l.match(u);this.debug("pattern match",u,l,h)}if(!h)return false}if(o===s&&a===c){return true}else if(o===s){return n}else if(a===c){var m=o===s-1&&e[o]==="";return m}throw new Error("wtf?")};function globUnescape(e){return e.replace(/\\(.)/g,"$1")}function regExpEscape(e){return e.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")}},914:function(e,t,n){var r;try{r=n(729)}catch(e){r=n(747)}function readFile(e,t,n){if(n==null){n=t;t={}}if(typeof t==="string"){t={encoding:t}}t=t||{};var i=t.fs||r;var o=true;if("throws"in t){o=t.throws}i.readFile(e,t,function(r,i){if(r)return n(r);i=stripBom(i);var a;try{a=JSON.parse(i,t?t.reviver:null)}catch(t){if(o){t.message=e+": "+t.message;return n(t)}else{return n(null,null)}}n(null,a)})}function readFileSync(e,t){t=t||{};if(typeof t==="string"){t={encoding:t}}var n=t.fs||r;var i=true;if("throws"in t){i=t.throws}try{var o=n.readFileSync(e,t);o=stripBom(o);return JSON.parse(o,t.reviver)}catch(t){if(i){t.message=e+": "+t.message;throw t}else{return null}}}function stringify(e,t){var n;var r="\n";if(typeof t==="object"&&t!==null){if(t.spaces){n=t.spaces}if(t.EOL){r=t.EOL}}var i=JSON.stringify(e,t?t.replacer:null,n);return i.replace(/\n/g,r)+r}function writeFile(e,t,n,i){if(i==null){i=n;n={}}n=n||{};var o=n.fs||r;var a="";try{a=stringify(t,n)}catch(e){if(i)i(e,null);return}o.writeFile(e,a,n,i)}function writeFileSync(e,t,n){n=n||{};var i=n.fs||r;var o=stringify(t,n);return i.writeFileSync(e,o,n)}function stripBom(e){if(Buffer.isBuffer(e))e=e.toString("utf8");e=e.replace(/^\uFEFF/,"");return e}var i={readFile:readFile,readFileSync:readFileSync,writeFile:writeFile,writeFileSync:writeFileSync};e.exports=i},924:function(e,t){"use strict";var n="\ufeff";t.PrependBOM=PrependBOMWrapper;function PrependBOMWrapper(e,t){this.encoder=e;this.addBOM=true}PrependBOMWrapper.prototype.write=function(e){if(this.addBOM){e=n+e;this.addBOM=false}return this.encoder.write(e)};PrependBOMWrapper.prototype.end=function(){return this.encoder.end()};t.StripBOM=StripBOMWrapper;function StripBOMWrapper(e,t){this.decoder=e;this.pass=false;this.options=t||{}}StripBOMWrapper.prototype.write=function(e){var t=this.decoder.write(e);if(this.pass||!t)return t;if(t[0]===n){t=t.slice(1);if(typeof this.options.stripBOM==="function")this.options.stripBOM()}this.pass=true;return t};StripBOMWrapper.prototype.end=function(){return this.decoder.end()}},936:function(e,t,n){"use strict";const r=n(323).fromCallback;const i=n(729);const o=["access","appendFile","chmod","chown","close","copyFile","fchmod","fchown","fdatasync","fstat","fsync","ftruncate","futimes","lchown","lchmod","link","lstat","mkdir","mkdtemp","open","readFile","readdir","readlink","realpath","rename","rmdir","stat","symlink","truncate","unlink","utimes","writeFile"].filter(e=>{return typeof i[e]==="function"});Object.keys(i).forEach(e=>{if(e==="promises"){return}t[e]=i[e]});o.forEach(e=>{t[e]=r(i[e])});t.exists=function(e,t){if(typeof t==="function"){return i.exists(e,t)}return new Promise(t=>{return i.exists(e,t)})};t.read=function(e,t,n,r,o,a){if(typeof a==="function"){return i.read(e,t,n,r,o,a)}return new Promise((a,s)=>{i.read(e,t,n,r,o,(e,t,n)=>{if(e)return s(e);a({bytesRead:t,buffer:n})})})};t.write=function(e,t,...n){if(typeof n[n.length-1]==="function"){return i.write(e,t,...n)}return new Promise((r,o)=>{i.write(e,t,...n,(e,t,n)=>{if(e)return o(e);r({bytesWritten:t,buffer:n})})})}},944:function(e,t,n){"use strict";const r=n(729);const i=n(622);const o=n(648);const a=n(458);function outputJsonSync(e,t,n){const s=i.dirname(e);if(!r.existsSync(s)){o.mkdirsSync(s)}a.writeJsonSync(e,t,n)}e.exports=outputJsonSync},947:function(e,t,n){"use strict";var r=n(603).Buffer;t._sbcs=SBCSCodec;function SBCSCodec(e,t){if(!e)throw new Error("SBCS codec is called without the data.");if(!e.chars||e.chars.length!==128&&e.chars.length!==256)throw new Error("Encoding '"+e.type+"' has incorrect 'chars' (must be of len 128 or 256)");if(e.chars.length===128){var n="";for(var i=0;i<128;i++)n+=String.fromCharCode(i);e.chars=n+e.chars}this.decodeBuf=r.from(e.chars,"ucs2");var o=r.alloc(65536,t.defaultCharSingleByte.charCodeAt(0));for(var i=0;i<e.chars.length;i++)o[e.chars.charCodeAt(i)]=i;this.encodeBuf=o}SBCSCodec.prototype.encoder=SBCSEncoder;SBCSCodec.prototype.decoder=SBCSDecoder;function SBCSEncoder(e,t){this.encodeBuf=t.encodeBuf}SBCSEncoder.prototype.write=function(e){var t=r.alloc(e.length);for(var n=0;n<e.length;n++)t[n]=this.encodeBuf[e.charCodeAt(n)];return t};SBCSEncoder.prototype.end=function(){};function SBCSDecoder(e,t){this.decodeBuf=t.decodeBuf}SBCSDecoder.prototype.write=function(e){var t=this.decodeBuf;var n=r.alloc(e.length*2);var i=0,o=0;for(var a=0;a<e.length;a++){i=e[a]*2;o=a*2;n[o]=t[i];n[o+1]=t[i+1]}return n.toString("ucs2")};SBCSDecoder.prototype.end=function(){}},950:function(e,t,n){"use strict";const r=n(323).fromCallback;const i=n(622);const o=n(729);const a=n(648);const s=n(370).pathExists;function createLink(e,t,n){function makeLink(e,t){o.link(e,t,e=>{if(e)return n(e);n(null)})}s(t,(r,c)=>{if(r)return n(r);if(c)return n(null);o.lstat(e,r=>{if(r){r.message=r.message.replace("lstat","ensureLink");return n(r)}const o=i.dirname(t);s(o,(r,i)=>{if(r)return n(r);if(i)return makeLink(e,t);a.mkdirs(o,r=>{if(r)return n(r);makeLink(e,t)})})})})}function createLinkSync(e,t){const n=o.existsSync(t);if(n)return undefined;try{o.lstatSync(e)}catch(e){e.message=e.message.replace("lstat","ensureLink");throw e}const r=i.dirname(t);const s=o.existsSync(r);if(s)return o.linkSync(e,t);a.mkdirsSync(r);return o.linkSync(e,t)}e.exports={createLink:r(createLink),createLinkSync:createLinkSync}},968:function(e,t,n){"use strict";const r=n(729);const i=n(622);const o=n(648).mkdirsSync;const a=n(402).utimesMillisSync;const s=Symbol("notExist");function copySync(e,t,n){if(typeof n==="function"){n={filter:n}}n=n||{};n.clobber="clobber"in n?!!n.clobber:true;n.overwrite="overwrite"in n?!!n.overwrite:n.clobber;if(n.preserveTimestamps&&process.arch==="ia32"){console.warn(`fs-extra: Using the preserveTimestamps option in 32-bit node is not recommended;\n\n see https://github.com/jprichardson/node-fs-extra/issues/269`)}const a=checkPaths(e,t);if(n.filter&&!n.filter(e,t))return;const s=i.dirname(t);if(!r.existsSync(s))o(s);return startCopy(a,e,t,n)}function startCopy(e,t,n,r){if(r.filter&&!r.filter(t,n))return;return getStats(e,t,n,r)}function getStats(e,t,n,i){const o=i.dereference?r.statSync:r.lstatSync;const a=o(t);if(a.isDirectory())return onDir(a,e,t,n,i);else if(a.isFile()||a.isCharacterDevice()||a.isBlockDevice())return onFile(a,e,t,n,i);else if(a.isSymbolicLink())return onLink(e,t,n,i)}function onFile(e,t,n,r,i){if(t===s)return copyFile(e,n,r,i);return mayCopyFile(e,n,r,i)}function mayCopyFile(e,t,n,i){if(i.overwrite){r.unlinkSync(n);return copyFile(e,t,n,i)}else if(i.errorOnExist){throw new Error(`'${n}' already exists`)}}function copyFile(e,t,n,i){if(typeof r.copyFileSync==="function"){r.copyFileSync(t,n);r.chmodSync(n,e.mode);if(i.preserveTimestamps){return a(n,e.atime,e.mtime)}return}return copyFileFallback(e,t,n,i)}function copyFileFallback(e,t,i,o){const a=64*1024;const s=n(518)(a);const c=r.openSync(t,"r");const u=r.openSync(i,"w",e.mode);let l=0;while(l<e.size){const e=r.readSync(c,s,0,a,l);r.writeSync(u,s,0,e);l+=e}if(o.preserveTimestamps)r.futimesSync(u,e.atime,e.mtime);r.closeSync(c);r.closeSync(u)}function onDir(e,t,n,r,i){if(t===s)return mkDirAndCopy(e,n,r,i);if(t&&!t.isDirectory()){throw new Error(`Cannot overwrite non-directory '${r}' with directory '${n}'.`)}return copyDir(n,r,i)}function mkDirAndCopy(e,t,n,i){r.mkdirSync(n);copyDir(t,n,i);return r.chmodSync(n,e.mode)}function copyDir(e,t,n){r.readdirSync(e).forEach(r=>copyDirItem(r,e,t,n))}function copyDirItem(e,t,n,r){const o=i.join(t,e);const a=i.join(n,e);const s=checkPaths(o,a);return startCopy(s,o,a,r)}function onLink(e,t,n,o){let a=r.readlinkSync(t);if(o.dereference){a=i.resolve(process.cwd(),a)}if(e===s){return r.symlinkSync(a,n)}else{let e;try{e=r.readlinkSync(n)}catch(e){if(e.code==="EINVAL"||e.code==="UNKNOWN")return r.symlinkSync(a,n);throw e}if(o.dereference){e=i.resolve(process.cwd(),e)}if(isSrcSubdir(a,e)){throw new Error(`Cannot copy '${a}' to a subdirectory of itself, '${e}'.`)}if(r.statSync(n).isDirectory()&&isSrcSubdir(e,a)){throw new Error(`Cannot overwrite '${e}' with '${a}'.`)}return copyLink(a,n)}}function copyLink(e,t){r.unlinkSync(t);return r.symlinkSync(e,t)}function isSrcSubdir(e,t){const n=i.resolve(e).split(i.sep);const r=i.resolve(t).split(i.sep);return n.reduce((e,t,n)=>e&&r[n]===t,true)}function checkStats(e,t){const n=r.statSync(e);let i;try{i=r.statSync(t)}catch(e){if(e.code==="ENOENT")return{srcStat:n,destStat:s};throw e}return{srcStat:n,destStat:i}}function checkPaths(e,t){const{srcStat:n,destStat:r}=checkStats(e,t);if(r.ino&&r.ino===n.ino){throw new Error("Source and destination must not be the same.")}if(n.isDirectory()&&isSrcSubdir(e,t)){throw new Error(`Cannot copy '${e}' to a subdirectory of itself, '${t}'.`)}return r}e.exports=copySync},985:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(357));const o=r(n(410));const a=r(n(622));const s=r(n(785));const c=r(n(19));const u=n(669);const l=n(87);const f=n(874);function spawnAsync(e,t,n={}){return new Promise((r,i)=>{const o=[];n={stdio:"inherit",...n};const a=c.default(e,t,n);if(n.stdio==="pipe"&&a.stderr){a.stderr.on("data",e=>o.push(e))}a.on("error",i);a.on("close",(e,t)=>{if(e===0){return r()}const a=o.map(e=>e.toString()).join("");if(n.stdio!=="inherit"){i(new Error(`Exited with ${e||t}\n${a}`))}else{i(new Error(`Exited with ${e||t}`))}})})}t.spawnAsync=spawnAsync;async function chmodPlusX(e){const t=await o.default.stat(e);const n=t.mode|64|8|1;if(t.mode===n)return;const r=n.toString(8).slice(-3);await o.default.chmod(e,r)}async function runShellScript(e,t=[],n){i.default(a.default.isAbsolute(e));const r=a.default.dirname(e);await chmodPlusX(e);await spawnAsync(`./${a.default.basename(e)}`,t,{cwd:r,...n});return true}t.runShellScript=runShellScript;function getSpawnOptions(e,t){const n={env:{...process.env}};if(!e.isDev){n.env.PATH=`/node${t.major}/bin:${n.env.PATH}`}return n}t.getSpawnOptions=getSpawnOptions;async function getNodeVersion(e,t,n){const{packageJson:r}=await scanParentDirs(e,true);let i;let o=false;if(r&&r.engines&&r.engines.node){i=r.engines.node}else if(t){i=t;o=true}else if(n&&n.zeroConfig){i="10.x";o=true}return f.getSupportedNodeVersion(i,o)}t.getNodeVersion=getNodeVersion;async function scanParentDirs(e,t=false){i.default(a.default.isAbsolute(e));let n=false;let r;let s=e;while(true){const e=a.default.join(s,"package.json");if(await o.default.pathExists(e)){if(t){r=JSON.parse(await o.default.readFile(e,"utf8"))}n=await o.default.pathExists(a.default.join(s,"package-lock.json"));break}const i=a.default.dirname(s);if(s===i)break;s=i}return{hasPackageLockJson:n,packageJson:r}}async function runNpmInstall(e,t=[],n,r){if(r&&r.isDev){s.default("Skipping dependency installation because dev mode is enabled");return}i.default(a.default.isAbsolute(e));let o=t;s.default(`Installing to ${e}`);const{hasPackageLockJson:c}=await scanParentDirs(e);const u={cwd:e,...n}||{cwd:e,env:process.env};if(c){o=t.filter(e=>e!=="--prefer-offline");await spawnAsync("npm",o.concat(["install","--unsafe-perm"]),u)}else{await spawnAsync("yarn",o.concat(["--ignore-engines","--cwd",e]),u)}}t.runNpmInstall=runNpmInstall;async function runBundleInstall(e,t=[],n,r){if(r&&r.isDev){s.default("Skipping dependency installation because dev mode is enabled");return}i.default(a.default.isAbsolute(e));const o={cwd:e,...n}||{cwd:e,env:process.env};await spawnAsync("bundle",t.concat(["install","--no-prune","--retry","3","--jobs",String(l.cpus().length||1)]),o)}t.runBundleInstall=runBundleInstall;async function runPipInstall(e,t=[],n,r){if(r&&r.isDev){s.default("Skipping dependency installation because dev mode is enabled");return}i.default(a.default.isAbsolute(e));const o={cwd:e,...n}||{cwd:e,env:process.env};await spawnAsync("pip3",["install","--disable-pip-version-check",...t],o)}t.runPipInstall=runPipInstall;async function runPackageJsonScript(e,t,n){i.default(a.default.isAbsolute(e));const{packageJson:r,hasPackageLockJson:o}=await scanParentDirs(e,true);const s=Boolean(r&&r.scripts&&t&&r.scripts[t]);if(!s)return false;const c={cwd:e,...n};if(o){console.log(`Running "npm run ${t}"`);await spawnAsync("npm",["run",t],c)}else{console.log(`Running "yarn run ${t}"`);await spawnAsync("yarn",["--cwd",e,"run",t],c)}return true}t.runPackageJsonScript=runPackageJsonScript;t.installDependencies=u.deprecate(runNpmInstall,"installDependencies() is deprecated. Please use runNpmInstall() instead.")},991:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});const r=n(622);const i=n(87);const o=n(410);async function getWritableDirectory(){const e=Math.floor(Math.random()*2147483647).toString(16);const t=r.join(i.tmpdir(),e);await o.mkdirp(t);return t}t.default=getWritableDirectory}})},8221:function(e,t,n){"use strict";var r=n(774);var i=n(2763);e.exports=function(e){var t=i(e);var n=r.parse(t);if(t!==e){n.protocol=null}return n}},8223:function(e){e.exports=function(e,t){Object.keys(t).forEach(function(n){e[n]=e[n]||t[n]});return e}},8225:function(e,t){t.parse=t.decode=decode;t.stringify=t.encode=encode;t.safe=safe;t.unsafe=unsafe;var n=typeof process!=="undefined"&&process.platform==="win32"?"\r\n":"\n";function encode(e,t){var r=[];var i="";if(typeof t==="string"){t={section:t,whitespace:false}}else{t=t||{};t.whitespace=t.whitespace===true}var o=t.whitespace?" = ":"=";Object.keys(e).forEach(function(t,a,s){var c=e[t];if(c&&Array.isArray(c)){c.forEach(function(e){i+=safe(t+"[]")+o+safe(e)+"\n"})}else if(c&&typeof c==="object"){r.push(t)}else{i+=safe(t)+o+safe(c)+n}});if(t.section&&i.length){i="["+safe(t.section)+"]"+n+i}r.forEach(function(r,o,a){var s=dotSplit(r).join("\\.");var c=(t.section?t.section+".":"")+s;var u=encode(e[r],{section:c,whitespace:t.whitespace});if(i.length&&u.length){i+=n}i+=u});return i}function dotSplit(e){return e.replace(/\1/g,"LITERAL\\1LITERAL").replace(/\\\./g,"").split(/\./).map(function(e){return e.replace(/\1/g,"\\.").replace(/\2LITERAL\\1LITERAL\2/g,"")})}function decode(e){var t={};var n=t;var r=null;var i=/^\[([^\]]*)\]$|^([^=]+)(=(.*))?$/i;var o=e.split(/[\r\n]+/g);o.forEach(function(e,o,a){if(!e||e.match(/^\s*[;#]/))return;var s=e.match(i);if(!s)return;if(s[1]!==undefined){r=unsafe(s[1]);n=t[r]=t[r]||{};return}var c=unsafe(s[2]);var u=s[3]?unsafe(s[4]):true;switch(u){case"true":case"false":case"null":u=JSON.parse(u)}if(c.length>2&&c.slice(-2)==="[]"){c=c.substring(0,c.length-2);if(!n[c]){n[c]=[]}else if(!Array.isArray(n[c])){n[c]=[n[c]]}}if(Array.isArray(n[c])){n[c].push(u)}else{n[c]=u}});Object.keys(t).filter(function(e,n,r){if(!t[e]||typeof t[e]!=="object"||Array.isArray(t[e])){return false}var i=dotSplit(e);var o=t;var a=i.pop();var s=a.replace(/\\\./g,".");i.forEach(function(e,t,n){if(!o[e]||typeof o[e]!=="object")o[e]={};o=o[e]});if(o===t&&s===a){return false}o[s]=t[e];return true}).forEach(function(e,n,r){delete t[e]});return t}function isQuoted(e){return e.charAt(0)==='"'&&e.slice(-1)==='"'||e.charAt(0)==="'"&&e.slice(-1)==="'"}function safe(e){return typeof e!=="string"||e.match(/[=\r\n]/)||e.match(/^\[/)||e.length>1&&isQuoted(e)||e!==e.trim()?JSON.stringify(e):e.replace(/;/g,"\\;").replace(/#/g,"\\#")}function unsafe(e,t){e=(e||"").trim();if(isQuoted(e)){if(e.charAt(0)==="'"){e=e.substr(1,e.length-2)}try{e=JSON.parse(e)}catch(e){}}else{var n=false;var r="";for(var i=0,o=e.length;i<o;i++){var a=e.charAt(i);if(n){if("\\;#".indexOf(a)!==-1){r+=a}else{r+="\\"+a}n=false}else if(";#".indexOf(a)!==-1){break}else if(a==="\\"){n=true}else{r+=a}}if(n){r+="\\"}return r.trim()}return e}},8233:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function isWildcardAlias(e){return e.startsWith("*.")}t.default=isWildcardAlias},8237:function(e,t,n){"use strict";e.exports=function(e,t,r,i){var o=n(4730);var a=function(e){return e.then(function(t){return race(t,e)})};function race(n,s){var c=r(n);if(c instanceof e){return a(c)}else{n=o.asArray(n);if(n===null)return i("expecting an array or an iterable object but got "+o.classString(n))}var u=new e(t);if(s!==undefined){u._propagateFrom(s,3)}var l=u._fulfill;var f=u._reject;for(var p=0,d=n.length;p<d;++p){var h=n[p];if(h===undefined&&!(p in n)){continue}e.cast(h)._then(l,f,undefined,u,null)}return u}e.race=function(e){return race(e,undefined)};e.prototype.race=function(){return race(this,undefined)}}},8244:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(9841);var o=function(e){r.__extends(SentryError,e);function SentryError(t){var n=this.constructor;var r=e.call(this,t)||this;r.message=t;r.name=n.prototype.constructor.name;i.setPrototypeOf(r,n.prototype);return r}return SentryError}(Error);t.SentryError=o},8249:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});const i=n(2740);const o=n(5869);function init({cacheDir:e}){return r(this,void 0,void 0,function*(){yield Promise.all([o.initializeRuntime(o.runtimes.nodejs),i.installNode(e,"8.10.0")])})}t.init=init},8265:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(4356).invalidWin32Path;const a=parseInt("0777",8);function mkdirs(e,t,n,s){if(typeof t==="function"){n=t;t={}}else if(!t||typeof t!=="object"){t={mode:t}}if(process.platform==="win32"&&o(e)){const t=new Error(e+" contains invalid WIN32 path characters.");t.code="EINVAL";return n(t)}let c=t.mode;const u=t.fs||r;if(c===undefined){c=a&~process.umask()}if(!s)s=null;n=n||function(){};e=i.resolve(e);u.mkdir(e,c,r=>{if(!r){s=s||e;return n(null,s)}switch(r.code){case"ENOENT":if(i.dirname(e)===e)return n(r);mkdirs(i.dirname(e),t,(r,i)=>{if(r)n(r,i);else mkdirs(e,t,n,i)});break;default:u.stat(e,(e,t)=>{if(e||!t.isDirectory())n(r,s);else n(null,s)});break}})}e.exports=mkdirs},8270:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(2617);const o=["access","appendFile","chmod","chown","close","copyFile","fchmod","fchown","fdatasync","fstat","fsync","ftruncate","futimes","lchown","lchmod","link","lstat","mkdir","mkdtemp","open","readFile","readdir","readlink","realpath","rename","rmdir","stat","symlink","truncate","unlink","utimes","writeFile"].filter(e=>{return typeof i[e]==="function"});Object.keys(i).forEach(e=>{if(e==="promises"){return}t[e]=i[e]});o.forEach(e=>{t[e]=r(i[e])});t.exists=function(e,t){if(typeof t==="function"){return i.exists(e,t)}return new Promise(t=>{return i.exists(e,t)})};t.read=function(e,t,n,r,o,a){if(typeof a==="function"){return i.read(e,t,n,r,o,a)}return new Promise((a,s)=>{i.read(e,t,n,r,o,(e,t,n)=>{if(e)return s(e);a({bytesRead:t,buffer:n})})})};t.write=function(e,t,...n){if(typeof n[n.length-1]==="function"){return i.write(e,t,...n)}return new Promise((r,o)=>{i.write(e,t,...n,(e,t,n)=>{if(e)return o(e);r({bytesWritten:t,buffer:n})})})}},8271:function(e,t,n){e.exports=isexe;isexe.sync=sync;var r=n(662);function isexe(e,t,n){r.stat(e,function(e,r){n(e,e?false:checkStat(r,t))})}function sync(e,t){return checkStat(r.statSync(e),t)}function checkStat(e,t){return e.isFile()&&checkMode(e,t)}function checkMode(e,t){var n=e.mode;var r=e.uid;var i=e.gid;var o=t.uid!==undefined?t.uid:process.getuid&&process.getuid();var a=t.gid!==undefined?t.gid:process.getgid&&process.getgid();var s=parseInt("100",8);var c=parseInt("010",8);var u=parseInt("001",8);var l=s|c;var f=n&u||n&c&&i===a||n&s&&r===o||n&l&&o===0;return f}},8277:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(3363).invalidWin32Path;const a=parseInt("0777",8);function mkdirs(e,t,n,s){if(typeof t==="function"){n=t;t={}}else if(!t||typeof t!=="object"){t={mode:t}}if(process.platform==="win32"&&o(e)){const t=new Error(e+" contains invalid WIN32 path characters.");t.code="EINVAL";return n(t)}let c=t.mode;const u=t.fs||r;if(c===undefined){c=a&~process.umask()}if(!s)s=null;n=n||function(){};e=i.resolve(e);u.mkdir(e,c,r=>{if(!r){s=s||e;return n(null,s)}switch(r.code){case"ENOENT":if(i.dirname(e)===e)return n(r);mkdirs(i.dirname(e),t,(r,i)=>{if(r)n(r,i);else mkdirs(e,t,n,i)});break;default:u.stat(e,(e,t)=>{if(e||!t.isDirectory())n(r,s);else n(null,s)});break}})}e.exports=mkdirs},8283:function(e,t,n){var r=n(8859);var i=n(649);t=e.exports=n(5921);t.init=init;t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.colors=[6,2,3,4,5,1];try{var o=n(4581);if(o&&o.level>=2){t.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221]}}catch(e){}t.inspectOpts=Object.keys(process.env).filter(function(e){return/^debug_/i.test(e)}).reduce(function(e,t){var n=t.substring(6).toLowerCase().replace(/_([a-z])/g,function(e,t){return t.toUpperCase()});var r=process.env[t];if(/^(yes|on|true|enabled)$/i.test(r))r=true;else if(/^(no|off|false|disabled)$/i.test(r))r=false;else if(r==="null")r=null;else r=Number(r);e[n]=r;return e},{});function useColors(){return"colors"in t.inspectOpts?Boolean(t.inspectOpts.colors):r.isatty(process.stderr.fd)}t.formatters.o=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts).split("\n").map(function(e){return e.trim()}).join(" ")};t.formatters.O=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts)};function formatArgs(e){var n=this.namespace;var r=this.useColors;if(r){var i=this.color;var o="[3"+(i<8?i:"8;5;"+i);var a=" "+o+";1m"+n+" "+"";e[0]=a+e[0].split("\n").join("\n"+a);e.push(o+"m+"+t.humanize(this.diff)+"")}else{e[0]=getDate()+n+" "+e[0]}}function getDate(){if(t.inspectOpts.hideDate){return""}else{return(new Date).toISOString()+" "}}function log(){return process.stderr.write(i.format.apply(i,arguments)+"\n")}function save(e){if(null==e){delete process.env.DEBUG}else{process.env.DEBUG=e}}function load(){return process.env.DEBUG}function init(e){e.inspectOpts={};var n=Object.keys(t.inspectOpts);for(var r=0;r<n.length;r++){e.inspectOpts[n[r]]=t.inspectOpts[n[r]]}}t.enable(load())},8287:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(3930);const a=process.platform==="win32";function defaults(e){const t=["unlink","chmod","stat","lstat","rmdir","readdir"];t.forEach(t=>{e[t]=e[t]||r[t];t=t+"Sync";e[t]=e[t]||r[t]});e.maxBusyTries=e.maxBusyTries||3}function rimraf(e,t,n){let r=0;if(typeof t==="function"){n=t;t={}}o(e,"rimraf: missing path");o.strictEqual(typeof e,"string","rimraf: path should be a string");o.strictEqual(typeof n,"function","rimraf: callback function required");o(t,"rimraf: invalid options argument provided");o.strictEqual(typeof t,"object","rimraf: options should be object");defaults(t);rimraf_(e,t,function CB(i){if(i){if((i.code==="EBUSY"||i.code==="ENOTEMPTY"||i.code==="EPERM")&&r<t.maxBusyTries){r++;const n=r*100;return setTimeout(()=>rimraf_(e,t,CB),n)}if(i.code==="ENOENT")i=null}n(i)})}function rimraf_(e,t,n){o(e);o(t);o(typeof n==="function");t.lstat(e,(r,i)=>{if(r&&r.code==="ENOENT"){return n(null)}if(r&&r.code==="EPERM"&&a){return fixWinEPERM(e,t,r,n)}if(i&&i.isDirectory()){return rmdir(e,t,r,n)}t.unlink(e,r=>{if(r){if(r.code==="ENOENT"){return n(null)}if(r.code==="EPERM"){return a?fixWinEPERM(e,t,r,n):rmdir(e,t,r,n)}if(r.code==="EISDIR"){return rmdir(e,t,r,n)}}return n(r)})})}function fixWinEPERM(e,t,n,r){o(e);o(t);o(typeof r==="function");if(n){o(n instanceof Error)}t.chmod(e,438,i=>{if(i){r(i.code==="ENOENT"?null:n)}else{t.stat(e,(i,o)=>{if(i){r(i.code==="ENOENT"?null:n)}else if(o.isDirectory()){rmdir(e,t,n,r)}else{t.unlink(e,r)}})}})}function fixWinEPERMSync(e,t,n){let r;o(e);o(t);if(n){o(n instanceof Error)}try{t.chmodSync(e,438)}catch(e){if(e.code==="ENOENT"){return}else{throw n}}try{r=t.statSync(e)}catch(e){if(e.code==="ENOENT"){return}else{throw n}}if(r.isDirectory()){rmdirSync(e,t,n)}else{t.unlinkSync(e)}}function rmdir(e,t,n,r){o(e);o(t);if(n){o(n instanceof Error)}o(typeof r==="function");t.rmdir(e,i=>{if(i&&(i.code==="ENOTEMPTY"||i.code==="EEXIST"||i.code==="EPERM")){rmkids(e,t,r)}else if(i&&i.code==="ENOTDIR"){r(n)}else{r(i)}})}function rmkids(e,t,n){o(e);o(t);o(typeof n==="function");t.readdir(e,(r,o)=>{if(r)return n(r);let a=o.length;let s;if(a===0)return t.rmdir(e,n);o.forEach(r=>{rimraf(i.join(e,r),t,r=>{if(s){return}if(r)return n(s=r);if(--a===0){t.rmdir(e,n)}})})})}function rimrafSync(e,t){let n;t=t||{};defaults(t);o(e,"rimraf: missing path");o.strictEqual(typeof e,"string","rimraf: path should be a string");o(t,"rimraf: missing options");o.strictEqual(typeof t,"object","rimraf: options should be object");try{n=t.lstatSync(e)}catch(n){if(n.code==="ENOENT"){return}if(n.code==="EPERM"&&a){fixWinEPERMSync(e,t,n)}}try{if(n&&n.isDirectory()){rmdirSync(e,t,null)}else{t.unlinkSync(e)}}catch(n){if(n.code==="ENOENT"){return}else if(n.code==="EPERM"){return a?fixWinEPERMSync(e,t,n):rmdirSync(e,t,n)}else if(n.code!=="EISDIR"){throw n}rmdirSync(e,t,n)}}function rmdirSync(e,t,n){o(e);o(t);if(n){o(n instanceof Error)}try{t.rmdirSync(e)}catch(r){if(r.code==="ENOTDIR"){throw n}else if(r.code==="ENOTEMPTY"||r.code==="EEXIST"||r.code==="EPERM"){rmkidsSync(e,t)}else if(r.code!=="ENOENT"){throw r}}}function rmkidsSync(e,t){o(e);o(t);t.readdirSync(e).forEach(n=>rimrafSync(i.join(e,n),t));if(a){const n=Date.now();do{try{const n=t.rmdirSync(e,t);return n}catch(e){}}while(Date.now()-n<500)}else{const n=t.rmdirSync(e,t);return n}}e.exports=rimraf;rimraf.sync=rimrafSync},8288:function(e,t,n){"use strict";const r=n(662);const i=n(5897);const o=n(5461);const a={mode:511&~process.umask(),fs:r};const s=e=>{if(process.platform==="win32"){const t=/[<>:"|?*]/.test(e.replace(i.parse(e).root,""));if(t){const t=new Error(`Path contains invalid characters: ${e}`);t.code="EINVAL";throw t}}};e.exports=((e,t)=>Promise.resolve().then(()=>{s(e);t=Object.assign({},a,t);const n=o(t.fs.mkdir);const r=o(t.fs.stat);const c=e=>{return n(e,t.mode).then(()=>e).catch(t=>{if(t.code==="ENOENT"){if(t.message.includes("null bytes")||i.dirname(e)===e){throw t}return c(i.dirname(e)).then(()=>c(e))}return r(e).then(t=>t.isDirectory()?e:Promise.reject()).catch(()=>{throw t})})};return c(i.resolve(e))}));e.exports.sync=((e,t)=>{s(e);t=Object.assign({},a,t);const n=e=>{try{t.fs.mkdirSync(e,t.mode)}catch(r){if(r.code==="ENOENT"){if(r.message.includes("null bytes")||i.dirname(e)===e){throw r}n(i.dirname(e));return n(e)}try{if(!t.fs.statSync(e).isDirectory()){throw new Error("The path is not a directory")}}catch(e){throw r}}return e};return n(i.resolve(e))})},8297:function(e,t,n){var r=n(2041);var i=n(662);var o=n(5897);e.exports=function arch(){if(process.arch==="x64"){return"x64"}if(process.platform==="darwin"){return"x64"}if(process.platform==="win32"){var e=false;try{e=!!(process.env.SYSTEMROOT&&i.statSync(process.env.SYSTEMROOT))}catch(e){}var t=e?process.env.SYSTEMROOT:"C:\\Windows";var n=false;try{n=!!i.statSync(o.join(t,"sysnative"))}catch(e){}return n?"x64":"x86"}if(process.platform==="linux"){var a=r.execSync("getconf LONG_BIT",{encoding:"utf8"});return a==="64\n"?"x64":"x86"}return"x86"}},8303:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(6102));const a=i(n(5586));const s=n(8715);function getScope(e){return r(this,void 0,void 0,function*(){const t=yield o.default(e);if(e.currentTeam){const n=yield a.default(e,e.currentTeam);if(!n){throw new s.TeamDeleted}return{contextName:n.slug,platformVersion:n.platformVersion,team:n,user:t}}return{contextName:t.username||t.email,platformVersion:t.platformVersion,team:null,user:t}})}t.default=getScope},8314:function(e){(function(t,n){true?e.exports=n():undefined})(this,function(){"use strict";function objectOrFunction(e){var t=typeof e;return e!==null&&(t==="object"||t==="function")}function isFunction(e){return typeof e==="function"}var e=void 0;if(Array.isArray){e=Array.isArray}else{e=function(e){return Object.prototype.toString.call(e)==="[object Array]"}}var t=e;var n=0;var r=void 0;var i=void 0;var o=function asap(e,t){f[n]=e;f[n+1]=t;n+=2;if(n===2){if(i){i(flush)}else{p()}}};function setScheduler(e){i=e}function setAsap(e){o=e}var a=typeof window!=="undefined"?window:undefined;var s=a||{};var c=s.MutationObserver||s.WebKitMutationObserver;var u=typeof self==="undefined"&&typeof process!=="undefined"&&{}.toString.call(process)==="[object process]";var l=typeof Uint8ClampedArray!=="undefined"&&typeof importScripts!=="undefined"&&typeof MessageChannel!=="undefined";function useNextTick(){return function(){return process.nextTick(flush)}}function useVertxTimer(){if(typeof r!=="undefined"){return function(){r(flush)}}return useSetTimeout()}function useMutationObserver(){var e=0;var t=new c(flush);var n=document.createTextNode("");t.observe(n,{characterData:true});return function(){n.data=e=++e%2}}function useMessageChannel(){var e=new MessageChannel;e.port1.onmessage=flush;return function(){return e.port2.postMessage(0)}}function useSetTimeout(){var e=setTimeout;return function(){return e(flush,1)}}var f=new Array(1e3);function flush(){for(var e=0;e<n;e+=2){var t=f[e];var r=f[e+1];t(r);f[e]=undefined;f[e+1]=undefined}n=0}function attemptVertx(){try{var e=Function("return this")().require("vertx");r=e.runOnLoop||e.runOnContext;return useVertxTimer()}catch(e){return useSetTimeout()}}var p=void 0;if(u){p=useNextTick()}else if(c){p=useMutationObserver()}else if(l){p=useMessageChannel()}else if(a===undefined&&"function"==="function"){p=attemptVertx()}else{p=useSetTimeout()}function then(e,t){var n=this;var r=new this.constructor(noop);if(r[d]===undefined){makePromise(r)}var i=n._state;if(i){var a=arguments[i-1];o(function(){return invokeCallback(i,r,a,n._result)})}else{subscribe(n,r,e,t)}return r}function resolve$1(e){var t=this;if(e&&typeof e==="object"&&e.constructor===t){return e}var n=new t(noop);resolve(n,e);return n}var d=Math.random().toString(36).substring(2);function noop(){}var h=void 0;var m=1;var v=2;function selfFulfillment(){return new TypeError("You cannot resolve a promise with itself")}function cannotReturnOwn(){return new TypeError("A promises callback cannot return that same promise.")}function tryThen(e,t,n,r){try{e.call(t,n,r)}catch(e){return e}}function handleForeignThenable(e,t,n){o(function(e){var r=false;var i=tryThen(n,t,function(n){if(r){return}r=true;if(t!==n){resolve(e,n)}else{fulfill(e,n)}},function(t){if(r){return}r=true;reject(e,t)},"Settle: "+(e._label||" unknown promise"));if(!r&&i){r=true;reject(e,i)}},e)}function handleOwnThenable(e,t){if(t._state===m){fulfill(e,t._result)}else if(t._state===v){reject(e,t._result)}else{subscribe(t,undefined,function(t){return resolve(e,t)},function(t){return reject(e,t)})}}function handleMaybeThenable(e,t,n){if(t.constructor===e.constructor&&n===then&&t.constructor.resolve===resolve$1){handleOwnThenable(e,t)}else{if(n===undefined){fulfill(e,t)}else if(isFunction(n)){handleForeignThenable(e,t,n)}else{fulfill(e,t)}}}function resolve(e,t){if(e===t){reject(e,selfFulfillment())}else if(objectOrFunction(t)){var n=void 0;try{n=t.then}catch(t){reject(e,t);return}handleMaybeThenable(e,t,n)}else{fulfill(e,t)}}function publishRejection(e){if(e._onerror){e._onerror(e._result)}publish(e)}function fulfill(e,t){if(e._state!==h){return}e._result=t;e._state=m;if(e._subscribers.length!==0){o(publish,e)}}function reject(e,t){if(e._state!==h){return}e._state=v;e._result=t;o(publishRejection,e)}function subscribe(e,t,n,r){var i=e._subscribers;var a=i.length;e._onerror=null;i[a]=t;i[a+m]=n;i[a+v]=r;if(a===0&&e._state){o(publish,e)}}function publish(e){var t=e._subscribers;var n=e._state;if(t.length===0){return}var r=void 0,i=void 0,o=e._result;for(var a=0;a<t.length;a+=3){r=t[a];i=t[a+n];if(r){invokeCallback(n,r,i,o)}else{i(o)}}e._subscribers.length=0}function invokeCallback(e,t,n,r){var i=isFunction(n),o=void 0,a=void 0,s=true;if(i){try{o=n(r)}catch(e){s=false;a=e}if(t===o){reject(t,cannotReturnOwn());return}}else{o=r}if(t._state!==h){}else if(i&&s){resolve(t,o)}else if(s===false){reject(t,a)}else if(e===m){fulfill(t,o)}else if(e===v){reject(t,o)}}function initializePromise(e,t){try{t(function resolvePromise(t){resolve(e,t)},function rejectPromise(t){reject(e,t)})}catch(t){reject(e,t)}}var g=0;function nextId(){return g++}function makePromise(e){e[d]=g++;e._state=undefined;e._result=undefined;e._subscribers=[]}function validationError(){return new Error("Array Methods must be provided an Array")}var y=function(){function Enumerator(e,n){this._instanceConstructor=e;this.promise=new e(noop);if(!this.promise[d]){makePromise(this.promise)}if(t(n)){this.length=n.length;this._remaining=n.length;this._result=new Array(this.length);if(this.length===0){fulfill(this.promise,this._result)}else{this.length=this.length||0;this._enumerate(n);if(this._remaining===0){fulfill(this.promise,this._result)}}}else{reject(this.promise,validationError())}}Enumerator.prototype._enumerate=function _enumerate(e){for(var t=0;this._state===h&&t<e.length;t++){this._eachEntry(e[t],t)}};Enumerator.prototype._eachEntry=function _eachEntry(e,t){var n=this._instanceConstructor;var r=n.resolve;if(r===resolve$1){var i=void 0;var o=void 0;var a=false;try{i=e.then}catch(e){a=true;o=e}if(i===then&&e._state!==h){this._settledAt(e._state,t,e._result)}else if(typeof i!=="function"){this._remaining--;this._result[t]=e}else if(n===b){var s=new n(noop);if(a){reject(s,o)}else{handleMaybeThenable(s,e,i)}this._willSettleAt(s,t)}else{this._willSettleAt(new n(function(t){return t(e)}),t)}}else{this._willSettleAt(r(e),t)}};Enumerator.prototype._settledAt=function _settledAt(e,t,n){var r=this.promise;if(r._state===h){this._remaining--;if(e===v){reject(r,n)}else{this._result[t]=n}}if(this._remaining===0){fulfill(r,this._result)}};Enumerator.prototype._willSettleAt=function _willSettleAt(e,t){var n=this;subscribe(e,undefined,function(e){return n._settledAt(m,t,e)},function(e){return n._settledAt(v,t,e)})};return Enumerator}();function all(e){return new y(this,e).promise}function race(e){var n=this;if(!t(e)){return new n(function(e,t){return t(new TypeError("You must pass an array to race."))})}else{return new n(function(t,r){var i=e.length;for(var o=0;o<i;o++){n.resolve(e[o]).then(t,r)}})}}function reject$1(e){var t=this;var n=new t(noop);reject(n,e);return n}function needsResolver(){throw new TypeError("You must pass a resolver function as the first argument to the promise constructor")}function needsNew(){throw new TypeError("Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.")}var b=function(){function Promise(e){this[d]=nextId();this._result=this._state=undefined;this._subscribers=[];if(noop!==e){typeof e!=="function"&&needsResolver();this instanceof Promise?initializePromise(this,e):needsNew()}}Promise.prototype.catch=function _catch(e){return this.then(null,e)};Promise.prototype.finally=function _finally(e){var t=this;var n=t.constructor;if(isFunction(e)){return t.then(function(t){return n.resolve(e()).then(function(){return t})},function(t){return n.resolve(e()).then(function(){throw t})})}return t.then(e,e)};return Promise}();b.prototype.then=then;b.all=all;b.race=race;b.resolve=resolve$1;b.reject=reject$1;b._setScheduler=setScheduler;b._setAsap=setAsap;b._asap=o;function polyfill(){var e=void 0;if(typeof global!=="undefined"){e=global}else if(typeof self!=="undefined"){e=self}else{try{e=Function("return this")()}catch(e){throw new Error("polyfill failed because global object is unavailable in this environment")}}var t=e.Promise;if(t){var n=null;try{n=Object.prototype.toString.call(t.resolve())}catch(e){}if(n==="[object Promise]"&&!t.cast){return}}e.Promise=b}b.polyfill=polyfill;b.Promise=b;return b})},8315:function(e,t,n){"use strict";var r=n(8901);var i=n(284);var o=n(2488);var a=e.exports=function(e){if(!this.rl){this.rl=o.createInterface(setupReadlineOptions(e))}this.rl.resume();this.onForceClose=this.onForceClose.bind(this);process.on("exit",this.onForceClose);this.rl.on("SIGINT",this.onForceClose)};a.prototype.onForceClose=function(){this.close();process.kill(process.pid,"SIGINT");console.log("")};a.prototype.close=function(){this.rl.removeListener("SIGINT",this.onForceClose);process.removeListener("exit",this.onForceClose);this.rl.output.unmute();if(this.activePrompt&&typeof this.activePrompt.close==="function"){this.activePrompt.close()}this.rl.output.end();this.rl.pause();this.rl.close()};function setupReadlineOptions(e){e=e||{};var t=e.input||process.stdin;var n=new i;n.pipe(e.output||process.stdout);var o=n;return r.extend({terminal:true,input:t,output:o},r.omit(e,["input","output"]))}},8323:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return formatLogText});function formatLogText(e){return e.replace(/\n$/,"").replace(/^\n/,"")}},8330:function(e,t,n){"use strict";var r=n(3062).Buffer;e.exports={utf8:{type:"_internal",bomAware:true},cesu8:{type:"_internal",bomAware:true},unicode11utf8:"utf8",ucs2:{type:"_internal",bomAware:true},utf16le:"ucs2",binary:{type:"_internal"},base64:{type:"_internal"},hex:{type:"_internal"},_internal:InternalCodec};function InternalCodec(e,t){this.enc=e.encodingName;this.bomAware=e.bomAware;if(this.enc==="base64")this.encoder=InternalEncoderBase64;else if(this.enc==="cesu8"){this.enc="utf8";this.encoder=InternalEncoderCesu8;if(r.from("eda0bdedb2a9","hex").toString()!=="💩"){this.decoder=InternalDecoderCesu8;this.defaultCharUnicode=t.defaultCharUnicode}}}InternalCodec.prototype.encoder=InternalEncoder;InternalCodec.prototype.decoder=InternalDecoder;var i=n(552).StringDecoder;if(!i.prototype.end)i.prototype.end=function(){};function InternalDecoder(e,t){i.call(this,t.enc)}InternalDecoder.prototype=i.prototype;function InternalEncoder(e,t){this.enc=t.enc}InternalEncoder.prototype.write=function(e){return r.from(e,this.enc)};InternalEncoder.prototype.end=function(){};function InternalEncoderBase64(e,t){this.prevStr=""}InternalEncoderBase64.prototype.write=function(e){e=this.prevStr+e;var t=e.length-e.length%4;this.prevStr=e.slice(t);e=e.slice(0,t);return r.from(e,"base64")};InternalEncoderBase64.prototype.end=function(){return r.from(this.prevStr,"base64")};function InternalEncoderCesu8(e,t){}InternalEncoderCesu8.prototype.write=function(e){var t=r.alloc(e.length*3),n=0;for(var i=0;i<e.length;i++){var o=e.charCodeAt(i);if(o<128)t[n++]=o;else if(o<2048){t[n++]=192+(o>>>6);t[n++]=128+(o&63)}else{t[n++]=224+(o>>>12);t[n++]=128+(o>>>6&63);t[n++]=128+(o&63)}}return t.slice(0,n)};InternalEncoderCesu8.prototype.end=function(){};function InternalDecoderCesu8(e,t){this.acc=0;this.contBytes=0;this.accBytes=0;this.defaultCharUnicode=t.defaultCharUnicode}InternalDecoderCesu8.prototype.write=function(e){var t=this.acc,n=this.contBytes,r=this.accBytes,i="";for(var o=0;o<e.length;o++){var a=e[o];if((a&192)!==128){if(n>0){i+=this.defaultCharUnicode;n=0}if(a<128){i+=String.fromCharCode(a)}else if(a<224){t=a&31;n=1;r=1}else if(a<240){t=a&15;n=2;r=1}else{i+=this.defaultCharUnicode}}else{if(n>0){t=t<<6|a&63;n--;r++;if(n===0){if(r===2&&t<128&&t>0)i+=this.defaultCharUnicode;else if(r===3&&t<2048)i+=this.defaultCharUnicode;else i+=String.fromCharCode(t)}}else{i+=this.defaultCharUnicode}}}this.acc=t;this.contBytes=n;this.accBytes=r;return i};InternalDecoderCesu8.prototype.end=function(){var e=0;if(this.contBytes>0)e+=this.defaultCharUnicode;return e}},8339:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(6127));const s=n(4362);const c=n(8031);const u=n(3823);const l=o(n(3294));t.providers=l;const f=n(5869);t.funCacheDir=f.funCacheDir;t.runtimes=f.runtimes;t.initializeRuntime=f.initializeRuntime;const p=a.default("@zeit/fun:index");const d=new Set(["_HANDLER","LAMBDA_TASK_ROOT","LAMBDA_RUNTIME_DIR","AWS_EXECUTION_ENV","AWS_DEFAULT_REGION","AWS_REGION","AWS_LAMBDA_LOG_GROUP_NAME","AWS_LAMBDA_LOG_STREAM_NAME","AWS_LAMBDA_FUNCTION_NAME","AWS_LAMBDA_FUNCTION_MEMORY_SIZE","AWS_LAMBDA_FUNCTION_VERSION","AWS_ACCESS_KEY","AWS_ACCESS_KEY_ID","AWS_SECRET_KEY","AWS_SECRET_ACCESS_KEY","AWS_SESSION_TOKEN","TZ"]);class ValidationError extends Error{constructor(e){super(e);this.name=new.target.name;const t=new.target.prototype;Object.setPrototypeOf(this,t)}}t.ValidationError=ValidationError;function createFunction(e){return r(this,void 0,void 0,function*(){const t=l[e.Provider||"native"];if(!t){throw new TypeError(`Provider "${e.Provider}" is not implemented`)}const n=f.runtimes[e.Runtime];if(!n){throw new TypeError(`Runtime "${e.Runtime}" is not implemented`)}yield f.initializeRuntime(n);const i=e.Environment&&e.Environment.Variables||{};const o=Object.keys(i).filter(e=>{return d.has(e.toUpperCase())});if(o.length>0){const e=new ValidationError(`The following environment variables can not be configured: ${o.join(", ")}`);e.reserved=o;throw e}const a=function(e){return r(this,void 0,void 0,function*(){const t=yield a.invoke({InvocationType:"RequestResponse",Payload:JSON.stringify(e)});let n=t.Payload;if(typeof n!=="string"){n=String(n)}const r=JSON.parse(n);if(t.FunctionError){throw new u.LambdaError(r)}else{return r}})};a.params=e;a.runtime=n;a.destroy=destroy.bind(null,a);a.invoke=invoke.bind(null,a);a.functionName=e.FunctionName;a.region=e.Region||"us-west-1";a.version="$LATEST";a.arn="";a.timeout=typeof e.Timeout==="number"?e.Timeout:3;a.memorySize=typeof e.MemorySize==="number"?e.MemorySize:128;p("Creating provider %o",t.name);a.provider=new t(a);if(e.Code.ZipFile){a.extractedDir=yield c.unzipToTemp(e.Code.ZipFile)}return a})}t.createFunction=createFunction;function invoke(e,t){return r(this,void 0,void 0,function*(){p("Invoking function %o",e.functionName);const n=yield e.provider.invoke(t);return n})}t.invoke=invoke;function destroy(e){return r(this,void 0,void 0,function*(){const t=[e.provider.destroy()];if(e.extractedDir){p("Deleting directory %o for function %o",e.extractedDir,e.functionName);t.push(s.remove(e.extractedDir))}yield Promise.all(t)})}t.destroy=destroy;function cleanCacheDir(){return r(this,void 0,void 0,function*(){p("Deleting fun cache directory %o",f.funCacheDir);yield s.remove(f.funCacheDir)})}t.cleanCacheDir=cleanCacheDir},8342:function(e,t,n){"use strict";const r=n(9544);const i=process.platform!=="win32"||process.env.CI||process.env.TERM==="xterm-256color";const o={info:r.blue(""),success:r.green("✔"),warning:r.yellow("⚠"),error:r.red("✖")};const a={info:r.blue("i"),success:r.green("√"),warning:r.yellow("‼"),error:r.red("×")};e.exports=i?o:a},8358:function(e,t,n){var r=n(1852);var i=n(6766);var o=n(214);var a=n(5598);var s=n(8096).f;e.exports=function(e){var t=i.Symbol||(i.Symbol=o?{}:r.Symbol||{});if(e.charAt(0)!="_"&&!(e in t))s(t,e,{value:a.f(e)})}},8368:function(e,t,n){try{var r=n(649);if(typeof r.inherits!=="function")throw"";e.exports=r.inherits}catch(t){e.exports=n(5038)}},8378:function(e){(function(t){"use strict";function extend(e,t){for(var n in t){if(t.hasOwnProperty(n)){e[n]=t[n]}}return e}function distance(e,t,n){var r=0;var i={caseSensitive:true};var o=extend(i,n);var a;var s;if(e.length===0||t.length===0){return 0}if(!o.caseSensitive){e=e.toUpperCase();t=t.toUpperCase()}if(e===t){return 1}var c=Math.floor(Math.max(e.length,t.length)/2)-1;var u=new Array(e.length);var l=new Array(t.length);for(a=0;a<e.length;a++){var f=a>=c?a-c:0;var p=a+c<=t.length-1?a+c:t.length-1;for(s=f;s<=p;s++){if(u[a]!==true&&l[s]!==true&&e[a]===t[s]){++r;u[a]=l[s]=true;break}}}if(r===0){return 0}var d=0;var h=0;for(a=0;a<e.length;a++){if(u[a]===true){for(s=d;s<t.length;s++){if(l[s]===true){d=s+1;break}}if(e[a]!==t[s]){++h}}}var m=(r/e.length+r/t.length+(r-h/2)/r)/3;var v=0;var g=.1;if(m>.7){while(e[v]===t[v]&&v<4){++v}m=m+v*g*(1-m)}return m}if(typeof define==="function"&&define.amd){define([],function(){return distance})}else if(true){e.exports=distance}else{}})(this)},8379:function(e,t,n){"use strict";n.r(t);var r=n(4874);var i=n.n(r);var o=n(9544);var a=n.n(o);var s=n(6336);var c=n.n(s);var u=n(5032);var l=n.n(u);var f=n(9918);var p=n.t(9918,1);var d=n(5359);var h=n.n(d);var m=n(8950);var v=n.n(m);var g=n(6904);var y=n.n(g);var b=n(7282);var w=n(541);var x=n.n(w);const k=e=>e;t["default"]=async function({creditCards:e,clear:t=false,contextName:n}){const r={error:undefined,cardGroupLabel:`> ${a.a.bold(`Enter your card details for ${a.a.bold(n)}`)}`,name:{label:Object(b["default"])("Full Name",12),placeholder:"John Appleseed",validateValue:e=>e.trim().length>0},cardNumber:{label:Object(b["default"])("Number",12),mask:"cc",placeholder:"#### #### #### ####",validateKeypress:(e,t)=>/\d/.test(e)&&t.length<19,validateValue:e=>{e=e.replace(/ /g,"");const t=c.a.determineCardType(e);if(!t){return false}return c.a.isValidCardNumber(e,t)}},ccv:{label:Object(b["default"])("CCV",12),mask:"ccv",placeholder:"###",validateValue:e=>{const t=r.cardNumber.brand.toLowerCase();return c.a.doesCvvMatchType(e,t)}},expDate:{label:Object(b["default"])("Exp. Date",12),mask:"expDate",placeholder:"mm / yyyy",middleware:k,validateValue:e=>!c.a.isExpired(...e.split(" / "))}};async function render(){for(const e in r){if(!Object.hasOwnProperty.call(r,e)){continue}const t=r[e];if(typeof t==="string"){console.log(t)}else if(typeof t==="object"){let n;try{n=await l()({label:`- ${t.label}`,initialValue:t.initialValue||t.value,placeholder:t.placeholder,mask:t.mask,validateKeypress:t.validateKeypress,validateValue:t.validateValue,autoComplete:t.autoComplete});t.value=n;if(e==="cardNumber"){let e=f[c.a.determineCardType(n)];t.brand=e;if(e==="American Express"){r.ccv.placeholder="#".repeat(4)}else{r.ccv.placeholder="#".repeat(3)}e=a.a.cyan(`[${e}]`);const i=a.a.gray("#### ".repeat(3))+n.split(" ")[3];process.stdout.write(`${a.a.cyan(y.a.tick)} ${t.label}${i} ${e}\n`)}else if(e==="ccv"){process.stdout.write(`${a.a.cyan(y.a.tick)} ${t.label}${"*".repeat(n.length)}\n`)}else if(e==="expDate"){let e=n.split(" / ");e=e[0]+a.a.gray(" / ")+e[1];process.stdout.write(`${a.a.cyan(y.a.tick)} ${t.label}${e}\n`)}else{process.stdout.write(`${a.a.cyan(y.a.tick)} ${t.label}${n}\n`)}}catch(e){if(e.message==="USER_ABORT"){process.exit(1)}else{console.error(x()(e))}}}}console.log("");const o=v()("Saving card");try{const s=await e.add({name:r.name.value,cardNumber:r.cardNumber.value,ccv:r.ccv.value,expDate:r.expDate.value});o();if(t){const e=r.error?15:14;process.stdout.write(i.a.eraseLines(e))}console.log(h()(`${r.cardNumber.brand||r.cardNumber.card.brand} ending in ${s.last4||s.card.last4} was added to ${a.a.bold(n)}`))}catch(e){o();const t=r.error?15:14;process.stdout.write(i.a.eraseLines(t));r.error=`${a.a.red("> Error!")} ${e.message} Please make sure the info is correct`;await render()}}try{await render()}catch(e){console.erorr(e)}}},8381:function(e){"use strict";e.exports=bytes;e.exports.format=format;e.exports.parse=parse;var t=/\B(?=(\d{3})+(?!\d))/g;var n=/(?:\.0*|(\.[^0]+)0+)$/;var r={b:1,kb:1<<10,mb:1<<20,gb:1<<30,tb:Math.pow(1024,4),pb:Math.pow(1024,5)};var i=/^((-|\+)?(\d+(?:\.\d+)?)) *(kb|mb|gb|tb|pb)$/i;function bytes(e,t){if(typeof e==="string"){return parse(e)}if(typeof e==="number"){return format(e,t)}return null}function format(e,i){if(!Number.isFinite(e)){return null}var o=Math.abs(e);var a=i&&i.thousandsSeparator||"";var s=i&&i.unitSeparator||"";var c=i&&i.decimalPlaces!==undefined?i.decimalPlaces:2;var u=Boolean(i&&i.fixedDecimals);var l=i&&i.unit||"";if(!l||!r[l.toLowerCase()]){if(o>=r.pb){l="PB"}else if(o>=r.tb){l="TB"}else if(o>=r.gb){l="GB"}else if(o>=r.mb){l="MB"}else if(o>=r.kb){l="KB"}else{l="B"}}var f=e/r[l.toLowerCase()];var p=f.toFixed(c);if(!u){p=p.replace(n,"$1")}if(a){p=p.replace(t,a)}return p+s+l}function parse(e){if(typeof e==="number"&&!isNaN(e)){return e}if(typeof e!=="string"){return null}var t=i.exec(e);var n;var o="b";if(!t){n=parseInt(e,10);o="b"}else{n=parseFloat(t[1]);o=t[4].toLowerCase()}return Math.floor(r[o]*n)}},8382:function(e){"use strict";class CancelError extends Error{constructor(){super("Promise was canceled");this.name="CancelError"}}class PCancelable{static fn(e){return function(){const t=[].slice.apply(arguments);return new PCancelable((n,r,i)=>{t.unshift(n);e.apply(null,t).then(r,i)})}}constructor(e){this._pending=true;this._canceled=false;this._promise=new Promise((t,n)=>{this._reject=n;return e(e=>{this._cancel=e},e=>{this._pending=false;t(e)},e=>{this._pending=false;n(e)})})}then(){return this._promise.then.apply(this._promise,arguments)}catch(){return this._promise.catch.apply(this._promise,arguments)}cancel(){if(!this._pending||this._canceled){return}if(typeof this._cancel==="function"){try{this._cancel()}catch(e){this._reject(e)}}this._canceled=true;this._reject(new CancelError)}get canceled(){return this._canceled}}Object.setPrototypeOf(PCancelable.prototype,Promise.prototype);e.exports=PCancelable;e.exports.CancelError=CancelError},8386:function(e,t,n){"use strict";const r=n(3288);e.exports=((e,t)=>{if(t===true){throw new TypeError("The second argument is now an options object")}if(typeof e!=="function"){throw new TypeError("Expected a function")}t=t||{};let n;let i=false;const o=e.displayName||e.name||"<anonymous>";const a=function(){if(i){if(t.throw===true){throw new Error(`Function \`${o}\` can only be called once`)}return n}i=true;n=e.apply(this,arguments);e=null;return n};r(a,e);return a})},8391:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=o(n(8715));const c=i(n(4573));const u=i(n(8685));const l=i(n(8303));const f=i(n(2788));const p=i(n(3984));const d=i(n(586));const h=i(n(6811));const m=i(n(2105));const v=i(n(3623));const g=i(n(4363));const y=i(n(3266));const b=i(n(2826));function transferIn(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:o}=e;const{currentTeam:w}=o;const{apiUrl:x}=e;const k=t["--debug"];const j=new c.default({apiUrl:x,token:r,currentTeam:w,debug:k});let S=null;try{({contextName:S}=yield l.default(j))}catch(e){if(e.code==="NOT_AUTHORIZED"){i.error(e.message);return 1}throw e}const[E]=n;if(!E){i.error(`Missing domain name. Run ${u.default("now domains --help")}`);return 1}if(!b.default(E)){i.error(`Invalid domain name ${f.default(E)}. Run ${u.default("now domains --help")}`);return 1}const _=d.default();const[C,{transferable:A,transferPolicy:O}]=yield Promise.all([v.default(j,E,"renewal"),g.default(j,E)]);if(C instanceof s.UnsupportedTLD){i.error(`The TLD for ${f.default(E)} is not supported.`);return 1}if(!A){i.error(`The domain ${f.default(E)} is not transferable.`);return 1}const{price:F}=C;i.log(`The domain ${f.default(E)} is ${a.default.underline("available")} to transfer under ${a.default.bold(S)}! ${_()}`);const D=yield h.default(t["--code"]);const T=yield y.default(O==="no-change"?`Transfer now for ${a.default.bold(`$${F}`)}?`:`Transfer now with 1yr renewal for ${a.default.bold(`$${F}`)}?`);if(!T){return 0}const I=d.default();const R=yield m.default(`Initiating transfer for domain ${E}`,()=>p.default(j,E,D,F));if(R instanceof s.InvalidDomain){i.error(`The domain ${R.meta.domain} is not valid.`);return 1}if(R instanceof s.DomainNotAvailable||R instanceof s.DomainNotTransferable){i.error(`The domain "${R.meta.domain}" is not transferable.`);return 1}if(R instanceof s.InvalidTransferAuthCode){i.error(`The provided auth code does not match with the one expected by the current registar`);return 1}if(R instanceof s.SourceNotFound){i.error(`Could not purchase domain. Please add a payment method using ${u.default("now billing add")}.`);return 1}if(R instanceof s.DomainRegistrationFailed){i.error(`Could not transfer domain. ${R.message}`);return 1}console.log(`${a.default.cyan("> Success!")} Domain ${f.default(E)} transfer started ${I()}`);i.print(` To finalize the transfer, we are waiting for approval from your current registrar.\n`);i.print(` You will receive an email upon completion.\n`);i.warn(`Once transferred, your domain ${f.default(E)} will be using ZEIT DNS.\n`);i.print(` To transfer with previous DNS records, export the zone file from your previous registrar.\n`);i.print(` Then import it to ZEIT DNS by using:\n`);i.print(` ${u.default(`now dns import ${E} <zonefile>`)}\n\n`);return 0})}t.default=transferIn},8394:function(e){e.exports=toBuffer;var t=Buffer.from&&Buffer.from!==Uint8Array.from?Buffer.from:bufferFrom;function bufferFrom(e,t){return new Buffer(e,t)}function toBuffer(e,n){if(Buffer.isBuffer(e))return e;if(typeof e==="string")return t(e,n);if(Array.isArray(e))return t(e);throw new Error("Input should be a buffer or a string")}},8413:function(e,t,n){"use strict";const r=n(9214);class DequeIterator extends r{next(){const e=super.next();if(e.value){e.value=e.value.data}return e}}e.exports=DequeIterator},8417:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return CreditCards});var r=n(76);var i=n.n(r);var o=n(4495);const a=i()("pk_live_alyEi3lN0kSwbdevK0nrGwTw");class CreditCards extends o["default"]{async ls(){const e=await this._fetch("/stripe/sources/");const t=await e.json();if(e.status!==200){const e=new Error(t.error.message);e.code=t.error.code;throw e}return t}async setDefault(e){await this._fetch("/stripe/sources/",{method:"POST",body:{source:e,makeDefault:true}});return true}async rm(e){await this._fetch(`/stripe/sources/`,{method:"DELETE",body:{source:e}});return true}add(e){return new Promise(async(t,n)=>{if(!e.expDate){n(new Error(`Please define a expiration date for your card`));return}const r=e.expDate.split(" / ");e={name:e.name,number:e.cardNumber,cvc:e.ccv};e.exp_month=r[0];e.exp_year=r[1];try{const r=(await a.tokens.create({card:e})).id;const i=await this._fetch("/stripe/sources/",{method:"POST",body:{source:r}});const{source:o,error:s}=await i.json();if(o&&o.id){t({last4:o.last4})}else if(s&&s.message){n(new Error(s.message))}else{n(new Error("Unknown error"))}}catch(e){n(new Error(e.message||"Unknown error"))}})}}},8430:function(e,t,n){var r=n(202);e.exports=function(e,t){if(!e){e=this}else if(typeof e==="function"){t=e;e=this}var n;if(!e.readable)n=r.resolve([]);else n=new r(function(t,n){if(!e.readable)return t([]);var r=[];e.on("data",onData);e.on("end",onEnd);e.on("error",onEnd);e.on("close",onClose);function onData(e){r.push(e)}function onEnd(e){if(e)n(e);else t(r);cleanup()}function onClose(){t(r);cleanup()}function cleanup(){r=null;e.removeListener("data",onData);e.removeListener("end",onEnd);e.removeListener("error",onEnd);e.removeListener("close",onClose)}});if(typeof t==="function"){n.then(function(e){process.nextTick(function(){t(null,e)})},t)}return n}},8434:function(e,t){function getArg(e,t,n){if(t in e){return e[t]}else if(arguments.length===3){return n}else{throw new Error('"'+t+'" is a required argument.')}}t.getArg=getArg;var n=/^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.-]*)(?::(\d+))?(.*)$/;var r=/^data:.+\,.+$/;function urlParse(e){var t=e.match(n);if(!t){return null}return{scheme:t[1],auth:t[2],host:t[3],port:t[4],path:t[5]}}t.urlParse=urlParse;function urlGenerate(e){var t="";if(e.scheme){t+=e.scheme+":"}t+="//";if(e.auth){t+=e.auth+"@"}if(e.host){t+=e.host}if(e.port){t+=":"+e.port}if(e.path){t+=e.path}return t}t.urlGenerate=urlGenerate;function normalize(e){var n=e;var r=urlParse(e);if(r){if(!r.path){return e}n=r.path}var i=t.isAbsolute(n);var o=n.split(/\/+/);for(var a,s=0,c=o.length-1;c>=0;c--){a=o[c];if(a==="."){o.splice(c,1)}else if(a===".."){s++}else if(s>0){if(a===""){o.splice(c+1,s);s=0}else{o.splice(c,2);s--}}}n=o.join("/");if(n===""){n=i?"/":"."}if(r){r.path=n;return urlGenerate(r)}return n}t.normalize=normalize;function join(e,t){if(e===""){e="."}if(t===""){t="."}var n=urlParse(t);var i=urlParse(e);if(i){e=i.path||"/"}if(n&&!n.scheme){if(i){n.scheme=i.scheme}return urlGenerate(n)}if(n||t.match(r)){return t}if(i&&!i.host&&!i.path){i.host=t;return urlGenerate(i)}var o=t.charAt(0)==="/"?t:normalize(e.replace(/\/+$/,"")+"/"+t);if(i){i.path=o;return urlGenerate(i)}return o}t.join=join;t.isAbsolute=function(e){return e.charAt(0)==="/"||n.test(e)};function relative(e,t){if(e===""){e="."}e=e.replace(/\/$/,"");var n=0;while(t.indexOf(e+"/")!==0){var r=e.lastIndexOf("/");if(r<0){return t}e=e.slice(0,r);if(e.match(/^([^\/]+:\/)?\/*$/)){return t}++n}return Array(n+1).join("../")+t.substr(e.length+1)}t.relative=relative;var i=function(){var e=Object.create(null);return!("__proto__"in e)}();function identity(e){return e}function toSetString(e){if(isProtoString(e)){return"$"+e}return e}t.toSetString=i?identity:toSetString;function fromSetString(e){if(isProtoString(e)){return e.slice(1)}return e}t.fromSetString=i?identity:fromSetString;function isProtoString(e){if(!e){return false}var t=e.length;if(t<9){return false}if(e.charCodeAt(t-1)!==95||e.charCodeAt(t-2)!==95||e.charCodeAt(t-3)!==111||e.charCodeAt(t-4)!==116||e.charCodeAt(t-5)!==111||e.charCodeAt(t-6)!==114||e.charCodeAt(t-7)!==112||e.charCodeAt(t-8)!==95||e.charCodeAt(t-9)!==95){return false}for(var n=t-10;n>=0;n--){if(e.charCodeAt(n)!==36){return false}}return true}function compareByOriginalPositions(e,t,n){var r=strcmp(e.source,t.source);if(r!==0){return r}r=e.originalLine-t.originalLine;if(r!==0){return r}r=e.originalColumn-t.originalColumn;if(r!==0||n){return r}r=e.generatedColumn-t.generatedColumn;if(r!==0){return r}r=e.generatedLine-t.generatedLine;if(r!==0){return r}return strcmp(e.name,t.name)}t.compareByOriginalPositions=compareByOriginalPositions;function compareByGeneratedPositionsDeflated(e,t,n){var r=e.generatedLine-t.generatedLine;if(r!==0){return r}r=e.generatedColumn-t.generatedColumn;if(r!==0||n){return r}r=strcmp(e.source,t.source);if(r!==0){return r}r=e.originalLine-t.originalLine;if(r!==0){return r}r=e.originalColumn-t.originalColumn;if(r!==0){return r}return strcmp(e.name,t.name)}t.compareByGeneratedPositionsDeflated=compareByGeneratedPositionsDeflated;function strcmp(e,t){if(e===t){return 0}if(e===null){return 1}if(t===null){return-1}if(e>t){return 1}return-1}function compareByGeneratedPositionsInflated(e,t){var n=e.generatedLine-t.generatedLine;if(n!==0){return n}n=e.generatedColumn-t.generatedColumn;if(n!==0){return n}n=strcmp(e.source,t.source);if(n!==0){return n}n=e.originalLine-t.originalLine;if(n!==0){return n}n=e.originalColumn-t.originalColumn;if(n!==0){return n}return strcmp(e.name,t.name)}t.compareByGeneratedPositionsInflated=compareByGeneratedPositionsInflated;function parseSourceMapInput(e){return JSON.parse(e.replace(/^\)]}'[^\n]*\n/,""))}t.parseSourceMapInput=parseSourceMapInput;function computeSourceURL(e,t,n){t=t||"";if(e){if(e[e.length-1]!=="/"&&t[0]!=="/"){e+="/"}t=e+t}if(n){var r=urlParse(n);if(!r){throw new Error("sourceMapURL could not be parsed")}if(r.path){var i=r.path.lastIndexOf("/");if(i>=0){r.path=r.path.substring(0,i+1)}}t=join(urlGenerate(r),t)}return normalize(t)}t.computeSourceURL=computeSourceURL},8442:function(e){"use strict";var t=e.exports=function(e,t,n){if(typeof t=="function"){n=t;t={}}n=t.cb||n;var r=typeof n=="function"?n:n.pre||function(){};var i=n.post||function(){};_traverse(t,r,i,e,"",e)};t.keywords={additionalItems:true,items:true,contains:true,additionalProperties:true,propertyNames:true,not:true};t.arrayKeywords={items:true,allOf:true,anyOf:true,oneOf:true};t.propsKeywords={definitions:true,properties:true,patternProperties:true,dependencies:true};t.skipKeywords={default:true,enum:true,const:true,required:true,maximum:true,minimum:true,exclusiveMaximum:true,exclusiveMinimum:true,multipleOf:true,maxLength:true,minLength:true,pattern:true,format:true,maxItems:true,minItems:true,uniqueItems:true,maxProperties:true,minProperties:true};function _traverse(e,n,r,i,o,a,s,c,u,l){if(i&&typeof i=="object"&&!Array.isArray(i)){n(i,o,a,s,c,u,l);for(var f in i){var p=i[f];if(Array.isArray(p)){if(f in t.arrayKeywords){for(var d=0;d<p.length;d++)_traverse(e,n,r,p[d],o+"/"+f+"/"+d,a,o,f,i,d)}}else if(f in t.propsKeywords){if(p&&typeof p=="object"){for(var h in p)_traverse(e,n,r,p[h],o+"/"+f+"/"+escapeJsonPtr(h),a,o,f,i,h)}}else if(f in t.keywords||e.allKeys&&!(f in t.skipKeywords)){_traverse(e,n,r,p,o+"/"+f,a,o,f,i)}}r(i,o,a,s,c,u,l)}}function escapeJsonPtr(e){return e.replace(/~/g,"~0").replace(/\//g,"~1")}},8444:function(e,t,n){var r=n(1485);function startOfWeek(e,t){var n=t?Number(t.weekStartsOn)||0:0;var i=r(e);var o=i.getDay();var a=(o<n?7:0)+o-n;i.setDate(i.getDate()-a);i.setHours(0,0,0,0);return i}e.exports=startOfWeek},8446:function(e,t,n){var r=n(4810);var i=Object.prototype.toString;e.exports=function kindOf(e){if(typeof e==="undefined"){return"undefined"}if(e===null){return"null"}if(e===true||e===false||e instanceof Boolean){return"boolean"}if(typeof e==="string"||e instanceof String){return"string"}if(typeof e==="number"||e instanceof Number){return"number"}if(typeof e==="function"||e instanceof Function){return"function"}if(typeof Array.isArray!=="undefined"&&Array.isArray(e)){return"array"}if(e instanceof RegExp){return"regexp"}if(e instanceof Date){return"date"}var t=i.call(e);if(t==="[object RegExp]"){return"regexp"}if(t==="[object Date]"){return"date"}if(t==="[object Arguments]"){return"arguments"}if(t==="[object Error]"){return"error"}if(t==="[object Promise]"){return"promise"}if(r(e)){return"buffer"}if(t==="[object Set]"){return"set"}if(t==="[object WeakSet]"){return"weakset"}if(t==="[object Map]"){return"map"}if(t==="[object WeakMap]"){return"weakmap"}if(t==="[object Symbol]"){return"symbol"}if(t==="[object Int8Array]"){return"int8array"}if(t==="[object Uint8Array]"){return"uint8array"}if(t==="[object Uint8ClampedArray]"){return"uint8clampedarray"}if(t==="[object Int16Array]"){return"int16array"}if(t==="[object Uint16Array]"){return"uint16array"}if(t==="[object Int32Array]"){return"int32array"}if(t==="[object Uint32Array]"){return"uint32array"}if(t==="[object Float32Array]"){return"float32array"}if(t==="[object Float64Array]"){return"float64array"}return"object"}},8449:function(e,t,n){"use strict";const r=n(2041);const i=n(9383);const o=n(9736);function spawn(e,t,n){const a=i(e,t,n);const s=r.spawn(a.command,a.args,a.options);o.hookChildProcess(s,a);return s}function spawnSync(e,t,n){const a=i(e,t,n);const s=r.spawnSync(a.command,a.args,a.options);s.error=s.error||o.verifyENOENTSync(s.status,a);return s}e.exports=spawn;e.exports.spawn=spawn;e.exports.sync=spawnSync;e.exports._parse=i;e.exports._enoent=o},8459:function(e,t){"use strict";var n="\ufeff";t.PrependBOM=PrependBOMWrapper;function PrependBOMWrapper(e,t){this.encoder=e;this.addBOM=true}PrependBOMWrapper.prototype.write=function(e){if(this.addBOM){e=n+e;this.addBOM=false}return this.encoder.write(e)};PrependBOMWrapper.prototype.end=function(){return this.encoder.end()};t.StripBOM=StripBOMWrapper;function StripBOMWrapper(e,t){this.decoder=e;this.pass=false;this.options=t||{}}StripBOMWrapper.prototype.write=function(e){var t=this.decoder.write(e);if(this.pass||!t)return t;if(t[0]===n){t=t.slice(1);if(typeof this.options.stripBOM==="function")this.options.stripBOM()}this.pass=true;return t};StripBOMWrapper.prototype.end=function(){return this.decoder.end()}},8463:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function createDeferred(){let e;let t;const n=new Promise((n,r)=>{e=n;t=r});return{promise:n,resolve:e,reject:t}}t.createDeferred=createDeferred},8469:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(2229));const a=i(n(7930));const s=n(5897);const c=n(2041);const u=n(8339);const l=n(8215);const f=i(n(2688));const p=i(n(9544));const d=i(n(1355));const h=i(n(3759));const m=i(n(9779));const v=i(n(186));const g=i(n(5593));const y=n(3873);const b=n(8715);const w=n(2473);const x=new WeakSet;let k;function getNodeBin(){return r(this,void 0,void 0,function*(){return d.default.sync("node",{nothrow:true})||process.execPath})}function pipeChildLogging(e){if(!x.has(e)){e.stdout.pipe(process.stdout);e.stderr.pipe(process.stderr);x.add(e)}}function createBuildProcess(e,t,n,i,o){return r(this,void 0,void 0,function*(){if(!k){k=getNodeBin()}const[r,a]=yield Promise.all([k,w.builderModulePathPromise]);let u=`${s.dirname(r)}${s.delimiter}${process.env.PATH}`;if(o){u=`${o}${s.delimiter}${u}`}const l=c.fork(a,[],{cwd:n,env:Object.assign({},process.env,{PATH:u},t,{NOW_REGION:"dev1"}),execPath:r,execArgv:[],stdio:["ignore","pipe","pipe","ipc"]});e.buildProcess=l;l.on("exit",(t,n)=>{i.debug(`Build process for ${e.src} exited with ${n||t}`);e.buildProcess=undefined});l.stdout.setEncoding("utf8");l.stderr.setEncoding("utf8");return new Promise((e,t)=>{l.once("message",({type:n})=>{if(n!=="ready"){t(new Error('Did not get "ready" event from builder'))}else{e(l)}})})})}function executeBuild(e,t,n,i,s,c,d,h){return r(this,void 0,void 0,function*(){const{builderWithPkg:{runInProcess:v,builder:g,package:y}}=i;const{src:w}=i;const{env:x,debug:k,buildEnv:j,yarnPath:S,cwd:E}=t;const _=Date.now();const C=i.use!=="@now/static"&&(!c||k);if(C){t.output.log(`Building ${i.use}:${w}`);t.output.debug(`Using \`${y.name}${y.version?`@${y.version}`:""}\``)}const A=i.config||{};let O;let{buildProcess:F}=i;if(!v&&!F){t.output.debug(`Creating build process for ${w}`);F=yield createBuildProcess(i,j,E,t.output,S)}const D={files:n,entrypoint:w,workPath:E,config:A,meta:{isDev:true,requestPath:s,filesChanged:d,filesRemoved:h,env:x,buildEnv:j}};let T;if(F){let e;let t;const n=[];if(c&&!k&&process.stdout.isTTY){const r=`${p.default.bold(`Preparing ${p.default.underline(w)} for build`)}:`;t=m.default(r).start();e=(e=>{const i=f.default(e.toString());n.push(i);const o=i.replace(/\s+$/,"").split("\n");const a=`${r} ${o[o.length-1]}`;const s=process.stdout.columns||80;const c=f.default(a).length+2-s;t.text=c>0?`${a.slice(0,-c-3)}...`:a});F.stdout.on("data",e);F.stderr.on("data",e)}else{pipeChildLogging(F)}try{F.send({type:"build",builderName:y.name,buildParams:D});T=yield new Promise((e,t)=>{function onMessage({type:n,result:r,error:i}){cleanup();if(n==="buildResult"){if(r){e(r)}else if(i){t(Object.assign(new Error,i))}}else{t(new Error(`Got unexpected message type: ${n}`))}}function onExit(e,n){cleanup();const r=new Error(`Builder exited with ${n||e} before sending build result`);t(r)}function cleanup(){F.removeListener("exit",onExit);F.removeListener("message",onMessage)}F.on("exit",onExit);F.on("message",onMessage)})}catch(e){if(t){t.stop();t=undefined;console.log(n.join(""))}throw e}finally{if(e){F.stdout.removeListener("data",e);F.stderr.removeListener("data",e)}if(t){t.stop()}pipeChildLogging(F)}}else{T=yield g.build(D)}if(g.version===undefined){O={output:T,routes:[],watch:[],distPath:typeof T.distPath==="string"?T.distPath:undefined}}else{O=T}const I=O.output;for(const e of Object.keys(I)){const t=I[e];let n;let r;let i;switch(t.type){case"FileFsRef":r=Object.assign(Object.create(l.FileFsRef.prototype),t);I[e]=r;break;case"FileBlob":i=Object.assign(Object.create(l.FileBlob.prototype),t);i.data=Buffer.from(t.data.data);I[e]=i;break;case"Lambda":n=Object.assign(Object.create(l.Lambda.prototype),t);n.zipBuffer=Buffer.from(t.zipBuffer.data);I[e]=n;break;default:throw new Error(`Unknown file type: ${t.type}`)}}O.watch=(O.watch||[]).map(e=>{if(e.startsWith("./")){return e.substring(2)}return e});if(!O.watch.includes(w)){O.watch.push(w)}const R=a.default("50mb");for(const e of Object.values(O.output)){if(e.type==="Lambda"){const t=e.zipBuffer.length;if(t>R){throw new b.LambdaSizeExceededError(t,R)}}}yield Promise.all(Object.entries(O.output).map(t=>r(this,void 0,void 0,function*(){const n=t[0];const r=t[1];if(r.type==="Lambda"){const t=i.buildOutput&&i.buildOutput[n];if(t&&t.type==="Lambda"&&t.fn){yield t.fn.destroy()}r.fn=yield u.createFunction({Code:{ZipFile:r.zipBuffer},Handler:r.handler,Runtime:r.runtime,MemorySize:3008,Environment:{Variables:Object.assign({},e.env,r.environment,x,{NOW_REGION:"dev1"})}})}i.buildTimestamp=Date.now()})));i.buildResults.set(s,O);Object.assign(i.buildOutput,O.output);if(C){const e=Date.now();t.output.log(`Built ${i.use}:${w} [${o.default(e-_)}]`)}})}t.executeBuild=executeBuild;function getBuildMatches(e,t,n,i,o){return r(this,void 0,void 0,function*(){const r=[];if(o.length===0){return r}const a=[];const c=e.builds||[{src:"**",use:"@now/static"}];for(const e of c){let{src:c,use:u}=e;if(!u){continue}if(c[0]==="/"){c=c.substring(1)}c=c.replace(/(\[|\])/g,"[$1]");const l=o.filter(e=>e===c||v.default(e,c)).map(e=>s.join(t,e));if(l.length===0){a.push(e)}for(const o of l){c=y.relative(t,o);const a=yield w.getBuilder(u,n,i);r.push(Object.assign({},e,{src:c,builderWithPkg:a,buildOutput:{},buildResults:new Map,buildTimestamp:0}))}}if(a.length>0){i.warn(`You defined ${h.default("build",a.length,true)} that did not match any source files (please ensure they are NOT defined in ${g.default(".nowignore")}):`);for(const e of a){i.print(`- ${JSON.stringify(e)}\n`)}}return r})}t.getBuildMatches=getBuildMatches},8483:function(e,t,n){var r=n(8589);var i=n(2250);var o;var a;var s=0;var c=0;function v1(e,t,n){var u=t&&n||0;var l=t||[];e=e||{};var f=e.node||o;var p=e.clockseq!==undefined?e.clockseq:a;if(f==null||p==null){var d=r();if(f==null){f=o=[d[0]|1,d[1],d[2],d[3],d[4],d[5]]}if(p==null){p=a=(d[6]<<8|d[7])&16383}}var h=e.msecs!==undefined?e.msecs:(new Date).getTime();var m=e.nsecs!==undefined?e.nsecs:c+1;var v=h-s+(m-c)/1e4;if(v<0&&e.clockseq===undefined){p=p+1&16383}if((v<0||h>s)&&e.nsecs===undefined){m=0}if(m>=1e4){throw new Error("uuid.v1(): Can't create more than 10M uuids/sec")}s=h;c=m;a=p;h+=122192928e5;var g=((h&268435455)*1e4+m)%4294967296;l[u++]=g>>>24&255;l[u++]=g>>>16&255;l[u++]=g>>>8&255;l[u++]=g&255;var y=h/4294967296*1e4&268435455;l[u++]=y>>>8&255;l[u++]=y&255;l[u++]=y>>>24&15|16;l[u++]=y>>>16&255;l[u++]=p>>>8|128;l[u++]=p&255;for(var b=0;b<6;++b){l[u+b]=f[b]}return t?t:i(l)}e.exports=v1},8492:function(e,t,n){"use strict";var r=n(7409);e.exports=r.extend({path:"3d_secure",includeBasic:["create","retrieve"]})},8497:function(e){"use strict";const t=/([()\][%!^"`<>&|;, *?])/g;function escapeCommand(e){e=e.replace(t,"^$1");return e}function escapeArgument(e,n){e=`${e}`;e=e.replace(/(\\*)"/g,'$1$1\\"');e=e.replace(/(\\*)$/,"$1$1");e=`"${e}"`;e=e.replace(t,"^$1");if(n){e=e.replace(t,"^$1")}return e}e.exports.command=escapeCommand;e.exports.argument=escapeArgument},8501:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(7930));const o=r(n(6145));const a=r(n(541));function handleError(e,{debug:t=false}={}){if(typeof e==="string"){e=new Error(e)}if(t){console.log(`> [debug] handling error: ${e.stack}`)}if(e.status===403){console.error(a.default(e.message||"Authentication error. Run `now login` to log-in again."))}else if(e.status===429){console.error(a.default(e.message))}else if(e.code==="size_limit_exceeded"){const{sizeLimit:t=0}=e;console.error(a.default(`File size limit exceeded (${i.default(t)})`))}else if(e.message){console.error(a.default(e.message))}else if(e.status===500){console.error(a.default("Unexpected server error. Please retry."))}else if(e.code==="USER_ABORT"){o.default("Aborted")}else{console.error(a.default(`Unexpected error. Please try again later. (${e.message})`))}}t.default=handleError},8508:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9544));const o=r(n(2616));const a=r(n(4110));function formatTable(e,t,n,r=" "){const s=e.length;const c=[];let u="\n";for(let e=0;e<s;e++){c[e]=n.reduce((t,n)=>{const r=Math.max(...n.rows.map(t=>a.default(`${t[e]}`)));return Math.max(t,Math.ceil(r/8))},1)}for(const l of n){if(l.name){u+=`${l.name}\n`}const n=[e.map(e=>i.default.dim(e))].concat(l.rows);if(n.length>0){n[0][0]=` ${n[0][0]}`;for(let e=1;e<n.length;e++){const r=n[e].slice(0);r[0]=` ${r[0]}`;for(let i=0;i<s;i++){const o=`${r[i]}`;const s=t[i]||"l";const u=c[i]>1?" ".repeat(c[i]*8-a.default(o)):"";n[e][i]=s==="l"?o+u:u+o}}u+=o.default(n,{align:t,hsep:r,stringLength:a.default})}u+="\n\n"}return u.slice(0,-1)}t.default=formatTable},8514:function(e){e.exports={$id:"timings.json#",$schema:"http://json-schema.org/draft-06/schema#",required:["send","wait","receive"],properties:{dns:{type:"number",min:-1},connect:{type:"number",min:-1},blocked:{type:"number",min:-1},send:{type:"number",min:-1},wait:{type:"number",min:-1},receive:{type:"number",min:-1},ssl:{type:"number",min:-1},comment:{type:"string"}}}},8520:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(2399));const s=n(8715);const c=i(n(8950));function addDomain(e,t,n){return r(this,void 0,void 0,function*(){const r=c.default(`Adding domain ${t} under ${o.default.bold(n)}`);try{const n=yield performAddRequest(e,t);r();return n}catch(e){r();throw e}})}t.default=addDomain;function performAddRequest(e,t){return r(this,void 0,void 0,function*(){return a.default(()=>r(this,void 0,void 0,function*(){try{const{domain:n}=yield e.fetch("/v4/domains",{body:{name:t},method:"POST"});return n}catch(e){if(e.code==="invalid_name"){return new s.InvalidDomain(t)}if(e.code==="domain_already_exists"){return new s.DomainAlreadyExists(t)}throw e}}),{retries:5,maxTimeout:8e3})})}},8528:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(7840);e.exports={readJson:r(i.readFile),readJsonSync:i.readFileSync,writeJson:r(i.writeFile),writeJsonSync:i.writeFileSync}},8531:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(1694));function redirect(e){let t="<!doctype html>\x3c!-- https://now.sh --\x3e<h1>Redirecting ("+e.statusCode+")</h1><a>"+i.default(e.location)+"</a>";return t}t.default=redirect},8540:function(e,t,n){"use strict";e.exports=function(e,t,r,i){var o=n(4730);var a=o.tryCatch;var s=o.errorObj;var c=e._async;e.prototype["break"]=e.prototype.cancel=function(){if(!i.cancellation())return this._warn("cancellation is disabled");var e=this;var t=e;while(e._isCancellable()){if(!e._cancelBy(t)){if(t._isFollowing()){t._followee().cancel()}else{t._cancelBranched()}break}var n=e._cancellationParent;if(n==null||!n._isCancellable()){if(e._isFollowing()){e._followee().cancel()}else{e._cancelBranched()}break}else{if(e._isFollowing())e._followee().cancel();e._setWillBeCancelled();t=e;e=n}}};e.prototype._branchHasCancelled=function(){this._branchesRemainingToCancel--};e.prototype._enoughBranchesHaveCancelled=function(){return this._branchesRemainingToCancel===undefined||this._branchesRemainingToCancel<=0};e.prototype._cancelBy=function(e){if(e===this){this._branchesRemainingToCancel=0;this._invokeOnCancel();return true}else{this._branchHasCancelled();if(this._enoughBranchesHaveCancelled()){this._invokeOnCancel();return true}}return false};e.prototype._cancelBranched=function(){if(this._enoughBranchesHaveCancelled()){this._cancel()}};e.prototype._cancel=function(){if(!this._isCancellable())return;this._setCancelled();c.invoke(this._cancelPromises,this,undefined)};e.prototype._cancelPromises=function(){if(this._length()>0)this._settlePromises()};e.prototype._unsetOnCancel=function(){this._onCancelField=undefined};e.prototype._isCancellable=function(){return this.isPending()&&!this._isCancelled()};e.prototype.isCancellable=function(){return this.isPending()&&!this.isCancelled()};e.prototype._doInvokeOnCancel=function(e,t){if(o.isArray(e)){for(var n=0;n<e.length;++n){this._doInvokeOnCancel(e[n],t)}}else if(e!==undefined){if(typeof e==="function"){if(!t){var r=a(e).call(this._boundValue());if(r===s){this._attachExtraTrace(r.e);c.throwLater(r.e)}}}else{e._resultCancelled(this)}}};e.prototype._invokeOnCancel=function(){var e=this._onCancel();this._unsetOnCancel();c.invoke(this._doInvokeOnCancel,this,e)};e.prototype._invokeInternalOnCancel=function(){if(this._isCancellable()){this._doInvokeOnCancel(this._onCancel(),true);this._unsetOnCancel()}};e.prototype._resultCancelled=function(){this.cancel()}}},8546:function(e){e.exports=require("console")},8548:function(e,t,n){"use strict";function _typeof(e){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol"){_typeof=function _typeof(e){return typeof e}}else{_typeof=function _typeof(e){return e&&typeof Symbol==="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e}}return _typeof(e)}t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.storage=localstorage();t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function useColors(){if(typeof window!=="undefined"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs)){return true}if(typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)){return false}return typeof document!=="undefined"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window!=="undefined"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}function formatArgs(t){t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff);if(!this.useColors){return}var n="color: "+this.color;t.splice(1,0,n,"color: inherit");var r=0;var i=0;t[0].replace(/%[a-zA-Z%]/g,function(e){if(e==="%%"){return}r++;if(e==="%c"){i=r}});t.splice(i,0,n)}function log(){var e;return(typeof console==="undefined"?"undefined":_typeof(console))==="object"&&console.log&&(e=console).log.apply(e,arguments)}function save(e){try{if(e){t.storage.setItem("debug",e)}else{t.storage.removeItem("debug")}}catch(e){}}function load(){var e;try{e=t.storage.getItem("debug")}catch(e){}if(!e&&typeof process!=="undefined"&&"env"in process){e=process.env.DEBUG}return e}function localstorage(){try{return localStorage}catch(e){}}e.exports=n(6719)(t);var r=e.exports.formatters;r.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}},8560:function(e,t,n){var r={".":4495,"./":4495,"./alias/assign-alias":9975,"./alias/assign-alias.ts":9975,"./alias/create-alias":9204,"./alias/create-alias.ts":9204,"./alias/deployment-is-aliased":9044,"./alias/deployment-is-aliased.ts":9044,"./alias/deployment-should-copy-scale":457,"./alias/deployment-should-copy-scale.ts":457,"./alias/deployment-should-downscale":9655,"./alias/deployment-should-downscale.ts":9655,"./alias/extract-domain":9698,"./alias/extract-domain.ts":9698,"./alias/find-alias-by-alias-or-id":7219,"./alias/find-alias-by-alias-or-id.ts":7219,"./alias/get-aliases":4170,"./alias/get-aliases.ts":4170,"./alias/get-deployment-downscale-presets":9775,"./alias/get-deployment-downscale-presets.ts":9775,"./alias/get-deployment-for-alias":8199,"./alias/get-deployment-for-alias.ts":8199,"./alias/get-deployment-from-alias":1889,"./alias/get-deployment-from-alias.ts":1889,"./alias/get-domain-aliases":9208,"./alias/get-domain-aliases.ts":9208,"./alias/get-inferred-targets":1991,"./alias/get-inferred-targets.ts":1991,"./alias/get-rules-from-file":2237,"./alias/get-rules-from-file.ts":2237,"./alias/get-targets-for-alias":4793,"./alias/get-targets-for-alias.ts":4793,"./alias/is-wildcard-alias":8233,"./alias/is-wildcard-alias.ts":8233,"./alias/remove-alias-by-id":6012,"./alias/remove-alias-by-id.ts":6012,"./alias/upsert-path-alias":1195,"./alias/upsert-path-alias.ts":1195,"./alias/validate-path-alias-rules":8964,"./alias/validate-path-alias-rules.ts":8964,"./arg-common":5733,"./arg-common.ts":5733,"./billing/card-brands":9918,"./billing/card-brands.json":9918,"./billing/get-credit-cards":5041,"./billing/get-credit-cards.js":5041,"./build-state":2122,"./build-state.js":2122,"./certs/create-cert-for-alias":6879,"./certs/create-cert-for-alias.ts":6879,"./certs/create-cert-for-cns":5523,"./certs/create-cert-for-cns.ts":5523,"./certs/create-cert-from-file":4278,"./certs/create-cert-from-file.ts":4278,"./certs/delete-cert-by-id":2269,"./certs/delete-cert-by-id.ts":2269,"./certs/finish-cert-order":8734,"./certs/finish-cert-order.ts":8734,"./certs/get-cert-by-id":6103,"./certs/get-cert-by-id.ts":6103,"./certs/get-certs":8130,"./certs/get-certs-for-domain":7928,"./certs/get-certs-for-domain.ts":7928,"./certs/get-certs.ts":8130,"./certs/get-cns-from-args":336,"./certs/get-cns-from-args.ts":336,"./certs/get-wildcard-cns-for-alias":8806,"./certs/get-wildcard-cns-for-alias.ts":8806,"./certs/handle-cert-error":9199,"./certs/handle-cert-error.ts":9199,"./certs/issue-cert":8911,"./certs/issue-cert.ts":8911,"./certs/map-cert-error":3147,"./certs/map-cert-error.ts":3147,"./certs/start-cert-order":9211,"./certs/start-cert-order.ts":9211,"./check-path":2911,"./check-path.js":2911,"./client":4573,"./client.ts":4573,"./combine-async-generators":3483,"./combine-async-generators.ts":3483,"./config/files":2547,"./config/files.ts":2547,"./config/get-default":4746,"./config/get-default.js":4746,"./config/global-path":6397,"./config/global-path.ts":6397,"./config/local-path":5531,"./config/local-path.ts":5531,"./config/read-config":3435,"./config/read-config.ts":3435,"./constants":4132,"./constants.ts":4132,"./create-polling-fn":6183,"./create-polling-fn.ts":6183,"./credit-cards":8417,"./credit-cards.js":8417,"./deploy/create-deploy":5283,"./deploy/create-deploy.js":5283,"./deploy/generate-cert-for-deploy":7408,"./deploy/generate-cert-for-deploy.ts":7408,"./deploy/get-app-last-deployment":4578,"./deploy/get-app-last-deployment.ts":4578,"./deploy/get-app-name":8737,"./deploy/get-app-name.ts":8737,"./deploy/get-deployment-by-id-or-host":2970,"./deploy/get-deployment-by-id-or-host.ts":2970,"./deploy/get-deployment-by-id-or-throw":7070,"./deploy/get-deployment-by-id-or-throw.ts":7070,"./deploy/get-deployment-instances":2701,"./deploy/get-deployment-instances.ts":2701,"./deploy/get-deployments-by-appname":5077,"./deploy/get-deployments-by-appname.ts":5077,"./deploy/get-deployments-by-project-id":4798,"./deploy/get-deployments-by-project-id.ts":4798,"./deploy/get-events-stream":9471,"./deploy/get-events-stream.js":9471,"./deploy/get-instance-index":1092,"./deploy/get-instance-index.js":1092,"./deploy/process-deployment":6225,"./deploy/process-deployment.ts":6225,"./deploy/should-deploy-dir":6346,"./deploy/should-deploy-dir.ts":6346,"./dev/builder":8469,"./dev/builder-cache":2473,"./dev/builder-cache.ts":2473,"./dev/builder-worker":3453,"./dev/builder-worker.js":3453,"./dev/builder.ts":8469,"./dev/errors":9823,"./dev/errors.ts":9823,"./dev/get-bundled-builders":8786,"./dev/get-bundled-builders.ts":8786,"./dev/is-url":4444,"./dev/is-url.ts":4444,"./dev/mime-type":9555,"./dev/mime-type.ts":9555,"./dev/parse-listen":862,"./dev/parse-listen.ts":862,"./dev/router":3555,"./dev/router.ts":3555,"./dev/server":2623,"./dev/server.ts":2623,"./dev/static-builder":5429,"./dev/static-builder.ts":5429,"./dev/templates/error":1083,"./dev/templates/error.jst":5903,"./dev/templates/error.ts":1083,"./dev/templates/error.tsdef":5895,"./dev/templates/error_404":1048,"./dev/templates/error_404.jst":226,"./dev/templates/error_404.ts":1048,"./dev/templates/error_404.tsdef":467,"./dev/templates/error_502":938,"./dev/templates/error_502.jst":4703,"./dev/templates/error_502.ts":938,"./dev/templates/error_502.tsdef":3817,"./dev/templates/error_base":1722,"./dev/templates/error_base.jst":1033,"./dev/templates/error_base.ts":1722,"./dev/templates/error_base.tsdef":3742,"./dev/templates/redirect":8531,"./dev/templates/redirect.jst":6835,"./dev/templates/redirect.ts":8531,"./dev/templates/redirect.tsdef":153,"./dev/types":8115,"./dev/types.ts":8115,"./dev/validate":4133,"./dev/validate.ts":4133,"./dev/yarn-installer":962,"./dev/yarn-installer.ts":962,"./dns/add-dns-record":4892,"./dns/add-dns-record.ts":4892,"./dns/delete-dns-record-by-id":9664,"./dns/delete-dns-record-by-id.ts":9664,"./dns/get-dns-data":1960,"./dns/get-dns-data.ts":1960,"./dns/get-dns-record-by-id":5846,"./dns/get-dns-record-by-id.ts":5846,"./dns/get-dns-records":6167,"./dns/get-dns-records.ts":6167,"./dns/get-domain-dns-records":4638,"./dns/get-domain-dns-records.ts":4638,"./dns/import-zonefile":378,"./dns/import-zonefile.ts":378,"./dns/parse-add-dns-record-args":357,"./dns/parse-add-dns-record-args.ts":357,"./domains/add-domain":8520,"./domains/add-domain.ts":8520,"./domains/check-transfer":4363,"./domains/check-transfer.ts":4363,"./domains/get-auth-code":6811,"./domains/get-auth-code.ts":6811,"./domains/get-domain-by-name":6760,"./domains/get-domain-by-name.ts":6760,"./domains/get-domain-price":3623,"./domains/get-domain-price.ts":3623,"./domains/get-domain-status":4336,"./domains/get-domain-status.ts":4336,"./domains/get-domains":1632,"./domains/get-domains.ts":1632,"./domains/is-domain-external":5638,"./domains/is-domain-external.ts":5638,"./domains/maybe-get-domain-by-name":1828,"./domains/maybe-get-domain-by-name.ts":1828,"./domains/move-out-domain":1216,"./domains/move-out-domain.ts":1216,"./domains/purchase-domain":499,"./domains/purchase-domain-if-available":1891,"./domains/purchase-domain-if-available.ts":1891,"./domains/purchase-domain.ts":499,"./domains/remove-domain-by-name":5320,"./domains/remove-domain-by-name.ts":5320,"./domains/set-custom-suffix":9242,"./domains/set-custom-suffix.ts":9242,"./domains/setup-domain":6479,"./domains/setup-domain.ts":6479,"./domains/transfer-in-domain":3984,"./domains/transfer-in-domain.ts":3984,"./domains/verify-domain":5181,"./domains/verify-domain.ts":5181,"./error":2385,"./error.js":2385,"./errors":1612,"./errors-ts":8715,"./errors-ts.ts":8715,"./errors.ts":1612,"./event-listener-to-generator":5637,"./event-listener-to-generator.ts":5637,"./events":2736,"./events.js":2736,"./exit":3241,"./exit.js":3241,"./fatal-error":298,"./fatal-error.js":298,"./format-date":9268,"./format-date.ts":9268,"./format-dns-table":1776,"./format-dns-table.ts":1776,"./format-ns-table":3789,"./format-ns-table.ts":3789,"./format-table":8508,"./format-table.ts":8508,"./get-args":5580,"./get-args.ts":5580,"./get-config":4691,"./get-config.ts":4691,"./get-dist-tag":6929,"./get-dist-tag.ts":6929,"./get-files":1340,"./get-files.ts":1340,"./get-project-name":6873,"./get-project-name.js":6873,"./get-scope":8303,"./get-scope.ts":8303,"./get-subcommand":8742,"./get-subcommand.ts":8742,"./get-team-by-id":5586,"./get-team-by-id.ts":5586,"./get-teams":1647,"./get-teams.ts":1647,"./get-update-command":6482,"./get-update-command.ts":6482,"./get-user":6102,"./get-user.ts":6102,"./git":9250,"./git.js":9250,"./handle-error":8501,"./handle-error.ts":8501,"./hash":3043,"./hash.js":3043,"./humanize-path":7905,"./humanize-path.ts":7905,"./ignored":4869,"./ignored.ts":4869,"./indent":9769,"./indent.js":9769,"./index":4495,"./index.js":4495,"./init/did-you-mean":324,"./init/did-you-mean.ts":324,"./input/list":1661,"./input/list.js":1661,"./input/patch-inquirer":998,"./input/patch-inquirer.js":998,"./input/prompt-bool":3266,"./input/prompt-bool.ts":3266,"./input/regexes":8709,"./input/regexes.js":8709,"./input/text":5032,"./input/text.ts":5032,"./is-root-domain":2826,"./is-root-domain.ts":2826,"./is-valid-name":8852,"./is-valid-name.ts":8852,"./is-zeit-world":6696,"./is-zeit-world.js":6696,"./login/login":7369,"./login/login.ts":7369,"./metrics":2779,"./metrics.ts":2779,"./noop":9472,"./noop.js":9472,"./now-error":6097,"./now-error.ts":6097,"./once":9160,"./once.ts":9160,"./output":5242,"./output/":5242,"./output/aborted":6509,"./output/aborted.js":6509,"./output/builds":2417,"./output/builds.js":2417,"./output/chars":6904,"./output/chars.ts":6904,"./output/cmd":8685,"./output/cmd.ts":8685,"./output/code":462,"./output/code.ts":462,"./output/create-output":8573,"./output/create-output.ts":8573,"./output/effect":5e3,"./output/effect.js":5e3,"./output/elapsed":89,"./output/elapsed.ts":89,"./output/erase-lines":4680,"./output/erase-lines.ts":4680,"./output/error":541,"./output/error.ts":541,"./output/format-log-cmd":5372,"./output/format-log-cmd.js":5372,"./output/format-log-output":2672,"./output/format-log-output.js":2672,"./output/format-log-text":8323,"./output/format-log-text.js":8323,"./output/highlight":5593,"./output/highlight.ts":5593,"./output/indent":2214,"./output/indent.js":2214,"./output/index":5242,"./output/index.ts":5242,"./output/info":6145,"./output/info.ts":6145,"./output/join-words":8952,"./output/join-words.ts":8952,"./output/link":6056,"./output/link.ts":6056,"./output/list-item":3302,"./output/list-item.ts":3302,"./output/logo":4999,"./output/logo.ts":4999,"./output/note":2675,"./output/note.js":2675,"./output/ok":5152,"./output/ok.js":5152,"./output/param":2788,"./output/param.ts":2788,"./output/ready":6683,"./output/ready.js":6683,"./output/right-pad":7282,"./output/right-pad.js":7282,"./output/routes":1295,"./output/routes.js":1295,"./output/stamp":586,"./output/stamp.ts":586,"./output/success":5359,"./output/success.ts":5359,"./output/table":2827,"./output/table.js":2827,"./output/uid":2346,"./output/uid.js":2346,"./output/wait":8950,"./output/wait.ts":8950,"./parse-meta":8860,"./parse-meta.js":8860,"./path-helpers":3873,"./path-helpers.ts":3873,"./pkg":5246,"./pkg.ts":5246,"./plans":348,"./plans.js":348,"./prefer-v2-deployment":3629,"./prefer-v2-deployment.ts":3629,"./projects/get-project-by-id-or-name":900,"./projects/get-project-by-id-or-name.ts":900,"./projects/remove-project":8111,"./projects/remove-project.ts":8111,"./prompt-bool":7991,"./prompt-bool.ts":7991,"./prompt-options":8652,"./prompt-options.js":8652,"./race-async-generators":914,"./race-async-generators.ts":914,"./read-json-file":1146,"./read-json-file.ts":1146,"./read-metadata":5821,"./read-metadata.js":5821,"./read-package":7283,"./read-package.ts":7283,"./report-error":1659,"./report-error.js":1659,"./response-error":6053,"./response-error.ts":6053,"./returnify-async-generator":4081,"./returnify-async-generator.ts":4081,"./scale/constants":5441,"./scale/constants.js":5441,"./scale/get-dcs-from-args":9593,"./scale/get-dcs-from-args.js":9593,"./scale/get-max-from-args":2568,"./scale/get-max-from-args.ts":2568,"./scale/get-min-from-args":9491,"./scale/get-min-from-args.ts":9491,"./scale/get-raw-min-from-args":4365,"./scale/get-raw-min-from-args.ts":4365,"./scale/get-scale-for-dc":6386,"./scale/get-scale-for-dc.ts":6386,"./scale/is-valid-min-max-value":5503,"./scale/is-valid-min-max-value.ts":5503,"./scale/normalize-regions-list":9603,"./scale/normalize-regions-list.js":9603,"./scale/patch-deployment-scale":3086,"./scale/patch-deployment-scale.ts":3086,"./scale/region-or-dc-to-dc":5348,"./scale/region-or-dc-to-dc.js":5348,"./scale/set-deployment-scale":8758,"./scale/set-deployment-scale.ts":8758,"./scale/to-number-or-auto":291,"./scale/to-number-or-auto.ts":291,"./scale/verify-deployment-scale":8109,"./scale/verify-deployment-scale.ts":8109,"./scale/wait-verify-deployment-scale":5842,"./scale/wait-verify-deployment-scale.ts":5842,"./secrets":1581,"./secrets.js":1581,"./sleep":4510,"./sleep.ts":4510,"./strlen":4110,"./strlen.ts":4110,"./teams":9693,"./teams.js":9693,"./test":6033,"./test.js":6033,"./to-host":4223,"./to-host.ts":4223,"./ua":9028,"./ua-browser":6084,"./ua-browser.ts":6084,"./ua.ts":9028,"./unique-strings":1505,"./unique-strings.ts":1505,"./url":3033,"./url.js":3033,"./uuid":1780,"./uuid.ts":1780,"./with-spinner":2105,"./with-spinner.ts":2105,"./zeit-world-table":9724,"./zeit-world-table.ts":9724};function webpackContext(e){var t=webpackContextResolve(e);return n(t)}function webpackContextResolve(e){var t=r[e];if(!(t+1)){var n=new Error("Cannot find module '"+e+"'");n.code="MODULE_NOT_FOUND";throw n}return t}webpackContext.keys=function webpackContextKeys(){return Object.keys(r)};webpackContext.resolve=webpackContextResolve;e.exports=webpackContext;webpackContext.id=8560},8573:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=n(649);const s=n(8546);function createOutput({debug:e=false}={}){function print(e){process.stderr.write(e)}function log(e,t=o.default.grey){print(`${t(">")} ${e}\n`)}function dim(e,t=o.default.grey){print(`${t(`> ${e}`)}\n`)}function warn(e,t=null){log(o.default`{yellow.bold WARN!} ${e}`);if(t!==null){log(`More details: https://err.sh/now/${t}`)}}function note(e){log(o.default`{yellow.bold NOTE:} ${e}`)}function error(e,t=null){log(o.default`{red.bold Error!} ${e}`,o.default.red);if(t!==null){log(`More details: https://err.sh/now/${t}`)}}function ready(e){print(`${o.default.cyan("> Ready!")} ${e}\n`)}function success(e){print(`${o.default.cyan("> Success!")} ${e}\n`)}function debug(t){if(e){log(`${o.default.bold("[debug]")} ${o.default.gray(`[${(new Date).toISOString()}]`)} ${t}`)}}const t={_times:new Map,log(e,...t){debug(a.format(e,...t))}};function time(n,i){return r(this,void 0,void 0,function*(){const r=typeof i==="function"?i():i;if(e){t.log(n);s.Console.prototype.time.call(t,n);const e=yield r;s.Console.prototype.timeEnd.call(t,n);return e}return r})}return{print:print,log:log,warn:warn,error:error,ready:ready,success:success,debug:debug,dim:dim,time:time,note:note}}t.default=createOutput},8586:function(e){"use strict";e.exports=((e,t)=>{t=t||process.argv;const n=e.startsWith("-")?"":e.length===1?"-":"--";const r=t.indexOf(n+e);const i=t.indexOf("--");return r!==-1&&(i===-1?true:r<i)})},8589:function(e,t,n){var r=n(2984);e.exports=function nodeRNG(){return r.randomBytes(16)}},8592:function(e,t,n){var r=n(649),i=n(6521);function NGramParser(e,t){var n=16777215;this.byteIndex=0;this.ngram=0;this.ngramList=e;this.byteMap=t;this.ngramCount=0;this.hitCount=0;this.spaceChar;this.search=function(e,t){var n=0;if(e[n+32]<=t)n+=32;if(e[n+16]<=t)n+=16;if(e[n+8]<=t)n+=8;if(e[n+4]<=t)n+=4;if(e[n+2]<=t)n+=2;if(e[n+1]<=t)n+=1;if(e[n]>t)n-=1;if(n<0||e[n]!=t)return-1;return n};this.lookup=function(e){this.ngramCount+=1;if(this.search(this.ngramList,e)>=0){this.hitCount+=1}};this.addByte=function(e){this.ngram=(this.ngram<<8)+(e&255)&n;this.lookup(this.ngram)};this.nextByte=function(e){if(this.byteIndex>=e.fInputLen)return-1;return e.fInputBytes[this.byteIndex++]&255};this.parse=function(e,t){var n,r=false;this.spaceChar=t;while((n=this.nextByte(e))>=0){var i=this.byteMap[n];if(i!=0){if(!(i==this.spaceChar&&r)){this.addByte(i)}r=i==this.spaceChar}}this.addByte(this.spaceChar);var o=this.hitCount/this.ngramCount;if(o>.33)return 98;return Math.floor(o*300)}}function NGramsPlusLang(e,t){this.fLang=e;this.fNGrams=t}function sbcs(){}sbcs.prototype.spaceChar=32;sbcs.prototype.ngrams=function(){};sbcs.prototype.byteMap=function(){};sbcs.prototype.match=function(e){var t=this.ngrams();var n=Array.isArray(t)&&t[0]instanceof NGramsPlusLang;if(!n){var r=new NGramParser(t,this.byteMap());var o=r.parse(e,this.spaceChar);return o<=0?null:new i(e,this,o)}var a=-1;var s=null;for(var c=t.length-1;c>=0;c--){var u=t[c];var r=new NGramParser(u.fNGrams,this.byteMap());var o=r.parse(e,this.spaceChar);if(o>a){a=o;s=u.fLang}}var l=this.name(e);return a<=0?null:new i(e,this,a,l,s)};e.exports.ISO_8859_1=function(){this.byteMap=function(){return[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,170,32,32,32,32,32,32,32,32,32,32,181,32,32,32,32,186,32,32,32,32,32,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,32,248,249,250,251,252,253,254,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,32,248,249,250,251,252,253,254,255]};this.ngrams=function(){return[new NGramsPlusLang("da",[2122086,2122100,2122853,2123118,2123122,2123375,2123873,2124064,2125157,2125671,2126053,2126697,2126708,2126953,2127465,6383136,6385184,6385252,6386208,6386720,6579488,6579566,6579570,6579572,6627443,6644768,6644837,6647328,6647396,6648352,6648421,6648608,6648864,6713202,6776096,6776174,6776178,6907749,6908960,6909543,7038240,7039845,7103858,7104871,7105637,7169380,7234661,7234848,7235360,7235429,7300896,7302432,7303712,7398688,7479396,7479397,7479411,7496992,7566437,7610483,7628064,7628146,7629164,7759218]),new NGramsPlusLang("de",[2122094,2122101,2122341,2122849,2122853,2122857,2123113,2123621,2123873,2124142,2125161,2126691,2126693,2127214,2127461,2127471,2127717,2128501,6448498,6514720,6514789,6514804,6578547,6579566,6579570,6580581,6627428,6627443,6646126,6646132,6647328,6648352,6648608,6776174,6841710,6845472,6906728,6907168,6909472,6909541,6911008,7104867,7105637,7217249,7217252,7217267,7234592,7234661,7234848,7235360,7235429,7238757,7479396,7496805,7497065,7562088,7566437,7610468,7628064,7628142,7628146,7695972,7695975,7759218]),new NGramsPlusLang("en",[2122016,2122094,2122341,2122607,2123375,2123873,2123877,2124142,2125153,2125670,2125938,2126437,2126689,2126708,2126952,2126959,2127720,6383972,6384672,6385184,6385252,6386464,6386720,6386789,6386793,6561889,6561908,6627425,6627443,6627444,6644768,6647412,6648352,6648608,6713202,6840692,6841632,6841714,6906912,6909472,6909543,6909806,6910752,7217249,7217268,7234592,7235360,7238688,7300640,7302688,7303712,7496992,7500576,7544929,7544948,7561577,7566368,7610484,7628146,7628897,7628901,7629167,7630624,7631648]),new NGramsPlusLang("es",[2122016,2122593,2122607,2122853,2123116,2123118,2123123,2124142,2124897,2124911,2125921,2125935,2125938,2126197,2126437,2126693,2127214,2128160,6365283,6365284,6365285,6365292,6365296,6382441,6382703,6384672,6386208,6386464,6515187,6516590,6579488,6579564,6582048,6627428,6627429,6627436,6646816,6647328,6647412,6648608,6648692,6907246,6943598,7102752,7106419,7217253,7238757,7282788,7282789,7302688,7303712,7303968,7364978,7435621,7495968,7497075,7544932,7544933,7544944,7562528,7628064,7630624,7693600,15953440]),new NGramsPlusLang("fr",[2122101,2122607,2122849,2122853,2122869,2123118,2123124,2124897,2124901,2125921,2125935,2125938,2126197,2126693,2126703,2127214,2154528,6385268,6386793,6513952,6516590,6579488,6579571,6583584,6627425,6627427,6627428,6627429,6627436,6627440,6627443,6647328,6647412,6648352,6648608,6648864,6649202,6909806,6910752,6911008,7102752,7103776,7103859,7169390,7217252,7234848,7238432,7238688,7302688,7302772,7304562,7435621,7479404,7496992,7544929,7544932,7544933,7544940,7544944,7610468,7628064,7629167,7693600,7696928]),new NGramsPlusLang("it",[2122092,2122600,2122607,2122853,2122857,2123040,2124140,2124142,2124897,2125925,2125938,2127214,6365283,6365284,6365296,6365299,6386799,6514789,6516590,6579564,6580512,6627425,6627427,6627428,6627433,6627436,6627440,6627443,6646816,6646892,6647412,6648352,6841632,6889569,6889571,6889572,6889587,6906144,6908960,6909472,6909806,7102752,7103776,7104800,7105633,7234848,7235872,7237408,7238757,7282785,7282788,7282793,7282803,7302688,7302757,7366002,7495968,7496992,7563552,7627040,7628064,7629088,7630624,8022383]),new NGramsPlusLang("nl",[2122092,2122341,2122849,2122853,2122857,2123109,2123118,2123621,2123877,2124142,2125153,2125157,2125680,2126949,2127457,2127461,2127471,2127717,2128489,6381934,6381938,6385184,6385252,6386208,6386720,6514804,6579488,6579566,6579570,6627426,6627446,6645102,6645106,6647328,6648352,6648435,6648864,6776174,6841716,6907168,6909472,6909543,6910752,7217250,7217252,7217253,7217256,7217263,7217270,7234661,7235360,7302756,7303026,7303200,7303712,7562088,7566437,7610468,7628064,7628142,7628146,7758190,7759218,7761775]),new NGramsPlusLang("no",[2122100,2122102,2122853,2123118,2123122,2123375,2123873,2124064,2125157,2125671,2126053,2126693,2126699,2126703,2126708,2126953,2127465,2155808,6385252,6386208,6386720,6579488,6579566,6579572,6627443,6644768,6647328,6647397,6648352,6648421,6648864,6648948,6713202,6776174,6908779,6908960,6909543,7038240,7039845,7103776,7105637,7169380,7169390,7217267,7234848,7235360,7235429,7237221,7300896,7302432,7303712,7398688,7479411,7496992,7565165,7566437,7610483,7628064,7628142,7628146,7629164,7631904,7631973,7759218]),new NGramsPlusLang("pt",[2122016,2122607,2122849,2122853,2122863,2123040,2123123,2125153,2125423,2125600,2125921,2125935,2125938,2126197,2126437,2126693,2127213,6365281,6365283,6365284,6365296,6382693,6382703,6384672,6386208,6386273,6386464,6516589,6516590,6578464,6579488,6582048,6582131,6627425,6627428,6647072,6647412,6648608,6648692,6906144,6906721,7169390,7238757,7238767,7282785,7282787,7282788,7282789,7282800,7303968,7364978,7435621,7495968,7497075,7544929,7544932,7544933,7544944,7566433,7628064,7630624,7693600,14905120,15197039]),new NGramsPlusLang("sv",[2122100,2122102,2122853,2123118,2123510,2123873,2124064,2124142,2124655,2125157,2125667,2126053,2126699,2126703,2126708,2126953,2127457,2127465,2155634,6382693,6385184,6385252,6386208,6386804,6514720,6579488,6579566,6579570,6579572,6644768,6647328,6648352,6648864,6747762,6776174,6909036,6909543,7037216,7105568,7169380,7217267,7233824,7234661,7235360,7235429,7235950,7299944,7302432,7302688,7398688,7479393,7479411,7495968,7564129,7565165,7610483,7627040,7628064,7628146,7629164,7631904,7758194,14971424,16151072])]};this.name=function(e){return e&&e.fC1Bytes?"windows-1252":"ISO-8859-1"}};r.inherits(e.exports.ISO_8859_1,sbcs);e.exports.ISO_8859_2=function(){this.byteMap=function(){return[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,177,32,179,32,181,182,32,32,185,186,187,188,32,190,191,32,177,32,179,32,181,182,183,32,185,186,187,188,32,190,191,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,32,248,249,250,251,252,253,254,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,32,248,249,250,251,252,253,254,32]};this.ngrams=function(){return[new NGramsPlusLang("cs",[2122016,2122361,2122863,2124389,2125409,2125413,2125600,2125668,2125935,2125938,2126072,2126447,2126693,2126703,2126708,2126959,2127392,2127481,2128481,6365296,6513952,6514720,6627440,6627443,6627446,6647072,6647533,6844192,6844260,6910836,6972704,7042149,7103776,7104800,7233824,7268640,7269408,7269664,7282800,7300206,7301737,7304052,7304480,7304801,7368548,7368554,7369327,7403621,7562528,7565173,7566433,7566441,7566446,7628146,7630573,7630624,7676016,12477728,14773997,15296623,15540336,15540339,15559968,16278884]),new NGramsPlusLang("hu",[2122016,2122106,2122341,2123111,2123116,2123365,2123873,2123887,2124147,2124645,2124649,2124790,2124901,2125153,2125157,2125161,2125413,2126714,2126949,2156915,6365281,6365291,6365293,6365299,6384416,6385184,6388256,6447470,6448494,6645625,6646560,6646816,6646885,6647072,6647328,6648421,6648864,6648933,6648948,6781216,6844263,6909556,6910752,7020641,7075450,7169383,7170414,7217249,7233899,7234923,7234925,7238688,7300985,7544929,7567973,7567988,7568097,7596391,7610465,7631904,7659891,8021362,14773792,15299360]),new NGramsPlusLang("pl",[2122618,2122863,2124064,2124389,2124655,2125153,2125161,2125409,2125417,2125668,2125935,2125938,2126697,2127648,2127721,2127737,2128416,2128481,6365296,6365303,6385257,6514720,6519397,6519417,6582048,6584937,6627440,6627443,6627447,6627450,6645615,6646304,6647072,6647401,6778656,6906144,6907168,6907242,7037216,7039264,7039333,7170405,7233824,7235937,7235941,7282800,7305057,7305065,7368556,7369313,7369327,7369338,7502437,7502457,7563754,7564137,7566433,7825765,7955304,7957792,8021280,8022373,8026400,15955744]),new NGramsPlusLang("ro",[2122016,2122083,2122593,2122597,2122607,2122613,2122853,2122857,2124897,2125153,2125925,2125938,2126693,2126819,2127214,2144873,2158190,6365283,6365284,6386277,6386720,6386789,6386976,6513010,6516590,6518048,6546208,6579488,6627425,6627427,6627428,6627440,6627443,6644e3,6646048,6646885,6647412,6648692,6889569,6889571,6889572,6889584,6907168,6908192,6909472,7102752,7103776,7106418,7107945,7234848,7238770,7303712,7365998,7496992,7497057,7501088,7594784,7628064,7631477,7660320,7694624,7695392,12216608,15625760])]};this.name=function(e){return e&&e.fC1Bytes?"windows-1250":"ISO-8859-2"}};r.inherits(e.exports.ISO_8859_2,sbcs);e.exports.ISO_8859_5=function(){this.byteMap=function(){return[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,241,242,243,244,245,246,247,248,249,250,251,252,32,254,255,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,32,241,242,243,244,245,246,247,248,249,250,251,252,32,254,255]};this.ngrams=function(){return[2150944,2151134,2151646,2152400,2152480,2153168,2153182,2153936,2153941,2154193,2154462,2154464,2154704,2154974,2154978,2155230,2156514,2158050,13688280,13689580,13884960,14015468,14015960,14016994,14017056,14164191,14210336,14211104,14216992,14407133,14407712,14413021,14536736,14538016,14538965,14538991,14540320,14540498,14557394,14557407,14557409,14602784,14602960,14603230,14604576,14605292,14605344,14606818,14671579,14672085,14672088,14672094,14733522,14734804,14803664,14803666,14803672,14806816,14865883,14868e3,14868192,14871584,15196894,15459616]};this.name=function(e){return"ISO-8859-5"};this.language=function(){return"ru"}};r.inherits(e.exports.ISO_8859_5,sbcs);e.exports.ISO_8859_6=function(){this.byteMap=function(){return[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,32,32,32,32,32,224,225,226,227,228,229,230,231,232,233,234,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32]};this.ngrams=function(){return[2148324,2148326,2148551,2152932,2154986,2155748,2156006,2156743,13050055,13091104,13093408,13095200,13100064,13100227,13100231,13100232,13100234,13100236,13100237,13100239,13100243,13100249,13100258,13100261,13100264,13100266,13100320,13100576,13100746,13115591,13181127,13181153,13181156,13181157,13181160,13246663,13574343,13617440,13705415,13748512,13836487,14229703,14279913,14805536,14950599,14993696,15001888,15002144,15016135,15058720,15059232,15066656,15081671,15147207,15189792,15255524,15263264,15278279,15343815,15343845,15343848,15386912,15388960,15394336]};this.name=function(e){return"ISO-8859-6"};this.language=function(){return"ar"}};r.inherits(e.exports.ISO_8859_6,sbcs);e.exports.ISO_8859_7=function(){this.byteMap=function(){return[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,161,162,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,220,32,221,222,223,32,252,32,253,254,192,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,32,243,244,245,246,247,248,249,250,251,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,32]};this.ngrams=function(){return[2154989,2154992,2155497,2155753,2156016,2156320,2157281,2157797,2158049,2158368,2158817,2158831,2158833,2159604,2159605,2159847,2159855,14672160,14754017,14754036,14805280,14806304,14807292,14807584,14936545,15067424,15069728,15147252,15199520,15200800,15278324,15327520,15330014,15331872,15393257,15393268,15525152,15540449,15540453,15540464,15589664,15725088,15725856,15790069,15790575,15793184,15868129,15868133,15868138,15868144,15868148,15983904,15984416,15987951,16048416,16048617,16050157,16050162,16050666,16052e3,16052213,16054765,16379168,16706848]};this.name=function(e){return e&&e.fC1Bytes?"windows-1253":"ISO-8859-7"};this.language=function(){return"el"}};r.inherits(e.exports.ISO_8859_7,sbcs);e.exports.ISO_8859_8=function(){this.byteMap=function(){return[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,181,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,32,32,32,32,32]};this.ngrams=function(){return[new NGramsPlusLang("he",[2154725,2154727,2154729,2154746,2154985,2154990,2155744,2155749,2155753,2155758,2155762,2155769,2155770,2157792,2157796,2158304,2159340,2161132,14744096,14950624,14950625,14950628,14950636,14950638,14950649,15001056,15065120,15068448,15068960,15071264,15071776,15278308,15328288,15328762,15329773,15330592,15331104,15333408,15333920,15474912,15474916,15523872,15524896,15540448,15540449,15540452,15540460,15540462,15540473,15655968,15671524,15787040,15788320,15788525,15920160,16261348,16312813,16378912,16392416,16392417,16392420,16392428,16392430,16392441]),new NGramsPlusLang("he",[2154725,2154732,2155753,2155756,2155758,2155760,2157040,2157810,2157817,2158053,2158057,2158565,2158569,2160869,2160873,2161376,2161381,2161385,14688484,14688492,14688493,14688506,14738464,14738916,14740512,14741024,14754020,14754029,14754042,14950628,14950633,14950636,14950637,14950639,14950648,14950650,15002656,15065120,15066144,15196192,15327264,15327520,15328288,15474916,15474925,15474938,15528480,15530272,15591913,15591920,15591928,15605988,15605997,15606010,15655200,15655968,15918112,16326884,16326893,16326906,16376864,16441376,16442400,16442857])]};this.name=function(e){return e&&e.fC1Bytes?"windows-1255":"ISO-8859-8"};this.language=function(){return"he"}};r.inherits(e.exports.ISO_8859_8,sbcs);e.exports.ISO_8859_9=function(){this.byteMap=function(){return[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,170,32,32,32,32,32,32,32,32,32,32,181,32,32,32,32,186,32,32,32,32,32,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,32,248,249,250,251,252,105,254,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,32,248,249,250,251,252,253,254,255]};this.ngrams=function(){return[2122337,2122345,2122357,2122849,2122853,2123621,2123873,2124140,2124641,2124655,2125153,2125676,2126689,2126945,2127461,2128225,6365282,6384416,6384737,6384993,6385184,6385405,6386208,6386273,6386429,6386685,6388065,6449522,6578464,6579488,6580512,6627426,6627435,6644841,6647328,6648352,6648425,6648681,6909029,6909472,6909545,6910496,7102830,7102834,7103776,7103858,7217249,7217250,7217259,7234657,7234661,7234848,7235872,7235950,7273760,7498094,7535982,7759136,7954720,7958386,16608800,16608868,16609021,16642301]};this.name=function(e){return e&&e.fC1Bytes?"windows-1254":"ISO-8859-9"};this.language=function(){return"tr"}};r.inherits(e.exports.ISO_8859_9,sbcs);e.exports.windows_1251=function(){this.byteMap=function(){return[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,144,131,32,131,32,32,32,32,32,32,154,32,156,157,158,159,144,32,32,32,32,32,32,32,32,32,154,32,156,157,158,159,32,162,162,188,32,180,32,32,184,32,186,32,32,32,32,191,32,32,179,179,180,181,32,32,184,32,186,32,188,190,190,191,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255]};this.ngrams=function(){return[2155040,2155246,2155758,2156512,2156576,2157280,2157294,2158048,2158053,2158305,2158574,2158576,2158816,2159086,2159090,2159342,2160626,2162162,14740968,14742268,14937632,15068156,15068648,15069682,15069728,15212783,15263008,15263776,15269664,15459821,15460384,15465709,15589408,15590688,15591653,15591679,15592992,15593186,15605986,15605999,15606001,15655456,15655648,15655918,15657248,15657980,15658016,15659506,15724267,15724773,15724776,15724782,15786210,15787492,15856352,15856354,15856360,15859488,15918571,15920672,15920880,15924256,16249582,16512288]};this.name=function(e){return"windows-1251"};this.language=function(){return"ru"}};r.inherits(e.exports.windows_1251,sbcs);e.exports.windows_1256=function(){this.byteMap=function(){return[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,129,32,131,32,32,32,32,136,32,138,32,156,141,142,143,144,32,32,32,32,32,32,32,152,32,154,32,156,32,32,159,32,32,32,32,32,32,32,32,32,32,170,32,32,32,32,32,32,32,32,32,32,181,32,32,32,32,32,32,32,32,32,32,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,32,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,32,32,32,32,244,32,32,32,32,249,32,251,252,32,32,255]};this.ngrams=function(){return[2148321,2148324,2148551,2153185,2153965,2154977,2155492,2156231,13050055,13091104,13093408,13095200,13099296,13099459,13099463,13099464,13099466,13099468,13099469,13099471,13099475,13099482,13099486,13099491,13099494,13099501,13099808,13100064,13100234,13115591,13181127,13181149,13181153,13181155,13181158,13246663,13574343,13617440,13705415,13748512,13836487,14295239,14344684,14544160,14753991,14797088,14806048,14806304,14885063,14927648,14928160,14935072,14950599,15016135,15058720,15124449,15131680,15474887,15540423,15540451,15540454,15583520,15585568,15590432]};this.name=function(e){return"windows-1256"};this.language=function(){return"ar"}};r.inherits(e.exports.windows_1256,sbcs);e.exports.KOI8_R=function(){this.byteMap=function(){return[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,0,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,163,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,163,32,32,32,32,32,32,32,32,32,32,32,32,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223]};this.ngrams=function(){return[2147535,2148640,2149313,2149327,2150081,2150085,2150338,2150607,2150610,2151105,2151375,2151380,2151631,2152224,2152399,2153153,2153684,2154196,12701385,12702936,12963032,12963529,12964820,12964896,13094688,13181136,13223200,13224224,13226272,13419982,13420832,13424846,13549856,13550880,13552069,13552081,13553440,13553623,13574352,13574355,13574359,13617103,13617696,13618392,13618464,13620180,13621024,13621185,13684684,13685445,13685449,13685455,13812183,13813188,13881632,13882561,13882569,13882583,13944268,13946656,13946834,13948960,14272544,14603471]};this.name=function(e){return"KOI8-R"};this.language=function(){return"ru"}};r.inherits(e.exports.KOI8_R,sbcs)},8599:function(e,t,n){"use strict";const r=n(2617);function symlinkType(e,t,n){n=typeof t==="function"?t:n;t=typeof t==="function"?false:t;if(t)return n(null,t);r.lstat(e,(e,r)=>{if(e)return n(null,"file");t=r&&r.isDirectory()?"dir":"file";n(null,t)})}function symlinkTypeSync(e,t){let n;if(t)return t;try{n=r.lstatSync(e)}catch(e){return"file"}return n&&n.isDirectory()?"dir":"file"}e.exports={symlinkType:symlinkType,symlinkTypeSync:symlinkTypeSync}},8603:function(e){"use strict";e.exports=function generate__limitLength(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l;var f="data"+(o||"");var p=e.opts.$data&&a&&a.$data,d;if(p){r+=" var schema"+i+" = "+e.util.getData(a.$data,o,e.dataPathArr)+"; ";d="schema"+i}else{d=a}var h=t=="maxLength"?">":"<";r+="if ( ";if(p){r+=" ("+d+" !== undefined && typeof "+d+" != 'number') || "}if(e.opts.unicode===false){r+=" "+f+".length "}else{r+=" ucs2length("+f+") "}r+=" "+h+" "+d+") { ";var l=t;var m=m||[];m.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+(l||"_limitLength")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: { limit: "+d+" } ";if(e.opts.messages!==false){r+=" , message: 'should NOT be ";if(t=="maxLength"){r+="longer"}else{r+="shorter"}r+=" than ";if(p){r+="' + "+d+" + '"}else{r+=""+a}r+=" characters' "}if(e.opts.verbose){r+=" , schema: ";if(p){r+="validate.schema"+s}else{r+=""+a}r+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+f+" "}r+=" } "}else{r+=" {} "}var v=r;r=m.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+v+"]); "}else{r+=" validate.errors = ["+v+"]; return false; "}}else{r+=" var err = "+v+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+="} ";if(u){r+=" else { "}return r}},8608:function(e,t,n){var r=n(9112);e.exports=async;function async(e){var t=false;r(function(){t=true});return function async_callback(n,i){if(t){e(n,i)}else{r(function nextTick_callback(){e(n,i)})}}}},8610:function(e,t,n){e.exports={read:read,write:write};var r=n(9261);var i=n(3062).Buffer;var o=n(5271);var a=n(120);var s=n(1946);var c=n(5302);var u=n(2806);var l=n(2046);var f=n(8051);var p=n(8792);var d="Private-key-format: v1";function read(e,t){if(typeof e==="string"){if(e.trim().match(/^[-]+[ ]*BEGIN/))return c.read(e,t);if(e.match(/^\s*ssh-[a-z]/))return u.read(e,t);if(e.match(/^\s*ecdsa-/))return u.read(e,t);if(e.match(/^putty-user-key-file-2:/i))return p.read(e,t);if(findDNSSECHeader(e))return f.read(e,t);e=i.from(e,"binary")}else{r.buffer(e);if(findPEMHeader(e))return c.read(e,t);if(findSSHHeader(e))return u.read(e,t);if(findPuTTYHeader(e))return p.read(e,t);if(findDNSSECHeader(e))return f.read(e,t)}if(e.readUInt32BE(0)<e.length)return l.read(e,t);throw new Error("Failed to auto-detect format of key")}function findPuTTYHeader(e){var t=0;while(t<e.length&&(e[t]===32||e[t]===10||e[t]===9))++t;if(t+22<=e.length&&e.slice(t,t+22).toString("ascii").toLowerCase()==="putty-user-key-file-2:")return true;return false}function findSSHHeader(e){var t=0;while(t<e.length&&(e[t]===32||e[t]===10||e[t]===9))++t;if(t+4<=e.length&&e.slice(t,t+4).toString("ascii")==="ssh-")return true;if(t+6<=e.length&&e.slice(t,t+6).toString("ascii")==="ecdsa-")return true;return false}function findPEMHeader(e){var t=0;while(t<e.length&&(e[t]===32||e[t]===10))++t;if(e[t]!==45)return false;while(t<e.length&&e[t]===45)++t;while(t<e.length&&e[t]===32)++t;if(t+5>e.length||e.slice(t,t+5).toString("ascii")!=="BEGIN")return false;return true}function findDNSSECHeader(e){if(e.length<=d.length)return false;var t=e.slice(0,d.length);if(t.toString("ascii")===d)return true;if(typeof e!=="string"){e=e.toString("ascii")}var n=e.split("\n");var r=0;while(n[r].match(/^\;/))r++;if(n[r].toString("ascii").match(/\. IN KEY /))return true;if(n[r].toString("ascii").match(/\. IN DNSKEY /))return true;return false}function write(e,t){throw new Error('"auto" format cannot be used for writing')}},8652:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);t["default"]=promptOptions;function promptOptions(e){return new Promise((t,n)=>{e.forEach(([,e],t)=>{console.log(`${i.a.gray(">")} [${i.a.bold(t+1)}] ${e}`)});const r=i=>{const o=i.toString();const a=()=>{if(process.stdin.setRawMode){process.stdin.setRawMode(false)}process.stdin.removeListener("data",r);process.stdin.pause()};if(o===""){a();const e=new Error("Aborted");e.code="USER_ABORT";return n(e)}const s=Number(o);if(e[s-1]){a();t(e[s-1][0])}};if(process.stdin.setRawMode){process.stdin.setRawMode(true)}process.stdin.resume();process.stdin.on("data",r)})}},8654:function(e,t,n){var r=n(5089).SourceMapGenerator;var i=n(9175);var o=/(\r?\n)/;var a=10;var s="$$$isSourceNode$$$";function SourceNode(e,t,n,r,i){this.children=[];this.sourceContents={};this.line=e==null?null:e;this.column=t==null?null:t;this.source=n==null?null:n;this.name=i==null?null:i;this[s]=true;if(r!=null)this.add(r)}SourceNode.fromStringWithSourceMap=function SourceNode_fromStringWithSourceMap(e,t,n){var r=new SourceNode;var a=e.split(o);var s=0;var c=function(){var e=getNextLine();var t=getNextLine()||"";return e+t;function getNextLine(){return s<a.length?a[s++]:undefined}};var u=1,l=0;var f=null;t.eachMapping(function(e){if(f!==null){if(u<e.generatedLine){addMappingWithCode(f,c());u++;l=0}else{var t=a[s];var n=t.substr(0,e.generatedColumn-l);a[s]=t.substr(e.generatedColumn-l);l=e.generatedColumn;addMappingWithCode(f,n);f=e;return}}while(u<e.generatedLine){r.add(c());u++}if(l<e.generatedColumn){var t=a[s];r.add(t.substr(0,e.generatedColumn));a[s]=t.substr(e.generatedColumn);l=e.generatedColumn}f=e},this);if(s<a.length){if(f){addMappingWithCode(f,c())}r.add(a.splice(s).join(""))}t.sources.forEach(function(e){var o=t.sourceContentFor(e);if(o!=null){if(n!=null){e=i.join(n,e)}r.setSourceContent(e,o)}});return r;function addMappingWithCode(e,t){if(e===null||e.source===undefined){r.add(t)}else{var o=n?i.join(n,e.source):e.source;r.add(new SourceNode(e.originalLine,e.originalColumn,o,t,e.name))}}};SourceNode.prototype.add=function SourceNode_add(e){if(Array.isArray(e)){e.forEach(function(e){this.add(e)},this)}else if(e[s]||typeof e==="string"){if(e){this.children.push(e)}}else{throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+e)}return this};SourceNode.prototype.prepend=function SourceNode_prepend(e){if(Array.isArray(e)){for(var t=e.length-1;t>=0;t--){this.prepend(e[t])}}else if(e[s]||typeof e==="string"){this.children.unshift(e)}else{throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+e)}return this};SourceNode.prototype.walk=function SourceNode_walk(e){var t;for(var n=0,r=this.children.length;n<r;n++){t=this.children[n];if(t[s]){t.walk(e)}else{if(t!==""){e(t,{source:this.source,line:this.line,column:this.column,name:this.name})}}}};SourceNode.prototype.join=function SourceNode_join(e){var t;var n;var r=this.children.length;if(r>0){t=[];for(n=0;n<r-1;n++){t.push(this.children[n]);t.push(e)}t.push(this.children[n]);this.children=t}return this};SourceNode.prototype.replaceRight=function SourceNode_replaceRight(e,t){var n=this.children[this.children.length-1];if(n[s]){n.replaceRight(e,t)}else if(typeof n==="string"){this.children[this.children.length-1]=n.replace(e,t)}else{this.children.push("".replace(e,t))}return this};SourceNode.prototype.setSourceContent=function SourceNode_setSourceContent(e,t){this.sourceContents[i.toSetString(e)]=t};SourceNode.prototype.walkSourceContents=function SourceNode_walkSourceContents(e){for(var t=0,n=this.children.length;t<n;t++){if(this.children[t][s]){this.children[t].walkSourceContents(e)}}var r=Object.keys(this.sourceContents);for(var t=0,n=r.length;t<n;t++){e(i.fromSetString(r[t]),this.sourceContents[r[t]])}};SourceNode.prototype.toString=function SourceNode_toString(){var e="";this.walk(function(t){e+=t});return e};SourceNode.prototype.toStringWithSourceMap=function SourceNode_toStringWithSourceMap(e){var t={code:"",line:1,column:0};var n=new r(e);var i=false;var o=null;var s=null;var c=null;var u=null;this.walk(function(e,r){t.code+=e;if(r.source!==null&&r.line!==null&&r.column!==null){if(o!==r.source||s!==r.line||c!==r.column||u!==r.name){n.addMapping({source:r.source,original:{line:r.line,column:r.column},generated:{line:t.line,column:t.column},name:r.name})}o=r.source;s=r.line;c=r.column;u=r.name;i=true}else if(i){n.addMapping({generated:{line:t.line,column:t.column}});o=null;i=false}for(var l=0,f=e.length;l<f;l++){if(e.charCodeAt(l)===a){t.line++;t.column=0;if(l+1===f){o=null;i=false}else if(i){n.addMapping({source:r.source,original:{line:r.line,column:r.column},generated:{line:t.line,column:t.column},name:r.name})}}else{t.column++}}});this.walkSourceContents(function(e,t){n.setSourceContent(e,t)});return{code:t.code,map:n}};t.SourceNode=SourceNode},8655:function(e,t,n){var r=n(3251);var i=n(4337);var o=n(2057);var a=n(2320);e.exports={Reader:o,Writer:a};for(var s in i){if(i.hasOwnProperty(s))e.exports[s]=i[s]}for(var c in r){if(r.hasOwnProperty(c))e.exports[c]=r[c]}},8660:function(e,t,n){"use strict";const r=n(6839);const i=n(1172);const o=n(6627);e.exports={createFile:r.createFile,createFileSync:r.createFileSync,ensureFile:r.createFile,ensureFileSync:r.createFileSync,createLink:i.createLink,createLinkSync:i.createLinkSync,ensureLink:i.createLink,ensureLinkSync:i.createLinkSync,createSymlink:o.createSymlink,createSymlinkSync:o.createSymlinkSync,ensureSymlink:o.createSymlink,ensureSymlinkSync:o.createSymlinkSync}},8672:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(127);var i=n(3079);function supportsErrorEvent(){try{new ErrorEvent("");return true}catch(e){return false}}t.supportsErrorEvent=supportsErrorEvent;function supportsDOMError(){try{new DOMError("");return true}catch(e){return false}}t.supportsDOMError=supportsDOMError;function supportsDOMException(){try{new DOMException("");return true}catch(e){return false}}t.supportsDOMException=supportsDOMException;function supportsFetch(){if(!("fetch"in i.getGlobalObject())){return false}try{new Headers;new Request("");new Response;return true}catch(e){return false}}t.supportsFetch=supportsFetch;function supportsNativeFetch(){if(!supportsFetch()){return false}var e=function(e){return e.toString().indexOf("native")!==-1};var t=i.getGlobalObject();var n=null;var o=t.document;if(o){var a=o.createElement("iframe");a.hidden=true;try{o.head.appendChild(a);if(a.contentWindow&&a.contentWindow.fetch){n=e(a.contentWindow.fetch)}o.head.removeChild(a)}catch(e){r.logger.warn("Could not create sandbox iframe for pure fetch check, bailing to window.fetch: ",e)}}if(n===null){n=e(t.fetch)}return n}t.supportsNativeFetch=supportsNativeFetch;function supportsReportingObserver(){return"ReportingObserver"in i.getGlobalObject()}t.supportsReportingObserver=supportsReportingObserver;function supportsReferrerPolicy(){if(!supportsFetch()){return false}try{new Request("_",{referrerPolicy:"origin"});return true}catch(e){return false}}t.supportsReferrerPolicy=supportsReferrerPolicy;function supportsHistory(){var e=i.getGlobalObject();var t=e.chrome;var n=t&&t.app&&t.app.runtime;var r="history"in e&&!!e.history.pushState&&!!e.history.replaceState;return!n&&r}t.supportsHistory=supportsHistory},8674:function(e,t,n){"use strict";const r=n(9622);const i=n(2454);e.exports=(e=>{const t=i.desc(r());const n=Object.keys(t).filter(t=>e.endsWith(t));if(n.length===0){return[]}return n.map(e=>({ext:e,mime:t[e]}))});e.exports.mime=(e=>{const t=i.desc(r());const n=Object.keys(t).filter(n=>t[n]===e);if(n.length===0){return[]}return n.map(e=>({ext:e,mime:t[e]}))})},8685:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9544));function cmd(e){return`${i.default.gray("`")}${i.default.cyan(e)}${i.default.gray("`")}`}t.default=cmd},8690:function(e,t,n){"use strict";const r=n(662);const i=n(1461);function readShebang(e){const t=150;let n;if(Buffer.alloc){n=Buffer.alloc(t)}else{n=new Buffer(t);n.fill(0)}let o;try{o=r.openSync(e,"r");r.readSync(o,n,0,t,0);r.closeSync(o)}catch(e){}return i(n.toString())}e.exports=readShebang},8692:function(e){"use strict";const t={ALLOCATED:"ALLOCATED",IDLE:"IDLE",INVALID:"INVALID",RETURNING:"RETURNING",VALIDATION:"VALIDATION"};e.exports=t},8694:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(4420);i.outputJsonSync=n(6891);i.outputJson=r(n(3366));i.outputJSONSync=i.outputJSONSync;i.outputJSON=i.outputJson;i.writeJSON=i.writeJson;i.writeJSONSync=i.writeJsonSync;i.readJSON=i.readJson;i.readJSONSync=i.readJsonSync;e.exports=i},8703:function(e){"use strict";if(typeof process==="undefined"||!process.version||process.version.indexOf("v0.")===0||process.version.indexOf("v1.")===0&&process.version.indexOf("v1.8.")!==0){e.exports={nextTick:nextTick}}else{e.exports=process}function nextTick(e,t,n,r){if(typeof e!=="function"){throw new TypeError('"callback" argument must be a function')}var i=arguments.length;var o,a;switch(i){case 0:case 1:return process.nextTick(e);case 2:return process.nextTick(function afterTickOne(){e.call(null,t)});case 3:return process.nextTick(function afterTickTwo(){e.call(null,t,n)});case 4:return process.nextTick(function afterTickThree(){e.call(null,t,n,r)});default:o=new Array(i-1);a=0;while(a<o.length){o[a++]=arguments[a]}return process.nextTick(function afterTick(){e.apply(null,o)})}}},8709:function(e,t,n){"use strict";n.r(t);n.d(t,"email",function(){return r});const r=/.+@.+\..+$/},8711:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({path:"sources",includeBasic:["create","retrieve","update","setMetadata","getMetadata"],verify:i({method:"POST",path:"/{id}/verify",urlParams:["id"]})})},8715:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(7930));const o=n(6097);const a=r(n(2788));const s=r(n(8685));const c=r(n(462));class APIError extends Error{constructor(e,t,n){super();this.message=`${e} (${t.status})`;this.status=t.status;this.serverMessage=e;this.retryAfter=null;if(n){for(const e of Object.keys(n)){if(e!=="message"){this[e]=n[e]}}}if(t.status===429){const e=t.headers.get("Retry-After");if(e){this.retryAfter=parseInt(e,10)}}}}t.APIError=APIError;class TeamDeleted extends o.NowError{constructor(){super({code:"TEAM_DELETED",message:`Your team was deleted. You can switch to a different one using ${a.default("now switch")}.`,meta:{}})}}t.TeamDeleted=TeamDeleted;class InvalidToken extends o.NowError{constructor(){super({code:`NOT_AUTHORIZED`,message:`The specified token is not valid`,meta:{}})}}t.InvalidToken=InvalidToken;class MissingUser extends o.NowError{constructor(){super({code:"MISSING_USER",message:`Not able to load user, missing from response`,meta:{}})}}t.MissingUser=MissingUser;class DomainAlreadyExists extends o.NowError{constructor(e){super({code:"DOMAIN_ALREADY_EXISTS",meta:{domain:e},message:`The domain ${e} already exists under a different context.`})}}t.DomainAlreadyExists=DomainAlreadyExists;class DomainPermissionDenied extends o.NowError{constructor(e,t){super({code:"DOMAIN_PERMISSION_DENIED",meta:{domain:e,context:t},message:`You don't have access to the domain ${e} under ${t}.`})}}t.DomainPermissionDenied=DomainPermissionDenied;class DomainExternal extends o.NowError{constructor(e){super({code:"DOMAIN_EXTERNAL",meta:{domain:e},message:`The domain ${e} must point to zeit.world.`})}}t.DomainExternal=DomainExternal;class SourceNotFound extends o.NowError{constructor(){super({code:"SOURCE_NOT_FOUND",meta:{},message:`Not able to purchase. Please add a payment method using ${s.default("now billing add")}.`})}}t.SourceNotFound=SourceNotFound;class InvalidTransferAuthCode extends o.NowError{constructor(e,t){super({code:"INVALID_TRANSFER_AUTH_CODE",meta:{domain:e,authCode:t},message:`The provided auth code does not match with the one expected by the current registar`})}}t.InvalidTransferAuthCode=InvalidTransferAuthCode;class DomainRegistrationFailed extends o.NowError{constructor(e,t){super({code:"DOMAIN_REGISTRATION_FAILED",meta:{domain:e},message:t})}}t.DomainRegistrationFailed=DomainRegistrationFailed;class DomainNotFound extends o.NowError{constructor(e){super({code:"DOMAIN_NOT_FOUND",meta:{domain:e},message:`The domain ${e} can't be found.`})}}t.DomainNotFound=DomainNotFound;class DomainNotVerified extends o.NowError{constructor(e){super({code:"DOMAIN_NOT_VERIFIED",meta:{domain:e},message:`The domain ${e} is not verified.`})}}t.DomainNotVerified=DomainNotVerified;class DomainVerificationFailed extends o.NowError{constructor({domain:e,nsVerification:t,txtVerification:n,purchased:r=false}){super({code:"DOMAIN_VERIFICATION_FAILED",meta:{domain:e,nsVerification:t,txtVerification:n,purchased:r},message:`We can't verify the domain ${e}. Both Name Servers and DNS TXT verifications failed.`})}}t.DomainVerificationFailed=DomainVerificationFailed;class DomainNsNotVerifiedForWildcard extends o.NowError{constructor({domain:e,nsVerification:t}){super({code:"DOMAIN_NS_NOT_VERIFIED_FOR_WILDCARD",meta:{domain:e,nsVerification:t},message:`The domain ${e} is not verified by nameservers for wildcard alias.`})}}t.DomainNsNotVerifiedForWildcard=DomainNsNotVerifiedForWildcard;class InvalidDomain extends o.NowError{constructor(e,t){super({code:"INVALID_DOMAIN",meta:{domain:e},message:t||`The domain ${e} is not valid.`})}}t.InvalidDomain=InvalidDomain;class NotDomainOwner extends o.NowError{constructor(e){super({code:"NOT_DOMAIN_OWNER",meta:{},message:e})}}t.NotDomainOwner=NotDomainOwner;class InvalidDeploymentId extends o.NowError{constructor(e){super({code:"INVALID_DEPLOYMENT_ID",meta:{id:e},message:`The deployment id "${e}" is not valid.`})}}t.InvalidDeploymentId=InvalidDeploymentId;class UnsupportedTLD extends o.NowError{constructor(e){super({code:"UNSUPPORTED_TLD",meta:{domain:e},message:`The TLD for domain name ${e} is not supported.`})}}t.UnsupportedTLD=UnsupportedTLD;class DomainNotAvailable extends o.NowError{constructor(e){super({code:"DOMAIN_NOT_AVAILABLE",meta:{domain:e},message:`The domain ${e} is not available to be purchased.`})}}t.DomainNotAvailable=DomainNotAvailable;class DomainServiceNotAvailable extends o.NowError{constructor(e){super({code:"DOMAIN_SERVICE_NOT_AVAILABLE",meta:{domain:e},message:`The domain purchase is unavailable, try again later.`})}}t.DomainServiceNotAvailable=DomainServiceNotAvailable;class DomainNotTransferable extends o.NowError{constructor(e){super({code:"DOMAIN_NOT_TRANSFERABLE",meta:{domain:e},message:`The domain ${e} is not available to be transferred.`})}}t.DomainNotTransferable=DomainNotTransferable;class UnexpectedDomainPurchaseError extends o.NowError{constructor(e){super({code:"UNEXPECTED_DOMAIN_PURCHASE_ERROR",meta:{domain:e},message:`An unexpected error happened while purchasing.`})}}t.UnexpectedDomainPurchaseError=UnexpectedDomainPurchaseError;class DomainPaymentError extends o.NowError{constructor(){super({code:"DOMAIN_PAYMENT_ERROR",meta:{},message:`Your card was declined.`})}}t.DomainPaymentError=DomainPaymentError;class DomainPurchasePending extends o.NowError{constructor(e){super({code:"DOMAIN_PURCHASE_PENDING",meta:{domain:e},message:`The domain purchase for ${e} is pending.`})}}t.DomainPurchasePending=DomainPurchasePending;class UserAborted extends o.NowError{constructor(){super({code:"USER_ABORTED",meta:{},message:`The user aborted the operation.`})}}t.UserAborted=UserAborted;class CertNotFound extends o.NowError{constructor(e){super({code:"CERT_NOT_FOUND",meta:{id:e},message:`The cert ${e} can't be found.`})}}t.CertNotFound=CertNotFound;class CertsPermissionDenied extends o.NowError{constructor(e,t){super({code:"CERTS_PERMISSION_DENIED",meta:{domain:t},message:`You don't have access to ${t}'s certs under ${e}.`})}}t.CertsPermissionDenied=CertsPermissionDenied;class CertOrderNotFound extends o.NowError{constructor(e){super({code:"CERT_ORDER_NOT_FOUND",meta:{cns:e},message:`No cert order could be found for cns ${e.join(" ,")}`})}}t.CertOrderNotFound=CertOrderNotFound;class TooManyRequests extends o.NowError{constructor(e,t){super({code:"TOO_MANY_REQUESTS",meta:{api:e,retryAfter:t},message:`Rate limited. Too many requests to the same endpoint.`})}}t.TooManyRequests=TooManyRequests;class CertError extends o.NowError{constructor({cns:e,code:t,message:n,helpUrl:r}){super({code:`CERT_ERROR`,meta:{cns:e,code:t,helpUrl:r},message:n})}}t.CertError=CertError;class CertConfigurationError extends o.NowError{constructor({cns:e,message:t,external:n,type:r,helpUrl:i}){super({code:`CERT_CONFIGURATION_ERROR`,meta:{cns:e,helpUrl:i,external:n,type:r},message:t})}}t.CertConfigurationError=CertConfigurationError;class DeploymentNotFound extends o.NowError{constructor({context:e,id:t=""}){super({code:"DEPLOYMENT_NOT_FOUND",meta:{id:t,context:e},message:`Can't find the deployment ${t} under the context ${e}`})}}t.DeploymentNotFound=DeploymentNotFound;class DeploymentNotReady extends o.NowError{constructor({url:e=""}){super({code:"DEPLOYMENT_NOT_READY",meta:{url:e},message:`The deployment https://${e} is not ready.`})}}t.DeploymentNotReady=DeploymentNotReady;class DeploymentFailedAliasImpossible extends o.NowError{constructor(){super({code:"DEPLOYMENT_FAILED_ALIAS_IMPOSSIBLE",meta:{},message:`The deployment build has failed and cannot be aliased`})}}t.DeploymentFailedAliasImpossible=DeploymentFailedAliasImpossible;class DeploymentPermissionDenied extends o.NowError{constructor(e,t){super({code:"DEPLOYMENT_PERMISSION_DENIED",meta:{id:e,context:t},message:`You don't have access to the deployment ${e} under ${t}.`})}}t.DeploymentPermissionDenied=DeploymentPermissionDenied;class DeploymentTypeUnsupported extends o.NowError{constructor(){super({code:"DEPLOYMENT_TYPE_UNSUPPORTED",meta:{},message:`This region only accepts Serverless Docker Deployments`})}}t.DeploymentTypeUnsupported=DeploymentTypeUnsupported;class InvalidAlias extends o.NowError{constructor(e){super({code:"INVALID_ALIAS",meta:{alias:e},message:`The given alias ${e} is not valid`})}}t.InvalidAlias=InvalidAlias;class AliasInUse extends o.NowError{constructor(e){super({code:"ALIAS_IN_USE",meta:{alias:e},message:`The alias is already in use`})}}t.AliasInUse=AliasInUse;class CertMissing extends o.NowError{constructor(e){super({code:"ALIAS_IN_USE",meta:{domain:e},message:`The alias is already in use`})}}t.CertMissing=CertMissing;class ForbiddenScaleMinInstances extends o.NowError{constructor(e,t){super({code:"FORBIDDEN_SCALE_MIN_INSTANCES",meta:{url:e,max:t},message:`You can't scale to more than ${t} min instances with your current plan.`})}}t.ForbiddenScaleMinInstances=ForbiddenScaleMinInstances;class ForbiddenScaleMaxInstances extends o.NowError{constructor(e,t){super({code:"FORBIDDEN_SCALE_MAX_INSTANCES",meta:{url:e,max:t},message:`You can't scale to more than ${t} max instances with your current plan.`})}}t.ForbiddenScaleMaxInstances=ForbiddenScaleMaxInstances;class InvalidScaleMinMaxRelation extends o.NowError{constructor(e){super({code:"INVALID_SCALE_MIN_MAX_RELATION",meta:{url:e},message:`Min number of instances can't be higher than max.`})}}t.InvalidScaleMinMaxRelation=InvalidScaleMinMaxRelation;class NotSupportedMinScaleSlots extends o.NowError{constructor(e){super({code:"NOT_SUPPORTED_MIN_SCALE_SLOTS",meta:{url:e},message:`Cloud v2 does not yet support setting a non-zero min scale setting.`})}}t.NotSupportedMinScaleSlots=NotSupportedMinScaleSlots;class VerifyScaleTimeout extends o.NowError{constructor(e){super({code:"VERIFY_SCALE_TIMEOUT",meta:{timeout:e},message:`Instance verification timed out (${e}ms)`})}}t.VerifyScaleTimeout=VerifyScaleTimeout;class CantParseJSONFile extends o.NowError{constructor(e){super({code:"CANT_PARSE_JSON_FILE",meta:{file:e},message:`Can't parse json file`})}}t.CantParseJSONFile=CantParseJSONFile;class CantFindConfig extends o.NowError{constructor(e){super({code:"CANT_FIND_CONFIG",meta:{paths:e},message:`Can't find a configuration file in the given locations.`})}}t.CantFindConfig=CantFindConfig;class FileNotFound extends o.NowError{constructor(e){super({code:"FILE_NOT_FOUND",meta:{file:e},message:`Can't find a file in provided location '${e}'.`})}}t.FileNotFound=FileNotFound;class RulesFileValidationError extends o.NowError{constructor(e,t){super({code:"PATH_ALIAS_VALIDATION_ERROR",meta:{location:e,message:t},message:`The provided rules format in file for path alias are invalid`})}}t.RulesFileValidationError=RulesFileValidationError;class NoAliasInConfig extends o.NowError{constructor(){super({code:"NO_ALIAS_IN_CONFIG",meta:{},message:`There is no alias set up in config file.`})}}t.NoAliasInConfig=NoAliasInConfig;class InvalidAliasInConfig extends o.NowError{constructor(e){super({code:"INVALID_ALIAS_IN_CONFIG",meta:{value:e},message:`Invalid alias option in configuration.`})}}t.InvalidAliasInConfig=InvalidAliasInConfig;class RuleValidationFailed extends o.NowError{constructor(e){super({code:"RULE_VALIDATION_FAILED",meta:{message:e},message:`The server validation for rules failed`})}}t.RuleValidationFailed=RuleValidationFailed;class InvalidMinForScale extends o.NowError{constructor(e){super({code:"INVALID_MIN_FOR_SCALE",meta:{value:e},message:`Invalid <min> parameter "${e}". A number or "auto" were expected`})}}t.InvalidMinForScale=InvalidMinForScale;class InvalidArgsForMinMaxScale extends o.NowError{constructor(e){super({code:"INVALID_ARGS_FOR_MIN_MAX_SCALE",meta:{min:e},message:`Invalid number of arguments: expected <min> ("${e}") and [max]`})}}t.InvalidArgsForMinMaxScale=InvalidArgsForMinMaxScale;class InvalidMaxForScale extends o.NowError{constructor(e){super({code:"INVALID_MAX_FOR_SCALE",meta:{value:e},message:`Invalid <max> parameter "${e}". A number or "auto" were expected`})}}t.InvalidMaxForScale=InvalidMaxForScale;class InvalidCert extends o.NowError{constructor(){super({code:"INVALID_CERT",meta:{},message:`The provided custom certificate is invalid and couldn't be added`})}}t.InvalidCert=InvalidCert;class DNSPermissionDenied extends o.NowError{constructor(e){super({code:"DNS_PERMISSION_DENIED",meta:{domain:e},message:`You don't have access to the DNS records of ${e}.`})}}t.DNSPermissionDenied=DNSPermissionDenied;class DNSInvalidPort extends o.NowError{constructor(){super({code:"DNS_INVALID_PORT",meta:{},message:`Invalid <port> parameter. A number was expected`})}}t.DNSInvalidPort=DNSInvalidPort;class DNSInvalidType extends o.NowError{constructor(e){super({code:"DNS_INVALID_TYPE",meta:{type:e},message:`Invalid <type> parameter "${e}". Expected one of A, AAAA, ALIAS, CAA, CNAME, MX, SRV, TXT`})}}t.DNSInvalidType=DNSInvalidType;class DNSConflictingRecord extends o.NowError{constructor(e){super({code:"DNS_CONFLICTING_RECORD",meta:{record:e},message:` A conflicting record exists "${e}".`})}}t.DNSConflictingRecord=DNSConflictingRecord;class DomainRemovalConflict extends o.NowError{constructor({aliases:e,certs:t,message:n,pendingAsyncPurchase:r,resolvable:i,suffix:o,transferring:a}){super({code:"domain_removal_conflict",meta:{aliases:e,certs:t,pendingAsyncPurchase:r,suffix:o,transferring:a,resolvable:i},message:n})}}t.DomainRemovalConflict=DomainRemovalConflict;class DomainMoveConflict extends o.NowError{constructor({message:e,pendingAsyncPurchase:t,resolvable:n,suffix:r}){super({code:"domain_move_conflict",meta:{pendingAsyncPurchase:t,resolvable:n,suffix:r},message:e})}}t.DomainMoveConflict=DomainMoveConflict;class InvalidEmail extends o.NowError{constructor(e,t="Invalid Email"){super({code:"INVALID_EMAIL",message:t,meta:{email:e}})}}t.InvalidEmail=InvalidEmail;class AccountNotFound extends o.NowError{constructor(e,t=`Please sign up: https://zeit.co/signup`){super({code:"ACCOUNT_NOT_FOUND",message:t,meta:{email:e}})}}t.AccountNotFound=AccountNotFound;class InvalidMoveDestination extends o.NowError{constructor(e){super({code:"INVALID_MOVE_DESTINATION",message:`Invalid move destination "${e}"`,meta:{destination:e}})}}t.InvalidMoveDestination=InvalidMoveDestination;class InvalidMoveToken extends o.NowError{constructor(e){super({code:"INVALID_MOVE_TOKEN",message:`Invalid move token "${e}"`,meta:{token:e}})}}t.InvalidMoveToken=InvalidMoveToken;class NoBuilderCacheError extends o.NowError{constructor(){super({code:"NO_BUILDER_CACHE",message:"Could not find cache directory for now-builders.",meta:{}})}}t.NoBuilderCacheError=NoBuilderCacheError;class BuilderCacheCleanError extends o.NowError{constructor(e,t){super({code:"BUILDER_CACHE_CLEAN_FAILED",message:`Error cleaning builder cache: ${t}`,meta:{path:e}})}}t.BuilderCacheCleanError=BuilderCacheCleanError;class LambdaSizeExceededError extends o.NowError{constructor(e,t){super({code:"MAX_LAMBDA_SIZE_EXCEEDED",message:`The lambda function size (${i.default(e).toLowerCase()}) exceeds the maximum size limit (${i.default(t).toLowerCase()}). Learn more: https://zeit.co/docs/v2/deployments/concepts/lambdas/#maximum-bundle-size`,meta:{size:e,maxLambdaSize:t}})}}t.LambdaSizeExceededError=LambdaSizeExceededError;class MissingDotenvVarsError extends o.NowError{constructor(e,t){let n;if(t.length===1){n=`Env var ${JSON.stringify(t[0])} is not defined in ${c.default(e)} file`}else{n=[`The following env vars are not defined in ${c.default(e)} file:`,...t.map(e=>` - ${JSON.stringify(e)}`)].join("\n")}n+="\nRead more: https://err.sh/now/missing-env-file";super({code:"MISSING_DOTENV_VARS",message:n,meta:{type:e,missing:t}})}}t.MissingDotenvVarsError=MissingDotenvVarsError;class DeploymentsRateLimited extends o.NowError{constructor(e){super({code:"DEPLOYMENTS_RATE_LIMITED",meta:{},message:e})}}t.DeploymentsRateLimited=DeploymentsRateLimited;class BuildsRateLimited extends o.NowError{constructor(e){super({code:"BUILDS_RATE_LIMITED",meta:{},message:e})}}t.BuildsRateLimited=BuildsRateLimited;class ProjectNotFound extends o.NowError{constructor(e){super({code:"PROJECT_NOT_FOUND",meta:{},message:`There is no project for "${e}"`})}}t.ProjectNotFound=ProjectNotFound;class AliasDomainConfigured extends o.NowError{constructor({message:e}){super({code:"DOMAIN_CONFIGURED",meta:{},message:e})}}t.AliasDomainConfigured=AliasDomainConfigured;class MissingBuildScript extends o.NowError{constructor({message:e}){super({code:"MISSING_BUILD_SCRIPT",meta:{},message:e})}}t.MissingBuildScript=MissingBuildScript;class ConflictingFilePath extends o.NowError{constructor({message:e}){super({code:"CONFLICTING_FILE_PATH",meta:{},message:e})}}t.ConflictingFilePath=ConflictingFilePath;class ConflictingPathSegment extends o.NowError{constructor({message:e}){super({code:"CONFLICTING_PATH_SEGMENT",meta:{},message:e})}}t.ConflictingPathSegment=ConflictingPathSegment;class BuildError extends o.NowError{constructor({message:e,meta:t}){super({code:"BUILD_ERROR",meta:t,message:e})}}t.BuildError=BuildError},8727:function(e,t,n){e.exports=new(n(3465))},8731:function(e){var t="[object Object]";function isHostObject(e){var t=false;if(e!=null&&typeof e.toString!="function"){try{t=!!(e+"")}catch(e){}}return t}function overArg(e,t){return function(n){return e(t(n))}}var n=Function.prototype,r=Object.prototype;var i=n.toString;var o=r.hasOwnProperty;var a=i.call(Object);var s=r.toString;var c=overArg(Object.getPrototypeOf,Object);function isObjectLike(e){return!!e&&typeof e=="object"}function isPlainObject(e){if(!isObjectLike(e)||s.call(e)!=t||isHostObject(e)){return false}var n=c(e);if(n===null){return true}var r=o.call(n,"constructor")&&n.constructor;return typeof r=="function"&&r instanceof r&&i.call(r)==a}e.exports=isPlainObject},8732:function(e,t,n){if(typeof process!=="undefined"&&process.type==="renderer"){e.exports=n(2296)}else{e.exports=n(4751)}},8734:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=o(n(8715));const c=i(n(8950));const u=i(n(3147));function startCertOrder(e,t,n){return r(this,void 0,void 0,function*(){const n=c.default(`Issuing a certificate for ${a.default.bold(t.join(", "))}`);try{const r=yield e.fetch("/v3/now/certs",{method:"PATCH",body:{op:"finalizeOrder",domains:t}});n();return r}catch(e){n();if(e.code==="cert_order_not_found"){return new s.CertOrderNotFound(t)}const r=u.default(e,t);if(r){return r}throw e}})}t.default=startCertOrder},8737:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(5897));const a=n(6097);const s=i(n(7283));function getAppName(e,t,n){return r(this,void 0,void 0,function*(){if(t.name){return t.name}if(!t.type||t.type==="npm"){const e=yield s.default();if(!(e instanceof a.NowError)&&e){return e.name}}return o.default.basename(o.default.resolve(process.cwd(),n||""))})}t.default=getAppName},8740:function(e,t,n){var r=n(6857),i=n(649).inherits,o=n(5381);function DestroyableTransform(e){r.call(this,e);this._destroyed=false}i(DestroyableTransform,r);DestroyableTransform.prototype.destroy=function(e){if(this._destroyed)return;this._destroyed=true;var t=this;process.nextTick(function(){if(e)t.emit("error",e);t.emit("close")})};function noop(e,t,n){n(null,e)}function through2(e){return function(t,n,r){if(typeof t=="function"){r=n;n=t;t={}}if(typeof n!="function")n=noop;if(typeof r!="function")r=null;return e(t,n,r)}}e.exports=through2(function(e,t,n){var r=new DestroyableTransform(e);r._transform=t;if(n)r._flush=n;return r});e.exports.ctor=through2(function(e,t,n){function Through2(t){if(!(this instanceof Through2))return new Through2(t);this.options=o(e,t);DestroyableTransform.call(this,this.options)}i(Through2,DestroyableTransform);Through2.prototype._transform=t;if(n)Through2.prototype._flush=n;return Through2});e.exports.obj=through2(function(e,t,n){var r=new DestroyableTransform(o({objectMode:true,highWaterMark:16},e));r._transform=t;if(n)r._flush=n;return r})},8742:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function getSubcommand(e,t){const[n,...r]=e;for(const e of Object.keys(t)){if(e!=="default"&&t[e].indexOf(n)!==-1){return{subcommand:e,args:r}}}return{subcommand:t.default,args:e}}t.default=getSubcommand},8757:function(e,t,n){"use strict";var r=n(3189);var i=n(3818);var o=n(6433)("expand-brackets");var a=n(3462);var s=n(6875);var c=n(1974);function brackets(e,t){o("initializing from <%s>",__filename);var n=brackets.create(e,t);return n.output}brackets.match=function(e,t,n){e=[].concat(e);var r=a({},n);var i=brackets.matcher(t,r);var o=e.length;var s=-1;var c=[];while(++s<o){var u=e[s];if(i(u)){c.push(u)}}if(c.length===0){if(r.failglob===true){throw new Error('no matches found for "'+t+'"')}if(r.nonull===true||r.nullglob===true){return[t.split("\\").join("")]}}return c};brackets.isMatch=function(e,t,n){return brackets.matcher(t,n)(e)};brackets.matcher=function(e,t){var n=brackets.makeRe(e,t);return function(e){return n.test(e)}};brackets.makeRe=function(e,t){var n=brackets.create(e,t);var r=a({strictErrors:false},t);return c(n.output,r)};brackets.create=function(e,t){var n=t&&t.snapdragon||new s(t);r(n);i(n);var o=n.parse(e,t);o.input=e;var a=n.compile(o,t);a.input=e;return a};brackets.compilers=r;brackets.parsers=i;e.exports=brackets},8758:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(9544));const s=o(n(8715));const c=i(n(8952));const u=i(n(8950));function setScale(e,t,n,i,o){return r(this,void 0,void 0,function*(){const e=u.default(`Setting scale rules for ${c.default(Object.keys(i).map(e=>`${a.default.bold(e)}`))}`);try{yield t.fetch(`/v3/now/deployments/${encodeURIComponent(n)}/instances`,{method:"PUT",body:i});e()}catch(t){e();if(t.code==="forbidden_min_instances"){return new s.ForbiddenScaleMinInstances(o,t.max)}if(t.code==="forbidden_max_instances"){return new s.ForbiddenScaleMaxInstances(o,t.max)}if(t.code==="wrong_min_max_relation"){return new s.InvalidScaleMinMaxRelation(o)}if(t.code==="not_supported_min_scale_slots"){return new s.NotSupportedMinScaleSlots(o)}throw t}})}t.default=setScale},8759:function(e){e.exports=["ac","com.ac","edu.ac","gov.ac","net.ac","mil.ac","org.ac","ad","nom.ad","ae","co.ae","net.ae","org.ae","sch.ae","ac.ae","gov.ae","mil.ae","aero","accident-investigation.aero","accident-prevention.aero","aerobatic.aero","aeroclub.aero","aerodrome.aero","agents.aero","aircraft.aero","airline.aero","airport.aero","air-surveillance.aero","airtraffic.aero","air-traffic-control.aero","ambulance.aero","amusement.aero","association.aero","author.aero","ballooning.aero","broker.aero","caa.aero","cargo.aero","catering.aero","certification.aero","championship.aero","charter.aero","civilaviation.aero","club.aero","conference.aero","consultant.aero","consulting.aero","control.aero","council.aero","crew.aero","design.aero","dgca.aero","educator.aero","emergency.aero","engine.aero","engineer.aero","entertainment.aero","equipment.aero","exchange.aero","express.aero","federation.aero","flight.aero","freight.aero","fuel.aero","gliding.aero","government.aero","groundhandling.aero","group.aero","hanggliding.aero","homebuilt.aero","insurance.aero","journal.aero","journalist.aero","leasing.aero","logistics.aero","magazine.aero","maintenance.aero","media.aero","microlight.aero","modelling.aero","navigation.aero","parachuting.aero","paragliding.aero","passenger-association.aero","pilot.aero","press.aero","production.aero","recreation.aero","repbody.aero","res.aero","research.aero","rotorcraft.aero","safety.aero","scientist.aero","services.aero","show.aero","skydiving.aero","software.aero","student.aero","trader.aero","trading.aero","trainer.aero","union.aero","workinggroup.aero","works.aero","af","gov.af","com.af","org.af","net.af","edu.af","ag","com.ag","org.ag","net.ag","co.ag","nom.ag","ai","off.ai","com.ai","net.ai","org.ai","al","com.al","edu.al","gov.al","mil.al","net.al","org.al","am","ao","ed.ao","gv.ao","og.ao","co.ao","pb.ao","it.ao","aq","ar","com.ar","edu.ar","gob.ar","gov.ar","int.ar","mil.ar","musica.ar","net.ar","org.ar","tur.ar","arpa","e164.arpa","in-addr.arpa","ip6.arpa","iris.arpa","uri.arpa","urn.arpa","as","gov.as","asia","at","ac.at","co.at","gv.at","or.at","au","com.au","net.au","org.au","edu.au","gov.au","asn.au","id.au","info.au","conf.au","oz.au","act.au","nsw.au","nt.au","qld.au","sa.au","tas.au","vic.au","wa.au","act.edu.au","nsw.edu.au","nt.edu.au","qld.edu.au","sa.edu.au","tas.edu.au","vic.edu.au","wa.edu.au","qld.gov.au","sa.gov.au","tas.gov.au","vic.gov.au","wa.gov.au","aw","com.aw","ax","az","com.az","net.az","int.az","gov.az","org.az","edu.az","info.az","pp.az","mil.az","name.az","pro.az","biz.az","ba","com.ba","edu.ba","gov.ba","mil.ba","net.ba","org.ba","bb","biz.bb","co.bb","com.bb","edu.bb","gov.bb","info.bb","net.bb","org.bb","store.bb","tv.bb","*.bd","be","ac.be","bf","gov.bf","bg","a.bg","b.bg","c.bg","d.bg","e.bg","f.bg","g.bg","h.bg","i.bg","j.bg","k.bg","l.bg","m.bg","n.bg","o.bg","p.bg","q.bg","r.bg","s.bg","t.bg","u.bg","v.bg","w.bg","x.bg","y.bg","z.bg","0.bg","1.bg","2.bg","3.bg","4.bg","5.bg","6.bg","7.bg","8.bg","9.bg","bh","com.bh","edu.bh","net.bh","org.bh","gov.bh","bi","co.bi","com.bi","edu.bi","or.bi","org.bi","biz","bj","asso.bj","barreau.bj","gouv.bj","bm","com.bm","edu.bm","gov.bm","net.bm","org.bm","bn","com.bn","edu.bn","gov.bn","net.bn","org.bn","bo","com.bo","edu.bo","gob.bo","int.bo","org.bo","net.bo","mil.bo","tv.bo","web.bo","academia.bo","agro.bo","arte.bo","blog.bo","bolivia.bo","ciencia.bo","cooperativa.bo","democracia.bo","deporte.bo","ecologia.bo","economia.bo","empresa.bo","indigena.bo","industria.bo","info.bo","medicina.bo","movimiento.bo","musica.bo","natural.bo","nombre.bo","noticias.bo","patria.bo","politica.bo","profesional.bo","plurinacional.bo","pueblo.bo","revista.bo","salud.bo","tecnologia.bo","tksat.bo","transporte.bo","wiki.bo","br","9guacu.br","abc.br","adm.br","adv.br","agr.br","aju.br","am.br","anani.br","aparecida.br","arq.br","art.br","ato.br","b.br","barueri.br","belem.br","bhz.br","bio.br","blog.br","bmd.br","boavista.br","bsb.br","campinagrande.br","campinas.br","caxias.br","cim.br","cng.br","cnt.br","com.br","contagem.br","coop.br","cri.br","cuiaba.br","curitiba.br","def.br","ecn.br","eco.br","edu.br","emp.br","eng.br","esp.br","etc.br","eti.br","far.br","feira.br","flog.br","floripa.br","fm.br","fnd.br","fortal.br","fot.br","foz.br","fst.br","g12.br","ggf.br","goiania.br","gov.br","ac.gov.br","al.gov.br","am.gov.br","ap.gov.br","ba.gov.br","ce.gov.br","df.gov.br","es.gov.br","go.gov.br","ma.gov.br","mg.gov.br","ms.gov.br","mt.gov.br","pa.gov.br","pb.gov.br","pe.gov.br","pi.gov.br","pr.gov.br","rj.gov.br","rn.gov.br","ro.gov.br","rr.gov.br","rs.gov.br","sc.gov.br","se.gov.br","sp.gov.br","to.gov.br","gru.br","imb.br","ind.br","inf.br","jab.br","jampa.br","jdf.br","joinville.br","jor.br","jus.br","leg.br","lel.br","londrina.br","macapa.br","maceio.br","manaus.br","maringa.br","mat.br","med.br","mil.br","morena.br","mp.br","mus.br","natal.br","net.br","niteroi.br","*.nom.br","not.br","ntr.br","odo.br","ong.br","org.br","osasco.br","palmas.br","poa.br","ppg.br","pro.br","psc.br","psi.br","pvh.br","qsl.br","radio.br","rec.br","recife.br","ribeirao.br","rio.br","riobranco.br","riopreto.br","salvador.br","sampa.br","santamaria.br","santoandre.br","saobernardo.br","saogonca.br","sjc.br","slg.br","slz.br","sorocaba.br","srv.br","taxi.br","teo.br","the.br","tmp.br","trd.br","tur.br","tv.br","udi.br","vet.br","vix.br","vlog.br","wiki.br","zlg.br","bs","com.bs","net.bs","org.bs","edu.bs","gov.bs","bt","com.bt","edu.bt","gov.bt","net.bt","org.bt","bv","bw","co.bw","org.bw","by","gov.by","mil.by","com.by","of.by","bz","com.bz","net.bz","org.bz","edu.bz","gov.bz","ca","ab.ca","bc.ca","mb.ca","nb.ca","nf.ca","nl.ca","ns.ca","nt.ca","nu.ca","on.ca","pe.ca","qc.ca","sk.ca","yk.ca","gc.ca","cat","cc","cd","gov.cd","cf","cg","ch","ci","org.ci","or.ci","com.ci","co.ci","edu.ci","ed.ci","ac.ci","net.ci","go.ci","asso.ci","aéroport.ci","int.ci","presse.ci","md.ci","gouv.ci","*.ck","!www.ck","cl","gov.cl","gob.cl","co.cl","mil.cl","cm","co.cm","com.cm","gov.cm","net.cm","cn","ac.cn","com.cn","edu.cn","gov.cn","net.cn","org.cn","mil.cn","公司.cn","网络.cn","網絡.cn","ah.cn","bj.cn","cq.cn","fj.cn","gd.cn","gs.cn","gz.cn","gx.cn","ha.cn","hb.cn","he.cn","hi.cn","hl.cn","hn.cn","jl.cn","js.cn","jx.cn","ln.cn","nm.cn","nx.cn","qh.cn","sc.cn","sd.cn","sh.cn","sn.cn","sx.cn","tj.cn","xj.cn","xz.cn","yn.cn","zj.cn","hk.cn","mo.cn","tw.cn","co","arts.co","com.co","edu.co","firm.co","gov.co","info.co","int.co","mil.co","net.co","nom.co","org.co","rec.co","web.co","com","coop","cr","ac.cr","co.cr","ed.cr","fi.cr","go.cr","or.cr","sa.cr","cu","com.cu","edu.cu","org.cu","net.cu","gov.cu","inf.cu","cv","cw","com.cw","edu.cw","net.cw","org.cw","cx","gov.cx","cy","ac.cy","biz.cy","com.cy","ekloges.cy","gov.cy","ltd.cy","name.cy","net.cy","org.cy","parliament.cy","press.cy","pro.cy","tm.cy","cz","de","dj","dk","dm","com.dm","net.dm","org.dm","edu.dm","gov.dm","do","art.do","com.do","edu.do","gob.do","gov.do","mil.do","net.do","org.do","sld.do","web.do","dz","com.dz","org.dz","net.dz","gov.dz","edu.dz","asso.dz","pol.dz","art.dz","ec","com.ec","info.ec","net.ec","fin.ec","k12.ec","med.ec","pro.ec","org.ec","edu.ec","gov.ec","gob.ec","mil.ec","edu","ee","edu.ee","gov.ee","riik.ee","lib.ee","med.ee","com.ee","pri.ee","aip.ee","org.ee","fie.ee","eg","com.eg","edu.eg","eun.eg","gov.eg","mil.eg","name.eg","net.eg","org.eg","sci.eg","*.er","es","com.es","nom.es","org.es","gob.es","edu.es","et","com.et","gov.et","org.et","edu.et","biz.et","name.et","info.et","net.et","eu","fi","aland.fi","*.fj","*.fk","fm","fo","fr","com.fr","asso.fr","nom.fr","prd.fr","presse.fr","tm.fr","aeroport.fr","assedic.fr","avocat.fr","avoues.fr","cci.fr","chambagri.fr","chirurgiens-dentistes.fr","experts-comptables.fr","geometre-expert.fr","gouv.fr","greta.fr","huissier-justice.fr","medecin.fr","notaires.fr","pharmacien.fr","port.fr","veterinaire.fr","ga","gb","gd","ge","com.ge","edu.ge","gov.ge","org.ge","mil.ge","net.ge","pvt.ge","gf","gg","co.gg","net.gg","org.gg","gh","com.gh","edu.gh","gov.gh","org.gh","mil.gh","gi","com.gi","ltd.gi","gov.gi","mod.gi","edu.gi","org.gi","gl","co.gl","com.gl","edu.gl","net.gl","org.gl","gm","gn","ac.gn","com.gn","edu.gn","gov.gn","org.gn","net.gn","gov","gp","com.gp","net.gp","mobi.gp","edu.gp","org.gp","asso.gp","gq","gr","com.gr","edu.gr","net.gr","org.gr","gov.gr","gs","gt","com.gt","edu.gt","gob.gt","ind.gt","mil.gt","net.gt","org.gt","gu","com.gu","edu.gu","gov.gu","guam.gu","info.gu","net.gu","org.gu","web.gu","gw","gy","co.gy","com.gy","edu.gy","gov.gy","net.gy","org.gy","hk","com.hk","edu.hk","gov.hk","idv.hk","net.hk","org.hk","公司.hk","教育.hk","敎育.hk","政府.hk","個人.hk","个人.hk","箇人.hk","網络.hk","网络.hk","组織.hk","網絡.hk","网絡.hk","组织.hk","組織.hk","組织.hk","hm","hn","com.hn","edu.hn","org.hn","net.hn","mil.hn","gob.hn","hr","iz.hr","from.hr","name.hr","com.hr","ht","com.ht","shop.ht","firm.ht","info.ht","adult.ht","net.ht","pro.ht","org.ht","med.ht","art.ht","coop.ht","pol.ht","asso.ht","edu.ht","rel.ht","gouv.ht","perso.ht","hu","co.hu","info.hu","org.hu","priv.hu","sport.hu","tm.hu","2000.hu","agrar.hu","bolt.hu","casino.hu","city.hu","erotica.hu","erotika.hu","film.hu","forum.hu","games.hu","hotel.hu","ingatlan.hu","jogasz.hu","konyvelo.hu","lakas.hu","media.hu","news.hu","reklam.hu","sex.hu","shop.hu","suli.hu","szex.hu","tozsde.hu","utazas.hu","video.hu","id","ac.id","biz.id","co.id","desa.id","go.id","mil.id","my.id","net.id","or.id","ponpes.id","sch.id","web.id","ie","gov.ie","il","ac.il","co.il","gov.il","idf.il","k12.il","muni.il","net.il","org.il","im","ac.im","co.im","com.im","ltd.co.im","net.im","org.im","plc.co.im","tt.im","tv.im","in","co.in","firm.in","net.in","org.in","gen.in","ind.in","nic.in","ac.in","edu.in","res.in","gov.in","mil.in","info","int","eu.int","io","com.io","iq","gov.iq","edu.iq","mil.iq","com.iq","org.iq","net.iq","ir","ac.ir","co.ir","gov.ir","id.ir","net.ir","org.ir","sch.ir","ایران.ir","ايران.ir","is","net.is","com.is","edu.is","gov.is","org.is","int.is","it","gov.it","edu.it","abr.it","abruzzo.it","aosta-valley.it","aostavalley.it","bas.it","basilicata.it","cal.it","calabria.it","cam.it","campania.it","emilia-romagna.it","emiliaromagna.it","emr.it","friuli-v-giulia.it","friuli-ve-giulia.it","friuli-vegiulia.it","friuli-venezia-giulia.it","friuli-veneziagiulia.it","friuli-vgiulia.it","friuliv-giulia.it","friulive-giulia.it","friulivegiulia.it","friulivenezia-giulia.it","friuliveneziagiulia.it","friulivgiulia.it","fvg.it","laz.it","lazio.it","lig.it","liguria.it","lom.it","lombardia.it","lombardy.it","lucania.it","mar.it","marche.it","mol.it","molise.it","piedmont.it","piemonte.it","pmn.it","pug.it","puglia.it","sar.it","sardegna.it","sardinia.it","sic.it","sicilia.it","sicily.it","taa.it","tos.it","toscana.it","trentin-sud-tirol.it","trentin-süd-tirol.it","trentin-sudtirol.it","trentin-südtirol.it","trentin-sued-tirol.it","trentin-suedtirol.it","trentino-a-adige.it","trentino-aadige.it","trentino-alto-adige.it","trentino-altoadige.it","trentino-s-tirol.it","trentino-stirol.it","trentino-sud-tirol.it","trentino-süd-tirol.it","trentino-sudtirol.it","trentino-südtirol.it","trentino-sued-tirol.it","trentino-suedtirol.it","trentino.it","trentinoa-adige.it","trentinoaadige.it","trentinoalto-adige.it","trentinoaltoadige.it","trentinos-tirol.it","trentinostirol.it","trentinosud-tirol.it","trentinosüd-tirol.it","trentinosudtirol.it","trentinosüdtirol.it","trentinosued-tirol.it","trentinosuedtirol.it","trentinsud-tirol.it","trentinsüd-tirol.it","trentinsudtirol.it","trentinsüdtirol.it","trentinsued-tirol.it","trentinsuedtirol.it","tuscany.it","umb.it","umbria.it","val-d-aosta.it","val-daosta.it","vald-aosta.it","valdaosta.it","valle-aosta.it","valle-d-aosta.it","valle-daosta.it","valleaosta.it","valled-aosta.it","valledaosta.it","vallee-aoste.it","vallée-aoste.it","vallee-d-aoste.it","vallée-d-aoste.it","valleeaoste.it","valléeaoste.it","valleedaoste.it","valléedaoste.it","vao.it","vda.it","ven.it","veneto.it","ag.it","agrigento.it","al.it","alessandria.it","alto-adige.it","altoadige.it","an.it","ancona.it","andria-barletta-trani.it","andria-trani-barletta.it","andriabarlettatrani.it","andriatranibarletta.it","ao.it","aosta.it","aoste.it","ap.it","aq.it","aquila.it","ar.it","arezzo.it","ascoli-piceno.it","ascolipiceno.it","asti.it","at.it","av.it","avellino.it","ba.it","balsan-sudtirol.it","balsan-südtirol.it","balsan-suedtirol.it","balsan.it","bari.it","barletta-trani-andria.it","barlettatraniandria.it","belluno.it","benevento.it","bergamo.it","bg.it","bi.it","biella.it","bl.it","bn.it","bo.it","bologna.it","bolzano-altoadige.it","bolzano.it","bozen-sudtirol.it","bozen-südtirol.it","bozen-suedtirol.it","bozen.it","br.it","brescia.it","brindisi.it","bs.it","bt.it","bulsan-sudtirol.it","bulsan-südtirol.it","bulsan-suedtirol.it","bulsan.it","bz.it","ca.it","cagliari.it","caltanissetta.it","campidano-medio.it","campidanomedio.it","campobasso.it","carbonia-iglesias.it","carboniaiglesias.it","carrara-massa.it","carraramassa.it","caserta.it","catania.it","catanzaro.it","cb.it","ce.it","cesena-forli.it","cesena-forlì.it","cesenaforli.it","cesenaforlì.it","ch.it","chieti.it","ci.it","cl.it","cn.it","co.it","como.it","cosenza.it","cr.it","cremona.it","crotone.it","cs.it","ct.it","cuneo.it","cz.it","dell-ogliastra.it","dellogliastra.it","en.it","enna.it","fc.it","fe.it","fermo.it","ferrara.it","fg.it","fi.it","firenze.it","florence.it","fm.it","foggia.it","forli-cesena.it","forlì-cesena.it","forlicesena.it","forlìcesena.it","fr.it","frosinone.it","ge.it","genoa.it","genova.it","go.it","gorizia.it","gr.it","grosseto.it","iglesias-carbonia.it","iglesiascarbonia.it","im.it","imperia.it","is.it","isernia.it","kr.it","la-spezia.it","laquila.it","laspezia.it","latina.it","lc.it","le.it","lecce.it","lecco.it","li.it","livorno.it","lo.it","lodi.it","lt.it","lu.it","lucca.it","macerata.it","mantova.it","massa-carrara.it","massacarrara.it","matera.it","mb.it","mc.it","me.it","medio-campidano.it","mediocampidano.it","messina.it","mi.it","milan.it","milano.it","mn.it","mo.it","modena.it","monza-brianza.it","monza-e-della-brianza.it","monza.it","monzabrianza.it","monzaebrianza.it","monzaedellabrianza.it","ms.it","mt.it","na.it","naples.it","napoli.it","no.it","novara.it","nu.it","nuoro.it","og.it","ogliastra.it","olbia-tempio.it","olbiatempio.it","or.it","oristano.it","ot.it","pa.it","padova.it","padua.it","palermo.it","parma.it","pavia.it","pc.it","pd.it","pe.it","perugia.it","pesaro-urbino.it","pesarourbino.it","pescara.it","pg.it","pi.it","piacenza.it","pisa.it","pistoia.it","pn.it","po.it","pordenone.it","potenza.it","pr.it","prato.it","pt.it","pu.it","pv.it","pz.it","ra.it","ragusa.it","ravenna.it","rc.it","re.it","reggio-calabria.it","reggio-emilia.it","reggiocalabria.it","reggioemilia.it","rg.it","ri.it","rieti.it","rimini.it","rm.it","rn.it","ro.it","roma.it","rome.it","rovigo.it","sa.it","salerno.it","sassari.it","savona.it","si.it","siena.it","siracusa.it","so.it","sondrio.it","sp.it","sr.it","ss.it","suedtirol.it","südtirol.it","sv.it","ta.it","taranto.it","te.it","tempio-olbia.it","tempioolbia.it","teramo.it","terni.it","tn.it","to.it","torino.it","tp.it","tr.it","trani-andria-barletta.it","trani-barletta-andria.it","traniandriabarletta.it","tranibarlettaandria.it","trapani.it","trento.it","treviso.it","trieste.it","ts.it","turin.it","tv.it","ud.it","udine.it","urbino-pesaro.it","urbinopesaro.it","va.it","varese.it","vb.it","vc.it","ve.it","venezia.it","venice.it","verbania.it","vercelli.it","verona.it","vi.it","vibo-valentia.it","vibovalentia.it","vicenza.it","viterbo.it","vr.it","vs.it","vt.it","vv.it","je","co.je","net.je","org.je","*.jm","jo","com.jo","org.jo","net.jo","edu.jo","sch.jo","gov.jo","mil.jo","name.jo","jobs","jp","ac.jp","ad.jp","co.jp","ed.jp","go.jp","gr.jp","lg.jp","ne.jp","or.jp","aichi.jp","akita.jp","aomori.jp","chiba.jp","ehime.jp","fukui.jp","fukuoka.jp","fukushima.jp","gifu.jp","gunma.jp","hiroshima.jp","hokkaido.jp","hyogo.jp","ibaraki.jp","ishikawa.jp","iwate.jp","kagawa.jp","kagoshima.jp","kanagawa.jp","kochi.jp","kumamoto.jp","kyoto.jp","mie.jp","miyagi.jp","miyazaki.jp","nagano.jp","nagasaki.jp","nara.jp","niigata.jp","oita.jp","okayama.jp","okinawa.jp","osaka.jp","saga.jp","saitama.jp","shiga.jp","shimane.jp","shizuoka.jp","tochigi.jp","tokushima.jp","tokyo.jp","tottori.jp","toyama.jp","wakayama.jp","yamagata.jp","yamaguchi.jp","yamanashi.jp","栃木.jp","愛知.jp","愛媛.jp","兵庫.jp","熊本.jp","茨城.jp","北海道.jp","千葉.jp","和歌山.jp","長崎.jp","長野.jp","新潟.jp","青森.jp","静岡.jp","東京.jp","石川.jp","埼玉.jp","三重.jp","京都.jp","佐賀.jp","大分.jp","大阪.jp","奈良.jp","宮城.jp","宮崎.jp","富山.jp","山口.jp","山形.jp","山梨.jp","岩手.jp","岐阜.jp","岡山.jp","島根.jp","広島.jp","徳島.jp","沖縄.jp","滋賀.jp","神奈川.jp","福井.jp","福岡.jp","福島.jp","秋田.jp","群馬.jp","香川.jp","高知.jp","鳥取.jp","鹿児島.jp","*.kawasaki.jp","*.kitakyushu.jp","*.kobe.jp","*.nagoya.jp","*.sapporo.jp","*.sendai.jp","*.yokohama.jp","!city.kawasaki.jp","!city.kitakyushu.jp","!city.kobe.jp","!city.nagoya.jp","!city.sapporo.jp","!city.sendai.jp","!city.yokohama.jp","aisai.aichi.jp","ama.aichi.jp","anjo.aichi.jp","asuke.aichi.jp","chiryu.aichi.jp","chita.aichi.jp","fuso.aichi.jp","gamagori.aichi.jp","handa.aichi.jp","hazu.aichi.jp","hekinan.aichi.jp","higashiura.aichi.jp","ichinomiya.aichi.jp","inazawa.aichi.jp","inuyama.aichi.jp","isshiki.aichi.jp","iwakura.aichi.jp","kanie.aichi.jp","kariya.aichi.jp","kasugai.aichi.jp","kira.aichi.jp","kiyosu.aichi.jp","komaki.aichi.jp","konan.aichi.jp","kota.aichi.jp","mihama.aichi.jp","miyoshi.aichi.jp","nishio.aichi.jp","nisshin.aichi.jp","obu.aichi.jp","oguchi.aichi.jp","oharu.aichi.jp","okazaki.aichi.jp","owariasahi.aichi.jp","seto.aichi.jp","shikatsu.aichi.jp","shinshiro.aichi.jp","shitara.aichi.jp","tahara.aichi.jp","takahama.aichi.jp","tobishima.aichi.jp","toei.aichi.jp","togo.aichi.jp","tokai.aichi.jp","tokoname.aichi.jp","toyoake.aichi.jp","toyohashi.aichi.jp","toyokawa.aichi.jp","toyone.aichi.jp","toyota.aichi.jp","tsushima.aichi.jp","yatomi.aichi.jp","akita.akita.jp","daisen.akita.jp","fujisato.akita.jp","gojome.akita.jp","hachirogata.akita.jp","happou.akita.jp","higashinaruse.akita.jp","honjo.akita.jp","honjyo.akita.jp","ikawa.akita.jp","kamikoani.akita.jp","kamioka.akita.jp","katagami.akita.jp","kazuno.akita.jp","kitaakita.akita.jp","kosaka.akita.jp","kyowa.akita.jp","misato.akita.jp","mitane.akita.jp","moriyoshi.akita.jp","nikaho.akita.jp","noshiro.akita.jp","odate.akita.jp","oga.akita.jp","ogata.akita.jp","semboku.akita.jp","yokote.akita.jp","yurihonjo.akita.jp","aomori.aomori.jp","gonohe.aomori.jp","hachinohe.aomori.jp","hashikami.aomori.jp","hiranai.aomori.jp","hirosaki.aomori.jp","itayanagi.aomori.jp","kuroishi.aomori.jp","misawa.aomori.jp","mutsu.aomori.jp","nakadomari.aomori.jp","noheji.aomori.jp","oirase.aomori.jp","owani.aomori.jp","rokunohe.aomori.jp","sannohe.aomori.jp","shichinohe.aomori.jp","shingo.aomori.jp","takko.aomori.jp","towada.aomori.jp","tsugaru.aomori.jp","tsuruta.aomori.jp","abiko.chiba.jp","asahi.chiba.jp","chonan.chiba.jp","chosei.chiba.jp","choshi.chiba.jp","chuo.chiba.jp","funabashi.chiba.jp","futtsu.chiba.jp","hanamigawa.chiba.jp","ichihara.chiba.jp","ichikawa.chiba.jp","ichinomiya.chiba.jp","inzai.chiba.jp","isumi.chiba.jp","kamagaya.chiba.jp","kamogawa.chiba.jp","kashiwa.chiba.jp","katori.chiba.jp","katsuura.chiba.jp","kimitsu.chiba.jp","kisarazu.chiba.jp","kozaki.chiba.jp","kujukuri.chiba.jp","kyonan.chiba.jp","matsudo.chiba.jp","midori.chiba.jp","mihama.chiba.jp","minamiboso.chiba.jp","mobara.chiba.jp","mutsuzawa.chiba.jp","nagara.chiba.jp","nagareyama.chiba.jp","narashino.chiba.jp","narita.chiba.jp","noda.chiba.jp","oamishirasato.chiba.jp","omigawa.chiba.jp","onjuku.chiba.jp","otaki.chiba.jp","sakae.chiba.jp","sakura.chiba.jp","shimofusa.chiba.jp","shirako.chiba.jp","shiroi.chiba.jp","shisui.chiba.jp","sodegaura.chiba.jp","sosa.chiba.jp","tako.chiba.jp","tateyama.chiba.jp","togane.chiba.jp","tohnosho.chiba.jp","tomisato.chiba.jp","urayasu.chiba.jp","yachimata.chiba.jp","yachiyo.chiba.jp","yokaichiba.chiba.jp","yokoshibahikari.chiba.jp","yotsukaido.chiba.jp","ainan.ehime.jp","honai.ehime.jp","ikata.ehime.jp","imabari.ehime.jp","iyo.ehime.jp","kamijima.ehime.jp","kihoku.ehime.jp","kumakogen.ehime.jp","masaki.ehime.jp","matsuno.ehime.jp","matsuyama.ehime.jp","namikata.ehime.jp","niihama.ehime.jp","ozu.ehime.jp","saijo.ehime.jp","seiyo.ehime.jp","shikokuchuo.ehime.jp","tobe.ehime.jp","toon.ehime.jp","uchiko.ehime.jp","uwajima.ehime.jp","yawatahama.ehime.jp","echizen.fukui.jp","eiheiji.fukui.jp","fukui.fukui.jp","ikeda.fukui.jp","katsuyama.fukui.jp","mihama.fukui.jp","minamiechizen.fukui.jp","obama.fukui.jp","ohi.fukui.jp","ono.fukui.jp","sabae.fukui.jp","sakai.fukui.jp","takahama.fukui.jp","tsuruga.fukui.jp","wakasa.fukui.jp","ashiya.fukuoka.jp","buzen.fukuoka.jp","chikugo.fukuoka.jp","chikuho.fukuoka.jp","chikujo.fukuoka.jp","chikushino.fukuoka.jp","chikuzen.fukuoka.jp","chuo.fukuoka.jp","dazaifu.fukuoka.jp","fukuchi.fukuoka.jp","hakata.fukuoka.jp","higashi.fukuoka.jp","hirokawa.fukuoka.jp","hisayama.fukuoka.jp","iizuka.fukuoka.jp","inatsuki.fukuoka.jp","kaho.fukuoka.jp","kasuga.fukuoka.jp","kasuya.fukuoka.jp","kawara.fukuoka.jp","keisen.fukuoka.jp","koga.fukuoka.jp","kurate.fukuoka.jp","kurogi.fukuoka.jp","kurume.fukuoka.jp","minami.fukuoka.jp","miyako.fukuoka.jp","miyama.fukuoka.jp","miyawaka.fukuoka.jp","mizumaki.fukuoka.jp","munakata.fukuoka.jp","nakagawa.fukuoka.jp","nakama.fukuoka.jp","nishi.fukuoka.jp","nogata.fukuoka.jp","ogori.fukuoka.jp","okagaki.fukuoka.jp","okawa.fukuoka.jp","oki.fukuoka.jp","omuta.fukuoka.jp","onga.fukuoka.jp","onojo.fukuoka.jp","oto.fukuoka.jp","saigawa.fukuoka.jp","sasaguri.fukuoka.jp","shingu.fukuoka.jp","shinyoshitomi.fukuoka.jp","shonai.fukuoka.jp","soeda.fukuoka.jp","sue.fukuoka.jp","tachiarai.fukuoka.jp","tagawa.fukuoka.jp","takata.fukuoka.jp","toho.fukuoka.jp","toyotsu.fukuoka.jp","tsuiki.fukuoka.jp","ukiha.fukuoka.jp","umi.fukuoka.jp","usui.fukuoka.jp","yamada.fukuoka.jp","yame.fukuoka.jp","yanagawa.fukuoka.jp","yukuhashi.fukuoka.jp","aizubange.fukushima.jp","aizumisato.fukushima.jp","aizuwakamatsu.fukushima.jp","asakawa.fukushima.jp","bandai.fukushima.jp","date.fukushima.jp","fukushima.fukushima.jp","furudono.fukushima.jp","futaba.fukushima.jp","hanawa.fukushima.jp","higashi.fukushima.jp","hirata.fukushima.jp","hirono.fukushima.jp","iitate.fukushima.jp","inawashiro.fukushima.jp","ishikawa.fukushima.jp","iwaki.fukushima.jp","izumizaki.fukushima.jp","kagamiishi.fukushima.jp","kaneyama.fukushima.jp","kawamata.fukushima.jp","kitakata.fukushima.jp","kitashiobara.fukushima.jp","koori.fukushima.jp","koriyama.fukushima.jp","kunimi.fukushima.jp","miharu.fukushima.jp","mishima.fukushima.jp","namie.fukushima.jp","nango.fukushima.jp","nishiaizu.fukushima.jp","nishigo.fukushima.jp","okuma.fukushima.jp","omotego.fukushima.jp","ono.fukushima.jp","otama.fukushima.jp","samegawa.fukushima.jp","shimogo.fukushima.jp","shirakawa.fukushima.jp","showa.fukushima.jp","soma.fukushima.jp","sukagawa.fukushima.jp","taishin.fukushima.jp","tamakawa.fukushima.jp","tanagura.fukushima.jp","tenei.fukushima.jp","yabuki.fukushima.jp","yamato.fukushima.jp","yamatsuri.fukushima.jp","yanaizu.fukushima.jp","yugawa.fukushima.jp","anpachi.gifu.jp","ena.gifu.jp","gifu.gifu.jp","ginan.gifu.jp","godo.gifu.jp","gujo.gifu.jp","hashima.gifu.jp","hichiso.gifu.jp","hida.gifu.jp","higashishirakawa.gifu.jp","ibigawa.gifu.jp","ikeda.gifu.jp","kakamigahara.gifu.jp","kani.gifu.jp","kasahara.gifu.jp","kasamatsu.gifu.jp","kawaue.gifu.jp","kitagata.gifu.jp","mino.gifu.jp","minokamo.gifu.jp","mitake.gifu.jp","mizunami.gifu.jp","motosu.gifu.jp","nakatsugawa.gifu.jp","ogaki.gifu.jp","sakahogi.gifu.jp","seki.gifu.jp","sekigahara.gifu.jp","shirakawa.gifu.jp","tajimi.gifu.jp","takayama.gifu.jp","tarui.gifu.jp","toki.gifu.jp","tomika.gifu.jp","wanouchi.gifu.jp","yamagata.gifu.jp","yaotsu.gifu.jp","yoro.gifu.jp","annaka.gunma.jp","chiyoda.gunma.jp","fujioka.gunma.jp","higashiagatsuma.gunma.jp","isesaki.gunma.jp","itakura.gunma.jp","kanna.gunma.jp","kanra.gunma.jp","katashina.gunma.jp","kawaba.gunma.jp","kiryu.gunma.jp","kusatsu.gunma.jp","maebashi.gunma.jp","meiwa.gunma.jp","midori.gunma.jp","minakami.gunma.jp","naganohara.gunma.jp","nakanojo.gunma.jp","nanmoku.gunma.jp","numata.gunma.jp","oizumi.gunma.jp","ora.gunma.jp","ota.gunma.jp","shibukawa.gunma.jp","shimonita.gunma.jp","shinto.gunma.jp","showa.gunma.jp","takasaki.gunma.jp","takayama.gunma.jp","tamamura.gunma.jp","tatebayashi.gunma.jp","tomioka.gunma.jp","tsukiyono.gunma.jp","tsumagoi.gunma.jp","ueno.gunma.jp","yoshioka.gunma.jp","asaminami.hiroshima.jp","daiwa.hiroshima.jp","etajima.hiroshima.jp","fuchu.hiroshima.jp","fukuyama.hiroshima.jp","hatsukaichi.hiroshima.jp","higashihiroshima.hiroshima.jp","hongo.hiroshima.jp","jinsekikogen.hiroshima.jp","kaita.hiroshima.jp","kui.hiroshima.jp","kumano.hiroshima.jp","kure.hiroshima.jp","mihara.hiroshima.jp","miyoshi.hiroshima.jp","naka.hiroshima.jp","onomichi.hiroshima.jp","osakikamijima.hiroshima.jp","otake.hiroshima.jp","saka.hiroshima.jp","sera.hiroshima.jp","seranishi.hiroshima.jp","shinichi.hiroshima.jp","shobara.hiroshima.jp","takehara.hiroshima.jp","abashiri.hokkaido.jp","abira.hokkaido.jp","aibetsu.hokkaido.jp","akabira.hokkaido.jp","akkeshi.hokkaido.jp","asahikawa.hokkaido.jp","ashibetsu.hokkaido.jp","ashoro.hokkaido.jp","assabu.hokkaido.jp","atsuma.hokkaido.jp","bibai.hokkaido.jp","biei.hokkaido.jp","bifuka.hokkaido.jp","bihoro.hokkaido.jp","biratori.hokkaido.jp","chippubetsu.hokkaido.jp","chitose.hokkaido.jp","date.hokkaido.jp","ebetsu.hokkaido.jp","embetsu.hokkaido.jp","eniwa.hokkaido.jp","erimo.hokkaido.jp","esan.hokkaido.jp","esashi.hokkaido.jp","fukagawa.hokkaido.jp","fukushima.hokkaido.jp","furano.hokkaido.jp","furubira.hokkaido.jp","haboro.hokkaido.jp","hakodate.hokkaido.jp","hamatonbetsu.hokkaido.jp","hidaka.hokkaido.jp","higashikagura.hokkaido.jp","higashikawa.hokkaido.jp","hiroo.hokkaido.jp","hokuryu.hokkaido.jp","hokuto.hokkaido.jp","honbetsu.hokkaido.jp","horokanai.hokkaido.jp","horonobe.hokkaido.jp","ikeda.hokkaido.jp","imakane.hokkaido.jp","ishikari.hokkaido.jp","iwamizawa.hokkaido.jp","iwanai.hokkaido.jp","kamifurano.hokkaido.jp","kamikawa.hokkaido.jp","kamishihoro.hokkaido.jp","kamisunagawa.hokkaido.jp","kamoenai.hokkaido.jp","kayabe.hokkaido.jp","kembuchi.hokkaido.jp","kikonai.hokkaido.jp","kimobetsu.hokkaido.jp","kitahiroshima.hokkaido.jp","kitami.hokkaido.jp","kiyosato.hokkaido.jp","koshimizu.hokkaido.jp","kunneppu.hokkaido.jp","kuriyama.hokkaido.jp","kuromatsunai.hokkaido.jp","kushiro.hokkaido.jp","kutchan.hokkaido.jp","kyowa.hokkaido.jp","mashike.hokkaido.jp","matsumae.hokkaido.jp","mikasa.hokkaido.jp","minamifurano.hokkaido.jp","mombetsu.hokkaido.jp","moseushi.hokkaido.jp","mukawa.hokkaido.jp","muroran.hokkaido.jp","naie.hokkaido.jp","nakagawa.hokkaido.jp","nakasatsunai.hokkaido.jp","nakatombetsu.hokkaido.jp","nanae.hokkaido.jp","nanporo.hokkaido.jp","nayoro.hokkaido.jp","nemuro.hokkaido.jp","niikappu.hokkaido.jp","niki.hokkaido.jp","nishiokoppe.hokkaido.jp","noboribetsu.hokkaido.jp","numata.hokkaido.jp","obihiro.hokkaido.jp","obira.hokkaido.jp","oketo.hokkaido.jp","okoppe.hokkaido.jp","otaru.hokkaido.jp","otobe.hokkaido.jp","otofuke.hokkaido.jp","otoineppu.hokkaido.jp","oumu.hokkaido.jp","ozora.hokkaido.jp","pippu.hokkaido.jp","rankoshi.hokkaido.jp","rebun.hokkaido.jp","rikubetsu.hokkaido.jp","rishiri.hokkaido.jp","rishirifuji.hokkaido.jp","saroma.hokkaido.jp","sarufutsu.hokkaido.jp","shakotan.hokkaido.jp","shari.hokkaido.jp","shibecha.hokkaido.jp","shibetsu.hokkaido.jp","shikabe.hokkaido.jp","shikaoi.hokkaido.jp","shimamaki.hokkaido.jp","shimizu.hokkaido.jp","shimokawa.hokkaido.jp","shinshinotsu.hokkaido.jp","shintoku.hokkaido.jp","shiranuka.hokkaido.jp","shiraoi.hokkaido.jp","shiriuchi.hokkaido.jp","sobetsu.hokkaido.jp","sunagawa.hokkaido.jp","taiki.hokkaido.jp","takasu.hokkaido.jp","takikawa.hokkaido.jp","takinoue.hokkaido.jp","teshikaga.hokkaido.jp","tobetsu.hokkaido.jp","tohma.hokkaido.jp","tomakomai.hokkaido.jp","tomari.hokkaido.jp","toya.hokkaido.jp","toyako.hokkaido.jp","toyotomi.hokkaido.jp","toyoura.hokkaido.jp","tsubetsu.hokkaido.jp","tsukigata.hokkaido.jp","urakawa.hokkaido.jp","urausu.hokkaido.jp","uryu.hokkaido.jp","utashinai.hokkaido.jp","wakkanai.hokkaido.jp","wassamu.hokkaido.jp","yakumo.hokkaido.jp","yoichi.hokkaido.jp","aioi.hyogo.jp","akashi.hyogo.jp","ako.hyogo.jp","amagasaki.hyogo.jp","aogaki.hyogo.jp","asago.hyogo.jp","ashiya.hyogo.jp","awaji.hyogo.jp","fukusaki.hyogo.jp","goshiki.hyogo.jp","harima.hyogo.jp","himeji.hyogo.jp","ichikawa.hyogo.jp","inagawa.hyogo.jp","itami.hyogo.jp","kakogawa.hyogo.jp","kamigori.hyogo.jp","kamikawa.hyogo.jp","kasai.hyogo.jp","kasuga.hyogo.jp","kawanishi.hyogo.jp","miki.hyogo.jp","minamiawaji.hyogo.jp","nishinomiya.hyogo.jp","nishiwaki.hyogo.jp","ono.hyogo.jp","sanda.hyogo.jp","sannan.hyogo.jp","sasayama.hyogo.jp","sayo.hyogo.jp","shingu.hyogo.jp","shinonsen.hyogo.jp","shiso.hyogo.jp","sumoto.hyogo.jp","taishi.hyogo.jp","taka.hyogo.jp","takarazuka.hyogo.jp","takasago.hyogo.jp","takino.hyogo.jp","tamba.hyogo.jp","tatsuno.hyogo.jp","toyooka.hyogo.jp","yabu.hyogo.jp","yashiro.hyogo.jp","yoka.hyogo.jp","yokawa.hyogo.jp","ami.ibaraki.jp","asahi.ibaraki.jp","bando.ibaraki.jp","chikusei.ibaraki.jp","daigo.ibaraki.jp","fujishiro.ibaraki.jp","hitachi.ibaraki.jp","hitachinaka.ibaraki.jp","hitachiomiya.ibaraki.jp","hitachiota.ibaraki.jp","ibaraki.ibaraki.jp","ina.ibaraki.jp","inashiki.ibaraki.jp","itako.ibaraki.jp","iwama.ibaraki.jp","joso.ibaraki.jp","kamisu.ibaraki.jp","kasama.ibaraki.jp","kashima.ibaraki.jp","kasumigaura.ibaraki.jp","koga.ibaraki.jp","miho.ibaraki.jp","mito.ibaraki.jp","moriya.ibaraki.jp","naka.ibaraki.jp","namegata.ibaraki.jp","oarai.ibaraki.jp","ogawa.ibaraki.jp","omitama.ibaraki.jp","ryugasaki.ibaraki.jp","sakai.ibaraki.jp","sakuragawa.ibaraki.jp","shimodate.ibaraki.jp","shimotsuma.ibaraki.jp","shirosato.ibaraki.jp","sowa.ibaraki.jp","suifu.ibaraki.jp","takahagi.ibaraki.jp","tamatsukuri.ibaraki.jp","tokai.ibaraki.jp","tomobe.ibaraki.jp","tone.ibaraki.jp","toride.ibaraki.jp","tsuchiura.ibaraki.jp","tsukuba.ibaraki.jp","uchihara.ibaraki.jp","ushiku.ibaraki.jp","yachiyo.ibaraki.jp","yamagata.ibaraki.jp","yawara.ibaraki.jp","yuki.ibaraki.jp","anamizu.ishikawa.jp","hakui.ishikawa.jp","hakusan.ishikawa.jp","kaga.ishikawa.jp","kahoku.ishikawa.jp","kanazawa.ishikawa.jp","kawakita.ishikawa.jp","komatsu.ishikawa.jp","nakanoto.ishikawa.jp","nanao.ishikawa.jp","nomi.ishikawa.jp","nonoichi.ishikawa.jp","noto.ishikawa.jp","shika.ishikawa.jp","suzu.ishikawa.jp","tsubata.ishikawa.jp","tsurugi.ishikawa.jp","uchinada.ishikawa.jp","wajima.ishikawa.jp","fudai.iwate.jp","fujisawa.iwate.jp","hanamaki.iwate.jp","hiraizumi.iwate.jp","hirono.iwate.jp","ichinohe.iwate.jp","ichinoseki.iwate.jp","iwaizumi.iwate.jp","iwate.iwate.jp","joboji.iwate.jp","kamaishi.iwate.jp","kanegasaki.iwate.jp","karumai.iwate.jp","kawai.iwate.jp","kitakami.iwate.jp","kuji.iwate.jp","kunohe.iwate.jp","kuzumaki.iwate.jp","miyako.iwate.jp","mizusawa.iwate.jp","morioka.iwate.jp","ninohe.iwate.jp","noda.iwate.jp","ofunato.iwate.jp","oshu.iwate.jp","otsuchi.iwate.jp","rikuzentakata.iwate.jp","shiwa.iwate.jp","shizukuishi.iwate.jp","sumita.iwate.jp","tanohata.iwate.jp","tono.iwate.jp","yahaba.iwate.jp","yamada.iwate.jp","ayagawa.kagawa.jp","higashikagawa.kagawa.jp","kanonji.kagawa.jp","kotohira.kagawa.jp","manno.kagawa.jp","marugame.kagawa.jp","mitoyo.kagawa.jp","naoshima.kagawa.jp","sanuki.kagawa.jp","tadotsu.kagawa.jp","takamatsu.kagawa.jp","tonosho.kagawa.jp","uchinomi.kagawa.jp","utazu.kagawa.jp","zentsuji.kagawa.jp","akune.kagoshima.jp","amami.kagoshima.jp","hioki.kagoshima.jp","isa.kagoshima.jp","isen.kagoshima.jp","izumi.kagoshima.jp","kagoshima.kagoshima.jp","kanoya.kagoshima.jp","kawanabe.kagoshima.jp","kinko.kagoshima.jp","kouyama.kagoshima.jp","makurazaki.kagoshima.jp","matsumoto.kagoshima.jp","minamitane.kagoshima.jp","nakatane.kagoshima.jp","nishinoomote.kagoshima.jp","satsumasendai.kagoshima.jp","soo.kagoshima.jp","tarumizu.kagoshima.jp","yusui.kagoshima.jp","aikawa.kanagawa.jp","atsugi.kanagawa.jp","ayase.kanagawa.jp","chigasaki.kanagawa.jp","ebina.kanagawa.jp","fujisawa.kanagawa.jp","hadano.kanagawa.jp","hakone.kanagawa.jp","hiratsuka.kanagawa.jp","isehara.kanagawa.jp","kaisei.kanagawa.jp","kamakura.kanagawa.jp","kiyokawa.kanagawa.jp","matsuda.kanagawa.jp","minamiashigara.kanagawa.jp","miura.kanagawa.jp","nakai.kanagawa.jp","ninomiya.kanagawa.jp","odawara.kanagawa.jp","oi.kanagawa.jp","oiso.kanagawa.jp","sagamihara.kanagawa.jp","samukawa.kanagawa.jp","tsukui.kanagawa.jp","yamakita.kanagawa.jp","yamato.kanagawa.jp","yokosuka.kanagawa.jp","yugawara.kanagawa.jp","zama.kanagawa.jp","zushi.kanagawa.jp","aki.kochi.jp","geisei.kochi.jp","hidaka.kochi.jp","higashitsuno.kochi.jp","ino.kochi.jp","kagami.kochi.jp","kami.kochi.jp","kitagawa.kochi.jp","kochi.kochi.jp","mihara.kochi.jp","motoyama.kochi.jp","muroto.kochi.jp","nahari.kochi.jp","nakamura.kochi.jp","nankoku.kochi.jp","nishitosa.kochi.jp","niyodogawa.kochi.jp","ochi.kochi.jp","okawa.kochi.jp","otoyo.kochi.jp","otsuki.kochi.jp","sakawa.kochi.jp","sukumo.kochi.jp","susaki.kochi.jp","tosa.kochi.jp","tosashimizu.kochi.jp","toyo.kochi.jp","tsuno.kochi.jp","umaji.kochi.jp","yasuda.kochi.jp","yusuhara.kochi.jp","amakusa.kumamoto.jp","arao.kumamoto.jp","aso.kumamoto.jp","choyo.kumamoto.jp","gyokuto.kumamoto.jp","kamiamakusa.kumamoto.jp","kikuchi.kumamoto.jp","kumamoto.kumamoto.jp","mashiki.kumamoto.jp","mifune.kumamoto.jp","minamata.kumamoto.jp","minamioguni.kumamoto.jp","nagasu.kumamoto.jp","nishihara.kumamoto.jp","oguni.kumamoto.jp","ozu.kumamoto.jp","sumoto.kumamoto.jp","takamori.kumamoto.jp","uki.kumamoto.jp","uto.kumamoto.jp","yamaga.kumamoto.jp","yamato.kumamoto.jp","yatsushiro.kumamoto.jp","ayabe.kyoto.jp","fukuchiyama.kyoto.jp","higashiyama.kyoto.jp","ide.kyoto.jp","ine.kyoto.jp","joyo.kyoto.jp","kameoka.kyoto.jp","kamo.kyoto.jp","kita.kyoto.jp","kizu.kyoto.jp","kumiyama.kyoto.jp","kyotamba.kyoto.jp","kyotanabe.kyoto.jp","kyotango.kyoto.jp","maizuru.kyoto.jp","minami.kyoto.jp","minamiyamashiro.kyoto.jp","miyazu.kyoto.jp","muko.kyoto.jp","nagaokakyo.kyoto.jp","nakagyo.kyoto.jp","nantan.kyoto.jp","oyamazaki.kyoto.jp","sakyo.kyoto.jp","seika.kyoto.jp","tanabe.kyoto.jp","uji.kyoto.jp","ujitawara.kyoto.jp","wazuka.kyoto.jp","yamashina.kyoto.jp","yawata.kyoto.jp","asahi.mie.jp","inabe.mie.jp","ise.mie.jp","kameyama.mie.jp","kawagoe.mie.jp","kiho.mie.jp","kisosaki.mie.jp","kiwa.mie.jp","komono.mie.jp","kumano.mie.jp","kuwana.mie.jp","matsusaka.mie.jp","meiwa.mie.jp","mihama.mie.jp","minamiise.mie.jp","misugi.mie.jp","miyama.mie.jp","nabari.mie.jp","shima.mie.jp","suzuka.mie.jp","tado.mie.jp","taiki.mie.jp","taki.mie.jp","tamaki.mie.jp","toba.mie.jp","tsu.mie.jp","udono.mie.jp","ureshino.mie.jp","watarai.mie.jp","yokkaichi.mie.jp","furukawa.miyagi.jp","higashimatsushima.miyagi.jp","ishinomaki.miyagi.jp","iwanuma.miyagi.jp","kakuda.miyagi.jp","kami.miyagi.jp","kawasaki.miyagi.jp","marumori.miyagi.jp","matsushima.miyagi.jp","minamisanriku.miyagi.jp","misato.miyagi.jp","murata.miyagi.jp","natori.miyagi.jp","ogawara.miyagi.jp","ohira.miyagi.jp","onagawa.miyagi.jp","osaki.miyagi.jp","rifu.miyagi.jp","semine.miyagi.jp","shibata.miyagi.jp","shichikashuku.miyagi.jp","shikama.miyagi.jp","shiogama.miyagi.jp","shiroishi.miyagi.jp","tagajo.miyagi.jp","taiwa.miyagi.jp","tome.miyagi.jp","tomiya.miyagi.jp","wakuya.miyagi.jp","watari.miyagi.jp","yamamoto.miyagi.jp","zao.miyagi.jp","aya.miyazaki.jp","ebino.miyazaki.jp","gokase.miyazaki.jp","hyuga.miyazaki.jp","kadogawa.miyazaki.jp","kawaminami.miyazaki.jp","kijo.miyazaki.jp","kitagawa.miyazaki.jp","kitakata.miyazaki.jp","kitaura.miyazaki.jp","kobayashi.miyazaki.jp","kunitomi.miyazaki.jp","kushima.miyazaki.jp","mimata.miyazaki.jp","miyakonojo.miyazaki.jp","miyazaki.miyazaki.jp","morotsuka.miyazaki.jp","nichinan.miyazaki.jp","nishimera.miyazaki.jp","nobeoka.miyazaki.jp","saito.miyazaki.jp","shiiba.miyazaki.jp","shintomi.miyazaki.jp","takaharu.miyazaki.jp","takanabe.miyazaki.jp","takazaki.miyazaki.jp","tsuno.miyazaki.jp","achi.nagano.jp","agematsu.nagano.jp","anan.nagano.jp","aoki.nagano.jp","asahi.nagano.jp","azumino.nagano.jp","chikuhoku.nagano.jp","chikuma.nagano.jp","chino.nagano.jp","fujimi.nagano.jp","hakuba.nagano.jp","hara.nagano.jp","hiraya.nagano.jp","iida.nagano.jp","iijima.nagano.jp","iiyama.nagano.jp","iizuna.nagano.jp","ikeda.nagano.jp","ikusaka.nagano.jp","ina.nagano.jp","karuizawa.nagano.jp","kawakami.nagano.jp","kiso.nagano.jp","kisofukushima.nagano.jp","kitaaiki.nagano.jp","komagane.nagano.jp","komoro.nagano.jp","matsukawa.nagano.jp","matsumoto.nagano.jp","miasa.nagano.jp","minamiaiki.nagano.jp","minamimaki.nagano.jp","minamiminowa.nagano.jp","minowa.nagano.jp","miyada.nagano.jp","miyota.nagano.jp","mochizuki.nagano.jp","nagano.nagano.jp","nagawa.nagano.jp","nagiso.nagano.jp","nakagawa.nagano.jp","nakano.nagano.jp","nozawaonsen.nagano.jp","obuse.nagano.jp","ogawa.nagano.jp","okaya.nagano.jp","omachi.nagano.jp","omi.nagano.jp","ookuwa.nagano.jp","ooshika.nagano.jp","otaki.nagano.jp","otari.nagano.jp","sakae.nagano.jp","sakaki.nagano.jp","saku.nagano.jp","sakuho.nagano.jp","shimosuwa.nagano.jp","shinanomachi.nagano.jp","shiojiri.nagano.jp","suwa.nagano.jp","suzaka.nagano.jp","takagi.nagano.jp","takamori.nagano.jp","takayama.nagano.jp","tateshina.nagano.jp","tatsuno.nagano.jp","togakushi.nagano.jp","togura.nagano.jp","tomi.nagano.jp","ueda.nagano.jp","wada.nagano.jp","yamagata.nagano.jp","yamanouchi.nagano.jp","yasaka.nagano.jp","yasuoka.nagano.jp","chijiwa.nagasaki.jp","futsu.nagasaki.jp","goto.nagasaki.jp","hasami.nagasaki.jp","hirado.nagasaki.jp","iki.nagasaki.jp","isahaya.nagasaki.jp","kawatana.nagasaki.jp","kuchinotsu.nagasaki.jp","matsuura.nagasaki.jp","nagasaki.nagasaki.jp","obama.nagasaki.jp","omura.nagasaki.jp","oseto.nagasaki.jp","saikai.nagasaki.jp","sasebo.nagasaki.jp","seihi.nagasaki.jp","shimabara.nagasaki.jp","shinkamigoto.nagasaki.jp","togitsu.nagasaki.jp","tsushima.nagasaki.jp","unzen.nagasaki.jp","ando.nara.jp","gose.nara.jp","heguri.nara.jp","higashiyoshino.nara.jp","ikaruga.nara.jp","ikoma.nara.jp","kamikitayama.nara.jp","kanmaki.nara.jp","kashiba.nara.jp","kashihara.nara.jp","katsuragi.nara.jp","kawai.nara.jp","kawakami.nara.jp","kawanishi.nara.jp","koryo.nara.jp","kurotaki.nara.jp","mitsue.nara.jp","miyake.nara.jp","nara.nara.jp","nosegawa.nara.jp","oji.nara.jp","ouda.nara.jp","oyodo.nara.jp","sakurai.nara.jp","sango.nara.jp","shimoichi.nara.jp","shimokitayama.nara.jp","shinjo.nara.jp","soni.nara.jp","takatori.nara.jp","tawaramoto.nara.jp","tenkawa.nara.jp","tenri.nara.jp","uda.nara.jp","yamatokoriyama.nara.jp","yamatotakada.nara.jp","yamazoe.nara.jp","yoshino.nara.jp","aga.niigata.jp","agano.niigata.jp","gosen.niigata.jp","itoigawa.niigata.jp","izumozaki.niigata.jp","joetsu.niigata.jp","kamo.niigata.jp","kariwa.niigata.jp","kashiwazaki.niigata.jp","minamiuonuma.niigata.jp","mitsuke.niigata.jp","muika.niigata.jp","murakami.niigata.jp","myoko.niigata.jp","nagaoka.niigata.jp","niigata.niigata.jp","ojiya.niigata.jp","omi.niigata.jp","sado.niigata.jp","sanjo.niigata.jp","seiro.niigata.jp","seirou.niigata.jp","sekikawa.niigata.jp","shibata.niigata.jp","tagami.niigata.jp","tainai.niigata.jp","tochio.niigata.jp","tokamachi.niigata.jp","tsubame.niigata.jp","tsunan.niigata.jp","uonuma.niigata.jp","yahiko.niigata.jp","yoita.niigata.jp","yuzawa.niigata.jp","beppu.oita.jp","bungoono.oita.jp","bungotakada.oita.jp","hasama.oita.jp","hiji.oita.jp","himeshima.oita.jp","hita.oita.jp","kamitsue.oita.jp","kokonoe.oita.jp","kuju.oita.jp","kunisaki.oita.jp","kusu.oita.jp","oita.oita.jp","saiki.oita.jp","taketa.oita.jp","tsukumi.oita.jp","usa.oita.jp","usuki.oita.jp","yufu.oita.jp","akaiwa.okayama.jp","asakuchi.okayama.jp","bizen.okayama.jp","hayashima.okayama.jp","ibara.okayama.jp","kagamino.okayama.jp","kasaoka.okayama.jp","kibichuo.okayama.jp","kumenan.okayama.jp","kurashiki.okayama.jp","maniwa.okayama.jp","misaki.okayama.jp","nagi.okayama.jp","niimi.okayama.jp","nishiawakura.okayama.jp","okayama.okayama.jp","satosho.okayama.jp","setouchi.okayama.jp","shinjo.okayama.jp","shoo.okayama.jp","soja.okayama.jp","takahashi.okayama.jp","tamano.okayama.jp","tsuyama.okayama.jp","wake.okayama.jp","yakage.okayama.jp","aguni.okinawa.jp","ginowan.okinawa.jp","ginoza.okinawa.jp","gushikami.okinawa.jp","haebaru.okinawa.jp","higashi.okinawa.jp","hirara.okinawa.jp","iheya.okinawa.jp","ishigaki.okinawa.jp","ishikawa.okinawa.jp","itoman.okinawa.jp","izena.okinawa.jp","kadena.okinawa.jp","kin.okinawa.jp","kitadaito.okinawa.jp","kitanakagusuku.okinawa.jp","kumejima.okinawa.jp","kunigami.okinawa.jp","minamidaito.okinawa.jp","motobu.okinawa.jp","nago.okinawa.jp","naha.okinawa.jp","nakagusuku.okinawa.jp","nakijin.okinawa.jp","nanjo.okinawa.jp","nishihara.okinawa.jp","ogimi.okinawa.jp","okinawa.okinawa.jp","onna.okinawa.jp","shimoji.okinawa.jp","taketomi.okinawa.jp","tarama.okinawa.jp","tokashiki.okinawa.jp","tomigusuku.okinawa.jp","tonaki.okinawa.jp","urasoe.okinawa.jp","uruma.okinawa.jp","yaese.okinawa.jp","yomitan.okinawa.jp","yonabaru.okinawa.jp","yonaguni.okinawa.jp","zamami.okinawa.jp","abeno.osaka.jp","chihayaakasaka.osaka.jp","chuo.osaka.jp","daito.osaka.jp","fujiidera.osaka.jp","habikino.osaka.jp","hannan.osaka.jp","higashiosaka.osaka.jp","higashisumiyoshi.osaka.jp","higashiyodogawa.osaka.jp","hirakata.osaka.jp","ibaraki.osaka.jp","ikeda.osaka.jp","izumi.osaka.jp","izumiotsu.osaka.jp","izumisano.osaka.jp","kadoma.osaka.jp","kaizuka.osaka.jp","kanan.osaka.jp","kashiwara.osaka.jp","katano.osaka.jp","kawachinagano.osaka.jp","kishiwada.osaka.jp","kita.osaka.jp","kumatori.osaka.jp","matsubara.osaka.jp","minato.osaka.jp","minoh.osaka.jp","misaki.osaka.jp","moriguchi.osaka.jp","neyagawa.osaka.jp","nishi.osaka.jp","nose.osaka.jp","osakasayama.osaka.jp","sakai.osaka.jp","sayama.osaka.jp","sennan.osaka.jp","settsu.osaka.jp","shijonawate.osaka.jp","shimamoto.osaka.jp","suita.osaka.jp","tadaoka.osaka.jp","taishi.osaka.jp","tajiri.osaka.jp","takaishi.osaka.jp","takatsuki.osaka.jp","tondabayashi.osaka.jp","toyonaka.osaka.jp","toyono.osaka.jp","yao.osaka.jp","ariake.saga.jp","arita.saga.jp","fukudomi.saga.jp","genkai.saga.jp","hamatama.saga.jp","hizen.saga.jp","imari.saga.jp","kamimine.saga.jp","kanzaki.saga.jp","karatsu.saga.jp","kashima.saga.jp","kitagata.saga.jp","kitahata.saga.jp","kiyama.saga.jp","kouhoku.saga.jp","kyuragi.saga.jp","nishiarita.saga.jp","ogi.saga.jp","omachi.saga.jp","ouchi.saga.jp","saga.saga.jp","shiroishi.saga.jp","taku.saga.jp","tara.saga.jp","tosu.saga.jp","yoshinogari.saga.jp","arakawa.saitama.jp","asaka.saitama.jp","chichibu.saitama.jp","fujimi.saitama.jp","fujimino.saitama.jp","fukaya.saitama.jp","hanno.saitama.jp","hanyu.saitama.jp","hasuda.saitama.jp","hatogaya.saitama.jp","hatoyama.saitama.jp","hidaka.saitama.jp","higashichichibu.saitama.jp","higashimatsuyama.saitama.jp","honjo.saitama.jp","ina.saitama.jp","iruma.saitama.jp","iwatsuki.saitama.jp","kamiizumi.saitama.jp","kamikawa.saitama.jp","kamisato.saitama.jp","kasukabe.saitama.jp","kawagoe.saitama.jp","kawaguchi.saitama.jp","kawajima.saitama.jp","kazo.saitama.jp","kitamoto.saitama.jp","koshigaya.saitama.jp","kounosu.saitama.jp","kuki.saitama.jp","kumagaya.saitama.jp","matsubushi.saitama.jp","minano.saitama.jp","misato.saitama.jp","miyashiro.saitama.jp","miyoshi.saitama.jp","moroyama.saitama.jp","nagatoro.saitama.jp","namegawa.saitama.jp","niiza.saitama.jp","ogano.saitama.jp","ogawa.saitama.jp","ogose.saitama.jp","okegawa.saitama.jp","omiya.saitama.jp","otaki.saitama.jp","ranzan.saitama.jp","ryokami.saitama.jp","saitama.saitama.jp","sakado.saitama.jp","satte.saitama.jp","sayama.saitama.jp","shiki.saitama.jp","shiraoka.saitama.jp","soka.saitama.jp","sugito.saitama.jp","toda.saitama.jp","tokigawa.saitama.jp","tokorozawa.saitama.jp","tsurugashima.saitama.jp","urawa.saitama.jp","warabi.saitama.jp","yashio.saitama.jp","yokoze.saitama.jp","yono.saitama.jp","yorii.saitama.jp","yoshida.saitama.jp","yoshikawa.saitama.jp","yoshimi.saitama.jp","aisho.shiga.jp","gamo.shiga.jp","higashiomi.shiga.jp","hikone.shiga.jp","koka.shiga.jp","konan.shiga.jp","kosei.shiga.jp","koto.shiga.jp","kusatsu.shiga.jp","maibara.shiga.jp","moriyama.shiga.jp","nagahama.shiga.jp","nishiazai.shiga.jp","notogawa.shiga.jp","omihachiman.shiga.jp","otsu.shiga.jp","ritto.shiga.jp","ryuoh.shiga.jp","takashima.shiga.jp","takatsuki.shiga.jp","torahime.shiga.jp","toyosato.shiga.jp","yasu.shiga.jp","akagi.shimane.jp","ama.shimane.jp","gotsu.shimane.jp","hamada.shimane.jp","higashiizumo.shimane.jp","hikawa.shimane.jp","hikimi.shimane.jp","izumo.shimane.jp","kakinoki.shimane.jp","masuda.shimane.jp","matsue.shimane.jp","misato.shimane.jp","nishinoshima.shimane.jp","ohda.shimane.jp","okinoshima.shimane.jp","okuizumo.shimane.jp","shimane.shimane.jp","tamayu.shimane.jp","tsuwano.shimane.jp","unnan.shimane.jp","yakumo.shimane.jp","yasugi.shimane.jp","yatsuka.shimane.jp","arai.shizuoka.jp","atami.shizuoka.jp","fuji.shizuoka.jp","fujieda.shizuoka.jp","fujikawa.shizuoka.jp","fujinomiya.shizuoka.jp","fukuroi.shizuoka.jp","gotemba.shizuoka.jp","haibara.shizuoka.jp","hamamatsu.shizuoka.jp","higashiizu.shizuoka.jp","ito.shizuoka.jp","iwata.shizuoka.jp","izu.shizuoka.jp","izunokuni.shizuoka.jp","kakegawa.shizuoka.jp","kannami.shizuoka.jp","kawanehon.shizuoka.jp","kawazu.shizuoka.jp","kikugawa.shizuoka.jp","kosai.shizuoka.jp","makinohara.shizuoka.jp","matsuzaki.shizuoka.jp","minamiizu.shizuoka.jp","mishima.shizuoka.jp","morimachi.shizuoka.jp","nishiizu.shizuoka.jp","numazu.shizuoka.jp","omaezaki.shizuoka.jp","shimada.shizuoka.jp","shimizu.shizuoka.jp","shimoda.shizuoka.jp","shizuoka.shizuoka.jp","susono.shizuoka.jp","yaizu.shizuoka.jp","yoshida.shizuoka.jp","ashikaga.tochigi.jp","bato.tochigi.jp","haga.tochigi.jp","ichikai.tochigi.jp","iwafune.tochigi.jp","kaminokawa.tochigi.jp","kanuma.tochigi.jp","karasuyama.tochigi.jp","kuroiso.tochigi.jp","mashiko.tochigi.jp","mibu.tochigi.jp","moka.tochigi.jp","motegi.tochigi.jp","nasu.tochigi.jp","nasushiobara.tochigi.jp","nikko.tochigi.jp","nishikata.tochigi.jp","nogi.tochigi.jp","ohira.tochigi.jp","ohtawara.tochigi.jp","oyama.tochigi.jp","sakura.tochigi.jp","sano.tochigi.jp","shimotsuke.tochigi.jp","shioya.tochigi.jp","takanezawa.tochigi.jp","tochigi.tochigi.jp","tsuga.tochigi.jp","ujiie.tochigi.jp","utsunomiya.tochigi.jp","yaita.tochigi.jp","aizumi.tokushima.jp","anan.tokushima.jp","ichiba.tokushima.jp","itano.tokushima.jp","kainan.tokushima.jp","komatsushima.tokushima.jp","matsushige.tokushima.jp","mima.tokushima.jp","minami.tokushima.jp","miyoshi.tokushima.jp","mugi.tokushima.jp","nakagawa.tokushima.jp","naruto.tokushima.jp","sanagochi.tokushima.jp","shishikui.tokushima.jp","tokushima.tokushima.jp","wajiki.tokushima.jp","adachi.tokyo.jp","akiruno.tokyo.jp","akishima.tokyo.jp","aogashima.tokyo.jp","arakawa.tokyo.jp","bunkyo.tokyo.jp","chiyoda.tokyo.jp","chofu.tokyo.jp","chuo.tokyo.jp","edogawa.tokyo.jp","fuchu.tokyo.jp","fussa.tokyo.jp","hachijo.tokyo.jp","hachioji.tokyo.jp","hamura.tokyo.jp","higashikurume.tokyo.jp","higashimurayama.tokyo.jp","higashiyamato.tokyo.jp","hino.tokyo.jp","hinode.tokyo.jp","hinohara.tokyo.jp","inagi.tokyo.jp","itabashi.tokyo.jp","katsushika.tokyo.jp","kita.tokyo.jp","kiyose.tokyo.jp","kodaira.tokyo.jp","koganei.tokyo.jp","kokubunji.tokyo.jp","komae.tokyo.jp","koto.tokyo.jp","kouzushima.tokyo.jp","kunitachi.tokyo.jp","machida.tokyo.jp","meguro.tokyo.jp","minato.tokyo.jp","mitaka.tokyo.jp","mizuho.tokyo.jp","musashimurayama.tokyo.jp","musashino.tokyo.jp","nakano.tokyo.jp","nerima.tokyo.jp","ogasawara.tokyo.jp","okutama.tokyo.jp","ome.tokyo.jp","oshima.tokyo.jp","ota.tokyo.jp","setagaya.tokyo.jp","shibuya.tokyo.jp","shinagawa.tokyo.jp","shinjuku.tokyo.jp","suginami.tokyo.jp","sumida.tokyo.jp","tachikawa.tokyo.jp","taito.tokyo.jp","tama.tokyo.jp","toshima.tokyo.jp","chizu.tottori.jp","hino.tottori.jp","kawahara.tottori.jp","koge.tottori.jp","kotoura.tottori.jp","misasa.tottori.jp","nanbu.tottori.jp","nichinan.tottori.jp","sakaiminato.tottori.jp","tottori.tottori.jp","wakasa.tottori.jp","yazu.tottori.jp","yonago.tottori.jp","asahi.toyama.jp","fuchu.toyama.jp","fukumitsu.toyama.jp","funahashi.toyama.jp","himi.toyama.jp","imizu.toyama.jp","inami.toyama.jp","johana.toyama.jp","kamiichi.toyama.jp","kurobe.toyama.jp","nakaniikawa.toyama.jp","namerikawa.toyama.jp","nanto.toyama.jp","nyuzen.toyama.jp","oyabe.toyama.jp","taira.toyama.jp","takaoka.toyama.jp","tateyama.toyama.jp","toga.toyama.jp","tonami.toyama.jp","toyama.toyama.jp","unazuki.toyama.jp","uozu.toyama.jp","yamada.toyama.jp","arida.wakayama.jp","aridagawa.wakayama.jp","gobo.wakayama.jp","hashimoto.wakayama.jp","hidaka.wakayama.jp","hirogawa.wakayama.jp","inami.wakayama.jp","iwade.wakayama.jp","kainan.wakayama.jp","kamitonda.wakayama.jp","katsuragi.wakayama.jp","kimino.wakayama.jp","kinokawa.wakayama.jp","kitayama.wakayama.jp","koya.wakayama.jp","koza.wakayama.jp","kozagawa.wakayama.jp","kudoyama.wakayama.jp","kushimoto.wakayama.jp","mihama.wakayama.jp","misato.wakayama.jp","nachikatsuura.wakayama.jp","shingu.wakayama.jp","shirahama.wakayama.jp","taiji.wakayama.jp","tanabe.wakayama.jp","wakayama.wakayama.jp","yuasa.wakayama.jp","yura.wakayama.jp","asahi.yamagata.jp","funagata.yamagata.jp","higashine.yamagata.jp","iide.yamagata.jp","kahoku.yamagata.jp","kaminoyama.yamagata.jp","kaneyama.yamagata.jp","kawanishi.yamagata.jp","mamurogawa.yamagata.jp","mikawa.yamagata.jp","murayama.yamagata.jp","nagai.yamagata.jp","nakayama.yamagata.jp","nanyo.yamagata.jp","nishikawa.yamagata.jp","obanazawa.yamagata.jp","oe.yamagata.jp","oguni.yamagata.jp","ohkura.yamagata.jp","oishida.yamagata.jp","sagae.yamagata.jp","sakata.yamagata.jp","sakegawa.yamagata.jp","shinjo.yamagata.jp","shirataka.yamagata.jp","shonai.yamagata.jp","takahata.yamagata.jp","tendo.yamagata.jp","tozawa.yamagata.jp","tsuruoka.yamagata.jp","yamagata.yamagata.jp","yamanobe.yamagata.jp","yonezawa.yamagata.jp","yuza.yamagata.jp","abu.yamaguchi.jp","hagi.yamaguchi.jp","hikari.yamaguchi.jp","hofu.yamaguchi.jp","iwakuni.yamaguchi.jp","kudamatsu.yamaguchi.jp","mitou.yamaguchi.jp","nagato.yamaguchi.jp","oshima.yamaguchi.jp","shimonoseki.yamaguchi.jp","shunan.yamaguchi.jp","tabuse.yamaguchi.jp","tokuyama.yamaguchi.jp","toyota.yamaguchi.jp","ube.yamaguchi.jp","yuu.yamaguchi.jp","chuo.yamanashi.jp","doshi.yamanashi.jp","fuefuki.yamanashi.jp","fujikawa.yamanashi.jp","fujikawaguchiko.yamanashi.jp","fujiyoshida.yamanashi.jp","hayakawa.yamanashi.jp","hokuto.yamanashi.jp","ichikawamisato.yamanashi.jp","kai.yamanashi.jp","kofu.yamanashi.jp","koshu.yamanashi.jp","kosuge.yamanashi.jp","minami-alps.yamanashi.jp","minobu.yamanashi.jp","nakamichi.yamanashi.jp","nanbu.yamanashi.jp","narusawa.yamanashi.jp","nirasaki.yamanashi.jp","nishikatsura.yamanashi.jp","oshino.yamanashi.jp","otsuki.yamanashi.jp","showa.yamanashi.jp","tabayama.yamanashi.jp","tsuru.yamanashi.jp","uenohara.yamanashi.jp","yamanakako.yamanashi.jp","yamanashi.yamanashi.jp","ke","ac.ke","co.ke","go.ke","info.ke","me.ke","mobi.ke","ne.ke","or.ke","sc.ke","kg","org.kg","net.kg","com.kg","edu.kg","gov.kg","mil.kg","*.kh","ki","edu.ki","biz.ki","net.ki","org.ki","gov.ki","info.ki","com.ki","km","org.km","nom.km","gov.km","prd.km","tm.km","edu.km","mil.km","ass.km","com.km","coop.km","asso.km","presse.km","medecin.km","notaires.km","pharmaciens.km","veterinaire.km","gouv.km","kn","net.kn","org.kn","edu.kn","gov.kn","kp","com.kp","edu.kp","gov.kp","org.kp","rep.kp","tra.kp","kr","ac.kr","co.kr","es.kr","go.kr","hs.kr","kg.kr","mil.kr","ms.kr","ne.kr","or.kr","pe.kr","re.kr","sc.kr","busan.kr","chungbuk.kr","chungnam.kr","daegu.kr","daejeon.kr","gangwon.kr","gwangju.kr","gyeongbuk.kr","gyeonggi.kr","gyeongnam.kr","incheon.kr","jeju.kr","jeonbuk.kr","jeonnam.kr","seoul.kr","ulsan.kr","kw","com.kw","edu.kw","emb.kw","gov.kw","ind.kw","net.kw","org.kw","ky","edu.ky","gov.ky","com.ky","org.ky","net.ky","kz","org.kz","edu.kz","net.kz","gov.kz","mil.kz","com.kz","la","int.la","net.la","info.la","edu.la","gov.la","per.la","com.la","org.la","lb","com.lb","edu.lb","gov.lb","net.lb","org.lb","lc","com.lc","net.lc","co.lc","org.lc","edu.lc","gov.lc","li","lk","gov.lk","sch.lk","net.lk","int.lk","com.lk","org.lk","edu.lk","ngo.lk","soc.lk","web.lk","ltd.lk","assn.lk","grp.lk","hotel.lk","ac.lk","lr","com.lr","edu.lr","gov.lr","org.lr","net.lr","ls","co.ls","org.ls","lt","gov.lt","lu","lv","com.lv","edu.lv","gov.lv","org.lv","mil.lv","id.lv","net.lv","asn.lv","conf.lv","ly","com.ly","net.ly","gov.ly","plc.ly","edu.ly","sch.ly","med.ly","org.ly","id.ly","ma","co.ma","net.ma","gov.ma","org.ma","ac.ma","press.ma","mc","tm.mc","asso.mc","md","me","co.me","net.me","org.me","edu.me","ac.me","gov.me","its.me","priv.me","mg","org.mg","nom.mg","gov.mg","prd.mg","tm.mg","edu.mg","mil.mg","com.mg","co.mg","mh","mil","mk","com.mk","org.mk","net.mk","edu.mk","gov.mk","inf.mk","name.mk","ml","com.ml","edu.ml","gouv.ml","gov.ml","net.ml","org.ml","presse.ml","*.mm","mn","gov.mn","edu.mn","org.mn","mo","com.mo","net.mo","org.mo","edu.mo","gov.mo","mobi","mp","mq","mr","gov.mr","ms","com.ms","edu.ms","gov.ms","net.ms","org.ms","mt","com.mt","edu.mt","net.mt","org.mt","mu","com.mu","net.mu","org.mu","gov.mu","ac.mu","co.mu","or.mu","museum","academy.museum","agriculture.museum","air.museum","airguard.museum","alabama.museum","alaska.museum","amber.museum","ambulance.museum","american.museum","americana.museum","americanantiques.museum","americanart.museum","amsterdam.museum","and.museum","annefrank.museum","anthro.museum","anthropology.museum","antiques.museum","aquarium.museum","arboretum.museum","archaeological.museum","archaeology.museum","architecture.museum","art.museum","artanddesign.museum","artcenter.museum","artdeco.museum","arteducation.museum","artgallery.museum","arts.museum","artsandcrafts.museum","asmatart.museum","assassination.museum","assisi.museum","association.museum","astronomy.museum","atlanta.museum","austin.museum","australia.museum","automotive.museum","aviation.museum","axis.museum","badajoz.museum","baghdad.museum","bahn.museum","bale.museum","baltimore.museum","barcelona.museum","baseball.museum","basel.museum","baths.museum","bauern.museum","beauxarts.museum","beeldengeluid.museum","bellevue.museum","bergbau.museum","berkeley.museum","berlin.museum","bern.museum","bible.museum","bilbao.museum","bill.museum","birdart.museum","birthplace.museum","bonn.museum","boston.museum","botanical.museum","botanicalgarden.museum","botanicgarden.museum","botany.museum","brandywinevalley.museum","brasil.museum","bristol.museum","british.museum","britishcolumbia.museum","broadcast.museum","brunel.museum","brussel.museum","brussels.museum","bruxelles.museum","building.museum","burghof.museum","bus.museum","bushey.museum","cadaques.museum","california.museum","cambridge.museum","can.museum","canada.museum","capebreton.museum","carrier.museum","cartoonart.museum","casadelamoneda.museum","castle.museum","castres.museum","celtic.museum","center.museum","chattanooga.museum","cheltenham.museum","chesapeakebay.museum","chicago.museum","children.museum","childrens.museum","childrensgarden.museum","chiropractic.museum","chocolate.museum","christiansburg.museum","cincinnati.museum","cinema.museum","circus.museum","civilisation.museum","civilization.museum","civilwar.museum","clinton.museum","clock.museum","coal.museum","coastaldefence.museum","cody.museum","coldwar.museum","collection.museum","colonialwilliamsburg.museum","coloradoplateau.museum","columbia.museum","columbus.museum","communication.museum","communications.museum","community.museum","computer.museum","computerhistory.museum","comunicações.museum","contemporary.museum","contemporaryart.museum","convent.museum","copenhagen.museum","corporation.museum","correios-e-telecomunicações.museum","corvette.museum","costume.museum","countryestate.museum","county.museum","crafts.museum","cranbrook.museum","creation.museum","cultural.museum","culturalcenter.museum","culture.museum","cyber.museum","cymru.museum","dali.museum","dallas.museum","database.museum","ddr.museum","decorativearts.museum","delaware.museum","delmenhorst.museum","denmark.museum","depot.museum","design.museum","detroit.museum","dinosaur.museum","discovery.museum","dolls.museum","donostia.museum","durham.museum","eastafrica.museum","eastcoast.museum","education.museum","educational.museum","egyptian.museum","eisenbahn.museum","elburg.museum","elvendrell.museum","embroidery.museum","encyclopedic.museum","england.museum","entomology.museum","environment.museum","environmentalconservation.museum","epilepsy.museum","essex.museum","estate.museum","ethnology.museum","exeter.museum","exhibition.museum","family.museum","farm.museum","farmequipment.museum","farmers.museum","farmstead.museum","field.museum","figueres.museum","filatelia.museum","film.museum","fineart.museum","finearts.museum","finland.museum","flanders.museum","florida.museum","force.museum","fortmissoula.museum","fortworth.museum","foundation.museum","francaise.museum","frankfurt.museum","franziskaner.museum","freemasonry.museum","freiburg.museum","fribourg.museum","frog.museum","fundacio.museum","furniture.museum","gallery.museum","garden.museum","gateway.museum","geelvinck.museum","gemological.museum","geology.museum","georgia.museum","giessen.museum","glas.museum","glass.museum","gorge.museum","grandrapids.museum","graz.museum","guernsey.museum","halloffame.museum","hamburg.museum","handson.museum","harvestcelebration.museum","hawaii.museum","health.museum","heimatunduhren.museum","hellas.museum","helsinki.museum","hembygdsforbund.museum","heritage.museum","histoire.museum","historical.museum","historicalsociety.museum","historichouses.museum","historisch.museum","historisches.museum","history.museum","historyofscience.museum","horology.museum","house.museum","humanities.museum","illustration.museum","imageandsound.museum","indian.museum","indiana.museum","indianapolis.museum","indianmarket.museum","intelligence.museum","interactive.museum","iraq.museum","iron.museum","isleofman.museum","jamison.museum","jefferson.museum","jerusalem.museum","jewelry.museum","jewish.museum","jewishart.museum","jfk.museum","journalism.museum","judaica.museum","judygarland.museum","juedisches.museum","juif.museum","karate.museum","karikatur.museum","kids.museum","koebenhavn.museum","koeln.museum","kunst.museum","kunstsammlung.museum","kunstunddesign.museum","labor.museum","labour.museum","lajolla.museum","lancashire.museum","landes.museum","lans.museum","läns.museum","larsson.museum","lewismiller.museum","lincoln.museum","linz.museum","living.museum","livinghistory.museum","localhistory.museum","london.museum","losangeles.museum","louvre.museum","loyalist.museum","lucerne.museum","luxembourg.museum","luzern.museum","mad.museum","madrid.museum","mallorca.museum","manchester.museum","mansion.museum","mansions.museum","manx.museum","marburg.museum","maritime.museum","maritimo.museum","maryland.museum","marylhurst.museum","media.museum","medical.museum","medizinhistorisches.museum","meeres.museum","memorial.museum","mesaverde.museum","michigan.museum","midatlantic.museum","military.museum","mill.museum","miners.museum","mining.museum","minnesota.museum","missile.museum","missoula.museum","modern.museum","moma.museum","money.museum","monmouth.museum","monticello.museum","montreal.museum","moscow.museum","motorcycle.museum","muenchen.museum","muenster.museum","mulhouse.museum","muncie.museum","museet.museum","museumcenter.museum","museumvereniging.museum","music.museum","national.museum","nationalfirearms.museum","nationalheritage.museum","nativeamerican.museum","naturalhistory.museum","naturalhistorymuseum.museum","naturalsciences.museum","nature.museum","naturhistorisches.museum","natuurwetenschappen.museum","naumburg.museum","naval.museum","nebraska.museum","neues.museum","newhampshire.museum","newjersey.museum","newmexico.museum","newport.museum","newspaper.museum","newyork.museum","niepce.museum","norfolk.museum","north.museum","nrw.museum","nuernberg.museum","nuremberg.museum","nyc.museum","nyny.museum","oceanographic.museum","oceanographique.museum","omaha.museum","online.museum","ontario.museum","openair.museum","oregon.museum","oregontrail.museum","otago.museum","oxford.museum","pacific.museum","paderborn.museum","palace.museum","paleo.museum","palmsprings.museum","panama.museum","paris.museum","pasadena.museum","pharmacy.museum","philadelphia.museum","philadelphiaarea.museum","philately.museum","phoenix.museum","photography.museum","pilots.museum","pittsburgh.museum","planetarium.museum","plantation.museum","plants.museum","plaza.museum","portal.museum","portland.museum","portlligat.museum","posts-and-telecommunications.museum","preservation.museum","presidio.museum","press.museum","project.museum","public.museum","pubol.museum","quebec.museum","railroad.museum","railway.museum","research.museum","resistance.museum","riodejaneiro.museum","rochester.museum","rockart.museum","roma.museum","russia.museum","saintlouis.museum","salem.museum","salvadordali.museum","salzburg.museum","sandiego.museum","sanfrancisco.museum","santabarbara.museum","santacruz.museum","santafe.museum","saskatchewan.museum","satx.museum","savannahga.museum","schlesisches.museum","schoenbrunn.museum","schokoladen.museum","school.museum","schweiz.museum","science.museum","scienceandhistory.museum","scienceandindustry.museum","sciencecenter.museum","sciencecenters.museum","science-fiction.museum","sciencehistory.museum","sciences.museum","sciencesnaturelles.museum","scotland.museum","seaport.museum","settlement.museum","settlers.museum","shell.museum","sherbrooke.museum","sibenik.museum","silk.museum","ski.museum","skole.museum","society.museum","sologne.museum","soundandvision.museum","southcarolina.museum","southwest.museum","space.museum","spy.museum","square.museum","stadt.museum","stalbans.museum","starnberg.museum","state.museum","stateofdelaware.museum","station.museum","steam.museum","steiermark.museum","stjohn.museum","stockholm.museum","stpetersburg.museum","stuttgart.museum","suisse.museum","surgeonshall.museum","surrey.museum","svizzera.museum","sweden.museum","sydney.museum","tank.museum","tcm.museum","technology.museum","telekommunikation.museum","television.museum","texas.museum","textile.museum","theater.museum","time.museum","timekeeping.museum","topology.museum","torino.museum","touch.museum","town.museum","transport.museum","tree.museum","trolley.museum","trust.museum","trustee.museum","uhren.museum","ulm.museum","undersea.museum","university.museum","usa.museum","usantiques.museum","usarts.museum","uscountryestate.museum","usculture.museum","usdecorativearts.museum","usgarden.museum","ushistory.museum","ushuaia.museum","uslivinghistory.museum","utah.museum","uvic.museum","valley.museum","vantaa.museum","versailles.museum","viking.museum","village.museum","virginia.museum","virtual.museum","virtuel.museum","vlaanderen.museum","volkenkunde.museum","wales.museum","wallonie.museum","war.museum","washingtondc.museum","watchandclock.museum","watch-and-clock.museum","western.museum","westfalen.museum","whaling.museum","wildlife.museum","williamsburg.museum","windmill.museum","workshop.museum","york.museum","yorkshire.museum","yosemite.museum","youth.museum","zoological.museum","zoology.museum","ירושלים.museum","иком.museum","mv","aero.mv","biz.mv","com.mv","coop.mv","edu.mv","gov.mv","info.mv","int.mv","mil.mv","museum.mv","name.mv","net.mv","org.mv","pro.mv","mw","ac.mw","biz.mw","co.mw","com.mw","coop.mw","edu.mw","gov.mw","int.mw","museum.mw","net.mw","org.mw","mx","com.mx","org.mx","gob.mx","edu.mx","net.mx","my","com.my","net.my","org.my","gov.my","edu.my","mil.my","name.my","mz","ac.mz","adv.mz","co.mz","edu.mz","gov.mz","mil.mz","net.mz","org.mz","na","info.na","pro.na","name.na","school.na","or.na","dr.na","us.na","mx.na","ca.na","in.na","cc.na","tv.na","ws.na","mobi.na","co.na","com.na","org.na","name","nc","asso.nc","nom.nc","ne","net","nf","com.nf","net.nf","per.nf","rec.nf","web.nf","arts.nf","firm.nf","info.nf","other.nf","store.nf","ng","com.ng","edu.ng","gov.ng","i.ng","mil.ng","mobi.ng","name.ng","net.ng","org.ng","sch.ng","ni","ac.ni","biz.ni","co.ni","com.ni","edu.ni","gob.ni","in.ni","info.ni","int.ni","mil.ni","net.ni","nom.ni","org.ni","web.ni","nl","bv.nl","no","fhs.no","vgs.no","fylkesbibl.no","folkebibl.no","museum.no","idrett.no","priv.no","mil.no","stat.no","dep.no","kommune.no","herad.no","aa.no","ah.no","bu.no","fm.no","hl.no","hm.no","jan-mayen.no","mr.no","nl.no","nt.no","of.no","ol.no","oslo.no","rl.no","sf.no","st.no","svalbard.no","tm.no","tr.no","va.no","vf.no","gs.aa.no","gs.ah.no","gs.bu.no","gs.fm.no","gs.hl.no","gs.hm.no","gs.jan-mayen.no","gs.mr.no","gs.nl.no","gs.nt.no","gs.of.no","gs.ol.no","gs.oslo.no","gs.rl.no","gs.sf.no","gs.st.no","gs.svalbard.no","gs.tm.no","gs.tr.no","gs.va.no","gs.vf.no","akrehamn.no","åkrehamn.no","algard.no","ålgård.no","arna.no","brumunddal.no","bryne.no","bronnoysund.no","brønnøysund.no","drobak.no","drøbak.no","egersund.no","fetsund.no","floro.no","florø.no","fredrikstad.no","hokksund.no","honefoss.no","hønefoss.no","jessheim.no","jorpeland.no","jørpeland.no","kirkenes.no","kopervik.no","krokstadelva.no","langevag.no","langevåg.no","leirvik.no","mjondalen.no","mjøndalen.no","mo-i-rana.no","mosjoen.no","mosjøen.no","nesoddtangen.no","orkanger.no","osoyro.no","osøyro.no","raholt.no","råholt.no","sandnessjoen.no","sandnessjøen.no","skedsmokorset.no","slattum.no","spjelkavik.no","stathelle.no","stavern.no","stjordalshalsen.no","stjørdalshalsen.no","tananger.no","tranby.no","vossevangen.no","afjord.no","åfjord.no","agdenes.no","al.no","ål.no","alesund.no","ålesund.no","alstahaug.no","alta.no","áltá.no","alaheadju.no","álaheadju.no","alvdal.no","amli.no","åmli.no","amot.no","åmot.no","andebu.no","andoy.no","andøy.no","andasuolo.no","ardal.no","årdal.no","aremark.no","arendal.no","ås.no","aseral.no","åseral.no","asker.no","askim.no","askvoll.no","askoy.no","askøy.no","asnes.no","åsnes.no","audnedaln.no","aukra.no","aure.no","aurland.no","aurskog-holand.no","aurskog-høland.no","austevoll.no","austrheim.no","averoy.no","averøy.no","balestrand.no","ballangen.no","balat.no","bálát.no","balsfjord.no","bahccavuotna.no","báhccavuotna.no","bamble.no","bardu.no","beardu.no","beiarn.no","bajddar.no","bájddar.no","baidar.no","báidár.no","berg.no","bergen.no","berlevag.no","berlevåg.no","bearalvahki.no","bearalváhki.no","bindal.no","birkenes.no","bjarkoy.no","bjarkøy.no","bjerkreim.no","bjugn.no","bodo.no","bodø.no","badaddja.no","bådåddjå.no","budejju.no","bokn.no","bremanger.no","bronnoy.no","brønnøy.no","bygland.no","bykle.no","barum.no","bærum.no","bo.telemark.no","bø.telemark.no","bo.nordland.no","bø.nordland.no","bievat.no","bievát.no","bomlo.no","bømlo.no","batsfjord.no","båtsfjord.no","bahcavuotna.no","báhcavuotna.no","dovre.no","drammen.no","drangedal.no","dyroy.no","dyrøy.no","donna.no","dønna.no","eid.no","eidfjord.no","eidsberg.no","eidskog.no","eidsvoll.no","eigersund.no","elverum.no","enebakk.no","engerdal.no","etne.no","etnedal.no","evenes.no","evenassi.no","evenášši.no","evje-og-hornnes.no","farsund.no","fauske.no","fuossko.no","fuoisku.no","fedje.no","fet.no","finnoy.no","finnøy.no","fitjar.no","fjaler.no","fjell.no","flakstad.no","flatanger.no","flekkefjord.no","flesberg.no","flora.no","fla.no","flå.no","folldal.no","forsand.no","fosnes.no","frei.no","frogn.no","froland.no","frosta.no","frana.no","fræna.no","froya.no","frøya.no","fusa.no","fyresdal.no","forde.no","førde.no","gamvik.no","gangaviika.no","gáŋgaviika.no","gaular.no","gausdal.no","gildeskal.no","gildeskål.no","giske.no","gjemnes.no","gjerdrum.no","gjerstad.no","gjesdal.no","gjovik.no","gjøvik.no","gloppen.no","gol.no","gran.no","grane.no","granvin.no","gratangen.no","grimstad.no","grong.no","kraanghke.no","kråanghke.no","grue.no","gulen.no","hadsel.no","halden.no","halsa.no","hamar.no","hamaroy.no","habmer.no","hábmer.no","hapmir.no","hápmir.no","hammerfest.no","hammarfeasta.no","hámmárfeasta.no","haram.no","hareid.no","harstad.no","hasvik.no","aknoluokta.no","ákŋoluokta.no","hattfjelldal.no","aarborte.no","haugesund.no","hemne.no","hemnes.no","hemsedal.no","heroy.more-og-romsdal.no","herøy.møre-og-romsdal.no","heroy.nordland.no","herøy.nordland.no","hitra.no","hjartdal.no","hjelmeland.no","hobol.no","hobøl.no","hof.no","hol.no","hole.no","holmestrand.no","holtalen.no","holtålen.no","hornindal.no","horten.no","hurdal.no","hurum.no","hvaler.no","hyllestad.no","hagebostad.no","hægebostad.no","hoyanger.no","høyanger.no","hoylandet.no","høylandet.no","ha.no","hå.no","ibestad.no","inderoy.no","inderøy.no","iveland.no","jevnaker.no","jondal.no","jolster.no","jølster.no","karasjok.no","karasjohka.no","kárášjohka.no","karlsoy.no","galsa.no","gálsá.no","karmoy.no","karmøy.no","kautokeino.no","guovdageaidnu.no","klepp.no","klabu.no","klæbu.no","kongsberg.no","kongsvinger.no","kragero.no","kragerø.no","kristiansand.no","kristiansund.no","krodsherad.no","krødsherad.no","kvalsund.no","rahkkeravju.no","ráhkkerávju.no","kvam.no","kvinesdal.no","kvinnherad.no","kviteseid.no","kvitsoy.no","kvitsøy.no","kvafjord.no","kvæfjord.no","giehtavuoatna.no","kvanangen.no","kvænangen.no","navuotna.no","návuotna.no","kafjord.no","kåfjord.no","gaivuotna.no","gáivuotna.no","larvik.no","lavangen.no","lavagis.no","loabat.no","loabát.no","lebesby.no","davvesiida.no","leikanger.no","leirfjord.no","leka.no","leksvik.no","lenvik.no","leangaviika.no","leaŋgaviika.no","lesja.no","levanger.no","lier.no","lierne.no","lillehammer.no","lillesand.no","lindesnes.no","lindas.no","lindås.no","lom.no","loppa.no","lahppi.no","láhppi.no","lund.no","lunner.no","luroy.no","lurøy.no","luster.no","lyngdal.no","lyngen.no","ivgu.no","lardal.no","lerdal.no","lærdal.no","lodingen.no","lødingen.no","lorenskog.no","lørenskog.no","loten.no","løten.no","malvik.no","masoy.no","måsøy.no","muosat.no","muosát.no","mandal.no","marker.no","marnardal.no","masfjorden.no","meland.no","meldal.no","melhus.no","meloy.no","meløy.no","meraker.no","meråker.no","moareke.no","moåreke.no","midsund.no","midtre-gauldal.no","modalen.no","modum.no","molde.no","moskenes.no","moss.no","mosvik.no","malselv.no","målselv.no","malatvuopmi.no","málatvuopmi.no","namdalseid.no","aejrie.no","namsos.no","namsskogan.no","naamesjevuemie.no","nååmesjevuemie.no","laakesvuemie.no","nannestad.no","narvik.no","narviika.no","naustdal.no","nedre-eiker.no","nes.akershus.no","nes.buskerud.no","nesna.no","nesodden.no","nesseby.no","unjarga.no","unjárga.no","nesset.no","nissedal.no","nittedal.no","nord-aurdal.no","nord-fron.no","nord-odal.no","norddal.no","nordkapp.no","davvenjarga.no","davvenjárga.no","nordre-land.no","nordreisa.no","raisa.no","ráisa.no","nore-og-uvdal.no","notodden.no","naroy.no","nærøy.no","notteroy.no","nøtterøy.no","odda.no","oksnes.no","øksnes.no","oppdal.no","oppegard.no","oppegård.no","orkdal.no","orland.no","ørland.no","orskog.no","ørskog.no","orsta.no","ørsta.no","os.hedmark.no","os.hordaland.no","osen.no","osteroy.no","osterøy.no","ostre-toten.no","østre-toten.no","overhalla.no","ovre-eiker.no","øvre-eiker.no","oyer.no","øyer.no","oygarden.no","øygarden.no","oystre-slidre.no","øystre-slidre.no","porsanger.no","porsangu.no","porsáŋgu.no","porsgrunn.no","radoy.no","radøy.no","rakkestad.no","rana.no","ruovat.no","randaberg.no","rauma.no","rendalen.no","rennebu.no","rennesoy.no","rennesøy.no","rindal.no","ringebu.no","ringerike.no","ringsaker.no","rissa.no","risor.no","risør.no","roan.no","rollag.no","rygge.no","ralingen.no","rælingen.no","rodoy.no","rødøy.no","romskog.no","rømskog.no","roros.no","røros.no","rost.no","røst.no","royken.no","røyken.no","royrvik.no","røyrvik.no","rade.no","råde.no","salangen.no","siellak.no","saltdal.no","salat.no","sálát.no","sálat.no","samnanger.no","sande.more-og-romsdal.no","sande.møre-og-romsdal.no","sande.vestfold.no","sandefjord.no","sandnes.no","sandoy.no","sandøy.no","sarpsborg.no","sauda.no","sauherad.no","sel.no","selbu.no","selje.no","seljord.no","sigdal.no","siljan.no","sirdal.no","skaun.no","skedsmo.no","ski.no","skien.no","skiptvet.no","skjervoy.no","skjervøy.no","skierva.no","skiervá.no","skjak.no","skjåk.no","skodje.no","skanland.no","skånland.no","skanit.no","skánit.no","smola.no","smøla.no","snillfjord.no","snasa.no","snåsa.no","snoasa.no","snaase.no","snåase.no","sogndal.no","sokndal.no","sola.no","solund.no","songdalen.no","sortland.no","spydeberg.no","stange.no","stavanger.no","steigen.no","steinkjer.no","stjordal.no","stjørdal.no","stokke.no","stor-elvdal.no","stord.no","stordal.no","storfjord.no","omasvuotna.no","strand.no","stranda.no","stryn.no","sula.no","suldal.no","sund.no","sunndal.no","surnadal.no","sveio.no","svelvik.no","sykkylven.no","sogne.no","søgne.no","somna.no","sømna.no","sondre-land.no","søndre-land.no","sor-aurdal.no","sør-aurdal.no","sor-fron.no","sør-fron.no","sor-odal.no","sør-odal.no","sor-varanger.no","sør-varanger.no","matta-varjjat.no","mátta-várjjat.no","sorfold.no","sørfold.no","sorreisa.no","sørreisa.no","sorum.no","sørum.no","tana.no","deatnu.no","time.no","tingvoll.no","tinn.no","tjeldsund.no","dielddanuorri.no","tjome.no","tjøme.no","tokke.no","tolga.no","torsken.no","tranoy.no","tranøy.no","tromso.no","tromsø.no","tromsa.no","romsa.no","trondheim.no","troandin.no","trysil.no","trana.no","træna.no","trogstad.no","trøgstad.no","tvedestrand.no","tydal.no","tynset.no","tysfjord.no","divtasvuodna.no","divttasvuotna.no","tysnes.no","tysvar.no","tysvær.no","tonsberg.no","tønsberg.no","ullensaker.no","ullensvang.no","ulvik.no","utsira.no","vadso.no","vadsø.no","cahcesuolo.no","čáhcesuolo.no","vaksdal.no","valle.no","vang.no","vanylven.no","vardo.no","vardø.no","varggat.no","várggát.no","vefsn.no","vaapste.no","vega.no","vegarshei.no","vegårshei.no","vennesla.no","verdal.no","verran.no","vestby.no","vestnes.no","vestre-slidre.no","vestre-toten.no","vestvagoy.no","vestvågøy.no","vevelstad.no","vik.no","vikna.no","vindafjord.no","volda.no","voss.no","varoy.no","værøy.no","vagan.no","vågan.no","voagat.no","vagsoy.no","vågsøy.no","vaga.no","vågå.no","valer.ostfold.no","våler.østfold.no","valer.hedmark.no","våler.hedmark.no","*.np","nr","biz.nr","info.nr","gov.nr","edu.nr","org.nr","net.nr","com.nr","nu","nz","ac.nz","co.nz","cri.nz","geek.nz","gen.nz","govt.nz","health.nz","iwi.nz","kiwi.nz","maori.nz","mil.nz","māori.nz","net.nz","org.nz","parliament.nz","school.nz","om","co.om","com.om","edu.om","gov.om","med.om","museum.om","net.om","org.om","pro.om","onion","org","pa","ac.pa","gob.pa","com.pa","org.pa","sld.pa","edu.pa","net.pa","ing.pa","abo.pa","med.pa","nom.pa","pe","edu.pe","gob.pe","nom.pe","mil.pe","org.pe","com.pe","net.pe","pf","com.pf","org.pf","edu.pf","*.pg","ph","com.ph","net.ph","org.ph","gov.ph","edu.ph","ngo.ph","mil.ph","i.ph","pk","com.pk","net.pk","edu.pk","org.pk","fam.pk","biz.pk","web.pk","gov.pk","gob.pk","gok.pk","gon.pk","gop.pk","gos.pk","info.pk","pl","com.pl","net.pl","org.pl","aid.pl","agro.pl","atm.pl","auto.pl","biz.pl","edu.pl","gmina.pl","gsm.pl","info.pl","mail.pl","miasta.pl","media.pl","mil.pl","nieruchomosci.pl","nom.pl","pc.pl","powiat.pl","priv.pl","realestate.pl","rel.pl","sex.pl","shop.pl","sklep.pl","sos.pl","szkola.pl","targi.pl","tm.pl","tourism.pl","travel.pl","turystyka.pl","gov.pl","ap.gov.pl","ic.gov.pl","is.gov.pl","us.gov.pl","kmpsp.gov.pl","kppsp.gov.pl","kwpsp.gov.pl","psp.gov.pl","wskr.gov.pl","kwp.gov.pl","mw.gov.pl","ug.gov.pl","um.gov.pl","umig.gov.pl","ugim.gov.pl","upow.gov.pl","uw.gov.pl","starostwo.gov.pl","pa.gov.pl","po.gov.pl","psse.gov.pl","pup.gov.pl","rzgw.gov.pl","sa.gov.pl","so.gov.pl","sr.gov.pl","wsa.gov.pl","sko.gov.pl","uzs.gov.pl","wiih.gov.pl","winb.gov.pl","pinb.gov.pl","wios.gov.pl","witd.gov.pl","wzmiuw.gov.pl","piw.gov.pl","wiw.gov.pl","griw.gov.pl","wif.gov.pl","oum.gov.pl","sdn.gov.pl","zp.gov.pl","uppo.gov.pl","mup.gov.pl","wuoz.gov.pl","konsulat.gov.pl","oirm.gov.pl","augustow.pl","babia-gora.pl","bedzin.pl","beskidy.pl","bialowieza.pl","bialystok.pl","bielawa.pl","bieszczady.pl","boleslawiec.pl","bydgoszcz.pl","bytom.pl","cieszyn.pl","czeladz.pl","czest.pl","dlugoleka.pl","elblag.pl","elk.pl","glogow.pl","gniezno.pl","gorlice.pl","grajewo.pl","ilawa.pl","jaworzno.pl","jelenia-gora.pl","jgora.pl","kalisz.pl","kazimierz-dolny.pl","karpacz.pl","kartuzy.pl","kaszuby.pl","katowice.pl","kepno.pl","ketrzyn.pl","klodzko.pl","kobierzyce.pl","kolobrzeg.pl","konin.pl","konskowola.pl","kutno.pl","lapy.pl","lebork.pl","legnica.pl","lezajsk.pl","limanowa.pl","lomza.pl","lowicz.pl","lubin.pl","lukow.pl","malbork.pl","malopolska.pl","mazowsze.pl","mazury.pl","mielec.pl","mielno.pl","mragowo.pl","naklo.pl","nowaruda.pl","nysa.pl","olawa.pl","olecko.pl","olkusz.pl","olsztyn.pl","opoczno.pl","opole.pl","ostroda.pl","ostroleka.pl","ostrowiec.pl","ostrowwlkp.pl","pila.pl","pisz.pl","podhale.pl","podlasie.pl","polkowice.pl","pomorze.pl","pomorskie.pl","prochowice.pl","pruszkow.pl","przeworsk.pl","pulawy.pl","radom.pl","rawa-maz.pl","rybnik.pl","rzeszow.pl","sanok.pl","sejny.pl","slask.pl","slupsk.pl","sosnowiec.pl","stalowa-wola.pl","skoczow.pl","starachowice.pl","stargard.pl","suwalki.pl","swidnica.pl","swiebodzin.pl","swinoujscie.pl","szczecin.pl","szczytno.pl","tarnobrzeg.pl","tgory.pl","turek.pl","tychy.pl","ustka.pl","walbrzych.pl","warmia.pl","warszawa.pl","waw.pl","wegrow.pl","wielun.pl","wlocl.pl","wloclawek.pl","wodzislaw.pl","wolomin.pl","wroclaw.pl","zachpomor.pl","zagan.pl","zarow.pl","zgora.pl","zgorzelec.pl","pm","pn","gov.pn","co.pn","org.pn","edu.pn","net.pn","post","pr","com.pr","net.pr","org.pr","gov.pr","edu.pr","isla.pr","pro.pr","biz.pr","info.pr","name.pr","est.pr","prof.pr","ac.pr","pro","aaa.pro","aca.pro","acct.pro","avocat.pro","bar.pro","cpa.pro","eng.pro","jur.pro","law.pro","med.pro","recht.pro","ps","edu.ps","gov.ps","sec.ps","plo.ps","com.ps","org.ps","net.ps","pt","net.pt","gov.pt","org.pt","edu.pt","int.pt","publ.pt","com.pt","nome.pt","pw","co.pw","ne.pw","or.pw","ed.pw","go.pw","belau.pw","py","com.py","coop.py","edu.py","gov.py","mil.py","net.py","org.py","qa","com.qa","edu.qa","gov.qa","mil.qa","name.qa","net.qa","org.qa","sch.qa","re","asso.re","com.re","nom.re","ro","arts.ro","com.ro","firm.ro","info.ro","nom.ro","nt.ro","org.ro","rec.ro","store.ro","tm.ro","www.ro","rs","ac.rs","co.rs","edu.rs","gov.rs","in.rs","org.rs","ru","ac.ru","edu.ru","gov.ru","int.ru","mil.ru","test.ru","rw","gov.rw","net.rw","edu.rw","ac.rw","com.rw","co.rw","int.rw","mil.rw","gouv.rw","sa","com.sa","net.sa","org.sa","gov.sa","med.sa","pub.sa","edu.sa","sch.sa","sb","com.sb","edu.sb","gov.sb","net.sb","org.sb","sc","com.sc","gov.sc","net.sc","org.sc","edu.sc","sd","com.sd","net.sd","org.sd","edu.sd","med.sd","tv.sd","gov.sd","info.sd","se","a.se","ac.se","b.se","bd.se","brand.se","c.se","d.se","e.se","f.se","fh.se","fhsk.se","fhv.se","g.se","h.se","i.se","k.se","komforb.se","kommunalforbund.se","komvux.se","l.se","lanbib.se","m.se","n.se","naturbruksgymn.se","o.se","org.se","p.se","parti.se","pp.se","press.se","r.se","s.se","t.se","tm.se","u.se","w.se","x.se","y.se","z.se","sg","com.sg","net.sg","org.sg","gov.sg","edu.sg","per.sg","sh","com.sh","net.sh","gov.sh","org.sh","mil.sh","si","sj","sk","sl","com.sl","net.sl","edu.sl","gov.sl","org.sl","sm","sn","art.sn","com.sn","edu.sn","gouv.sn","org.sn","perso.sn","univ.sn","so","com.so","net.so","org.so","sr","st","co.st","com.st","consulado.st","edu.st","embaixada.st","gov.st","mil.st","net.st","org.st","principe.st","saotome.st","store.st","su","sv","com.sv","edu.sv","gob.sv","org.sv","red.sv","sx","gov.sx","sy","edu.sy","gov.sy","net.sy","mil.sy","com.sy","org.sy","sz","co.sz","ac.sz","org.sz","tc","td","tel","tf","tg","th","ac.th","co.th","go.th","in.th","mi.th","net.th","or.th","tj","ac.tj","biz.tj","co.tj","com.tj","edu.tj","go.tj","gov.tj","int.tj","mil.tj","name.tj","net.tj","nic.tj","org.tj","test.tj","web.tj","tk","tl","gov.tl","tm","com.tm","co.tm","org.tm","net.tm","nom.tm","gov.tm","mil.tm","edu.tm","tn","com.tn","ens.tn","fin.tn","gov.tn","ind.tn","intl.tn","nat.tn","net.tn","org.tn","info.tn","perso.tn","tourism.tn","edunet.tn","rnrt.tn","rns.tn","rnu.tn","mincom.tn","agrinet.tn","defense.tn","turen.tn","to","com.to","gov.to","net.to","org.to","edu.to","mil.to","tr","com.tr","info.tr","biz.tr","net.tr","org.tr","web.tr","gen.tr","tv.tr","av.tr","dr.tr","bbs.tr","name.tr","tel.tr","gov.tr","bel.tr","pol.tr","mil.tr","k12.tr","edu.tr","kep.tr","nc.tr","gov.nc.tr","tt","co.tt","com.tt","org.tt","net.tt","biz.tt","info.tt","pro.tt","int.tt","coop.tt","jobs.tt","mobi.tt","travel.tt","museum.tt","aero.tt","name.tt","gov.tt","edu.tt","tv","tw","edu.tw","gov.tw","mil.tw","com.tw","net.tw","org.tw","idv.tw","game.tw","ebiz.tw","club.tw","網路.tw","組織.tw","商業.tw","tz","ac.tz","co.tz","go.tz","hotel.tz","info.tz","me.tz","mil.tz","mobi.tz","ne.tz","or.tz","sc.tz","tv.tz","ua","com.ua","edu.ua","gov.ua","in.ua","net.ua","org.ua","cherkassy.ua","cherkasy.ua","chernigov.ua","chernihiv.ua","chernivtsi.ua","chernovtsy.ua","ck.ua","cn.ua","cr.ua","crimea.ua","cv.ua","dn.ua","dnepropetrovsk.ua","dnipropetrovsk.ua","dominic.ua","donetsk.ua","dp.ua","if.ua","ivano-frankivsk.ua","kh.ua","kharkiv.ua","kharkov.ua","kherson.ua","khmelnitskiy.ua","khmelnytskyi.ua","kiev.ua","kirovograd.ua","km.ua","kr.ua","krym.ua","ks.ua","kv.ua","kyiv.ua","lg.ua","lt.ua","lugansk.ua","lutsk.ua","lv.ua","lviv.ua","mk.ua","mykolaiv.ua","nikolaev.ua","od.ua","odesa.ua","odessa.ua","pl.ua","poltava.ua","rivne.ua","rovno.ua","rv.ua","sb.ua","sebastopol.ua","sevastopol.ua","sm.ua","sumy.ua","te.ua","ternopil.ua","uz.ua","uzhgorod.ua","vinnica.ua","vinnytsia.ua","vn.ua","volyn.ua","yalta.ua","zaporizhzhe.ua","zaporizhzhia.ua","zhitomir.ua","zhytomyr.ua","zp.ua","zt.ua","ug","co.ug","or.ug","ac.ug","sc.ug","go.ug","ne.ug","com.ug","org.ug","uk","ac.uk","co.uk","gov.uk","ltd.uk","me.uk","net.uk","nhs.uk","org.uk","plc.uk","police.uk","*.sch.uk","us","dni.us","fed.us","isa.us","kids.us","nsn.us","ak.us","al.us","ar.us","as.us","az.us","ca.us","co.us","ct.us","dc.us","de.us","fl.us","ga.us","gu.us","hi.us","ia.us","id.us","il.us","in.us","ks.us","ky.us","la.us","ma.us","md.us","me.us","mi.us","mn.us","mo.us","ms.us","mt.us","nc.us","nd.us","ne.us","nh.us","nj.us","nm.us","nv.us","ny.us","oh.us","ok.us","or.us","pa.us","pr.us","ri.us","sc.us","sd.us","tn.us","tx.us","ut.us","vi.us","vt.us","va.us","wa.us","wi.us","wv.us","wy.us","k12.ak.us","k12.al.us","k12.ar.us","k12.as.us","k12.az.us","k12.ca.us","k12.co.us","k12.ct.us","k12.dc.us","k12.de.us","k12.fl.us","k12.ga.us","k12.gu.us","k12.ia.us","k12.id.us","k12.il.us","k12.in.us","k12.ks.us","k12.ky.us","k12.la.us","k12.ma.us","k12.md.us","k12.me.us","k12.mi.us","k12.mn.us","k12.mo.us","k12.ms.us","k12.mt.us","k12.nc.us","k12.ne.us","k12.nh.us","k12.nj.us","k12.nm.us","k12.nv.us","k12.ny.us","k12.oh.us","k12.ok.us","k12.or.us","k12.pa.us","k12.pr.us","k12.ri.us","k12.sc.us","k12.tn.us","k12.tx.us","k12.ut.us","k12.vi.us","k12.vt.us","k12.va.us","k12.wa.us","k12.wi.us","k12.wy.us","cc.ak.us","cc.al.us","cc.ar.us","cc.as.us","cc.az.us","cc.ca.us","cc.co.us","cc.ct.us","cc.dc.us","cc.de.us","cc.fl.us","cc.ga.us","cc.gu.us","cc.hi.us","cc.ia.us","cc.id.us","cc.il.us","cc.in.us","cc.ks.us","cc.ky.us","cc.la.us","cc.ma.us","cc.md.us","cc.me.us","cc.mi.us","cc.mn.us","cc.mo.us","cc.ms.us","cc.mt.us","cc.nc.us","cc.nd.us","cc.ne.us","cc.nh.us","cc.nj.us","cc.nm.us","cc.nv.us","cc.ny.us","cc.oh.us","cc.ok.us","cc.or.us","cc.pa.us","cc.pr.us","cc.ri.us","cc.sc.us","cc.sd.us","cc.tn.us","cc.tx.us","cc.ut.us","cc.vi.us","cc.vt.us","cc.va.us","cc.wa.us","cc.wi.us","cc.wv.us","cc.wy.us","lib.ak.us","lib.al.us","lib.ar.us","lib.as.us","lib.az.us","lib.ca.us","lib.co.us","lib.ct.us","lib.dc.us","lib.fl.us","lib.ga.us","lib.gu.us","lib.hi.us","lib.ia.us","lib.id.us","lib.il.us","lib.in.us","lib.ks.us","lib.ky.us","lib.la.us","lib.ma.us","lib.md.us","lib.me.us","lib.mi.us","lib.mn.us","lib.mo.us","lib.ms.us","lib.mt.us","lib.nc.us","lib.nd.us","lib.ne.us","lib.nh.us","lib.nj.us","lib.nm.us","lib.nv.us","lib.ny.us","lib.oh.us","lib.ok.us","lib.or.us","lib.pa.us","lib.pr.us","lib.ri.us","lib.sc.us","lib.sd.us","lib.tn.us","lib.tx.us","lib.ut.us","lib.vi.us","lib.vt.us","lib.va.us","lib.wa.us","lib.wi.us","lib.wy.us","pvt.k12.ma.us","chtr.k12.ma.us","paroch.k12.ma.us","ann-arbor.mi.us","cog.mi.us","dst.mi.us","eaton.mi.us","gen.mi.us","mus.mi.us","tec.mi.us","washtenaw.mi.us","uy","com.uy","edu.uy","gub.uy","mil.uy","net.uy","org.uy","uz","co.uz","com.uz","net.uz","org.uz","va","vc","com.vc","net.vc","org.vc","gov.vc","mil.vc","edu.vc","ve","arts.ve","co.ve","com.ve","e12.ve","edu.ve","firm.ve","gob.ve","gov.ve","info.ve","int.ve","mil.ve","net.ve","org.ve","rec.ve","store.ve","tec.ve","web.ve","vg","vi","co.vi","com.vi","k12.vi","net.vi","org.vi","vn","com.vn","net.vn","org.vn","edu.vn","gov.vn","int.vn","ac.vn","biz.vn","info.vn","name.vn","pro.vn","health.vn","vu","com.vu","edu.vu","net.vu","org.vu","wf","ws","com.ws","net.ws","org.ws","gov.ws","edu.ws","yt","امارات","հայ","বাংলা","бг","бел","中国","中國","الجزائر","مصر","ею","გე","ελ","香港","公司.香港","教育.香港","政府.香港","個人.香港","網絡.香港","組織.香港","ಭಾರತ","ଭାରତ","ভাৰত","भारतम्","भारोत","ڀارت","ഭാരതം","भारत","بارت","بھارت","భారత్","ભારત","ਭਾਰਤ","ভারত","இந்தியா","ایران","ايران","عراق","الاردن","한국","қаз","ලංකා","இலங்கை","المغرب","мкд","мон","澳門","澳门","مليسيا","عمان","پاکستان","پاكستان","فلسطين","срб","пр.срб","орг.срб","обр.срб","од.срб","упр.срб","ак.срб","рф","قطر","السعودية","السعودیة","السعودیۃ","السعوديه","سودان","新加坡","சிங்கப்பூர்","سورية","سوريا","ไทย","ศึกษา.ไทย","ธุรกิจ.ไทย","รัฐบาล.ไทย","ทหาร.ไทย","เน็ต.ไทย","องค์กร.ไทย","تونس","台灣","台湾","臺灣","укр","اليمن","xxx","*.ye","ac.za","agric.za","alt.za","co.za","edu.za","gov.za","grondar.za","law.za","mil.za","net.za","ngo.za","nis.za","nom.za","org.za","school.za","tm.za","web.za","zm","ac.zm","biz.zm","co.zm","com.zm","edu.zm","gov.zm","info.zm","mil.zm","net.zm","org.zm","sch.zm","zw","ac.zw","co.zw","gov.zw","mil.zw","org.zw","aaa","aarp","abarth","abb","abbott","abbvie","abc","able","abogado","abudhabi","academy","accenture","accountant","accountants","aco","active","actor","adac","ads","adult","aeg","aetna","afamilycompany","afl","africa","agakhan","agency","aig","aigo","airbus","airforce","airtel","akdn","alfaromeo","alibaba","alipay","allfinanz","allstate","ally","alsace","alstom","americanexpress","americanfamily","amex","amfam","amica","amsterdam","analytics","android","anquan","anz","aol","apartments","app","apple","aquarelle","arab","aramco","archi","army","art","arte","asda","associates","athleta","attorney","auction","audi","audible","audio","auspost","author","auto","autos","avianca","aws","axa","azure","baby","baidu","banamex","bananarepublic","band","bank","bar","barcelona","barclaycard","barclays","barefoot","bargains","baseball","basketball","bauhaus","bayern","bbc","bbt","bbva","bcg","bcn","beats","beauty","beer","bentley","berlin","best","bestbuy","bet","bharti","bible","bid","bike","bing","bingo","bio","black","blackfriday","blanco","blockbuster","blog","bloomberg","blue","bms","bmw","bnl","bnpparibas","boats","boehringer","bofa","bom","bond","boo","book","booking","bosch","bostik","boston","bot","boutique","box","bradesco","bridgestone","broadway","broker","brother","brussels","budapest","bugatti","build","builders","business","buy","buzz","bzh","cab","cafe","cal","call","calvinklein","cam","camera","camp","cancerresearch","canon","capetown","capital","capitalone","car","caravan","cards","care","career","careers","cars","cartier","casa","case","caseih","cash","casino","catering","catholic","cba","cbn","cbre","cbs","ceb","center","ceo","cern","cfa","cfd","chanel","channel","charity","chase","chat","cheap","chintai","christmas","chrome","chrysler","church","cipriani","circle","cisco","citadel","citi","citic","city","cityeats","claims","cleaning","click","clinic","clinique","clothing","cloud","club","clubmed","coach","codes","coffee","college","cologne","comcast","commbank","community","company","compare","computer","comsec","condos","construction","consulting","contact","contractors","cooking","cookingchannel","cool","corsica","country","coupon","coupons","courses","credit","creditcard","creditunion","cricket","crown","crs","cruise","cruises","csc","cuisinella","cymru","cyou","dabur","dad","dance","data","date","dating","datsun","day","dclk","dds","deal","dealer","deals","degree","delivery","dell","deloitte","delta","democrat","dental","dentist","desi","design","dev","dhl","diamonds","diet","digital","direct","directory","discount","discover","dish","diy","dnp","docs","doctor","dodge","dog","doha","domains","dot","download","drive","dtv","dubai","duck","dunlop","duns","dupont","durban","dvag","dvr","earth","eat","eco","edeka","education","email","emerck","energy","engineer","engineering","enterprises","epost","epson","equipment","ericsson","erni","esq","estate","esurance","etisalat","eurovision","eus","events","everbank","exchange","expert","exposed","express","extraspace","fage","fail","fairwinds","faith","family","fan","fans","farm","farmers","fashion","fast","fedex","feedback","ferrari","ferrero","fiat","fidelity","fido","film","final","finance","financial","fire","firestone","firmdale","fish","fishing","fit","fitness","flickr","flights","flir","florist","flowers","fly","foo","food","foodnetwork","football","ford","forex","forsale","forum","foundation","fox","free","fresenius","frl","frogans","frontdoor","frontier","ftr","fujitsu","fujixerox","fun","fund","furniture","futbol","fyi","gal","gallery","gallo","gallup","game","games","gap","garden","gbiz","gdn","gea","gent","genting","george","ggee","gift","gifts","gives","giving","glade","glass","gle","global","globo","gmail","gmbh","gmo","gmx","godaddy","gold","goldpoint","golf","goo","goodyear","goog","google","gop","got","grainger","graphics","gratis","green","gripe","grocery","group","guardian","gucci","guge","guide","guitars","guru","hair","hamburg","hangout","haus","hbo","hdfc","hdfcbank","health","healthcare","help","helsinki","here","hermes","hgtv","hiphop","hisamitsu","hitachi","hiv","hkt","hockey","holdings","holiday","homedepot","homegoods","homes","homesense","honda","honeywell","horse","hospital","host","hosting","hot","hoteles","hotels","hotmail","house","how","hsbc","hughes","hyatt","hyundai","ibm","icbc","ice","icu","ieee","ifm","ikano","imamat","imdb","immo","immobilien","inc","industries","infiniti","ing","ink","institute","insurance","insure","intel","international","intuit","investments","ipiranga","irish","iselect","ismaili","ist","istanbul","itau","itv","iveco","jaguar","java","jcb","jcp","jeep","jetzt","jewelry","jio","jll","jmp","jnj","joburg","jot","joy","jpmorgan","jprs","juegos","juniper","kaufen","kddi","kerryhotels","kerrylogistics","kerryproperties","kfh","kia","kim","kinder","kindle","kitchen","kiwi","koeln","komatsu","kosher","kpmg","kpn","krd","kred","kuokgroup","kyoto","lacaixa","ladbrokes","lamborghini","lamer","lancaster","lancia","lancome","land","landrover","lanxess","lasalle","lat","latino","latrobe","law","lawyer","lds","lease","leclerc","lefrak","legal","lego","lexus","lgbt","liaison","lidl","life","lifeinsurance","lifestyle","lighting","like","lilly","limited","limo","lincoln","linde","link","lipsy","live","living","lixil","llc","loan","loans","locker","locus","loft","lol","london","lotte","lotto","love","lpl","lplfinancial","ltd","ltda","lundbeck","lupin","luxe","luxury","macys","madrid","maif","maison","makeup","man","management","mango","map","market","marketing","markets","marriott","marshalls","maserati","mattel","mba","mckinsey","med","media","meet","melbourne","meme","memorial","men","menu","merckmsd","metlife","miami","microsoft","mini","mint","mit","mitsubishi","mlb","mls","mma","mobile","mobily","moda","moe","moi","mom","monash","money","monster","mopar","mormon","mortgage","moscow","moto","motorcycles","mov","movie","movistar","msd","mtn","mtr","mutual","nab","nadex","nagoya","nationwide","natura","navy","nba","nec","netbank","netflix","network","neustar","new","newholland","news","next","nextdirect","nexus","nfl","ngo","nhk","nico","nike","nikon","ninja","nissan","nissay","nokia","northwesternmutual","norton","now","nowruz","nowtv","nra","nrw","ntt","nyc","obi","observer","off","office","okinawa","olayan","olayangroup","oldnavy","ollo","omega","one","ong","onl","online","onyourside","ooo","open","oracle","orange","organic","origins","osaka","otsuka","ott","ovh","page","panasonic","paris","pars","partners","parts","party","passagens","pay","pccw","pet","pfizer","pharmacy","phd","philips","phone","photo","photography","photos","physio","piaget","pics","pictet","pictures","pid","pin","ping","pink","pioneer","pizza","place","play","playstation","plumbing","plus","pnc","pohl","poker","politie","porn","pramerica","praxi","press","prime","prod","productions","prof","progressive","promo","properties","property","protection","pru","prudential","pub","pwc","qpon","quebec","quest","qvc","racing","radio","raid","read","realestate","realtor","realty","recipes","red","redstone","redumbrella","rehab","reise","reisen","reit","reliance","ren","rent","rentals","repair","report","republican","rest","restaurant","review","reviews","rexroth","rich","richardli","ricoh","rightathome","ril","rio","rip","rmit","rocher","rocks","rodeo","rogers","room","rsvp","rugby","ruhr","run","rwe","ryukyu","saarland","safe","safety","sakura","sale","salon","samsclub","samsung","sandvik","sandvikcoromant","sanofi","sap","sarl","sas","save","saxo","sbi","sbs","sca","scb","schaeffler","schmidt","scholarships","school","schule","schwarz","science","scjohnson","scor","scot","search","seat","secure","security","seek","select","sener","services","ses","seven","sew","sex","sexy","sfr","shangrila","sharp","shaw","shell","shia","shiksha","shoes","shop","shopping","shouji","show","showtime","shriram","silk","sina","singles","site","ski","skin","sky","skype","sling","smart","smile","sncf","soccer","social","softbank","software","sohu","solar","solutions","song","sony","soy","space","spiegel","sport","spot","spreadbetting","srl","srt","stada","staples","star","starhub","statebank","statefarm","statoil","stc","stcgroup","stockholm","storage","store","stream","studio","study","style","sucks","supplies","supply","support","surf","surgery","suzuki","swatch","swiftcover","swiss","sydney","symantec","systems","tab","taipei","talk","taobao","target","tatamotors","tatar","tattoo","tax","taxi","tci","tdk","team","tech","technology","telefonica","temasek","tennis","teva","thd","theater","theatre","tiaa","tickets","tienda","tiffany","tips","tires","tirol","tjmaxx","tjx","tkmaxx","tmall","today","tokyo","tools","top","toray","toshiba","total","tours","town","toyota","toys","trade","trading","training","travel","travelchannel","travelers","travelersinsurance","trust","trv","tube","tui","tunes","tushu","tvs","ubank","ubs","uconnect","unicom","university","uno","uol","ups","vacations","vana","vanguard","vegas","ventures","verisign","versicherung","vet","viajes","video","vig","viking","villas","vin","vip","virgin","visa","vision","vistaprint","viva","vivo","vlaanderen","vodka","volkswagen","volvo","vote","voting","voto","voyage","vuelos","wales","walmart","walter","wang","wanggou","warman","watch","watches","weather","weatherchannel","webcam","weber","website","wed","wedding","weibo","weir","whoswho","wien","wiki","williamhill","win","windows","wine","winners","wme","wolterskluwer","woodside","work","works","world","wow","wtc","wtf","xbox","xerox","xfinity","xihuan","xin","कॉम","セール","佛山","慈善","集团","在线","大众汽车","点看","คอม","八卦","موقع","公益","公司","香格里拉","网站","移动","我爱你","москва","католик","онлайн","сайт","联通","קום","时尚","微博","淡马锡","ファッション","орг","नेट","ストア","삼성","商标","商店","商城","дети","ポイント","新闻","工行","家電","كوم","中文网","中信","娱乐","谷歌","電訊盈科","购物","クラウド","通販","网店","संगठन","餐厅","网络","ком","诺基亚","食品","飞利浦","手表","手机","ارامكو","العليان","اتصالات","بازار","موبايلي","ابوظبي","كاثوليك","همراه","닷컴","政府","شبكة","بيتك","عرب","机构","组织机构","健康","招聘","рус","珠宝","大拿","みんな","グーグル","世界","書籍","网址","닷넷","コム","天主教","游戏","vermögensberater","vermögensberatung","企业","信息","嘉里大酒店","嘉里","广东","政务","xyz","yachts","yahoo","yamaxun","yandex","yodobashi","yoga","yokohama","you","youtube","yun","zappos","zara","zero","zip","zippo","zone","zuerich","cc.ua","inf.ua","ltd.ua","beep.pl","*.compute.estate","*.alces.network","alwaysdata.net","cloudfront.net","*.compute.amazonaws.com","*.compute-1.amazonaws.com","*.compute.amazonaws.com.cn","us-east-1.amazonaws.com","cn-north-1.eb.amazonaws.com.cn","cn-northwest-1.eb.amazonaws.com.cn","elasticbeanstalk.com","ap-northeast-1.elasticbeanstalk.com","ap-northeast-2.elasticbeanstalk.com","ap-northeast-3.elasticbeanstalk.com","ap-south-1.elasticbeanstalk.com","ap-southeast-1.elasticbeanstalk.com","ap-southeast-2.elasticbeanstalk.com","ca-central-1.elasticbeanstalk.com","eu-central-1.elasticbeanstalk.com","eu-west-1.elasticbeanstalk.com","eu-west-2.elasticbeanstalk.com","eu-west-3.elasticbeanstalk.com","sa-east-1.elasticbeanstalk.com","us-east-1.elasticbeanstalk.com","us-east-2.elasticbeanstalk.com","us-gov-west-1.elasticbeanstalk.com","us-west-1.elasticbeanstalk.com","us-west-2.elasticbeanstalk.com","*.elb.amazonaws.com","*.elb.amazonaws.com.cn","s3.amazonaws.com","s3-ap-northeast-1.amazonaws.com","s3-ap-northeast-2.amazonaws.com","s3-ap-south-1.amazonaws.com","s3-ap-southeast-1.amazonaws.com","s3-ap-southeast-2.amazonaws.com","s3-ca-central-1.amazonaws.com","s3-eu-central-1.amazonaws.com","s3-eu-west-1.amazonaws.com","s3-eu-west-2.amazonaws.com","s3-eu-west-3.amazonaws.com","s3-external-1.amazonaws.com","s3-fips-us-gov-west-1.amazonaws.com","s3-sa-east-1.amazonaws.com","s3-us-gov-west-1.amazonaws.com","s3-us-east-2.amazonaws.com","s3-us-west-1.amazonaws.com","s3-us-west-2.amazonaws.com","s3.ap-northeast-2.amazonaws.com","s3.ap-south-1.amazonaws.com","s3.cn-north-1.amazonaws.com.cn","s3.ca-central-1.amazonaws.com","s3.eu-central-1.amazonaws.com","s3.eu-west-2.amazonaws.com","s3.eu-west-3.amazonaws.com","s3.us-east-2.amazonaws.com","s3.dualstack.ap-northeast-1.amazonaws.com","s3.dualstack.ap-northeast-2.amazonaws.com","s3.dualstack.ap-south-1.amazonaws.com","s3.dualstack.ap-southeast-1.amazonaws.com","s3.dualstack.ap-southeast-2.amazonaws.com","s3.dualstack.ca-central-1.amazonaws.com","s3.dualstack.eu-central-1.amazonaws.com","s3.dualstack.eu-west-1.amazonaws.com","s3.dualstack.eu-west-2.amazonaws.com","s3.dualstack.eu-west-3.amazonaws.com","s3.dualstack.sa-east-1.amazonaws.com","s3.dualstack.us-east-1.amazonaws.com","s3.dualstack.us-east-2.amazonaws.com","s3-website-us-east-1.amazonaws.com","s3-website-us-west-1.amazonaws.com","s3-website-us-west-2.amazonaws.com","s3-website-ap-northeast-1.amazonaws.com","s3-website-ap-southeast-1.amazonaws.com","s3-website-ap-southeast-2.amazonaws.com","s3-website-eu-west-1.amazonaws.com","s3-website-sa-east-1.amazonaws.com","s3-website.ap-northeast-2.amazonaws.com","s3-website.ap-south-1.amazonaws.com","s3-website.ca-central-1.amazonaws.com","s3-website.eu-central-1.amazonaws.com","s3-website.eu-west-2.amazonaws.com","s3-website.eu-west-3.amazonaws.com","s3-website.us-east-2.amazonaws.com","t3l3p0rt.net","tele.amune.org","apigee.io","on-aptible.com","user.party.eus","pimienta.org","poivron.org","potager.org","sweetpepper.org","myasustor.com","myfritz.net","*.awdev.ca","*.advisor.ws","backplaneapp.io","betainabox.com","bnr.la","blackbaudcdn.net","boomla.net","boxfuse.io","square7.ch","bplaced.com","bplaced.de","square7.de","bplaced.net","square7.net","browsersafetymark.io","mycd.eu","ae.org","ar.com","br.com","cn.com","com.de","com.se","de.com","eu.com","gb.com","gb.net","hu.com","hu.net","jp.net","jpn.com","kr.com","mex.com","no.com","qc.com","ru.com","sa.com","se.net","uk.com","uk.net","us.com","uy.com","za.bz","za.com","africa.com","gr.com","in.net","us.org","co.com","c.la","certmgr.org","xenapponazure.com","virtueeldomein.nl","cleverapps.io","c66.me","cloud66.ws","jdevcloud.com","wpdevcloud.com","cloudaccess.host","freesite.host","cloudaccess.net","cloudcontrolled.com","cloudcontrolapp.com","co.ca","*.otap.co","co.cz","c.cdn77.org","cdn77-ssl.net","r.cdn77.net","rsc.cdn77.org","ssl.origin.cdn77-secure.org","cloudns.asia","cloudns.biz","cloudns.club","cloudns.cc","cloudns.eu","cloudns.in","cloudns.info","cloudns.org","cloudns.pro","cloudns.pw","cloudns.us","cloudeity.net","cnpy.gdn","co.nl","co.no","webhosting.be","hosting-cluster.nl","dyn.cosidns.de","dynamisches-dns.de","dnsupdater.de","internet-dns.de","l-o-g-i-n.de","dynamic-dns.info","feste-ip.net","knx-server.net","static-access.net","realm.cz","*.cryptonomic.net","cupcake.is","cyon.link","cyon.site","daplie.me","localhost.daplie.me","dattolocal.com","dattorelay.com","dattoweb.com","mydatto.com","dattolocal.net","mydatto.net","biz.dk","co.dk","firm.dk","reg.dk","store.dk","debian.net","dedyn.io","dnshome.de","drayddns.com","dreamhosters.com","mydrobo.com","drud.io","drud.us","duckdns.org","dy.fi","tunk.org","dyndns-at-home.com","dyndns-at-work.com","dyndns-blog.com","dyndns-free.com","dyndns-home.com","dyndns-ip.com","dyndns-mail.com","dyndns-office.com","dyndns-pics.com","dyndns-remote.com","dyndns-server.com","dyndns-web.com","dyndns-wiki.com","dyndns-work.com","dyndns.biz","dyndns.info","dyndns.org","dyndns.tv","at-band-camp.net","ath.cx","barrel-of-knowledge.info","barrell-of-knowledge.info","better-than.tv","blogdns.com","blogdns.net","blogdns.org","blogsite.org","boldlygoingnowhere.org","broke-it.net","buyshouses.net","cechire.com","dnsalias.com","dnsalias.net","dnsalias.org","dnsdojo.com","dnsdojo.net","dnsdojo.org","does-it.net","doesntexist.com","doesntexist.org","dontexist.com","dontexist.net","dontexist.org","doomdns.com","doomdns.org","dvrdns.org","dyn-o-saur.com","dynalias.com","dynalias.net","dynalias.org","dynathome.net","dyndns.ws","endofinternet.net","endofinternet.org","endoftheinternet.org","est-a-la-maison.com","est-a-la-masion.com","est-le-patron.com","est-mon-blogueur.com","for-better.biz","for-more.biz","for-our.info","for-some.biz","for-the.biz","forgot.her.name","forgot.his.name","from-ak.com","from-al.com","from-ar.com","from-az.net","from-ca.com","from-co.net","from-ct.com","from-dc.com","from-de.com","from-fl.com","from-ga.com","from-hi.com","from-ia.com","from-id.com","from-il.com","from-in.com","from-ks.com","from-ky.com","from-la.net","from-ma.com","from-md.com","from-me.org","from-mi.com","from-mn.com","from-mo.com","from-ms.com","from-mt.com","from-nc.com","from-nd.com","from-ne.com","from-nh.com","from-nj.com","from-nm.com","from-nv.com","from-ny.net","from-oh.com","from-ok.com","from-or.com","from-pa.com","from-pr.com","from-ri.com","from-sc.com","from-sd.com","from-tn.com","from-tx.com","from-ut.com","from-va.com","from-vt.com","from-wa.com","from-wi.com","from-wv.com","from-wy.com","ftpaccess.cc","fuettertdasnetz.de","game-host.org","game-server.cc","getmyip.com","gets-it.net","go.dyndns.org","gotdns.com","gotdns.org","groks-the.info","groks-this.info","ham-radio-op.net","here-for-more.info","hobby-site.com","hobby-site.org","home.dyndns.org","homedns.org","homeftp.net","homeftp.org","homeip.net","homelinux.com","homelinux.net","homelinux.org","homeunix.com","homeunix.net","homeunix.org","iamallama.com","in-the-band.net","is-a-anarchist.com","is-a-blogger.com","is-a-bookkeeper.com","is-a-bruinsfan.org","is-a-bulls-fan.com","is-a-candidate.org","is-a-caterer.com","is-a-celticsfan.org","is-a-chef.com","is-a-chef.net","is-a-chef.org","is-a-conservative.com","is-a-cpa.com","is-a-cubicle-slave.com","is-a-democrat.com","is-a-designer.com","is-a-doctor.com","is-a-financialadvisor.com","is-a-geek.com","is-a-geek.net","is-a-geek.org","is-a-green.com","is-a-guru.com","is-a-hard-worker.com","is-a-hunter.com","is-a-knight.org","is-a-landscaper.com","is-a-lawyer.com","is-a-liberal.com","is-a-libertarian.com","is-a-linux-user.org","is-a-llama.com","is-a-musician.com","is-a-nascarfan.com","is-a-nurse.com","is-a-painter.com","is-a-patsfan.org","is-a-personaltrainer.com","is-a-photographer.com","is-a-player.com","is-a-republican.com","is-a-rockstar.com","is-a-socialist.com","is-a-soxfan.org","is-a-student.com","is-a-teacher.com","is-a-techie.com","is-a-therapist.com","is-an-accountant.com","is-an-actor.com","is-an-actress.com","is-an-anarchist.com","is-an-artist.com","is-an-engineer.com","is-an-entertainer.com","is-by.us","is-certified.com","is-found.org","is-gone.com","is-into-anime.com","is-into-cars.com","is-into-cartoons.com","is-into-games.com","is-leet.com","is-lost.org","is-not-certified.com","is-saved.org","is-slick.com","is-uberleet.com","is-very-bad.org","is-very-evil.org","is-very-good.org","is-very-nice.org","is-very-sweet.org","is-with-theband.com","isa-geek.com","isa-geek.net","isa-geek.org","isa-hockeynut.com","issmarterthanyou.com","isteingeek.de","istmein.de","kicks-ass.net","kicks-ass.org","knowsitall.info","land-4-sale.us","lebtimnetz.de","leitungsen.de","likes-pie.com","likescandy.com","merseine.nu","mine.nu","misconfused.org","mypets.ws","myphotos.cc","neat-url.com","office-on-the.net","on-the-web.tv","podzone.net","podzone.org","readmyblog.org","saves-the-whales.com","scrapper-site.net","scrapping.cc","selfip.biz","selfip.com","selfip.info","selfip.net","selfip.org","sells-for-less.com","sells-for-u.com","sells-it.net","sellsyourhome.org","servebbs.com","servebbs.net","servebbs.org","serveftp.net","serveftp.org","servegame.org","shacknet.nu","simple-url.com","space-to-rent.com","stuff-4-sale.org","stuff-4-sale.us","teaches-yoga.com","thruhere.net","traeumtgerade.de","webhop.biz","webhop.info","webhop.net","webhop.org","worse-than.tv","writesthisblog.com","ddnss.de","dyn.ddnss.de","dyndns.ddnss.de","dyndns1.de","dyn-ip24.de","home-webserver.de","dyn.home-webserver.de","myhome-server.de","ddnss.org","definima.net","definima.io","bci.dnstrace.pro","ddnsfree.com","ddnsgeek.com","giize.com","gleeze.com","kozow.com","loseyourip.com","ooguy.com","theworkpc.com","casacam.net","dynu.net","accesscam.org","camdvr.org","freeddns.org","mywire.org","webredirect.org","myddns.rocks","blogsite.xyz","dynv6.net","e4.cz","mytuleap.com","enonic.io","customer.enonic.io","eu.org","al.eu.org","asso.eu.org","at.eu.org","au.eu.org","be.eu.org","bg.eu.org","ca.eu.org","cd.eu.org","ch.eu.org","cn.eu.org","cy.eu.org","cz.eu.org","de.eu.org","dk.eu.org","edu.eu.org","ee.eu.org","es.eu.org","fi.eu.org","fr.eu.org","gr.eu.org","hr.eu.org","hu.eu.org","ie.eu.org","il.eu.org","in.eu.org","int.eu.org","is.eu.org","it.eu.org","jp.eu.org","kr.eu.org","lt.eu.org","lu.eu.org","lv.eu.org","mc.eu.org","me.eu.org","mk.eu.org","mt.eu.org","my.eu.org","net.eu.org","ng.eu.org","nl.eu.org","no.eu.org","nz.eu.org","paris.eu.org","pl.eu.org","pt.eu.org","q-a.eu.org","ro.eu.org","ru.eu.org","se.eu.org","si.eu.org","sk.eu.org","tr.eu.org","uk.eu.org","us.eu.org","eu-1.evennode.com","eu-2.evennode.com","eu-3.evennode.com","eu-4.evennode.com","us-1.evennode.com","us-2.evennode.com","us-3.evennode.com","us-4.evennode.com","twmail.cc","twmail.net","twmail.org","mymailer.com.tw","url.tw","apps.fbsbx.com","ru.net","adygeya.ru","bashkiria.ru","bir.ru","cbg.ru","com.ru","dagestan.ru","grozny.ru","kalmykia.ru","kustanai.ru","marine.ru","mordovia.ru","msk.ru","mytis.ru","nalchik.ru","nov.ru","pyatigorsk.ru","spb.ru","vladikavkaz.ru","vladimir.ru","abkhazia.su","adygeya.su","aktyubinsk.su","arkhangelsk.su","armenia.su","ashgabad.su","azerbaijan.su","balashov.su","bashkiria.su","bryansk.su","bukhara.su","chimkent.su","dagestan.su","east-kazakhstan.su","exnet.su","georgia.su","grozny.su","ivanovo.su","jambyl.su","kalmykia.su","kaluga.su","karacol.su","karaganda.su","karelia.su","khakassia.su","krasnodar.su","kurgan.su","kustanai.su","lenug.su","mangyshlak.su","mordovia.su","msk.su","murmansk.su","nalchik.su","navoi.su","north-kazakhstan.su","nov.su","obninsk.su","penza.su","pokrovsk.su","sochi.su","spb.su","tashkent.su","termez.su","togliatti.su","troitsk.su","tselinograd.su","tula.su","tuva.su","vladikavkaz.su","vladimir.su","vologda.su","channelsdvr.net","fastlylb.net","map.fastlylb.net","freetls.fastly.net","map.fastly.net","a.prod.fastly.net","global.prod.fastly.net","a.ssl.fastly.net","b.ssl.fastly.net","global.ssl.fastly.net","fastpanel.direct","fastvps-server.com","fhapp.xyz","fedorainfracloud.org","fedorapeople.org","cloud.fedoraproject.org","app.os.fedoraproject.org","app.os.stg.fedoraproject.org","filegear.me","firebaseapp.com","flynnhub.com","flynnhosting.net","freebox-os.com","freeboxos.com","fbx-os.fr","fbxos.fr","freebox-os.fr","freeboxos.fr","freedesktop.org","*.futurecms.at","*.ex.futurecms.at","*.in.futurecms.at","futurehosting.at","futuremailing.at","*.ex.ortsinfo.at","*.kunden.ortsinfo.at","*.statics.cloud","service.gov.uk","github.io","githubusercontent.com","gitlab.io","homeoffice.gov.uk","ro.im","shop.ro","goip.de","*.0emm.com","appspot.com","blogspot.ae","blogspot.al","blogspot.am","blogspot.ba","blogspot.be","blogspot.bg","blogspot.bj","blogspot.ca","blogspot.cf","blogspot.ch","blogspot.cl","blogspot.co.at","blogspot.co.id","blogspot.co.il","blogspot.co.ke","blogspot.co.nz","blogspot.co.uk","blogspot.co.za","blogspot.com","blogspot.com.ar","blogspot.com.au","blogspot.com.br","blogspot.com.by","blogspot.com.co","blogspot.com.cy","blogspot.com.ee","blogspot.com.eg","blogspot.com.es","blogspot.com.mt","blogspot.com.ng","blogspot.com.tr","blogspot.com.uy","blogspot.cv","blogspot.cz","blogspot.de","blogspot.dk","blogspot.fi","blogspot.fr","blogspot.gr","blogspot.hk","blogspot.hr","blogspot.hu","blogspot.ie","blogspot.in","blogspot.is","blogspot.it","blogspot.jp","blogspot.kr","blogspot.li","blogspot.lt","blogspot.lu","blogspot.md","blogspot.mk","blogspot.mr","blogspot.mx","blogspot.my","blogspot.nl","blogspot.no","blogspot.pe","blogspot.pt","blogspot.qa","blogspot.re","blogspot.ro","blogspot.rs","blogspot.ru","blogspot.se","blogspot.sg","blogspot.si","blogspot.sk","blogspot.sn","blogspot.td","blogspot.tw","blogspot.ug","blogspot.vn","cloudfunctions.net","cloud.goog","codespot.com","googleapis.com","googlecode.com","pagespeedmobilizer.com","publishproxy.com","withgoogle.com","withyoutube.com","hashbang.sh","hasura.app","hasura-app.io","hepforge.org","herokuapp.com","herokussl.com","myravendb.com","ravendb.community","ravendb.me","development.run","ravendb.run","moonscale.net","iki.fi","biz.at","info.at","info.cx","ac.leg.br","al.leg.br","am.leg.br","ap.leg.br","ba.leg.br","ce.leg.br","df.leg.br","es.leg.br","go.leg.br","ma.leg.br","mg.leg.br","ms.leg.br","mt.leg.br","pa.leg.br","pb.leg.br","pe.leg.br","pi.leg.br","pr.leg.br","rj.leg.br","rn.leg.br","ro.leg.br","rr.leg.br","rs.leg.br","sc.leg.br","se.leg.br","sp.leg.br","to.leg.br","pixolino.com","ipifony.net","mein-iserv.de","test-iserv.de","myjino.ru","*.hosting.myjino.ru","*.landing.myjino.ru","*.spectrum.myjino.ru","*.vps.myjino.ru","*.triton.zone","*.cns.joyent.com","js.org","keymachine.de","knightpoint.systems","co.krd","edu.krd","git-repos.de","lcube-server.de","svn-repos.de","app.lmpm.com","linkitools.space","linkyard.cloud","linkyard-cloud.ch","we.bs","uklugs.org","glug.org.uk","lug.org.uk","lugs.org.uk","barsy.bg","barsy.co.uk","barsyonline.co.uk","barsycenter.com","barsyonline.com","barsy.club","barsy.de","barsy.eu","barsy.in","barsy.info","barsy.io","barsy.me","barsy.menu","barsy.mobi","barsy.net","barsy.online","barsy.org","barsy.pro","barsy.pub","barsy.shop","barsy.site","barsy.support","barsy.uk","*.magentosite.cloud","mayfirst.info","mayfirst.org","hb.cldmail.ru","miniserver.com","memset.net","cloud.metacentrum.cz","custom.metacentrum.cz","flt.cloud.muni.cz","usr.cloud.muni.cz","meteorapp.com","eu.meteorapp.com","co.pl","azurecontainer.io","azurewebsites.net","azure-mobile.net","cloudapp.net","mozilla-iot.org","bmoattachments.org","net.ru","org.ru","pp.ru","bitballoon.com","netlify.com","4u.com","ngrok.io","nh-serv.co.uk","nfshost.com","dnsking.ch","mypi.co","n4t.co","001www.com","ddnslive.com","myiphost.com","forumz.info","16-b.it","32-b.it","64-b.it","soundcast.me","tcp4.me","dnsup.net","hicam.net","now-dns.net","ownip.net","vpndns.net","dynserv.org","now-dns.org","x443.pw","now-dns.top","ntdll.top","freeddns.us","crafting.xyz","zapto.xyz","nsupdate.info","nerdpol.ovh","blogsyte.com","brasilia.me","cable-modem.org","ciscofreak.com","collegefan.org","couchpotatofries.org","damnserver.com","ddns.me","ditchyourip.com","dnsfor.me","dnsiskinky.com","dvrcam.info","dynns.com","eating-organic.net","fantasyleague.cc","geekgalaxy.com","golffan.us","health-carereform.com","homesecuritymac.com","homesecuritypc.com","hopto.me","ilovecollege.info","loginto.me","mlbfan.org","mmafan.biz","myactivedirectory.com","mydissent.net","myeffect.net","mymediapc.net","mypsx.net","mysecuritycamera.com","mysecuritycamera.net","mysecuritycamera.org","net-freaks.com","nflfan.org","nhlfan.net","no-ip.ca","no-ip.co.uk","no-ip.net","noip.us","onthewifi.com","pgafan.net","point2this.com","pointto.us","privatizehealthinsurance.net","quicksytes.com","read-books.org","securitytactics.com","serveexchange.com","servehumour.com","servep2p.com","servesarcasm.com","stufftoread.com","ufcfan.org","unusualperson.com","workisboring.com","3utilities.com","bounceme.net","ddns.net","ddnsking.com","gotdns.ch","hopto.org","myftp.biz","myftp.org","myvnc.com","no-ip.biz","no-ip.info","no-ip.org","noip.me","redirectme.net","servebeer.com","serveblog.net","servecounterstrike.com","serveftp.com","servegame.com","servehalflife.com","servehttp.com","serveirc.com","serveminecraft.net","servemp3.com","servepics.com","servequake.com","sytes.net","webhop.me","zapto.org","stage.nodeart.io","nodum.co","nodum.io","pcloud.host","nyc.mn","nom.ae","nom.af","nom.ai","nom.al","nym.by","nym.bz","nom.cl","nom.gd","nom.ge","nom.gl","nym.gr","nom.gt","nym.gy","nom.hn","nym.ie","nom.im","nom.ke","nym.kz","nym.la","nym.lc","nom.li","nym.li","nym.lt","nym.lu","nym.me","nom.mk","nym.mn","nym.mx","nom.nu","nym.nz","nym.pe","nym.pt","nom.pw","nom.qa","nym.ro","nom.rs","nom.si","nym.sk","nom.st","nym.su","nym.sx","nom.tj","nym.tw","nom.ug","nom.uy","nom.vc","nom.vg","cya.gg","cloudycluster.net","nid.io","opencraft.hosting","operaunite.com","outsystemscloud.com","ownprovider.com","own.pm","ox.rs","oy.lc","pgfog.com","pagefrontapp.com","art.pl","gliwice.pl","krakow.pl","poznan.pl","wroc.pl","zakopane.pl","pantheonsite.io","gotpantheon.com","mypep.link","on-web.fr","*.platform.sh","*.platformsh.site","xen.prgmr.com","priv.at","protonet.io","chirurgiens-dentistes-en-france.fr","byen.site","ras.ru","qa2.com","dev-myqnapcloud.com","alpha-myqnapcloud.com","myqnapcloud.com","*.quipelements.com","vapor.cloud","vaporcloud.io","rackmaze.com","rackmaze.net","rhcloud.com","resindevice.io","devices.resinstaging.io","hzc.io","wellbeingzone.eu","ptplus.fit","wellbeingzone.co.uk","sandcats.io","logoip.de","logoip.com","schokokeks.net","scrysec.com","firewall-gateway.com","firewall-gateway.de","my-gateway.de","my-router.de","spdns.de","spdns.eu","firewall-gateway.net","my-firewall.org","myfirewall.org","spdns.org","*.s5y.io","*.sensiosite.cloud","biz.ua","co.ua","pp.ua","shiftedit.io","myshopblocks.com","1kapp.com","appchizi.com","applinzi.com","sinaapp.com","vipsinaapp.com","bounty-full.com","alpha.bounty-full.com","beta.bounty-full.com","static.land","dev.static.land","sites.static.land","apps.lair.io","*.stolos.io","spacekit.io","customer.speedpartner.de","storj.farm","utwente.io","temp-dns.com","diskstation.me","dscloud.biz","dscloud.me","dscloud.mobi","dsmynas.com","dsmynas.net","dsmynas.org","familyds.com","familyds.net","familyds.org","i234.me","myds.me","synology.me","vpnplus.to","taifun-dns.de","gda.pl","gdansk.pl","gdynia.pl","med.pl","sopot.pl","gwiddle.co.uk","cust.dev.thingdust.io","cust.disrec.thingdust.io","cust.prod.thingdust.io","cust.testing.thingdust.io","bloxcms.com","townnews-staging.com","12hp.at","2ix.at","4lima.at","lima-city.at","12hp.ch","2ix.ch","4lima.ch","lima-city.ch","trafficplex.cloud","de.cool","12hp.de","2ix.de","4lima.de","lima-city.de","1337.pictures","clan.rip","lima-city.rocks","webspace.rocks","lima.zone","*.transurl.be","*.transurl.eu","*.transurl.nl","tuxfamily.org","dd-dns.de","diskstation.eu","diskstation.org","dray-dns.de","draydns.de","dyn-vpn.de","dynvpn.de","mein-vigor.de","my-vigor.de","my-wan.de","syno-ds.de","synology-diskstation.de","synology-ds.de","uber.space","*.uberspace.de","hk.com","hk.org","ltd.hk","inc.hk","virtualuser.de","virtual-user.de","lib.de.us","2038.io","router.management","v-info.info","wedeploy.io","wedeploy.me","wedeploy.sh","remotewd.com","wmflabs.org","half.host","xnbay.com","u2.xnbay.com","u2-local.xnbay.com","cistron.nl","demon.nl","xs4all.space","official.academy","yolasite.com","ybo.faith","yombo.me","homelink.one","ybo.party","ybo.review","ybo.science","ybo.trade","nohost.me","noho.st","za.net","za.org","now.sh","zone.id"]},8763:function(e,t,n){var r=n(6886);function isStream(e){return e instanceof r.Stream}function isReadable(e){return isStream(e)&&typeof e._read=="function"&&typeof e._readableState=="object"}function isWritable(e){return isStream(e)&&typeof e._write=="function"&&typeof e._writableState=="object"}function isDuplex(e){return isReadable(e)&&isWritable(e)}e.exports=isStream;e.exports.isReadable=isReadable;e.exports.isWritable=isWritable;e.exports.isDuplex=isDuplex},8774:function(e,t,n){"use strict";var r=n(5325);function isObjectObject(e){return r(e)===true&&Object.prototype.toString.call(e)==="[object Object]"}e.exports=function isPlainObject(e){var t,n;if(isObjectObject(e)===false)return false;t=e.constructor;if(typeof t!=="function")return false;n=t.prototype;if(isObjectObject(n)===false)return false;if(n.hasOwnProperty("isPrototypeOf")===false){return false}return true}},8785:function(e,t,n){"use strict";var r=n(2617),i=n(5897),o=n(1486).isMatch,a=Object.prototype.toString;function isFunction(e){return a.call(e)==="[object Function]"}function isString(e){return a.call(e)==="[object String]"}function isUndefined(e){return e===void 0}function readdir(e,t,a){var s,c,u,l=[],f={directories:[],files:[]},p,d,h,m=false,v=false;if(isUndefined(t)){var g=n(1530)();s=g.stream;t=g.processEntry;a=g.done;c=g.handleError;u=g.handleFatalError;s.on("close",function(){m=true});s.on("pause",function(){v=true});s.on("resume",function(){v=false})}else{c=function(e){l.push(e)};u=function(e){c(e);d(l,null)}}if(isUndefined(e)){u(new Error("Need to pass at least one argument: opts! \n"+"https://github.com/paulmillr/readdirp#options"));return s}e.root=e.root||".";e.fileFilter=e.fileFilter||function(){return true};e.directoryFilter=e.directoryFilter||function(){return true};e.depth=typeof e.depth==="undefined"?999999999:e.depth;e.entryType=e.entryType||"files";var y=e.lstat===true?r.lstat.bind(r):r.stat.bind(r);if(isUndefined(a)){p=function(){};d=t}else{p=t;d=a}function normalizeFilter(e){if(isUndefined(e))return undefined;function isNegated(e){function negated(e){return e.indexOf("!")===0}var t=e.some(negated);if(!t){return false}else{if(e.every(negated)){return true}else{throw new Error("Cannot mix negated with non negated glob filters: "+e+"\n"+"https://github.com/paulmillr/readdirp#filters")}}}if(isFunction(e)){return e}else if(isString(e)){return function(t){return o(t.name,e.trim())}}else if(e&&Array.isArray(e)){if(e)e=e.map(function(e){return e.trim()});return isNegated(e)?function(t){return e.every(function(e){return o(t.name,e)})}:function(t){return e.some(function(e){return o(t.name,e)})}}}function processDir(e,t,n){if(m)return;var o=t.length,a=0,s=[];r.realpath(e,function(e,r){if(m)return;if(e){c(e);n(s);return}var u=i.relative(h,r);if(t.length===0){n([])}else{t.forEach(function(e){var t=i.join(r,e),l=i.join(u,e);y(t,function(i,f){if(i){c(i)}else{s.push({name:e,path:l,fullPath:t,parentDir:u,fullParentDir:r,stat:f})}a++;if(a===o)n(s)})})}})}function readdirRec(t,n,i){var o=arguments;if(m)return;if(v){setImmediate(function(){readdirRec.apply(null,o)});return}r.readdir(t,function(r,o){if(r){c(r);i();return}processDir(t,o,function(t){var r=t.filter(function(t){return t.stat.isDirectory()&&e.directoryFilter(t)});r.forEach(function(t){if(e.entryType==="directories"||e.entryType==="both"||e.entryType==="all"){p(t)}f.directories.push(t)});t.filter(function(t){var n=e.entryType==="all"?!t.stat.isDirectory():t.stat.isFile()||t.stat.isSymbolicLink();return n&&e.fileFilter(t)}).forEach(function(t){if(e.entryType==="files"||e.entryType==="both"||e.entryType==="all"){p(t)}f.files.push(t)});var o=r.length;if(o===0||n===e.depth){i()}else{r.forEach(function(e){readdirRec(e.fullPath,n+1,function(){o=o-1;if(o===0){i()}})})}})})}try{e.fileFilter=normalizeFilter(e.fileFilter);e.directoryFilter=normalizeFilter(e.directoryFilter)}catch(e){u(e);return s}r.realpath(e.root,function(t,n){if(t){u(t);return s}h=n;readdirRec(e.root,0,function(){if(l.length>0){d(l,f)}else{d(null,f)}})});return s}e.exports=readdir},8786:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function getBundledBuilders(){return["@now/go","@now/next","@now/node","@now/ruby","@now/python","@now/static-build","@now/build-utils"]}t.getBundledBuilders=getBundledBuilders},8787:function(e){"use strict";e.exports=function(e){var t=0;function hasMore(){return t<e.length}function token(){return hasMore()?e[t]:null}function next(){if(!hasMore()){throw new Error}t++}function parseOperator(e){var t=token();if(t&&t.type==="OPERATOR"&&e===t.string){next();return t.string}}function parseWith(){if(parseOperator("WITH")){var e=token();if(e&&e.type==="EXCEPTION"){next();return e.string}throw new Error("Expected exception after `WITH`")}}function parseLicenseRef(){var e=t;var n="";var r=token();if(r.type==="DOCUMENTREF"){next();n+="DocumentRef-"+r.string+":";if(!parseOperator(":")){throw new Error("Expected `:` after `DocumentRef-...`")}}r=token();if(r.type==="LICENSEREF"){next();n+="LicenseRef-"+r.string;return{license:n}}t=e}function parseLicense(){var e=token();if(e&&e.type==="LICENSE"){next();var t={license:e.string};if(parseOperator("+")){t.plus=true}var n=parseWith();if(n){t.exception=n}return t}}function parseParenthesizedExpression(){var e=parseOperator("(");if(!e){return}var t=r();if(!parseOperator(")")){throw new Error("Expected `)`")}return t}function parseAtom(){return parseParenthesizedExpression()||parseLicenseRef()||parseLicense()}function makeBinaryOpParser(e,t){return function parseBinaryOp(){var n=t();if(!n){return}if(!parseOperator(e)){return n}var r=parseBinaryOp();if(!r){throw new Error("Expected expression")}return{left:n,conjunction:e.toLowerCase(),right:r}}}var n=makeBinaryOpParser("AND",parseAtom);var r=makeBinaryOpParser("OR",n);var i=r();if(!i||hasMore()){throw new Error("Syntax error")}return i}},8792:function(e,t,n){e.exports={read:read,write:write};var r=n(9261);var i=n(3062).Buffer;var o=n(2046);var a=n(120);var s=n(7825);function read(e,t){var n=e.toString("ascii").split(/[\r\n]+/);var a=false;var s;var c=0;while(c<n.length){s=splitHeader(n[c++]);if(s&&s[0].toLowerCase()==="putty-user-key-file-2"){a=true;break}}if(!a){throw new Error("No PuTTY format first line found")}var u=s[1];s=splitHeader(n[c++]);r.equal(s[0].toLowerCase(),"encryption");s=splitHeader(n[c++]);r.equal(s[0].toLowerCase(),"comment");var l=s[1];s=splitHeader(n[c++]);r.equal(s[0].toLowerCase(),"public-lines");var f=parseInt(s[1],10);if(!isFinite(f)||f<0||f>n.length){throw new Error("Invalid public-lines count")}var p=i.from(n.slice(c,c+f).join(""),"base64");var d=o.algToKeyType(u);var h=o.read(p);if(h.type!==d){throw new Error("Outer key algorithm mismatch")}h.comment=l;return h}function splitHeader(e){var t=e.indexOf(":");if(t===-1)return null;var n=e.slice(0,t);++t;while(e[t]===" ")++t;var r=e.slice(t);return[n,r]}function write(e,t){r.object(e);if(!a.isKey(e))throw new Error("Must be a public key");var n=o.keyTypeToAlg(e);var s=o.write(e);var c=e.comment||"";var u=s.toString("base64");var l=wrap(u,64);l.unshift("Public-Lines: "+l.length);l.unshift("Comment: "+c);l.unshift("Encryption: none");l.unshift("PuTTY-User-Key-File-2: "+n);return i.from(l.join("\n")+"\n")}function wrap(e,t){var n=[];var r=0;while(r<e.length){n.push(e.slice(r,r+64));r+=64}return n}},8794:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(2229));const s=i(n(3759));const c=i(n(6725));const u=i(n(2616));const l=i(n(4495));const f=i(n(8685));const p=i(n(4573));const d=i(n(8303));const h=i(n(586));const m=i(n(8130));const v=n(8715);const g=i(n(4110));function ls(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:a}=e;const{currentTeam:c}=a;const{apiUrl:u}=e;const g=t["--debug"];const y=t["--after"];const b=new p.default({apiUrl:u,token:r,currentTeam:c,debug:g});let w=null;try{({contextName:w}=yield d.default(b))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){i.error(e.message);return 1}throw e}const x=new l.default({apiUrl:u,token:r,debug:g,currentTeam:c});const k=h.default();if(n.length!==0){i.error(`Invalid number of arguments. Usage: ${o.default.cyan("`now certs ls`")}`);return 1}const j=yield m.default(i,x,{after:y}).catch(e=>e);if(j instanceof v.CertNotFound){i.error(j.message);return 1}if(j instanceof Error){throw j}const S=sortByCn(j);i.log(`${s.default("certificate",S.length,true)} found under ${o.default.bold(w)} ${k()}`);if(S.length>=100){const{uid:e}=j[j.length-1];i.note(`There may be more certificates that can be retrieved with ${f.default(`now ${process.argv.slice(2).join(" ")} --after=${e}`)}.\n`)}if(S.length>0){console.log(formatCertsTable(S))}return 0})}function formatCertsTable(e){return`${u.default([formatCertsTableHead(),...formatCertsTableBody(e)],{align:["l","l","r","c","r"],hsep:" ".repeat(2),stringLength:g.default}).replace(/^(.*)/gm," $1")}\n`}function formatCertsTableHead(){return[o.default.dim("id"),o.default.dim("cns"),o.default.dim("expiration"),o.default.dim("renew"),o.default.dim("age")]}function formatCertsTableBody(e){const t=new Date;return e.reduce((e,n)=>e.concat(formatCert(t,n)),[])}function formatCert(e,t){return t.cns.map((n,r)=>r===0?formatCertFirstCn(e,t,n,t.cns.length>1):formatCertNonFirstCn(n,t.cns.length>1))}function formatCertNonFirstCn(e,t){return["",formatCertCn(e,t),"","",""]}function formatCertCn(e,t){return t?`${o.default.gray("-")} ${o.default.bold(e)}`:o.default.bold(e)}function formatCertFirstCn(e,t,n,r){return[t.uid,formatCertCn(n,r),formatExpirationDate(new Date(t.expiration)),t.autoRenew?"yes":"no",o.default.gray(a.default(e.getTime()-new Date(t.created).getTime()))]}function formatExpirationDate(e){const t=e.getTime()-Date.now();return t<0?o.default.gray(`${a.default(-t)} ago`):o.default.gray(`in ${a.default(t)}`)}function sortByCn(e){return e.concat().sort((e,t)=>{const n=c.default.get(e.cns[0].replace("*","wildcard"));const r=c.default.get(t.cns[0].replace("*","wildcard"));if(!n||!r)return 0;return n.localeCompare(r)})}t.default=ls},8804:function(e,t,n){var r=n(662);var i;if(process.platform==="win32"||global.TESTING_WINDOWS){i=n(178)}else{i=n(8271)}e.exports=isexe;isexe.sync=sync;function isexe(e,t,n){if(typeof t==="function"){n=t;t={}}if(!n){if(typeof Promise!=="function"){throw new TypeError("callback not provided")}return new Promise(function(n,r){isexe(e,t||{},function(e,t){if(e){r(e)}else{n(t)}})})}i(e,t||{},function(e,r){if(e){if(e.code==="EACCES"||t&&t.ignoreErrors){e=null;r=false}}n(e,r)})}function sync(e,t){try{return i.sync(e,t||{})}catch(e){if(t&&t.ignoreErrors||e.code==="EACCES"){return false}else{throw e}}}},8806:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(6725));const o=n(8715);const a=r(n(8233));const s=r(n(9698));function getWildcardCNSForAlias(e){if(a.default(e)){return[s.default(e),e]}const t=i.default.parse(e);if(t.error){throw new o.InvalidDomain(e)}const{domain:n,subdomain:r}=t;if(!n){throw new o.InvalidDomain(e)}const c=r&&r.includes(".")?r.split(".").slice(1).join("."):null;const u=c?`${c}.${n}`:n;return[u,`*.${u}`]}t.default=getWildcardCNSForAlias},8807:function(e,t,n){const r=n(9335).Buffer;function decodeBase64(e){return r.from(e,"base64").toString("utf8")}function encodeBase64(e){return r.from(e,"utf8").toString("base64")}e.exports={decodeBase64:decodeBase64,encodeBase64:encodeBase64}},8811:function(e,t,n){var r=n(8859);var i=n(649);t=e.exports=n(2094);t.init=init;t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.colors=[6,2,3,4,5,1];t.inspectOpts=Object.keys(process.env).filter(function(e){return/^debug_/i.test(e)}).reduce(function(e,t){var n=t.substring(6).toLowerCase().replace(/_([a-z])/g,function(e,t){return t.toUpperCase()});var r=process.env[t];if(/^(yes|on|true|enabled)$/i.test(r))r=true;else if(/^(no|off|false|disabled)$/i.test(r))r=false;else if(r==="null")r=null;else r=Number(r);e[n]=r;return e},{});var o=parseInt(process.env.DEBUG_FD,10)||2;if(1!==o&&2!==o){i.deprecate(function(){},"except for stderr(2) and stdout(1), any other usage of DEBUG_FD is deprecated. Override debug.log if you want to use a different log function (https://git.io/debug_fd)")()}var a=1===o?process.stdout:2===o?process.stderr:createWritableStdioStream(o);function useColors(){return"colors"in t.inspectOpts?Boolean(t.inspectOpts.colors):r.isatty(o)}t.formatters.o=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts).split("\n").map(function(e){return e.trim()}).join(" ")};t.formatters.O=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts)};function formatArgs(e){var n=this.namespace;var r=this.useColors;if(r){var i=this.color;var o=" [3"+i+";1m"+n+" "+"";e[0]=o+e[0].split("\n").join("\n"+o);e.push("[3"+i+"m+"+t.humanize(this.diff)+"")}else{e[0]=(new Date).toUTCString()+" "+n+" "+e[0]}}function log(){return a.write(i.format.apply(i,arguments)+"\n")}function save(e){if(null==e){delete process.env.DEBUG}else{process.env.DEBUG=e}}function load(){return process.env.DEBUG}function createWritableStdioStream(e){var t;var i=process.binding("tty_wrap");switch(i.guessHandleType(e)){case"TTY":t=new r.WriteStream(e);t._type="tty";if(t._handle&&t._handle.unref){t._handle.unref()}break;case"FILE":var o=n(662);t=new o.SyncWriteStream(e,{autoClose:false});t._type="fs";break;case"PIPE":case"TCP":var a=n(1939);t=new a.Socket({fd:e,readable:false,writable:true});t.readable=false;t.read=null;t._type="pipe";if(t._handle&&t._handle.unref){t._handle.unref()}break;default:throw new Error("Implement me. Unknown stream file type!")}t.fd=e;t._isStdio=true;return t}function init(e){e.inspectOpts={};var n=Object.keys(t.inspectOpts);for(var r=0;r<n.length;r++){e.inspectOpts[n[r]]=t.inspectOpts[n[r]]}}t.enable(load())},8841:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=n(774);const a=i(n(1737));const s=n(5897);const c=i(n(2721));const u=i(n(653));const l=i(n(2873));const f=n(16);const p=n(7479);const d=new f.Sema(10);t.API_FILES="https://api.zeit.co/v2/now/files";t.API_DEPLOYMENTS="https://api.zeit.co/v9/now/deployments";t.API_DEPLOYMENTS_LEGACY="https://api.zeit.co/v3/now/deployments";t.API_DELETE_DEPLOYMENTS_LEGACY="https://api.zeit.co/v2/now/deployments";t.EVENTS=new Set(["hashes-calculated","file_count","file-uploaded","all-files-uploaded","created","ready","warning","error","build-state-changed"]);function parseNowJSON(e){return r(this,void 0,void 0,function*(){if(!e){return{}}try{const t=yield p.readFile(e,"utf8");return JSON.parse(t)}catch(e){console.error(e);return{}}})}t.parseNowJSON=parseNowJSON;const h=function(e,t){return r(this,void 0,void 0,function*(){try{return yield p.readFile(e,"utf8")}catch(e){return t}})};function getNowIgnore(e){return r(this,void 0,void 0,function*(){let t=[".hg",".git",".gitmodules",".svn",".cache",".next",".now",".npmignore",".dockerignore",".gitignore",".*.swp",".DS_Store",".wafpicke-*",".lock-wscript",".env",".env.build",".venv","npm-debug.log","config.gypi","node_modules","__pycache__/","venv/","CVS"];const n=Array.isArray(e)?yield h(s.join(e.find(e=>e.includes(".nowignore"),"")||"",".nowignore"),""):yield h(s.join(e,".nowignore"),"");const r=u.default().add(`${t.join("\n")}\n${n}`);return r})}t.getNowIgnore=getNowIgnore;t.fetch=((e,t,n={},i)=>r(this,void 0,void 0,function*(){d.acquire();const r=createDebug(i);let s;if(n.teamId){const t=o.parse(e,true);const r=t.query;r.teamId=n.teamId;e=`${t.href}?${c.default.encode(r)}`;delete n.teamId}n.headers=n.headers||{};n.headers.Authorization=`Bearer ${t}`;n.headers["user-agent"]=`now-client-v${l.default.version}`;r(`${n.method||"GET"} ${e}`);s=Date.now();const u=yield a.default(e,n);r(`DONE in ${Date.now()-s}ms: ${n.method||"GET"} ${e}`);d.release();return u}));const m=process.platform.includes("win");t.prepareFiles=((e,t)=>{const n=[...e.keys()].reduce((n,r)=>{const i=[...n];const o=e.get(r);for(const e of o.names){let n;if(t.isDirectory){n=t.path?e.substring(t.path.length+1):e}else{const t=e.split(s.sep);n=t[t.length-1]}i.push({file:m?n.replace(/\\/g,"/"):n,size:o.data.byteLength||o.data.length,sha:r})}return i},[]);return n});function createDebug(e){const t=e||process.env.NOW_CLIENT_DEBUG;if(t){return(...e)=>{process.stderr.write([`[now-client-debug] ${(new Date).toISOString()}`,...e].join(" ")+"\n")}}return()=>{}}t.createDebug=createDebug},8852:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function isValidName(e=""){const t=":/#?&@%+~".split("");return!e.split("").every(e=>t.includes(e))}t.isValidName=isValidName},8856:function(e){function Bzip2Error(e){this.name="Bzip2Error";this.message=e;this.stack=(new Error).stack}Bzip2Error.prototype=new Error;var t={Error:function(e){throw new Bzip2Error(e)}};var n={};n.Bzip2Error=Bzip2Error;n.crcTable=[0,79764919,159529838,222504665,319059676,398814059,445009330,507990021,638119352,583659535,797628118,726387553,890018660,835552979,1015980042,944750013,1276238704,1221641927,1167319070,1095957929,1595256236,1540665371,1452775106,1381403509,1780037320,1859660671,1671105958,1733955601,2031960084,2111593891,1889500026,1952343757,2552477408,2632100695,2443283854,2506133561,2334638140,2414271883,2191915858,2254759653,3190512472,3135915759,3081330742,3009969537,2905550212,2850959411,2762807018,2691435357,3560074640,3505614887,3719321342,3648080713,3342211916,3287746299,3467911202,3396681109,4063920168,4143685023,4223187782,4286162673,3779000052,3858754371,3904687514,3967668269,881225847,809987520,1023691545,969234094,662832811,591600412,771767749,717299826,311336399,374308984,453813921,533576470,25881363,88864420,134795389,214552010,2023205639,2086057648,1897238633,1976864222,1804852699,1867694188,1645340341,1724971778,1587496639,1516133128,1461550545,1406951526,1302016099,1230646740,1142491917,1087903418,2896545431,2825181984,2770861561,2716262478,3215044683,3143675388,3055782693,3001194130,2326604591,2389456536,2200899649,2280525302,2578013683,2640855108,2418763421,2498394922,3769900519,3832873040,3912640137,3992402750,4088425275,4151408268,4197601365,4277358050,3334271071,3263032808,3476998961,3422541446,3585640067,3514407732,3694837229,3640369242,1762451694,1842216281,1619975040,1682949687,2047383090,2127137669,1938468188,2001449195,1325665622,1271206113,1183200824,1111960463,1543535498,1489069629,1434599652,1363369299,622672798,568075817,748617968,677256519,907627842,853037301,1067152940,995781531,51762726,131386257,177728840,240578815,269590778,349224269,429104020,491947555,4046411278,4126034873,4172115296,4234965207,3794477266,3874110821,3953728444,4016571915,3609705398,3555108353,3735388376,3664026991,3290680682,3236090077,3449943556,3378572211,3174993278,3120533705,3032266256,2961025959,2923101090,2868635157,2813903052,2742672763,2604032198,2683796849,2461293480,2524268063,2284983834,2364738477,2175806836,2238787779,1569362073,1498123566,1409854455,1355396672,1317987909,1246755826,1192025387,1137557660,2072149281,2135122070,1912620623,1992383480,1753615357,1816598090,1627664531,1707420964,295390185,358241886,404320391,483945776,43990325,106832002,186451547,266083308,932423249,861060070,1041341759,986742920,613929101,542559546,756411363,701822548,3316196985,3244833742,3425377559,3370778784,3601682597,3530312978,3744426955,3689838204,3819031489,3881883254,3928223919,4007849240,4037393693,4100235434,4180117107,4259748804,2310601993,2373574846,2151335527,2231098320,2596047829,2659030626,2470359227,2550115596,2947551409,2876312838,2788305887,2733848168,3165939309,3094707162,3040238851,2985771188];n.array=function(e){var t=0,n=0;var r=[0,1,3,7,15,31,63,127,255];return function(i){var o=0;while(i>0){var a=8-t;if(i>=a){o<<=a;o|=r[a]&e[n++];t=0;i-=a}else{o<<=i;o|=(e[n]&r[i]<<8-i-t)>>8-i-t;t+=i;i=0}}return o}};n.simple=function(e,t){var r=n.array(e);var i=n.header(r);var o=false;var a=1e5*i;var s=new Int32Array(a);do{o=n.decompress(r,t,s,a)}while(!o)};n.header=function(e){this.byteCount=new Int32Array(256);this.symToByte=new Uint8Array(256);this.mtfSymbol=new Int32Array(256);this.selectors=new Uint8Array(32768);if(e(8*3)!=4348520)t.Error("No magic number found");var n=e(8)-48;if(n<1||n>9)t.Error("Not a BZIP archive");return n};n.decompress=function(e,n,r,i,o){var a=20;var s=258;var c=0;var u=1;var l=50;var f=0^-1;for(var p="",d=0;d<6;d++)p+=e(8).toString(16);if(p=="177245385090"){var h=e(32)|0;if(h!==o)t.Error("Error in bzip2: crc32 do not match");e(null);return null}if(p!="314159265359")t.Error("eek not valid bzip data");var m=e(32)|0;if(e(1))t.Error("unsupported obsolete version");var v=e(24);if(v>i)t.Error("Initial position larger than buffer size");var g=e(16);var y=0;for(d=0;d<16;d++){if(g&1<<15-d){var b=e(16);for(k=0;k<16;k++){if(b&1<<15-k){this.symToByte[y++]=16*d+k}}}}var w=e(3);if(w<2||w>6)t.Error("another error");var x=e(15);if(x==0)t.Error("meh");for(var d=0;d<w;d++)this.mtfSymbol[d]=d;for(var d=0;d<x;d++){for(var k=0;e(1);k++)if(k>=w)t.Error("whoops another error");var j=this.mtfSymbol[k];for(var b=k-1;b>=0;b--){this.mtfSymbol[b+1]=this.mtfSymbol[b]}this.mtfSymbol[0]=j;this.selectors[d]=j}var S=y+2;var E=[];var _=new Uint8Array(s),C=new Uint16Array(a+1);var A;for(var k=0;k<w;k++){g=e(5);for(var d=0;d<S;d++){while(true){if(g<1||g>a)t.Error("I gave up a while ago on writing error messages");if(!e(1))break;if(!e(1))g++;else g--}_[d]=g}var O,F;O=F=_[0];for(var d=1;d<S;d++){if(_[d]>F)F=_[d];else if(_[d]<O)O=_[d]}A=E[k]={};A.permute=new Int32Array(s);A.limit=new Int32Array(a+1);A.base=new Int32Array(a+1);A.minLen=O;A.maxLen=F;var D=A.base.subarray(1);var T=A.limit.subarray(1);var I=0;for(var d=O;d<=F;d++)for(var g=0;g<S;g++)if(_[g]==d)A.permute[I++]=g;for(d=O;d<=F;d++)C[d]=T[d]=0;for(d=0;d<S;d++)C[_[d]]++;I=g=0;for(d=O;d<F;d++){I+=C[d];T[d]=I-1;I<<=1;D[d+1]=I-(g+=C[d])}T[F]=I+C[F]-1;D[O]=0}for(var d=0;d<256;d++){this.mtfSymbol[d]=d;this.byteCount[d]=0}var R,P,S,B;R=P=S=B=0;while(true){if(!S--){S=l-1;if(B>=x)t.Error("meow i'm a kitty, that's an error");A=E[this.selectors[B++]];D=A.base.subarray(1);T=A.limit.subarray(1)}d=A.minLen;k=e(d);while(true){if(d>A.maxLen)t.Error("rawr i'm a dinosaur");if(k<=T[d])break;d++;k=k<<1|e(1)}k-=D[d];if(k<0||k>=s)t.Error("moo i'm a cow");var N=A.permute[k];if(N==c||N==u){if(!R){R=1;g=0}if(N==c)g+=R;else g+=2*R;R<<=1;continue}if(R){R=0;if(P+g>i)t.Error("Boom.");j=this.symToByte[this.mtfSymbol[0]];this.byteCount[j]+=g;while(g--)r[P++]=j}if(N>y)break;if(P>=i)t.Error("I can't think of anything. Error");d=N-1;j=this.mtfSymbol[d];for(var b=d-1;b>=0;b--){this.mtfSymbol[b+1]=this.mtfSymbol[b]}this.mtfSymbol[0]=j;j=this.symToByte[j];this.byteCount[j]++;r[P++]=j}if(v<0||v>=P)t.Error("I'm a monkey and I'm throwing something at someone, namely you");var k=0;for(var d=0;d<256;d++){b=k+this.byteCount[d];this.byteCount[d]=k;k=b}for(var d=0;d<P;d++){j=r[d]&255;r[this.byteCount[j]]|=d<<8;this.byteCount[j]++}var z=0,L=0,M=0;if(P){z=r[v];L=z&255;z>>=8;M=-1}P=P;var U,q,H;while(P){P--;q=L;z=r[z];L=z&255;z>>=8;if(M++==3){U=L;H=q;L=-1}else{U=1;H=L}while(U--){f=(f<<8^this.crcTable[(f>>24^H)&255])&4294967295;n(H)}if(L!=q)M=0}f=(f^-1)>>>0;if((f|0)!=(m|0))t.Error("Error in bzip2: crc32 do not match");if(o===null)o=0;o=(f^(o<<1|o>>>31))&4294967295;return o};e.exports=n},8859:function(e){e.exports=require("tty")},8860:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return parseMeta});function parseMeta(e){if(!e){return{}}if(typeof e==="string"){e=[e]}const t={};e.forEach(e=>{const[n,r]=e.split("=");t[n]=r||""});return t}},8878:function(e){"use strict";var t=String.prototype.replace;var n=/%20/g;e.exports={default:"RFC3986",formatters:{RFC1738:function(e){return t.call(e,n,"+")},RFC3986:function(e){return e}},RFC1738:"RFC1738",RFC3986:"RFC3986"}},8888:function(e){"use strict";var t=Object.prototype.toString;e.exports=function(e){var n;return t.call(e)==="[object Object]"&&(n=Object.getPrototypeOf(e),n===null||n===Object.getPrototypeOf({}))}},8901:function(e,t,n){e=n.nmd(e);(function(){var n;var r="4.17.15";var i=200;var o="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",a="Expected a function";var s="__lodash_hash_undefined__";var c=500;var u="__lodash_placeholder__";var l=1,f=2,p=4;var d=1,h=2;var m=1,v=2,g=4,y=8,b=16,w=32,x=64,k=128,j=256,S=512;var E=30,_="...";var C=800,A=16;var O=1,F=2,D=3;var T=1/0,I=9007199254740991,R=1.7976931348623157e308,P=0/0;var B=4294967295,N=B-1,z=B>>>1;var L=[["ary",k],["bind",m],["bindKey",v],["curry",y],["curryRight",b],["flip",S],["partial",w],["partialRight",x],["rearg",j]];var M="[object Arguments]",U="[object Array]",q="[object AsyncFunction]",H="[object Boolean]",G="[object Date]",W="[object DOMException]",V="[object Error]",J="[object Function]",Y="[object GeneratorFunction]",Z="[object Map]",X="[object Number]",Q="[object Null]",K="[object Object]",$="[object Promise]",ee="[object Proxy]",te="[object RegExp]",ne="[object Set]",re="[object String]",ie="[object Symbol]",oe="[object Undefined]",ae="[object WeakMap]",se="[object WeakSet]";var ce="[object ArrayBuffer]",ue="[object DataView]",le="[object Float32Array]",fe="[object Float64Array]",pe="[object Int8Array]",de="[object Int16Array]",he="[object Int32Array]",me="[object Uint8Array]",ve="[object Uint8ClampedArray]",ge="[object Uint16Array]",ye="[object Uint32Array]";var be=/\b__p \+= '';/g,we=/\b(__p \+=) '' \+/g,xe=/(__e\(.*?\)|\b__t\)) \+\n'';/g;var ke=/&(?:amp|lt|gt|quot|#39);/g,je=/[&<>"']/g,Se=RegExp(ke.source),Ee=RegExp(je.source);var _e=/<%-([\s\S]+?)%>/g,Ce=/<%([\s\S]+?)%>/g,Ae=/<%=([\s\S]+?)%>/g;var Oe=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Fe=/^\w*$/,De=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g;var Te=/[\\^$.*+?()[\]{}|]/g,Ie=RegExp(Te.source);var Re=/^\s+|\s+$/g,Pe=/^\s+/,Be=/\s+$/;var Ne=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,ze=/\{\n\/\* \[wrapped with (.+)\] \*/,Le=/,? & /;var Me=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;var Ue=/\\(\\)?/g;var qe=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g;var He=/\w*$/;var Ge=/^[-+]0x[0-9a-f]+$/i;var We=/^0b[01]+$/i;var Ve=/^\[object .+?Constructor\]$/;var Je=/^0o[0-7]+$/i;var Ye=/^(?:0|[1-9]\d*)$/;var Ze=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g;var Xe=/($^)/;var Qe=/['\n\r\u2028\u2029\\]/g;var Ke="\\ud800-\\udfff",$e="\\u0300-\\u036f",et="\\ufe20-\\ufe2f",tt="\\u20d0-\\u20ff",nt=$e+et+tt,rt="\\u2700-\\u27bf",it="a-z\\xdf-\\xf6\\xf8-\\xff",ot="\\xac\\xb1\\xd7\\xf7",at="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",st="\\u2000-\\u206f",ct=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",ut="A-Z\\xc0-\\xd6\\xd8-\\xde",lt="\\ufe0e\\ufe0f",ft=ot+at+st+ct;var pt="[']",dt="["+Ke+"]",ht="["+ft+"]",mt="["+nt+"]",vt="\\d+",gt="["+rt+"]",yt="["+it+"]",bt="[^"+Ke+ft+vt+rt+it+ut+"]",wt="\\ud83c[\\udffb-\\udfff]",xt="(?:"+mt+"|"+wt+")",kt="[^"+Ke+"]",jt="(?:\\ud83c[\\udde6-\\uddff]){2}",St="[\\ud800-\\udbff][\\udc00-\\udfff]",Et="["+ut+"]",_t="\\u200d";var Ct="(?:"+yt+"|"+bt+")",At="(?:"+Et+"|"+bt+")",Ot="(?:"+pt+"(?:d|ll|m|re|s|t|ve))?",Ft="(?:"+pt+"(?:D|LL|M|RE|S|T|VE))?",Dt=xt+"?",Tt="["+lt+"]?",It="(?:"+_t+"(?:"+[kt,jt,St].join("|")+")"+Tt+Dt+")*",Rt="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Pt="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",Bt=Tt+Dt+It,Nt="(?:"+[gt,jt,St].join("|")+")"+Bt,zt="(?:"+[kt+mt+"?",mt,jt,St,dt].join("|")+")";var Lt=RegExp(pt,"g");var Mt=RegExp(mt,"g");var Ut=RegExp(wt+"(?="+wt+")|"+zt+Bt,"g");var qt=RegExp([Et+"?"+yt+"+"+Ot+"(?="+[ht,Et,"$"].join("|")+")",At+"+"+Ft+"(?="+[ht,Et+Ct,"$"].join("|")+")",Et+"?"+Ct+"+"+Ot,Et+"+"+Ft,Pt,Rt,vt,Nt].join("|"),"g");var Ht=RegExp("["+_t+Ke+nt+lt+"]");var Gt=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;var Wt=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"];var Vt=-1;var Jt={};Jt[le]=Jt[fe]=Jt[pe]=Jt[de]=Jt[he]=Jt[me]=Jt[ve]=Jt[ge]=Jt[ye]=true;Jt[M]=Jt[U]=Jt[ce]=Jt[H]=Jt[ue]=Jt[G]=Jt[V]=Jt[J]=Jt[Z]=Jt[X]=Jt[K]=Jt[te]=Jt[ne]=Jt[re]=Jt[ae]=false;var Yt={};Yt[M]=Yt[U]=Yt[ce]=Yt[ue]=Yt[H]=Yt[G]=Yt[le]=Yt[fe]=Yt[pe]=Yt[de]=Yt[he]=Yt[Z]=Yt[X]=Yt[K]=Yt[te]=Yt[ne]=Yt[re]=Yt[ie]=Yt[me]=Yt[ve]=Yt[ge]=Yt[ye]=true;Yt[V]=Yt[J]=Yt[ae]=false;var Zt={"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"};var Xt={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"};var Qt={"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"};var Kt={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"};var $t=parseFloat,en=parseInt;var tn=typeof global=="object"&&global&&global.Object===Object&&global;var nn=typeof self=="object"&&self&&self.Object===Object&&self;var rn=tn||nn||Function("return this")();var on=true&&t&&!t.nodeType&&t;var an=on&&"object"=="object"&&e&&!e.nodeType&&e;var sn=an&&an.exports===on;var cn=sn&&tn.process;var un=function(){try{var e=an&&an.require&&an.require("util").types;if(e){return e}return cn&&cn.binding&&cn.binding("util")}catch(e){}}();var ln=un&&un.isArrayBuffer,fn=un&&un.isDate,pn=un&&un.isMap,dn=un&&un.isRegExp,hn=un&&un.isSet,mn=un&&un.isTypedArray;function apply(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function arrayAggregator(e,t,n,r){var i=-1,o=e==null?0:e.length;while(++i<o){var a=e[i];t(r,a,n(a),e)}return r}function arrayEach(e,t){var n=-1,r=e==null?0:e.length;while(++n<r){if(t(e[n],n,e)===false){break}}return e}function arrayEachRight(e,t){var n=e==null?0:e.length;while(n--){if(t(e[n],n,e)===false){break}}return e}function arrayEvery(e,t){var n=-1,r=e==null?0:e.length;while(++n<r){if(!t(e[n],n,e)){return false}}return true}function arrayFilter(e,t){var n=-1,r=e==null?0:e.length,i=0,o=[];while(++n<r){var a=e[n];if(t(a,n,e)){o[i++]=a}}return o}function arrayIncludes(e,t){var n=e==null?0:e.length;return!!n&&baseIndexOf(e,t,0)>-1}function arrayIncludesWith(e,t,n){var r=-1,i=e==null?0:e.length;while(++r<i){if(n(t,e[r])){return true}}return false}function arrayMap(e,t){var n=-1,r=e==null?0:e.length,i=Array(r);while(++n<r){i[n]=t(e[n],n,e)}return i}function arrayPush(e,t){var n=-1,r=t.length,i=e.length;while(++n<r){e[i+n]=t[n]}return e}function arrayReduce(e,t,n,r){var i=-1,o=e==null?0:e.length;if(r&&o){n=e[++i]}while(++i<o){n=t(n,e[i],i,e)}return n}function arrayReduceRight(e,t,n,r){var i=e==null?0:e.length;if(r&&i){n=e[--i]}while(i--){n=t(n,e[i],i,e)}return n}function arraySome(e,t){var n=-1,r=e==null?0:e.length;while(++n<r){if(t(e[n],n,e)){return true}}return false}var vn=baseProperty("length");function asciiToArray(e){return e.split("")}function asciiWords(e){return e.match(Me)||[]}function baseFindKey(e,t,n){var r;n(e,function(e,n,i){if(t(e,n,i)){r=n;return false}});return r}function baseFindIndex(e,t,n,r){var i=e.length,o=n+(r?1:-1);while(r?o--:++o<i){if(t(e[o],o,e)){return o}}return-1}function baseIndexOf(e,t,n){return t===t?strictIndexOf(e,t,n):baseFindIndex(e,baseIsNaN,n)}function baseIndexOfWith(e,t,n,r){var i=n-1,o=e.length;while(++i<o){if(r(e[i],t)){return i}}return-1}function baseIsNaN(e){return e!==e}function baseMean(e,t){var n=e==null?0:e.length;return n?baseSum(e,t)/n:P}function baseProperty(e){return function(t){return t==null?n:t[e]}}function basePropertyOf(e){return function(t){return e==null?n:e[t]}}function baseReduce(e,t,n,r,i){i(e,function(e,i,o){n=r?(r=false,e):t(n,e,i,o)});return n}function baseSortBy(e,t){var n=e.length;e.sort(t);while(n--){e[n]=e[n].value}return e}function baseSum(e,t){var r,i=-1,o=e.length;while(++i<o){var a=t(e[i]);if(a!==n){r=r===n?a:r+a}}return r}function baseTimes(e,t){var n=-1,r=Array(e);while(++n<e){r[n]=t(n)}return r}function baseToPairs(e,t){return arrayMap(t,function(t){return[t,e[t]]})}function baseUnary(e){return function(t){return e(t)}}function baseValues(e,t){return arrayMap(t,function(t){return e[t]})}function cacheHas(e,t){return e.has(t)}function charsStartIndex(e,t){var n=-1,r=e.length;while(++n<r&&baseIndexOf(t,e[n],0)>-1){}return n}function charsEndIndex(e,t){var n=e.length;while(n--&&baseIndexOf(t,e[n],0)>-1){}return n}function countHolders(e,t){var n=e.length,r=0;while(n--){if(e[n]===t){++r}}return r}var gn=basePropertyOf(Zt);var yn=basePropertyOf(Xt);function escapeStringChar(e){return"\\"+Kt[e]}function getValue(e,t){return e==null?n:e[t]}function hasUnicode(e){return Ht.test(e)}function hasUnicodeWord(e){return Gt.test(e)}function iteratorToArray(e){var t,n=[];while(!(t=e.next()).done){n.push(t.value)}return n}function mapToArray(e){var t=-1,n=Array(e.size);e.forEach(function(e,r){n[++t]=[r,e]});return n}function overArg(e,t){return function(n){return e(t(n))}}function replaceHolders(e,t){var n=-1,r=e.length,i=0,o=[];while(++n<r){var a=e[n];if(a===t||a===u){e[n]=u;o[i++]=n}}return o}function setToArray(e){var t=-1,n=Array(e.size);e.forEach(function(e){n[++t]=e});return n}function setToPairs(e){var t=-1,n=Array(e.size);e.forEach(function(e){n[++t]=[e,e]});return n}function strictIndexOf(e,t,n){var r=n-1,i=e.length;while(++r<i){if(e[r]===t){return r}}return-1}function strictLastIndexOf(e,t,n){var r=n+1;while(r--){if(e[r]===t){return r}}return r}function stringSize(e){return hasUnicode(e)?unicodeSize(e):vn(e)}function stringToArray(e){return hasUnicode(e)?unicodeToArray(e):asciiToArray(e)}var bn=basePropertyOf(Qt);function unicodeSize(e){var t=Ut.lastIndex=0;while(Ut.test(e)){++t}return t}function unicodeToArray(e){return e.match(Ut)||[]}function unicodeWords(e){return e.match(qt)||[]}var wn=function runInContext(e){e=e==null?rn:xn.defaults(rn.Object(),e,xn.pick(rn,Wt));var t=e.Array,Me=e.Date,Ke=e.Error,$e=e.Function,et=e.Math,tt=e.Object,nt=e.RegExp,rt=e.String,it=e.TypeError;var ot=t.prototype,at=$e.prototype,st=tt.prototype;var ct=e["__core-js_shared__"];var ut=at.toString;var lt=st.hasOwnProperty;var ft=0;var pt=function(){var e=/[^.]+$/.exec(ct&&ct.keys&&ct.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}();var dt=st.toString;var ht=ut.call(tt);var mt=rn._;var vt=nt("^"+ut.call(lt).replace(Te,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");var gt=sn?e.Buffer:n,yt=e.Symbol,bt=e.Uint8Array,wt=gt?gt.allocUnsafe:n,xt=overArg(tt.getPrototypeOf,tt),kt=tt.create,jt=st.propertyIsEnumerable,St=ot.splice,Et=yt?yt.isConcatSpreadable:n,_t=yt?yt.iterator:n,Ct=yt?yt.toStringTag:n;var At=function(){try{var e=getNative(tt,"defineProperty");e({},"",{});return e}catch(e){}}();var Ot=e.clearTimeout!==rn.clearTimeout&&e.clearTimeout,Ft=Me&&Me.now!==rn.Date.now&&Me.now,Dt=e.setTimeout!==rn.setTimeout&&e.setTimeout;var Tt=et.ceil,It=et.floor,Rt=tt.getOwnPropertySymbols,Pt=gt?gt.isBuffer:n,Bt=e.isFinite,Nt=ot.join,zt=overArg(tt.keys,tt),Ut=et.max,qt=et.min,Ht=Me.now,Gt=e.parseInt,Zt=et.random,Xt=ot.reverse;var Qt=getNative(e,"DataView"),Kt=getNative(e,"Map"),tn=getNative(e,"Promise"),nn=getNative(e,"Set"),on=getNative(e,"WeakMap"),an=getNative(tt,"create");var cn=on&&new on;var un={};var vn=toSource(Qt),wn=toSource(Kt),kn=toSource(tn),jn=toSource(nn),Sn=toSource(on);var En=yt?yt.prototype:n,_n=En?En.valueOf:n,Cn=En?En.toString:n;function lodash(e){if(isObjectLike(e)&&!Dr(e)&&!(e instanceof LazyWrapper)){if(e instanceof LodashWrapper){return e}if(lt.call(e,"__wrapped__")){return wrapperClone(e)}}return new LodashWrapper(e)}var An=function(){function object(){}return function(e){if(!isObject(e)){return{}}if(kt){return kt(e)}object.prototype=e;var t=new object;object.prototype=n;return t}}();function baseLodash(){}function LodashWrapper(e,t){this.__wrapped__=e;this.__actions__=[];this.__chain__=!!t;this.__index__=0;this.__values__=n}lodash.templateSettings={escape:_e,evaluate:Ce,interpolate:Ae,variable:"",imports:{_:lodash}};lodash.prototype=baseLodash.prototype;lodash.prototype.constructor=lodash;LodashWrapper.prototype=An(baseLodash.prototype);LodashWrapper.prototype.constructor=LodashWrapper;function LazyWrapper(e){this.__wrapped__=e;this.__actions__=[];this.__dir__=1;this.__filtered__=false;this.__iteratees__=[];this.__takeCount__=B;this.__views__=[]}function lazyClone(){var e=new LazyWrapper(this.__wrapped__);e.__actions__=copyArray(this.__actions__);e.__dir__=this.__dir__;e.__filtered__=this.__filtered__;e.__iteratees__=copyArray(this.__iteratees__);e.__takeCount__=this.__takeCount__;e.__views__=copyArray(this.__views__);return e}function lazyReverse(){if(this.__filtered__){var e=new LazyWrapper(this);e.__dir__=-1;e.__filtered__=true}else{e=this.clone();e.__dir__*=-1}return e}function lazyValue(){var e=this.__wrapped__.value(),t=this.__dir__,n=Dr(e),r=t<0,i=n?e.length:0,o=getView(0,i,this.__views__),a=o.start,s=o.end,c=s-a,u=r?s:a-1,l=this.__iteratees__,f=l.length,p=0,d=qt(c,this.__takeCount__);if(!n||!r&&i==c&&d==c){return baseWrapperValue(e,this.__actions__)}var h=[];e:while(c--&&p<d){u+=t;var m=-1,v=e[u];while(++m<f){var g=l[m],y=g.iteratee,b=g.type,w=y(v);if(b==F){v=w}else if(!w){if(b==O){continue e}else{break e}}}h[p++]=v}return h}LazyWrapper.prototype=An(baseLodash.prototype);LazyWrapper.prototype.constructor=LazyWrapper;function Hash(e){var t=-1,n=e==null?0:e.length;this.clear();while(++t<n){var r=e[t];this.set(r[0],r[1])}}function hashClear(){this.__data__=an?an(null):{};this.size=0}function hashDelete(e){var t=this.has(e)&&delete this.__data__[e];this.size-=t?1:0;return t}function hashGet(e){var t=this.__data__;if(an){var r=t[e];return r===s?n:r}return lt.call(t,e)?t[e]:n}function hashHas(e){var t=this.__data__;return an?t[e]!==n:lt.call(t,e)}function hashSet(e,t){var r=this.__data__;this.size+=this.has(e)?0:1;r[e]=an&&t===n?s:t;return this}Hash.prototype.clear=hashClear;Hash.prototype["delete"]=hashDelete;Hash.prototype.get=hashGet;Hash.prototype.has=hashHas;Hash.prototype.set=hashSet;function ListCache(e){var t=-1,n=e==null?0:e.length;this.clear();while(++t<n){var r=e[t];this.set(r[0],r[1])}}function listCacheClear(){this.__data__=[];this.size=0}function listCacheDelete(e){var t=this.__data__,n=assocIndexOf(t,e);if(n<0){return false}var r=t.length-1;if(n==r){t.pop()}else{St.call(t,n,1)}--this.size;return true}function listCacheGet(e){var t=this.__data__,r=assocIndexOf(t,e);return r<0?n:t[r][1]}function listCacheHas(e){return assocIndexOf(this.__data__,e)>-1}function listCacheSet(e,t){var n=this.__data__,r=assocIndexOf(n,e);if(r<0){++this.size;n.push([e,t])}else{n[r][1]=t}return this}ListCache.prototype.clear=listCacheClear;ListCache.prototype["delete"]=listCacheDelete;ListCache.prototype.get=listCacheGet;ListCache.prototype.has=listCacheHas;ListCache.prototype.set=listCacheSet;function MapCache(e){var t=-1,n=e==null?0:e.length;this.clear();while(++t<n){var r=e[t];this.set(r[0],r[1])}}function mapCacheClear(){this.size=0;this.__data__={hash:new Hash,map:new(Kt||ListCache),string:new Hash}}function mapCacheDelete(e){var t=getMapData(this,e)["delete"](e);this.size-=t?1:0;return t}function mapCacheGet(e){return getMapData(this,e).get(e)}function mapCacheHas(e){return getMapData(this,e).has(e)}function mapCacheSet(e,t){var n=getMapData(this,e),r=n.size;n.set(e,t);this.size+=n.size==r?0:1;return this}MapCache.prototype.clear=mapCacheClear;MapCache.prototype["delete"]=mapCacheDelete;MapCache.prototype.get=mapCacheGet;MapCache.prototype.has=mapCacheHas;MapCache.prototype.set=mapCacheSet;function SetCache(e){var t=-1,n=e==null?0:e.length;this.__data__=new MapCache;while(++t<n){this.add(e[t])}}function setCacheAdd(e){this.__data__.set(e,s);return this}function setCacheHas(e){return this.__data__.has(e)}SetCache.prototype.add=SetCache.prototype.push=setCacheAdd;SetCache.prototype.has=setCacheHas;function Stack(e){var t=this.__data__=new ListCache(e);this.size=t.size}function stackClear(){this.__data__=new ListCache;this.size=0}function stackDelete(e){var t=this.__data__,n=t["delete"](e);this.size=t.size;return n}function stackGet(e){return this.__data__.get(e)}function stackHas(e){return this.__data__.has(e)}function stackSet(e,t){var n=this.__data__;if(n instanceof ListCache){var r=n.__data__;if(!Kt||r.length<i-1){r.push([e,t]);this.size=++n.size;return this}n=this.__data__=new MapCache(r)}n.set(e,t);this.size=n.size;return this}Stack.prototype.clear=stackClear;Stack.prototype["delete"]=stackDelete;Stack.prototype.get=stackGet;Stack.prototype.has=stackHas;Stack.prototype.set=stackSet;function arrayLikeKeys(e,t){var n=Dr(e),r=!n&&Fr(e),i=!n&&!r&&Ir(e),o=!n&&!r&&!i&&zr(e),a=n||r||i||o,s=a?baseTimes(e.length,rt):[],c=s.length;for(var u in e){if((t||lt.call(e,u))&&!(a&&(u=="length"||i&&(u=="offset"||u=="parent")||o&&(u=="buffer"||u=="byteLength"||u=="byteOffset")||isIndex(u,c)))){s.push(u)}}return s}function arraySample(e){var t=e.length;return t?e[baseRandom(0,t-1)]:n}function arraySampleSize(e,t){return shuffleSelf(copyArray(e),baseClamp(t,0,e.length))}function arrayShuffle(e){return shuffleSelf(copyArray(e))}function assignMergeValue(e,t,r){if(r!==n&&!eq(e[t],r)||r===n&&!(t in e)){baseAssignValue(e,t,r)}}function assignValue(e,t,r){var i=e[t];if(!(lt.call(e,t)&&eq(i,r))||r===n&&!(t in e)){baseAssignValue(e,t,r)}}function assocIndexOf(e,t){var n=e.length;while(n--){if(eq(e[n][0],t)){return n}}return-1}function baseAggregator(e,t,n,r){On(e,function(e,i,o){t(r,e,n(e),o)});return r}function baseAssign(e,t){return e&&copyObject(t,keys(t),e)}function baseAssignIn(e,t){return e&&copyObject(t,keysIn(t),e)}function baseAssignValue(e,t,n){if(t=="__proto__"&&At){At(e,t,{configurable:true,enumerable:true,value:n,writable:true})}else{e[t]=n}}function baseAt(e,r){var i=-1,o=r.length,a=t(o),s=e==null;while(++i<o){a[i]=s?n:get(e,r[i])}return a}function baseClamp(e,t,r){if(e===e){if(r!==n){e=e<=r?e:r}if(t!==n){e=e>=t?e:t}}return e}function baseClone(e,t,r,i,o,a){var s,c=t&l,u=t&f,d=t&p;if(r){s=o?r(e,i,o,a):r(e)}if(s!==n){return s}if(!isObject(e)){return e}var h=Dr(e);if(h){s=initCloneArray(e);if(!c){return copyArray(e,s)}}else{var m=Un(e),v=m==J||m==Y;if(Ir(e)){return cloneBuffer(e,c)}if(m==K||m==M||v&&!o){s=u||v?{}:initCloneObject(e);if(!c){return u?copySymbolsIn(e,baseAssignIn(s,e)):copySymbols(e,baseAssign(s,e))}}else{if(!Yt[m]){return o?e:{}}s=initCloneByTag(e,m,c)}}a||(a=new Stack);var g=a.get(e);if(g){return g}a.set(e,s);if(Nr(e)){e.forEach(function(n){s.add(baseClone(n,t,r,n,e,a))})}else if(Pr(e)){e.forEach(function(n,i){s.set(i,baseClone(n,t,r,i,e,a))})}var y=d?u?getAllKeysIn:getAllKeys:u?keysIn:keys;var b=h?n:y(e);arrayEach(b||e,function(n,i){if(b){i=n;n=e[i]}assignValue(s,i,baseClone(n,t,r,i,e,a))});return s}function baseConforms(e){var t=keys(e);return function(n){return baseConformsTo(n,e,t)}}function baseConformsTo(e,t,r){var i=r.length;if(e==null){return!i}e=tt(e);while(i--){var o=r[i],a=t[o],s=e[o];if(s===n&&!(o in e)||!a(s)){return false}}return true}function baseDelay(e,t,r){if(typeof e!="function"){throw new it(a)}return Gn(function(){e.apply(n,r)},t)}function baseDifference(e,t,n,r){var o=-1,a=arrayIncludes,s=true,c=e.length,u=[],l=t.length;if(!c){return u}if(n){t=arrayMap(t,baseUnary(n))}if(r){a=arrayIncludesWith;s=false}else if(t.length>=i){a=cacheHas;s=false;t=new SetCache(t)}e:while(++o<c){var f=e[o],p=n==null?f:n(f);f=r||f!==0?f:0;if(s&&p===p){var d=l;while(d--){if(t[d]===p){continue e}}u.push(f)}else if(!a(t,p,r)){u.push(f)}}return u}var On=createBaseEach(baseForOwn);var Fn=createBaseEach(baseForOwnRight,true);function baseEvery(e,t){var n=true;On(e,function(e,r,i){n=!!t(e,r,i);return n});return n}function baseExtremum(e,t,r){var i=-1,o=e.length;while(++i<o){var a=e[i],s=t(a);if(s!=null&&(c===n?s===s&&!isSymbol(s):r(s,c))){var c=s,u=a}}return u}function baseFill(e,t,r,i){var o=e.length;r=toInteger(r);if(r<0){r=-r>o?0:o+r}i=i===n||i>o?o:toInteger(i);if(i<0){i+=o}i=r>i?0:toLength(i);while(r<i){e[r++]=t}return e}function baseFilter(e,t){var n=[];On(e,function(e,r,i){if(t(e,r,i)){n.push(e)}});return n}function baseFlatten(e,t,n,r,i){var o=-1,a=e.length;n||(n=isFlattenable);i||(i=[]);while(++o<a){var s=e[o];if(t>0&&n(s)){if(t>1){baseFlatten(s,t-1,n,r,i)}else{arrayPush(i,s)}}else if(!r){i[i.length]=s}}return i}var Dn=createBaseFor();var Tn=createBaseFor(true);function baseForOwn(e,t){return e&&Dn(e,t,keys)}function baseForOwnRight(e,t){return e&&Tn(e,t,keys)}function baseFunctions(e,t){return arrayFilter(t,function(t){return isFunction(e[t])})}function baseGet(e,t){t=castPath(t,e);var r=0,i=t.length;while(e!=null&&r<i){e=e[toKey(t[r++])]}return r&&r==i?e:n}function baseGetAllKeys(e,t,n){var r=t(e);return Dr(e)?r:arrayPush(r,n(e))}function baseGetTag(e){if(e==null){return e===n?oe:Q}return Ct&&Ct in tt(e)?getRawTag(e):objectToString(e)}function baseGt(e,t){return e>t}function baseHas(e,t){return e!=null&&lt.call(e,t)}function baseHasIn(e,t){return e!=null&&t in tt(e)}function baseInRange(e,t,n){return e>=qt(t,n)&&e<Ut(t,n)}function baseIntersection(e,r,i){var o=i?arrayIncludesWith:arrayIncludes,a=e[0].length,s=e.length,c=s,u=t(s),l=Infinity,f=[];while(c--){var p=e[c];if(c&&r){p=arrayMap(p,baseUnary(r))}l=qt(p.length,l);u[c]=!i&&(r||a>=120&&p.length>=120)?new SetCache(c&&p):n}p=e[0];var d=-1,h=u[0];e:while(++d<a&&f.length<l){var m=p[d],v=r?r(m):m;m=i||m!==0?m:0;if(!(h?cacheHas(h,v):o(f,v,i))){c=s;while(--c){var g=u[c];if(!(g?cacheHas(g,v):o(e[c],v,i))){continue e}}if(h){h.push(v)}f.push(m)}}return f}function baseInverter(e,t,n,r){baseForOwn(e,function(e,i,o){t(r,n(e),i,o)});return r}function baseInvoke(e,t,r){t=castPath(t,e);e=parent(e,t);var i=e==null?e:e[toKey(last(t))];return i==null?n:apply(i,e,r)}function baseIsArguments(e){return isObjectLike(e)&&baseGetTag(e)==M}function baseIsArrayBuffer(e){return isObjectLike(e)&&baseGetTag(e)==ce}function baseIsDate(e){return isObjectLike(e)&&baseGetTag(e)==G}function baseIsEqual(e,t,n,r,i){if(e===t){return true}if(e==null||t==null||!isObjectLike(e)&&!isObjectLike(t)){return e!==e&&t!==t}return baseIsEqualDeep(e,t,n,r,baseIsEqual,i)}function baseIsEqualDeep(e,t,n,r,i,o){var a=Dr(e),s=Dr(t),c=a?U:Un(e),u=s?U:Un(t);c=c==M?K:c;u=u==M?K:u;var l=c==K,f=u==K,p=c==u;if(p&&Ir(e)){if(!Ir(t)){return false}a=true;l=false}if(p&&!l){o||(o=new Stack);return a||zr(e)?equalArrays(e,t,n,r,i,o):equalByTag(e,t,c,n,r,i,o)}if(!(n&d)){var h=l&&lt.call(e,"__wrapped__"),m=f&&lt.call(t,"__wrapped__");if(h||m){var v=h?e.value():e,g=m?t.value():t;o||(o=new Stack);return i(v,g,n,r,o)}}if(!p){return false}o||(o=new Stack);return equalObjects(e,t,n,r,i,o)}function baseIsMap(e){return isObjectLike(e)&&Un(e)==Z}function baseIsMatch(e,t,r,i){var o=r.length,a=o,s=!i;if(e==null){return!a}e=tt(e);while(o--){var c=r[o];if(s&&c[2]?c[1]!==e[c[0]]:!(c[0]in e)){return false}}while(++o<a){c=r[o];var u=c[0],l=e[u],f=c[1];if(s&&c[2]){if(l===n&&!(u in e)){return false}}else{var p=new Stack;if(i){var m=i(l,f,u,e,t,p)}if(!(m===n?baseIsEqual(f,l,d|h,i,p):m)){return false}}}return true}function baseIsNative(e){if(!isObject(e)||isMasked(e)){return false}var t=isFunction(e)?vt:Ve;return t.test(toSource(e))}function baseIsRegExp(e){return isObjectLike(e)&&baseGetTag(e)==te}function baseIsSet(e){return isObjectLike(e)&&Un(e)==ne}function baseIsTypedArray(e){return isObjectLike(e)&&isLength(e.length)&&!!Jt[baseGetTag(e)]}function baseIteratee(e){if(typeof e=="function"){return e}if(e==null){return identity}if(typeof e=="object"){return Dr(e)?baseMatchesProperty(e[0],e[1]):baseMatches(e)}return property(e)}function baseKeys(e){if(!isPrototype(e)){return zt(e)}var t=[];for(var n in tt(e)){if(lt.call(e,n)&&n!="constructor"){t.push(n)}}return t}function baseKeysIn(e){if(!isObject(e)){return nativeKeysIn(e)}var t=isPrototype(e),n=[];for(var r in e){if(!(r=="constructor"&&(t||!lt.call(e,r)))){n.push(r)}}return n}function baseLt(e,t){return e<t}function baseMap(e,n){var r=-1,i=isArrayLike(e)?t(e.length):[];On(e,function(e,t,o){i[++r]=n(e,t,o)});return i}function baseMatches(e){var t=getMatchData(e);if(t.length==1&&t[0][2]){return matchesStrictComparable(t[0][0],t[0][1])}return function(n){return n===e||baseIsMatch(n,e,t)}}function baseMatchesProperty(e,t){if(isKey(e)&&isStrictComparable(t)){return matchesStrictComparable(toKey(e),t)}return function(r){var i=get(r,e);return i===n&&i===t?hasIn(r,e):baseIsEqual(t,i,d|h)}}function baseMerge(e,t,r,i,o){if(e===t){return}Dn(t,function(a,s){o||(o=new Stack);if(isObject(a)){baseMergeDeep(e,t,s,r,baseMerge,i,o)}else{var c=i?i(safeGet(e,s),a,s+"",e,t,o):n;if(c===n){c=a}assignMergeValue(e,s,c)}},keysIn)}function baseMergeDeep(e,t,r,i,o,a,s){var c=safeGet(e,r),u=safeGet(t,r),l=s.get(u);if(l){assignMergeValue(e,r,l);return}var f=a?a(c,u,r+"",e,t,s):n;var p=f===n;if(p){var d=Dr(u),h=!d&&Ir(u),m=!d&&!h&&zr(u);f=u;if(d||h||m){if(Dr(c)){f=c}else if(isArrayLikeObject(c)){f=copyArray(c)}else if(h){p=false;f=cloneBuffer(u,true)}else if(m){p=false;f=cloneTypedArray(u,true)}else{f=[]}}else if(isPlainObject(u)||Fr(u)){f=c;if(Fr(c)){f=toPlainObject(c)}else if(!isObject(c)||isFunction(c)){f=initCloneObject(u)}}else{p=false}}if(p){s.set(u,f);o(f,u,i,a,s);s["delete"](u)}assignMergeValue(e,r,f)}function baseNth(e,t){var r=e.length;if(!r){return}t+=t<0?r:0;return isIndex(t,r)?e[t]:n}function baseOrderBy(e,t,n){var r=-1;t=arrayMap(t.length?t:[identity],baseUnary(getIteratee()));var i=baseMap(e,function(e,n,i){var o=arrayMap(t,function(t){return t(e)});return{criteria:o,index:++r,value:e}});return baseSortBy(i,function(e,t){return compareMultiple(e,t,n)})}function basePick(e,t){return basePickBy(e,t,function(t,n){return hasIn(e,n)})}function basePickBy(e,t,n){var r=-1,i=t.length,o={};while(++r<i){var a=t[r],s=baseGet(e,a);if(n(s,a)){baseSet(o,castPath(a,e),s)}}return o}function basePropertyDeep(e){return function(t){return baseGet(t,e)}}function basePullAll(e,t,n,r){var i=r?baseIndexOfWith:baseIndexOf,o=-1,a=t.length,s=e;if(e===t){t=copyArray(t)}if(n){s=arrayMap(e,baseUnary(n))}while(++o<a){var c=0,u=t[o],l=n?n(u):u;while((c=i(s,l,c,r))>-1){if(s!==e){St.call(s,c,1)}St.call(e,c,1)}}return e}function basePullAt(e,t){var n=e?t.length:0,r=n-1;while(n--){var i=t[n];if(n==r||i!==o){var o=i;if(isIndex(i)){St.call(e,i,1)}else{baseUnset(e,i)}}}return e}function baseRandom(e,t){return e+It(Zt()*(t-e+1))}function baseRange(e,n,r,i){var o=-1,a=Ut(Tt((n-e)/(r||1)),0),s=t(a);while(a--){s[i?a:++o]=e;e+=r}return s}function baseRepeat(e,t){var n="";if(!e||t<1||t>I){return n}do{if(t%2){n+=e}t=It(t/2);if(t){e+=e}}while(t);return n}function baseRest(e,t){return Wn(overRest(e,t,identity),e+"")}function baseSample(e){return arraySample(values(e))}function baseSampleSize(e,t){var n=values(e);return shuffleSelf(n,baseClamp(t,0,n.length))}function baseSet(e,t,r,i){if(!isObject(e)){return e}t=castPath(t,e);var o=-1,a=t.length,s=a-1,c=e;while(c!=null&&++o<a){var u=toKey(t[o]),l=r;if(o!=s){var f=c[u];l=i?i(f,u,c):n;if(l===n){l=isObject(f)?f:isIndex(t[o+1])?[]:{}}}assignValue(c,u,l);c=c[u]}return e}var In=!cn?identity:function(e,t){cn.set(e,t);return e};var Rn=!At?identity:function(e,t){return At(e,"toString",{configurable:true,enumerable:false,value:constant(t),writable:true})};function baseShuffle(e){return shuffleSelf(values(e))}function baseSlice(e,n,r){var i=-1,o=e.length;if(n<0){n=-n>o?0:o+n}r=r>o?o:r;if(r<0){r+=o}o=n>r?0:r-n>>>0;n>>>=0;var a=t(o);while(++i<o){a[i]=e[i+n]}return a}function baseSome(e,t){var n;On(e,function(e,r,i){n=t(e,r,i);return!n});return!!n}function baseSortedIndex(e,t,n){var r=0,i=e==null?r:e.length;if(typeof t=="number"&&t===t&&i<=z){while(r<i){var o=r+i>>>1,a=e[o];if(a!==null&&!isSymbol(a)&&(n?a<=t:a<t)){r=o+1}else{i=o}}return i}return baseSortedIndexBy(e,t,identity,n)}function baseSortedIndexBy(e,t,r,i){t=r(t);var o=0,a=e==null?0:e.length,s=t!==t,c=t===null,u=isSymbol(t),l=t===n;while(o<a){var f=It((o+a)/2),p=r(e[f]),d=p!==n,h=p===null,m=p===p,v=isSymbol(p);if(s){var g=i||m}else if(l){g=m&&(i||d)}else if(c){g=m&&d&&(i||!h)}else if(u){g=m&&d&&!h&&(i||!v)}else if(h||v){g=false}else{g=i?p<=t:p<t}if(g){o=f+1}else{a=f}}return qt(a,N)}function baseSortedUniq(e,t){var n=-1,r=e.length,i=0,o=[];while(++n<r){var a=e[n],s=t?t(a):a;if(!n||!eq(s,c)){var c=s;o[i++]=a===0?0:a}}return o}function baseToNumber(e){if(typeof e=="number"){return e}if(isSymbol(e)){return P}return+e}function baseToString(e){if(typeof e=="string"){return e}if(Dr(e)){return arrayMap(e,baseToString)+""}if(isSymbol(e)){return Cn?Cn.call(e):""}var t=e+"";return t=="0"&&1/e==-T?"-0":t}function baseUniq(e,t,n){var r=-1,o=arrayIncludes,a=e.length,s=true,c=[],u=c;if(n){s=false;o=arrayIncludesWith}else if(a>=i){var l=t?null:Nn(e);if(l){return setToArray(l)}s=false;o=cacheHas;u=new SetCache}else{u=t?[]:c}e:while(++r<a){var f=e[r],p=t?t(f):f;f=n||f!==0?f:0;if(s&&p===p){var d=u.length;while(d--){if(u[d]===p){continue e}}if(t){u.push(p)}c.push(f)}else if(!o(u,p,n)){if(u!==c){u.push(p)}c.push(f)}}return c}function baseUnset(e,t){t=castPath(t,e);e=parent(e,t);return e==null||delete e[toKey(last(t))]}function baseUpdate(e,t,n,r){return baseSet(e,t,n(baseGet(e,t)),r)}function baseWhile(e,t,n,r){var i=e.length,o=r?i:-1;while((r?o--:++o<i)&&t(e[o],o,e)){}return n?baseSlice(e,r?0:o,r?o+1:i):baseSlice(e,r?o+1:0,r?i:o)}function baseWrapperValue(e,t){var n=e;if(n instanceof LazyWrapper){n=n.value()}return arrayReduce(t,function(e,t){return t.func.apply(t.thisArg,arrayPush([e],t.args))},n)}function baseXor(e,n,r){var i=e.length;if(i<2){return i?baseUniq(e[0]):[]}var o=-1,a=t(i);while(++o<i){var s=e[o],c=-1;while(++c<i){if(c!=o){a[o]=baseDifference(a[o]||s,e[c],n,r)}}}return baseUniq(baseFlatten(a,1),n,r)}function baseZipObject(e,t,r){var i=-1,o=e.length,a=t.length,s={};while(++i<o){var c=i<a?t[i]:n;r(s,e[i],c)}return s}function castArrayLikeObject(e){return isArrayLikeObject(e)?e:[]}function castFunction(e){return typeof e=="function"?e:identity}function castPath(e,t){if(Dr(e)){return e}return isKey(e,t)?[e]:Vn(toString(e))}var Pn=baseRest;function castSlice(e,t,r){var i=e.length;r=r===n?i:r;return!t&&r>=i?e:baseSlice(e,t,r)}var Bn=Ot||function(e){return rn.clearTimeout(e)};function cloneBuffer(e,t){if(t){return e.slice()}var n=e.length,r=wt?wt(n):new e.constructor(n);e.copy(r);return r}function cloneArrayBuffer(e){var t=new e.constructor(e.byteLength);new bt(t).set(new bt(e));return t}function cloneDataView(e,t){var n=t?cloneArrayBuffer(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}function cloneRegExp(e){var t=new e.constructor(e.source,He.exec(e));t.lastIndex=e.lastIndex;return t}function cloneSymbol(e){return _n?tt(_n.call(e)):{}}function cloneTypedArray(e,t){var n=t?cloneArrayBuffer(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function compareAscending(e,t){if(e!==t){var r=e!==n,i=e===null,o=e===e,a=isSymbol(e);var s=t!==n,c=t===null,u=t===t,l=isSymbol(t);if(!c&&!l&&!a&&e>t||a&&s&&u&&!c&&!l||i&&s&&u||!r&&u||!o){return 1}if(!i&&!a&&!l&&e<t||l&&r&&o&&!i&&!a||c&&r&&o||!s&&o||!u){return-1}}return 0}function compareMultiple(e,t,n){var r=-1,i=e.criteria,o=t.criteria,a=i.length,s=n.length;while(++r<a){var c=compareAscending(i[r],o[r]);if(c){if(r>=s){return c}var u=n[r];return c*(u=="desc"?-1:1)}}return e.index-t.index}function composeArgs(e,n,r,i){var o=-1,a=e.length,s=r.length,c=-1,u=n.length,l=Ut(a-s,0),f=t(u+l),p=!i;while(++c<u){f[c]=n[c]}while(++o<s){if(p||o<a){f[r[o]]=e[o]}}while(l--){f[c++]=e[o++]}return f}function composeArgsRight(e,n,r,i){var o=-1,a=e.length,s=-1,c=r.length,u=-1,l=n.length,f=Ut(a-c,0),p=t(f+l),d=!i;while(++o<f){p[o]=e[o]}var h=o;while(++u<l){p[h+u]=n[u]}while(++s<c){if(d||o<a){p[h+r[s]]=e[o++]}}return p}function copyArray(e,n){var r=-1,i=e.length;n||(n=t(i));while(++r<i){n[r]=e[r]}return n}function copyObject(e,t,r,i){var o=!r;r||(r={});var a=-1,s=t.length;while(++a<s){var c=t[a];var u=i?i(r[c],e[c],c,r,e):n;if(u===n){u=e[c]}if(o){baseAssignValue(r,c,u)}else{assignValue(r,c,u)}}return r}function copySymbols(e,t){return copyObject(e,Ln(e),t)}function copySymbolsIn(e,t){return copyObject(e,Mn(e),t)}function createAggregator(e,t){return function(n,r){var i=Dr(n)?arrayAggregator:baseAggregator,o=t?t():{};return i(n,e,getIteratee(r,2),o)}}function createAssigner(e){return baseRest(function(t,r){var i=-1,o=r.length,a=o>1?r[o-1]:n,s=o>2?r[2]:n;a=e.length>3&&typeof a=="function"?(o--,a):n;if(s&&isIterateeCall(r[0],r[1],s)){a=o<3?n:a;o=1}t=tt(t);while(++i<o){var c=r[i];if(c){e(t,c,i,a)}}return t})}function createBaseEach(e,t){return function(n,r){if(n==null){return n}if(!isArrayLike(n)){return e(n,r)}var i=n.length,o=t?i:-1,a=tt(n);while(t?o--:++o<i){if(r(a[o],o,a)===false){break}}return n}}function createBaseFor(e){return function(t,n,r){var i=-1,o=tt(t),a=r(t),s=a.length;while(s--){var c=a[e?s:++i];if(n(o[c],c,o)===false){break}}return t}}function createBind(e,t,n){var r=t&m,i=createCtor(e);function wrapper(){var t=this&&this!==rn&&this instanceof wrapper?i:e;return t.apply(r?n:this,arguments)}return wrapper}function createCaseFirst(e){return function(t){t=toString(t);var r=hasUnicode(t)?stringToArray(t):n;var i=r?r[0]:t.charAt(0);var o=r?castSlice(r,1).join(""):t.slice(1);return i[e]()+o}}function createCompounder(e){return function(t){return arrayReduce(words(deburr(t).replace(Lt,"")),e,"")}}function createCtor(e){return function(){var t=arguments;switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3]);case 5:return new e(t[0],t[1],t[2],t[3],t[4]);case 6:return new e(t[0],t[1],t[2],t[3],t[4],t[5]);case 7:return new e(t[0],t[1],t[2],t[3],t[4],t[5],t[6])}var n=An(e.prototype),r=e.apply(n,t);return isObject(r)?r:n}}function createCurry(e,r,i){var o=createCtor(e);function wrapper(){var a=arguments.length,s=t(a),c=a,u=getHolder(wrapper);while(c--){s[c]=arguments[c]}var l=a<3&&s[0]!==u&&s[a-1]!==u?[]:replaceHolders(s,u);a-=l.length;if(a<i){return createRecurry(e,r,createHybrid,wrapper.placeholder,n,s,l,n,n,i-a)}var f=this&&this!==rn&&this instanceof wrapper?o:e;return apply(f,this,s)}return wrapper}function createFind(e){return function(t,r,i){var o=tt(t);if(!isArrayLike(t)){var a=getIteratee(r,3);t=keys(t);r=function(e){return a(o[e],e,o)}}var s=e(t,r,i);return s>-1?o[a?t[s]:s]:n}}function createFlow(e){return flatRest(function(t){var r=t.length,i=r,o=LodashWrapper.prototype.thru;if(e){t.reverse()}while(i--){var s=t[i];if(typeof s!="function"){throw new it(a)}if(o&&!c&&getFuncName(s)=="wrapper"){var c=new LodashWrapper([],true)}}i=c?i:r;while(++i<r){s=t[i];var u=getFuncName(s),l=u=="wrapper"?zn(s):n;if(l&&isLaziable(l[0])&&l[1]==(k|y|w|j)&&!l[4].length&&l[9]==1){c=c[getFuncName(l[0])].apply(c,l[3])}else{c=s.length==1&&isLaziable(s)?c[u]():c.thru(s)}}return function(){var e=arguments,n=e[0];if(c&&e.length==1&&Dr(n)){return c.plant(n).value()}var i=0,o=r?t[i].apply(this,e):n;while(++i<r){o=t[i].call(this,o)}return o}})}function createHybrid(e,r,i,o,a,s,c,u,l,f){var p=r&k,d=r&m,h=r&v,g=r&(y|b),w=r&S,x=h?n:createCtor(e);function wrapper(){var n=arguments.length,m=t(n),v=n;while(v--){m[v]=arguments[v]}if(g){var y=getHolder(wrapper),b=countHolders(m,y)}if(o){m=composeArgs(m,o,a,g)}if(s){m=composeArgsRight(m,s,c,g)}n-=b;if(g&&n<f){var k=replaceHolders(m,y);return createRecurry(e,r,createHybrid,wrapper.placeholder,i,m,k,u,l,f-n)}var j=d?i:this,S=h?j[e]:e;n=m.length;if(u){m=reorder(m,u)}else if(w&&n>1){m.reverse()}if(p&&l<n){m.length=l}if(this&&this!==rn&&this instanceof wrapper){S=x||createCtor(S)}return S.apply(j,m)}return wrapper}function createInverter(e,t){return function(n,r){return baseInverter(n,e,t(r),{})}}function createMathOperation(e,t){return function(r,i){var o;if(r===n&&i===n){return t}if(r!==n){o=r}if(i!==n){if(o===n){return i}if(typeof r=="string"||typeof i=="string"){r=baseToString(r);i=baseToString(i)}else{r=baseToNumber(r);i=baseToNumber(i)}o=e(r,i)}return o}}function createOver(e){return flatRest(function(t){t=arrayMap(t,baseUnary(getIteratee()));return baseRest(function(n){var r=this;return e(t,function(e){return apply(e,r,n)})})})}function createPadding(e,t){t=t===n?" ":baseToString(t);var r=t.length;if(r<2){return r?baseRepeat(t,e):t}var i=baseRepeat(t,Tt(e/stringSize(t)));return hasUnicode(t)?castSlice(stringToArray(i),0,e).join(""):i.slice(0,e)}function createPartial(e,n,r,i){var o=n&m,a=createCtor(e);function wrapper(){var n=-1,s=arguments.length,c=-1,u=i.length,l=t(u+s),f=this&&this!==rn&&this instanceof wrapper?a:e;while(++c<u){l[c]=i[c]}while(s--){l[c++]=arguments[++n]}return apply(f,o?r:this,l)}return wrapper}function createRange(e){return function(t,r,i){if(i&&typeof i!="number"&&isIterateeCall(t,r,i)){r=i=n}t=toFinite(t);if(r===n){r=t;t=0}else{r=toFinite(r)}i=i===n?t<r?1:-1:toFinite(i);return baseRange(t,r,i,e)}}function createRelationalOperation(e){return function(t,n){if(!(typeof t=="string"&&typeof n=="string")){t=toNumber(t);n=toNumber(n)}return e(t,n)}}function createRecurry(e,t,r,i,o,a,s,c,u,l){var f=t&y,p=f?s:n,d=f?n:s,h=f?a:n,b=f?n:a;t|=f?w:x;t&=~(f?x:w);if(!(t&g)){t&=~(m|v)}var k=[e,t,o,h,p,b,d,c,u,l];var j=r.apply(n,k);if(isLaziable(e)){Hn(j,k)}j.placeholder=i;return setWrapToString(j,e,t)}function createRound(e){var t=et[e];return function(e,n){e=toNumber(e);n=n==null?0:qt(toInteger(n),292);if(n&&Bt(e)){var r=(toString(e)+"e").split("e"),i=t(r[0]+"e"+(+r[1]+n));r=(toString(i)+"e").split("e");return+(r[0]+"e"+(+r[1]-n))}return t(e)}}var Nn=!(nn&&1/setToArray(new nn([,-0]))[1]==T)?noop:function(e){return new nn(e)};function createToPairs(e){return function(t){var n=Un(t);if(n==Z){return mapToArray(t)}if(n==ne){return setToPairs(t)}return baseToPairs(t,e(t))}}function createWrap(e,t,r,i,o,s,c,u){var l=t&v;if(!l&&typeof e!="function"){throw new it(a)}var f=i?i.length:0;if(!f){t&=~(w|x);i=o=n}c=c===n?c:Ut(toInteger(c),0);u=u===n?u:toInteger(u);f-=o?o.length:0;if(t&x){var p=i,d=o;i=o=n}var h=l?n:zn(e);var g=[e,t,r,i,o,p,d,s,c,u];if(h){mergeData(g,h)}e=g[0];t=g[1];r=g[2];i=g[3];o=g[4];u=g[9]=g[9]===n?l?0:e.length:Ut(g[9]-f,0);if(!u&&t&(y|b)){t&=~(y|b)}if(!t||t==m){var k=createBind(e,t,r)}else if(t==y||t==b){k=createCurry(e,t,u)}else if((t==w||t==(m|w))&&!o.length){k=createPartial(e,t,r,i)}else{k=createHybrid.apply(n,g)}var j=h?In:Hn;return setWrapToString(j(k,g),e,t)}function customDefaultsAssignIn(e,t,r,i){if(e===n||eq(e,st[r])&&!lt.call(i,r)){return t}return e}function customDefaultsMerge(e,t,r,i,o,a){if(isObject(e)&&isObject(t)){a.set(t,e);baseMerge(e,t,n,customDefaultsMerge,a);a["delete"](t)}return e}function customOmitClone(e){return isPlainObject(e)?n:e}function equalArrays(e,t,r,i,o,a){var s=r&d,c=e.length,u=t.length;if(c!=u&&!(s&&u>c)){return false}var l=a.get(e);if(l&&a.get(t)){return l==t}var f=-1,p=true,m=r&h?new SetCache:n;a.set(e,t);a.set(t,e);while(++f<c){var v=e[f],g=t[f];if(i){var y=s?i(g,v,f,t,e,a):i(v,g,f,e,t,a)}if(y!==n){if(y){continue}p=false;break}if(m){if(!arraySome(t,function(e,t){if(!cacheHas(m,t)&&(v===e||o(v,e,r,i,a))){return m.push(t)}})){p=false;break}}else if(!(v===g||o(v,g,r,i,a))){p=false;break}}a["delete"](e);a["delete"](t);return p}function equalByTag(e,t,n,r,i,o,a){switch(n){case ue:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset){return false}e=e.buffer;t=t.buffer;case ce:if(e.byteLength!=t.byteLength||!o(new bt(e),new bt(t))){return false}return true;case H:case G:case X:return eq(+e,+t);case V:return e.name==t.name&&e.message==t.message;case te:case re:return e==t+"";case Z:var s=mapToArray;case ne:var c=r&d;s||(s=setToArray);if(e.size!=t.size&&!c){return false}var u=a.get(e);if(u){return u==t}r|=h;a.set(e,t);var l=equalArrays(s(e),s(t),r,i,o,a);a["delete"](e);return l;case ie:if(_n){return _n.call(e)==_n.call(t)}}return false}function equalObjects(e,t,r,i,o,a){var s=r&d,c=getAllKeys(e),u=c.length,l=getAllKeys(t),f=l.length;if(u!=f&&!s){return false}var p=u;while(p--){var h=c[p];if(!(s?h in t:lt.call(t,h))){return false}}var m=a.get(e);if(m&&a.get(t)){return m==t}var v=true;a.set(e,t);a.set(t,e);var g=s;while(++p<u){h=c[p];var y=e[h],b=t[h];if(i){var w=s?i(b,y,h,t,e,a):i(y,b,h,e,t,a)}if(!(w===n?y===b||o(y,b,r,i,a):w)){v=false;break}g||(g=h=="constructor")}if(v&&!g){var x=e.constructor,k=t.constructor;if(x!=k&&("constructor"in e&&"constructor"in t)&&!(typeof x=="function"&&x instanceof x&&typeof k=="function"&&k instanceof k)){v=false}}a["delete"](e);a["delete"](t);return v}function flatRest(e){return Wn(overRest(e,n,flatten),e+"")}function getAllKeys(e){return baseGetAllKeys(e,keys,Ln)}function getAllKeysIn(e){return baseGetAllKeys(e,keysIn,Mn)}var zn=!cn?noop:function(e){return cn.get(e)};function getFuncName(e){var t=e.name+"",n=un[t],r=lt.call(un,t)?n.length:0;while(r--){var i=n[r],o=i.func;if(o==null||o==e){return i.name}}return t}function getHolder(e){var t=lt.call(lodash,"placeholder")?lodash:e;return t.placeholder}function getIteratee(){var e=lodash.iteratee||iteratee;e=e===iteratee?baseIteratee:e;return arguments.length?e(arguments[0],arguments[1]):e}function getMapData(e,t){var n=e.__data__;return isKeyable(t)?n[typeof t=="string"?"string":"hash"]:n.map}function getMatchData(e){var t=keys(e),n=t.length;while(n--){var r=t[n],i=e[r];t[n]=[r,i,isStrictComparable(i)]}return t}function getNative(e,t){var r=getValue(e,t);return baseIsNative(r)?r:n}function getRawTag(e){var t=lt.call(e,Ct),r=e[Ct];try{e[Ct]=n;var i=true}catch(e){}var o=dt.call(e);if(i){if(t){e[Ct]=r}else{delete e[Ct]}}return o}var Ln=!Rt?stubArray:function(e){if(e==null){return[]}e=tt(e);return arrayFilter(Rt(e),function(t){return jt.call(e,t)})};var Mn=!Rt?stubArray:function(e){var t=[];while(e){arrayPush(t,Ln(e));e=xt(e)}return t};var Un=baseGetTag;if(Qt&&Un(new Qt(new ArrayBuffer(1)))!=ue||Kt&&Un(new Kt)!=Z||tn&&Un(tn.resolve())!=$||nn&&Un(new nn)!=ne||on&&Un(new on)!=ae){Un=function(e){var t=baseGetTag(e),r=t==K?e.constructor:n,i=r?toSource(r):"";if(i){switch(i){case vn:return ue;case wn:return Z;case kn:return $;case jn:return ne;case Sn:return ae}}return t}}function getView(e,t,n){var r=-1,i=n.length;while(++r<i){var o=n[r],a=o.size;switch(o.type){case"drop":e+=a;break;case"dropRight":t-=a;break;case"take":t=qt(t,e+a);break;case"takeRight":e=Ut(e,t-a);break}}return{start:e,end:t}}function getWrapDetails(e){var t=e.match(ze);return t?t[1].split(Le):[]}function hasPath(e,t,n){t=castPath(t,e);var r=-1,i=t.length,o=false;while(++r<i){var a=toKey(t[r]);if(!(o=e!=null&&n(e,a))){break}e=e[a]}if(o||++r!=i){return o}i=e==null?0:e.length;return!!i&&isLength(i)&&isIndex(a,i)&&(Dr(e)||Fr(e))}function initCloneArray(e){var t=e.length,n=new e.constructor(t);if(t&&typeof e[0]=="string"&&lt.call(e,"index")){n.index=e.index;n.input=e.input}return n}function initCloneObject(e){return typeof e.constructor=="function"&&!isPrototype(e)?An(xt(e)):{}}function initCloneByTag(e,t,n){var r=e.constructor;switch(t){case ce:return cloneArrayBuffer(e);case H:case G:return new r(+e);case ue:return cloneDataView(e,n);case le:case fe:case pe:case de:case he:case me:case ve:case ge:case ye:return cloneTypedArray(e,n);case Z:return new r;case X:case re:return new r(e);case te:return cloneRegExp(e);case ne:return new r;case ie:return cloneSymbol(e)}}function insertWrapDetails(e,t){var n=t.length;if(!n){return e}var r=n-1;t[r]=(n>1?"& ":"")+t[r];t=t.join(n>2?", ":" ");return e.replace(Ne,"{\n/* [wrapped with "+t+"] */\n")}function isFlattenable(e){return Dr(e)||Fr(e)||!!(Et&&e&&e[Et])}function isIndex(e,t){var n=typeof e;t=t==null?I:t;return!!t&&(n=="number"||n!="symbol"&&Ye.test(e))&&(e>-1&&e%1==0&&e<t)}function isIterateeCall(e,t,n){if(!isObject(n)){return false}var r=typeof t;if(r=="number"?isArrayLike(n)&&isIndex(t,n.length):r=="string"&&t in n){return eq(n[t],e)}return false}function isKey(e,t){if(Dr(e)){return false}var n=typeof e;if(n=="number"||n=="symbol"||n=="boolean"||e==null||isSymbol(e)){return true}return Fe.test(e)||!Oe.test(e)||t!=null&&e in tt(t)}function isKeyable(e){var t=typeof e;return t=="string"||t=="number"||t=="symbol"||t=="boolean"?e!=="__proto__":e===null}function isLaziable(e){var t=getFuncName(e),n=lodash[t];if(typeof n!="function"||!(t in LazyWrapper.prototype)){return false}if(e===n){return true}var r=zn(n);return!!r&&e===r[0]}function isMasked(e){return!!pt&&pt in e}var qn=ct?isFunction:stubFalse;function isPrototype(e){var t=e&&e.constructor,n=typeof t=="function"&&t.prototype||st;return e===n}function isStrictComparable(e){return e===e&&!isObject(e)}function matchesStrictComparable(e,t){return function(r){if(r==null){return false}return r[e]===t&&(t!==n||e in tt(r))}}function memoizeCapped(e){var t=memoize(e,function(e){if(n.size===c){n.clear()}return e});var n=t.cache;return t}function mergeData(e,t){var n=e[1],r=t[1],i=n|r,o=i<(m|v|k);var a=r==k&&n==y||r==k&&n==j&&e[7].length<=t[8]||r==(k|j)&&t[7].length<=t[8]&&n==y;if(!(o||a)){return e}if(r&m){e[2]=t[2];i|=n&m?0:g}var s=t[3];if(s){var c=e[3];e[3]=c?composeArgs(c,s,t[4]):s;e[4]=c?replaceHolders(e[3],u):t[4]}s=t[5];if(s){c=e[5];e[5]=c?composeArgsRight(c,s,t[6]):s;e[6]=c?replaceHolders(e[5],u):t[6]}s=t[7];if(s){e[7]=s}if(r&k){e[8]=e[8]==null?t[8]:qt(e[8],t[8])}if(e[9]==null){e[9]=t[9]}e[0]=t[0];e[1]=i;return e}function nativeKeysIn(e){var t=[];if(e!=null){for(var n in tt(e)){t.push(n)}}return t}function objectToString(e){return dt.call(e)}function overRest(e,r,i){r=Ut(r===n?e.length-1:r,0);return function(){var n=arguments,o=-1,a=Ut(n.length-r,0),s=t(a);while(++o<a){s[o]=n[r+o]}o=-1;var c=t(r+1);while(++o<r){c[o]=n[o]}c[r]=i(s);return apply(e,this,c)}}function parent(e,t){return t.length<2?e:baseGet(e,baseSlice(t,0,-1))}function reorder(e,t){var r=e.length,i=qt(t.length,r),o=copyArray(e);while(i--){var a=t[i];e[i]=isIndex(a,r)?o[a]:n}return e}function safeGet(e,t){if(t==="constructor"&&typeof e[t]==="function"){return}if(t=="__proto__"){return}return e[t]}var Hn=shortOut(In);var Gn=Dt||function(e,t){return rn.setTimeout(e,t)};var Wn=shortOut(Rn);function setWrapToString(e,t,n){var r=t+"";return Wn(e,insertWrapDetails(r,updateWrapDetails(getWrapDetails(r),n)))}function shortOut(e){var t=0,r=0;return function(){var i=Ht(),o=A-(i-r);r=i;if(o>0){if(++t>=C){return arguments[0]}}else{t=0}return e.apply(n,arguments)}}function shuffleSelf(e,t){var r=-1,i=e.length,o=i-1;t=t===n?i:t;while(++r<t){var a=baseRandom(r,o),s=e[a];e[a]=e[r];e[r]=s}e.length=t;return e}var Vn=memoizeCapped(function(e){var t=[];if(e.charCodeAt(0)===46){t.push("")}e.replace(De,function(e,n,r,i){t.push(r?i.replace(Ue,"$1"):n||e)});return t});function toKey(e){if(typeof e=="string"||isSymbol(e)){return e}var t=e+"";return t=="0"&&1/e==-T?"-0":t}function toSource(e){if(e!=null){try{return ut.call(e)}catch(e){}try{return e+""}catch(e){}}return""}function updateWrapDetails(e,t){arrayEach(L,function(n){var r="_."+n[0];if(t&n[1]&&!arrayIncludes(e,r)){e.push(r)}});return e.sort()}function wrapperClone(e){if(e instanceof LazyWrapper){return e.clone()}var t=new LodashWrapper(e.__wrapped__,e.__chain__);t.__actions__=copyArray(e.__actions__);t.__index__=e.__index__;t.__values__=e.__values__;return t}function chunk(e,r,i){if(i?isIterateeCall(e,r,i):r===n){r=1}else{r=Ut(toInteger(r),0)}var o=e==null?0:e.length;if(!o||r<1){return[]}var a=0,s=0,c=t(Tt(o/r));while(a<o){c[s++]=baseSlice(e,a,a+=r)}return c}function compact(e){var t=-1,n=e==null?0:e.length,r=0,i=[];while(++t<n){var o=e[t];if(o){i[r++]=o}}return i}function concat(){var e=arguments.length;if(!e){return[]}var n=t(e-1),r=arguments[0],i=e;while(i--){n[i-1]=arguments[i]}return arrayPush(Dr(r)?copyArray(r):[r],baseFlatten(n,1))}var Jn=baseRest(function(e,t){return isArrayLikeObject(e)?baseDifference(e,baseFlatten(t,1,isArrayLikeObject,true)):[]});var Yn=baseRest(function(e,t){var r=last(t);if(isArrayLikeObject(r)){r=n}return isArrayLikeObject(e)?baseDifference(e,baseFlatten(t,1,isArrayLikeObject,true),getIteratee(r,2)):[]});var Zn=baseRest(function(e,t){var r=last(t);if(isArrayLikeObject(r)){r=n}return isArrayLikeObject(e)?baseDifference(e,baseFlatten(t,1,isArrayLikeObject,true),n,r):[]});function drop(e,t,r){var i=e==null?0:e.length;if(!i){return[]}t=r||t===n?1:toInteger(t);return baseSlice(e,t<0?0:t,i)}function dropRight(e,t,r){var i=e==null?0:e.length;if(!i){return[]}t=r||t===n?1:toInteger(t);t=i-t;return baseSlice(e,0,t<0?0:t)}function dropRightWhile(e,t){return e&&e.length?baseWhile(e,getIteratee(t,3),true,true):[]}function dropWhile(e,t){return e&&e.length?baseWhile(e,getIteratee(t,3),true):[]}function fill(e,t,n,r){var i=e==null?0:e.length;if(!i){return[]}if(n&&typeof n!="number"&&isIterateeCall(e,t,n)){n=0;r=i}return baseFill(e,t,n,r)}function findIndex(e,t,n){var r=e==null?0:e.length;if(!r){return-1}var i=n==null?0:toInteger(n);if(i<0){i=Ut(r+i,0)}return baseFindIndex(e,getIteratee(t,3),i)}function findLastIndex(e,t,r){var i=e==null?0:e.length;if(!i){return-1}var o=i-1;if(r!==n){o=toInteger(r);o=r<0?Ut(i+o,0):qt(o,i-1)}return baseFindIndex(e,getIteratee(t,3),o,true)}function flatten(e){var t=e==null?0:e.length;return t?baseFlatten(e,1):[]}function flattenDeep(e){var t=e==null?0:e.length;return t?baseFlatten(e,T):[]}function flattenDepth(e,t){var r=e==null?0:e.length;if(!r){return[]}t=t===n?1:toInteger(t);return baseFlatten(e,t)}function fromPairs(e){var t=-1,n=e==null?0:e.length,r={};while(++t<n){var i=e[t];r[i[0]]=i[1]}return r}function head(e){return e&&e.length?e[0]:n}function indexOf(e,t,n){var r=e==null?0:e.length;if(!r){return-1}var i=n==null?0:toInteger(n);if(i<0){i=Ut(r+i,0)}return baseIndexOf(e,t,i)}function initial(e){var t=e==null?0:e.length;return t?baseSlice(e,0,-1):[]}var Xn=baseRest(function(e){var t=arrayMap(e,castArrayLikeObject);return t.length&&t[0]===e[0]?baseIntersection(t):[]});var Qn=baseRest(function(e){var t=last(e),r=arrayMap(e,castArrayLikeObject);if(t===last(r)){t=n}else{r.pop()}return r.length&&r[0]===e[0]?baseIntersection(r,getIteratee(t,2)):[]});var Kn=baseRest(function(e){var t=last(e),r=arrayMap(e,castArrayLikeObject);t=typeof t=="function"?t:n;if(t){r.pop()}return r.length&&r[0]===e[0]?baseIntersection(r,n,t):[]});function join(e,t){return e==null?"":Nt.call(e,t)}function last(e){var t=e==null?0:e.length;return t?e[t-1]:n}function lastIndexOf(e,t,r){var i=e==null?0:e.length;if(!i){return-1}var o=i;if(r!==n){o=toInteger(r);o=o<0?Ut(i+o,0):qt(o,i-1)}return t===t?strictLastIndexOf(e,t,o):baseFindIndex(e,baseIsNaN,o,true)}function nth(e,t){return e&&e.length?baseNth(e,toInteger(t)):n}var $n=baseRest(pullAll);function pullAll(e,t){return e&&e.length&&t&&t.length?basePullAll(e,t):e}function pullAllBy(e,t,n){return e&&e.length&&t&&t.length?basePullAll(e,t,getIteratee(n,2)):e}function pullAllWith(e,t,r){return e&&e.length&&t&&t.length?basePullAll(e,t,n,r):e}var er=flatRest(function(e,t){var n=e==null?0:e.length,r=baseAt(e,t);basePullAt(e,arrayMap(t,function(e){return isIndex(e,n)?+e:e}).sort(compareAscending));return r});function remove(e,t){var n=[];if(!(e&&e.length)){return n}var r=-1,i=[],o=e.length;t=getIteratee(t,3);while(++r<o){var a=e[r];if(t(a,r,e)){n.push(a);i.push(r)}}basePullAt(e,i);return n}function reverse(e){return e==null?e:Xt.call(e)}function slice(e,t,r){var i=e==null?0:e.length;if(!i){return[]}if(r&&typeof r!="number"&&isIterateeCall(e,t,r)){t=0;r=i}else{t=t==null?0:toInteger(t);r=r===n?i:toInteger(r)}return baseSlice(e,t,r)}function sortedIndex(e,t){return baseSortedIndex(e,t)}function sortedIndexBy(e,t,n){return baseSortedIndexBy(e,t,getIteratee(n,2))}function sortedIndexOf(e,t){var n=e==null?0:e.length;if(n){var r=baseSortedIndex(e,t);if(r<n&&eq(e[r],t)){return r}}return-1}function sortedLastIndex(e,t){return baseSortedIndex(e,t,true)}function sortedLastIndexBy(e,t,n){return baseSortedIndexBy(e,t,getIteratee(n,2),true)}function sortedLastIndexOf(e,t){var n=e==null?0:e.length;if(n){var r=baseSortedIndex(e,t,true)-1;if(eq(e[r],t)){return r}}return-1}function sortedUniq(e){return e&&e.length?baseSortedUniq(e):[]}function sortedUniqBy(e,t){return e&&e.length?baseSortedUniq(e,getIteratee(t,2)):[]}function tail(e){var t=e==null?0:e.length;return t?baseSlice(e,1,t):[]}function take(e,t,r){if(!(e&&e.length)){return[]}t=r||t===n?1:toInteger(t);return baseSlice(e,0,t<0?0:t)}function takeRight(e,t,r){var i=e==null?0:e.length;if(!i){return[]}t=r||t===n?1:toInteger(t);t=i-t;return baseSlice(e,t<0?0:t,i)}function takeRightWhile(e,t){return e&&e.length?baseWhile(e,getIteratee(t,3),false,true):[]}function takeWhile(e,t){return e&&e.length?baseWhile(e,getIteratee(t,3)):[]}var tr=baseRest(function(e){return baseUniq(baseFlatten(e,1,isArrayLikeObject,true))});var nr=baseRest(function(e){var t=last(e);if(isArrayLikeObject(t)){t=n}return baseUniq(baseFlatten(e,1,isArrayLikeObject,true),getIteratee(t,2))});var rr=baseRest(function(e){var t=last(e);t=typeof t=="function"?t:n;return baseUniq(baseFlatten(e,1,isArrayLikeObject,true),n,t)});function uniq(e){return e&&e.length?baseUniq(e):[]}function uniqBy(e,t){return e&&e.length?baseUniq(e,getIteratee(t,2)):[]}function uniqWith(e,t){t=typeof t=="function"?t:n;return e&&e.length?baseUniq(e,n,t):[]}function unzip(e){if(!(e&&e.length)){return[]}var t=0;e=arrayFilter(e,function(e){if(isArrayLikeObject(e)){t=Ut(e.length,t);return true}});return baseTimes(t,function(t){return arrayMap(e,baseProperty(t))})}function unzipWith(e,t){if(!(e&&e.length)){return[]}var r=unzip(e);if(t==null){return r}return arrayMap(r,function(e){return apply(t,n,e)})}var ir=baseRest(function(e,t){return isArrayLikeObject(e)?baseDifference(e,t):[]});var or=baseRest(function(e){return baseXor(arrayFilter(e,isArrayLikeObject))});var ar=baseRest(function(e){var t=last(e);if(isArrayLikeObject(t)){t=n}return baseXor(arrayFilter(e,isArrayLikeObject),getIteratee(t,2))});var sr=baseRest(function(e){var t=last(e);t=typeof t=="function"?t:n;return baseXor(arrayFilter(e,isArrayLikeObject),n,t)});var cr=baseRest(unzip);function zipObject(e,t){return baseZipObject(e||[],t||[],assignValue)}function zipObjectDeep(e,t){return baseZipObject(e||[],t||[],baseSet)}var ur=baseRest(function(e){var t=e.length,r=t>1?e[t-1]:n;r=typeof r=="function"?(e.pop(),r):n;return unzipWith(e,r)});function chain(e){var t=lodash(e);t.__chain__=true;return t}function tap(e,t){t(e);return e}function thru(e,t){return t(e)}var lr=flatRest(function(e){var t=e.length,r=t?e[0]:0,i=this.__wrapped__,o=function(t){return baseAt(t,e)};if(t>1||this.__actions__.length||!(i instanceof LazyWrapper)||!isIndex(r)){return this.thru(o)}i=i.slice(r,+r+(t?1:0));i.__actions__.push({func:thru,args:[o],thisArg:n});return new LodashWrapper(i,this.__chain__).thru(function(e){if(t&&!e.length){e.push(n)}return e})});function wrapperChain(){return chain(this)}function wrapperCommit(){return new LodashWrapper(this.value(),this.__chain__)}function wrapperNext(){if(this.__values__===n){this.__values__=toArray(this.value())}var e=this.__index__>=this.__values__.length,t=e?n:this.__values__[this.__index__++];return{done:e,value:t}}function wrapperToIterator(){return this}function wrapperPlant(e){var t,r=this;while(r instanceof baseLodash){var i=wrapperClone(r);i.__index__=0;i.__values__=n;if(t){o.__wrapped__=i}else{t=i}var o=i;r=r.__wrapped__}o.__wrapped__=e;return t}function wrapperReverse(){var e=this.__wrapped__;if(e instanceof LazyWrapper){var t=e;if(this.__actions__.length){t=new LazyWrapper(this)}t=t.reverse();t.__actions__.push({func:thru,args:[reverse],thisArg:n});return new LodashWrapper(t,this.__chain__)}return this.thru(reverse)}function wrapperValue(){return baseWrapperValue(this.__wrapped__,this.__actions__)}var fr=createAggregator(function(e,t,n){if(lt.call(e,n)){++e[n]}else{baseAssignValue(e,n,1)}});function every(e,t,r){var i=Dr(e)?arrayEvery:baseEvery;if(r&&isIterateeCall(e,t,r)){t=n}return i(e,getIteratee(t,3))}function filter(e,t){var n=Dr(e)?arrayFilter:baseFilter;return n(e,getIteratee(t,3))}var pr=createFind(findIndex);var dr=createFind(findLastIndex);function flatMap(e,t){return baseFlatten(map(e,t),1)}function flatMapDeep(e,t){return baseFlatten(map(e,t),T)}function flatMapDepth(e,t,r){r=r===n?1:toInteger(r);return baseFlatten(map(e,t),r)}function forEach(e,t){var n=Dr(e)?arrayEach:On;return n(e,getIteratee(t,3))}function forEachRight(e,t){var n=Dr(e)?arrayEachRight:Fn;return n(e,getIteratee(t,3))}var hr=createAggregator(function(e,t,n){if(lt.call(e,n)){e[n].push(t)}else{baseAssignValue(e,n,[t])}});function includes(e,t,n,r){e=isArrayLike(e)?e:values(e);n=n&&!r?toInteger(n):0;var i=e.length;if(n<0){n=Ut(i+n,0)}return isString(e)?n<=i&&e.indexOf(t,n)>-1:!!i&&baseIndexOf(e,t,n)>-1}var mr=baseRest(function(e,n,r){var i=-1,o=typeof n=="function",a=isArrayLike(e)?t(e.length):[];On(e,function(e){a[++i]=o?apply(n,e,r):baseInvoke(e,n,r)});return a});var vr=createAggregator(function(e,t,n){baseAssignValue(e,n,t)});function map(e,t){var n=Dr(e)?arrayMap:baseMap;return n(e,getIteratee(t,3))}function orderBy(e,t,r,i){if(e==null){return[]}if(!Dr(t)){t=t==null?[]:[t]}r=i?n:r;if(!Dr(r)){r=r==null?[]:[r]}return baseOrderBy(e,t,r)}var gr=createAggregator(function(e,t,n){e[n?0:1].push(t)},function(){return[[],[]]});function reduce(e,t,n){var r=Dr(e)?arrayReduce:baseReduce,i=arguments.length<3;return r(e,getIteratee(t,4),n,i,On)}function reduceRight(e,t,n){var r=Dr(e)?arrayReduceRight:baseReduce,i=arguments.length<3;return r(e,getIteratee(t,4),n,i,Fn)}function reject(e,t){var n=Dr(e)?arrayFilter:baseFilter;return n(e,negate(getIteratee(t,3)))}function sample(e){var t=Dr(e)?arraySample:baseSample;return t(e)}function sampleSize(e,t,r){if(r?isIterateeCall(e,t,r):t===n){t=1}else{t=toInteger(t)}var i=Dr(e)?arraySampleSize:baseSampleSize;return i(e,t)}function shuffle(e){var t=Dr(e)?arrayShuffle:baseShuffle;return t(e)}function size(e){if(e==null){return 0}if(isArrayLike(e)){return isString(e)?stringSize(e):e.length}var t=Un(e);if(t==Z||t==ne){return e.size}return baseKeys(e).length}function some(e,t,r){var i=Dr(e)?arraySome:baseSome;if(r&&isIterateeCall(e,t,r)){t=n}return i(e,getIteratee(t,3))}var yr=baseRest(function(e,t){if(e==null){return[]}var n=t.length;if(n>1&&isIterateeCall(e,t[0],t[1])){t=[]}else if(n>2&&isIterateeCall(t[0],t[1],t[2])){t=[t[0]]}return baseOrderBy(e,baseFlatten(t,1),[])});var br=Ft||function(){return rn.Date.now()};function after(e,t){if(typeof t!="function"){throw new it(a)}e=toInteger(e);return function(){if(--e<1){return t.apply(this,arguments)}}}function ary(e,t,r){t=r?n:t;t=e&&t==null?e.length:t;return createWrap(e,k,n,n,n,n,t)}function before(e,t){var r;if(typeof t!="function"){throw new it(a)}e=toInteger(e);return function(){if(--e>0){r=t.apply(this,arguments)}if(e<=1){t=n}return r}}var wr=baseRest(function(e,t,n){var r=m;if(n.length){var i=replaceHolders(n,getHolder(wr));r|=w}return createWrap(e,r,t,n,i)});var xr=baseRest(function(e,t,n){var r=m|v;if(n.length){var i=replaceHolders(n,getHolder(xr));r|=w}return createWrap(t,r,e,n,i)});function curry(e,t,r){t=r?n:t;var i=createWrap(e,y,n,n,n,n,n,t);i.placeholder=curry.placeholder;return i}function curryRight(e,t,r){t=r?n:t;var i=createWrap(e,b,n,n,n,n,n,t);i.placeholder=curryRight.placeholder;return i}function debounce(e,t,r){var i,o,s,c,u,l,f=0,p=false,d=false,h=true;if(typeof e!="function"){throw new it(a)}t=toNumber(t)||0;if(isObject(r)){p=!!r.leading;d="maxWait"in r;s=d?Ut(toNumber(r.maxWait)||0,t):s;h="trailing"in r?!!r.trailing:h}function invokeFunc(t){var r=i,a=o;i=o=n;f=t;c=e.apply(a,r);return c}function leadingEdge(e){f=e;u=Gn(timerExpired,t);return p?invokeFunc(e):c}function remainingWait(e){var n=e-l,r=e-f,i=t-n;return d?qt(i,s-r):i}function shouldInvoke(e){var r=e-l,i=e-f;return l===n||r>=t||r<0||d&&i>=s}function timerExpired(){var e=br();if(shouldInvoke(e)){return trailingEdge(e)}u=Gn(timerExpired,remainingWait(e))}function trailingEdge(e){u=n;if(h&&i){return invokeFunc(e)}i=o=n;return c}function cancel(){if(u!==n){Bn(u)}f=0;i=l=o=u=n}function flush(){return u===n?c:trailingEdge(br())}function debounced(){var e=br(),r=shouldInvoke(e);i=arguments;o=this;l=e;if(r){if(u===n){return leadingEdge(l)}if(d){Bn(u);u=Gn(timerExpired,t);return invokeFunc(l)}}if(u===n){u=Gn(timerExpired,t)}return c}debounced.cancel=cancel;debounced.flush=flush;return debounced}var kr=baseRest(function(e,t){return baseDelay(e,1,t)});var jr=baseRest(function(e,t,n){return baseDelay(e,toNumber(t)||0,n)});function flip(e){return createWrap(e,S)}function memoize(e,t){if(typeof e!="function"||t!=null&&typeof t!="function"){throw new it(a)}var n=function(){var r=arguments,i=t?t.apply(this,r):r[0],o=n.cache;if(o.has(i)){return o.get(i)}var a=e.apply(this,r);n.cache=o.set(i,a)||o;return a};n.cache=new(memoize.Cache||MapCache);return n}memoize.Cache=MapCache;function negate(e){if(typeof e!="function"){throw new it(a)}return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}function once(e){return before(2,e)}var Sr=Pn(function(e,t){t=t.length==1&&Dr(t[0])?arrayMap(t[0],baseUnary(getIteratee())):arrayMap(baseFlatten(t,1),baseUnary(getIteratee()));var n=t.length;return baseRest(function(r){var i=-1,o=qt(r.length,n);while(++i<o){r[i]=t[i].call(this,r[i])}return apply(e,this,r)})});var Er=baseRest(function(e,t){var r=replaceHolders(t,getHolder(Er));return createWrap(e,w,n,t,r)});var _r=baseRest(function(e,t){var r=replaceHolders(t,getHolder(_r));return createWrap(e,x,n,t,r)});var Cr=flatRest(function(e,t){return createWrap(e,j,n,n,n,t)});function rest(e,t){if(typeof e!="function"){throw new it(a)}t=t===n?t:toInteger(t);return baseRest(e,t)}function spread(e,t){if(typeof e!="function"){throw new it(a)}t=t==null?0:Ut(toInteger(t),0);return baseRest(function(n){var r=n[t],i=castSlice(n,0,t);if(r){arrayPush(i,r)}return apply(e,this,i)})}function throttle(e,t,n){var r=true,i=true;if(typeof e!="function"){throw new it(a)}if(isObject(n)){r="leading"in n?!!n.leading:r;i="trailing"in n?!!n.trailing:i}return debounce(e,t,{leading:r,maxWait:t,trailing:i})}function unary(e){return ary(e,1)}function wrap(e,t){return Er(castFunction(t),e)}function castArray(){if(!arguments.length){return[]}var e=arguments[0];return Dr(e)?e:[e]}function clone(e){return baseClone(e,p)}function cloneWith(e,t){t=typeof t=="function"?t:n;return baseClone(e,p,t)}function cloneDeep(e){return baseClone(e,l|p)}function cloneDeepWith(e,t){t=typeof t=="function"?t:n;return baseClone(e,l|p,t)}function conformsTo(e,t){return t==null||baseConformsTo(e,t,keys(t))}function eq(e,t){return e===t||e!==e&&t!==t}var Ar=createRelationalOperation(baseGt);var Or=createRelationalOperation(function(e,t){return e>=t});var Fr=baseIsArguments(function(){return arguments}())?baseIsArguments:function(e){return isObjectLike(e)&&lt.call(e,"callee")&&!jt.call(e,"callee")};var Dr=t.isArray;var Tr=ln?baseUnary(ln):baseIsArrayBuffer;function isArrayLike(e){return e!=null&&isLength(e.length)&&!isFunction(e)}function isArrayLikeObject(e){return isObjectLike(e)&&isArrayLike(e)}function isBoolean(e){return e===true||e===false||isObjectLike(e)&&baseGetTag(e)==H}var Ir=Pt||stubFalse;var Rr=fn?baseUnary(fn):baseIsDate;function isElement(e){return isObjectLike(e)&&e.nodeType===1&&!isPlainObject(e)}function isEmpty(e){if(e==null){return true}if(isArrayLike(e)&&(Dr(e)||typeof e=="string"||typeof e.splice=="function"||Ir(e)||zr(e)||Fr(e))){return!e.length}var t=Un(e);if(t==Z||t==ne){return!e.size}if(isPrototype(e)){return!baseKeys(e).length}for(var n in e){if(lt.call(e,n)){return false}}return true}function isEqual(e,t){return baseIsEqual(e,t)}function isEqualWith(e,t,r){r=typeof r=="function"?r:n;var i=r?r(e,t):n;return i===n?baseIsEqual(e,t,n,r):!!i}function isError(e){if(!isObjectLike(e)){return false}var t=baseGetTag(e);return t==V||t==W||typeof e.message=="string"&&typeof e.name=="string"&&!isPlainObject(e)}function isFinite(e){return typeof e=="number"&&Bt(e)}function isFunction(e){if(!isObject(e)){return false}var t=baseGetTag(e);return t==J||t==Y||t==q||t==ee}function isInteger(e){return typeof e=="number"&&e==toInteger(e)}function isLength(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=I}function isObject(e){var t=typeof e;return e!=null&&(t=="object"||t=="function")}function isObjectLike(e){return e!=null&&typeof e=="object"}var Pr=pn?baseUnary(pn):baseIsMap;function isMatch(e,t){return e===t||baseIsMatch(e,t,getMatchData(t))}function isMatchWith(e,t,r){r=typeof r=="function"?r:n;return baseIsMatch(e,t,getMatchData(t),r)}function isNaN(e){return isNumber(e)&&e!=+e}function isNative(e){if(qn(e)){throw new Ke(o)}return baseIsNative(e)}function isNull(e){return e===null}function isNil(e){return e==null}function isNumber(e){return typeof e=="number"||isObjectLike(e)&&baseGetTag(e)==X}function isPlainObject(e){if(!isObjectLike(e)||baseGetTag(e)!=K){return false}var t=xt(e);if(t===null){return true}var n=lt.call(t,"constructor")&&t.constructor;return typeof n=="function"&&n instanceof n&&ut.call(n)==ht}var Br=dn?baseUnary(dn):baseIsRegExp;function isSafeInteger(e){return isInteger(e)&&e>=-I&&e<=I}var Nr=hn?baseUnary(hn):baseIsSet;function isString(e){return typeof e=="string"||!Dr(e)&&isObjectLike(e)&&baseGetTag(e)==re}function isSymbol(e){return typeof e=="symbol"||isObjectLike(e)&&baseGetTag(e)==ie}var zr=mn?baseUnary(mn):baseIsTypedArray;function isUndefined(e){return e===n}function isWeakMap(e){return isObjectLike(e)&&Un(e)==ae}function isWeakSet(e){return isObjectLike(e)&&baseGetTag(e)==se}var Lr=createRelationalOperation(baseLt);var Mr=createRelationalOperation(function(e,t){return e<=t});function toArray(e){if(!e){return[]}if(isArrayLike(e)){return isString(e)?stringToArray(e):copyArray(e)}if(_t&&e[_t]){return iteratorToArray(e[_t]())}var t=Un(e),n=t==Z?mapToArray:t==ne?setToArray:values;return n(e)}function toFinite(e){if(!e){return e===0?e:0}e=toNumber(e);if(e===T||e===-T){var t=e<0?-1:1;return t*R}return e===e?e:0}function toInteger(e){var t=toFinite(e),n=t%1;return t===t?n?t-n:t:0}function toLength(e){return e?baseClamp(toInteger(e),0,B):0}function toNumber(e){if(typeof e=="number"){return e}if(isSymbol(e)){return P}if(isObject(e)){var t=typeof e.valueOf=="function"?e.valueOf():e;e=isObject(t)?t+"":t}if(typeof e!="string"){return e===0?e:+e}e=e.replace(Re,"");var n=We.test(e);return n||Je.test(e)?en(e.slice(2),n?2:8):Ge.test(e)?P:+e}function toPlainObject(e){return copyObject(e,keysIn(e))}function toSafeInteger(e){return e?baseClamp(toInteger(e),-I,I):e===0?e:0}function toString(e){return e==null?"":baseToString(e)}var Ur=createAssigner(function(e,t){if(isPrototype(t)||isArrayLike(t)){copyObject(t,keys(t),e);return}for(var n in t){if(lt.call(t,n)){assignValue(e,n,t[n])}}});var qr=createAssigner(function(e,t){copyObject(t,keysIn(t),e)});var Hr=createAssigner(function(e,t,n,r){copyObject(t,keysIn(t),e,r)});var Gr=createAssigner(function(e,t,n,r){copyObject(t,keys(t),e,r)});var Wr=flatRest(baseAt);function create(e,t){var n=An(e);return t==null?n:baseAssign(n,t)}var Vr=baseRest(function(e,t){e=tt(e);var r=-1;var i=t.length;var o=i>2?t[2]:n;if(o&&isIterateeCall(t[0],t[1],o)){i=1}while(++r<i){var a=t[r];var s=keysIn(a);var c=-1;var u=s.length;while(++c<u){var l=s[c];var f=e[l];if(f===n||eq(f,st[l])&&!lt.call(e,l)){e[l]=a[l]}}}return e});var Jr=baseRest(function(e){e.push(n,customDefaultsMerge);return apply(Kr,n,e)});function findKey(e,t){return baseFindKey(e,getIteratee(t,3),baseForOwn)}function findLastKey(e,t){return baseFindKey(e,getIteratee(t,3),baseForOwnRight)}function forIn(e,t){return e==null?e:Dn(e,getIteratee(t,3),keysIn)}function forInRight(e,t){return e==null?e:Tn(e,getIteratee(t,3),keysIn)}function forOwn(e,t){return e&&baseForOwn(e,getIteratee(t,3))}function forOwnRight(e,t){return e&&baseForOwnRight(e,getIteratee(t,3))}function functions(e){return e==null?[]:baseFunctions(e,keys(e))}function functionsIn(e){return e==null?[]:baseFunctions(e,keysIn(e))}function get(e,t,r){var i=e==null?n:baseGet(e,t);return i===n?r:i}function has(e,t){return e!=null&&hasPath(e,t,baseHas)}function hasIn(e,t){return e!=null&&hasPath(e,t,baseHasIn)}var Yr=createInverter(function(e,t,n){if(t!=null&&typeof t.toString!="function"){t=dt.call(t)}e[t]=n},constant(identity));var Zr=createInverter(function(e,t,n){if(t!=null&&typeof t.toString!="function"){t=dt.call(t)}if(lt.call(e,t)){e[t].push(n)}else{e[t]=[n]}},getIteratee);var Xr=baseRest(baseInvoke);function keys(e){return isArrayLike(e)?arrayLikeKeys(e):baseKeys(e)}function keysIn(e){return isArrayLike(e)?arrayLikeKeys(e,true):baseKeysIn(e)}function mapKeys(e,t){var n={};t=getIteratee(t,3);baseForOwn(e,function(e,r,i){baseAssignValue(n,t(e,r,i),e)});return n}function mapValues(e,t){var n={};t=getIteratee(t,3);baseForOwn(e,function(e,r,i){baseAssignValue(n,r,t(e,r,i))});return n}var Qr=createAssigner(function(e,t,n){baseMerge(e,t,n)});var Kr=createAssigner(function(e,t,n,r){baseMerge(e,t,n,r)});var $r=flatRest(function(e,t){var n={};if(e==null){return n}var r=false;t=arrayMap(t,function(t){t=castPath(t,e);r||(r=t.length>1);return t});copyObject(e,getAllKeysIn(e),n);if(r){n=baseClone(n,l|f|p,customOmitClone)}var i=t.length;while(i--){baseUnset(n,t[i])}return n});function omitBy(e,t){return pickBy(e,negate(getIteratee(t)))}var ei=flatRest(function(e,t){return e==null?{}:basePick(e,t)});function pickBy(e,t){if(e==null){return{}}var n=arrayMap(getAllKeysIn(e),function(e){return[e]});t=getIteratee(t);return basePickBy(e,n,function(e,n){return t(e,n[0])})}function result(e,t,r){t=castPath(t,e);var i=-1,o=t.length;if(!o){o=1;e=n}while(++i<o){var a=e==null?n:e[toKey(t[i])];if(a===n){i=o;a=r}e=isFunction(a)?a.call(e):a}return e}function set(e,t,n){return e==null?e:baseSet(e,t,n)}function setWith(e,t,r,i){i=typeof i=="function"?i:n;return e==null?e:baseSet(e,t,r,i)}var ti=createToPairs(keys);var ni=createToPairs(keysIn);function transform(e,t,n){var r=Dr(e),i=r||Ir(e)||zr(e);t=getIteratee(t,4);if(n==null){var o=e&&e.constructor;if(i){n=r?new o:[]}else if(isObject(e)){n=isFunction(o)?An(xt(e)):{}}else{n={}}}(i?arrayEach:baseForOwn)(e,function(e,r,i){return t(n,e,r,i)});return n}function unset(e,t){return e==null?true:baseUnset(e,t)}function update(e,t,n){return e==null?e:baseUpdate(e,t,castFunction(n))}function updateWith(e,t,r,i){i=typeof i=="function"?i:n;return e==null?e:baseUpdate(e,t,castFunction(r),i)}function values(e){return e==null?[]:baseValues(e,keys(e))}function valuesIn(e){return e==null?[]:baseValues(e,keysIn(e))}function clamp(e,t,r){if(r===n){r=t;t=n}if(r!==n){r=toNumber(r);r=r===r?r:0}if(t!==n){t=toNumber(t);t=t===t?t:0}return baseClamp(toNumber(e),t,r)}function inRange(e,t,r){t=toFinite(t);if(r===n){r=t;t=0}else{r=toFinite(r)}e=toNumber(e);return baseInRange(e,t,r)}function random(e,t,r){if(r&&typeof r!="boolean"&&isIterateeCall(e,t,r)){t=r=n}if(r===n){if(typeof t=="boolean"){r=t;t=n}else if(typeof e=="boolean"){r=e;e=n}}if(e===n&&t===n){e=0;t=1}else{e=toFinite(e);if(t===n){t=e;e=0}else{t=toFinite(t)}}if(e>t){var i=e;e=t;t=i}if(r||e%1||t%1){var o=Zt();return qt(e+o*(t-e+$t("1e-"+((o+"").length-1))),t)}return baseRandom(e,t)}var ri=createCompounder(function(e,t,n){t=t.toLowerCase();return e+(n?capitalize(t):t)});function capitalize(e){return li(toString(e).toLowerCase())}function deburr(e){e=toString(e);return e&&e.replace(Ze,gn).replace(Mt,"")}function endsWith(e,t,r){e=toString(e);t=baseToString(t);var i=e.length;r=r===n?i:baseClamp(toInteger(r),0,i);var o=r;r-=t.length;return r>=0&&e.slice(r,o)==t}function escape(e){e=toString(e);return e&&Ee.test(e)?e.replace(je,yn):e}function escapeRegExp(e){e=toString(e);return e&&Ie.test(e)?e.replace(Te,"\\$&"):e}var ii=createCompounder(function(e,t,n){return e+(n?"-":"")+t.toLowerCase()});var oi=createCompounder(function(e,t,n){return e+(n?" ":"")+t.toLowerCase()});var ai=createCaseFirst("toLowerCase");function pad(e,t,n){e=toString(e);t=toInteger(t);var r=t?stringSize(e):0;if(!t||r>=t){return e}var i=(t-r)/2;return createPadding(It(i),n)+e+createPadding(Tt(i),n)}function padEnd(e,t,n){e=toString(e);t=toInteger(t);var r=t?stringSize(e):0;return t&&r<t?e+createPadding(t-r,n):e}function padStart(e,t,n){e=toString(e);t=toInteger(t);var r=t?stringSize(e):0;return t&&r<t?createPadding(t-r,n)+e:e}function parseInt(e,t,n){if(n||t==null){t=0}else if(t){t=+t}return Gt(toString(e).replace(Pe,""),t||0)}function repeat(e,t,r){if(r?isIterateeCall(e,t,r):t===n){t=1}else{t=toInteger(t)}return baseRepeat(toString(e),t)}function replace(){var e=arguments,t=toString(e[0]);return e.length<3?t:t.replace(e[1],e[2])}var si=createCompounder(function(e,t,n){return e+(n?"_":"")+t.toLowerCase()});function split(e,t,r){if(r&&typeof r!="number"&&isIterateeCall(e,t,r)){t=r=n}r=r===n?B:r>>>0;if(!r){return[]}e=toString(e);if(e&&(typeof t=="string"||t!=null&&!Br(t))){t=baseToString(t);if(!t&&hasUnicode(e)){return castSlice(stringToArray(e),0,r)}}return e.split(t,r)}var ci=createCompounder(function(e,t,n){return e+(n?" ":"")+li(t)});function startsWith(e,t,n){e=toString(e);n=n==null?0:baseClamp(toInteger(n),0,e.length);t=baseToString(t);return e.slice(n,n+t.length)==t}function template(e,t,r){var i=lodash.templateSettings;if(r&&isIterateeCall(e,t,r)){t=n}e=toString(e);t=Hr({},t,i,customDefaultsAssignIn);var o=Hr({},t.imports,i.imports,customDefaultsAssignIn),a=keys(o),s=baseValues(o,a);var c,u,l=0,f=t.interpolate||Xe,p="__p += '";var d=nt((t.escape||Xe).source+"|"+f.source+"|"+(f===Ae?qe:Xe).source+"|"+(t.evaluate||Xe).source+"|$","g");var h="//# sourceURL="+(lt.call(t,"sourceURL")?(t.sourceURL+"").replace(/[\r\n]/g," "):"lodash.templateSources["+ ++Vt+"]")+"\n";e.replace(d,function(t,n,r,i,o,a){r||(r=i);p+=e.slice(l,a).replace(Qe,escapeStringChar);if(n){c=true;p+="' +\n__e("+n+") +\n'"}if(o){u=true;p+="';\n"+o+";\n__p += '"}if(r){p+="' +\n((__t = ("+r+")) == null ? '' : __t) +\n'"}l=a+t.length;return t});p+="';\n";var m=lt.call(t,"variable")&&t.variable;if(!m){p="with (obj) {\n"+p+"\n}\n"}p=(u?p.replace(be,""):p).replace(we,"$1").replace(xe,"$1;");p="function("+(m||"obj")+") {\n"+(m?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(c?", __e = _.escape":"")+(u?", __j = Array.prototype.join;\n"+"function print() { __p += __j.call(arguments, '') }\n":";\n")+p+"return __p\n}";var v=fi(function(){return $e(a,h+"return "+p).apply(n,s)});v.source=p;if(isError(v)){throw v}return v}function toLower(e){return toString(e).toLowerCase()}function toUpper(e){return toString(e).toUpperCase()}function trim(e,t,r){e=toString(e);if(e&&(r||t===n)){return e.replace(Re,"")}if(!e||!(t=baseToString(t))){return e}var i=stringToArray(e),o=stringToArray(t),a=charsStartIndex(i,o),s=charsEndIndex(i,o)+1;return castSlice(i,a,s).join("")}function trimEnd(e,t,r){e=toString(e);if(e&&(r||t===n)){return e.replace(Be,"")}if(!e||!(t=baseToString(t))){return e}var i=stringToArray(e),o=charsEndIndex(i,stringToArray(t))+1;return castSlice(i,0,o).join("")}function trimStart(e,t,r){e=toString(e);if(e&&(r||t===n)){return e.replace(Pe,"")}if(!e||!(t=baseToString(t))){return e}var i=stringToArray(e),o=charsStartIndex(i,stringToArray(t));return castSlice(i,o).join("")}function truncate(e,t){var r=E,i=_;if(isObject(t)){var o="separator"in t?t.separator:o;r="length"in t?toInteger(t.length):r;i="omission"in t?baseToString(t.omission):i}e=toString(e);var a=e.length;if(hasUnicode(e)){var s=stringToArray(e);a=s.length}if(r>=a){return e}var c=r-stringSize(i);if(c<1){return i}var u=s?castSlice(s,0,c).join(""):e.slice(0,c);if(o===n){return u+i}if(s){c+=u.length-c}if(Br(o)){if(e.slice(c).search(o)){var l,f=u;if(!o.global){o=nt(o.source,toString(He.exec(o))+"g")}o.lastIndex=0;while(l=o.exec(f)){var p=l.index}u=u.slice(0,p===n?c:p)}}else if(e.indexOf(baseToString(o),c)!=c){var d=u.lastIndexOf(o);if(d>-1){u=u.slice(0,d)}}return u+i}function unescape(e){e=toString(e);return e&&Se.test(e)?e.replace(ke,bn):e}var ui=createCompounder(function(e,t,n){return e+(n?" ":"")+t.toUpperCase()});var li=createCaseFirst("toUpperCase");function words(e,t,r){e=toString(e);t=r?n:t;if(t===n){return hasUnicodeWord(e)?unicodeWords(e):asciiWords(e)}return e.match(t)||[]}var fi=baseRest(function(e,t){try{return apply(e,n,t)}catch(e){return isError(e)?e:new Ke(e)}});var pi=flatRest(function(e,t){arrayEach(t,function(t){t=toKey(t);baseAssignValue(e,t,wr(e[t],e))});return e});function cond(e){var t=e==null?0:e.length,n=getIteratee();e=!t?[]:arrayMap(e,function(e){if(typeof e[1]!="function"){throw new it(a)}return[n(e[0]),e[1]]});return baseRest(function(n){var r=-1;while(++r<t){var i=e[r];if(apply(i[0],this,n)){return apply(i[1],this,n)}}})}function conforms(e){return baseConforms(baseClone(e,l))}function constant(e){return function(){return e}}function defaultTo(e,t){return e==null||e!==e?t:e}var di=createFlow();var hi=createFlow(true);function identity(e){return e}function iteratee(e){return baseIteratee(typeof e=="function"?e:baseClone(e,l))}function matches(e){return baseMatches(baseClone(e,l))}function matchesProperty(e,t){return baseMatchesProperty(e,baseClone(t,l))}var mi=baseRest(function(e,t){return function(n){return baseInvoke(n,e,t)}});var vi=baseRest(function(e,t){return function(n){return baseInvoke(e,n,t)}});function mixin(e,t,n){var r=keys(t),i=baseFunctions(t,r);if(n==null&&!(isObject(t)&&(i.length||!r.length))){n=t;t=e;e=this;i=baseFunctions(t,keys(t))}var o=!(isObject(n)&&"chain"in n)||!!n.chain,a=isFunction(e);arrayEach(i,function(n){var r=t[n];e[n]=r;if(a){e.prototype[n]=function(){var t=this.__chain__;if(o||t){var n=e(this.__wrapped__),i=n.__actions__=copyArray(this.__actions__);i.push({func:r,args:arguments,thisArg:e});n.__chain__=t;return n}return r.apply(e,arrayPush([this.value()],arguments))}}});return e}function noConflict(){if(rn._===this){rn._=mt}return this}function noop(){}function nthArg(e){e=toInteger(e);return baseRest(function(t){return baseNth(t,e)})}var gi=createOver(arrayMap);var yi=createOver(arrayEvery);var bi=createOver(arraySome);function property(e){return isKey(e)?baseProperty(toKey(e)):basePropertyDeep(e)}function propertyOf(e){return function(t){return e==null?n:baseGet(e,t)}}var wi=createRange();var xi=createRange(true);function stubArray(){return[]}function stubFalse(){return false}function stubObject(){return{}}function stubString(){return""}function stubTrue(){return true}function times(e,t){e=toInteger(e);if(e<1||e>I){return[]}var n=B,r=qt(e,B);t=getIteratee(t);e-=B;var i=baseTimes(r,t);while(++n<e){t(n)}return i}function toPath(e){if(Dr(e)){return arrayMap(e,toKey)}return isSymbol(e)?[e]:copyArray(Vn(toString(e)))}function uniqueId(e){var t=++ft;return toString(e)+t}var ki=createMathOperation(function(e,t){return e+t},0);var ji=createRound("ceil");var Si=createMathOperation(function(e,t){return e/t},1);var Ei=createRound("floor");function max(e){return e&&e.length?baseExtremum(e,identity,baseGt):n}function maxBy(e,t){return e&&e.length?baseExtremum(e,getIteratee(t,2),baseGt):n}function mean(e){return baseMean(e,identity)}function meanBy(e,t){return baseMean(e,getIteratee(t,2))}function min(e){return e&&e.length?baseExtremum(e,identity,baseLt):n}function minBy(e,t){return e&&e.length?baseExtremum(e,getIteratee(t,2),baseLt):n}var _i=createMathOperation(function(e,t){return e*t},1);var Ci=createRound("round");var Ai=createMathOperation(function(e,t){return e-t},0);function sum(e){return e&&e.length?baseSum(e,identity):0}function sumBy(e,t){return e&&e.length?baseSum(e,getIteratee(t,2)):0}lodash.after=after;lodash.ary=ary;lodash.assign=Ur;lodash.assignIn=qr;lodash.assignInWith=Hr;lodash.assignWith=Gr;lodash.at=Wr;lodash.before=before;lodash.bind=wr;lodash.bindAll=pi;lodash.bindKey=xr;lodash.castArray=castArray;lodash.chain=chain;lodash.chunk=chunk;lodash.compact=compact;lodash.concat=concat;lodash.cond=cond;lodash.conforms=conforms;lodash.constant=constant;lodash.countBy=fr;lodash.create=create;lodash.curry=curry;lodash.curryRight=curryRight;lodash.debounce=debounce;lodash.defaults=Vr;lodash.defaultsDeep=Jr;lodash.defer=kr;lodash.delay=jr;lodash.difference=Jn;lodash.differenceBy=Yn;lodash.differenceWith=Zn;lodash.drop=drop;lodash.dropRight=dropRight;lodash.dropRightWhile=dropRightWhile;lodash.dropWhile=dropWhile;lodash.fill=fill;lodash.filter=filter;lodash.flatMap=flatMap;lodash.flatMapDeep=flatMapDeep;lodash.flatMapDepth=flatMapDepth;lodash.flatten=flatten;lodash.flattenDeep=flattenDeep;lodash.flattenDepth=flattenDepth;lodash.flip=flip;lodash.flow=di;lodash.flowRight=hi;lodash.fromPairs=fromPairs;lodash.functions=functions;lodash.functionsIn=functionsIn;lodash.groupBy=hr;lodash.initial=initial;lodash.intersection=Xn;lodash.intersectionBy=Qn;lodash.intersectionWith=Kn;lodash.invert=Yr;lodash.invertBy=Zr;lodash.invokeMap=mr;lodash.iteratee=iteratee;lodash.keyBy=vr;lodash.keys=keys;lodash.keysIn=keysIn;lodash.map=map;lodash.mapKeys=mapKeys;lodash.mapValues=mapValues;lodash.matches=matches;lodash.matchesProperty=matchesProperty;lodash.memoize=memoize;lodash.merge=Qr;lodash.mergeWith=Kr;lodash.method=mi;lodash.methodOf=vi;lodash.mixin=mixin;lodash.negate=negate;lodash.nthArg=nthArg;lodash.omit=$r;lodash.omitBy=omitBy;lodash.once=once;lodash.orderBy=orderBy;lodash.over=gi;lodash.overArgs=Sr;lodash.overEvery=yi;lodash.overSome=bi;lodash.partial=Er;lodash.partialRight=_r;lodash.partition=gr;lodash.pick=ei;lodash.pickBy=pickBy;lodash.property=property;lodash.propertyOf=propertyOf;lodash.pull=$n;lodash.pullAll=pullAll;lodash.pullAllBy=pullAllBy;lodash.pullAllWith=pullAllWith;lodash.pullAt=er;lodash.range=wi;lodash.rangeRight=xi;lodash.rearg=Cr;lodash.reject=reject;lodash.remove=remove;lodash.rest=rest;lodash.reverse=reverse;lodash.sampleSize=sampleSize;lodash.set=set;lodash.setWith=setWith;lodash.shuffle=shuffle;lodash.slice=slice;lodash.sortBy=yr;lodash.sortedUniq=sortedUniq;lodash.sortedUniqBy=sortedUniqBy;lodash.split=split;lodash.spread=spread;lodash.tail=tail;lodash.take=take;lodash.takeRight=takeRight;lodash.takeRightWhile=takeRightWhile;lodash.takeWhile=takeWhile;lodash.tap=tap;lodash.throttle=throttle;lodash.thru=thru;lodash.toArray=toArray;lodash.toPairs=ti;lodash.toPairsIn=ni;lodash.toPath=toPath;lodash.toPlainObject=toPlainObject;lodash.transform=transform;lodash.unary=unary;lodash.union=tr;lodash.unionBy=nr;lodash.unionWith=rr;lodash.uniq=uniq;lodash.uniqBy=uniqBy;lodash.uniqWith=uniqWith;lodash.unset=unset;lodash.unzip=unzip;lodash.unzipWith=unzipWith;lodash.update=update;lodash.updateWith=updateWith;lodash.values=values;lodash.valuesIn=valuesIn;lodash.without=ir;lodash.words=words;lodash.wrap=wrap;lodash.xor=or;lodash.xorBy=ar;lodash.xorWith=sr;lodash.zip=cr;lodash.zipObject=zipObject;lodash.zipObjectDeep=zipObjectDeep;lodash.zipWith=ur;lodash.entries=ti;lodash.entriesIn=ni;lodash.extend=qr;lodash.extendWith=Hr;mixin(lodash,lodash);lodash.add=ki;lodash.attempt=fi;lodash.camelCase=ri;lodash.capitalize=capitalize;lodash.ceil=ji;lodash.clamp=clamp;lodash.clone=clone;lodash.cloneDeep=cloneDeep;lodash.cloneDeepWith=cloneDeepWith;lodash.cloneWith=cloneWith;lodash.conformsTo=conformsTo;lodash.deburr=deburr;lodash.defaultTo=defaultTo;lodash.divide=Si;lodash.endsWith=endsWith;lodash.eq=eq;lodash.escape=escape;lodash.escapeRegExp=escapeRegExp;lodash.every=every;lodash.find=pr;lodash.findIndex=findIndex;lodash.findKey=findKey;lodash.findLast=dr;lodash.findLastIndex=findLastIndex;lodash.findLastKey=findLastKey;lodash.floor=Ei;lodash.forEach=forEach;lodash.forEachRight=forEachRight;lodash.forIn=forIn;lodash.forInRight=forInRight;lodash.forOwn=forOwn;lodash.forOwnRight=forOwnRight;lodash.get=get;lodash.gt=Ar;lodash.gte=Or;lodash.has=has;lodash.hasIn=hasIn;lodash.head=head;lodash.identity=identity;lodash.includes=includes;lodash.indexOf=indexOf;lodash.inRange=inRange;lodash.invoke=Xr;lodash.isArguments=Fr;lodash.isArray=Dr;lodash.isArrayBuffer=Tr;lodash.isArrayLike=isArrayLike;lodash.isArrayLikeObject=isArrayLikeObject;lodash.isBoolean=isBoolean;lodash.isBuffer=Ir;lodash.isDate=Rr;lodash.isElement=isElement;lodash.isEmpty=isEmpty;lodash.isEqual=isEqual;lodash.isEqualWith=isEqualWith;lodash.isError=isError;lodash.isFinite=isFinite;lodash.isFunction=isFunction;lodash.isInteger=isInteger;lodash.isLength=isLength;lodash.isMap=Pr;lodash.isMatch=isMatch;lodash.isMatchWith=isMatchWith;lodash.isNaN=isNaN;lodash.isNative=isNative;lodash.isNil=isNil;lodash.isNull=isNull;lodash.isNumber=isNumber;lodash.isObject=isObject;lodash.isObjectLike=isObjectLike;lodash.isPlainObject=isPlainObject;lodash.isRegExp=Br;lodash.isSafeInteger=isSafeInteger;lodash.isSet=Nr;lodash.isString=isString;lodash.isSymbol=isSymbol;lodash.isTypedArray=zr;lodash.isUndefined=isUndefined;lodash.isWeakMap=isWeakMap;lodash.isWeakSet=isWeakSet;lodash.join=join;lodash.kebabCase=ii;lodash.last=last;lodash.lastIndexOf=lastIndexOf;lodash.lowerCase=oi;lodash.lowerFirst=ai;lodash.lt=Lr;lodash.lte=Mr;lodash.max=max;lodash.maxBy=maxBy;lodash.mean=mean;lodash.meanBy=meanBy;lodash.min=min;lodash.minBy=minBy;lodash.stubArray=stubArray;lodash.stubFalse=stubFalse;lodash.stubObject=stubObject;lodash.stubString=stubString;lodash.stubTrue=stubTrue;lodash.multiply=_i;lodash.nth=nth;lodash.noConflict=noConflict;lodash.noop=noop;lodash.now=br;lodash.pad=pad;lodash.padEnd=padEnd;lodash.padStart=padStart;lodash.parseInt=parseInt;lodash.random=random;lodash.reduce=reduce;lodash.reduceRight=reduceRight;lodash.repeat=repeat;lodash.replace=replace;lodash.result=result;lodash.round=Ci;lodash.runInContext=runInContext;lodash.sample=sample;lodash.size=size;lodash.snakeCase=si;lodash.some=some;lodash.sortedIndex=sortedIndex;lodash.sortedIndexBy=sortedIndexBy;lodash.sortedIndexOf=sortedIndexOf;lodash.sortedLastIndex=sortedLastIndex;lodash.sortedLastIndexBy=sortedLastIndexBy;lodash.sortedLastIndexOf=sortedLastIndexOf;lodash.startCase=ci;lodash.startsWith=startsWith;lodash.subtract=Ai;lodash.sum=sum;lodash.sumBy=sumBy;lodash.template=template;lodash.times=times;lodash.toFinite=toFinite;lodash.toInteger=toInteger;lodash.toLength=toLength;lodash.toLower=toLower;lodash.toNumber=toNumber;lodash.toSafeInteger=toSafeInteger;lodash.toString=toString;lodash.toUpper=toUpper;lodash.trim=trim;lodash.trimEnd=trimEnd;lodash.trimStart=trimStart;lodash.truncate=truncate;lodash.unescape=unescape;lodash.uniqueId=uniqueId;lodash.upperCase=ui;lodash.upperFirst=li;lodash.each=forEach;lodash.eachRight=forEachRight;lodash.first=head;mixin(lodash,function(){var e={};baseForOwn(lodash,function(t,n){if(!lt.call(lodash.prototype,n)){e[n]=t}});return e}(),{chain:false});lodash.VERSION=r;arrayEach(["bind","bindKey","curry","curryRight","partial","partialRight"],function(e){lodash[e].placeholder=lodash});arrayEach(["drop","take"],function(e,t){LazyWrapper.prototype[e]=function(r){r=r===n?1:Ut(toInteger(r),0);var i=this.__filtered__&&!t?new LazyWrapper(this):this.clone();if(i.__filtered__){i.__takeCount__=qt(r,i.__takeCount__)}else{i.__views__.push({size:qt(r,B),type:e+(i.__dir__<0?"Right":"")})}return i};LazyWrapper.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}});arrayEach(["filter","map","takeWhile"],function(e,t){var n=t+1,r=n==O||n==D;LazyWrapper.prototype[e]=function(e){var t=this.clone();t.__iteratees__.push({iteratee:getIteratee(e,3),type:n});t.__filtered__=t.__filtered__||r;return t}});arrayEach(["head","last"],function(e,t){var n="take"+(t?"Right":"");LazyWrapper.prototype[e]=function(){return this[n](1).value()[0]}});arrayEach(["initial","tail"],function(e,t){var n="drop"+(t?"":"Right");LazyWrapper.prototype[e]=function(){return this.__filtered__?new LazyWrapper(this):this[n](1)}});LazyWrapper.prototype.compact=function(){return this.filter(identity)};LazyWrapper.prototype.find=function(e){return this.filter(e).head()};LazyWrapper.prototype.findLast=function(e){return this.reverse().find(e)};LazyWrapper.prototype.invokeMap=baseRest(function(e,t){if(typeof e=="function"){return new LazyWrapper(this)}return this.map(function(n){return baseInvoke(n,e,t)})});LazyWrapper.prototype.reject=function(e){return this.filter(negate(getIteratee(e)))};LazyWrapper.prototype.slice=function(e,t){e=toInteger(e);var r=this;if(r.__filtered__&&(e>0||t<0)){return new LazyWrapper(r)}if(e<0){r=r.takeRight(-e)}else if(e){r=r.drop(e)}if(t!==n){t=toInteger(t);r=t<0?r.dropRight(-t):r.take(t-e)}return r};LazyWrapper.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()};LazyWrapper.prototype.toArray=function(){return this.take(B)};baseForOwn(LazyWrapper.prototype,function(e,t){var r=/^(?:filter|find|map|reject)|While$/.test(t),i=/^(?:head|last)$/.test(t),o=lodash[i?"take"+(t=="last"?"Right":""):t],a=i||/^find/.test(t);if(!o){return}lodash.prototype[t]=function(){var t=this.__wrapped__,s=i?[1]:arguments,c=t instanceof LazyWrapper,u=s[0],l=c||Dr(t);var f=function(e){var t=o.apply(lodash,arrayPush([e],s));return i&&p?t[0]:t};if(l&&r&&typeof u=="function"&&u.length!=1){c=l=false}var p=this.__chain__,d=!!this.__actions__.length,h=a&&!p,m=c&&!d;if(!a&&l){t=m?t:new LazyWrapper(this);var v=e.apply(t,s);v.__actions__.push({func:thru,args:[f],thisArg:n});return new LodashWrapper(v,p)}if(h&&m){return e.apply(this,s)}v=this.thru(f);return h?i?v.value()[0]:v.value():v}});arrayEach(["pop","push","shift","sort","splice","unshift"],function(e){var t=ot[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",r=/^(?:pop|shift)$/.test(e);lodash.prototype[e]=function(){var e=arguments;if(r&&!this.__chain__){var i=this.value();return t.apply(Dr(i)?i:[],e)}return this[n](function(n){return t.apply(Dr(n)?n:[],e)})}});baseForOwn(LazyWrapper.prototype,function(e,t){var n=lodash[t];if(n){var r=n.name+"";if(!lt.call(un,r)){un[r]=[]}un[r].push({name:t,func:n})}});un[createHybrid(n,v).name]=[{name:"wrapper",func:n}];LazyWrapper.prototype.clone=lazyClone;LazyWrapper.prototype.reverse=lazyReverse;LazyWrapper.prototype.value=lazyValue;lodash.prototype.at=lr;lodash.prototype.chain=wrapperChain;lodash.prototype.commit=wrapperCommit;lodash.prototype.next=wrapperNext;lodash.prototype.plant=wrapperPlant;lodash.prototype.reverse=wrapperReverse;lodash.prototype.toJSON=lodash.prototype.valueOf=lodash.prototype.value=wrapperValue;lodash.prototype.first=lodash.prototype.head;if(_t){lodash.prototype[_t]=wrapperToIterator}return lodash};var xn=wn();if(typeof define=="function"&&typeof define.amd=="object"&&define.amd){rn._=xn;define(function(){return xn})}else if(an){(an.exports=xn)._=xn;on._=xn}else{rn._=xn}}).call(this)},8910:function(e){var t=Object.prototype.toString;e.exports=function kindOf(e){if(e===void 0)return"undefined";if(e===null)return"null";var n=typeof e;if(n==="boolean")return"boolean";if(n==="string")return"string";if(n==="number")return"number";if(n==="symbol")return"symbol";if(n==="function"){return isGeneratorFn(e)?"generatorfunction":"function"}if(isArray(e))return"array";if(isBuffer(e))return"buffer";if(isArguments(e))return"arguments";if(isDate(e))return"date";if(isError(e))return"error";if(isRegexp(e))return"regexp";switch(ctorName(e)){case"Symbol":return"symbol";case"Promise":return"promise";case"WeakMap":return"weakmap";case"WeakSet":return"weakset";case"Map":return"map";case"Set":return"set";case"Int8Array":return"int8array";case"Uint8Array":return"uint8array";case"Uint8ClampedArray":return"uint8clampedarray";case"Int16Array":return"int16array";case"Uint16Array":return"uint16array";case"Int32Array":return"int32array";case"Uint32Array":return"uint32array";case"Float32Array":return"float32array";case"Float64Array":return"float64array"}if(isGeneratorObj(e)){return"generator"}n=t.call(e);switch(n){case"[object Object]":return"object";case"[object Map Iterator]":return"mapiterator";case"[object Set Iterator]":return"setiterator";case"[object String Iterator]":return"stringiterator";case"[object Array Iterator]":return"arrayiterator"}return n.slice(8,-1).toLowerCase().replace(/\s/g,"")};function ctorName(e){return e.constructor?e.constructor.name:null}function isArray(e){if(Array.isArray)return Array.isArray(e);return e instanceof Array}function isError(e){return e instanceof Error||typeof e.message==="string"&&e.constructor&&typeof e.constructor.stackTraceLimit==="number"}function isDate(e){if(e instanceof Date)return true;return typeof e.toDateString==="function"&&typeof e.getDate==="function"&&typeof e.setDate==="function"}function isRegexp(e){if(e instanceof RegExp)return true;return typeof e.flags==="string"&&typeof e.ignoreCase==="boolean"&&typeof e.multiline==="boolean"&&typeof e.global==="boolean"}function isGeneratorFn(e,t){return ctorName(e)==="GeneratorFunction"}function isGeneratorObj(e){return typeof e.throw==="function"&&typeof e.return==="function"&&typeof e.next==="function"}function isArguments(e){try{if(typeof e.length==="number"&&typeof e.callee==="function"){return true}}catch(e){if(e.message.indexOf("callee")!==-1){return true}}return false}function isBuffer(e){if(e.constructor&&typeof e.constructor.isBuffer==="function"){return e.constructor.isBuffer(e)}return false}},8911:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(2399));function issueCert(e,t){return r(this,void 0,void 0,function*(){return o.default(n=>r(this,void 0,void 0,function*(){try{return yield e.fetch("/v3/now/certs",{method:"POST",body:{domains:t}})}catch(e){if(e.code==="configuration_error"){throw e}else{n(e)}}}),{retries:3,minTimeout:5e3,maxTimeout:15e3})})}t.default=issueCert},8919:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(8244);var i=function(){function PromiseBuffer(e){this._limit=e;this._buffer=[]}PromiseBuffer.prototype.isReady=function(){return this._limit===undefined||this.length()<this._limit};PromiseBuffer.prototype.add=function(e){var t=this;if(!this.isReady()){return Promise.reject(new r.SentryError("Not adding Promise due to buffer limit reached."))}if(this._buffer.indexOf(e)===-1){this._buffer.push(e)}e.then(function(){return t.remove(e)}).catch(function(){return t.remove(e).catch(function(){})});return e};PromiseBuffer.prototype.remove=function(e){var t=this._buffer.splice(this._buffer.indexOf(e),1)[0];return t};PromiseBuffer.prototype.length=function(){return this._buffer.length};PromiseBuffer.prototype.drain=function(e){var t=this;return new Promise(function(n){var r=setTimeout(function(){if(e&&e>0){n(false)}},e);Promise.all(t._buffer).then(function(){clearTimeout(r);n(true)}).catch(function(){n(true)})})};return PromiseBuffer}();t.PromiseBuffer=i},8920:function(e,t,n){"use strict";var r=n(2608);var i=n(3462);var o=n(808);var a=n(7871);e.exports=function(e,t,n){if(!a(e)){return e}if(Array.isArray(t)){t=[].concat.apply([],t).join(".")}if(typeof t!=="string"){return e}var s=r(t,{sep:".",brackets:true}).filter(isValidKey);var c=s.length;var u=-1;var l=e;while(++u<c){var f=s[u];if(u!==c-1){if(!a(l[f])){l[f]={}}l=l[f];continue}if(o(l[f])&&o(n)){l[f]=i({},l[f],n)}else{l[f]=n}}return e};function isValidKey(e){return e!=="__proto__"&&e!=="constructor"&&e!=="prototype"}},8929:function(e,t,n){var r=n(8901);var i=n(649);var o=n(9544);var a=n(1471);var s=n(6268);var c=n(7063);var u=n(6828);e.exports=Prompt;function Prompt(){a.apply(this,arguments);if(!this.opt.choices){this.throwParamError("choices")}this.validateChoices(this.opt.choices);this.opt.choices.push({key:"h",name:"Help, list all options",value:"help"});this.opt.validate=function(e){if(e==null){return"Please enter a valid command"}return e!=="help"};this.opt.default=this.generateChoicesString(this.opt.choices,this.opt.default);this.paginator=new u}i.inherits(Prompt,a);Prompt.prototype._run=function(e){this.done=e;var t=c(this.rl);var n=this.handleSubmitEvents(t.line.map(this.getCurrentValue.bind(this)));n.success.forEach(this.onSubmit.bind(this));n.error.forEach(this.onError.bind(this));this.keypressObs=t.keypress.takeUntil(n.success).forEach(this.onKeypress.bind(this));this.render();return this};Prompt.prototype.render=function(e,t){var n=this.getQuestion();var r="";if(this.status==="answered"){n+=o.cyan(this.answer)}else if(this.status==="expanded"){var i=renderChoices(this.opt.choices,this.selectedKey);n+=this.paginator.paginate(i,this.selectedKey,this.opt.pageSize);n+="\n Answer: "}n+=this.rl.line;if(e){r=o.red(">> ")+e}if(t){r=o.cyan(">> ")+t}this.screen.render(n,r)};Prompt.prototype.getCurrentValue=function(e){if(!e){e=this.rawDefault}var t=this.opt.choices.where({key:e.toLowerCase().trim()})[0];if(!t){return null}return t.value};Prompt.prototype.getChoices=function(){var e="";this.opt.choices.forEach(function(t){e+="\n ";if(t.type==="separator"){e+=" "+t;return}var n=t.key+") "+t.name;if(this.selectedKey===t.key){n=o.cyan(n)}e+=n}.bind(this));return e};Prompt.prototype.onError=function(e){if(e.value==="help"){this.selectedKey="";this.status="expanded";this.render();return}this.render(e.isValid)};Prompt.prototype.onSubmit=function(e){this.status="answered";var t=this.opt.choices.where({value:e.value})[0];this.answer=t.short||t.name;this.render();this.screen.done();this.done(e.value)};Prompt.prototype.onKeypress=function(){this.selectedKey=this.rl.line.toLowerCase();var e=this.opt.choices.where({key:this.selectedKey})[0];if(this.status==="expanded"){this.render()}else{this.render(null,e?e.name:null)}};Prompt.prototype.validateChoices=function(e){var t;var n=[];var i={};e.filter(s.exclude).forEach(function(e){if(!e.key||e.key.length!==1){t=true}if(i[e.key]){n.push(e.key)}i[e.key]=true;e.key=String(e.key).toLowerCase()});if(t){throw new Error("Format error: `key` param must be a single letter and is required.")}if(i.h){throw new Error("Reserved key error: `key` param cannot be `h` - this value is reserved.")}if(n.length){throw new Error("Duplicate key error: `key` param must be unique. Duplicates: "+r.uniq(n).join(", "))}};Prompt.prototype.generateChoicesString=function(e,t){var n=e.realLength-1;if(r.isNumber(t)&&this.opt.choices.getChoice(t)){n=t}var i=this.opt.choices.pluck("key");this.rawDefault=i[n];i[n]=String(i[n]).toUpperCase();return i.join("")};function renderChoices(e,t){var n="";e.forEach(function(e){n+="\n ";if(e.type==="separator"){n+=" "+e;return}var r=e.key+") "+e.name;if(t===e.key){r=o.cyan(r)}n+=r});return n}},8941:function(e){e.exports={$id:"beforeRequest.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",optional:true,required:["lastAccess","eTag","hitCount"],properties:{expires:{type:"string",pattern:"^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))?"},lastAccess:{type:"string",pattern:"^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))?"},eTag:{type:"string"},hitCount:{type:"integer"},comment:{type:"string"}}}},8950:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9779));const o=r(n(9544));const a=r(n(4680));function wait(e,t=300,n=i.default){let r;let s=false;let c=false;setTimeout(()=>{if(c){return null}r=n(o.default.gray(e));r.color="gray";r.start();s=true},t);const u=()=>{c=true;if(s){r.stop();process.stderr.write(a.default(1));s=false}process.removeListener("nowExit",u)};process.on("nowExit",u);return u}t.default=wait},8952:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function joinWords(e=[]){if(e.length===0){return""}if(e.length===1){return e[0]}const t=e[e.length-1];const n=e.slice(0,e.length-1);return`${n.join(", ")} and ${t}`}t.default=joinWords},8960:function(e,t,n){"use strict";const r=n(6723);const i=n(6385);class MaxBufferError extends Error{constructor(){super("maxBuffer exceeded");this.name="MaxBufferError"}}function getStream(e,t){if(!e){return Promise.reject(new Error("Expected a stream"))}t=Object.assign({maxBuffer:Infinity},t);const{maxBuffer:n}=t;let o;return new Promise((a,s)=>{const c=e=>{if(e){e.bufferedData=o.getBufferedValue()}s(e)};o=r(e,i(t),e=>{if(e){c(e);return}a()});o.on("data",()=>{if(o.getBufferedLength()>n){c(new MaxBufferError)}})}).then(()=>o.getBufferedValue())}e.exports=getStream;e.exports.buffer=((e,t)=>getStream(e,Object.assign({},t,{encoding:"buffer"})));e.exports.array=((e,t)=>getStream(e,Object.assign({},t,{array:true})));e.exports.MaxBufferError=MaxBufferError},8964:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});const r=n(8715);function validatePathAliasRules(e,t){if(!Array.isArray(t)){return new r.RulesFileValidationError(e,"rules must be an array")}if(t.length===0){return new r.RulesFileValidationError(e,"empty rules")}for(const n of t){if(!(n instanceof Object)){return new r.RulesFileValidationError(e,"all rules must be objects")}if(!n.dest){return new r.RulesFileValidationError(e,"all rules must have a dest field")}}}t.default=validatePathAliasRules},8965:function(e,t,n){"use strict";function setup(e){createDebug.debug=createDebug;createDebug.default=createDebug;createDebug.coerce=coerce;createDebug.disable=disable;createDebug.enable=enable;createDebug.enabled=enabled;createDebug.humanize=n(2229);Object.keys(e).forEach(function(t){createDebug[t]=e[t]});createDebug.instances=[];createDebug.names=[];createDebug.skips=[];createDebug.formatters={};function selectColor(e){var t=0;for(var n=0;n<e.length;n++){t=(t<<5)-t+e.charCodeAt(n);t|=0}return createDebug.colors[Math.abs(t)%createDebug.colors.length]}createDebug.selectColor=selectColor;function createDebug(e){var t;function debug(){if(!debug.enabled){return}for(var e=arguments.length,n=new Array(e),r=0;r<e;r++){n[r]=arguments[r]}var i=debug;var o=Number(new Date);var a=o-(t||o);i.diff=a;i.prev=t;i.curr=o;t=o;n[0]=createDebug.coerce(n[0]);if(typeof n[0]!=="string"){n.unshift("%O")}var s=0;n[0]=n[0].replace(/%([a-zA-Z%])/g,function(e,t){if(e==="%%"){return e}s++;var r=createDebug.formatters[t];if(typeof r==="function"){var o=n[s];e=r.call(i,o);n.splice(s,1);s--}return e});createDebug.formatArgs.call(i,n);var c=i.log||createDebug.log;c.apply(i,n)}debug.namespace=e;debug.enabled=createDebug.enabled(e);debug.useColors=createDebug.useColors();debug.color=selectColor(e);debug.destroy=destroy;debug.extend=extend;if(typeof createDebug.init==="function"){createDebug.init(debug)}createDebug.instances.push(debug);return debug}function destroy(){var e=createDebug.instances.indexOf(this);if(e!==-1){createDebug.instances.splice(e,1);return true}return false}function extend(e,t){return createDebug(this.namespace+(typeof t==="undefined"?":":t)+e)}function enable(e){createDebug.save(e);createDebug.names=[];createDebug.skips=[];var t;var n=(typeof e==="string"?e:"").split(/[\s,]+/);var r=n.length;for(t=0;t<r;t++){if(!n[t]){continue}e=n[t].replace(/\*/g,".*?");if(e[0]==="-"){createDebug.skips.push(new RegExp("^"+e.substr(1)+"$"))}else{createDebug.names.push(new RegExp("^"+e+"$"))}}for(t=0;t<createDebug.instances.length;t++){var i=createDebug.instances[t];i.enabled=createDebug.enabled(i.namespace)}}function disable(){createDebug.enable("")}function enabled(e){if(e[e.length-1]==="*"){return true}var t;var n;for(t=0,n=createDebug.skips.length;t<n;t++){if(createDebug.skips[t].test(e)){return false}}for(t=0,n=createDebug.names.length;t<n;t++){if(createDebug.names[t].test(e)){return true}}return false}function coerce(e){if(e instanceof Error){return e.stack||e.message}return e}createDebug.enable(createDebug.load());return createDebug}e.exports=setup},8967:function(e,t,n){"use strict";var r=n(5897);var i=n(4948);var o=Object.create(null);i.forEach(function(e){o[e]=true});e.exports=function(e){return r.extname(e).slice(1).toLowerCase()in o}},8975:function(e,t,n){"use strict";const r=n(2255).fromPromise;const i=n(994);function pathExists(e){return i.access(e).then(()=>true).catch(()=>false)}e.exports={pathExists:r(pathExists),pathExistsSync:i.existsSync}},8980:function(e,t,n){var r=n(5897);var i=n(662);var o=parseInt("0777",8);e.exports=mkdirP.mkdirp=mkdirP.mkdirP=mkdirP;function mkdirP(e,t,n,a){if(typeof t==="function"){n=t;t={}}else if(!t||typeof t!=="object"){t={mode:t}}var s=t.mode;var c=t.fs||i;if(s===undefined){s=o&~process.umask()}if(!a)a=null;var u=n||function(){};e=r.resolve(e);c.mkdir(e,s,function(n){if(!n){a=a||e;return u(null,a)}switch(n.code){case"ENOENT":mkdirP(r.dirname(e),t,function(n,r){if(n)u(n,r);else mkdirP(e,t,u,r)});break;default:c.stat(e,function(e,t){if(e||!t.isDirectory())u(n,a);else u(null,a)});break}})}mkdirP.sync=function sync(e,t,n){if(!t||typeof t!=="object"){t={mode:t}}var a=t.mode;var s=t.fs||i;if(a===undefined){a=o&~process.umask()}if(!n)n=null;e=r.resolve(e);try{s.mkdirSync(e,a);n=n||e}catch(i){switch(i.code){case"ENOENT":n=sync(r.dirname(e),t,n);sync(e,t,n);break;default:var c;try{c=s.statSync(e)}catch(e){throw i}if(!c.isDirectory())throw i;break}}return n}},8991:function(e,t,n){e.exports={copySync:n(7863)}},8999:function(e,t,n){"use strict";var r=n(3062).Buffer;t.utf7=Utf7Codec;t.unicode11utf7="utf7";function Utf7Codec(e,t){this.iconv=t}Utf7Codec.prototype.encoder=Utf7Encoder;Utf7Codec.prototype.decoder=Utf7Decoder;Utf7Codec.prototype.bomAware=true;var i=/[^A-Za-z0-9'\(\),-\.\/:\? \n\r\t]+/g;function Utf7Encoder(e,t){this.iconv=t.iconv}Utf7Encoder.prototype.write=function(e){return r.from(e.replace(i,function(e){return"+"+(e==="+"?"":this.iconv.encode(e,"utf16-be").toString("base64").replace(/=+$/,""))+"-"}.bind(this)))};Utf7Encoder.prototype.end=function(){};function Utf7Decoder(e,t){this.iconv=t.iconv;this.inBase64=false;this.base64Accum=""}var o=/[A-Za-z0-9\/+]/;var a=[];for(var s=0;s<256;s++)a[s]=o.test(String.fromCharCode(s));var c="+".charCodeAt(0),u="-".charCodeAt(0),l="&".charCodeAt(0);Utf7Decoder.prototype.write=function(e){var t="",n=0,i=this.inBase64,o=this.base64Accum;for(var s=0;s<e.length;s++){if(!i){if(e[s]==c){t+=this.iconv.decode(e.slice(n,s),"ascii");n=s+1;i=true}}else{if(!a[e[s]]){if(s==n&&e[s]==u){t+="+"}else{var l=o+e.slice(n,s).toString();t+=this.iconv.decode(r.from(l,"base64"),"utf16-be")}if(e[s]!=u)s--;n=s+1;i=false;o=""}}}if(!i){t+=this.iconv.decode(e.slice(n),"ascii")}else{var l=o+e.slice(n).toString();var f=l.length-l.length%8;o=l.slice(f);l=l.slice(0,f);t+=this.iconv.decode(r.from(l,"base64"),"utf16-be")}this.inBase64=i;this.base64Accum=o;return t};Utf7Decoder.prototype.end=function(){var e="";if(this.inBase64&&this.base64Accum.length>0)e=this.iconv.decode(r.from(this.base64Accum,"base64"),"utf16-be");this.inBase64=false;this.base64Accum="";return e};t.utf7imap=Utf7IMAPCodec;function Utf7IMAPCodec(e,t){this.iconv=t}Utf7IMAPCodec.prototype.encoder=Utf7IMAPEncoder;Utf7IMAPCodec.prototype.decoder=Utf7IMAPDecoder;Utf7IMAPCodec.prototype.bomAware=true;function Utf7IMAPEncoder(e,t){this.iconv=t.iconv;this.inBase64=false;this.base64Accum=r.alloc(6);this.base64AccumIdx=0}Utf7IMAPEncoder.prototype.write=function(e){var t=this.inBase64,n=this.base64Accum,i=this.base64AccumIdx,o=r.alloc(e.length*5+10),a=0;for(var s=0;s<e.length;s++){var c=e.charCodeAt(s);if(32<=c&&c<=126){if(t){if(i>0){a+=o.write(n.slice(0,i).toString("base64").replace(/\//g,",").replace(/=+$/,""),a);i=0}o[a++]=u;t=false}if(!t){o[a++]=c;if(c===l)o[a++]=u}}else{if(!t){o[a++]=l;t=true}if(t){n[i++]=c>>8;n[i++]=c&255;if(i==n.length){a+=o.write(n.toString("base64").replace(/\//g,","),a);i=0}}}}this.inBase64=t;this.base64AccumIdx=i;return o.slice(0,a)};Utf7IMAPEncoder.prototype.end=function(){var e=r.alloc(10),t=0;if(this.inBase64){if(this.base64AccumIdx>0){t+=e.write(this.base64Accum.slice(0,this.base64AccumIdx).toString("base64").replace(/\//g,",").replace(/=+$/,""),t);this.base64AccumIdx=0}e[t++]=u;this.inBase64=false}return e.slice(0,t)};function Utf7IMAPDecoder(e,t){this.iconv=t.iconv;this.inBase64=false;this.base64Accum=""}var f=a.slice();f[",".charCodeAt(0)]=true;Utf7IMAPDecoder.prototype.write=function(e){var t="",n=0,i=this.inBase64,o=this.base64Accum;for(var a=0;a<e.length;a++){if(!i){if(e[a]==l){t+=this.iconv.decode(e.slice(n,a),"ascii");n=a+1;i=true}}else{if(!f[e[a]]){if(a==n&&e[a]==u){t+="&"}else{var s=o+e.slice(n,a).toString().replace(/,/g,"/");t+=this.iconv.decode(r.from(s,"base64"),"utf16-be")}if(e[a]!=u)a--;n=a+1;i=false;o=""}}}if(!i){t+=this.iconv.decode(e.slice(n),"ascii")}else{var s=o+e.slice(n).toString().replace(/,/g,"/");var c=s.length-s.length%8;o=s.slice(c);s=s.slice(0,c);t+=this.iconv.decode(r.from(s,"base64"),"utf16-be")}this.inBase64=i;this.base64Accum=o;return t};Utf7IMAPDecoder.prototype.end=function(){var e="";if(this.inBase64&&this.base64Accum.length>0)e=this.iconv.decode(r.from(this.base64Accum,"base64"),"utf16-be");this.inBase64=false;this.base64Accum="";return e}},9023:function(e,t,n){"use strict";var r=n(7188);var i=n(8878);var o={brackets:function brackets(e){return e+"[]"},indices:function indices(e,t){return e+"["+t+"]"},repeat:function repeat(e){return e}};var a=Date.prototype.toISOString;var s={delimiter:"&",encode:true,encoder:r.encode,encodeValuesOnly:false,serializeDate:function serializeDate(e){return a.call(e)},skipNulls:false,strictNullHandling:false};var c=function stringify(e,t,n,i,o,a,c,u,l,f,p,d){var h=e;if(typeof c==="function"){h=c(t,h)}else if(h instanceof Date){h=f(h)}else if(h===null){if(i){return a&&!d?a(t,s.encoder):t}h=""}if(typeof h==="string"||typeof h==="number"||typeof h==="boolean"||r.isBuffer(h)){if(a){var m=d?t:a(t,s.encoder);return[p(m)+"="+p(a(h,s.encoder))]}return[p(t)+"="+p(String(h))]}var v=[];if(typeof h==="undefined"){return v}var g;if(Array.isArray(c)){g=c}else{var y=Object.keys(h);g=u?y.sort(u):y}for(var b=0;b<g.length;++b){var w=g[b];if(o&&h[w]===null){continue}if(Array.isArray(h)){v=v.concat(stringify(h[w],n(t,w),n,i,o,a,c,u,l,f,p,d))}else{v=v.concat(stringify(h[w],t+(l?"."+w:"["+w+"]"),n,i,o,a,c,u,l,f,p,d))}}return v};e.exports=function(e,t){var n=e;var a=t?r.assign({},t):{};if(a.encoder!==null&&a.encoder!==undefined&&typeof a.encoder!=="function"){throw new TypeError("Encoder has to be a function.")}var u=typeof a.delimiter==="undefined"?s.delimiter:a.delimiter;var l=typeof a.strictNullHandling==="boolean"?a.strictNullHandling:s.strictNullHandling;var f=typeof a.skipNulls==="boolean"?a.skipNulls:s.skipNulls;var p=typeof a.encode==="boolean"?a.encode:s.encode;var d=typeof a.encoder==="function"?a.encoder:s.encoder;var h=typeof a.sort==="function"?a.sort:null;var m=typeof a.allowDots==="undefined"?false:a.allowDots;var v=typeof a.serializeDate==="function"?a.serializeDate:s.serializeDate;var g=typeof a.encodeValuesOnly==="boolean"?a.encodeValuesOnly:s.encodeValuesOnly;if(typeof a.format==="undefined"){a.format=i["default"]}else if(!Object.prototype.hasOwnProperty.call(i.formatters,a.format)){throw new TypeError("Unknown format option provided.")}var y=i.formatters[a.format];var b;var w;if(typeof a.filter==="function"){w=a.filter;n=w("",n)}else if(Array.isArray(a.filter)){w=a.filter;b=w}var x=[];if(typeof n!=="object"||n===null){return""}var k;if(a.arrayFormat in o){k=a.arrayFormat}else if("indices"in a){k=a.indices?"indices":"repeat"}else{k="indices"}var j=o[k];if(!b){b=Object.keys(n)}if(h){b.sort(h)}for(var S=0;S<b.length;++S){var E=b[S];if(f&&n[E]===null){continue}x=x.concat(c(n[E],E,j,l,f,p?d:null,w,h,m,v,y,g))}var _=x.join(u);var C=a.addQueryPrefix===true?"?":"";return _.length>0?C+_:""}},9028:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(4316));const o=r(n(5246));t.default=`now ${o.default.version} node-${process.version} ${i.default.platform()} (${i.default.arch()})`},9034:function(e,t,n){"use strict";const r=n(5897);const i=n(2617);const o=n(7346).pathExists;function symlinkPaths(e,t,n){if(r.isAbsolute(e)){return i.lstat(e,t=>{if(t){t.message=t.message.replace("lstat","ensureSymlink");return n(t)}return n(null,{toCwd:e,toDst:e})})}else{const a=r.dirname(t);const s=r.join(a,e);return o(s,(t,o)=>{if(t)return n(t);if(o){return n(null,{toCwd:s,toDst:e})}else{return i.lstat(e,t=>{if(t){t.message=t.message.replace("lstat","ensureSymlink");return n(t)}return n(null,{toCwd:e,toDst:r.relative(a,e)})})}})}}function symlinkPathsSync(e,t){let n;if(r.isAbsolute(e)){n=i.existsSync(e);if(!n)throw new Error("absolute srcpath does not exist");return{toCwd:e,toDst:e}}else{const o=r.dirname(t);const a=r.join(o,e);n=i.existsSync(a);if(n){return{toCwd:a,toDst:e}}else{n=i.existsSync(e);if(!n)throw new Error("relative srcpath does not exist");return{toCwd:e,toDst:r.relative(o,e)}}}}e.exports={symlinkPaths:symlinkPaths,symlinkPathsSync:symlinkPathsSync}},9044:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(4170));function deploymentIsAliased(e,t){return r(this,void 0,void 0,function*(){const n=yield o.default(e);return n.some(e=>e.deploymentId===t.uid)})}t.default=deploymentIsAliased},9051:function(e){e.exports={$id:"header.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",required:["name","value"],properties:{name:{type:"string"},value:{type:"string"},comment:{type:"string"}}}},9052:function(e,t,n){"use strict";const r=n(5897);const i=n(2041);const o=n(8449);const a=n(6680);const s=n(6704);const c=n(4480);const u=n(8960);const l=n(9466);const f=n(6802);const p=n(4914);const d=n(2951);const h=1e3*1e3*10;function handleArgs(e,t,n){let i;n=Object.assign({extendEnv:true,env:{}},n);if(n.extendEnv){n.env=Object.assign({},process.env,n.env)}if(n.__winShell===true){delete n.__winShell;i={command:e,args:t,options:n,file:e,original:{cmd:e,args:t}}}else{i=o._parse(e,t,n)}n=Object.assign({maxBuffer:h,buffer:true,stripEof:true,preferLocal:true,localDir:i.options.cwd||process.cwd(),encoding:"utf8",reject:true,cleanup:true},i.options);n.stdio=d(n);if(n.preferLocal){n.env=s.env(Object.assign({},n,{cwd:n.localDir}))}if(n.detached){n.cleanup=false}if(process.platform==="win32"&&r.basename(i.command)==="cmd.exe"){i.args.unshift("/q")}return{cmd:i.command,args:i.args,opts:n,parsed:i}}function handleInput(e,t){if(t===null||t===undefined){return}if(c(t)){t.pipe(e.stdin)}else{e.stdin.end(t)}}function handleOutput(e,t){if(t&&e.stripEof){t=a(t)}return t}function handleShell(e,t,n){let r="/bin/sh";let i=["-c",t];n=Object.assign({},n);if(process.platform==="win32"){n.__winShell=true;r=process.env.comspec||"cmd.exe";i=["/s","/c",`"${t}"`];n.windowsVerbatimArguments=true}if(n.shell){r=n.shell;delete n.shell}return e(r,i,n)}function getStream(e,t,{encoding:n,buffer:r,maxBuffer:i}){if(!e[t]){return null}let o;if(!r){o=new Promise((n,r)=>{e[t].once("end",n).once("error",r)})}else if(n){o=u(e[t],{encoding:n,maxBuffer:i})}else{o=u.buffer(e[t],{maxBuffer:i})}return o.catch(e=>{e.stream=t;e.message=`${t} ${e.message}`;throw e})}function makeError(e,t){const{stdout:n,stderr:r}=e;let i=e.error;const{code:o,signal:a}=e;const{parsed:s,joinedCmd:c}=t;const u=t.timedOut||false;if(!i){let e="";if(Array.isArray(s.opts.stdio)){if(s.opts.stdio[2]!=="inherit"){e+=e.length>0?r:`\n${r}`}if(s.opts.stdio[1]!=="inherit"){e+=`\n${n}`}}else if(s.opts.stdio!=="inherit"){e=`\n${r}${n}`}i=new Error(`Command failed: ${c}${e}`);i.code=o<0?p(o):o}i.stdout=n;i.stderr=r;i.failed=true;i.signal=a||null;i.cmd=c;i.timedOut=u;return i}function joinCmd(e,t){let n=e;if(Array.isArray(t)&&t.length>0){n+=" "+t.join(" ")}return n}e.exports=((e,t,n)=>{const r=handleArgs(e,t,n);const{encoding:a,buffer:s,maxBuffer:c}=r.opts;const u=joinCmd(e,t);let p;try{p=i.spawn(r.cmd,r.args,r.opts)}catch(e){return Promise.reject(e)}let d;if(r.opts.cleanup){d=f(()=>{p.kill()})}let h=null;let m=false;const v=()=>{if(h){clearTimeout(h);h=null}if(d){d()}};if(r.opts.timeout>0){h=setTimeout(()=>{h=null;m=true;p.kill(r.opts.killSignal)},r.opts.timeout)}const g=new Promise(e=>{p.on("exit",(t,n)=>{v();e({code:t,signal:n})});p.on("error",t=>{v();e({error:t})});if(p.stdin){p.stdin.on("error",t=>{v();e({error:t})})}});function destroy(){if(p.stdout){p.stdout.destroy()}if(p.stderr){p.stderr.destroy()}}const y=()=>l(Promise.all([g,getStream(p,"stdout",{encoding:a,buffer:s,maxBuffer:c}),getStream(p,"stderr",{encoding:a,buffer:s,maxBuffer:c})]).then(e=>{const t=e[0];t.stdout=e[1];t.stderr=e[2];if(t.error||t.code!==0||t.signal!==null){const e=makeError(t,{joinedCmd:u,parsed:r,timedOut:m});e.killed=e.killed||p.killed;if(!r.opts.reject){return e}throw e}return{stdout:handleOutput(r.opts,t.stdout),stderr:handleOutput(r.opts,t.stderr),code:0,failed:false,killed:false,signal:null,cmd:u,timedOut:false}}),destroy);o._enoent.hookChildProcess(p,r.parsed);handleInput(p,r.opts.input);p.then=((e,t)=>y().then(e,t));p.catch=(e=>y().catch(e));return p});e.exports.stdout=((...t)=>e.exports(...t).then(e=>e.stdout));e.exports.stderr=((...t)=>e.exports(...t).then(e=>e.stderr));e.exports.shell=((t,n)=>handleShell(e.exports,t,n));e.exports.sync=((e,t,n)=>{const r=handleArgs(e,t,n);const o=joinCmd(e,t);if(c(r.opts.input)){throw new TypeError("The `input` option cannot be a stream in sync mode")}const a=i.spawnSync(r.cmd,r.args,r.opts);a.code=a.status;if(a.error||a.status!==0||a.signal!==null){const e=makeError(a,{joinedCmd:o,parsed:r});if(!r.opts.reject){return e}throw e}return{stdout:handleOutput(r.opts,a.stdout),stderr:handleOutput(r.opts,a.stderr),code:0,failed:false,signal:null,cmd:o,timedOut:false}});e.exports.shellSync=((t,n)=>handleShell(e.exports.sync,t,n))},9055:function(e,t,n){"use strict";var r=n(1939),i=n(8060),o=n(4219),a=n(2307),s=n(4859),c=n(3930),u=n(649),l=n(9335).Buffer;t.httpOverHttp=httpOverHttp;t.httpsOverHttp=httpsOverHttp;t.httpOverHttps=httpOverHttps;t.httpsOverHttps=httpsOverHttps;function httpOverHttp(e){var t=new TunnelingAgent(e);t.request=o.request;return t}function httpsOverHttp(e){var t=new TunnelingAgent(e);t.request=o.request;t.createSocket=createSecureSocket;t.defaultPort=443;return t}function httpOverHttps(e){var t=new TunnelingAgent(e);t.request=a.request;return t}function httpsOverHttps(e){var t=new TunnelingAgent(e);t.request=a.request;t.createSocket=createSecureSocket;t.defaultPort=443;return t}function TunnelingAgent(e){var t=this;t.options=e||{};t.proxyOptions=t.options.proxy||{};t.maxSockets=t.options.maxSockets||o.Agent.defaultMaxSockets;t.requests=[];t.sockets=[];t.on("free",function onFree(e,n,r){for(var i=0,o=t.requests.length;i<o;++i){var a=t.requests[i];if(a.host===n&&a.port===r){t.requests.splice(i,1);a.request.onSocket(e);return}}e.destroy();t.removeSocket(e)})}u.inherits(TunnelingAgent,s.EventEmitter);TunnelingAgent.prototype.addRequest=function addRequest(e,t){var n=this;if(typeof t==="string"){t={host:t,port:arguments[2],path:arguments[3]}}if(n.sockets.length>=this.maxSockets){n.requests.push({host:t.host,port:t.port,request:e});return}n.createConnection({host:t.host,port:t.port,request:e})};TunnelingAgent.prototype.createConnection=function createConnection(e){var t=this;t.createSocket(e,function(n){n.on("free",onFree);n.on("close",onCloseOrRemove);n.on("agentRemove",onCloseOrRemove);e.request.onSocket(n);function onFree(){t.emit("free",n,e.host,e.port)}function onCloseOrRemove(e){t.removeSocket(n);n.removeListener("free",onFree);n.removeListener("close",onCloseOrRemove);n.removeListener("agentRemove",onCloseOrRemove)}})};TunnelingAgent.prototype.createSocket=function createSocket(e,t){var n=this;var r={};n.sockets.push(r);var i=mergeOptions({},n.proxyOptions,{method:"CONNECT",path:e.host+":"+e.port,agent:false});if(i.proxyAuth){i.headers=i.headers||{};i.headers["Proxy-Authorization"]="Basic "+l.from(i.proxyAuth).toString("base64")}f("making CONNECT request");var o=n.request(i);o.useChunkedEncodingByDefault=false;o.once("response",onResponse);o.once("upgrade",onUpgrade);o.once("connect",onConnect);o.once("error",onError);o.end();function onResponse(e){e.upgrade=true}function onUpgrade(e,t,n){process.nextTick(function(){onConnect(e,t,n)})}function onConnect(i,a,s){o.removeAllListeners();a.removeAllListeners();if(i.statusCode===200){c.equal(s.length,0);f("tunneling connection has established");n.sockets[n.sockets.indexOf(r)]=a;t(a)}else{f("tunneling socket could not be established, statusCode=%d",i.statusCode);var u=new Error("tunneling socket could not be established, "+"statusCode="+i.statusCode);u.code="ECONNRESET";e.request.emit("error",u);n.removeSocket(r)}}function onError(t){o.removeAllListeners();f("tunneling socket could not be established, cause=%s\n",t.message,t.stack);var i=new Error("tunneling socket could not be established, "+"cause="+t.message);i.code="ECONNRESET";e.request.emit("error",i);n.removeSocket(r)}};TunnelingAgent.prototype.removeSocket=function removeSocket(e){var t=this.sockets.indexOf(e);if(t===-1)return;this.sockets.splice(t,1);var n=this.requests.shift();if(n){this.createConnection(n)}};function createSecureSocket(e,t){var n=this;TunnelingAgent.prototype.createSocket.call(n,e,function(r){var o=i.connect(0,mergeOptions({},n.options,{servername:e.host,socket:r}));n.sockets[n.sockets.indexOf(r)]=o;t(o)})}function mergeOptions(e){for(var t=1,n=arguments.length;t<n;++t){var r=arguments[t];if(typeof r==="object"){var i=Object.keys(r);for(var o=0,a=i.length;o<a;++o){var s=i[o];if(r[s]!==undefined){e[s]=r[s]}}}}return e}var f;if(process.env.NODE_DEBUG&&/\btunnel\b/.test(process.env.NODE_DEBUG)){f=function(){var e=Array.prototype.slice.call(arguments);if(typeof e[0]==="string"){e[0]="TUNNEL: "+e[0]}else{e.unshift("TUNNEL:")}console.error.apply(console,e)}}else{f=function(){}}t.debug=f},9059:function(e,t,n){"use strict";var r=n(1257);var i=n(4849);var o={nul:0,control:0};e.exports=function wcwidth(e){return wcswidth(e,o)};e.exports.config=function(e){e=r(e||{},o);return function wcwidth(t){return wcswidth(t,e)}};function wcswidth(e,t){if(typeof e!=="string")return wcwidth(e,t);var n=0;for(var r=0;r<e.length;r++){var i=wcwidth(e.charCodeAt(r),t);if(i<0)return-1;n+=i}return n}function wcwidth(e,t){if(e===0)return t.nul;if(e<32||e>=127&&e<160)return t.control;if(bisearch(e))return 0;return 1+(e>=4352&&(e<=4447||e==9001||e==9002||e>=11904&&e<=42191&&e!=12351||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65135||e>=65280&&e<=65376||e>=65504&&e<=65510||e>=131072&&e<=196605||e>=196608&&e<=262141))}function bisearch(e){var t=0;var n=i.length-1;var r;if(e<i[0][0]||e>i[n][1])return false;while(n>=t){r=Math.floor((t+n)/2);if(e>i[r][1])t=r+1;else if(e<i[r][0])n=r-1;else return true}return false}},9060:function(e,t,n){var r=n(662);var i=n(2673);var o=n(9139);var a=n(1177);var s=n(649);var c=n(4859).EventEmitter;var u=n(6886).Transform;var l=n(6886).PassThrough;var f=n(6886).Writable;t.open=open;t.fromFd=fromFd;t.fromBuffer=fromBuffer;t.fromRandomAccessReader=fromRandomAccessReader;t.dosDateTimeToDate=dosDateTimeToDate;t.validateFileName=validateFileName;t.ZipFile=ZipFile;t.Entry=Entry;t.RandomAccessReader=RandomAccessReader;function open(e,t,n){if(typeof t==="function"){n=t;t=null}if(t==null)t={};if(t.autoClose==null)t.autoClose=true;if(t.lazyEntries==null)t.lazyEntries=false;if(t.decodeStrings==null)t.decodeStrings=true;if(t.validateEntrySizes==null)t.validateEntrySizes=true;if(t.strictFileNames==null)t.strictFileNames=false;if(n==null)n=defaultCallback;r.open(e,"r",function(e,i){if(e)return n(e);fromFd(i,t,function(e,t){if(e)r.close(i,defaultCallback);n(e,t)})})}function fromFd(e,t,n){if(typeof t==="function"){n=t;t=null}if(t==null)t={};if(t.autoClose==null)t.autoClose=false;if(t.lazyEntries==null)t.lazyEntries=false;if(t.decodeStrings==null)t.decodeStrings=true;if(t.validateEntrySizes==null)t.validateEntrySizes=true;if(t.strictFileNames==null)t.strictFileNames=false;if(n==null)n=defaultCallback;r.fstat(e,function(r,i){if(r)return n(r);var a=o.createFromFd(e,{autoClose:true});fromRandomAccessReader(a,i.size,t,n)})}function fromBuffer(e,t,n){if(typeof t==="function"){n=t;t=null}if(t==null)t={};t.autoClose=false;if(t.lazyEntries==null)t.lazyEntries=false;if(t.decodeStrings==null)t.decodeStrings=true;if(t.validateEntrySizes==null)t.validateEntrySizes=true;if(t.strictFileNames==null)t.strictFileNames=false;var r=o.createFromBuffer(e,{maxChunkSize:65536});fromRandomAccessReader(r,e.length,t,n)}function fromRandomAccessReader(e,t,n,r){if(typeof n==="function"){r=n;n=null}if(n==null)n={};if(n.autoClose==null)n.autoClose=true;if(n.lazyEntries==null)n.lazyEntries=false;if(n.decodeStrings==null)n.decodeStrings=true;var i=!!n.decodeStrings;if(n.validateEntrySizes==null)n.validateEntrySizes=true;if(n.strictFileNames==null)n.strictFileNames=false;if(r==null)r=defaultCallback;if(typeof t!=="number")throw new Error("expected totalSize parameter to be a number");if(t>Number.MAX_SAFE_INTEGER){throw new Error("zip file too large. only file sizes up to 2^52 are supported due to JavaScript's Number type being an IEEE 754 double.")}e.ref();var o=22;var a=65535;var s=Math.min(o+a,t);var c=d(s);var u=t-c.length;readAndAssertNoEof(e,c,0,s,u,function(a){if(a)return r(a);for(var l=s-o;l>=0;l-=1){if(c.readUInt32LE(l)!==101010256)continue;var f=c.slice(l);var p=f.readUInt16LE(4);if(p!==0){return r(new Error("multi-disk zip files are not supported: found disk number: "+p))}var h=f.readUInt16LE(10);var m=f.readUInt32LE(16);var v=f.readUInt16LE(20);var g=f.length-o;if(v!==g){return r(new Error("invalid comment length. expected: "+g+". found: "+v))}var y=i?decodeBuffer(f,22,f.length,false):f.slice(22);if(!(h===65535||m===4294967295)){return r(null,new ZipFile(e,m,t,h,y,n.autoClose,n.lazyEntries,i,n.validateEntrySizes,n.strictFileNames))}var b=d(20);var w=u+l-b.length;readAndAssertNoEof(e,b,0,b.length,w,function(o){if(o)return r(o);if(b.readUInt32LE(0)!==117853008){return r(new Error("invalid zip64 end of central directory locator signature"))}var a=readUInt64LE(b,8);var s=d(56);readAndAssertNoEof(e,s,0,s.length,a,function(o){if(o)return r(o);if(s.readUInt32LE(0)!==101075792){return r(new Error("invalid zip64 end of central directory record signature"))}h=readUInt64LE(s,32);m=readUInt64LE(s,48);return r(null,new ZipFile(e,m,t,h,y,n.autoClose,n.lazyEntries,i,n.validateEntrySizes,n.strictFileNames))})});return}r(new Error("end of central directory record signature not found"))})}s.inherits(ZipFile,c);function ZipFile(e,t,n,r,i,o,a,s,u,l){var f=this;c.call(f);f.reader=e;f.reader.on("error",function(e){emitError(f,e)});f.reader.once("close",function(){f.emit("close")});f.readEntryCursor=t;f.fileSize=n;f.entryCount=r;f.comment=i;f.entriesRead=0;f.autoClose=!!o;f.lazyEntries=!!a;f.decodeStrings=!!s;f.validateEntrySizes=!!u;f.strictFileNames=!!l;f.isOpen=true;f.emittedError=false;if(!f.lazyEntries)f._readEntry()}ZipFile.prototype.close=function(){if(!this.isOpen)return;this.isOpen=false;this.reader.unref()};function emitErrorAndAutoClose(e,t){if(e.autoClose)e.close();emitError(e,t)}function emitError(e,t){if(e.emittedError)return;e.emittedError=true;e.emit("error",t)}ZipFile.prototype.readEntry=function(){if(!this.lazyEntries)throw new Error("readEntry() called without lazyEntries:true");this._readEntry()};ZipFile.prototype._readEntry=function(){var e=this;if(e.entryCount===e.entriesRead){setImmediate(function(){if(e.autoClose)e.close();if(e.emittedError)return;e.emit("end")});return}if(e.emittedError)return;var t=d(46);readAndAssertNoEof(e.reader,t,0,t.length,e.readEntryCursor,function(n){if(n)return emitErrorAndAutoClose(e,n);if(e.emittedError)return;var r=new Entry;var i=t.readUInt32LE(0);if(i!==33639248)return emitErrorAndAutoClose(e,new Error("invalid central directory file header signature: 0x"+i.toString(16)));r.versionMadeBy=t.readUInt16LE(4);r.versionNeededToExtract=t.readUInt16LE(6);r.generalPurposeBitFlag=t.readUInt16LE(8);r.compressionMethod=t.readUInt16LE(10);r.lastModFileTime=t.readUInt16LE(12);r.lastModFileDate=t.readUInt16LE(14);r.crc32=t.readUInt32LE(16);r.compressedSize=t.readUInt32LE(20);r.uncompressedSize=t.readUInt32LE(24);r.fileNameLength=t.readUInt16LE(28);r.extraFieldLength=t.readUInt16LE(30);r.fileCommentLength=t.readUInt16LE(32);r.internalFileAttributes=t.readUInt16LE(36);r.externalFileAttributes=t.readUInt32LE(38);r.relativeOffsetOfLocalHeader=t.readUInt32LE(42);if(r.generalPurposeBitFlag&64)return emitErrorAndAutoClose(e,new Error("strong encryption is not supported"));e.readEntryCursor+=46;t=d(r.fileNameLength+r.extraFieldLength+r.fileCommentLength);readAndAssertNoEof(e.reader,t,0,t.length,e.readEntryCursor,function(n){if(n)return emitErrorAndAutoClose(e,n);if(e.emittedError)return;var i=(r.generalPurposeBitFlag&2048)!==0;r.fileName=e.decodeStrings?decodeBuffer(t,0,r.fileNameLength,i):t.slice(0,r.fileNameLength);var o=r.fileNameLength+r.extraFieldLength;var s=t.slice(r.fileNameLength,o);r.extraFields=[];var c=0;while(c<s.length-3){var u=s.readUInt16LE(c+0);var l=s.readUInt16LE(c+2);var f=c+4;var p=f+l;if(p>s.length)return emitErrorAndAutoClose(e,new Error("extra field length exceeds extra field buffer size"));var h=d(l);s.copy(h,0,f,p);r.extraFields.push({id:u,data:h});c=p}r.fileComment=e.decodeStrings?decodeBuffer(t,o,o+r.fileCommentLength,i):t.slice(o,o+r.fileCommentLength);r.comment=r.fileComment;e.readEntryCursor+=t.length;e.entriesRead+=1;if(r.uncompressedSize===4294967295||r.compressedSize===4294967295||r.relativeOffsetOfLocalHeader===4294967295){var m=null;for(var c=0;c<r.extraFields.length;c++){var v=r.extraFields[c];if(v.id===1){m=v.data;break}}if(m==null){return emitErrorAndAutoClose(e,new Error("expected zip64 extended information extra field"))}var g=0;if(r.uncompressedSize===4294967295){if(g+8>m.length){return emitErrorAndAutoClose(e,new Error("zip64 extended information extra field does not include uncompressed size"))}r.uncompressedSize=readUInt64LE(m,g);g+=8}if(r.compressedSize===4294967295){if(g+8>m.length){return emitErrorAndAutoClose(e,new Error("zip64 extended information extra field does not include compressed size"))}r.compressedSize=readUInt64LE(m,g);g+=8}if(r.relativeOffsetOfLocalHeader===4294967295){if(g+8>m.length){return emitErrorAndAutoClose(e,new Error("zip64 extended information extra field does not include relative header offset"))}r.relativeOffsetOfLocalHeader=readUInt64LE(m,g);g+=8}}if(e.decodeStrings){for(var c=0;c<r.extraFields.length;c++){var v=r.extraFields[c];if(v.id===28789){if(v.data.length<6){continue}if(v.data.readUInt8(0)!==1){continue}var y=v.data.readUInt32LE(1);if(a.unsigned(t.slice(0,r.fileNameLength))!==y){continue}r.fileName=decodeBuffer(v.data,5,v.data.length,true);break}}}if(e.validateEntrySizes&&r.compressionMethod===0){var b=r.uncompressedSize;if(r.isEncrypted()){b+=12}if(r.compressedSize!==b){var w="compressed/uncompressed size mismatch for stored file: "+r.compressedSize+" != "+r.uncompressedSize;return emitErrorAndAutoClose(e,new Error(w))}}if(e.decodeStrings){if(!e.strictFileNames){r.fileName=r.fileName.replace(/\\/g,"/")}var x=validateFileName(r.fileName,e.validateFileNameOptions);if(x!=null)return emitErrorAndAutoClose(e,new Error(x))}e.emit("entry",r);if(!e.lazyEntries)e._readEntry()})})};ZipFile.prototype.openReadStream=function(e,t,n){var r=this;var o=0;var a=e.compressedSize;if(n==null){n=t;t={}}else{if(t.decrypt!=null){if(!e.isEncrypted()){throw new Error("options.decrypt can only be specified for encrypted entries")}if(t.decrypt!==false)throw new Error("invalid options.decrypt value: "+t.decrypt);if(e.isCompressed()){if(t.decompress!==false)throw new Error("entry is encrypted and compressed, and options.decompress !== false")}}if(t.decompress!=null){if(!e.isCompressed()){throw new Error("options.decompress can only be specified for compressed entries")}if(!(t.decompress===false||t.decompress===true)){throw new Error("invalid options.decompress value: "+t.decompress)}}if(t.start!=null||t.end!=null){if(e.isCompressed()&&t.decompress!==false){throw new Error("start/end range not allowed for compressed entry without options.decompress === false")}if(e.isEncrypted()&&t.decrypt!==false){throw new Error("start/end range not allowed for encrypted entry without options.decrypt === false")}}if(t.start!=null){o=t.start;if(o<0)throw new Error("options.start < 0");if(o>e.compressedSize)throw new Error("options.start > entry.compressedSize")}if(t.end!=null){a=t.end;if(a<0)throw new Error("options.end < 0");if(a>e.compressedSize)throw new Error("options.end > entry.compressedSize");if(a<o)throw new Error("options.end < options.start")}}if(!r.isOpen)return n(new Error("closed"));if(e.isEncrypted()){if(t.decrypt!==false)return n(new Error("entry is encrypted, and options.decrypt !== false"))}r.reader.ref();var s=d(30);readAndAssertNoEof(r.reader,s,0,s.length,e.relativeOffsetOfLocalHeader,function(c){try{if(c)return n(c);var u=s.readUInt32LE(0);if(u!==67324752){return n(new Error("invalid local file header signature: 0x"+u.toString(16)))}var l=s.readUInt16LE(26);var f=s.readUInt16LE(28);var p=e.relativeOffsetOfLocalHeader+s.length+l+f;var d;if(e.compressionMethod===0){d=false}else if(e.compressionMethod===8){d=t.decompress!=null?t.decompress:true}else{return n(new Error("unsupported compression method: "+e.compressionMethod))}var h=p;var m=h+e.compressedSize;if(e.compressedSize!==0){if(m>r.fileSize){return n(new Error("file data overflows file bounds: "+h+" + "+e.compressedSize+" > "+r.fileSize))}}var v=r.reader.createReadStream({start:h+o,end:h+a});var g=v;if(d){var y=false;var b=i.createInflateRaw();v.on("error",function(e){setImmediate(function(){if(!y)b.emit("error",e)})});v.pipe(b);if(r.validateEntrySizes){g=new AssertByteCountStream(e.uncompressedSize);b.on("error",function(e){setImmediate(function(){if(!y)g.emit("error",e)})});b.pipe(g)}else{g=b}g.destroy=function(){y=true;if(b!==g)b.unpipe(g);v.unpipe(b);v.destroy()}}n(null,g)}finally{r.reader.unref()}})};function Entry(){}Entry.prototype.getLastModDate=function(){return dosDateTimeToDate(this.lastModFileDate,this.lastModFileTime)};Entry.prototype.isEncrypted=function(){return(this.generalPurposeBitFlag&1)!==0};Entry.prototype.isCompressed=function(){return this.compressionMethod===8};function dosDateTimeToDate(e,t){var n=e&31;var r=(e>>5&15)-1;var i=(e>>9&127)+1980;var o=0;var a=(t&31)*2;var s=t>>5&63;var c=t>>11&31;return new Date(i,r,n,c,s,a,o)}function validateFileName(e){if(e.indexOf("\\")!==-1){return"invalid characters in fileName: "+e}if(/^[a-zA-Z]:/.test(e)||/^\//.test(e)){return"absolute path: "+e}if(e.split("/").indexOf("..")!==-1){return"invalid relative path: "+e}return null}function readAndAssertNoEof(e,t,n,r,i,o){if(r===0){return setImmediate(function(){o(null,d(0))})}e.read(t,n,r,i,function(e,t){if(e)return o(e);if(t<r){return o(new Error("unexpected EOF"))}o()})}s.inherits(AssertByteCountStream,u);function AssertByteCountStream(e){u.call(this);this.actualByteCount=0;this.expectedByteCount=e}AssertByteCountStream.prototype._transform=function(e,t,n){this.actualByteCount+=e.length;if(this.actualByteCount>this.expectedByteCount){var r="too many bytes in the stream. expected "+this.expectedByteCount+". got at least "+this.actualByteCount;return n(new Error(r))}n(null,e)};AssertByteCountStream.prototype._flush=function(e){if(this.actualByteCount<this.expectedByteCount){var t="not enough bytes in the stream. expected "+this.expectedByteCount+". got only "+this.actualByteCount;return e(new Error(t))}e()};s.inherits(RandomAccessReader,c);function RandomAccessReader(){c.call(this);this.refCount=0}RandomAccessReader.prototype.ref=function(){this.refCount+=1};RandomAccessReader.prototype.unref=function(){var e=this;e.refCount-=1;if(e.refCount>0)return;if(e.refCount<0)throw new Error("invalid unref");e.close(onCloseDone);function onCloseDone(t){if(t)return e.emit("error",t);e.emit("close")}};RandomAccessReader.prototype.createReadStream=function(e){var t=e.start;var n=e.end;if(t===n){var r=new l;setImmediate(function(){r.end()});return r}var i=this._readStreamForRange(t,n);var o=false;var a=new RefUnrefFilter(this);i.on("error",function(e){setImmediate(function(){if(!o)a.emit("error",e)})});a.destroy=function(){i.unpipe(a);a.unref();i.destroy()};var s=new AssertByteCountStream(n-t);a.on("error",function(e){setImmediate(function(){if(!o)s.emit("error",e)})});s.destroy=function(){o=true;a.unpipe(s);a.destroy()};return i.pipe(a).pipe(s)};RandomAccessReader.prototype._readStreamForRange=function(e,t){throw new Error("not implemented")};RandomAccessReader.prototype.read=function(e,t,n,r,i){var o=this.createReadStream({start:r,end:r+n});var a=new f;var s=0;a._write=function(n,r,i){n.copy(e,t+s,0,n.length);s+=n.length;i()};a.on("finish",i);o.on("error",function(e){i(e)});o.pipe(a)};RandomAccessReader.prototype.close=function(e){setImmediate(e)};s.inherits(RefUnrefFilter,l);function RefUnrefFilter(e){l.call(this);this.context=e;this.context.ref();this.unreffedYet=false}RefUnrefFilter.prototype._flush=function(e){this.unref();e()};RefUnrefFilter.prototype.unref=function(e){if(this.unreffedYet)return;this.unreffedYet=true;this.context.unref()};var p="\0☺☻♥♦♣♠•◘○◙♂♀♪♫☼►◄↕‼¶§▬↨↑↓→←∟↔▲▼ !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~⌂ÇüéâäàåçêëèïîìÄÅÉæÆôöòûùÿÖÜ¢£¥₧ƒáíóúñѪº¿⌐¬½¼¡«»░▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµτΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙·√ⁿ²■ ";function decodeBuffer(e,t,n,r){if(r){return e.toString("utf8",t,n)}else{var i="";for(var o=t;o<n;o++){i+=p[e[o]]}return i}}function readUInt64LE(e,t){var n=e.readUInt32LE(t);var r=e.readUInt32LE(t+4);return r*4294967296+n}var d;if(typeof Buffer.allocUnsafe==="function"){d=function(e){return Buffer.allocUnsafe(e)}}else{d=function(e){return new Buffer(e)}}function defaultCallback(e){if(e)throw e}},9063:function(e,t,n){"use strict";const r=n(774);const i=n(2307);const o="__agent_base_https_request_patched__";if(!i.request[o]){i.request=function(e){return function(t,n){let o;if(typeof t==="string"){o=r.parse(t)}else{o=Object.assign({},t)}if(null==o.port){o.port=443}o.secureEndpoint=true;return e.call(i,o,n)}}(i.request);i.request[o]=true}i.get=function(e,t,n){let o;if(typeof e==="string"&&t&&typeof t!=="function"){o=Object.assign({},r.parse(e),t)}else if(!t&&!n){o=e}else if(!n){o=e;n=t}const a=i.request(o,n);a.end();return a}},9097:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(5897);const o=n(2617);const a=n(1908);const s=n(8975).pathExists;function createLink(e,t,n){function makeLink(e,t){o.link(e,t,e=>{if(e)return n(e);n(null)})}s(t,(r,c)=>{if(r)return n(r);if(c)return n(null);o.lstat(e,r=>{if(r){r.message=r.message.replace("lstat","ensureLink");return n(r)}const o=i.dirname(t);s(o,(r,i)=>{if(r)return n(r);if(i)return makeLink(e,t);a.mkdirs(o,r=>{if(r)return n(r);makeLink(e,t)})})})})}function createLinkSync(e,t){const n=o.existsSync(t);if(n)return undefined;try{o.lstatSync(e)}catch(e){e.message=e.message.replace("lstat","ensureLink");throw e}const r=i.dirname(t);const s=o.existsSync(r);if(s)return o.linkSync(e,t);a.mkdirsSync(r);return o.linkSync(e,t)}e.exports={createLink:r(createLink),createLinkSync:createLinkSync}},9105:function(e,t,n){"use strict";var r=new RegExp("^(?:@([^/]+?)[/])?([^/]+?)$");var i=n(776);var o=["node_modules","favicon.ico"];var a=e.exports=function(e){var t=[];var n=[];if(e===null){n.push("name cannot be null");return s(t,n)}if(e===undefined){n.push("name cannot be undefined");return s(t,n)}if(typeof e!=="string"){n.push("name must be a string");return s(t,n)}if(!e.length){n.push("name length must be greater than zero")}if(e.match(/^\./)){n.push("name cannot start with a period")}if(e.match(/^_/)){n.push("name cannot start with an underscore")}if(e.trim()!==e){n.push("name cannot contain leading or trailing spaces")}o.forEach(function(t){if(e.toLowerCase()===t){n.push(t+" is a blacklisted name")}});i.forEach(function(n){if(e.toLowerCase()===n){t.push(n+" is a core module name")}});if(e.length>214){t.push("name can no longer contain more than 214 characters")}if(e.toLowerCase()!==e){t.push("name can no longer contain capital letters")}if(/[~'!()*]/.test(e.split("/").slice(-1)[0])){t.push('name can no longer contain special characters ("~\'!()*")')}if(encodeURIComponent(e)!==e){var a=e.match(r);if(a){var c=a[1];var u=a[2];if(encodeURIComponent(c)===c&&encodeURIComponent(u)===u){return s(t,n)}}n.push("name can only contain URL-friendly characters")}return s(t,n)};a.scopedPackagePattern=r;var s=function(e,t){var n={validForNewPackages:t.length===0&&e.length===0,validForOldPackages:t.length===0,warnings:e,errors:t};if(!n.warnings.length)delete n.warnings;if(!n.errors.length)delete n.errors;return n}},9112:function(e){e.exports=defer;function defer(e){var t=typeof setImmediate=="function"?setImmediate:typeof process=="object"&&typeof process.nextTick=="function"?process.nextTick:null;if(t){t(e)}else{setTimeout(e,0)}}},9115:function(e){"use strict";e.exports=function required(e,t){t=t.split(":")[0];e=+e;if(!e)return false;switch(t){case"http":case"ws":return e!==80;case"https":case"wss":return e!==443;case"ftp":return e!==21;case"gopher":return e!==70;case"file":return false}return e!==0}},9128:function(e,t,n){"use strict";var r=n(774);var i=n(6661);var o=e.exports=n(9353);var a={"git+ssh:":"sshurl","git+https:":"https","ssh:":"sshurl","git:":"git"};function protocolToRepresentation(e){return a[e]||e.slice(0,-1)}var s={"git:":true,"https:":true,"git+https:":true,"http:":true,"git+http:":true};var c={};e.exports.fromUrl=function(e,t){if(typeof e!=="string")return;var n=e+JSON.stringify(t||{});if(!(n in c)){c[n]=fromUrl(e,t)}return c[n]};function fromUrl(e,t){if(e==null||e==="")return;var n=fixupUnqualifiedGist(isGitHubShorthand(e)?"github:"+e:e);var r=parseGitUrl(n);var a=n.match(new RegExp("^([^:]+):(?:(?:[^@:]+(?:[^@]+)?@)?([^/]*))[/](.+?)(?:[.]git)?($|#)"));var c=Object.keys(i).map(function(e){try{var n=i[e];var c=null;if(r.auth&&s[r.protocol]){c=decodeURIComponent(r.auth)}var u=r.hash?decodeURIComponent(r.hash.substr(1)):null;var l=null;var f=null;var p=null;if(a&&a[1]===e){l=a[2]&&decodeURIComponent(a[2]);f=decodeURIComponent(a[3]);p="shortcut"}else{if(r.host&&r.host!==n.domain&&r.host.replace(/^www[.]/,"")!==n.domain)return;if(!n.protocols_re.test(r.protocol))return;if(!r.path)return;var d=n.pathmatch;var h=r.path.match(d);if(!h)return;if(h[1]!==null&&h[1]!==undefined){l=decodeURIComponent(h[1].replace(/^:/,""))}f=decodeURIComponent(h[2]);p=protocolToRepresentation(r.protocol)}return new o(e,l,c,f,u,p,t)}catch(e){if(e instanceof URIError){}else throw e}}).filter(function(e){return e});if(c.length!==1)return;return c[0]}function isGitHubShorthand(e){return/^[^:@%\/\s.-][^:@%\/\s]*[\/][^:@\s\/%]+(?:#.*)?$/.test(e)}function fixupUnqualifiedGist(e){var t=r.parse(e);if(t.protocol==="gist:"&&t.host&&!t.path){return t.protocol+"/"+t.host}else{return e}}function parseGitUrl(e){var t=e.match(/^([^@]+)@([^:\/]+):[\/]?((?:[^\/]+[\/])?[^\/]+?)(?:[.]git)?(#.*)?$/);if(!t)return r.parse(e);return{protocol:"git+ssh:",slashes:true,auth:t[1],host:t[2],port:null,hostname:t[2],hash:t[4],search:null,query:null,pathname:"/"+t[3],path:"/"+t[3],href:"git+ssh://"+t[1]+"@"+t[2]+"/"+t[3]+(t[4]||"")}}},9137:function(e,t,n){"use strict";e.exports=function(e,t,r,i,o){var a=n(4730);var s=a.tryCatch;e.method=function(n){if(typeof n!=="function"){throw new e.TypeError("expecting a function but got "+a.classString(n))}return function(){var r=new e(t);r._captureStackTrace();r._pushContext();var i=s(n).apply(this,arguments);var a=r._popContext();o.checkForgottenReturns(i,a,"Promise.method",r);r._resolveFromSyncValue(i);return r}};e.attempt=e["try"]=function(n){if(typeof n!=="function"){return i("expecting a function but got "+a.classString(n))}var r=new e(t);r._captureStackTrace();r._pushContext();var c;if(arguments.length>1){o.deprecated("calling Promise.try with more than 1 argument");var u=arguments[1];var l=arguments[2];c=a.isArray(u)?s(n).apply(l,u):s(n).call(l,u)}else{c=s(n)()}var f=r._popContext();o.checkForgottenReturns(c,f,"Promise.try",r);r._resolveFromSyncValue(c);return r};e.prototype._resolveFromSyncValue=function(e){if(e===a.errorObj){this._rejectCallback(e.e,false)}else{this._resolveCallback(e,true)}}}},9139:function(e,t,n){var r=n(662);var i=n(649);var o=n(6886);var a=o.Readable;var s=o.Writable;var c=o.PassThrough;var u=n(6300);var l=n(4859).EventEmitter;t.createFromBuffer=createFromBuffer;t.createFromFd=createFromFd;t.BufferSlicer=BufferSlicer;t.FdSlicer=FdSlicer;i.inherits(FdSlicer,l);function FdSlicer(e,t){t=t||{};l.call(this);this.fd=e;this.pend=new u;this.pend.max=1;this.refCount=0;this.autoClose=!!t.autoClose}FdSlicer.prototype.read=function(e,t,n,i,o){var a=this;a.pend.go(function(s){r.read(a.fd,e,t,n,i,function(e,t,n){s();o(e,t,n)})})};FdSlicer.prototype.write=function(e,t,n,i,o){var a=this;a.pend.go(function(s){r.write(a.fd,e,t,n,i,function(e,t,n){s();o(e,t,n)})})};FdSlicer.prototype.createReadStream=function(e){return new ReadStream(this,e)};FdSlicer.prototype.createWriteStream=function(e){return new WriteStream(this,e)};FdSlicer.prototype.ref=function(){this.refCount+=1};FdSlicer.prototype.unref=function(){var e=this;e.refCount-=1;if(e.refCount>0)return;if(e.refCount<0)throw new Error("invalid unref");if(e.autoClose){r.close(e.fd,onCloseDone)}function onCloseDone(t){if(t){e.emit("error",t)}else{e.emit("close")}}};i.inherits(ReadStream,a);function ReadStream(e,t){t=t||{};a.call(this,t);this.context=e;this.context.ref();this.start=t.start||0;this.endOffset=t.end;this.pos=this.start;this.destroyed=false}ReadStream.prototype._read=function(e){var t=this;if(t.destroyed)return;var n=Math.min(t._readableState.highWaterMark,e);if(t.endOffset!=null){n=Math.min(n,t.endOffset-t.pos)}if(n<=0){t.destroyed=true;t.push(null);t.context.unref();return}t.context.pend.go(function(e){if(t.destroyed)return e();var i=new Buffer(n);r.read(t.context.fd,i,0,n,t.pos,function(n,r){if(n){t.destroy(n)}else if(r===0){t.destroyed=true;t.push(null);t.context.unref()}else{t.pos+=r;t.push(i.slice(0,r))}e()})})};ReadStream.prototype.destroy=function(e){if(this.destroyed)return;e=e||new Error("stream destroyed");this.destroyed=true;this.emit("error",e);this.context.unref()};i.inherits(WriteStream,s);function WriteStream(e,t){t=t||{};s.call(this,t);this.context=e;this.context.ref();this.start=t.start||0;this.endOffset=t.end==null?Infinity:+t.end;this.bytesWritten=0;this.pos=this.start;this.destroyed=false;this.on("finish",this.destroy.bind(this))}WriteStream.prototype._write=function(e,t,n){var i=this;if(i.destroyed)return;if(i.pos+e.length>i.endOffset){var o=new Error("maximum file length exceeded");o.code="ETOOBIG";i.destroy();n(o);return}i.context.pend.go(function(t){if(i.destroyed)return t();r.write(i.context.fd,e,0,e.length,i.pos,function(e,r){if(e){i.destroy();t();n(e)}else{i.bytesWritten+=r;i.pos+=r;i.emit("progress");t();n()}})})};WriteStream.prototype.destroy=function(){if(this.destroyed)return;this.destroyed=true;this.context.unref()};i.inherits(BufferSlicer,l);function BufferSlicer(e,t){l.call(this);t=t||{};this.refCount=0;this.buffer=e;this.maxChunkSize=t.maxChunkSize||Number.MAX_SAFE_INTEGER}BufferSlicer.prototype.read=function(e,t,n,r,i){var o=r+n;var a=o-this.buffer.length;var s=a>0?a:n;this.buffer.copy(e,t,r,o);setImmediate(function(){i(null,s)})};BufferSlicer.prototype.write=function(e,t,n,r,i){e.copy(this.buffer,r,t,t+n);setImmediate(function(){i(null,n,e)})};BufferSlicer.prototype.createReadStream=function(e){e=e||{};var t=new c(e);t.destroyed=false;t.start=e.start||0;t.endOffset=e.end;t.pos=t.endOffset||this.buffer.length;var n=this.buffer.slice(t.start,t.pos);var r=0;while(true){var i=r+this.maxChunkSize;if(i>=n.length){if(r<n.length){t.write(n.slice(r,n.length))}break}t.write(n.slice(r,i));r=i}t.end();t.destroy=function(){t.destroyed=true};return t};BufferSlicer.prototype.createWriteStream=function(e){var t=this;e=e||{};var n=new s(e);n.start=e.start||0;n.endOffset=e.end==null?this.buffer.length:+e.end;n.bytesWritten=0;n.pos=n.start;n.destroyed=false;n._write=function(e,r,i){if(n.destroyed)return;var o=n.pos+e.length;if(o>n.endOffset){var a=new Error("maximum file length exceeded");a.code="ETOOBIG";n.destroyed=true;i(a);return}e.copy(t.buffer,n.pos,0,e.length);n.bytesWritten+=e.length;n.pos=o;n.emit("progress");i()};n.destroy=function(){n.destroyed=true};return n};BufferSlicer.prototype.ref=function(){this.refCount+=1};BufferSlicer.prototype.unref=function(){this.refCount-=1;if(this.refCount<0){throw new Error("invalid unref")}};function createFromBuffer(e,t){return new BufferSlicer(e,t)}function createFromFd(e,t){return new FdSlicer(e,t)}},9146:function(e,t,n){"use strict";e.exports={copySync:n(7020)}},9159:function(e,t,n){"use strict";const r=n(6485);let i=false;t.show=(e=>{const t=e||process.stderr;if(!t.isTTY){return}i=false;t.write("[?25h")});t.hide=(e=>{const t=e||process.stderr;if(!t.isTTY){return}r();i=true;t.write("[?25l")});t.toggle=((e,n)=>{if(e!==undefined){i=e}if(i){t.show(n)}else{t.hide(n)}})},9160:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function once(e,t){return new Promise((n,r)=>{function cleanup(){e.removeListener(t,onEvent);e.removeListener("error",onError)}function onEvent(e){cleanup();n(e)}function onError(e){cleanup();r(e)}e.on(t,onEvent);e.on("error",onError)})}t.once=once},9174:function(e,t,n){"use strict";var r=n(8888);e.exports=function(e,t){if(!r(e)){throw new TypeError("Expected a plain object")}t=t||{};if(typeof t==="function"){t={compare:t}}var n=t.deep;var i=[];var o=[];var a=function(e){var s=i.indexOf(e);if(s!==-1){return o[s]}var c={};var u=Object.keys(e).sort(t.compare);i.push(e);o.push(c);for(var l=0;l<u.length;l++){var f=u[l];var p=e[f];c[f]=n&&r(p)?a(p):p}return c};return a(e)}},9175:function(e,t){function getArg(e,t,n){if(t in e){return e[t]}else if(arguments.length===3){return n}else{throw new Error('"'+t+'" is a required argument.')}}t.getArg=getArg;var n=/^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.]*)(?::(\d+))?(\S*)$/;var r=/^data:.+\,.+$/;function urlParse(e){var t=e.match(n);if(!t){return null}return{scheme:t[1],auth:t[2],host:t[3],port:t[4],path:t[5]}}t.urlParse=urlParse;function urlGenerate(e){var t="";if(e.scheme){t+=e.scheme+":"}t+="//";if(e.auth){t+=e.auth+"@"}if(e.host){t+=e.host}if(e.port){t+=":"+e.port}if(e.path){t+=e.path}return t}t.urlGenerate=urlGenerate;function normalize(e){var n=e;var r=urlParse(e);if(r){if(!r.path){return e}n=r.path}var i=t.isAbsolute(n);var o=n.split(/\/+/);for(var a,s=0,c=o.length-1;c>=0;c--){a=o[c];if(a==="."){o.splice(c,1)}else if(a===".."){s++}else if(s>0){if(a===""){o.splice(c+1,s);s=0}else{o.splice(c,2);s--}}}n=o.join("/");if(n===""){n=i?"/":"."}if(r){r.path=n;return urlGenerate(r)}return n}t.normalize=normalize;function join(e,t){if(e===""){e="."}if(t===""){t="."}var n=urlParse(t);var i=urlParse(e);if(i){e=i.path||"/"}if(n&&!n.scheme){if(i){n.scheme=i.scheme}return urlGenerate(n)}if(n||t.match(r)){return t}if(i&&!i.host&&!i.path){i.host=t;return urlGenerate(i)}var o=t.charAt(0)==="/"?t:normalize(e.replace(/\/+$/,"")+"/"+t);if(i){i.path=o;return urlGenerate(i)}return o}t.join=join;t.isAbsolute=function(e){return e.charAt(0)==="/"||!!e.match(n)};function relative(e,t){if(e===""){e="."}e=e.replace(/\/$/,"");var n=0;while(t.indexOf(e+"/")!==0){var r=e.lastIndexOf("/");if(r<0){return t}e=e.slice(0,r);if(e.match(/^([^\/]+:\/)?\/*$/)){return t}++n}return Array(n+1).join("../")+t.substr(e.length+1)}t.relative=relative;var i=function(){var e=Object.create(null);return!("__proto__"in e)}();function identity(e){return e}function toSetString(e){if(isProtoString(e)){return"$"+e}return e}t.toSetString=i?identity:toSetString;function fromSetString(e){if(isProtoString(e)){return e.slice(1)}return e}t.fromSetString=i?identity:fromSetString;function isProtoString(e){if(!e){return false}var t=e.length;if(t<9){return false}if(e.charCodeAt(t-1)!==95||e.charCodeAt(t-2)!==95||e.charCodeAt(t-3)!==111||e.charCodeAt(t-4)!==116||e.charCodeAt(t-5)!==111||e.charCodeAt(t-6)!==114||e.charCodeAt(t-7)!==112||e.charCodeAt(t-8)!==95||e.charCodeAt(t-9)!==95){return false}for(var n=t-10;n>=0;n--){if(e.charCodeAt(n)!==36){return false}}return true}function compareByOriginalPositions(e,t,n){var r=e.source-t.source;if(r!==0){return r}r=e.originalLine-t.originalLine;if(r!==0){return r}r=e.originalColumn-t.originalColumn;if(r!==0||n){return r}r=e.generatedColumn-t.generatedColumn;if(r!==0){return r}r=e.generatedLine-t.generatedLine;if(r!==0){return r}return e.name-t.name}t.compareByOriginalPositions=compareByOriginalPositions;function compareByGeneratedPositionsDeflated(e,t,n){var r=e.generatedLine-t.generatedLine;if(r!==0){return r}r=e.generatedColumn-t.generatedColumn;if(r!==0||n){return r}r=e.source-t.source;if(r!==0){return r}r=e.originalLine-t.originalLine;if(r!==0){return r}r=e.originalColumn-t.originalColumn;if(r!==0){return r}return e.name-t.name}t.compareByGeneratedPositionsDeflated=compareByGeneratedPositionsDeflated;function strcmp(e,t){if(e===t){return 0}if(e>t){return 1}return-1}function compareByGeneratedPositionsInflated(e,t){var n=e.generatedLine-t.generatedLine;if(n!==0){return n}n=e.generatedColumn-t.generatedColumn;if(n!==0){return n}n=strcmp(e.source,t.source);if(n!==0){return n}n=e.originalLine-t.originalLine;if(n!==0){return n}n=e.originalColumn-t.originalColumn;if(n!==0){return n}return strcmp(e.name,t.name)}t.compareByGeneratedPositionsInflated=compareByGeneratedPositionsInflated},9177:function(e,t,n){"use strict";var r=n(7409);e.exports=r.extend({path:"subscription_items",includeBasic:["create","list","retrieve","update","del"]})},9178:function(e,t,n){var r=n(9423);var i=r.Buffer;function copyProps(e,t){for(var n in e){t[n]=e[n]}}if(i.from&&i.alloc&&i.allocUnsafe&&i.allocUnsafeSlow){e.exports=r}else{copyProps(r,t);t.Buffer=SafeBuffer}function SafeBuffer(e,t,n){return i(e,t,n)}copyProps(i,SafeBuffer);SafeBuffer.from=function(e,t,n){if(typeof e==="number"){throw new TypeError("Argument must not be a number")}return i(e,t,n)};SafeBuffer.alloc=function(e,t,n){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}var r=i(e);if(t!==undefined){if(typeof n==="string"){r.fill(t,n)}else{r.fill(t)}}else{r.fill(0)}return r};SafeBuffer.allocUnsafe=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return i(e)};SafeBuffer.allocUnsafeSlow=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return r.SlowBuffer(e)}},9195:function(e,t,n){var r=n(649);var i=n(9544);var o=n(1518);var a=n(1471);var s=n(7063);var c=n(5091);e.exports=Prompt;function Prompt(){return a.apply(this,arguments)}r.inherits(Prompt,a);Prompt.prototype._run=function(e){this.done=e;this.editorResult=new c.Subject;var t=s(this.rl);this.lineSubscription=t.line.forEach(this.startExternalEditor.bind(this));var n=this.handleSubmitEvents(this.editorResult);n.success.forEach(this.onEnd.bind(this));n.error.forEach(this.onError.bind(this));this.currentText=this.opt.default;this.opt.default=null;this.render();return this};Prompt.prototype.render=function(e){var t="";var n=this.getQuestion();if(this.status==="answered"){n+=i.dim("Received")}else{n+=i.dim("Press <enter> to launch your preferred editor.")}if(e){t=i.red(">> ")+e}this.screen.render(n,t)};Prompt.prototype.startExternalEditor=function(){this.rl.pause();o.editAsync(this.currentText,this.endExternalEditor.bind(this))};Prompt.prototype.endExternalEditor=function(e,t){this.rl.resume();if(e){this.editorResult.onError(e)}else{this.editorResult.onNext(t)}};Prompt.prototype.onEnd=function(e){this.editorResult.dispose();this.lineSubscription.dispose();this.answer=e.value;this.status="answered";this.render();this.screen.done();this.done(this.answer)};Prompt.prototype.onError=function(e){this.render(e.isValid)}},9199:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const o=r(n(2229));const a=n(6725);const s=r(n(9544));const c=i(n(8715));const u=r(n(1776));function handleCertError(e,t){if(t instanceof c.TooManyRequests){e.error(`Too many requests detected for ${t.meta.api} API. Try again in ${o.default(t.meta.retryAfter*1e3,{long:true})}.`);return 1}if(t instanceof c.CertError){e.error(t.message);if(t.meta.helpUrl){e.print(` Read more: ${t.meta.helpUrl}\n`)}return 1}if(t instanceof c.DomainNotFound){e.error(t.message);return 1}if(t instanceof c.CertConfigurationError){const{external:n,cns:r}=t.meta;e.error(`We couldn't verify the propagation of the DNS settings for ${t.meta.cns.map(e=>s.default.underline(e)).join(", ")}`);if(n){e.print(` The propagation may take a few minutes, but please verify your settings:\n\n`);e.print(`${u.default(r.map(e=>{const t=a.parse(e);return!t.error&&t.subdomain?[t.subdomain,"ALIAS","alias.zeit.co"]:["","ALIAS","alias.zeit.co"]}))}\n\n`);e.log(`Alternatively, you can issue a certificate solving DNS challenges manually after running:`);e.print(` ${s.default.cyan(`now certs issue --challenge-only <cns>`)}\n`);e.print(" Read more: https://err.sh/now/dns-configuration-error\n")}else{e.print(` We configured them for you, but the propagation may take a few minutes. Please try again later.\n`);e.print(" Read more: https://err.sh/now/dns-configuration-error\n\n")}return 1}return t}t.default=handleCertError},9204:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};var o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(8715));const s=o(n(6879));const c=o(n(8950));function createAlias(e,t,n,i,o,u){return r(this,void 0,void 0,function*(){let r=c.default(`Creating alias`);const l=yield performCreateAlias(t,n,i,o);r();if(l instanceof a.CertMissing){const r=yield s.default(e,t,n,o,!u);if(r instanceof Error){return r}let a=c.default(`Creating alias`);const l=yield performCreateAlias(t,n,i,o);a();return l}return l})}t.default=createAlias;function performCreateAlias(e,t,n,i){return r(this,void 0,void 0,function*(){try{return yield e.fetch(`/now/deployments/${n.uid}/aliases`,{method:"POST",body:{alias:i}})}catch(e){if(e.code==="cert_missing"||e.code==="cert_expired"){return new a.CertMissing(i)}if(e.status===409){return{uid:e.uid,alias:e.alias}}if(e.code==="deployment_not_found"){return new a.DeploymentNotFound({context:t,id:n.uid})}if(e.code==="gone"){return new a.DeploymentFailedAliasImpossible}if(e.code==="invalid_alias"){return new a.InvalidAlias(i)}if(e.status===403){if(e.code==="alias_in_use"){return new a.AliasInUse(i)}if(e.code==="forbidden"){return new a.DomainPermissionDenied(i,t)}}if(e.status===400){return new a.DeploymentNotReady({url:n.url})}throw e}})}},9208:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(4170));function getDomainAliases(e,t){return r(this,void 0,void 0,function*(){const n=yield o.default(e);return n.filter(e=>e.alias.endsWith(t))})}t.default=getDomainAliases},9211:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9544));const a=i(n(8950));function startCertOrder(e,t,n){return r(this,void 0,void 0,function*(){const r=a.default(`Starting certificate issuance for ${o.default.bold(t.join(", "))} under ${o.default.bold(n)}`);try{const n=yield e.fetch("/v3/now/certs",{method:"PATCH",body:{op:"startOrder",domains:t}});r();return n}catch(e){r();throw e}})}t.default=startCertOrder},9214:function(e){"use strict";class DoublyLinkedListIterator{constructor(e,t){this._list=e;this._direction=t===true?"prev":"next";this._startPosition=t===true?"tail":"head";this._started=false;this._cursor=null;this._done=false}_start(){this._cursor=this._list[this._startPosition];this._started=true}_advanceCursor(){if(this._started===false){this._started=true;this._cursor=this._list[this._startPosition];return}this._cursor=this._cursor[this._direction]}reset(){this._done=false;this._started=false;this._cursor=null}remove(){if(this._started===false||this._done===true||this._isCursorDetached()){return false}this._list.remove(this._cursor)}next(){if(this._done===true){return{done:true}}this._advanceCursor();if(this._cursor===null||this._isCursorDetached()){this._done=true;return{done:true}}return{value:this._cursor,done:false}}_isCursorDetached(){return this._cursor.prev===null&&this._cursor.next===null&&this._list.tail!==this._cursor&&this._list.head!==this._cursor}}e.exports=DoublyLinkedListIterator},9217:function(e,t,n){var r=n(8589);var i=n(2250);function v4(e,t,n){var o=t&&n||0;if(typeof e=="string"){t=e==="binary"?new Array(16):null;e=null}e=e||{};var a=e.random||(e.rng||r)();a[6]=a[6]&15|64;a[8]=a[8]&63|128;if(t){for(var s=0;s<16;++s){t[o+s]=a[s]}}return t||i(a)}e.exports=v4},9220:function(e){var t=function(){};t.prototype.readByte=function(){throw new Error("abstract method readByte() not implemented")};t.prototype.read=function(e,t,n){var r=0;while(r<n){var i=this.readByte();if(i<0){return r===0?-1:r}e[t++]=i;r++}return r};t.prototype.seek=function(e){throw new Error("abstract method seek() not implemented")};t.prototype.writeByte=function(e){throw new Error("abstract method readByte() not implemented")};t.prototype.write=function(e,t,n){var r;for(r=0;r<n;r++){this.writeByte(e[t++])}return n};t.prototype.flush=function(){};e.exports=t},9222:function(e,t){t.GREATEST_LOWER_BOUND=1;t.LEAST_UPPER_BOUND=2;function recursiveSearch(e,n,r,i,o,a){var s=Math.floor((n-e)/2)+e;var c=o(r,i[s],true);if(c===0){return s}else if(c>0){if(n-s>1){return recursiveSearch(s,n,r,i,o,a)}if(a==t.LEAST_UPPER_BOUND){return n<i.length?n:-1}else{return s}}else{if(s-e>1){return recursiveSearch(e,s,r,i,o,a)}if(a==t.LEAST_UPPER_BOUND){return s}else{return e<0?-1:e}}}t.search=function search(e,n,r,i){if(n.length===0){return-1}var o=recursiveSearch(-1,n.length,e,n,r,i||t.GREATEST_LOWER_BOUND);if(o<0){return-1}while(o-1>=0){if(r(n[o],n[o-1],true)!==0){break}--o}return o}},9228:function(e,t,n){t.alphasort=alphasort;t.alphasorti=alphasorti;t.setopts=setopts;t.ownProp=ownProp;t.makeAbs=makeAbs;t.finish=finish;t.mark=mark;t.isIgnored=isIgnored;t.childrenIgnored=childrenIgnored;function ownProp(e,t){return Object.prototype.hasOwnProperty.call(e,t)}var r=n(5897);var i=n(186);var o=n(7982);var a=i.Minimatch;function alphasorti(e,t){return e.toLowerCase().localeCompare(t.toLowerCase())}function alphasort(e,t){return e.localeCompare(t)}function setupIgnores(e,t){e.ignore=t.ignore||[];if(!Array.isArray(e.ignore))e.ignore=[e.ignore];if(e.ignore.length){e.ignore=e.ignore.map(ignoreMap)}}function ignoreMap(e){var t=null;if(e.slice(-3)==="/**"){var n=e.replace(/(\/\*\*)+$/,"");t=new a(n,{dot:true})}return{matcher:new a(e,{dot:true}),gmatcher:t}}function setopts(e,t,n){if(!n)n={};if(n.matchBase&&-1===t.indexOf("/")){if(n.noglobstar){throw new Error("base matching requires globstar")}t="**/"+t}e.silent=!!n.silent;e.pattern=t;e.strict=n.strict!==false;e.realpath=!!n.realpath;e.realpathCache=n.realpathCache||Object.create(null);e.follow=!!n.follow;e.dot=!!n.dot;e.mark=!!n.mark;e.nodir=!!n.nodir;if(e.nodir)e.mark=true;e.sync=!!n.sync;e.nounique=!!n.nounique;e.nonull=!!n.nonull;e.nosort=!!n.nosort;e.nocase=!!n.nocase;e.stat=!!n.stat;e.noprocess=!!n.noprocess;e.absolute=!!n.absolute;e.maxLength=n.maxLength||Infinity;e.cache=n.cache||Object.create(null);e.statCache=n.statCache||Object.create(null);e.symlinks=n.symlinks||Object.create(null);setupIgnores(e,n);e.changedCwd=false;var i=process.cwd();if(!ownProp(n,"cwd"))e.cwd=i;else{e.cwd=r.resolve(n.cwd);e.changedCwd=e.cwd!==i}e.root=n.root||r.resolve(e.cwd,"/");e.root=r.resolve(e.root);if(process.platform==="win32")e.root=e.root.replace(/\\/g,"/");e.cwdAbs=o(e.cwd)?e.cwd:makeAbs(e,e.cwd);if(process.platform==="win32")e.cwdAbs=e.cwdAbs.replace(/\\/g,"/");e.nomount=!!n.nomount;n.nonegate=true;n.nocomment=true;e.minimatch=new a(t,n);e.options=e.minimatch.options}function finish(e){var t=e.nounique;var n=t?[]:Object.create(null);for(var r=0,i=e.matches.length;r<i;r++){var o=e.matches[r];if(!o||Object.keys(o).length===0){if(e.nonull){var a=e.minimatch.globSet[r];if(t)n.push(a);else n[a]=true}}else{var s=Object.keys(o);if(t)n.push.apply(n,s);else s.forEach(function(e){n[e]=true})}}if(!t)n=Object.keys(n);if(!e.nosort)n=n.sort(e.nocase?alphasorti:alphasort);if(e.mark){for(var r=0;r<n.length;r++){n[r]=e._mark(n[r])}if(e.nodir){n=n.filter(function(t){var n=!/\/$/.test(t);var r=e.cache[t]||e.cache[makeAbs(e,t)];if(n&&r)n=r!=="DIR"&&!Array.isArray(r);return n})}}if(e.ignore.length)n=n.filter(function(t){return!isIgnored(e,t)});e.found=n}function mark(e,t){var n=makeAbs(e,t);var r=e.cache[n];var i=t;if(r){var o=r==="DIR"||Array.isArray(r);var a=t.slice(-1)==="/";if(o&&!a)i+="/";else if(!o&&a)i=i.slice(0,-1);if(i!==t){var s=makeAbs(e,i);e.statCache[s]=e.statCache[n];e.cache[s]=e.cache[n]}}return i}function makeAbs(e,t){var n=t;if(t.charAt(0)==="/"){n=r.join(e.root,t)}else if(o(t)||t===""){n=t}else if(e.changedCwd){n=r.resolve(e.cwd,t)}else{n=r.resolve(t)}if(process.platform==="win32")n=n.replace(/\\/g,"/");return n}function isIgnored(e,t){if(!e.ignore.length)return false;return e.ignore.some(function(e){return e.matcher.match(t)||!!(e.gmatcher&&e.gmatcher.match(t))})}function childrenIgnored(e,t){if(!e.ignore.length)return false;return e.ignore.some(function(e){return!!(e.gmatcher&&e.gmatcher.match(t))})}},9240:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return main});var r=n(9544);var i=n.n(r);var o=n(2229);var a=n.n(o);var s=n(3759);var c=n.n(s);var u=n(2616);var l=n.n(u);var f=n(4495);var p=n(4170);var d=n.n(p);var h=n(5580);var m=n.n(h);var v=n(2701);var g=n.n(v);var y=n(5242);var b=n.n(y);var w=n(2385);var x=n(8685);var k=n.n(x);var j=n(4999);var S=n.n(j);var E=n(89);var _=n.n(E);var C=n(8950);var A=n.n(C);var O=n(4110);var F=n.n(O);var D=n(4573);var T=n.n(D);var I=n(8303);var R=n.n(I);var P=n(4223);var B=n.n(P);var N=n(8860);var z=n(8852);var L=n.n(z);const M=()=>{console.log(`\n ${i.a.bold(`${S.a} now list`)} [app]\n\n ${i.a.dim("Options:")}\n\n -h, --help Output usage information\n -A ${i.a.bold.underline("FILE")}, --local-config=${i.a.bold.underline("FILE")} Path to the local ${"`now.json`"} file\n -Q ${i.a.bold.underline("DIR")}, --global-config=${i.a.bold.underline("DIR")} Path to the global ${"`.now`"} directory\n -d, --debug Debug mode [off]\n -t ${i.a.bold.underline("TOKEN")}, --token=${i.a.bold.underline("TOKEN")} Login token\n -S, --scope Set a custom scope\n -a, --all See all instances for each deployment (requires [app])\n -m, --meta Filter deployments by metadata (e.g.: ${i.a.dim("`-m KEY=value`")}). Can appear many times.\n\n ${i.a.dim("Examples:")}\n\n ${i.a.gray("")} List all deployments\n\n ${i.a.cyan("$ now ls")}\n\n ${i.a.gray("")} List all deployments for the app ${i.a.dim("`my-app`")}\n\n ${i.a.cyan("$ now ls my-app")}\n\n ${i.a.gray("")} List all deployments and all instances for the app ${i.a.dim("`my-app`")}\n\n ${i.a.cyan("$ now ls my-app --all")}\n\n ${i.a.gray("")} Filter deployments by metadata\n\n ${i.a.cyan("$ now ls -m key1=value1 -m key2=value2")}\n`)};async function main(e){let t;try{t=m()(e.argv.slice(2),{"--all":Boolean,"--meta":[String],"-a":"--all","-m":"--meta"})}catch(e){Object(w["handleError"])(e);return 1}const n=t["--debug"];const{print:r,log:o,error:s,note:u,debug:p}=b()({debug:n});if(t._.length>2){s(`${k()("now ls [app]")} accepts at most one argument`);return 1}let h=t._[1];let v=null;const y=e.apiUrl;if(t["--help"]){M();return 0}const x=Object(N["default"])(t["--meta"]);const{authConfig:{token:j},config:S}=e;const{currentTeam:E,includeScheme:C}=S;const O=new T.a({apiUrl:y,token:j,currentTeam:E,debug:n});let D=null;try{({contextName:D}=await R()(O))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){s(e.message);return 1}throw e}const I=A()(`Fetching deployments in ${i.a.bold(D)}`);const P=new f["default"]({apiUrl:y,token:j,debug:n,currentTeam:E});const L=new Date;if(t["--all"]&&!h){s("You must define an app when using `-a` / `--all`");return 1}if(h&&!Object(z["isValidName"])(h)){s(`The provided argument "${h}" is not a valid project name`);return 1}if(h&&B()(h).endsWith(".now.sh")){u("We suggest using `now inspect <deployment>` for retrieving details about a single deployment");const e=B()(h);const t=e.split("-");if(t<2){I();s("Only deployment hostnames are allowed, no aliases");return 1}h=null;v=e}let U;try{p("Fetching deployments");U=await P.list(h,{version:4,meta:x})}catch(e){I();throw e}if(h&&!U.length){p("No deployments: attempting to find deployment that matches supplied app name");let e;try{await P.findDeployment(h)}catch(e){if(e.status===404){p("Ignore findDeployment 404")}else{I();throw e}}if(e!==null&&typeof e!=="undefined"){p("Found deployment that matches app name");U=Array.of(e)}}if(h&&!U.length){p("No deployments: attempting to find aliases that matches supplied app name");const e=await d()(P);const t=e.find(e=>e.uid===h||e.alias===h);if(t){p(`Found alias that matches app name: ${t.alias}`);if(Array.isArray(t.rules)){P.close();I();o(`Found matching path alias: ${i.a.cyan(t.alias)}`);o(`Please run ${k()(`now alias ls ${t.alias}`)} instead`);return 0}const e=await P.findDeployment(t.deploymentId);const n=await g()(P,t.deploymentId,"now_cli_alias_instances");e.instanceCount=Object.keys(n).reduce((e,t)=>e+n[t].instances.length,0);if(e!==null&&typeof e!=="undefined"){U=Array.of(e)}}}P.close();if(t["--all"]){await Promise.all(U.map(async({uid:e,instanceCount:t},n)=>{U[n].instances=t>0?await P.listInstances(e):[]}))}if(v){U=U.filter(e=>e.url===v)}I();o(`Fetched ${c()("deployment",U.length,true)} under ${i.a.bold(D)} ${_()(Date.now()-L)}`);if(!U.length){return 0}if(h==null){o(`To list more deployments for a project run ${k()("now ls [project]")}`)}else if(!t["--all"]){o(`To list deployment instances run ${k()("now ls --all [project]")}`)}r("\n");console.log(`${l()([["project","latest deployment","inst #","type","state","age"].map(e=>i.a.dim(e)),...U.sort(sortRecent()).map(e=>[[getProjectName(e),i.a.bold((C?"https://":"")+e.url),e.instanceCount==null||e.type==="LAMBDAS"?i.a.gray("-"):e.instanceCount,e.type==="LAMBDAS"?i.a.gray("-"):e.type,stateString(e.state),i.a.gray(a()(Date.now()-new Date(e.created)))],...t["--all"]?e.instances.map(e=>["",` ${i.a.gray("-")} ${e.url} `,"","",""]):[]]).reduce((e,t)=>e.concat(t),[]).filter(h==null?filterUniqueApps():()=>true)],{align:["l","l","r","l","b"],hsep:" ".repeat(4),stringLength:F.a}).replace(/^/gm," ")}\n\n`)}function getProjectName(e){if(e.name==="file"){return"files"}return e.name}function stateString(e){switch(e){case"INITIALIZING":return i.a.yellow(e);case"ERROR":return i.a.red(e);case"READY":return e;default:return i.a.gray("UNKNOWN")}}function sortRecent(){return function recencySort(e,t){return t.created-e.created}}function filterUniqueApps(){const e=new Set;return function uniqueAppFilter([t]){if(e.has(t)){return false}e.add(t);return true}}},9242:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(8715));function setCustomSuffix(e,t,n,i){return r(this,void 0,void 0,function*(){try{return yield e.fetch(`/v1/custom-suffix`,{method:"PATCH",body:{suffix:i}})}catch(e){if(e.code==="forbidden"){return new o.DomainPermissionDenied(n,t)}if(e.code==="domain_external"){return new o.DomainExternal(n)}if(e.code==="domain_invalid"){return new o.InvalidDomain(n)}if(e.code==="domain_not_found"){return new o.DomainNotFound(n)}if(e.code==="domain_not_verified"){return new o.DomainNotVerified(n)}if(e.code==="domain_permission_denied"){return new o.DomainPermissionDenied(n,t)}throw e}})}t.default=setCustomSuffix},9247:function(e,t,n){"use strict";var r=n(1974);var i=n(5474);var o;t.last=function(e){return e[e.length-1]};t.createRegex=function(e,t){if(o)return o;var n={contains:true,strictClose:false};var a=i.create(e,n);var s;if(typeof t==="string"){s=r("^(?:"+t+"|"+a+")",n)}else{s=r(a,n)}return o=s}},9248:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5133);t.BaseTransport=r.BaseTransport;var i=n(7008);t.HTTPTransport=i.HTTPTransport;var o=n(1931);t.HTTPSTransport=o.HTTPSTransport},9249:function(e,t,n){"use strict";var r=n(1249);e.exports=_Error;function _Error(e){this.populate.apply(this,arguments);this.stack=new Error(this.message).stack}_Error.prototype=Object.create(Error.prototype);_Error.prototype.type="GenericError";_Error.prototype.populate=function(e,t){this.type=e;this.message=t};_Error.extend=r.protoExtend;var i=_Error.StripeError=_Error.extend({type:"StripeError",populate:function(e){this.type=this.type;this.stack=new Error(e.message).stack;this.rawType=e.type;this.code=e.code;this.param=e.param;this.message=e.message;this.detail=e.detail;this.raw=e;this.headers=e.headers;this.requestId=e.requestId;this.statusCode=e.statusCode}});i.generate=function(e){switch(e.type){case"card_error":return new _Error.StripeCardError(e);case"invalid_request_error":return new _Error.StripeInvalidRequestError(e);case"api_error":return new _Error.StripeAPIError(e)}return new _Error("Generic","Unknown Error")};_Error.StripeCardError=i.extend({type:"StripeCardError"});_Error.StripeInvalidRequestError=i.extend({type:"StripeInvalidRequestError"});_Error.StripeAPIError=i.extend({type:"StripeAPIError"});_Error.StripeAuthenticationError=i.extend({type:"StripeAuthenticationError"});_Error.StripePermissionError=i.extend({type:"StripePermissionError"});_Error.StripeRateLimitError=i.extend({type:"StripeRateLimitError"});_Error.StripeConnectionError=i.extend({type:"StripeConnectionError"});_Error.StripeSignatureVerificationError=i.extend({type:"StripeSignatureVerificationError"})},9250:function(e,t,n){"use strict";n.r(t);n.d(t,"gitPathParts",function(){return x});n.d(t,"isRepoPath",function(){return j});n.d(t,"fromGit",function(){return S});var r=n(5897);var i=n.n(r);var o=n(774);var a=n.n(o);var s=n(2041);var c=n.n(s);var u=n(772);var l=n.n(u);var f=n(7064);var p=n.n(f);var d=n(750);var h=n.n(d);var m=n(7220);var v=n.n(m);const g=(e,t,{ssh:n})=>new Promise((r,i)=>{let o;switch(e.type){case"GitLab":o=`gitlab.com`;break;case"Bitbucket":o=`bitbucket.org`;break;default:o=`github.com`}const a=n?`git@${o}:${e.main}`:`https://${o}/${e.main}`;const s=e.ref||(e.type==="Bitbucket"?"default":"master");const u=`git clone ${a} --single-branch ${s}`;c.a.exec(u,{cwd:t.path},(e,t)=>{if(e){i(e)}r(t)})});const y=async(e,t)=>{const n=await l.a.readdir(t.path);const r=i.a.join(t.path,n[0]);const o=i.a.join(t.path,e.main.replace("/","-"));await l.a.rename(r,o);t.path=o;return t};const b=e=>{const t={github:"GitHub",gitlab:"GitLab",bitbucket:"Bitbucket"};return t[e]};const w=e=>{const t=a.a.parse(e);const n=t.path.split("/");n.shift();const r=`${n[0]}/${n[1]}`;n.splice(0,2);let i=n.length>=2?n[1]:"";if(n[0]){if(n[0]==="commit"||n[0]==="commits"){i=i.substring(0,7)}}if(i==="master"){i=""}return{main:r,ref:i,type:b(t.host.split(".")[0])}};const x=e=>{let t="";if(v()(e)){return w(e)}if(e.split("/")[1].includes("#")){const n=e.split("#");t=n[1];e=n[0]}return{main:e,ref:t,type:b("github")}};const k=async e=>{const t=x(e);const n=await h.a.dir({keep:true,unsafeCleanup:true});let r=true;try{await g(t,n)}catch(e){try{await g(t,n,{ssh:true})}catch(e){r=false}}if(r){const e=await y(t,n);return e}let i;switch(t.type){case"GitLab":{const e=t.ref?`?ref=${t.ref}`:"";i=`https://gitlab.com/${t.main}/repository/archive.tar${e}`;break}case"Bitbucket":i=`https://bitbucket.org/${t.main}/get/${t.ref||"default"}.zip`;break;default:i=`https://api.github.com/repos/${t.main}/tarball/${t.ref}`}try{await p()(i,n.path,{extract:true})}catch(e){n.cleanup();return false}const o=await y(t,n);return o};const j=e=>{if(!e){return false}const t=["github.com","gitlab.com","bitbucket.org"];if(v()(e)){const n=a.a.parse(e);const r=n.path.split("/").filter(e=>e);const i=r.length>=2;if(t.includes(n.host)&&i){return true}const o=new Error(`Host "${n.host}" is unsupported.`);o.code="INVALID_URL";throw o}return/[^\s\\]\/[^\s\\]/g.test(e)};const S=async(e,t)=>{let n=false;try{n=await k(e)}catch(n){if(t){console.log(`Could not download "${e}" repo from GitHub`)}}return n}},9258:function(e,t,n){var r;try{r=n(2617)}catch(e){r=n(662)}function readFile(e,t,n){if(n==null){n=t;t={}}if(typeof t==="string"){t={encoding:t}}t=t||{};var i=t.fs||r;var o=true;if("passParsingErrors"in t){o=t.passParsingErrors}else if("throws"in t){o=t.throws}i.readFile(e,t,function(r,i){if(r)return n(r);i=stripBom(i);var a;try{a=JSON.parse(i,t?t.reviver:null)}catch(t){if(o){t.message=e+": "+t.message;return n(t)}else{return n(null,null)}}n(null,a)})}function readFileSync(e,t){t=t||{};if(typeof t==="string"){t={encoding:t}}var n=t.fs||r;var i=true;if("passParsingErrors"in t){i=t.passParsingErrors}else if("throws"in t){i=t.throws}try{var o=n.readFileSync(e,t);o=stripBom(o);return JSON.parse(o,t.reviver)}catch(t){if(i){t.message=e+": "+t.message;throw t}else{return null}}}function writeFile(e,t,n,i){if(i==null){i=n;n={}}n=n||{};var o=n.fs||r;var a=typeof n==="object"&&n!==null?"spaces"in n?n.spaces:this.spaces:this.spaces;var s="";try{s=JSON.stringify(t,n?n.replacer:null,a)+"\n"}catch(e){if(i)i(e,null);return}o.writeFile(e,s,n,i)}function writeFileSync(e,t,n){n=n||{};var i=n.fs||r;var o=typeof n==="object"&&n!==null?"spaces"in n?n.spaces:this.spaces:this.spaces;var a=JSON.stringify(t,n.replacer,o)+"\n";return i.writeFileSync(e,a,n)}function stripBom(e){if(Buffer.isBuffer(e))e=e.toString("utf8");e=e.replace(/^\uFEFF/,"");return e}var i={spaces:null,readFile:readFile,readFileSync:readFileSync,writeFile:writeFile,writeFileSync:writeFileSync};e.exports=i},9261:function(e,t,n){var r=n(3930);var i=n(6886).Stream;var o=n(649);var a=/^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$/;function _capitalize(e){return e.charAt(0).toUpperCase()+e.slice(1)}function _toss(e,t,n,i,a){throw new r.AssertionError({message:o.format("%s (%s) is required",e,t),actual:a===undefined?typeof i:a(i),expected:t,operator:n||"===",stackStartFunction:_toss.caller})}function _getClass(e){return Object.prototype.toString.call(e).slice(8,-1)}function noop(){}var s={bool:{check:function(e){return typeof e==="boolean"}},func:{check:function(e){return typeof e==="function"}},string:{check:function(e){return typeof e==="string"}},object:{check:function(e){return typeof e==="object"&&e!==null}},number:{check:function(e){return typeof e==="number"&&!isNaN(e)}},finite:{check:function(e){return typeof e==="number"&&!isNaN(e)&&isFinite(e)}},buffer:{check:function(e){return Buffer.isBuffer(e)},operator:"Buffer.isBuffer"},array:{check:function(e){return Array.isArray(e)},operator:"Array.isArray"},stream:{check:function(e){return e instanceof i},operator:"instanceof",actual:_getClass},date:{check:function(e){return e instanceof Date},operator:"instanceof",actual:_getClass},regexp:{check:function(e){return e instanceof RegExp},operator:"instanceof",actual:_getClass},uuid:{check:function(e){return typeof e==="string"&&a.test(e)},operator:"isUUID"}};function _setExports(e){var t=Object.keys(s);var n;if(process.env.NODE_NDEBUG){n=noop}else{n=function(e,t){if(!e){_toss(t,"true",e)}}}t.forEach(function(t){if(e){n[t]=noop;return}var r=s[t];n[t]=function(e,n){if(!r.check(e)){_toss(n,t,r.operator,e,r.actual)}}});t.forEach(function(t){var r="optional"+_capitalize(t);if(e){n[r]=noop;return}var i=s[t];n[r]=function(e,n){if(e===undefined||e===null){return}if(!i.check(e)){_toss(n,t,i.operator,e,i.actual)}}});t.forEach(function(t){var r="arrayOf"+_capitalize(t);if(e){n[r]=noop;return}var i=s[t];var o="["+t+"]";n[r]=function(e,t){if(!Array.isArray(e)){_toss(t,o,i.operator,e,i.actual)}var n;for(n=0;n<e.length;n++){if(!i.check(e[n])){_toss(t,o,i.operator,e,i.actual)}}}});t.forEach(function(t){var r="optionalArrayOf"+_capitalize(t);if(e){n[r]=noop;return}var i=s[t];var o="["+t+"]";n[r]=function(e,t){if(e===undefined||e===null){return}if(!Array.isArray(e)){_toss(t,o,i.operator,e,i.actual)}var n;for(n=0;n<e.length;n++){if(!i.check(e[n])){_toss(t,o,i.operator,e,i.actual)}}}});Object.keys(r).forEach(function(t){if(t==="AssertionError"){n[t]=r[t];return}if(e){n[t]=noop;return}n[t]=r[t]});n._setExports=_setExports;return n}e.exports=_setExports(process.env.NODE_NDEBUG)},9263:function(e,t,n){"use strict";var r=n(2984);function randomString(e){var t=(e+1)*6;var n=r.randomBytes(Math.ceil(t/8));var i=n.toString("base64").replace(/\+/g,"-").replace(/\//g,"_").replace(/=/g,"");return i.slice(0,e)}function calculatePayloadHash(e,t,n){var i=r.createHash(t);i.update("hawk.1.payload\n");i.update((n?n.split(";")[0].trim().toLowerCase():"")+"\n");i.update(e||"");i.update("\n");return i.digest("base64")}t.calculateMac=function(e,t){var n="hawk.1.header\n"+t.ts+"\n"+t.nonce+"\n"+(t.method||"").toUpperCase()+"\n"+t.resource+"\n"+t.host.toLowerCase()+"\n"+t.port+"\n"+(t.hash||"")+"\n";if(t.ext){n=n+t.ext.replace("\\","\\\\").replace("\n","\\n")}n=n+"\n";if(t.app){n=n+t.app+"\n"+(t.dlg||"")+"\n"}var i=r.createHmac(e.algorithm,e.key).update(n);var o=i.digest("base64");return o};t.header=function(e,n,r){var i=r.timestamp||Math.floor((Date.now()+(r.localtimeOffsetMsec||0))/1e3);var o=r.credentials;if(!o||!o.id||!o.key||!o.algorithm){return""}if(["sha1","sha256"].indexOf(o.algorithm)===-1){return""}var a={ts:i,nonce:r.nonce||randomString(6),method:n,resource:e.pathname+(e.search||""),host:e.hostname,port:e.port||(e.protocol==="http:"?80:443),hash:r.hash,ext:r.ext,app:r.app,dlg:r.dlg};if(!a.hash&&(r.payload||r.payload==="")){a.hash=calculatePayloadHash(r.payload,o.algorithm,r.contentType)}var s=t.calculateMac(o,a);var c=a.ext!==null&&a.ext!==undefined&&a.ext!=="";var u='Hawk id="'+o.id+'", ts="'+a.ts+'", nonce="'+a.nonce+(a.hash?'", hash="'+a.hash:"")+(c?'", ext="'+a.ext.replace(/\\/g,"\\\\").replace(/"/g,'\\"'):"")+'", mac="'+s+'"';if(a.app){u=u+', app="'+a.app+(a.dlg?'", dlg="'+a.dlg:"")+'"'}return u}},9268:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(2229));const o=r(n(9544));const a=r(n(1871));function formatDate(e){if(!e){return o.default.gray("-")}const t=new Date(e);const n=t.getTime()-Date.now();return n<0?`${a.default(t,"DD MMMM YYYY HH:mm:ss")} ${o.default.gray(`[${i.default(-n)} ago]`)}`:`${a.default(t,"DD MMMM YYYY HH:mm:ss")} ${o.default.gray(`[in ${i.default(n)}]`)}`}t.default=formatDate},9273:function(e){e.exports={name:"stripe",version:"5.1.0",description:"Stripe API wrapper",keywords:["stripe","payment processing","credit cards","api"],homepage:"https://github.com/stripe/stripe-node",author:"Stripe <support@stripe.com> (https://stripe.com/)",contributors:["Ask Bjørn Hansen <ask@develooper.com> (http://www.askask.com/)","Michelle Bu <michelle@stripe.com>","Alex Sexton <alex@stripe.com>","James Padolsey"],repository:{type:"git",url:"git://github.com/stripe/stripe-node.git"},"bugs:":"https://github.com/stripe/stripe-node/issues",engines:{node:">=4"},main:"lib/stripe.js",devDependencies:{chai:"~4.1.2","chai-as-promised":"~7.1.1",jscs:"^2.3.5",mocha:"~3.5.3","stripe-javascript-style":"^1.0.1"},dependencies:{bluebird:"^3.5.0","lodash.isplainobject":"^4.0.6",qs:"~6.5.1","safe-buffer":"^5.1.1"},license:"MIT",scripts:{mocha:"mocha",test:"npm run lint && mocha",lint:"jscs ."}}},9281:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};var o=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(2229));const s=i(n(9544));const c=o(n(8715));const u=i(n(9975));const l=i(n(4573));const f=i(n(8685));const p=i(n(1776));const d=i(n(3789));const h=i(n(8199));const m=i(n(2237));const v=i(n(8303));const g=i(n(4793));const y=i(n(7905));const b=i(n(586));const w=n(8852);const x=i(n(1195));const k=i(n(9199));const j=i(n(8233));function set(e,t,n,i){return r(this,void 0,void 0,function*(){const{authConfig:{token:r},config:o,localConfig:a}=e;const{currentTeam:p}=o;const{apiUrl:d}=e;const S=b.default();const{"--debug":E,"--no-verify":_,"--rules":C}=t;const A=new l.default({apiUrl:d,token:r,currentTeam:p,debug:E});let O=null;let F=null;try{({contextName:O,user:F}=yield v.default(A))}catch(e){if(e.code==="NOT_AUTHORIZED"||e.code==="TEAM_DELETED"){i.error(e.message);return 1}throw e}if(n.length>2){i.error(`${f.default("now alias <deployment> <target>")} accepts at most two arguments`);return 1}if(n.length>=1&&!w.isValidName(n[0])){i.error(`The provided argument "${n[0]}" is not a valid deployment`);return 1}if(n.length>=2&&!w.isValidName(n[1])){i.error(`The provided argument "${n[1]}" is not a valid domain`);return 1}const D=yield m.default(C);if(D instanceof c.FileNotFound){i.error(`Can't find the provided rules file at location:`);i.print(` ${s.default.gray("-")} ${D.meta.file}\n`);return 1}if(D instanceof c.CantParseJSONFile){i.error(`Error parsing provided rules.json file at location:`);i.print(` ${s.default.gray("-")} ${D.meta.file}\n`);return 1}if(D instanceof c.RulesFileValidationError){i.error(`Path Alias validation error: ${D.meta.message}`);i.print(` ${s.default.gray("-")} ${D.meta.location}\n`);return 1}if(n.length===2&&D){i.error(`You can't supply a deployment target and target rules simultaneously.`);return 1}const T=yield g.default(i,n,a);if(T instanceof c.NoAliasInConfig){i.error(`Couldn't find an alias in config`);return 1}if(T instanceof c.InvalidAliasInConfig){i.error(`Wrong value for alias found in config. It must be a string or array of string.`);return 1}if(D){for(const e of T){i.log(`Assigning path alias rules from ${y.default(C)} to ${e}`);const t=yield x.default(i,A,D,e,O);const n=handleCreateAliasError(i,t);if(handleSetupDomainError(i,n)!==1){console.log(`${s.default.cyan("> Success!")} ${D.length} rules configured for ${s.default.underline(e)} ${S()}`)}}return 0}const I=k.default(i,yield h.default(A,i,n,t["--local-config"],F,O,a));if(I===1){return I}if(I instanceof c.DeploymentNotFound){i.error(`Failed to find deployment "${I.meta.id}" under ${s.default.bold(O)}`);return 1}if(I instanceof c.DeploymentPermissionDenied){i.error(`No permission to access deployment "${I.meta.id}" under ${s.default.bold(I.meta.context)}`);return 1}if(I instanceof c.InvalidDeploymentId){i.error(I.message);return 1}if(I===null){i.error(`Couldn't find a deployment to alias. Please provide one as an argument.`);return 1}for(const e of T){i.log(`Assigning alias ${e} to deployment ${I.url}`);const t=j.default(e);const n=yield u.default(i,A,I,e,O,_);const r=handleSetupDomainError(i,handleCreateAliasError(i,n),t);if(r===1){return 1}const o=t?"":"https://";console.log(`${s.default.cyan("> Success!")} ${s.default.bold(`${o}${r.alias}`)} now points to https://${I.url} ${S()}`)}return 0})}t.default=set;function handleSetupDomainError(e,t,n=false){if(t instanceof c.DomainVerificationFailed||t instanceof c.DomainNsNotVerifiedForWildcard){const{nsVerification:r,domain:i}=t.meta;e.error(`We could not alias since the domain ${i} could not be verified due to the following reasons:\n`);e.print(` ${s.default.gray("a)")} Nameservers verification failed since we see a different set than the intended set:`);e.print(`\n${d.default(r.intendedNameservers,r.nameservers,{extraSpace:" "})}\n\n`);if(t instanceof c.DomainVerificationFailed&&!n){const{txtVerification:n}=t.meta;e.print(` ${s.default.gray("b)")} DNS TXT verification failed since found no matching records.`);e.print(`\n${p.default([["_now","TXT",n.verificationRecord]],{extraSpace:" "})}\n\n`);e.print(` Once your domain uses either the nameservers or the TXT DNS record from above, run again ${f.default("now domains verify <domain>")}.\n`);e.print(` We will also periodically run a verification check for you and you will receive an email once your domain is verified.\n`)}else{e.print(` Once your domain uses the nameservers from above, run again ${f.default("now domains verify <domain>")}.\n`)}e.print(" Read more: https://err.sh/now/domain-verification\n");return 1}if(t instanceof c.DomainPermissionDenied){e.error(`You don't have permissions over domain ${s.default.underline(t.meta.domain)} under ${s.default.bold(t.meta.context)}.`);return 1}if(t instanceof c.UserAborted){e.error(`User aborted`);return 1}if(t instanceof c.DomainNotFound){e.error(`You should buy the domain before aliasing.`);return 1}if(t instanceof c.UnsupportedTLD){e.error(`The TLD for domain name ${t.meta.domain} is not supported.`);return 1}if(t instanceof c.InvalidDomain){e.error(`The domain ${t.meta.domain} used for the alias is not valid.`);return 1}if(t instanceof c.DomainNotAvailable){e.error(`The domain ${t.meta.domain} is not available to be purchased.`);return 1}if(t instanceof c.DomainServiceNotAvailable){e.error(`The domain purchase service is not available. Try again later.`);return 1}if(t instanceof c.UnexpectedDomainPurchaseError){e.error(`There was an unexpected error while purchasing the domain.`);return 1}if(t instanceof c.DomainAlreadyExists){e.error(`The domain ${t.meta.domain} exists for a different account.`);return 1}if(t instanceof c.DomainPurchasePending){e.error(`The domain ${t.meta.domain} is processing and will be available once the order is completed.`);e.print(` An email will be sent upon completion so you can alias to your new domain.\n`);return 1}if(t instanceof c.SourceNotFound){e.error(`You can't purchase the domain you're aliasing to since you have no valid payment method.`);e.print(` Please add a valid payment method and retry.\n`);return 1}if(t instanceof c.DomainPaymentError){e.error(`You can't purchase the domain you're aliasing to since your card was declined.`);e.print(` Please add a valid payment method and retry.\n`);return 1}return t}function handleCreateAliasError(e,t){const n=k.default(e,t);if(n===1){return n}if(n instanceof c.AliasInUse){e.error(`The alias ${s.default.dim(n.meta.alias)} is a deployment URL or it's in use by a different team.`);return 1}if(n instanceof c.DeploymentNotFound){e.error(`Failed to find deployment ${s.default.dim(n.meta.id)} under ${s.default.bold(n.meta.context)}`);return 1}if(n instanceof c.InvalidAlias){e.error(`Invalid alias. Please confirm that the alias you provided is a valid hostname. Note: For \`now.sh\`, only sub and sub-sub domains are supported.`);return 1}if(n instanceof c.DeploymentPermissionDenied){e.error(`No permission to access deployment ${s.default.dim(n.meta.id)} under ${s.default.bold(n.meta.context)}`);return 1}if(n instanceof c.RuleValidationFailed){e.error(`Rule validation error: ${n.meta.message}.`);e.print(` Make sure your rules file is written correctly.\n`);return 1}if(n instanceof c.VerifyScaleTimeout){e.error(`Instance verification timed out (${a.default(n.meta.timeout)})`);e.log("Read more: https://err.sh/now/verification-timeout");return 1}if(n instanceof c.NotSupportedMinScaleSlots){e.error(`Scale rules from previous aliased deployment ${s.default.dim(n.meta.url)} could not be copied since Cloud v2 deployments cannot have a non-zero min`);e.log(`Update the scale settings on ${s.default.dim(n.meta.url)} with \`now scale\` and try again`);e.log("Read more: https://err.sh/now/v2-no-min");return 1}if(n instanceof c.ForbiddenScaleMaxInstances){e.error(`Scale rules from previous aliased deployment ${s.default.dim(n.meta.url)} could not be copied since the given number of max instances (${n.meta.max}) is not allowed.`);e.log(`Update the scale settings on ${s.default.dim(n.meta.url)} with \`now scale\` and try again`);return 1}if(n instanceof c.ForbiddenScaleMinInstances){e.error(`You can't scale to more than ${n.meta.max} min instances with your current plan.`);return 1}if(n instanceof c.InvalidScaleMinMaxRelation){e.error(`Scale rules from previous aliased deployment ${s.default.dim(n.meta.url)} could not be copied becuase the relation between min and max instances is wrong.`);e.log(`Update the scale settings on ${s.default.dim(n.meta.url)} with \`now scale\` and try again`);return 1}if(n instanceof c.CertMissing){e.error(`There is no certificate for the domain ${n.meta.domain} and it could not be created.`);e.log(`Please generate a new certificate manually with ${f.default(`now certs issue ${n.meta.domain}`)}`);return 1}if(n instanceof c.InvalidDomain){e.error(`The domain ${n.meta.domain} used for the alias is not valid.`);return 1}if(n instanceof c.DomainPermissionDenied||n instanceof c.DeploymentFailedAliasImpossible||n instanceof c.InvalidDeploymentId){e.error(n.message);return 1}if(n instanceof c.DeploymentNotReady){e.error(n.message);return 1}return n}},9282:function(e,t,n){"use strict";const r=n(5897);const i=n(1908);const o=n(8975).pathExists;const a=n(8528);function outputJson(e,t,n,s){if(typeof n==="function"){s=n;n={}}const c=r.dirname(e);o(c,(r,o)=>{if(r)return s(r);if(o)return a.writeJson(e,t,n,s);i.mkdirs(c,r=>{if(r)return s(r);a.writeJson(e,t,n,s)})})}e.exports=outputJson},9294:function(e){"use strict";var t=e.exports=function Cache(){this._cache={}};t.prototype.put=function Cache_put(e,t){this._cache[e]=t};t.prototype.get=function Cache_get(e){return this._cache[e]};t.prototype.del=function Cache_del(e){delete this._cache[e]};t.prototype.clear=function Cache_clear(){this._cache={}}},9298:function(e,t,n){"use strict";var r=n(1384);var i=n(7586);e.exports=function(e,t){e.parser.set("bos",function(){if(!this.parsed){this.ast=this.nodes[0]=new r(this.ast)}}).set("escape",function(){var e=this.position();var n=this.match(/^(?:\\(.)|\$\{)/);if(!n)return;var o=this.prev();var a=i.last(o.nodes);var s=e(new r({type:"text",multiplier:1,val:n[0]}));if(s.val==="\\\\"){return s}if(s.val==="${"){var c=this.input;var u=-1;var l;while(l=c[++u]){this.consume(1);s.val+=l;if(l==="\\"){s.val+=c[++u];continue}if(l==="}"){break}}}if(this.options.unescape!==false){s.val=s.val.replace(/\\([{}])/g,"$1")}if(a.val==='"'&&this.input.charAt(0)==='"'){a.val=s.val;this.consume(1);return}return concatNodes.call(this,e,s,o,t)}).set("bracket",function(){var e=this.isInside("brace");var t=this.position();var n=this.match(/^(?:\[([!^]?)([^\]]{2,}|\]-)(\]|[^*+?]+)|\[)/);if(!n)return;var i=this.prev();var o=n[0];var a=n[1]?"^":"";var s=n[2]||"";var c=n[3]||"";if(e&&i.type==="brace"){i.text=i.text||"";i.text+=o}var u=this.input.slice(0,2);if(s===""&&u==="\\]"){s+=u;this.consume(2);var l=this.input;var f=-1;var p;while(p=l[++f]){this.consume(1);if(p==="]"){c=p;break}s+=p}}return t(new r({type:"bracket",val:o,escaped:c!=="]",negated:a,inner:s,close:c}))}).set("multiplier",function(){var e=this.isInside("brace");var n=this.position();var i=this.match(/^\{((?:,|\{,+\})+)\}/);if(!i)return;this.multiplier=true;var o=this.prev();var a=i[0];if(e&&o.type==="brace"){o.text=o.text||"";o.text+=a}var s=n(new r({type:"text",multiplier:1,match:i,val:a}));return concatNodes.call(this,n,s,o,t)}).set("brace.open",function(){var e=this.position();var t=this.match(/^\{(?!(?:[^\\}]?|,+)\})/);if(!t)return;var n=this.prev();var o=i.last(n.nodes);if(o&&o.val&&isExtglobChar(o.val.slice(-1))){o.optimize=false}var a=e(new r({type:"brace.open",val:t[0]}));var s=e(new r({type:"brace",nodes:[]}));s.push(a);n.push(s);this.push("brace",s)}).set("brace.close",function(){var e=this.position();var t=this.match(/^\}/);if(!t||!t[0])return;var n=this.pop("brace");var o=e(new r({type:"brace.close",val:t[0]}));if(!this.isType(n,"brace")){if(this.options.strict){throw new Error('missing opening "{"')}o.type="text";o.multiplier=0;o.escaped=true;return o}var a=this.prev();var s=i.last(a.nodes);if(s.text){var c=i.last(s.nodes);if(c.val===")"&&/[!@*?+]\(/.test(s.text)){var u=s.nodes[0];var l=s.nodes[1];if(u.type==="brace.open"&&l&&l.type==="text"){l.optimize=false}}}if(n.nodes.length>2){var f=n.nodes[1];if(f.type==="text"&&f.val===","){n.nodes.splice(1,1);n.nodes.push(f)}}n.push(o)}).set("boundary",function(){var e=this.position();var t=this.match(/^[$^](?!\{)/);if(!t)return;return e(new r({type:"text",val:t[0]}))}).set("nobrace",function(){var e=this.isInside("brace");var t=this.position();var n=this.match(/^\{[^,]?\}/);if(!n)return;var i=this.prev();var o=n[0];if(e&&i.type==="brace"){i.text=i.text||"";i.text+=o}return t(new r({type:"text",multiplier:0,val:o}))}).set("text",function(){var e=this.isInside("brace");var n=this.position();var i=this.match(/^((?!\\)[^${}[\]])+/);if(!i)return;var o=this.prev();var a=i[0];if(e&&o.type==="brace"){o.text=o.text||"";o.text+=a}var s=n(new r({type:"text",multiplier:1,val:a}));return concatNodes.call(this,n,s,o,t)})};function isExtglobChar(e){return e==="!"||e==="@"||e==="*"||e==="?"||e==="+"}function concatNodes(e,t,n,r){t.orig=t.val;var o=this.prev();var a=i.last(o.nodes);var s=false;if(t.val.length>1){var c=t.val.charAt(0);var u=t.val.slice(-1);s=c==='"'&&u==='"'||c==="'"&&u==="'"||c==="`"&&u==="`"}if(s&&r.unescape!==false){t.val=t.val.slice(1,t.val.length-1);t.escaped=true}if(t.match){var l=t.match[1];if(!l||l.indexOf("}")===-1){l=t.match[0]}var f=l.replace(/\{/g,",").replace(/\}/g,"");t.multiplier*=f.length;t.val=""}var p=a.type==="text"&&a.multiplier===1&&t.multiplier===1&&t.val;if(p){a.val+=t.val;return}o.push(t)}},9305:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(1390);var i=n(2427);var o="7";var a=function(){function API(e){this.dsn=e;this._dsnObject=new i.Dsn(e)}API.prototype.getDsn=function(){return this._dsnObject};API.prototype.getStoreEndpoint=function(){return""+this._getBaseUrl()+this.getStoreEndpointPath()};API.prototype.getStoreEndpointWithUrlEncodedAuth=function(){var e=this._dsnObject;var t={sentry_key:e.user,sentry_version:o};return this.getStoreEndpoint()+"?"+r.urlEncode(t)};API.prototype._getBaseUrl=function(){var e=this._dsnObject;var t=e.protocol?e.protocol+":":"";var n=e.port?":"+e.port:"";return t+"//"+e.host+n};API.prototype.getStoreEndpointPath=function(){var e=this._dsnObject;return(e.path?"/"+e.path:"")+"/api/"+e.projectId+"/store/"};API.prototype.getRequestHeaders=function(e,t){var n=this._dsnObject;var r=["Sentry sentry_version="+o];r.push("sentry_timestamp="+(new Date).getTime());r.push("sentry_client="+e+"/"+t);r.push("sentry_key="+n.user);if(n.pass){r.push("sentry_secret="+n.pass)}return{"Content-Type":"application/json","X-Sentry-Auth":r.join(", ")}};API.prototype.getReportDialogEndpoint=function(e){if(e===void 0){e={}}var t=this._dsnObject;var n=""+this._getBaseUrl()+(t.path?"/"+t.path:"")+"/api/embed/error-page/";var r=[];r.push("dsn="+t.toString());for(var i in e){if(i==="user"){if(!e.user){continue}if(e.user.name){r.push("name="+encodeURIComponent(e.user.name))}if(e.user.email){r.push("email="+encodeURIComponent(e.user.email))}}else{r.push(encodeURIComponent(i)+"="+encodeURIComponent(e[i]))}}if(r.length){return n+"?"+r.join("&")}return n};return API}();t.API=a},9335:function(e,t,n){var r=n(9423);var i=r.Buffer;function copyProps(e,t){for(var n in e){t[n]=e[n]}}if(i.from&&i.alloc&&i.allocUnsafe&&i.allocUnsafeSlow){e.exports=r}else{copyProps(r,t);t.Buffer=SafeBuffer}function SafeBuffer(e,t,n){return i(e,t,n)}SafeBuffer.prototype=Object.create(i.prototype);copyProps(i,SafeBuffer);SafeBuffer.from=function(e,t,n){if(typeof e==="number"){throw new TypeError("Argument must not be a number")}return i(e,t,n)};SafeBuffer.alloc=function(e,t,n){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}var r=i(e);if(t!==undefined){if(typeof n==="string"){r.fill(t,n)}else{r.fill(t)}}else{r.fill(0)}return r};SafeBuffer.allocUnsafe=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return i(e)};SafeBuffer.allocUnsafeSlow=function(e){if(typeof e!=="number"){throw new TypeError("Argument must be a number")}return r.SlowBuffer(e)}},9344:function(e,t,n){var r=process.platform==="win32";var i=n(5897);var o=n(2041).exec;var a=n(1678);var s=n(9522);function memo(e,n,r){var i=false;var a=false;t[e]=function(s){var c=n();if(!c&&!i&&!a&&r){i=true;a=true;o(r,function(e,t,n){a=false;if(e)return;c=t.trim()})}t[e]=function(e){if(e)process.nextTick(e.bind(null,null,c));return c};if(s&&!a)process.nextTick(s.bind(null,null,c));return c}}memo("user",function(){return r?process.env.USERDOMAIN+"\\"+process.env.USERNAME:process.env.USER},"whoami");memo("prompt",function(){return r?process.env.PROMPT:process.env.PS1});memo("hostname",function(){return r?process.env.COMPUTERNAME:process.env.HOSTNAME},"hostname");memo("tmpdir",function(){return a()});memo("home",function(){return s()});memo("path",function(){return(process.env.PATH||process.env.Path||process.env.path).split(r?";":":")});memo("editor",function(){return process.env.EDITOR||process.env.VISUAL||(r?"notepad.exe":"vi")});memo("shell",function(){return r?process.env.ComSpec||"cmd":process.env.SHELL||"bash"})},9353:function(e,t,n){"use strict";var r=n(6661);var i=Object.assign||function _extend(e,t){if(t===null||typeof t!=="object")return e;var n=Object.keys(t);var r=n.length;while(r--){e[n[r]]=t[n[r]]}return e};e.exports=GitHost;function GitHost(e,t,n,i,o,a,s){var c=this;c.type=e;Object.keys(r[e]).forEach(function(t){c[t]=r[e][t]});c.user=t;c.auth=n;c.project=i;c.committish=o;c.default=a;c.opts=s||{}}GitHost.prototype.hash=function(){return this.committish?"#"+this.committish:""};GitHost.prototype._fill=function(e,t){if(!e)return;var n=i({},t);n.path=n.path?n.path.replace(/^[\/]+/g,""):"";t=i(i({},this.opts),t);var r=this;Object.keys(this).forEach(function(e){if(r[e]!=null&&n[e]==null)n[e]=r[e]});var o=n.auth;var a=n.committish;var s=n.fragment;var c=n.path;var u=n.project;Object.keys(n).forEach(function(e){var t=n[e];if((e==="path"||e==="project")&&typeof t==="string"){n[e]=t.split("/").map(function(e){return encodeURIComponent(e)}).join("/")}else{n[e]=encodeURIComponent(t)}});n["auth@"]=o?o+"@":"";n["#fragment"]=s?"#"+this.hashformat(s):"";n.fragment=n.fragment?n.fragment:"";n["#path"]=c?"#"+this.hashformat(c):"";n["/path"]=n.path?"/"+n.path:"";n.projectPath=u.split("/").map(encodeURIComponent).join("/");if(t.noCommittish){n["#committish"]="";n["/tree/committish"]="";n["/committish"]="";n.committish=""}else{n["#committish"]=a?"#"+a:"";n["/tree/committish"]=n.committish?"/"+n.treepath+"/"+n.committish:"";n["/committish"]=n.committish?"/"+n.committish:"";n.committish=n.committish||"master"}var l=e;Object.keys(n).forEach(function(e){l=l.replace(new RegExp("[{]"+e+"[}]","g"),n[e])});if(t.noGitPlus){return l.replace(/^git[+]/,"")}else{return l}};GitHost.prototype.ssh=function(e){return this._fill(this.sshtemplate,e)};GitHost.prototype.sshurl=function(e){return this._fill(this.sshurltemplate,e)};GitHost.prototype.browse=function(e,t,n){if(typeof e==="string"){if(typeof t!=="string"){n=t;t=null}return this._fill(this.browsefiletemplate,i({fragment:t,path:e},n))}else{return this._fill(this.browsetemplate,e)}};GitHost.prototype.docs=function(e){return this._fill(this.docstemplate,e)};GitHost.prototype.bugs=function(e){return this._fill(this.bugstemplate,e)};GitHost.prototype.https=function(e){return this._fill(this.httpstemplate,e)};GitHost.prototype.git=function(e){return this._fill(this.gittemplate,e)};GitHost.prototype.shortcut=function(e){return this._fill(this.shortcuttemplate,e)};GitHost.prototype.path=function(e){return this._fill(this.pathtemplate,e)};GitHost.prototype.tarball=function(e){var t=i({},e,{noCommittish:false});return this._fill(this.tarballtemplate,t)};GitHost.prototype.file=function(e,t){return this._fill(this.filetemplate,i({path:e},t))};GitHost.prototype.getDefaultRepresentation=function(){return this.default};GitHost.prototype.toString=function(e){if(this.default&&typeof this[this.default]==="function")return this[this.default](e);return this.sshurl(e)}},9361:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(7840);e.exports={readJson:r(i.readFile),readJsonSync:i.readFileSync,writeJson:r(i.writeFile),writeJsonSync:i.writeFileSync}},9364:function(e,t,n){"use strict";var r=n(8430);var i=n(202);var o=n(4123);e.exports=streamToPromise;function streamToPromise(e){if(e.readable)return fromReadable(e);if(e.writable)return fromWritable(e);return i.resolve()}function fromReadable(e){var t=r(e);if(e.resume)e.resume();return t.then(function concat(t){if(e._readableState&&e._readableState.objectMode){return t}return Buffer.concat(t.map(bufferize))})}function fromWritable(e){return new i(function(t,n){o(e,function(e){(e?n:t)(e)})})}function bufferize(e){return Buffer.isBuffer(e)?e:new Buffer(e)}},9368:function(e,t,n){var r=n(649);var i=n(6886).Stream;var o=n(7460);e.exports=CombinedStream;function CombinedStream(){this.writable=false;this.readable=true;this.dataSize=0;this.maxDataSize=2*1024*1024;this.pauseStreams=true;this._released=false;this._streams=[];this._currentStream=null;this._insideLoop=false;this._pendingNext=false}r.inherits(CombinedStream,i);CombinedStream.create=function(e){var t=new this;e=e||{};for(var n in e){t[n]=e[n]}return t};CombinedStream.isStreamLike=function(e){return typeof e!=="function"&&typeof e!=="string"&&typeof e!=="boolean"&&typeof e!=="number"&&!Buffer.isBuffer(e)};CombinedStream.prototype.append=function(e){var t=CombinedStream.isStreamLike(e);if(t){if(!(e instanceof o)){var n=o.create(e,{maxDataSize:Infinity,pauseStream:this.pauseStreams});e.on("data",this._checkDataSize.bind(this));e=n}this._handleErrors(e);if(this.pauseStreams){e.pause()}}this._streams.push(e);return this};CombinedStream.prototype.pipe=function(e,t){i.prototype.pipe.call(this,e,t);this.resume();return e};CombinedStream.prototype._getNext=function(){this._currentStream=null;if(this._insideLoop){this._pendingNext=true;return}this._insideLoop=true;try{do{this._pendingNext=false;this._realGetNext()}while(this._pendingNext)}finally{this._insideLoop=false}};CombinedStream.prototype._realGetNext=function(){var e=this._streams.shift();if(typeof e=="undefined"){this.end();return}if(typeof e!=="function"){this._pipeNext(e);return}var t=e;t(function(e){var t=CombinedStream.isStreamLike(e);if(t){e.on("data",this._checkDataSize.bind(this));this._handleErrors(e)}this._pipeNext(e)}.bind(this))};CombinedStream.prototype._pipeNext=function(e){this._currentStream=e;var t=CombinedStream.isStreamLike(e);if(t){e.on("end",this._getNext.bind(this));e.pipe(this,{end:false});return}var n=e;this.write(n);this._getNext()};CombinedStream.prototype._handleErrors=function(e){var t=this;e.on("error",function(e){t._emitError(e)})};CombinedStream.prototype.write=function(e){this.emit("data",e)};CombinedStream.prototype.pause=function(){if(!this.pauseStreams){return}if(this.pauseStreams&&this._currentStream&&typeof this._currentStream.pause=="function")this._currentStream.pause();this.emit("pause")};CombinedStream.prototype.resume=function(){if(!this._released){this._released=true;this.writable=true;this._getNext()}if(this.pauseStreams&&this._currentStream&&typeof this._currentStream.resume=="function")this._currentStream.resume();this.emit("resume")};CombinedStream.prototype.end=function(){this._reset();this.emit("end")};CombinedStream.prototype.destroy=function(){this._reset();this.emit("close")};CombinedStream.prototype._reset=function(){this.writable=false;this._streams=[];this._currentStream=null};CombinedStream.prototype._checkDataSize=function(){this._updateDataSize();if(this.dataSize<=this.maxDataSize){return}var e="DelayedStream#maxDataSize of "+this.maxDataSize+" bytes exceeded.";this._emitError(new Error(e))};CombinedStream.prototype._updateDataSize=function(){this.dataSize=0;var e=this;this._streams.forEach(function(t){if(!t.dataSize){return}e.dataSize+=t.dataSize});if(this._currentStream&&this._currentStream.dataSize){this.dataSize+=this._currentStream.dataSize}};CombinedStream.prototype._emitError=function(e){this._reset();this.emit("error",e)}},9370:function(e,t,n){"use strict";var r=n(4730);var i=r.maybeWrapAsError;var o=n(2659);var a=o.OperationalError;var s=n(5467);function isUntypedError(e){return e instanceof Error&&s.getPrototypeOf(e)===Error.prototype}var c=/^(?:name|message|stack|cause)$/;function wrapAsOperationalError(e){var t;if(isUntypedError(e)){t=new a(e);t.name=e.name;t.message=e.message;t.stack=e.stack;var n=s.keys(e);for(var i=0;i<n.length;++i){var o=n[i];if(!c.test(o)){t[o]=e[o]}}return t}r.markAsOriginatingFromRejection(e);return e}function nodebackForPromise(e,t){return function(n,r){if(e===null)return;if(n){var o=wrapAsOperationalError(i(n));e._attachExtraTrace(o);e._reject(o)}else if(!t){e._fulfill(r)}else{var a=arguments.length;var s=new Array(Math.max(a-1,0));for(var c=1;c<a;++c){s[c-1]=arguments[c]}e._fulfill(s)}e=null}}e.exports=nodebackForPromise},9374:function(e,t,n){"use strict";var r=n(4859).EventEmitter;var i=n(662);var o=n(5897);var a=n(959);var s=n(4912);var c=n(7396);var u=n(7955);var l=n(7982);var f=n(8368);var p=n(3413);var d=n(6393);var h=n(4614);var m=n(2155);var v=n(3635);var g=function(e){if(e==null)return[];return Array.isArray(e)?e:[e]};var y=function(e,t){if(t==null)t=[];e.forEach(function(e){if(Array.isArray(e)){y(e,t)}else{t.push(e)}});return t};var b=function(e){return typeof e==="string"};function FSWatcher(e){r.call(this);var t={};if(e)for(var n in e)t[n]=e[n];this._watched=Object.create(null);this._closers=Object.create(null);this._ignoredPaths=Object.create(null);Object.defineProperty(this,"_globIgnored",{get:function(){return Object.keys(this._ignoredPaths)}});this.closed=false;this._throttled=Object.create(null);this._symlinkPaths=Object.create(null);function undef(e){return t[e]===undefined}if(undef("persistent"))t.persistent=true;if(undef("ignoreInitial"))t.ignoreInitial=false;if(undef("ignorePermissionErrors"))t.ignorePermissionErrors=false;if(undef("interval"))t.interval=100;if(undef("binaryInterval"))t.binaryInterval=300;if(undef("disableGlobbing"))t.disableGlobbing=false;this.enableBinaryInterval=t.binaryInterval!==t.interval;if(undef("useFsEvents"))t.useFsEvents=!t.usePolling;if(!v.canUse())t.useFsEvents=false;if(undef("usePolling")&&!t.useFsEvents){t.usePolling=process.platform==="darwin"}var i=process.env.CHOKIDAR_USEPOLLING;if(i!==undefined){var o=i.toLowerCase();if(o==="false"||o==="0"){t.usePolling=false}else if(o==="true"||o==="1"){t.usePolling=true}else{t.usePolling=!!o}}var a=process.env.CHOKIDAR_INTERVAL;if(a){t.interval=parseInt(a)}if(undef("atomic"))t.atomic=!t.usePolling&&!t.useFsEvents;if(t.atomic)this._pendingUnlinks=Object.create(null);if(undef("followSymlinks"))t.followSymlinks=true;if(undef("awaitWriteFinish"))t.awaitWriteFinish=false;if(t.awaitWriteFinish===true)t.awaitWriteFinish={};var s=t.awaitWriteFinish;if(s){if(!s.stabilityThreshold)s.stabilityThreshold=2e3;if(!s.pollInterval)s.pollInterval=100;this._pendingWrites=Object.create(null)}if(t.ignored)t.ignored=g(t.ignored);this._isntIgnored=function(e,t){return!this._isIgnored(e,t)}.bind(this);var c=0;this._emitReady=function(){if(++c>=this._readyCount){this._emitReady=Function.prototype;this._readyEmitted=true;process.nextTick(this.emit.bind(this,"ready"))}}.bind(this);this.options=t;Object.freeze(t)}f(FSWatcher,r);FSWatcher.prototype._emit=function(e,t,n,r,a){if(this.options.cwd)t=o.relative(this.options.cwd,t);var s=[e,t];if(a!==undefined)s.push(n,r,a);else if(r!==undefined)s.push(n,r);else if(n!==undefined)s.push(n);var c=this.options.awaitWriteFinish;if(c&&this._pendingWrites[t]){this._pendingWrites[t].lastChange=new Date;return this}if(this.options.atomic){if(e==="unlink"){this._pendingUnlinks[t]=s;setTimeout(function(){Object.keys(this._pendingUnlinks).forEach(function(e){this.emit.apply(this,this._pendingUnlinks[e]);this.emit.apply(this,["all"].concat(this._pendingUnlinks[e]));delete this._pendingUnlinks[e]}.bind(this))}.bind(this),typeof this.options.atomic==="number"?this.options.atomic:100);return this}else if(e==="add"&&this._pendingUnlinks[t]){e=s[0]="change";delete this._pendingUnlinks[t]}}var u=function(){this.emit.apply(this,s);if(e!=="error")this.emit.apply(this,["all"].concat(s))}.bind(this);if(c&&(e==="add"||e==="change")&&this._readyEmitted){var l=function(t,n){if(t){e=s[0]="error";s[1]=t;u()}else if(n){if(s.length>2){s[2]=n}else{s.push(n)}u()}};this._awaitWriteFinish(t,c.stabilityThreshold,e,l);return this}if(e==="change"){if(!this._throttle("change",t,50))return this}if(this.options.alwaysStat&&n===undefined&&(e==="add"||e==="addDir"||e==="change")){var f=this.options.cwd?o.join(this.options.cwd,t):t;i.stat(f,function(e,t){if(e||!t)return;s.push(t);u()})}else{u()}return this};FSWatcher.prototype._handleError=function(e){var t=e&&e.code;var n=this.options.ignorePermissionErrors;if(e&&t!=="ENOENT"&&t!=="ENOTDIR"&&(!n||t!=="EPERM"&&t!=="EACCES"))this.emit("error",e);return e||this.closed};FSWatcher.prototype._throttle=function(e,t,n){if(!(e in this._throttled)){this._throttled[e]=Object.create(null)}var r=this._throttled[e];if(t in r){r[t].count++;return false}function clear(){var e=r[t]?r[t].count:0;delete r[t];clearTimeout(i);return e}var i=setTimeout(clear,n);r[t]={timeoutObject:i,clear:clear,count:0};return r[t]};FSWatcher.prototype._awaitWriteFinish=function(e,t,n,r){var a;var s=e;if(this.options.cwd&&!l(e)){s=o.join(this.options.cwd,e)}var c=new Date;var u=function(n){i.stat(s,function(i,o){if(i||!(e in this._pendingWrites)){if(i&&i.code!=="ENOENT")r(i);return}var s=new Date;if(n&&o.size!=n.size){this._pendingWrites[e].lastChange=s}if(s-this._pendingWrites[e].lastChange>=t){delete this._pendingWrites[e];r(null,o)}else{a=setTimeout(u.bind(this,o),this.options.awaitWriteFinish.pollInterval)}}.bind(this))}.bind(this);if(!(e in this._pendingWrites)){this._pendingWrites[e]={lastChange:c,cancelWait:function(){delete this._pendingWrites[e];clearTimeout(a);return n}.bind(this)};a=setTimeout(u.bind(this),this.options.awaitWriteFinish.pollInterval)}};var w=/\..*\.(sw[px])$|\~$|\.subl.*\.tmp/;FSWatcher.prototype._isIgnored=function(e,t){if(this.options.atomic&&w.test(e))return true;if(!this._userIgnored){var n=this.options.cwd;var r=this.options.ignored;if(n&&r){r=r.map(function(e){if(typeof e!=="string")return e;return h.normalize(l(e)?e:o.join(n,e))})}var i=g(r).filter(function(e){return typeof e==="string"&&!u(e)}).map(function(e){return e+"/**"});this._userIgnored=s(this._globIgnored.concat(r).concat(i))}return this._userIgnored([e,t])};var x=/^\.[\/\\]/;FSWatcher.prototype._getWatchHelpers=function(e,t){e=e.replace(x,"");var n=t||this.options.disableGlobbing||!u(e)?e:c(e);var r=o.resolve(n);var i=n!==e;var a=i?s(e):false;var l=this.options.followSymlinks;var f=i&&l?null:false;var d=function(e){if(f==null){f=e.fullParentDir===r?false:{realPath:e.fullParentDir,linkPath:r}}if(f){return e.fullPath.replace(f.realPath,f.linkPath)}return e.fullPath};var h=function(e){return o.join(n,o.relative(n,d(e)))};var m=function(e){if(e.stat&&e.stat.isSymbolicLink())return b(e);var t=h(e);return(!i||a(t))&&this._isntIgnored(t,e.stat)&&(this.options.ignorePermissionErrors||this._hasReadPermissions(e.stat))}.bind(this);var v=function(e){if(!i)return false;var t=[];var r=p.expand(e);r.forEach(function(e){t.push(o.relative(n,e).split(/[\/\\]/))});return t};var g=v(e);if(g){g.forEach(function(e){if(e.length>1)e.pop()})}var y;var b=function(e){if(i){var t=v(d(e));var n=false;y=!g.some(function(e){return e.every(function(e,r){if(e==="**")n=true;return n||!t[0][r]||s(e,t[0][r])})})}return!y&&this._isntIgnored(h(e),e.stat)}.bind(this);return{followSymlinks:l,statMethod:l?"stat":"lstat",path:e,watchPath:n,entryPath:h,hasGlob:i,globFilter:a,filterPath:m,filterDir:b}};FSWatcher.prototype._getWatchedDir=function(e){var t=o.resolve(e);var n=this._remove.bind(this);if(!(t in this._watched))this._watched[t]={_items:Object.create(null),add:function(e){if(e!=="."&&e!=="..")this._items[e]=true},remove:function(e){delete this._items[e];if(!this.children().length){i.readdir(t,function(e){if(e)n(o.dirname(t),o.basename(t))})}},has:function(e){return e in this._items},children:function(){return Object.keys(this._items)}};return this._watched[t]};FSWatcher.prototype._hasReadPermissions=function(e){return Boolean(4&parseInt(((e&&e.mode)&511).toString(8)[0],10))};FSWatcher.prototype._remove=function(e,t){var n=o.join(e,t);var r=o.resolve(n);var i=this._watched[n]||this._watched[r];if(!this._throttle("remove",n,100))return;var a=Object.keys(this._watched);if(!i&&!this.options.useFsEvents&&a.length===1){this.add(e,t,true)}var s=this._getWatchedDir(n).children();s.forEach(function(e){this._remove(n,e)},this);var c=this._getWatchedDir(e);var u=c.has(t);c.remove(t);var l=n;if(this.options.cwd)l=o.relative(this.options.cwd,n);if(this.options.awaitWriteFinish&&this._pendingWrites[l]){var f=this._pendingWrites[l].cancelWait();if(f==="add")return}delete this._watched[n];delete this._watched[r];var p=i?"unlinkDir":"unlink";if(u&&!this._isIgnored(n))this._emit(p,n);if(!this.options.useFsEvents){this._closePath(n)}};FSWatcher.prototype._closePath=function(e){if(!this._closers[e])return;this._closers[e].forEach(function(e){e()});delete this._closers[e];this._getWatchedDir(o.dirname(e)).remove(o.basename(e))};FSWatcher.prototype.add=function(e,t,n){var r=this.options.disableGlobbing;var i=this.options.cwd;this.closed=false;e=y(g(e));if(!e.every(b)){throw new TypeError("Non-string provided as watch path: "+e)}if(i)e=e.map(function(e){var t;if(l(e)){t=e}else if(e[0]==="!"){t="!"+o.join(i,e.substring(1))}else{t=o.join(i,e)}if(r||!u(e)){return t}else{return d(t)}});e=e.filter(function(e){if(e[0]==="!"){this._ignoredPaths[e.substring(1)]=true}else{delete this._ignoredPaths[e];delete this._ignoredPaths[e+"/**"];this._userIgnored=null;return true}},this);if(this.options.useFsEvents&&v.canUse()){if(!this._readyCount)this._readyCount=e.length;if(this.options.persistent)this._readyCount*=2;e.forEach(this._addToFsEvents,this)}else{if(!this._readyCount)this._readyCount=0;this._readyCount+=e.length;a(e,function(e,r){this._addToNodeFs(e,!n,0,0,t,function(e,t){if(t)this._emitReady();r(e,t)}.bind(this))}.bind(this),function(e,n){n.forEach(function(e){if(!e||this.closed)return;this.add(o.dirname(e),o.basename(t||e))},this)}.bind(this))}return this};FSWatcher.prototype.unwatch=function(e){if(this.closed)return this;e=y(g(e));e.forEach(function(e){if(!l(e)&&!this._closers[e]){if(this.options.cwd)e=o.join(this.options.cwd,e);e=o.resolve(e)}this._closePath(e);this._ignoredPaths[e]=true;if(e in this._watched){this._ignoredPaths[e+"/**"]=true}this._userIgnored=null},this);return this};FSWatcher.prototype.close=function(){if(this.closed)return this;this.closed=true;Object.keys(this._closers).forEach(function(e){this._closers[e].forEach(function(e){e()});delete this._closers[e]},this);this._watched=Object.create(null);this.removeAllListeners();return this};FSWatcher.prototype.getWatched=function(){var e={};Object.keys(this._watched).forEach(function(t){var n=this.options.cwd?o.relative(this.options.cwd,t):t;e[n||"."]=Object.keys(this._watched[t]._items).sort()}.bind(this));return e};function importHandler(e){Object.keys(e.prototype).forEach(function(t){FSWatcher.prototype[t]=e.prototype[t]})}importHandler(m);if(v.canUse())importHandler(v);t.FSWatcher=FSWatcher;t.watch=function(e,t){return new FSWatcher(t).add(e)}},9380:function(e){e.exports=require("constants")},9383:function(e,t,n){"use strict";const r=n(5897);const i=n(7177);const o=n(6368);const a=n(8497);const s=n(8690);const c=n(4096);const u=process.platform==="win32";const l=/\.(?:com|exe)$/i;const f=/node_modules[\\\/].bin[\\\/][^\\\/]+\.cmd$/i;const p=i(()=>c.satisfies(process.version,"^4.8.0 || ^5.7.0 || >= 6.0.0",true))||false;function detectShebang(e){e.file=o(e);const t=e.file&&s(e.file);if(t){e.args.unshift(e.file);e.command=t;return o(e)}return e.file}function parseNonShell(e){if(!u){return e}const t=detectShebang(e);const n=!l.test(t);if(e.options.forceShell||n){const n=f.test(t);e.command=r.normalize(e.command);e.command=a.command(e.command);e.args=e.args.map(e=>a.argument(e,n));const i=[e.command].concat(e.args).join(" ");e.args=["/d","/s","/c",`"${i}"`];e.command=process.env.comspec||"cmd.exe";e.options.windowsVerbatimArguments=true}return e}function parseShell(e){if(p){return e}const t=[e.command].concat(e.args).join(" ");if(u){e.command=typeof e.options.shell==="string"?e.options.shell:process.env.comspec||"cmd.exe";e.args=["/d","/s","/c",`"${t}"`];e.options.windowsVerbatimArguments=true}else{if(typeof e.options.shell==="string"){e.command=e.options.shell}else if(process.platform==="android"){e.command="/system/bin/sh"}else{e.command="/bin/sh"}e.args=["-c",t]}return e}function parse(e,t,n){if(t&&!Array.isArray(t)){n=t;t=null}t=t?t.slice(0):[];n=Object.assign({},n);const r={command:e,args:t,options:n,file:undefined,original:{command:e,args:t}};return n.shell?parseShell(r):parseNonShell(r)}e.exports=parse},9400:function(e,t,n){"use strict";const r=n(662);const i=n(5897);const o=r.lchown?"lchown":"chown";const a=r.lchownSync?"lchownSync":"chownSync";const s=r.lchown&&!process.version.match(/v1[1-9]+\./)&&!process.version.match(/v10\.[6-9]/);const c=s?(e,t,n,i)=>o=>{if(!o||o.code!=="EISDIR")i(o);else r.chown(e,t,n,i)}:(e,t,n,r)=>r;const u=s?(e,t,n)=>{try{return r[a](e,t,n)}catch(i){if(i.code!=="EISDIR")throw i;r.chownSync(e,t,n)}}:r[a];const l=process.version;let f=(e,t,n)=>r.readdir(e,t,n);let p=(e,t)=>r.readdirSync(e,t);if(/^v4\./.test(l))f=((e,t,n)=>r.readdir(e,n));const d=(e,t,n,a,s)=>{if(typeof t==="string")return r.lstat(i.resolve(e,t),(r,i)=>{if(r)return s(r);i.name=t;d(e,i,n,a,s)});if(t.isDirectory()){h(i.resolve(e,t.name),n,a,u=>{if(u)return s(u);const l=i.resolve(e,t.name);r[o](l,n,a,c(l,n,a,s))})}else{const u=i.resolve(e,t.name);r[o](u,n,a,c(u,n,a,s))}};const h=(e,t,n,i)=>{f(e,{withFileTypes:true},(a,s)=>{if(a&&a.code!=="ENOTDIR"&&a.code!=="ENOTSUP")return i(a);if(a||!s.length)return r[o](e,t,n,c(e,t,n,i));let u=s.length;let l=null;const f=a=>{if(l)return;if(a)return i(l=a);if(--u===0)return r[o](e,t,n,c(e,t,n,i))};s.forEach(r=>d(e,r,t,n,f))})};const m=(e,t,n,o)=>{if(typeof t==="string"){const n=r.lstatSync(i.resolve(e,t));n.name=t;t=n}if(t.isDirectory())v(i.resolve(e,t.name),n,o);u(i.resolve(e,t.name),n,o)};const v=(e,t,n)=>{let r;try{r=p(e,{withFileTypes:true})}catch(r){if(r&&r.code==="ENOTDIR"&&r.code!=="ENOTSUP")return u(e,t,n);throw r}if(r.length)r.forEach(r=>m(e,r,t,n));return u(e,t,n)};e.exports=h;h.sync=v},9403:function(e,t,n){var r=n(6766);var i=n(1852);var o="__core-js_shared__";var a=i[o]||(i[o]={});(e.exports=function(e,t){return a[e]||(a[e]=t!==undefined?t:{})})("versions",[]).push({version:r.version,mode:n(214)?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},9405:function(e,t,n){"use strict";const r=n(6886).PassThrough;e.exports=(e=>{e=Object.assign({},e);const t=e.array;let n=e.encoding;const i=n==="buffer";let o=false;if(t){o=!(n||i)}else{n=n||"utf8"}if(i){n=null}let a=0;const s=[];const c=new r({objectMode:o});if(n){c.setEncoding(n)}c.on("data",e=>{s.push(e);if(o){a=s.length}else{a+=e.length}});c.getBufferedValue=(()=>{if(t){return s}return i?Buffer.concat(s,a):s.join("")});c.getBufferedLength=(()=>a);return c})},9412:function(e,t,n){"use strict";var r=n(8859);var i=n(649);t.init=init;t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.colors=[6,2,3,4,5,1];try{var o=n(4581);if(o&&(o.stderr||o).level>=2){t.colors=[20,21,26,27,32,33,38,39,40,41,42,43,44,45,56,57,62,63,68,69,74,75,76,77,78,79,80,81,92,93,98,99,112,113,128,129,134,135,148,149,160,161,162,163,164,165,166,167,168,169,170,171,172,173,178,179,184,185,196,197,198,199,200,201,202,203,204,205,206,207,208,209,214,215,220,221]}}catch(e){}t.inspectOpts=Object.keys(process.env).filter(function(e){return/^debug_/i.test(e)}).reduce(function(e,t){var n=t.substring(6).toLowerCase().replace(/_([a-z])/g,function(e,t){return t.toUpperCase()});var r=process.env[t];if(/^(yes|on|true|enabled)$/i.test(r)){r=true}else if(/^(no|off|false|disabled)$/i.test(r)){r=false}else if(r==="null"){r=null}else{r=Number(r)}e[n]=r;return e},{});function useColors(){return"colors"in t.inspectOpts?Boolean(t.inspectOpts.colors):r.isatty(process.stderr.fd)}function formatArgs(t){var n=this.namespace,r=this.useColors;if(r){var i=this.color;var o="[3"+(i<8?i:"8;5;"+i);var a=" ".concat(o,";1m").concat(n," ");t[0]=a+t[0].split("\n").join("\n"+a);t.push(o+"m+"+e.exports.humanize(this.diff)+"")}else{t[0]=getDate()+n+" "+t[0]}}function getDate(){if(t.inspectOpts.hideDate){return""}return(new Date).toISOString()+" "}function log(){return process.stderr.write(i.format.apply(i,arguments)+"\n")}function save(e){if(e){process.env.DEBUG=e}else{delete process.env.DEBUG}}function load(){return process.env.DEBUG}function init(e){e.inspectOpts={};var n=Object.keys(t.inspectOpts);for(var r=0;r<n.length;r++){e.inspectOpts[n[r]]=t.inspectOpts[n[r]]}}e.exports=n(6719)(t);var a=e.exports.formatters;a.o=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts).replace(/\s*\n\s*/g," ")};a.O=function(e){this.inspectOpts.colors=this.useColors;return i.inspect(e,this.inspectOpts)}},9414:function(e,t,n){"use strict";const r=n(2617);const i=64*1024;const o=n(5276)(i);function copyFileSync(e,t,n){const a=n.overwrite;const s=n.errorOnExist;const c=n.preserveTimestamps;if(r.existsSync(t)){if(a){r.unlinkSync(t)}else if(s){throw new Error(`${t} already exists`)}else return}const u=r.openSync(e,"r");const l=r.fstatSync(u);const f=r.openSync(t,"w",l.mode);let p=1;let d=0;while(p>0){p=r.readSync(u,o,0,i,d);r.writeSync(f,o,0,p);d+=p}if(c){r.futimesSync(f,l.atime,l.mtime)}r.closeSync(u);r.closeSync(f)}e.exports=copyFileSync},9415:function(e,t,n){"use strict";var r=n(6885);t.left=function(e,t){e.output.write(r.cursorBackward(t))};t.right=function(e,t){e.output.write(r.cursorForward(t))};t.up=function(e,t){e.output.write(r.cursorUp(t))};t.down=function(e,t){e.output.write(r.cursorDown(t))};t.clearLine=function(e,t){e.output.write(r.eraseLines(t))}},9423:function(e){e.exports=require("buffer")},9438:function(e){"use strict";e.exports=function ucs2length(e){var t=0,n=e.length,r=0,i;while(r<n){t++;i=e.charCodeAt(r++);if(i>=55296&&i<=56319&&r<n){i=e.charCodeAt(r);if((i&64512)==56320)r++}}return t}},9446:function(e){"use strict";var t;var n;try{t="iconv";n=require(t).Iconv}catch(e){}e.exports=n},9450:function(e,t,n){"use strict";const r=n(9052);const i=e=>{if(e.code==="ENOENT"){throw new Error("Couldn't find the termux-api scripts. You can install them with: apt install termux-api")}throw e};e.exports={copy:async e=>{try{await r("termux-clipboard-set",e)}catch(e){i(e)}},paste:async e=>{try{return await r.stdout("termux-clipboard-get",e)}catch(e){i(e)}},copySync:e=>{try{r.sync("termux-clipboard-set",e)}catch(e){i(e)}},pasteSync:e=>{try{return r.sync("termux-clipboard-get",e)}catch(e){i(e)}}}},9453:function(e,t,n){"use strict";var r=n(3564);var i=n(5897).extname;var o=/^\s*([^;\s]*)(?:;|\s|$)/;var a=/^text\//i;t.charset=charset;t.charsets={lookup:charset};t.contentType=contentType;t.extension=extension;t.extensions=Object.create(null);t.lookup=lookup;t.types=Object.create(null);populateMaps(t.extensions,t.types);function charset(e){if(!e||typeof e!=="string"){return false}var t=o.exec(e);var n=t&&r[t[1].toLowerCase()];if(n&&n.charset){return n.charset}if(t&&a.test(t[1])){return"UTF-8"}return false}function contentType(e){if(!e||typeof e!=="string"){return false}var n=e.indexOf("/")===-1?t.lookup(e):e;if(!n){return false}if(n.indexOf("charset")===-1){var r=t.charset(n);if(r)n+="; charset="+r.toLowerCase()}return n}function extension(e){if(!e||typeof e!=="string"){return false}var n=o.exec(e);var r=n&&t.extensions[n[1].toLowerCase()];if(!r||!r.length){return false}return r[0]}function lookup(e){if(!e||typeof e!=="string"){return false}var n=i("x."+e).toLowerCase().substr(1);if(!n){return false}return t.types[n]||false}function populateMaps(e,t){var n=["nginx","apache",undefined,"iana"];Object.keys(r).forEach(function forEachMimeType(i){var o=r[i];var a=o.extensions;if(!a||!a.length){return}e[i]=a;for(var s=0;s<a.length;s++){var c=a[s];if(t[c]){var u=n.indexOf(r[t[c]].source);var l=n.indexOf(o.source);if(t[c]!=="application/octet-stream"&&(u>l||u===l&&t[c].substr(0,12)==="application/")){continue}}t[c]=i}})}},9465:function(e,t,n){"use strict";var r=n(774);var i=/^https?:/;function Redirect(e){this.request=e;this.followRedirect=true;this.followRedirects=true;this.followAllRedirects=false;this.followOriginalHttpMethod=false;this.allowRedirect=function(){return true};this.maxRedirects=10;this.redirects=[];this.redirectsFollowed=0;this.removeRefererHeader=false}Redirect.prototype.onRequest=function(e){var t=this;if(e.maxRedirects!==undefined){t.maxRedirects=e.maxRedirects}if(typeof e.followRedirect==="function"){t.allowRedirect=e.followRedirect}if(e.followRedirect!==undefined){t.followRedirects=!!e.followRedirect}if(e.followAllRedirects!==undefined){t.followAllRedirects=e.followAllRedirects}if(t.followRedirects||t.followAllRedirects){t.redirects=t.redirects||[]}if(e.removeRefererHeader!==undefined){t.removeRefererHeader=e.removeRefererHeader}if(e.followOriginalHttpMethod!==undefined){t.followOriginalHttpMethod=e.followOriginalHttpMethod}};Redirect.prototype.redirectTo=function(e){var t=this;var n=t.request;var r=null;if(e.statusCode>=300&&e.statusCode<400&&e.caseless.has("location")){var i=e.caseless.get("location");n.debug("redirect",i);if(t.followAllRedirects){r=i}else if(t.followRedirects){switch(n.method){case"PATCH":case"PUT":case"POST":case"DELETE":break;default:r=i;break}}}else if(e.statusCode===401){var o=n._auth.onResponse(e);if(o){n.setHeader("authorization",o);r=n.uri}}return r};Redirect.prototype.onResponse=function(e){var t=this;var n=t.request;var o=t.redirectTo(e);if(!o||!t.allowRedirect.call(n,e)){return false}n.debug("redirect to",o);if(e.resume){e.resume()}if(t.redirectsFollowed>=t.maxRedirects){n.emit("error",new Error("Exceeded maxRedirects. Probably stuck in a redirect loop "+n.uri.href));return false}t.redirectsFollowed+=1;if(!i.test(o)){o=r.resolve(n.uri.href,o)}var a=n.uri;n.uri=r.parse(o);if(n.uri.protocol!==a.protocol){delete n.agent}t.redirects.push({statusCode:e.statusCode,redirectUri:o});if(t.followAllRedirects&&n.method!=="HEAD"&&e.statusCode!==401&&e.statusCode!==307){n.method=t.followOriginalHttpMethod?n.method:"GET"}delete n.src;delete n.req;delete n._started;if(e.statusCode!==401&&e.statusCode!==307){delete n.body;delete n._form;if(n.headers){n.removeHeader("host");n.removeHeader("content-type");n.removeHeader("content-length");if(n.uri.hostname!==n.originalHost.split(":")[0]){n.removeHeader("authorization")}}}if(!t.removeRefererHeader){n.setHeader("referer",a.href)}n.emit("redirect");n.init();return true};t.Redirect=Redirect},9466:function(e){"use strict";e.exports=((e,t)=>{t=t||(()=>{});return e.then(e=>new Promise(e=>{e(t())}).then(()=>e),e=>new Promise(e=>{e(t())}).then(()=>{throw e}))})},9468:function(e,t,n){"use strict";var r=n(5325);var i=n(9972);var o=n(6340);e.exports=function(e,t){return i(r(e)&&t?o(e,t):e)}},9471:function(e,t,n){"use strict";n.r(t);var r=n(8740);var i=n.n(r);var o=n(2325);var a=n.n(o);var s=n(2721);var c=n.n(s);var u=n(9472);async function getEventsStream(e,t,n){const r=await e.fetch(`/v2/now/deployments/${t}/events?${Object(s["stringify"])({direction:n.direction,follow:n.follow?"1":"",format:n.format||"lines",instanceId:n.instanceId,limit:n.limit,q:n.query,since:n.since,types:(n.types||[]).join(","),until:n.until})}`);const i=r.readable?await r.readable():r.body;const o=i.pipe(a.a.parse()).pipe(l);i.on("error",u["default"]);o.on("error",u["default"]);return o}const l=i.a.obj(function(e,t,n){if(Object.keys(e).length!==0){this.push(e)}n()});t["default"]=getEventsStream},9472:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return noop});function noop(){}},9476:function(e,t,n){var r=n(7774);var i=function(){return[{type:r.RANGE,from:48,to:57}]};var o=function(){return[{type:r.CHAR,value:95},{type:r.RANGE,from:97,to:122},{type:r.RANGE,from:65,to:90}].concat(i())};var a=function(){return[{type:r.CHAR,value:9},{type:r.CHAR,value:10},{type:r.CHAR,value:11},{type:r.CHAR,value:12},{type:r.CHAR,value:13},{type:r.CHAR,value:32},{type:r.CHAR,value:160},{type:r.CHAR,value:5760},{type:r.CHAR,value:6158},{type:r.CHAR,value:8192},{type:r.CHAR,value:8193},{type:r.CHAR,value:8194},{type:r.CHAR,value:8195},{type:r.CHAR,value:8196},{type:r.CHAR,value:8197},{type:r.CHAR,value:8198},{type:r.CHAR,value:8199},{type:r.CHAR,value:8200},{type:r.CHAR,value:8201},{type:r.CHAR,value:8202},{type:r.CHAR,value:8232},{type:r.CHAR,value:8233},{type:r.CHAR,value:8239},{type:r.CHAR,value:8287},{type:r.CHAR,value:12288},{type:r.CHAR,value:65279}]};var s=function(){return[{type:r.CHAR,value:10},{type:r.CHAR,value:13},{type:r.CHAR,value:8232},{type:r.CHAR,value:8233}]};t.words=function(){return{type:r.SET,set:o(),not:false}};t.notWords=function(){return{type:r.SET,set:o(),not:true}};t.ints=function(){return{type:r.SET,set:i(),not:false}};t.notInts=function(){return{type:r.SET,set:i(),not:true}};t.whitespace=function(){return{type:r.SET,set:a(),not:false}};t.notWhitespace=function(){return{type:r.SET,set:a(),not:true}};t.anyChar=function(){return{type:r.SET,set:s(),not:true}}},9479:function(e,t,n){var r=n(1650),i=n(8608);e.exports=terminator;function terminator(e){if(!Object.keys(this.jobs).length){return}this.index=this.size;r(this);i(e)(null,this.results)}},9482:function(e){e.exports={name:"got",version:"7.1.0",description:"Simplified HTTP requests",license:"MIT",repository:"sindresorhus/got",maintainers:[{name:"Sindre Sorhus",email:"sindresorhus@gmail.com",url:"sindresorhus.com"},{name:"Vsevolod Strukchinsky",email:"floatdrop@gmail.com",url:"github.com/floatdrop"},{name:"Alexander Tesfamichael",email:"alex.tesfamichael@gmail.com",url:"alextes.me"}],engines:{node:">=4"},scripts:{test:"xo && nyc ava",coveralls:"nyc report --reporter=text-lcov | coveralls"},files:["index.js"],keywords:["http","https","get","got","url","uri","request","util","utility","simple","curl","wget","fetch","net","network","electron"],dependencies:{"decompress-response":"^3.2.0",duplexer3:"^0.1.4","get-stream":"^3.0.0","is-plain-obj":"^1.1.0","is-retry-allowed":"^1.0.0","is-stream":"^1.0.0",isurl:"^1.0.0-alpha5","lowercase-keys":"^1.0.0","p-cancelable":"^0.3.0","p-timeout":"^1.1.1","safe-buffer":"^5.0.1","timed-out":"^4.0.0","url-parse-lax":"^1.0.0","url-to-options":"^1.0.1"},devDependencies:{ava:"^0.20.0",coveralls:"^2.11.4","form-data":"^2.1.1","get-port":"^3.0.0","into-stream":"^3.0.0",nyc:"^11.0.2",pem:"^1.4.4",pify:"^3.0.0",tempfile:"^2.0.0",tempy:"^0.1.0","universal-url":"^1.0.0-alpha",xo:"^0.18.0"},ava:{concurrency:4},browser:{"decompress-response":false}}},9491:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(4365));function getMinFromArgs(e){const t=i.default(e);return typeof t==="string"?toMinValue(t):t}t.default=getMinFromArgs;function toMinValue(e){return e==="auto"?0:e}},9498:function(e,t,n){"use strict";var r=n(3459);e.exports={Validation:errorSubclass(ValidationError),MissingRef:errorSubclass(MissingRefError)};function ValidationError(e){this.message="validation failed";this.errors=e;this.ajv=this.validation=true}MissingRefError.message=function(e,t){return"can't resolve reference "+t+" from id "+e};function MissingRefError(e,t,n){this.message=n||MissingRefError.message(e,t);this.missingRef=r.url(e,t);this.missingSchema=r.normalizeId(r.fullPath(this.missingRef))}function errorSubclass(e){e.prototype=Object.create(Error.prototype);e.prototype.constructor=e;return e}},9519:function(e){e.exports=[["0","\0",127],["8141","갂갃갅갆갋",4,"갘갞갟갡갢갣갥",6,"갮갲갳갴"],["8161","갵갶갷갺갻갽갾갿걁",9,"걌걎",5,"걕"],["8181","걖걗걙걚걛걝",18,"걲걳걵걶걹걻",4,"겂겇겈겍겎겏겑겒겓겕",6,"겞겢",5,"겫겭겮겱",6,"겺겾겿곀곂곃곅곆곇곉곊곋곍",7,"곖곘",7,"곢곣곥곦곩곫곭곮곲곴곷",4,"곾곿괁괂괃괅괇",4,"괎괐괒괓"],["8241","괔괕괖괗괙괚괛괝괞괟괡",7,"괪괫괮",5],["8261","괶괷괹괺괻괽",6,"굆굈굊",5,"굑굒굓굕굖굗"],["8281","굙",7,"굢굤",7,"굮굯굱굲굷굸굹굺굾궀궃",4,"궊궋궍궎궏궑",10,"궞",5,"궥",17,"궸",7,"귂귃귅귆귇귉",6,"귒귔",7,"귝귞귟귡귢귣귥",18],["8341","귺귻귽귾긂",5,"긊긌긎",5,"긕",7],["8361","긝",18,"긲긳긵긶긹긻긼"],["8381","긽긾긿깂깄깇깈깉깋깏깑깒깓깕깗",4,"깞깢깣깤깦깧깪깫깭깮깯깱",6,"깺깾",5,"꺆",5,"꺍",46,"꺿껁껂껃껅",6,"껎껒",5,"껚껛껝",8],["8441","껦껧껩껪껬껮",5,"껵껶껷껹껺껻껽",8],["8461","꼆꼉꼊꼋꼌꼎꼏꼑",18],["8481","꼤",7,"꼮꼯꼱꼳꼵",6,"꼾꽀꽄꽅꽆꽇꽊",5,"꽑",10,"꽞",5,"꽦",18,"꽺",5,"꾁꾂꾃꾅꾆꾇꾉",6,"꾒꾓꾔꾖",5,"꾝",26,"꾺꾻꾽꾾"],["8541","꾿꿁",5,"꿊꿌꿏",4,"꿕",6,"꿝",4],["8561","꿢",5,"꿪",5,"꿲꿳꿵꿶꿷꿹",6,"뀂뀃"],["8581","뀅",6,"뀍뀎뀏뀑뀒뀓뀕",6,"뀞",9,"뀩",26,"끆끇끉끋끍끏끐끑끒끖끘끚끛끜끞",29,"끾끿낁낂낃낅",6,"낎낐낒",5,"낛낝낞낣낤"],["8641","낥낦낧낪낰낲낶낷낹낺낻낽",6,"냆냊",5,"냒"],["8661","냓냕냖냗냙",6,"냡냢냣냤냦",10],["8681","냱",22,"넊넍넎넏넑넔넕넖넗넚넞",4,"넦넧넩넪넫넭",6,"넶넺",5,"녂녃녅녆녇녉",6,"녒녓녖녗녙녚녛녝녞녟녡",22,"녺녻녽녾녿놁놃",4,"놊놌놎놏놐놑놕놖놗놙놚놛놝"],["8741","놞",9,"놩",15],["8761","놹",18,"뇍뇎뇏뇑뇒뇓뇕"],["8781","뇖",5,"뇞뇠",7,"뇪뇫뇭뇮뇯뇱",7,"뇺뇼뇾",5,"눆눇눉눊눍",6,"눖눘눚",5,"눡",18,"눵",6,"눽",26,"뉙뉚뉛뉝뉞뉟뉡",6,"뉪",4],["8841","뉯",4,"뉶",5,"뉽",6,"늆늇늈늊",4],["8861","늏늒늓늕늖늗늛",4,"늢늤늧늨늩늫늭늮늯늱늲늳늵늶늷"],["8881","늸",15,"닊닋닍닎닏닑닓",4,"닚닜닞닟닠닡닣닧닩닪닰닱닲닶닼닽닾댂댃댅댆댇댉",6,"댒댖",5,"댝",54,"덗덙덚덝덠덡덢덣"],["8941","덦덨덪덬덭덯덲덳덵덶덷덹",6,"뎂뎆",5,"뎍"],["8961","뎎뎏뎑뎒뎓뎕",10,"뎢",5,"뎩뎪뎫뎭"],["8981","뎮",21,"돆돇돉돊돍돏돑돒돓돖돘돚돜돞돟돡돢돣돥돦돧돩",18,"돽",18,"됑",6,"됙됚됛됝됞됟됡",6,"됪됬",7,"됵",15],["8a41","둅",10,"둒둓둕둖둗둙",6,"둢둤둦"],["8a61","둧",4,"둭",18,"뒁뒂"],["8a81","뒃",4,"뒉",19,"뒞",5,"뒥뒦뒧뒩뒪뒫뒭",7,"뒶뒸뒺",5,"듁듂듃듅듆듇듉",6,"듑듒듓듔듖",5,"듞듟듡듢듥듧",4,"듮듰듲",5,"듹",26,"딖딗딙딚딝"],["8b41","딞",5,"딦딫",4,"딲딳딵딶딷딹",6,"땂땆"],["8b61","땇땈땉땊땎땏땑땒땓땕",6,"땞땢",8],["8b81","땫",52,"떢떣떥떦떧떩떬떭떮떯떲떶",4,"떾떿뗁뗂뗃뗅",6,"뗎뗒",5,"뗙",18,"뗭",18],["8c41","똀",15,"똒똓똕똖똗똙",4],["8c61","똞",6,"똦",5,"똭",6,"똵",5],["8c81","똻",12,"뙉",26,"뙥뙦뙧뙩",50,"뚞뚟뚡뚢뚣뚥",5,"뚭뚮뚯뚰뚲",16],["8d41","뛃",16,"뛕",8],["8d61","뛞",17,"뛱뛲뛳뛵뛶뛷뛹뛺"],["8d81","뛻",4,"뜂뜃뜄뜆",33,"뜪뜫뜭뜮뜱",6,"뜺뜼",7,"띅띆띇띉띊띋띍",6,"띖",9,"띡띢띣띥띦띧띩",6,"띲띴띶",5,"띾띿랁랂랃랅",6,"랎랓랔랕랚랛랝랞"],["8e41","랟랡",6,"랪랮",5,"랶랷랹",8],["8e61","럂",4,"럈럊",19],["8e81","럞",13,"럮럯럱럲럳럵",6,"럾렂",4,"렊렋렍렎렏렑",6,"렚렜렞",5,"렦렧렩렪렫렭",6,"렶렺",5,"롁롂롃롅",11,"롒롔",7,"롞롟롡롢롣롥",6,"롮롰롲",5,"롹롺롻롽",7],["8f41","뢅",7,"뢎",17],["8f61","뢠",7,"뢩",6,"뢱뢲뢳뢵뢶뢷뢹",4],["8f81","뢾뢿룂룄룆",5,"룍룎룏룑룒룓룕",7,"룞룠룢",5,"룪룫룭룮룯룱",6,"룺룼룾",5,"뤅",18,"뤙",6,"뤡",26,"뤾뤿륁륂륃륅",6,"륍륎륐륒",5],["9041","륚륛륝륞륟륡",6,"륪륬륮",5,"륶륷륹륺륻륽"],["9061","륾",5,"릆릈릋릌릏",15],["9081","릟",12,"릮릯릱릲릳릵",6,"릾맀맂",5,"맊맋맍맓",4,"맚맜맟맠맢맦맧맩맪맫맭",6,"맶맻",4,"먂",5,"먉",11,"먖",33,"먺먻먽먾먿멁멃멄멅멆"],["9141","멇멊멌멏멐멑멒멖멗멙멚멛멝",6,"멦멪",5],["9161","멲멳멵멶멷멹",9,"몆몈몉몊몋몍",5],["9181","몓",20,"몪몭몮몯몱몳",4,"몺몼몾",5,"뫅뫆뫇뫉",14,"뫚",33,"뫽뫾뫿묁묂묃묅",7,"묎묐묒",5,"묙묚묛묝묞묟묡",6],["9241","묨묪묬",7,"묷묹묺묿",4,"뭆뭈뭊뭋뭌뭎뭑뭒"],["9261","뭓뭕뭖뭗뭙",7,"뭢뭤",7,"뭭",4],["9281","뭲",21,"뮉뮊뮋뮍뮎뮏뮑",18,"뮥뮦뮧뮩뮪뮫뮭",6,"뮵뮶뮸",7,"믁믂믃믅믆믇믉",6,"믑믒믔",35,"믺믻믽믾밁"],["9341","밃",4,"밊밎밐밒밓밙밚밠밡밢밣밦밨밪밫밬밮밯밲밳밵"],["9361","밶밷밹",6,"뱂뱆뱇뱈뱊뱋뱎뱏뱑",8],["9381","뱚뱛뱜뱞",37,"벆벇벉벊벍벏",4,"벖벘벛",4,"벢벣벥벦벩",6,"벲벶",5,"벾벿볁볂볃볅",7,"볎볒볓볔볖볗볙볚볛볝",22,"볷볹볺볻볽"],["9441","볾",5,"봆봈봊",5,"봑봒봓봕",8],["9461","봞",5,"봥",6,"봭",12],["9481","봺",5,"뵁",6,"뵊뵋뵍뵎뵏뵑",6,"뵚",9,"뵥뵦뵧뵩",22,"붂붃붅붆붋",4,"붒붔붖붗붘붛붝",6,"붥",10,"붱",6,"붹",24],["9541","뷒뷓뷖뷗뷙뷚뷛뷝",11,"뷪",5,"뷱"],["9561","뷲뷳뷵뷶뷷뷹",6,"븁븂븄븆",5,"븎븏븑븒븓"],["9581","븕",6,"븞븠",35,"빆빇빉빊빋빍빏",4,"빖빘빜빝빞빟빢빣빥빦빧빩빫",4,"빲빶",4,"빾빿뺁뺂뺃뺅",6,"뺎뺒",5,"뺚",13,"뺩",14],["9641","뺸",23,"뻒뻓"],["9661","뻕뻖뻙",6,"뻡뻢뻦",5,"뻭",8],["9681","뻶",10,"뼂",5,"뼊",13,"뼚뼞",33,"뽂뽃뽅뽆뽇뽉",6,"뽒뽓뽔뽖",44],["9741","뾃",16,"뾕",8],["9761","뾞",17,"뾱",7],["9781","뾹",11,"뿆",5,"뿎뿏뿑뿒뿓뿕",6,"뿝뿞뿠뿢",89,"쀽쀾쀿"],["9841","쁀",16,"쁒",5,"쁙쁚쁛"],["9861","쁝쁞쁟쁡",6,"쁪",15],["9881","쁺",21,"삒삓삕삖삗삙",6,"삢삤삦",5,"삮삱삲삷",4,"삾샂샃샄샆샇샊샋샍샎샏샑",6,"샚샞",5,"샦샧샩샪샫샭",6,"샶샸샺",5,"섁섂섃섅섆섇섉",6,"섑섒섓섔섖",5,"섡섢섥섨섩섪섫섮"],["9941","섲섳섴섵섷섺섻섽섾섿셁",6,"셊셎",5,"셖셗"],["9961","셙셚셛셝",6,"셦셪",5,"셱셲셳셵셶셷셹셺셻"],["9981","셼",8,"솆",5,"솏솑솒솓솕솗",4,"솞솠솢솣솤솦솧솪솫솭솮솯솱",11,"솾",5,"쇅쇆쇇쇉쇊쇋쇍",6,"쇕쇖쇙",6,"쇡쇢쇣쇥쇦쇧쇩",6,"쇲쇴",7,"쇾쇿숁숂숃숅",6,"숎숐숒",5,"숚숛숝숞숡숢숣"],["9a41","숤숥숦숧숪숬숮숰숳숵",16],["9a61","쉆쉇쉉",6,"쉒쉓쉕쉖쉗쉙",6,"쉡쉢쉣쉤쉦"],["9a81","쉧",4,"쉮쉯쉱쉲쉳쉵",6,"쉾슀슂",5,"슊",5,"슑",6,"슙슚슜슞",5,"슦슧슩슪슫슮",5,"슶슸슺",33,"싞싟싡싢싥",5,"싮싰싲싳싴싵싷싺싽싾싿쌁",6,"쌊쌋쌎쌏"],["9b41","쌐쌑쌒쌖쌗쌙쌚쌛쌝",6,"쌦쌧쌪",8],["9b61","쌳",17,"썆",7],["9b81","썎",25,"썪썫썭썮썯썱썳",4,"썺썻썾",5,"쎅쎆쎇쎉쎊쎋쎍",50,"쏁",22,"쏚"],["9c41","쏛쏝쏞쏡쏣",4,"쏪쏫쏬쏮",5,"쏶쏷쏹",5],["9c61","쏿",8,"쐉",6,"쐑",9],["9c81","쐛",8,"쐥",6,"쐭쐮쐯쐱쐲쐳쐵",6,"쐾",9,"쑉",26,"쑦쑧쑩쑪쑫쑭",6,"쑶쑷쑸쑺",5,"쒁",18,"쒕",6,"쒝",12],["9d41","쒪",13,"쒹쒺쒻쒽",8],["9d61","쓆",25],["9d81","쓠",8,"쓪",5,"쓲쓳쓵쓶쓷쓹쓻쓼쓽쓾씂",9,"씍씎씏씑씒씓씕",6,"씝",10,"씪씫씭씮씯씱",6,"씺씼씾",5,"앆앇앋앏앐앑앒앖앚앛앜앟앢앣앥앦앧앩",6,"앲앶",5,"앾앿얁얂얃얅얆얈얉얊얋얎얐얒얓얔"],["9e41","얖얙얚얛얝얞얟얡",7,"얪",9,"얶"],["9e61","얷얺얿",4,"엋엍엏엒엓엕엖엗엙",6,"엢엤엦엧"],["9e81","엨엩엪엫엯엱엲엳엵엸엹엺엻옂옃옄옉옊옋옍옎옏옑",6,"옚옝",6,"옦옧옩옪옫옯옱옲옶옸옺옼옽옾옿왂왃왅왆왇왉",6,"왒왖",5,"왞왟왡",10,"왭왮왰왲",5,"왺왻왽왾왿욁",6,"욊욌욎",5,"욖욗욙욚욛욝",6,"욦"],["9f41","욨욪",5,"욲욳욵욶욷욻",4,"웂웄웆",5,"웎"],["9f61","웏웑웒웓웕",6,"웞웟웢",5,"웪웫웭웮웯웱웲"],["9f81","웳",4,"웺웻웼웾",5,"윆윇윉윊윋윍",6,"윖윘윚",5,"윢윣윥윦윧윩",6,"윲윴윶윸윹윺윻윾윿읁읂읃읅",4,"읋읎읐읙읚읛읝읞읟읡",6,"읩읪읬",7,"읶읷읹읺읻읿잀잁잂잆잋잌잍잏잒잓잕잙잛",4,"잢잧",4,"잮잯잱잲잳잵잶잷"],["a041","잸잹잺잻잾쟂",5,"쟊쟋쟍쟏쟑",6,"쟙쟚쟛쟜"],["a061","쟞",5,"쟥쟦쟧쟩쟪쟫쟭",13],["a081","쟻",4,"젂젃젅젆젇젉젋",4,"젒젔젗",4,"젞젟젡젢젣젥",6,"젮젰젲",5,"젹젺젻젽젾젿졁",6,"졊졋졎",5,"졕",26,"졲졳졵졶졷졹졻",4,"좂좄좈좉좊좎",5,"좕",7,"좞좠좢좣좤"],["a141","좥좦좧좩",18,"좾좿죀죁"],["a161","죂죃죅죆죇죉죊죋죍",6,"죖죘죚",5,"죢죣죥"],["a181","죦",14,"죶",5,"죾죿줁줂줃줇",4,"줎 、。·‥…¨〃­―∥\∼‘’“”〔〕〈",9,"±×÷≠≤≥∞∴°′″℃Å¢£¥♂♀∠⊥⌒∂∇≡≒§※☆★○●◎◇◆□■△▲▽▼→←↑↓↔〓≪≫√∽∝∵∫∬∈∋⊆⊇⊂⊃∪∩∧∨¬"],["a241","줐줒",5,"줙",18],["a261","줭",6,"줵",18],["a281","쥈",7,"쥒쥓쥕쥖쥗쥙",6,"쥢쥤",7,"쥭쥮쥯⇒⇔∀∃´~ˇ˘˝˚˙¸˛¡¿ː∮∑∏¤℉‰◁◀▷▶♤♠♡♥♧♣⊙◈▣◐◑▒▤▥▨▧▦▩♨☏☎☜☞¶†‡↕↗↙↖↘♭♩♪♬㉿㈜№㏇™㏂㏘℡€®"],["a341","쥱쥲쥳쥵",6,"쥽",10,"즊즋즍즎즏"],["a361","즑",6,"즚즜즞",16],["a381","즯",16,"짂짃짅짆짉짋",4,"짒짔짗짘짛!",58,"₩]",32," ̄"],["a441","짞짟짡짣짥짦짨짩짪짫짮짲",5,"짺짻짽짾짿쨁쨂쨃쨄"],["a461","쨅쨆쨇쨊쨎",5,"쨕쨖쨗쨙",12],["a481","쨦쨧쨨쨪",28,"ㄱ",93],["a541","쩇",4,"쩎쩏쩑쩒쩓쩕",6,"쩞쩢",5,"쩩쩪"],["a561","쩫",17,"쩾",5,"쪅쪆"],["a581","쪇",16,"쪙",14,"",9],["a5b0","",9],["a5c1","Α",16,"Σ",6],["a5e1","α",16,"σ",6],["a641","쪨",19,"쪾쪿쫁쫂쫃쫅"],["a661","쫆",5,"쫎쫐쫒쫔쫕쫖쫗쫚",5,"쫡",6],["a681","쫨쫩쫪쫫쫭",6,"쫵",18,"쬉쬊─│┌┐┘└├┬┤┴┼━┃┏┓┛┗┣┳┫┻╋┠┯┨┷┿┝┰┥┸╂┒┑┚┙┖┕┎┍┞┟┡┢┦┧┩┪┭┮┱┲┵┶┹┺┽┾╀╁╃",7],["a741","쬋",4,"쬑쬒쬓쬕쬖쬗쬙",6,"쬢",7],["a761","쬪",22,"쭂쭃쭄"],["a781","쭅쭆쭇쭊쭋쭍쭎쭏쭑",6,"쭚쭛쭜쭞",5,"쭥",7,"㎕㎖㎗ℓ㎘㏄㎣㎤㎥㎦㎙",9,"㏊㎍㎎㎏㏏㎈㎉㏈㎧㎨㎰",9,"㎀",4,"㎺",5,"㎐",4,"Ω㏀㏁㎊㎋㎌㏖㏅㎭㎮㎯㏛㎩㎪㎫㎬㏝㏐㏓㏃㏉㏜㏆"],["a841","쭭",10,"쭺",14],["a861","쮉",18,"쮝",6],["a881","쮤",19,"쮹",11,"ÆÐªĦ"],["a8a6","IJ"],["a8a8","ĿŁØŒºÞŦŊ"],["a8b1","㉠",27,"ⓐ",25,"①",14,"½⅓⅔¼¾⅛⅜⅝⅞"],["a941","쯅",14,"쯕",10],["a961","쯠쯡쯢쯣쯥쯦쯨쯪",18],["a981","쯽",14,"찎찏찑찒찓찕",6,"찞찟찠찣찤æđðħıijĸŀłøœßþŧŋʼn㈀",27,"⒜",25,"⑴",14,"¹²³⁴ⁿ₁₂₃₄"],["aa41","찥찦찪찫찭찯찱",6,"찺찿",4,"챆챇챉챊챋챍챎"],["aa61","챏",4,"챖챚",5,"챡챢챣챥챧챩",6,"챱챲"],["aa81","챳챴챶",29,"ぁ",82],["ab41","첔첕첖첗첚첛첝첞첟첡",6,"첪첮",5,"첶첷첹"],["ab61","첺첻첽",6,"쳆쳈쳊",5,"쳑쳒쳓쳕",5],["ab81","쳛",8,"쳥",6,"쳭쳮쳯쳱",12,"ァ",85],["ac41","쳾쳿촀촂",5,"촊촋촍촎촏촑",6,"촚촜촞촟촠"],["ac61","촡촢촣촥촦촧촩촪촫촭",11,"촺",4],["ac81","촿",28,"쵝쵞쵟А",5,"ЁЖ",25],["acd1","а",5,"ёж",25],["ad41","쵡쵢쵣쵥",6,"쵮쵰쵲",5,"쵹",7],["ad61","춁",6,"춉",10,"춖춗춙춚춛춝춞춟"],["ad81","춠춡춢춣춦춨춪",5,"춱",18,"췅"],["ae41","췆",5,"췍췎췏췑",16],["ae61","췢",5,"췩췪췫췭췮췯췱",6,"췺췼췾",4],["ae81","츃츅츆츇츉츊츋츍",6,"츕츖츗츘츚",5,"츢츣츥츦츧츩츪츫"],["af41","츬츭츮츯츲츴츶",19],["af61","칊",13,"칚칛칝칞칢",5,"칪칬"],["af81","칮",5,"칶칷칹칺칻칽",6,"캆캈캊",5,"캒캓캕캖캗캙"],["b041","캚",5,"캢캦",5,"캮",12],["b061","캻",5,"컂",19],["b081","컖",13,"컦컧컩컪컭",6,"컶컺",5,"가각간갇갈갉갊감",7,"같",4,"갠갤갬갭갯갰갱갸갹갼걀걋걍걔걘걜거걱건걷걸걺검겁것겄겅겆겉겊겋게겐겔겜겝겟겠겡겨격겪견겯결겸겹겻겼경곁계곈곌곕곗고곡곤곧골곪곬곯곰곱곳공곶과곽관괄괆"],["b141","켂켃켅켆켇켉",6,"켒켔켖",5,"켝켞켟켡켢켣"],["b161","켥",6,"켮켲",5,"켹",11],["b181","콅",14,"콖콗콙콚콛콝",6,"콦콨콪콫콬괌괍괏광괘괜괠괩괬괭괴괵괸괼굄굅굇굉교굔굘굡굣구국군굳굴굵굶굻굼굽굿궁궂궈궉권궐궜궝궤궷귀귁귄귈귐귑귓규균귤그극근귿글긁금급긋긍긔기긱긴긷길긺김깁깃깅깆깊까깍깎깐깔깖깜깝깟깠깡깥깨깩깬깰깸"],["b241","콭콮콯콲콳콵콶콷콹",6,"쾁쾂쾃쾄쾆",5,"쾍"],["b261","쾎",18,"쾢",5,"쾩"],["b281","쾪",5,"쾱",18,"쿅",6,"깹깻깼깽꺄꺅꺌꺼꺽꺾껀껄껌껍껏껐껑께껙껜껨껫껭껴껸껼꼇꼈꼍꼐꼬꼭꼰꼲꼴꼼꼽꼿꽁꽂꽃꽈꽉꽐꽜꽝꽤꽥꽹꾀꾄꾈꾐꾑꾕꾜꾸꾹꾼꿀꿇꿈꿉꿋꿍꿎꿔꿜꿨꿩꿰꿱꿴꿸뀀뀁뀄뀌뀐뀔뀜뀝뀨끄끅끈끊끌끎끓끔끕끗끙"],["b341","쿌",19,"쿢쿣쿥쿦쿧쿩"],["b361","쿪",5,"쿲쿴쿶",5,"쿽쿾쿿퀁퀂퀃퀅",5],["b381","퀋",5,"퀒",5,"퀙",19,"끝끼끽낀낄낌낍낏낑나낙낚난낟날낡낢남납낫",4,"낱낳내낵낸낼냄냅냇냈냉냐냑냔냘냠냥너넉넋넌널넒넓넘넙넛넜넝넣네넥넨넬넴넵넷넸넹녀녁년녈념녑녔녕녘녜녠노녹논놀놂놈놉놋농높놓놔놘놜놨뇌뇐뇔뇜뇝"],["b441","퀮",5,"퀶퀷퀹퀺퀻퀽",6,"큆큈큊",5],["b461","큑큒큓큕큖큗큙",6,"큡",10,"큮큯"],["b481","큱큲큳큵",6,"큾큿킀킂",18,"뇟뇨뇩뇬뇰뇹뇻뇽누눅눈눋눌눔눕눗눙눠눴눼뉘뉜뉠뉨뉩뉴뉵뉼늄늅늉느늑는늘늙늚늠늡늣능늦늪늬늰늴니닉닌닐닒님닙닛닝닢다닥닦단닫",4,"닳담답닷",4,"닿대댁댄댈댐댑댓댔댕댜더덕덖던덛덜덞덟덤덥"],["b541","킕",14,"킦킧킩킪킫킭",5],["b561","킳킶킸킺",5,"탂탃탅탆탇탊",5,"탒탖",4],["b581","탛탞탟탡탢탣탥",6,"탮탲",5,"탹",11,"덧덩덫덮데덱덴델뎀뎁뎃뎄뎅뎌뎐뎔뎠뎡뎨뎬도독돈돋돌돎돐돔돕돗동돛돝돠돤돨돼됐되된될됨됩됫됴두둑둔둘둠둡둣둥둬뒀뒈뒝뒤뒨뒬뒵뒷뒹듀듄듈듐듕드득든듣들듦듬듭듯등듸디딕딘딛딜딤딥딧딨딩딪따딱딴딸"],["b641","턅",7,"턎",17],["b661","턠",15,"턲턳턵턶턷턹턻턼턽턾"],["b681","턿텂텆",5,"텎텏텑텒텓텕",6,"텞텠텢",5,"텩텪텫텭땀땁땃땄땅땋때땍땐땔땜땝땟땠땡떠떡떤떨떪떫떰떱떳떴떵떻떼떽뗀뗄뗌뗍뗏뗐뗑뗘뗬또똑똔똘똥똬똴뙈뙤뙨뚜뚝뚠뚤뚫뚬뚱뛔뛰뛴뛸뜀뜁뜅뜨뜩뜬뜯뜰뜸뜹뜻띄띈띌띔띕띠띤띨띰띱띳띵라락란랄람랍랏랐랑랒랖랗"],["b741","텮",13,"텽",6,"톅톆톇톉톊"],["b761","톋",20,"톢톣톥톦톧"],["b781","톩",6,"톲톴톶톷톸톹톻톽톾톿퇁",14,"래랙랜랠램랩랫랬랭랴략랸럇량러럭런럴럼럽럿렀렁렇레렉렌렐렘렙렛렝려력련렬렴렵렷렸령례롄롑롓로록론롤롬롭롯롱롸롼뢍뢨뢰뢴뢸룀룁룃룅료룐룔룝룟룡루룩룬룰룸룹룻룽뤄뤘뤠뤼뤽륀륄륌륏륑류륙륜률륨륩"],["b841","퇐",7,"퇙",17],["b861","퇫",8,"퇵퇶퇷퇹",13],["b881","툈툊",5,"툑",24,"륫륭르륵른를름릅릇릉릊릍릎리릭린릴림립릿링마막만많",4,"맘맙맛망맞맡맣매맥맨맬맴맵맷맸맹맺먀먁먈먕머먹먼멀멂멈멉멋멍멎멓메멕멘멜멤멥멧멨멩며멱면멸몃몄명몇몌모목몫몬몰몲몸몹못몽뫄뫈뫘뫙뫼"],["b941","툪툫툮툯툱툲툳툵",6,"툾퉀퉂",5,"퉉퉊퉋퉌"],["b961","퉍",14,"퉝",6,"퉥퉦퉧퉨"],["b981","퉩",22,"튂튃튅튆튇튉튊튋튌묀묄묍묏묑묘묜묠묩묫무묵묶문묻물묽묾뭄뭅뭇뭉뭍뭏뭐뭔뭘뭡뭣뭬뮈뮌뮐뮤뮨뮬뮴뮷므믄믈믐믓미믹민믿밀밂밈밉밋밌밍및밑바",4,"받",4,"밤밥밧방밭배백밴밸뱀뱁뱃뱄뱅뱉뱌뱍뱐뱝버벅번벋벌벎범법벗"],["ba41","튍튎튏튒튓튔튖",5,"튝튞튟튡튢튣튥",6,"튭"],["ba61","튮튯튰튲",5,"튺튻튽튾틁틃",4,"틊틌",5],["ba81","틒틓틕틖틗틙틚틛틝",6,"틦",9,"틲틳틵틶틷틹틺벙벚베벡벤벧벨벰벱벳벴벵벼벽변별볍볏볐병볕볘볜보복볶본볼봄봅봇봉봐봔봤봬뵀뵈뵉뵌뵐뵘뵙뵤뵨부북분붇불붉붊붐붑붓붕붙붚붜붤붰붸뷔뷕뷘뷜뷩뷰뷴뷸븀븃븅브븍븐블븜븝븟비빅빈빌빎빔빕빗빙빚빛빠빡빤"],["bb41","틻",4,"팂팄팆",5,"팏팑팒팓팕팗",4,"팞팢팣"],["bb61","팤팦팧팪팫팭팮팯팱",6,"팺팾",5,"퍆퍇퍈퍉"],["bb81","퍊",31,"빨빪빰빱빳빴빵빻빼빽뺀뺄뺌뺍뺏뺐뺑뺘뺙뺨뻐뻑뻔뻗뻘뻠뻣뻤뻥뻬뼁뼈뼉뼘뼙뼛뼜뼝뽀뽁뽄뽈뽐뽑뽕뾔뾰뿅뿌뿍뿐뿔뿜뿟뿡쀼쁑쁘쁜쁠쁨쁩삐삑삔삘삠삡삣삥사삭삯산삳살삵삶삼삽삿샀상샅새색샌샐샘샙샛샜생샤"],["bc41","퍪",17,"퍾퍿펁펂펃펅펆펇"],["bc61","펈펉펊펋펎펒",5,"펚펛펝펞펟펡",6,"펪펬펮"],["bc81","펯",4,"펵펶펷펹펺펻펽",6,"폆폇폊",5,"폑",5,"샥샨샬샴샵샷샹섀섄섈섐섕서",4,"섣설섦섧섬섭섯섰성섶세섹센셀셈셉셋셌셍셔셕션셜셤셥셧셨셩셰셴셸솅소속솎손솔솖솜솝솟송솥솨솩솬솰솽쇄쇈쇌쇔쇗쇘쇠쇤쇨쇰쇱쇳쇼쇽숀숄숌숍숏숑수숙순숟술숨숩숫숭"],["bd41","폗폙",7,"폢폤",7,"폮폯폱폲폳폵폶폷"],["bd61","폸폹폺폻폾퐀퐂",5,"퐉",13],["bd81","퐗",5,"퐞",25,"숯숱숲숴쉈쉐쉑쉔쉘쉠쉥쉬쉭쉰쉴쉼쉽쉿슁슈슉슐슘슛슝스슥슨슬슭슴습슷승시식신싣실싫심십싯싱싶싸싹싻싼쌀쌈쌉쌌쌍쌓쌔쌕쌘쌜쌤쌥쌨쌩썅써썩썬썰썲썸썹썼썽쎄쎈쎌쏀쏘쏙쏜쏟쏠쏢쏨쏩쏭쏴쏵쏸쐈쐐쐤쐬쐰"],["be41","퐸",7,"푁푂푃푅",14],["be61","푔",7,"푝푞푟푡푢푣푥",7,"푮푰푱푲"],["be81","푳",4,"푺푻푽푾풁풃",4,"풊풌풎",5,"풕",8,"쐴쐼쐽쑈쑤쑥쑨쑬쑴쑵쑹쒀쒔쒜쒸쒼쓩쓰쓱쓴쓸쓺쓿씀씁씌씐씔씜씨씩씬씰씸씹씻씽아악안앉않알앍앎앓암압앗았앙앝앞애액앤앨앰앱앳앴앵야약얀얄얇얌얍얏양얕얗얘얜얠얩어억언얹얻얼얽얾엄",6,"엌엎"],["bf41","풞",10,"풪",14],["bf61","풹",18,"퓍퓎퓏퓑퓒퓓퓕"],["bf81","퓖",5,"퓝퓞퓠",7,"퓩퓪퓫퓭퓮퓯퓱",6,"퓹퓺퓼에엑엔엘엠엡엣엥여역엮연열엶엷염",5,"옅옆옇예옌옐옘옙옛옜오옥온올옭옮옰옳옴옵옷옹옻와왁완왈왐왑왓왔왕왜왝왠왬왯왱외왹왼욀욈욉욋욍요욕욘욜욤욥욧용우욱운울욹욺움웁웃웅워웍원월웜웝웠웡웨"],["c041","퓾",5,"픅픆픇픉픊픋픍",6,"픖픘",5],["c061","픞",25],["c081","픸픹픺픻픾픿핁핂핃핅",6,"핎핐핒",5,"핚핛핝핞핟핡핢핣웩웬웰웸웹웽위윅윈윌윔윕윗윙유육윤율윰윱윳융윷으윽은을읊음읍읏응",7,"읜읠읨읫이익인일읽읾잃임입잇있잉잊잎자작잔잖잗잘잚잠잡잣잤장잦재잭잰잴잼잽잿쟀쟁쟈쟉쟌쟎쟐쟘쟝쟤쟨쟬저적전절젊"],["c141","핤핦핧핪핬핮",5,"핶핷핹핺핻핽",6,"햆햊햋"],["c161","햌햍햎햏햑",19,"햦햧"],["c181","햨",31,"점접젓정젖제젝젠젤젬젭젯젱져젼졀졈졉졌졍졔조족존졸졺좀좁좃종좆좇좋좌좍좔좝좟좡좨좼좽죄죈죌죔죕죗죙죠죡죤죵주죽준줄줅줆줌줍줏중줘줬줴쥐쥑쥔쥘쥠쥡쥣쥬쥰쥴쥼즈즉즌즐즘즙즛증지직진짇질짊짐집짓"],["c241","헊헋헍헎헏헑헓",4,"헚헜헞",5,"헦헧헩헪헫헭헮"],["c261","헯",4,"헶헸헺",5,"혂혃혅혆혇혉",6,"혒"],["c281","혖",5,"혝혞혟혡혢혣혥",7,"혮",9,"혺혻징짖짙짚짜짝짠짢짤짧짬짭짯짰짱째짹짼쨀쨈쨉쨋쨌쨍쨔쨘쨩쩌쩍쩐쩔쩜쩝쩟쩠쩡쩨쩽쪄쪘쪼쪽쫀쫄쫌쫍쫏쫑쫓쫘쫙쫠쫬쫴쬈쬐쬔쬘쬠쬡쭁쭈쭉쭌쭐쭘쭙쭝쭤쭸쭹쮜쮸쯔쯤쯧쯩찌찍찐찔찜찝찡찢찧차착찬찮찰참찹찻"],["c341","혽혾혿홁홂홃홄홆홇홊홌홎홏홐홒홓홖홗홙홚홛홝",4],["c361","홢",4,"홨홪",5,"홲홳홵",11],["c381","횁횂횄횆",5,"횎횏횑횒횓횕",7,"횞횠횢",5,"횩횪찼창찾채책챈챌챔챕챗챘챙챠챤챦챨챰챵처척천철첨첩첫첬청체첵첸첼쳄쳅쳇쳉쳐쳔쳤쳬쳰촁초촉촌촐촘촙촛총촤촨촬촹최쵠쵤쵬쵭쵯쵱쵸춈추축춘출춤춥춧충춰췄췌췐취췬췰췸췹췻췽츄츈츌츔츙츠측츤츨츰츱츳층"],["c441","횫횭횮횯횱",7,"횺횼",7,"훆훇훉훊훋"],["c461","훍훎훏훐훒훓훕훖훘훚",5,"훡훢훣훥훦훧훩",4],["c481","훮훯훱훲훳훴훶",5,"훾훿휁휂휃휅",11,"휒휓휔치칙친칟칠칡침칩칫칭카칵칸칼캄캅캇캉캐캑캔캘캠캡캣캤캥캬캭컁커컥컨컫컬컴컵컷컸컹케켁켄켈켐켑켓켕켜켠켤켬켭켯켰켱켸코콕콘콜콤콥콧콩콰콱콴콸쾀쾅쾌쾡쾨쾰쿄쿠쿡쿤쿨쿰쿱쿳쿵쿼퀀퀄퀑퀘퀭퀴퀵퀸퀼"],["c541","휕휖휗휚휛휝휞휟휡",6,"휪휬휮",5,"휶휷휹"],["c561","휺휻휽",6,"흅흆흈흊",5,"흒흓흕흚",4],["c581","흟흢흤흦흧흨흪흫흭흮흯흱흲흳흵",6,"흾흿힀힂",5,"힊힋큄큅큇큉큐큔큘큠크큭큰클큼큽킁키킥킨킬킴킵킷킹타탁탄탈탉탐탑탓탔탕태택탠탤탬탭탯탰탱탸턍터턱턴털턺텀텁텃텄텅테텍텐텔템텝텟텡텨텬텼톄톈토톡톤톨톰톱톳통톺톼퇀퇘퇴퇸툇툉툐투툭툰툴툼툽툿퉁퉈퉜"],["c641","힍힎힏힑",6,"힚힜힞",5],["c6a1","퉤튀튁튄튈튐튑튕튜튠튤튬튱트특튼튿틀틂틈틉틋틔틘틜틤틥티틱틴틸팀팁팃팅파팍팎판팔팖팜팝팟팠팡팥패팩팬팰팸팹팻팼팽퍄퍅퍼퍽펀펄펌펍펏펐펑페펙펜펠펨펩펫펭펴편펼폄폅폈평폐폘폡폣포폭폰폴폼폽폿퐁"],["c7a1","퐈퐝푀푄표푠푤푭푯푸푹푼푿풀풂품풉풋풍풔풩퓌퓐퓔퓜퓟퓨퓬퓰퓸퓻퓽프픈플픔픕픗피픽핀필핌핍핏핑하학한할핥함합핫항해핵핸핼햄햅햇했행햐향허헉헌헐헒험헙헛헝헤헥헨헬헴헵헷헹혀혁현혈혐협혓혔형혜혠"],["c8a1","혤혭호혹혼홀홅홈홉홋홍홑화확환활홧황홰홱홴횃횅회획횐횔횝횟횡효횬횰횹횻후훅훈훌훑훔훗훙훠훤훨훰훵훼훽휀휄휑휘휙휜휠휨휩휫휭휴휵휸휼흄흇흉흐흑흔흖흗흘흙흠흡흣흥흩희흰흴흼흽힁히힉힌힐힘힙힛힝"],["caa1","伽佳假價加可呵哥嘉嫁家暇架枷柯歌珂痂稼苛茄街袈訶賈跏軻迦駕刻却各恪慤殼珏脚覺角閣侃刊墾奸姦干幹懇揀杆柬桿澗癎看磵稈竿簡肝艮艱諫間乫喝曷渴碣竭葛褐蝎鞨勘坎堪嵌感憾戡敢柑橄減甘疳監瞰紺邯鑑鑒龕"],["cba1","匣岬甲胛鉀閘剛堈姜岡崗康强彊慷江畺疆糠絳綱羌腔舡薑襁講鋼降鱇介价個凱塏愷愾慨改槪漑疥皆盖箇芥蓋豈鎧開喀客坑更粳羹醵倨去居巨拒据據擧渠炬祛距踞車遽鉅鋸乾件健巾建愆楗腱虔蹇鍵騫乞傑杰桀儉劍劒檢"],["cca1","瞼鈐黔劫怯迲偈憩揭擊格檄激膈覡隔堅牽犬甄絹繭肩見譴遣鵑抉決潔結缺訣兼慊箝謙鉗鎌京俓倞傾儆勁勍卿坰境庚徑慶憬擎敬景暻更梗涇炅烱璟璥瓊痙硬磬竟競絅經耕耿脛莖警輕逕鏡頃頸驚鯨係啓堺契季屆悸戒桂械"],["cda1","棨溪界癸磎稽系繫繼計誡谿階鷄古叩告呱固姑孤尻庫拷攷故敲暠枯槁沽痼皐睾稿羔考股膏苦苽菰藁蠱袴誥賈辜錮雇顧高鼓哭斛曲梏穀谷鵠困坤崑昆梱棍滾琨袞鯤汨滑骨供公共功孔工恐恭拱控攻珙空蚣貢鞏串寡戈果瓜"],["cea1","科菓誇課跨過鍋顆廓槨藿郭串冠官寬慣棺款灌琯瓘管罐菅觀貫關館刮恝括适侊光匡壙廣曠洸炚狂珖筐胱鑛卦掛罫乖傀塊壞怪愧拐槐魁宏紘肱轟交僑咬喬嬌嶠巧攪敎校橋狡皎矯絞翹膠蕎蛟較轎郊餃驕鮫丘久九仇俱具勾"],["cfa1","區口句咎嘔坵垢寇嶇廐懼拘救枸柩構歐毆毬求溝灸狗玖球瞿矩究絿耉臼舅舊苟衢謳購軀逑邱鉤銶駒驅鳩鷗龜國局菊鞠鞫麴君窘群裙軍郡堀屈掘窟宮弓穹窮芎躬倦券勸卷圈拳捲權淃眷厥獗蕨蹶闕机櫃潰詭軌饋句晷歸貴"],["d0a1","鬼龜叫圭奎揆槻珪硅窺竅糾葵規赳逵閨勻均畇筠菌鈞龜橘克剋劇戟棘極隙僅劤勤懃斤根槿瑾筋芹菫覲謹近饉契今妗擒昑檎琴禁禽芩衾衿襟金錦伋及急扱汲級給亘兢矜肯企伎其冀嗜器圻基埼夔奇妓寄岐崎己幾忌技旗旣"],["d1a1","朞期杞棋棄機欺氣汽沂淇玘琦琪璂璣畸畿碁磯祁祇祈祺箕紀綺羈耆耭肌記譏豈起錡錤飢饑騎騏驥麒緊佶吉拮桔金喫儺喇奈娜懦懶拏拿癩",5,"那樂",4,"諾酪駱亂卵暖欄煖爛蘭難鸞捏捺南嵐枏楠湳濫男藍襤拉"],["d2a1","納臘蠟衲囊娘廊",4,"乃來內奈柰耐冷女年撚秊念恬拈捻寧寗努勞奴弩怒擄櫓爐瑙盧",5,"駑魯",10,"濃籠聾膿農惱牢磊腦賂雷尿壘",7,"嫩訥杻紐勒",5,"能菱陵尼泥匿溺多茶"],["d3a1","丹亶但單團壇彖斷旦檀段湍短端簞緞蛋袒鄲鍛撻澾獺疸達啖坍憺擔曇淡湛潭澹痰聃膽蕁覃談譚錟沓畓答踏遝唐堂塘幢戇撞棠當糖螳黨代垈坮大對岱帶待戴擡玳臺袋貸隊黛宅德悳倒刀到圖堵塗導屠島嶋度徒悼挑掉搗桃"],["d4a1","棹櫂淘渡滔濤燾盜睹禱稻萄覩賭跳蹈逃途道都鍍陶韜毒瀆牘犢獨督禿篤纛讀墩惇敦旽暾沌焞燉豚頓乭突仝冬凍動同憧東桐棟洞潼疼瞳童胴董銅兜斗杜枓痘竇荳讀豆逗頭屯臀芚遁遯鈍得嶝橙燈登等藤謄鄧騰喇懶拏癩羅"],["d5a1","蘿螺裸邏樂洛烙珞絡落諾酪駱丹亂卵欄欒瀾爛蘭鸞剌辣嵐擥攬欖濫籃纜藍襤覽拉臘蠟廊朗浪狼琅瑯螂郞來崍徠萊冷掠略亮倆兩凉梁樑粮粱糧良諒輛量侶儷勵呂廬慮戾旅櫚濾礪藜蠣閭驢驪麗黎力曆歷瀝礫轢靂憐戀攣漣"],["d6a1","煉璉練聯蓮輦連鍊冽列劣洌烈裂廉斂殮濂簾獵令伶囹寧岺嶺怜玲笭羚翎聆逞鈴零靈領齡例澧禮醴隷勞怒撈擄櫓潞瀘爐盧老蘆虜路輅露魯鷺鹵碌祿綠菉錄鹿麓論壟弄朧瀧瓏籠聾儡瀨牢磊賂賚賴雷了僚寮廖料燎療瞭聊蓼"],["d7a1","遼鬧龍壘婁屢樓淚漏瘻累縷蔞褸鏤陋劉旒柳榴流溜瀏琉瑠留瘤硫謬類六戮陸侖倫崙淪綸輪律慄栗率隆勒肋凜凌楞稜綾菱陵俚利厘吏唎履悧李梨浬犁狸理璃異痢籬罹羸莉裏裡里釐離鯉吝潾燐璘藺躪隣鱗麟林淋琳臨霖砬"],["d8a1","立笠粒摩瑪痲碼磨馬魔麻寞幕漠膜莫邈万卍娩巒彎慢挽晩曼滿漫灣瞞萬蔓蠻輓饅鰻唜抹末沫茉襪靺亡妄忘忙望網罔芒茫莽輞邙埋妹媒寐昧枚梅每煤罵買賣邁魅脈貊陌驀麥孟氓猛盲盟萌冪覓免冕勉棉沔眄眠綿緬面麵滅"],["d9a1","蔑冥名命明暝椧溟皿瞑茗蓂螟酩銘鳴袂侮冒募姆帽慕摸摹暮某模母毛牟牡瑁眸矛耗芼茅謀謨貌木沐牧目睦穆鶩歿沒夢朦蒙卯墓妙廟描昴杳渺猫竗苗錨務巫憮懋戊拇撫无楙武毋無珷畝繆舞茂蕪誣貿霧鵡墨默們刎吻問文"],["daa1","汶紊紋聞蚊門雯勿沕物味媚尾嵋彌微未梶楣渼湄眉米美薇謎迷靡黴岷悶愍憫敏旻旼民泯玟珉緡閔密蜜謐剝博拍搏撲朴樸泊珀璞箔粕縛膊舶薄迫雹駁伴半反叛拌搬攀斑槃泮潘班畔瘢盤盼磐磻礬絆般蟠返頒飯勃拔撥渤潑"],["dba1","發跋醱鉢髮魃倣傍坊妨尨幇彷房放方旁昉枋榜滂磅紡肪膀舫芳蒡蚌訪謗邦防龐倍俳北培徘拜排杯湃焙盃背胚裴裵褙賠輩配陪伯佰帛柏栢白百魄幡樊煩燔番磻繁蕃藩飜伐筏罰閥凡帆梵氾汎泛犯範范法琺僻劈壁擘檗璧癖"],["dca1","碧蘗闢霹便卞弁變辨辯邊別瞥鱉鼈丙倂兵屛幷昞昺柄棅炳甁病秉竝輧餠騈保堡報寶普步洑湺潽珤甫菩補褓譜輔伏僕匐卜宓復服福腹茯蔔複覆輹輻馥鰒本乶俸奉封峯峰捧棒烽熢琫縫蓬蜂逢鋒鳳不付俯傅剖副否咐埠夫婦"],["dda1","孚孵富府復扶敷斧浮溥父符簿缶腐腑膚艀芙莩訃負賦賻赴趺部釜阜附駙鳧北分吩噴墳奔奮忿憤扮昐汾焚盆粉糞紛芬賁雰不佛弗彿拂崩朋棚硼繃鵬丕備匕匪卑妃婢庇悲憊扉批斐枇榧比毖毗毘沸泌琵痺砒碑秕秘粃緋翡肥"],["dea1","脾臂菲蜚裨誹譬費鄙非飛鼻嚬嬪彬斌檳殯浜濱瀕牝玭貧賓頻憑氷聘騁乍事些仕伺似使俟僿史司唆嗣四士奢娑寫寺射巳師徙思捨斜斯柶査梭死沙泗渣瀉獅砂社祀祠私篩紗絲肆舍莎蓑蛇裟詐詞謝賜赦辭邪飼駟麝削數朔索"],["dfa1","傘刪山散汕珊産疝算蒜酸霰乷撒殺煞薩三參杉森渗芟蔘衫揷澁鈒颯上傷像償商喪嘗孀尙峠常床庠廂想桑橡湘爽牀狀相祥箱翔裳觴詳象賞霜塞璽賽嗇塞穡索色牲生甥省笙墅壻嶼序庶徐恕抒捿敍暑曙書栖棲犀瑞筮絮緖署"],["e0a1","胥舒薯西誓逝鋤黍鼠夕奭席惜昔晳析汐淅潟石碩蓆釋錫仙僊先善嬋宣扇敾旋渲煽琁瑄璇璿癬禪線繕羨腺膳船蘚蟬詵跣選銑鐥饍鮮卨屑楔泄洩渫舌薛褻設說雪齧剡暹殲纖蟾贍閃陝攝涉燮葉城姓宬性惺成星晟猩珹盛省筬"],["e1a1","聖聲腥誠醒世勢歲洗稅笹細說貰召嘯塑宵小少巢所掃搔昭梳沼消溯瀟炤燒甦疏疎瘙笑篠簫素紹蔬蕭蘇訴逍遡邵銷韶騷俗屬束涑粟續謖贖速孫巽損蓀遜飡率宋悚松淞訟誦送頌刷殺灑碎鎖衰釗修受嗽囚垂壽嫂守岫峀帥愁"],["e2a1","戍手授搜收數樹殊水洙漱燧狩獸琇璲瘦睡秀穗竪粹綏綬繡羞脩茱蒐蓚藪袖誰讐輸遂邃酬銖銹隋隧隨雖需須首髓鬚叔塾夙孰宿淑潚熟琡璹肅菽巡徇循恂旬栒楯橓殉洵淳珣盾瞬筍純脣舜荀蓴蕣詢諄醇錞順馴戌術述鉥崇崧"],["e3a1","嵩瑟膝蝨濕拾習褶襲丞乘僧勝升承昇繩蠅陞侍匙嘶始媤尸屎屍市弑恃施是時枾柴猜矢示翅蒔蓍視試詩諡豕豺埴寔式息拭植殖湜熄篒蝕識軾食飾伸侁信呻娠宸愼新晨燼申神紳腎臣莘薪藎蜃訊身辛辰迅失室實悉審尋心沁"],["e4a1","沈深瀋甚芯諶什十拾雙氏亞俄兒啞娥峨我牙芽莪蛾衙訝阿雅餓鴉鵝堊岳嶽幄惡愕握樂渥鄂鍔顎鰐齷安岸按晏案眼雁鞍顔鮟斡謁軋閼唵岩巖庵暗癌菴闇壓押狎鴨仰央怏昻殃秧鴦厓哀埃崖愛曖涯碍艾隘靄厄扼掖液縊腋額"],["e5a1","櫻罌鶯鸚也倻冶夜惹揶椰爺耶若野弱掠略約若葯蒻藥躍亮佯兩凉壤孃恙揚攘敭暘梁楊樣洋瀁煬痒瘍禳穰糧羊良襄諒讓釀陽量養圄御於漁瘀禦語馭魚齬億憶抑檍臆偃堰彦焉言諺孼蘖俺儼嚴奄掩淹嶪業円予余勵呂女如廬"],["e6a1","旅歟汝濾璵礖礪與艅茹輿轝閭餘驪麗黎亦力域役易曆歷疫繹譯轢逆驛嚥堧姸娟宴年延憐戀捐挻撚椽沇沿涎涓淵演漣烟然煙煉燃燕璉硏硯秊筵緣練縯聯衍軟輦蓮連鉛鍊鳶列劣咽悅涅烈熱裂說閱厭廉念捻染殮炎焰琰艶苒"],["e7a1","簾閻髥鹽曄獵燁葉令囹塋寧嶺嶸影怜映暎楹榮永泳渶潁濚瀛瀯煐營獰玲瑛瑩瓔盈穎纓羚聆英詠迎鈴鍈零霙靈領乂倪例刈叡曳汭濊猊睿穢芮藝蘂禮裔詣譽豫醴銳隸霓預五伍俉傲午吾吳嗚塢墺奧娛寤悟惡懊敖旿晤梧汚澳"],["e8a1","烏熬獒筽蜈誤鰲鼇屋沃獄玉鈺溫瑥瘟穩縕蘊兀壅擁瓮甕癰翁邕雍饔渦瓦窩窪臥蛙蝸訛婉完宛梡椀浣玩琓琬碗緩翫脘腕莞豌阮頑曰往旺枉汪王倭娃歪矮外嵬巍猥畏了僚僥凹堯夭妖姚寥寮尿嶢拗搖撓擾料曜樂橈燎燿瑤療"],["e9a1","窈窯繇繞耀腰蓼蟯要謠遙遼邀饒慾欲浴縟褥辱俑傭冗勇埇墉容庸慂榕涌湧溶熔瑢用甬聳茸蓉踊鎔鏞龍于佑偶優又友右宇寓尤愚憂旴牛玗瑀盂祐禑禹紆羽芋藕虞迂遇郵釪隅雨雩勖彧旭昱栯煜稶郁頊云暈橒殞澐熉耘芸蕓"],["eaa1","運隕雲韻蔚鬱亐熊雄元原員圓園垣媛嫄寃怨愿援沅洹湲源爰猿瑗苑袁轅遠阮院願鴛月越鉞位偉僞危圍委威尉慰暐渭爲瑋緯胃萎葦蔿蝟衛褘謂違韋魏乳侑儒兪劉唯喩孺宥幼幽庾悠惟愈愉揄攸有杻柔柚柳楡楢油洧流游溜"],["eba1","濡猶猷琉瑜由留癒硫紐維臾萸裕誘諛諭踰蹂遊逾遺酉釉鍮類六堉戮毓肉育陸倫允奫尹崙淪潤玧胤贇輪鈗閏律慄栗率聿戎瀜絨融隆垠恩慇殷誾銀隱乙吟淫蔭陰音飮揖泣邑凝應膺鷹依倚儀宜意懿擬椅毅疑矣義艤薏蟻衣誼"],["eca1","議醫二以伊利吏夷姨履已弛彛怡易李梨泥爾珥理異痍痢移罹而耳肄苡荑裏裡貽貳邇里離飴餌匿溺瀷益翊翌翼謚人仁刃印吝咽因姻寅引忍湮燐璘絪茵藺蚓認隣靭靷鱗麟一佚佾壹日溢逸鎰馹任壬妊姙恁林淋稔臨荏賃入卄"],["eda1","立笠粒仍剩孕芿仔刺咨姉姿子字孜恣慈滋炙煮玆瓷疵磁紫者自茨蔗藉諮資雌作勺嚼斫昨灼炸爵綽芍酌雀鵲孱棧殘潺盞岑暫潛箴簪蠶雜丈仗匠場墻壯奬將帳庄張掌暲杖樟檣欌漿牆狀獐璋章粧腸臟臧莊葬蔣薔藏裝贓醬長"],["eea1","障再哉在宰才材栽梓渽滓災縡裁財載齋齎爭箏諍錚佇低儲咀姐底抵杵楮樗沮渚狙猪疽箸紵苧菹著藷詛貯躇這邸雎齟勣吊嫡寂摘敵滴狄炙的積笛籍績翟荻謫賊赤跡蹟迪迹適鏑佃佺傳全典前剪塡塼奠專展廛悛戰栓殿氈澱"],["efa1","煎琠田甸畑癲筌箋箭篆纏詮輾轉鈿銓錢鐫電顚顫餞切截折浙癤竊節絶占岾店漸点粘霑鮎點接摺蝶丁井亭停偵呈姃定幀庭廷征情挺政整旌晶晸柾楨檉正汀淀淨渟湞瀞炡玎珽町睛碇禎程穽精綎艇訂諪貞鄭酊釘鉦鋌錠霆靖"],["f0a1","靜頂鼎制劑啼堤帝弟悌提梯濟祭第臍薺製諸蹄醍除際霽題齊俎兆凋助嘲弔彫措操早晁曺曹朝條棗槽漕潮照燥爪璪眺祖祚租稠窕粗糟組繰肇藻蚤詔調趙躁造遭釣阻雕鳥族簇足鏃存尊卒拙猝倧宗從悰慫棕淙琮種終綜縱腫"],["f1a1","踪踵鍾鐘佐坐左座挫罪主住侏做姝胄呪周嗾奏宙州廚晝朱柱株注洲湊澍炷珠疇籌紂紬綢舟蛛註誅走躊輳週酎酒鑄駐竹粥俊儁准埈寯峻晙樽浚準濬焌畯竣蠢逡遵雋駿茁中仲衆重卽櫛楫汁葺增憎曾拯烝甑症繒蒸證贈之只"],["f2a1","咫地址志持指摯支旨智枝枳止池沚漬知砥祉祗紙肢脂至芝芷蜘誌識贄趾遲直稙稷織職唇嗔塵振搢晉晋桭榛殄津溱珍瑨璡畛疹盡眞瞋秦縉縝臻蔯袗診賑軫辰進鎭陣陳震侄叱姪嫉帙桎瓆疾秩窒膣蛭質跌迭斟朕什執潗緝輯"],["f3a1","鏶集徵懲澄且侘借叉嗟嵯差次此磋箚茶蹉車遮捉搾着窄錯鑿齪撰澯燦璨瓚竄簒纂粲纘讚贊鑽餐饌刹察擦札紮僭參塹慘慙懺斬站讒讖倉倡創唱娼廠彰愴敞昌昶暢槍滄漲猖瘡窓脹艙菖蒼債埰寀寨彩採砦綵菜蔡采釵冊柵策"],["f4a1","責凄妻悽處倜刺剔尺慽戚拓擲斥滌瘠脊蹠陟隻仟千喘天川擅泉淺玔穿舛薦賤踐遷釧闡阡韆凸哲喆徹撤澈綴輟轍鐵僉尖沾添甛瞻簽籤詹諂堞妾帖捷牒疊睫諜貼輒廳晴淸聽菁請靑鯖切剃替涕滯締諦逮遞體初剿哨憔抄招梢"],["f5a1","椒楚樵炒焦硝礁礎秒稍肖艸苕草蕉貂超酢醋醮促囑燭矗蜀觸寸忖村邨叢塚寵悤憁摠總聰蔥銃撮催崔最墜抽推椎楸樞湫皺秋芻萩諏趨追鄒酋醜錐錘鎚雛騶鰍丑畜祝竺筑築縮蓄蹙蹴軸逐春椿瑃出朮黜充忠沖蟲衝衷悴膵萃"],["f6a1","贅取吹嘴娶就炊翠聚脆臭趣醉驟鷲側仄厠惻測層侈値嗤峙幟恥梔治淄熾痔痴癡稚穉緇緻置致蚩輜雉馳齒則勅飭親七柒漆侵寢枕沈浸琛砧針鍼蟄秤稱快他咤唾墮妥惰打拖朶楕舵陀馱駝倬卓啄坼度托拓擢晫柝濁濯琢琸託"],["f7a1","鐸呑嘆坦彈憚歎灘炭綻誕奪脫探眈耽貪塔搭榻宕帑湯糖蕩兌台太怠態殆汰泰笞胎苔跆邰颱宅擇澤撑攄兎吐土討慟桶洞痛筒統通堆槌腿褪退頹偸套妬投透鬪慝特闖坡婆巴把播擺杷波派爬琶破罷芭跛頗判坂板版瓣販辦鈑"],["f8a1","阪八叭捌佩唄悖敗沛浿牌狽稗覇貝彭澎烹膨愎便偏扁片篇編翩遍鞭騙貶坪平枰萍評吠嬖幣廢弊斃肺蔽閉陛佈包匍匏咆哺圃布怖抛抱捕暴泡浦疱砲胞脯苞葡蒲袍褒逋鋪飽鮑幅暴曝瀑爆輻俵剽彪慓杓標漂瓢票表豹飇飄驃"],["f9a1","品稟楓諷豊風馮彼披疲皮被避陂匹弼必泌珌畢疋筆苾馝乏逼下何厦夏廈昰河瑕荷蝦賀遐霞鰕壑學虐謔鶴寒恨悍旱汗漢澣瀚罕翰閑閒限韓割轄函含咸啣喊檻涵緘艦銜陷鹹合哈盒蛤閤闔陜亢伉姮嫦巷恒抗杭桁沆港缸肛航"],["faa1","行降項亥偕咳垓奚孩害懈楷海瀣蟹解該諧邂駭骸劾核倖幸杏荇行享向嚮珦鄕響餉饗香噓墟虛許憲櫶獻軒歇險驗奕爀赫革俔峴弦懸晛泫炫玄玹現眩睍絃絢縣舷衒見賢鉉顯孑穴血頁嫌俠協夾峽挾浹狹脅脇莢鋏頰亨兄刑型"],["fba1","形泂滎瀅灐炯熒珩瑩荊螢衡逈邢鎣馨兮彗惠慧暳蕙蹊醯鞋乎互呼壕壺好岵弧戶扈昊晧毫浩淏湖滸澔濠濩灝狐琥瑚瓠皓祜糊縞胡芦葫蒿虎號蝴護豪鎬頀顥惑或酷婚昏混渾琿魂忽惚笏哄弘汞泓洪烘紅虹訌鴻化和嬅樺火畵"],["fca1","禍禾花華話譁貨靴廓擴攫確碻穫丸喚奐宦幻患換歡晥桓渙煥環紈還驩鰥活滑猾豁闊凰幌徨恍惶愰慌晃晄榥況湟滉潢煌璜皇篁簧荒蝗遑隍黃匯回廻徊恢悔懷晦會檜淮澮灰獪繪膾茴蛔誨賄劃獲宖橫鐄哮嚆孝效斅曉梟涍淆"],["fda1","爻肴酵驍侯候厚后吼喉嗅帿後朽煦珝逅勛勳塤壎焄熏燻薰訓暈薨喧暄煊萱卉喙毁彙徽揮暉煇諱輝麾休携烋畦虧恤譎鷸兇凶匈洶胸黑昕欣炘痕吃屹紇訖欠欽歆吸恰洽翕興僖凞喜噫囍姬嬉希憙憘戱晞曦熙熹熺犧禧稀羲詰"]]},9521:function(e,t,n){e.exports=n(662).constants||n(9380)},9522:function(e,t,n){"use strict";var r=n(4316);function homedir(){var e=process.env;var t=e.HOME;var n=e.LOGNAME||e.USER||e.LNAME||e.USERNAME;if(process.platform==="win32"){return e.USERPROFILE||e.HOMEDRIVE+e.HOMEPATH||t||null}if(process.platform==="darwin"){return t||(n?"/Users/"+n:null)}if(process.platform==="linux"){return t||(process.getuid()===0?"/root":n?"/home/"+n:null)}return t||null}e.exports=typeof r.homedir==="function"?r.homedir:homedir},9538:function(e){e.exports={$id:"page.json#",$schema:"http://json-schema.org/draft-06/schema#",type:"object",optional:true,required:["startedDateTime","id","title","pageTimings"],properties:{startedDateTime:{type:"string",format:"date-time",pattern:"^(\\d{4})(-)?(\\d\\d)(-)?(\\d\\d)(T)?(\\d\\d)(:)?(\\d\\d)(:)?(\\d\\d)(\\.\\d+)?(Z|([+-])(\\d\\d)(:)?(\\d\\d))"},id:{type:"string",unique:true},title:{type:"string"},pageTimings:{$ref:"pageTimings.json#"},comment:{type:"string"}}}},9539:function(e){"use strict";e.exports=function generate_contains(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.schemaPath+e.util.getProperty(t);var c=e.errSchemaPath+"/"+t;var u=!e.opts.allErrors;var l="data"+(o||"");var f="valid"+i;var p="errs__"+i;var d=e.util.copy(e);var h="";d.level++;var m="valid"+d.level;var v="i"+i,g=d.dataLevel=e.dataLevel+1,y="data"+g,b=e.baseId,w=e.opts.strictKeywords?typeof a=="object"&&Object.keys(a).length>0:e.util.schemaHasRules(a,e.RULES.all);r+="var "+p+" = errors;var "+f+";";if(w){var x=e.compositeRule;e.compositeRule=d.compositeRule=true;d.schema=a;d.schemaPath=s;d.errSchemaPath=c;r+=" var "+m+" = false; for (var "+v+" = 0; "+v+" < "+l+".length; "+v+"++) { ";d.errorPath=e.util.getPathExpr(e.errorPath,v,e.opts.jsonPointers,true);var k=l+"["+v+"]";d.dataPathArr[g]=v;var j=e.validate(d);d.baseId=b;if(e.util.varOccurences(j,y)<2){r+=" "+e.util.varReplace(j,y,k)+" "}else{r+=" var "+y+" = "+k+"; "+j+" "}r+=" if ("+m+") break; } ";e.compositeRule=d.compositeRule=x;r+=" "+h+" if (!"+m+") {"}else{r+=" if ("+l+".length == 0) {"}var S=S||[];S.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"contains"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(c)+" , params: {} ";if(e.opts.messages!==false){r+=" , message: 'should contain a valid item' "}if(e.opts.verbose){r+=" , schema: validate.schema"+s+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+l+" "}r+=" } "}else{r+=" {} "}var E=r;r=S.pop();if(!e.compositeRule&&u){if(e.async){r+=" throw new ValidationError(["+E+"]); "}else{r+=" validate.errors = ["+E+"]; return false; "}}else{r+=" var err = "+E+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}r+=" } else { ";if(w){r+=" errors = "+p+"; if (vErrors !== null) { if ("+p+") vErrors.length = "+p+"; else vErrors = null; } "}if(e.opts.allErrors){r+=" } "}r=e.util.cleanUpCode(r);return r}},9544:function(e,t,n){"use strict";const r=n(1964);const i=n(2526);const o=n(4581).stdout;const a=n(3501);const s=process.platform==="win32"&&!(process.env.TERM||"").toLowerCase().startsWith("xterm");const c=["ansi","ansi","ansi256","ansi16m"];const u=new Set(["gray"]);const l=Object.create(null);function applyOptions(e,t){t=t||{};const n=o?o.level:0;e.level=t.level===undefined?n:t.level;e.enabled="enabled"in t?t.enabled:e.level>0}function Chalk(e){if(!this||!(this instanceof Chalk)||this.template){const t={};applyOptions(t,e);t.template=function(){const e=[].slice.call(arguments);return chalkTag.apply(null,[t.template].concat(e))};Object.setPrototypeOf(t,Chalk.prototype);Object.setPrototypeOf(t.template,t);t.template.constructor=Chalk;return t.template}applyOptions(this,e)}if(s){i.blue.open=""}for(const e of Object.keys(i)){i[e].closeRe=new RegExp(r(i[e].close),"g");l[e]={get(){const t=i[e];return build.call(this,this._styles?this._styles.concat(t):[t],this._empty,e)}}}l.visible={get(){return build.call(this,this._styles||[],true,"visible")}};i.color.closeRe=new RegExp(r(i.color.close),"g");for(const e of Object.keys(i.color.ansi)){if(u.has(e)){continue}l[e]={get(){const t=this.level;return function(){const n=i.color[c[t]][e].apply(null,arguments);const r={open:n,close:i.color.close,closeRe:i.color.closeRe};return build.call(this,this._styles?this._styles.concat(r):[r],this._empty,e)}}}}i.bgColor.closeRe=new RegExp(r(i.bgColor.close),"g");for(const e of Object.keys(i.bgColor.ansi)){if(u.has(e)){continue}const t="bg"+e[0].toUpperCase()+e.slice(1);l[t]={get(){const t=this.level;return function(){const n=i.bgColor[c[t]][e].apply(null,arguments);const r={open:n,close:i.bgColor.close,closeRe:i.bgColor.closeRe};return build.call(this,this._styles?this._styles.concat(r):[r],this._empty,e)}}}}const f=Object.defineProperties(()=>{},l);function build(e,t,n){const r=function(){return applyStyle.apply(r,arguments)};r._styles=e;r._empty=t;const i=this;Object.defineProperty(r,"level",{enumerable:true,get(){return i.level},set(e){i.level=e}});Object.defineProperty(r,"enabled",{enumerable:true,get(){return i.enabled},set(e){i.enabled=e}});r.hasGrey=this.hasGrey||n==="gray"||n==="grey";r.__proto__=f;return r}function applyStyle(){const e=arguments;const t=e.length;let n=String(arguments[0]);if(t===0){return""}if(t>1){for(let r=1;r<t;r++){n+=" "+e[r]}}if(!this.enabled||this.level<=0||!n){return this._empty?"":n}const r=i.dim.open;if(s&&this.hasGrey){i.dim.open=""}for(const e of this._styles.slice().reverse()){n=e.open+n.replace(e.closeRe,e.open)+e.close;n=n.replace(/\r?\n/g,`${e.close}$&${e.open}`)}i.dim.open=r;return n}function chalkTag(e,t){if(!Array.isArray(t)){return[].slice.call(arguments,1).join(" ")}const n=[].slice.call(arguments,2);const r=[t.raw[0]];for(let e=1;e<t.length;e++){r.push(String(n[e-1]).replace(/[{}\\]/g,"\\$&"));r.push(String(t.raw[e]))}return a(e,r.join(""))}Object.defineProperties(Chalk.prototype,l);e.exports=Chalk();e.exports.supportsColor=o;e.exports.default=e.exports},9555:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:true});const r=n(3937);function getMimeType(e){return r.lookup(e)||"application/octet-stream"}t.default=getMimeType},9563:function(e){var t=Object.prototype.toString;e.exports=function kindOf(e){var n=typeof e;if(n==="undefined"){return"undefined"}if(e===null){return"null"}if(e===true||e===false||e instanceof Boolean){return"boolean"}if(n==="string"||e instanceof String){return"string"}if(n==="number"||e instanceof Number){return"number"}if(n==="function"||e instanceof Function){if(typeof e.constructor.name!=="undefined"&&e.constructor.name.slice(0,9)==="Generator"){return"generatorfunction"}return"function"}if(typeof Array.isArray!=="undefined"&&Array.isArray(e)){return"array"}if(e instanceof RegExp){return"regexp"}if(e instanceof Date){return"date"}n=t.call(e);if(n==="[object RegExp]"){return"regexp"}if(n==="[object Date]"){return"date"}if(n==="[object Arguments]"){return"arguments"}if(n==="[object Error]"){return"error"}if(n==="[object Promise]"){return"promise"}if(isBuffer(e)){return"buffer"}if(n==="[object Set]"){return"set"}if(n==="[object WeakSet]"){return"weakset"}if(n==="[object Map]"){return"map"}if(n==="[object WeakMap]"){return"weakmap"}if(n==="[object Symbol]"){return"symbol"}if(n==="[object Map Iterator]"){return"mapiterator"}if(n==="[object Set Iterator]"){return"setiterator"}if(n==="[object String Iterator]"){return"stringiterator"}if(n==="[object Array Iterator]"){return"arrayiterator"}if(n==="[object Int8Array]"){return"int8array"}if(n==="[object Uint8Array]"){return"uint8array"}if(n==="[object Uint8ClampedArray]"){return"uint8clampedarray"}if(n==="[object Int16Array]"){return"int16array"}if(n==="[object Uint16Array]"){return"uint16array"}if(n==="[object Int32Array]"){return"int32array"}if(n==="[object Uint32Array]"){return"uint32array"}if(n==="[object Float32Array]"){return"float32array"}if(n==="[object Float64Array]"){return"float64array"}return"object"};function isBuffer(e){return e.constructor&&typeof e.constructor.isBuffer==="function"&&e.constructor.isBuffer(e)}},9570:function(e){e.exports=require("electron")},9575:function(e,t,n){"use strict";var r=n(5325);function isObjectObject(e){return r(e)===true&&Object.prototype.toString.call(e)==="[object Object]"}e.exports=function isPlainObject(e){var t,n;if(isObjectObject(e)===false)return false;t=e.constructor;if(typeof t!=="function")return false;n=t.prototype;if(isObjectObject(n)===false)return false;if(n.hasOwnProperty("isPrototypeOf")===false){return false}return true}},9593:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return getDCsFromArgs});var r=n(5503);var i=n.n(r);var o=n(9603);function getDCsFromArgs(e){const t=(i()(e[2])?"all":e[2]).split(",");return Object(o["default"])(t)}},9601:function(e){"use strict";e.exports=callSiteToString;function callSiteFileLocation(e){var t;var n="";if(e.isNative()){n="native"}else if(e.isEval()){t=e.getScriptNameOrSourceURL();if(!t){n=e.getEvalOrigin()}}else{t=e.getFileName()}if(t){n+=t;var r=e.getLineNumber();if(r!=null){n+=":"+r;var i=e.getColumnNumber();if(i){n+=":"+i}}}return n||"unknown source"}function callSiteToString(e){var t=true;var n=callSiteFileLocation(e);var r=e.getFunctionName();var i=e.isConstructor();var o=!(e.isToplevel()||i);var a="";if(o){var s=e.getMethodName();var c=getConstructorName(e);if(r){if(c&&r.indexOf(c)!==0){a+=c+"."}a+=r;if(s&&r.lastIndexOf("."+s)!==r.length-s.length-1){a+=" [as "+s+"]"}}else{a+=c+"."+(s||"<anonymous>")}}else if(i){a+="new "+(r||"<anonymous>")}else if(r){a+=r}else{t=false;a+=n}if(t){a+=" ("+n+")"}return a}function getConstructorName(e){var t=e.receiver;return t.constructor&&t.constructor.name||null}},9603:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return normalizeRegionsList});var r=n(1612);var i=n.n(r);var o=n(5348);function normalizeRegionsList(e){if(e.includes("all")){if(e.length>1){return new r["InvalidAllForScale"]}return["all"]}const t=new Set;for(const n of e){const e=Object(o["default"])(n);if(e===undefined){return new r["InvalidRegionOrDCForScale"](n)}t.add(e)}return Array.from(t)}},9622:function(e,t,n){"use strict";var r=n(9950);e.exports=function(){var e={};Object.keys(r).forEach(function(t){var n=r[t];if(n.extensions&&n.extensions.length>0){n.extensions.forEach(function(n){e[n]=t})}});return e}},9626:function(e,t,n){"use strict";const r=n(2255).fromCallback;e.exports={move:r(n(7768))}},9640:function(e,t,n){var r=n(5897);var i=process.platform==="win32";var o=n(662);var a=process.env.NODE_DEBUG&&/fs/.test(process.env.NODE_DEBUG);function rethrow(){var e;if(a){var t=new Error;e=debugCallback}else e=missingCallback;return e;function debugCallback(e){if(e){t.message=e.message;e=t;missingCallback(e)}}function missingCallback(e){if(e){if(process.throwDeprecation)throw e;else if(!process.noDeprecation){var t="fs: missing callback "+(e.stack||e.message);if(process.traceDeprecation)console.trace(t);else console.error(t)}}}}function maybeCallback(e){return typeof e==="function"?e:rethrow()}var s=r.normalize;if(i){var c=/(.*?)(?:[\/\\]+|$)/g}else{var c=/(.*?)(?:[\/]+|$)/g}if(i){var u=/^(?:[a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/][^\\\/]+)?[\\\/]*/}else{var u=/^[\/]*/}t.realpathSync=function realpathSync(e,t){e=r.resolve(e);if(t&&Object.prototype.hasOwnProperty.call(t,e)){return t[e]}var n=e,a={},s={};var l;var f;var p;var d;start();function start(){var t=u.exec(e);l=t[0].length;f=t[0];p=t[0];d="";if(i&&!s[p]){o.lstatSync(p);s[p]=true}}while(l<e.length){c.lastIndex=l;var h=c.exec(e);d=f;f+=h[0];p=d+h[1];l=c.lastIndex;if(s[p]||t&&t[p]===p){continue}var m;if(t&&Object.prototype.hasOwnProperty.call(t,p)){m=t[p]}else{var v=o.lstatSync(p);if(!v.isSymbolicLink()){s[p]=true;if(t)t[p]=p;continue}var g=null;if(!i){var y=v.dev.toString(32)+":"+v.ino.toString(32);if(a.hasOwnProperty(y)){g=a[y]}}if(g===null){o.statSync(p);g=o.readlinkSync(p)}m=r.resolve(d,g);if(t)t[p]=m;if(!i)a[y]=g}e=r.resolve(m,e.slice(l));start()}if(t)t[n]=e;return e};t.realpath=function realpath(e,t,n){if(typeof n!=="function"){n=maybeCallback(t);t=null}e=r.resolve(e);if(t&&Object.prototype.hasOwnProperty.call(t,e)){return process.nextTick(n.bind(null,null,t[e]))}var a=e,s={},l={};var f;var p;var d;var h;start();function start(){var t=u.exec(e);f=t[0].length;p=t[0];d=t[0];h="";if(i&&!l[d]){o.lstat(d,function(e){if(e)return n(e);l[d]=true;LOOP()})}else{process.nextTick(LOOP)}}function LOOP(){if(f>=e.length){if(t)t[a]=e;return n(null,e)}c.lastIndex=f;var r=c.exec(e);h=p;p+=r[0];d=h+r[1];f=c.lastIndex;if(l[d]||t&&t[d]===d){return process.nextTick(LOOP)}if(t&&Object.prototype.hasOwnProperty.call(t,d)){return gotResolvedLink(t[d])}return o.lstat(d,gotStat)}function gotStat(e,r){if(e)return n(e);if(!r.isSymbolicLink()){l[d]=true;if(t)t[d]=d;return process.nextTick(LOOP)}if(!i){var a=r.dev.toString(32)+":"+r.ino.toString(32);if(s.hasOwnProperty(a)){return gotTarget(null,s[a],d)}}o.stat(d,function(e){if(e)return n(e);o.readlink(d,function(e,t){if(!i)s[a]=t;gotTarget(e,t)})})}function gotTarget(e,i,o){if(e)return n(e);var a=r.resolve(h,i);if(t)t[o]=a;gotResolvedLink(a)}function gotResolvedLink(t){e=r.resolve(t,e.slice(f));start()}}},9655:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const o=i(n(9044));const a=i(n(6386));function deploymentShouldDownscale(e,t,n){return r(this,void 0,void 0,function*(){const r=yield o.default(t,n);e.debug(`Previous deployment is aliased: ${r.toString()}`);if(n.type==="DOCKER"&&!!n.slot||n.version===2||n.type==="STATIC"){return false}return!r&&Object.keys(n.scale).reduce((e,t)=>e||a.default(t,n).min!==0||a.default(t,n).max!==1,false)})}t.default=deploymentShouldDownscale},9664:function(e,t){"use strict";var n=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};Object.defineProperty(t,"__esModule",{value:true});function deleteDNSRecordById(e,t,r){return n(this,void 0,void 0,function*(){return e.fetch(`/v3/domains/${encodeURIComponent(t)}/records/${r}`,{method:"DELETE"})})}t.default=deleteDNSRecordById},9665:function(e,t,n){"use strict";const r=n(2617);const i=n(5897);const o=n(3363).invalidWin32Path;const a=parseInt("0777",8);function mkdirsSync(e,t,n){if(!t||typeof t!=="object"){t={mode:t}}let s=t.mode;const c=t.fs||r;if(process.platform==="win32"&&o(e)){const t=new Error(e+" contains invalid WIN32 path characters.");t.code="EINVAL";throw t}if(s===undefined){s=a&~process.umask()}if(!n)n=null;e=i.resolve(e);try{c.mkdirSync(e,s);n=n||e}catch(r){if(r.code==="ENOENT"){if(i.dirname(e)===e)throw r;n=mkdirsSync(i.dirname(e),t,n);mkdirsSync(e,t,n)}else{let t;try{t=c.statSync(e)}catch(e){throw r}if(!t.isDirectory())throw r}}return n}e.exports=mkdirsSync},9675:function(e,t,n){const{URL:r}=n(774);const{join:i}=n(5897);const o=n(662);const{promisify:a}=n(649);const{tmpdir:s}=n(4316);const c=n(6602);const u=a(o.writeFile);const l=a(o.mkdir);const f=a(o.readFile);const p=(e,t)=>e.localeCompare(t,"en-US",{numeric:true});const d=e=>encodeURIComponent(e).replace(/^%40/,"@");const h=async(e,t)=>{const n=s();const r=i(n,"update-check");if(!o.existsSync(r)){await l(r)}let a=`${e.name}-${t}.json`;if(e.scope){a=`${e.scope}-${a}`}return i(r,a)};const m=async(e,t,n)=>{if(o.existsSync(e)){const r=await f(e,"utf8");const{lastUpdate:i,latest:o}=JSON.parse(r);const a=i+n;if(a>t){return{shouldCheck:false,latest:o}}}return{shouldCheck:true,latest:null}};const v=async(e,t,n)=>{const r=JSON.stringify({latest:t,lastUpdate:n});await u(e,r,"utf8")};const g=(e,t)=>new Promise((r,i)=>{const o={host:e.hostname,path:e.pathname,port:e.port,headers:{accept:"application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"},timeout:2e3};if(t){o.headers.authorization=`${t.type} ${t.token}`}const{get:a}=n(e.protocol==="https:"?2307:4219);a(o,e=>{const{statusCode:t}=e;if(t!==200){const n=new Error(`Request failed with code ${t}`);n.code=t;i(n);e.resume();return}let n="";e.setEncoding("utf8");e.on("data",e=>{n+=e});e.on("end",()=>{try{const e=JSON.parse(n);r(e)}catch(e){i(e)}})}).on("error",i).on("timeout",i)});const y=async({full:e,scope:t},i)=>{const o=c(t);const a=new r(e,o);let s=null;try{s=await g(a)}catch(e){if(e.code&&String(e.code).startsWith(4)){const e=n(4974);const t=e(o,{recursive:true});s=await g(a,t)}else{throw e}}const u=s["dist-tags"][i];if(!u){throw new Error(`Distribution tag ${i} is not available`)}return u};const b={interval:36e5,distTag:"latest"};const w=e=>{const t={full:d(e)};if(e.includes("/")){const n=e.split("/");t.scope=n[0];t.name=n[1]}else{t.scope=null;t.name=e}return t};e.exports=(async(e,t)=>{if(typeof e!=="object"){throw new Error("The first parameter should be your package.json file content")}const n=w(e.name);const r=Date.now();const{distTag:i,interval:o}=Object.assign({},b,t);const a=await h(n,i);let s=null;let c=true;({shouldCheck:c,latest:s}=await m(a,r,o));if(c){s=await y(n,i);await v(a,s,r)}const u=p(e.version,s);if(u===-1){return{latest:s,fromCache:!c}}return null})},9693:function(e,t,n){"use strict";n.r(t);n.d(t,"default",function(){return Teams});var r=n(4495);class Teams extends r["default"]{async create({slug:e}){return this.retry(async(t,n)=>{if(this._debug){console.time(`> [debug] #${n} POST /teams}`)}const r=await this._fetch(`/teams`,{method:"POST",body:{slug:e}});if(this._debug){console.timeEnd(`> [debug] #${n} POST /teams`)}if(r.status===403){return t(new Error("Unauthorized"))}const i=await r.json();if(r.status===400){const e=new Error(i.error.message);e.code=i.error.code;return t(e)}if(r.status!==200){const e=new Error(i.error.message);e.code=i.error.code;throw e}return i})}async edit({id:e,slug:t,name:n}){return this.retry(async(r,i)=>{if(this._debug){console.time(`> [debug] #${i} PATCH /teams/${e}}`)}const o={};if(n){o.name=n}if(t){o.slug=t}const a=await this._fetch(`/teams/${e}`,{method:"PATCH",body:o});if(this._debug){console.timeEnd(`> [debug] #${i} PATCH /teams/${e}`)}if(a.status===403){return r(new Error("Unauthorized"))}const s=await a.json();if(a.status===400){const e=new Error(s.error.message);e.code=s.error.code;return r(e)}if(a.status!==200){const e=new Error(s.error.message);e.code=s.error.code;throw e}return s})}async inviteUser({teamId:e,email:t}){return this.retry(async(n,r)=>{if(this._debug){console.time(`> [debug] #${r} POST /teams/${e}/members}`)}const i=await this._fetch(`/www/user/public?email=${t}`);const{name:o,username:a}=await i.json();const s=await this._fetch(`/teams/${e}/members`,{method:"POST",body:{email:t}});if(this._debug){console.timeEnd(`> [debug] #${r} POST /teams/${e}/members}`)}if(s.status===403){return n(new Error("Unauthorized"))}const c=await s.json();if(s.status===400){const e=new Error(c.error.message);e.code=c.error.code;return n(e)}if(s.status!==200){const e=new Error(c.error.message);e.code=c.error.code;throw e}return{...c,name:o,username:a}})}async ls(){return this.retry(async(e,t)=>{if(this._debug){console.time(`> [debug] #${t} GET /teams}`)}const n=await this._fetch(`/teams`);if(this._debug){console.timeEnd(`> [debug] #${t} GET /teams`)}if(n.status===403){const t=new Error("Unauthorized");t.code="not_authorized";return e(t)}return n.json()})}}},9698:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(8233));function extractDomain(e){return i.default(e)?e.slice(2):e}t.default=extractDomain},9703:function(e){"use strict";e.exports=(e=>{const t=new Uint8Array(e);if(!(t&&t.length>1)){return null}const n=(e,n)=>{n=Object.assign({offset:0},n);for(let r=0;r<e.length;r++){if(e[r]!==t[r+n.offset]){return false}}return true};if(n([255,216,255])){return{ext:"jpg",mime:"image/jpeg"}}if(n([137,80,78,71,13,10,26,10])){return{ext:"png",mime:"image/png"}}if(n([71,73,70])){return{ext:"gif",mime:"image/gif"}}if(n([87,69,66,80],{offset:8})){return{ext:"webp",mime:"image/webp"}}if(n([70,76,73,70])){return{ext:"flif",mime:"image/flif"}}if((n([73,73,42,0])||n([77,77,0,42]))&&n([67,82],{offset:8})){return{ext:"cr2",mime:"image/x-canon-cr2"}}if(n([73,73,42,0])||n([77,77,0,42])){return{ext:"tif",mime:"image/tiff"}}if(n([66,77])){return{ext:"bmp",mime:"image/bmp"}}if(n([73,73,188])){return{ext:"jxr",mime:"image/vnd.ms-photo"}}if(n([56,66,80,83])){return{ext:"psd",mime:"image/vnd.adobe.photoshop"}}if(n([80,75,3,4])&&n([109,105,109,101,116,121,112,101,97,112,112,108,105,99,97,116,105,111,110,47,101,112,117,98,43,122,105,112],{offset:30})){return{ext:"epub",mime:"application/epub+zip"}}if(n([80,75,3,4])&&n([77,69,84,65,45,73,78,70,47,109,111,122,105,108,108,97,46,114,115,97],{offset:30})){return{ext:"xpi",mime:"application/x-xpinstall"}}if(n([80,75])&&(t[2]===3||t[2]===5||t[2]===7)&&(t[3]===4||t[3]===6||t[3]===8)){return{ext:"zip",mime:"application/zip"}}if(n([117,115,116,97,114],{offset:257})){return{ext:"tar",mime:"application/x-tar"}}if(n([82,97,114,33,26,7])&&(t[6]===0||t[6]===1)){return{ext:"rar",mime:"application/x-rar-compressed"}}if(n([31,139,8])){return{ext:"gz",mime:"application/gzip"}}if(n([66,90,104])){return{ext:"bz2",mime:"application/x-bzip2"}}if(n([55,122,188,175,39,28])){return{ext:"7z",mime:"application/x-7z-compressed"}}if(n([120,1])){return{ext:"dmg",mime:"application/x-apple-diskimage"}}if(n([0,0,0])&&(t[3]===24||t[3]===32)&&n([102,116,121,112],{offset:4})||n([51,103,112,53])||n([0,0,0,28,102,116,121,112,109,112,52,50])&&n([109,112,52,49,109,112,52,50,105,115,111,109],{offset:16})||n([0,0,0,28,102,116,121,112,105,115,111,109])||n([0,0,0,28,102,116,121,112,109,112,52,50,0,0,0,0])){return{ext:"mp4",mime:"video/mp4"}}if(n([0,0,0,28,102,116,121,112,77,52,86])){return{ext:"m4v",mime:"video/x-m4v"}}if(n([77,84,104,100])){return{ext:"mid",mime:"audio/midi"}}if(n([26,69,223,163])){const e=t.subarray(4,4+4096);const n=e.findIndex((e,t,n)=>n[t]===66&&n[t+1]===130);if(n>=0){const t=n+3;const r=n=>Array.from(n).every((n,r)=>e[t+r]===n.charCodeAt(0));if(r("matroska")){return{ext:"mkv",mime:"video/x-matroska"}}if(r("webm")){return{ext:"webm",mime:"video/webm"}}}}if(n([0,0,0,20,102,116,121,112,113,116,32,32])||n([102,114,101,101],{offset:4})||n([102,116,121,112,113,116,32,32],{offset:4})||n([109,100,97,116],{offset:4})||n([119,105,100,101],{offset:4})){return{ext:"mov",mime:"video/quicktime"}}if(n([82,73,70,70])&&n([65,86,73],{offset:8})){return{ext:"avi",mime:"video/x-msvideo"}}if(n([48,38,178,117,142,102,207,17,166,217])){return{ext:"wmv",mime:"video/x-ms-wmv"}}if(n([0,0,1,186])){return{ext:"mpg",mime:"video/mpeg"}}if(n([73,68,51])||n([255,251])){return{ext:"mp3",mime:"audio/mpeg"}}if(n([102,116,121,112,77,52,65],{offset:4})||n([77,52,65,32])){return{ext:"m4a",mime:"audio/m4a"}}if(n([79,112,117,115,72,101,97,100],{offset:28})){return{ext:"opus",mime:"audio/opus"}}if(n([79,103,103,83])){return{ext:"ogg",mime:"audio/ogg"}}if(n([102,76,97,67])){return{ext:"flac",mime:"audio/x-flac"}}if(n([82,73,70,70])&&n([87,65,86,69],{offset:8})){return{ext:"wav",mime:"audio/x-wav"}}if(n([35,33,65,77,82,10])){return{ext:"amr",mime:"audio/amr"}}if(n([37,80,68,70])){return{ext:"pdf",mime:"application/pdf"}}if(n([77,90])){return{ext:"exe",mime:"application/x-msdownload"}}if((t[0]===67||t[0]===70)&&n([87,83],{offset:1})){return{ext:"swf",mime:"application/x-shockwave-flash"}}if(n([123,92,114,116,102])){return{ext:"rtf",mime:"application/rtf"}}if(n([0,97,115,109])){return{ext:"wasm",mime:"application/wasm"}}if(n([119,79,70,70])&&(n([0,1,0,0],{offset:4})||n([79,84,84,79],{offset:4}))){return{ext:"woff",mime:"font/woff"}}if(n([119,79,70,50])&&(n([0,1,0,0],{offset:4})||n([79,84,84,79],{offset:4}))){return{ext:"woff2",mime:"font/woff2"}}if(n([76,80],{offset:34})&&(n([0,0,1],{offset:8})||n([1,0,2],{offset:8})||n([2,0,2],{offset:8}))){return{ext:"eot",mime:"application/octet-stream"}}if(n([0,1,0,0,0])){return{ext:"ttf",mime:"font/ttf"}}if(n([79,84,84,79,0])){return{ext:"otf",mime:"font/otf"}}if(n([0,0,1,0])){return{ext:"ico",mime:"image/x-icon"}}if(n([70,76,86,1])){return{ext:"flv",mime:"video/x-flv"}}if(n([37,33])){return{ext:"ps",mime:"application/postscript"}}if(n([253,55,122,88,90,0])){return{ext:"xz",mime:"application/x-xz"}}if(n([83,81,76,105])){return{ext:"sqlite",mime:"application/x-sqlite3"}}if(n([78,69,83,26])){return{ext:"nes",mime:"application/x-nintendo-nes-rom"}}if(n([67,114,50,52])){return{ext:"crx",mime:"application/x-google-chrome-extension"}}if(n([77,83,67,70])||n([73,83,99,40])){return{ext:"cab",mime:"application/vnd.ms-cab-compressed"}}if(n([33,60,97,114,99,104,62,10,100,101,98,105,97,110,45,98,105,110,97,114,121])){return{ext:"deb",mime:"application/x-deb"}}if(n([33,60,97,114,99,104,62])){return{ext:"ar",mime:"application/x-unix-archive"}}if(n([237,171,238,219])){return{ext:"rpm",mime:"application/x-rpm"}}if(n([31,160])||n([31,157])){return{ext:"Z",mime:"application/x-compress"}}if(n([76,90,73,80])){return{ext:"lz",mime:"application/x-lzip"}}if(n([208,207,17,224,161,177,26,225])){return{ext:"msi",mime:"application/x-msi"}}if(n([6,14,43,52,2,5,1,1,13,1,2,1,1,2])){return{ext:"mxf",mime:"application/mxf"}}if(n([71],{offset:4})&&(n([71],{offset:192})||n([71],{offset:196}))){return{ext:"mts",mime:"video/mp2t"}}if(n([66,76,69,78,68,69,82])){return{ext:"blend",mime:"application/x-blender"}}if(n([66,80,71,251])){return{ext:"bpg",mime:"image/bpg"}}return null})},9705:function(e,t,n){var r=n(6886);t=e.exports=through;through.through=through;function through(e,t,n){e=e||function(e){this.queue(e)};t=t||function(){this.queue(null)};var i=false,o=false,a=[],s=false;var c=new r;c.readable=c.writable=true;c.paused=false;c.autoDestroy=!(n&&n.autoDestroy===false);c.write=function(t){e.call(this,t);return!c.paused};function drain(){while(a.length&&!c.paused){var e=a.shift();if(null===e)return c.emit("end");else c.emit("data",e)}}c.queue=c.push=function(e){if(s)return c;if(e===null)s=true;a.push(e);drain();return c};c.on("end",function(){c.readable=false;if(!c.writable&&c.autoDestroy)process.nextTick(function(){c.destroy()})});function _end(){c.writable=false;t.call(c);if(!c.readable&&c.autoDestroy)c.destroy()}c.end=function(e){if(i)return;i=true;if(arguments.length)c.write(e);_end();return c};c.destroy=function(){if(o)return;o=true;i=true;a.length=0;c.writable=c.readable=false;c.emit("close");return c};c.pause=function(){if(c.paused)return;c.paused=true;return c};c.resume=function(){if(c.paused){c.paused=false;c.emit("resume")}drain();if(!c.paused)c.emit("drain");return c};return c}},9714:function(e){"use strict";e.exports=function base(e,t){if(!isObject(e)&&typeof e!=="function"){throw new TypeError("expected an object or function")}var n=isObject(t)?t:{};var r=typeof n.prop==="string"?n.prop:"fns";if(!Array.isArray(e[r])){define(e,r,[])}define(e,"use",use);define(e,"run",function(t){if(!isObject(t))return;if(!t.use||!t.run){define(t,r,t[r]||[]);define(t,"use",use)}if(!t[r]||t[r].indexOf(base)===-1){t.use(base)}var n=this||e;var i=n[r];var o=i.length;var a=-1;while(++a<o){t.use(i[a])}return t});function use(t,i,o){var a=1;if(typeof t==="string"||Array.isArray(t)){i=wrap(t,i);a++}else{o=i;i=t}if(typeof i!=="function"){throw new TypeError("expected a function")}var s=this||e;var c=s[r];var u=[].slice.call(arguments,a);u.unshift(s);if(typeof n.hook==="function"){n.hook.apply(s,u)}var l=i.apply(s,u);if(typeof l==="function"&&c.indexOf(l)===-1){c.push(l)}return s}function wrap(e,t){return function plugin(){return this.type===e?t.apply(this,arguments):plugin}}return e};function isObject(e){return e&&typeof e==="object"&&!Array.isArray(e)}function define(e,t,n){Object.defineProperty(e,t,{configurable:true,writable:true,value:n})}},9716:function(e,t,n){"use strict";n.r(t);var r=n(9544);var i=n.n(r);var o=n(2616);var a=n.n(o);var s=n(816);var c=n.n(s);var u=n(2229);var l=n.n(u);var f=n(3759);var p=n.n(f);var d=n(4110);var h=n.n(d);var m=n(2385);var v=n(3241);var g=n(4573);var y=n.n(g);var b=n(4999);var w=n.n(b);var x=n(8303);var k=n.n(x);const j=encodeURIComponent;const S=()=>{console.log(`\n ${i.a.bold(`${w.a} now projects`)} [options] <command>\n\n ${i.a.dim("Commands:")}\n\n ls Show all projects in the selected team/user\n add [name] Add a new project\n rm [name] Remove a project\n\n ${i.a.dim("Options:")}\n\n -h, --help Output usage information\n -t ${i.a.bold.underline("TOKEN")}, --token=${i.a.bold.underline("TOKEN")} Login token\n -S, --scope Set a custom scope\n\n ${i.a.dim("Examples:")}\n\n ${i.a.gray("")} Add a new project\n\n ${i.a.cyan("$ now projects add my-project")}\n`)};let E;let _;let C;let A;const O=async e=>{E=c()(e.argv.slice(2),{boolean:["help"],alias:{help:"h"}});E._=E._.slice(1);_=E.debug;C=e.apiUrl;A=E._[0];if(E.help||!A){S();await Object(v["default"])(0)}const{authConfig:{token:t},config:{currentTeam:n}}=e;const r=new y.a({apiUrl:C,token:t,currentTeam:n,debug:_});const{contextName:i}=await k()(r);try{await run({client:r,contextName:i})}catch(e){Object(m["handleError"])(e);Object(v["default"])(1)}};t["default"]=(async e=>{try{await O(e)}catch(e){Object(m["handleError"])(e);process.exit(1)}});async function run({client:e,contextName:t}){const n=E._.slice(1);const r=Date.now();if(A==="ls"||A==="list"){if(n.length!==0){console.error(Object(m["error"])(`Invalid number of arguments. Usage: ${i.a.cyan("`now projects ls`")}`));return Object(v["default"])(1)}const o=await e.fetch("/v2/projects/",{method:"GET"});const s=l()(new Date-r);console.log(`> ${p()("project",o.length,true)} found under ${i.a.bold(t)} ${i.a.gray(`[${s}]`)}`);if(o.length>0){const e=Date.now();const t=[["","name","updated"].map(e=>i.a.dim(e))];const n=a()(t.concat(o.map(t=>["",i.a.bold(t.name),i.a.gray(`${l()(e-new Date(t.updatedAt))} ago`)])),{align:["l","l","l"],hsep:" ".repeat(2),stringLength:h.a});if(n){console.log(`\n${n}\n`)}}return}if(A==="rm"||A==="remove"){if(n.length!==1){console.error(Object(m["error"])(`Invalid number of arguments. Usage: ${i.a.cyan("`now project rm <name>`")}`));return Object(v["default"])(1)}const t=n[0];try{await e.fetch(`/projects/info/${j(t)}`)}catch(e){if(e.status===404){console.error(Object(m["error"])("No such project exists"));return Object(v["default"])(1)}}const o=await readConfirmation(t);if(!o){console.error(Object(m["error"])("User abort"));return Object(v["default"])(0)}await e.fetch(`/v2/projects/${t}`,{method:"DELETE"});const a=l()(new Date-r);console.log(`${i.a.cyan("> Success!")} Project ${i.a.bold(t)} removed ${i.a.gray(`[${a}]`)}`);return}if(A==="add"){if(n.length!==1){console.error(Object(m["error"])(`Invalid number of arguments. Usage: ${i.a.cyan("`now projects add <name>`")}`));if(n.length>1){const e=i.a.cyan(`$ now projects add "${n.join(" ")}"`);console.log(`> If your project name has spaces, make sure to wrap it in quotes. Example: \n ${e} `)}return Object(v["default"])(1)}const[o]=n;await e.fetch("/projects/ensure-project",{method:"POST",body:{name:o}});const a=l()(new Date-r);console.log(`${i.a.cyan("> Success!")} Project ${i.a.bold(o.toLowerCase())} added (${i.a.bold(t)}) ${i.a.gray(`[${a}]`)}`);return}console.error(Object(m["error"])("Please specify a valid subcommand: ls | add | rm"));S();Object(v["default"])(1)}process.on("uncaughtException",e=>{Object(m["handleError"])(e);Object(v["default"])(1)});function readConfirmation(e){return new Promise(t=>{process.stdout.write(`The project: ${i.a.bold(e)} will be removed permanently.\n`+`It will also delete everything under the project including deployments.\n`);process.stdout.write(`${i.a.bold.red("> Are you sure?")} ${i.a.gray("[y/N] ")}`);process.stdin.on("data",e=>{process.stdin.pause();t(e.toString().trim().toLowerCase()==="y")}).resume()})}},9719:function(e,t,n){"use strict";e.exports=function(e,t,r,i,o,a){var s=n(2659);var c=s.TypeError;var u=n(4730);var l=u.errorObj;var f=u.tryCatch;var p=[];function promiseFromYieldHandler(t,n,r){for(var o=0;o<n.length;++o){r._pushContext();var a=f(n[o])(t);r._popContext();if(a===l){r._pushContext();var s=e.reject(l.e);r._popContext();return s}var c=i(a,r);if(c instanceof e)return c}return null}function PromiseSpawn(t,n,i,o){if(a.cancellation()){var s=new e(r);var c=this._finallyPromise=new e(r);this._promise=s.lastly(function(){return c});s._captureStackTrace();s._setOnCancel(this)}else{var u=this._promise=new e(r);u._captureStackTrace()}this._stack=o;this._generatorFunction=t;this._receiver=n;this._generator=undefined;this._yieldHandlers=typeof i==="function"?[i].concat(p):p;this._yieldedPromise=null;this._cancellationPhase=false}u.inherits(PromiseSpawn,o);PromiseSpawn.prototype._isResolved=function(){return this._promise===null};PromiseSpawn.prototype._cleanup=function(){this._promise=this._generator=null;if(a.cancellation()&&this._finallyPromise!==null){this._finallyPromise._fulfill();this._finallyPromise=null}};PromiseSpawn.prototype._promiseCancelled=function(){if(this._isResolved())return;var t=typeof this._generator["return"]!=="undefined";var n;if(!t){var r=new e.CancellationError("generator .return() sentinel");e.coroutine.returnSentinel=r;this._promise._attachExtraTrace(r);this._promise._pushContext();n=f(this._generator["throw"]).call(this._generator,r);this._promise._popContext()}else{this._promise._pushContext();n=f(this._generator["return"]).call(this._generator,undefined);this._promise._popContext()}this._cancellationPhase=true;this._yieldedPromise=null;this._continue(n)};PromiseSpawn.prototype._promiseFulfilled=function(e){this._yieldedPromise=null;this._promise._pushContext();var t=f(this._generator.next).call(this._generator,e);this._promise._popContext();this._continue(t)};PromiseSpawn.prototype._promiseRejected=function(e){this._yieldedPromise=null;this._promise._attachExtraTrace(e);this._promise._pushContext();var t=f(this._generator["throw"]).call(this._generator,e);this._promise._popContext();this._continue(t)};PromiseSpawn.prototype._resultCancelled=function(){if(this._yieldedPromise instanceof e){var t=this._yieldedPromise;this._yieldedPromise=null;t.cancel()}};PromiseSpawn.prototype.promise=function(){return this._promise};PromiseSpawn.prototype._run=function(){this._generator=this._generatorFunction.call(this._receiver);this._receiver=this._generatorFunction=undefined;this._promiseFulfilled(undefined)};PromiseSpawn.prototype._continue=function(t){var n=this._promise;if(t===l){this._cleanup();if(this._cancellationPhase){return n.cancel()}else{return n._rejectCallback(t.e,false)}}var r=t.value;if(t.done===true){this._cleanup();if(this._cancellationPhase){return n.cancel()}else{return n._resolveCallback(r)}}else{var o=i(r,this._promise);if(!(o instanceof e)){o=promiseFromYieldHandler(o,this._yieldHandlers,this._promise);if(o===null){this._promiseRejected(new c("A value %s was yielded that could not be treated as a promise\n\n See http://goo.gl/MqrFmX\n\n".replace("%s",String(r))+"From coroutine:\n"+this._stack.split("\n").slice(1,-7).join("\n")));return}}o=o._target();var a=o._bitField;if((a&50397184)===0){this._yieldedPromise=o;o._proxy(this,null)}else if((a&33554432)!==0){e._async.invoke(this._promiseFulfilled,this,o._value())}else if((a&16777216)!==0){e._async.invoke(this._promiseRejected,this,o._reason())}else{this._promiseCancelled()}}};e.coroutine=function(e,t){if(typeof e!=="function"){throw new c("generatorFunction must be a function\n\n See http://goo.gl/MqrFmX\n")}var n=Object(t).yieldHandler;var r=PromiseSpawn;var i=(new Error).stack;return function(){var t=e.apply(this,arguments);var o=new r(undefined,undefined,n,i);var a=o.promise();o._generator=t;o._promiseFulfilled(undefined);return a}};e.coroutine.addYieldHandler=function(e){if(typeof e!=="function"){throw new c("expecting a function but got "+u.classString(e))}p.push(e)};e.spawn=function(n){a.deprecated("Promise.spawn()","Promise.coroutine()");if(typeof n!=="function"){return t("generatorFunction must be a function\n\n See http://goo.gl/MqrFmX\n")}var r=new PromiseSpawn(n,this);var i=r.promise();r._run(e.spawn);return i}}},9723:function(e){e.exports=[["0","\0",127],["a140"," ,、。.‧;:?!︰…‥﹐﹑﹒·﹔﹕﹖﹗|–︱—︳╴︴﹏()︵︶{}︷︸〔〕︹︺【】︻︼《》︽︾〈〉︿﹀「」﹁﹂『』﹃﹄﹙﹚"],["a1a1","﹛﹜﹝﹞‘’“”〝〞‵′#&*※§〃○●△▲◎☆★◇◆□■▽▼㊣℅¯ ̄_ˍ﹉﹊﹍﹎﹋﹌﹟﹠﹡+-×÷±√<>=≦≧≠∞≒≡﹢",4,"~∩∪⊥∠∟⊿㏒㏑∫∮∵∴♀♂⊕⊙↑↓←→↖↗↙↘∥∣/"],["a240","\∕﹨$¥〒¢£%@℃℉﹩﹪﹫㏕㎜㎝㎞㏎㎡㎎㎏㏄°兙兛兞兝兡兣嗧瓩糎▁",7,"▏▎▍▌▋▊▉┼┴┬┤├▔─│▕┌┐└┘╭"],["a2a1","╮╰╯═╞╪╡◢◣◥◤╱╲╳0",9,"",9,"〡",8,"十卄卅A",25,"",21],["a340","Α",16,"Σ",6,"α",16,"σ",6,"ㄅ",10],["a3a1","ㄐ",25,"˙ˉˊˇˋ"],["a3e1","€"],["a440","一乙丁七乃九了二人儿入八几刀刁力匕十卜又三下丈上丫丸凡久么也乞于亡兀刃勺千叉口土士夕大女子孑孓寸小尢尸山川工己已巳巾干廾弋弓才"],["a4a1","丑丐不中丰丹之尹予云井互五亢仁什仃仆仇仍今介仄元允內六兮公冗凶分切刈勻勾勿化匹午升卅卞厄友及反壬天夫太夭孔少尤尺屯巴幻廿弔引心戈戶手扎支文斗斤方日曰月木欠止歹毋比毛氏水火爪父爻片牙牛犬王丙"],["a540","世丕且丘主乍乏乎以付仔仕他仗代令仙仞充兄冉冊冬凹出凸刊加功包匆北匝仟半卉卡占卯卮去可古右召叮叩叨叼司叵叫另只史叱台句叭叻四囚外"],["a5a1","央失奴奶孕它尼巨巧左市布平幼弁弘弗必戊打扔扒扑斥旦朮本未末札正母民氐永汁汀氾犯玄玉瓜瓦甘生用甩田由甲申疋白皮皿目矛矢石示禾穴立丞丟乒乓乩亙交亦亥仿伉伙伊伕伍伐休伏仲件任仰仳份企伋光兇兆先全"],["a640","共再冰列刑划刎刖劣匈匡匠印危吉吏同吊吐吁吋各向名合吃后吆吒因回囝圳地在圭圬圯圩夙多夷夸妄奸妃好她如妁字存宇守宅安寺尖屹州帆并年"],["a6a1","式弛忙忖戎戌戍成扣扛托收早旨旬旭曲曳有朽朴朱朵次此死氖汝汗汙江池汐汕污汛汍汎灰牟牝百竹米糸缶羊羽老考而耒耳聿肉肋肌臣自至臼舌舛舟艮色艾虫血行衣西阡串亨位住佇佗佞伴佛何估佐佑伽伺伸佃佔似但佣"],["a740","作你伯低伶余佝佈佚兌克免兵冶冷別判利刪刨劫助努劬匣即卵吝吭吞吾否呎吧呆呃吳呈呂君吩告吹吻吸吮吵吶吠吼呀吱含吟听囪困囤囫坊坑址坍"],["a7a1","均坎圾坐坏圻壯夾妝妒妨妞妣妙妖妍妤妓妊妥孝孜孚孛完宋宏尬局屁尿尾岐岑岔岌巫希序庇床廷弄弟彤形彷役忘忌志忍忱快忸忪戒我抄抗抖技扶抉扭把扼找批扳抒扯折扮投抓抑抆改攻攸旱更束李杏材村杜杖杞杉杆杠"],["a840","杓杗步每求汞沙沁沈沉沅沛汪決沐汰沌汨沖沒汽沃汲汾汴沆汶沍沔沘沂灶灼災灸牢牡牠狄狂玖甬甫男甸皂盯矣私秀禿究系罕肖肓肝肘肛肚育良芒"],["a8a1","芋芍見角言谷豆豕貝赤走足身車辛辰迂迆迅迄巡邑邢邪邦那酉釆里防阮阱阪阬並乖乳事些亞享京佯依侍佳使佬供例來侃佰併侈佩佻侖佾侏侑佺兔兒兕兩具其典冽函刻券刷刺到刮制剁劾劻卒協卓卑卦卷卸卹取叔受味呵"],["a940","咖呸咕咀呻呷咄咒咆呼咐呱呶和咚呢周咋命咎固垃坷坪坩坡坦坤坼夜奉奇奈奄奔妾妻委妹妮姑姆姐姍始姓姊妯妳姒姅孟孤季宗定官宜宙宛尚屈居"],["a9a1","屆岷岡岸岩岫岱岳帘帚帖帕帛帑幸庚店府底庖延弦弧弩往征彿彼忝忠忽念忿怏怔怯怵怖怪怕怡性怩怫怛或戕房戾所承拉拌拄抿拂抹拒招披拓拔拋拈抨抽押拐拙拇拍抵拚抱拘拖拗拆抬拎放斧於旺昔易昌昆昂明昀昏昕昊"],["aa40","昇服朋杭枋枕東果杳杷枇枝林杯杰板枉松析杵枚枓杼杪杲欣武歧歿氓氛泣注泳沱泌泥河沽沾沼波沫法泓沸泄油況沮泗泅泱沿治泡泛泊沬泯泜泖泠"],["aaa1","炕炎炒炊炙爬爭爸版牧物狀狎狙狗狐玩玨玟玫玥甽疝疙疚的盂盲直知矽社祀祁秉秈空穹竺糾罔羌羋者肺肥肢肱股肫肩肴肪肯臥臾舍芳芝芙芭芽芟芹花芬芥芯芸芣芰芾芷虎虱初表軋迎返近邵邸邱邶采金長門阜陀阿阻附"],["ab40","陂隹雨青非亟亭亮信侵侯便俠俑俏保促侶俘俟俊俗侮俐俄係俚俎俞侷兗冒冑冠剎剃削前剌剋則勇勉勃勁匍南卻厚叛咬哀咨哎哉咸咦咳哇哂咽咪品"],["aba1","哄哈咯咫咱咻咩咧咿囿垂型垠垣垢城垮垓奕契奏奎奐姜姘姿姣姨娃姥姪姚姦威姻孩宣宦室客宥封屎屏屍屋峙峒巷帝帥帟幽庠度建弈弭彥很待徊律徇後徉怒思怠急怎怨恍恰恨恢恆恃恬恫恪恤扁拜挖按拼拭持拮拽指拱拷"],["ac40","拯括拾拴挑挂政故斫施既春昭映昧是星昨昱昤曷柿染柱柔某柬架枯柵柩柯柄柑枴柚查枸柏柞柳枰柙柢柝柒歪殃殆段毒毗氟泉洋洲洪流津洌洱洞洗"],["aca1","活洽派洶洛泵洹洧洸洩洮洵洎洫炫為炳炬炯炭炸炮炤爰牲牯牴狩狠狡玷珊玻玲珍珀玳甚甭畏界畎畋疫疤疥疢疣癸皆皇皈盈盆盃盅省盹相眉看盾盼眇矜砂研砌砍祆祉祈祇禹禺科秒秋穿突竿竽籽紂紅紀紉紇約紆缸美羿耄"],["ad40","耐耍耑耶胖胥胚胃胄背胡胛胎胞胤胝致舢苧范茅苣苛苦茄若茂茉苒苗英茁苜苔苑苞苓苟苯茆虐虹虻虺衍衫要觔計訂訃貞負赴赳趴軍軌述迦迢迪迥"],["ada1","迭迫迤迨郊郎郁郃酋酊重閂限陋陌降面革韋韭音頁風飛食首香乘亳倌倍倣俯倦倥俸倩倖倆值借倚倒們俺倀倔倨俱倡個候倘俳修倭倪俾倫倉兼冤冥冢凍凌准凋剖剜剔剛剝匪卿原厝叟哨唐唁唷哼哥哲唆哺唔哩哭員唉哮哪"],["ae40","哦唧唇哽唏圃圄埂埔埋埃堉夏套奘奚娑娘娜娟娛娓姬娠娣娩娥娌娉孫屘宰害家宴宮宵容宸射屑展屐峭峽峻峪峨峰島崁峴差席師庫庭座弱徒徑徐恙"],["aea1","恣恥恐恕恭恩息悄悟悚悍悔悌悅悖扇拳挈拿捎挾振捕捂捆捏捉挺捐挽挪挫挨捍捌效敉料旁旅時晉晏晃晒晌晅晁書朔朕朗校核案框桓根桂桔栩梳栗桌桑栽柴桐桀格桃株桅栓栘桁殊殉殷氣氧氨氦氤泰浪涕消涇浦浸海浙涓"],["af40","浬涉浮浚浴浩涌涊浹涅浥涔烊烘烤烙烈烏爹特狼狹狽狸狷玆班琉珮珠珪珞畔畝畜畚留疾病症疲疳疽疼疹痂疸皋皰益盍盎眩真眠眨矩砰砧砸砝破砷"],["afa1","砥砭砠砟砲祕祐祠祟祖神祝祗祚秤秣秧租秦秩秘窄窈站笆笑粉紡紗紋紊素索純紐紕級紜納紙紛缺罟羔翅翁耆耘耕耙耗耽耿胱脂胰脅胭胴脆胸胳脈能脊胼胯臭臬舀舐航舫舨般芻茫荒荔荊茸荐草茵茴荏茲茹茶茗荀茱茨荃"],["b040","虔蚊蚪蚓蚤蚩蚌蚣蚜衰衷袁袂衽衹記訐討訌訕訊託訓訖訏訑豈豺豹財貢起躬軒軔軏辱送逆迷退迺迴逃追逅迸邕郡郝郢酒配酌釘針釗釜釙閃院陣陡"],["b0a1","陛陝除陘陞隻飢馬骨高鬥鬲鬼乾偺偽停假偃偌做偉健偶偎偕偵側偷偏倏偯偭兜冕凰剪副勒務勘動匐匏匙匿區匾參曼商啪啦啄啞啡啃啊唱啖問啕唯啤唸售啜唬啣唳啁啗圈國圉域堅堊堆埠埤基堂堵執培夠奢娶婁婉婦婪婀"],["b140","娼婢婚婆婊孰寇寅寄寂宿密尉專將屠屜屝崇崆崎崛崖崢崑崩崔崙崤崧崗巢常帶帳帷康庸庶庵庾張強彗彬彩彫得徙從徘御徠徜恿患悉悠您惋悴惦悽"],["b1a1","情悻悵惜悼惘惕惆惟悸惚惇戚戛扈掠控捲掖探接捷捧掘措捱掩掉掃掛捫推掄授掙採掬排掏掀捻捩捨捺敝敖救教敗啟敏敘敕敔斜斛斬族旋旌旎晝晚晤晨晦晞曹勗望梁梯梢梓梵桿桶梱梧梗械梃棄梭梆梅梔條梨梟梡梂欲殺"],["b240","毫毬氫涎涼淳淙液淡淌淤添淺清淇淋涯淑涮淞淹涸混淵淅淒渚涵淚淫淘淪深淮淨淆淄涪淬涿淦烹焉焊烽烯爽牽犁猜猛猖猓猙率琅琊球理現琍瓠瓶"],["b2a1","瓷甜產略畦畢異疏痔痕疵痊痍皎盔盒盛眷眾眼眶眸眺硫硃硎祥票祭移窒窕笠笨笛第符笙笞笮粒粗粕絆絃統紮紹紼絀細紳組累終紲紱缽羞羚翌翎習耜聊聆脯脖脣脫脩脰脤舂舵舷舶船莎莞莘荸莢莖莽莫莒莊莓莉莠荷荻荼"],["b340","莆莧處彪蛇蛀蚶蛄蚵蛆蛋蚱蚯蛉術袞袈被袒袖袍袋覓規訪訝訣訥許設訟訛訢豉豚販責貫貨貪貧赧赦趾趺軛軟這逍通逗連速逝逐逕逞造透逢逖逛途"],["b3a1","部郭都酗野釵釦釣釧釭釩閉陪陵陳陸陰陴陶陷陬雀雪雩章竟頂頃魚鳥鹵鹿麥麻傢傍傅備傑傀傖傘傚最凱割剴創剩勞勝勛博厥啻喀喧啼喊喝喘喂喜喪喔喇喋喃喳單喟唾喲喚喻喬喱啾喉喫喙圍堯堪場堤堰報堡堝堠壹壺奠"],["b440","婷媚婿媒媛媧孳孱寒富寓寐尊尋就嵌嵐崴嵇巽幅帽幀幃幾廊廁廂廄弼彭復循徨惑惡悲悶惠愜愣惺愕惰惻惴慨惱愎惶愉愀愒戟扉掣掌描揀揩揉揆揍"],["b4a1","插揣提握揖揭揮捶援揪換摒揚揹敞敦敢散斑斐斯普晰晴晶景暑智晾晷曾替期朝棺棕棠棘棗椅棟棵森棧棹棒棲棣棋棍植椒椎棉棚楮棻款欺欽殘殖殼毯氮氯氬港游湔渡渲湧湊渠渥渣減湛湘渤湖湮渭渦湯渴湍渺測湃渝渾滋"],["b540","溉渙湎湣湄湲湩湟焙焚焦焰無然煮焜牌犄犀猶猥猴猩琺琪琳琢琥琵琶琴琯琛琦琨甥甦畫番痢痛痣痙痘痞痠登發皖皓皴盜睏短硝硬硯稍稈程稅稀窘"],["b5a1","窗窖童竣等策筆筐筒答筍筋筏筑粟粥絞結絨絕紫絮絲絡給絢絰絳善翔翕耋聒肅腕腔腋腑腎脹腆脾腌腓腴舒舜菩萃菸萍菠菅萋菁華菱菴著萊菰萌菌菽菲菊萸萎萄菜萇菔菟虛蛟蛙蛭蛔蛛蛤蛐蛞街裁裂袱覃視註詠評詞証詁"],["b640","詔詛詐詆訴診訶詖象貂貯貼貳貽賁費賀貴買貶貿貸越超趁跎距跋跚跑跌跛跆軻軸軼辜逮逵週逸進逶鄂郵鄉郾酣酥量鈔鈕鈣鈉鈞鈍鈐鈇鈑閔閏開閑"],["b6a1","間閒閎隊階隋陽隅隆隍陲隄雁雅雄集雇雯雲韌項順須飧飪飯飩飲飭馮馭黃黍黑亂傭債傲傳僅傾催傷傻傯僇剿剷剽募勦勤勢勣匯嗟嗨嗓嗦嗎嗜嗇嗑嗣嗤嗯嗚嗡嗅嗆嗥嗉園圓塞塑塘塗塚塔填塌塭塊塢塒塋奧嫁嫉嫌媾媽媼"],["b740","媳嫂媲嵩嵯幌幹廉廈弒彙徬微愚意慈感想愛惹愁愈慎慌慄慍愾愴愧愍愆愷戡戢搓搾搞搪搭搽搬搏搜搔損搶搖搗搆敬斟新暗暉暇暈暖暄暘暍會榔業"],["b7a1","楚楷楠楔極椰概楊楨楫楞楓楹榆楝楣楛歇歲毀殿毓毽溢溯滓溶滂源溝滇滅溥溘溼溺溫滑準溜滄滔溪溧溴煎煙煩煤煉照煜煬煦煌煥煞煆煨煖爺牒猷獅猿猾瑯瑚瑕瑟瑞瑁琿瑙瑛瑜當畸瘀痰瘁痲痱痺痿痴痳盞盟睛睫睦睞督"],["b840","睹睪睬睜睥睨睢矮碎碰碗碘碌碉硼碑碓硿祺祿禁萬禽稜稚稠稔稟稞窟窠筷節筠筮筧粱粳粵經絹綑綁綏絛置罩罪署義羨群聖聘肆肄腱腰腸腥腮腳腫"],["b8a1","腹腺腦舅艇蒂葷落萱葵葦葫葉葬葛萼萵葡董葩葭葆虞虜號蛹蜓蜈蜇蜀蛾蛻蜂蜃蜆蜊衙裟裔裙補裘裝裡裊裕裒覜解詫該詳試詩詰誇詼詣誠話誅詭詢詮詬詹詻訾詨豢貊貉賊資賈賄貲賃賂賅跡跟跨路跳跺跪跤跦躲較載軾輊"],["b940","辟農運遊道遂達逼違遐遇遏過遍遑逾遁鄒鄗酬酪酩釉鈷鉗鈸鈽鉀鈾鉛鉋鉤鉑鈴鉉鉍鉅鈹鈿鉚閘隘隔隕雍雋雉雊雷電雹零靖靴靶預頑頓頊頒頌飼飴"],["b9a1","飽飾馳馱馴髡鳩麂鼎鼓鼠僧僮僥僖僭僚僕像僑僱僎僩兢凳劃劂匱厭嗾嘀嘛嘗嗽嘔嘆嘉嘍嘎嗷嘖嘟嘈嘐嗶團圖塵塾境墓墊塹墅塽壽夥夢夤奪奩嫡嫦嫩嫗嫖嫘嫣孵寞寧寡寥實寨寢寤察對屢嶄嶇幛幣幕幗幔廓廖弊彆彰徹慇"],["ba40","愿態慷慢慣慟慚慘慵截撇摘摔撤摸摟摺摑摧搴摭摻敲斡旗旖暢暨暝榜榨榕槁榮槓構榛榷榻榫榴槐槍榭槌榦槃榣歉歌氳漳演滾漓滴漩漾漠漬漏漂漢"],["baa1","滿滯漆漱漸漲漣漕漫漯澈漪滬漁滲滌滷熔熙煽熊熄熒爾犒犖獄獐瑤瑣瑪瑰瑭甄疑瘧瘍瘋瘉瘓盡監瞄睽睿睡磁碟碧碳碩碣禎福禍種稱窪窩竭端管箕箋筵算箝箔箏箸箇箄粹粽精綻綰綜綽綾綠緊綴網綱綺綢綿綵綸維緒緇綬"],["bb40","罰翠翡翟聞聚肇腐膀膏膈膊腿膂臧臺與舔舞艋蓉蒿蓆蓄蒙蒞蒲蒜蓋蒸蓀蓓蒐蒼蓑蓊蜿蜜蜻蜢蜥蜴蜘蝕蜷蜩裳褂裴裹裸製裨褚裯誦誌語誣認誡誓誤"],["bba1","說誥誨誘誑誚誧豪貍貌賓賑賒赫趙趕跼輔輒輕輓辣遠遘遜遣遙遞遢遝遛鄙鄘鄞酵酸酷酴鉸銀銅銘銖鉻銓銜銨鉼銑閡閨閩閣閥閤隙障際雌雒需靼鞅韶頗領颯颱餃餅餌餉駁骯骰髦魁魂鳴鳶鳳麼鼻齊億儀僻僵價儂儈儉儅凜"],["bc40","劇劈劉劍劊勰厲嘮嘻嘹嘲嘿嘴嘩噓噎噗噴嘶嘯嘰墀墟增墳墜墮墩墦奭嬉嫻嬋嫵嬌嬈寮寬審寫層履嶝嶔幢幟幡廢廚廟廝廣廠彈影德徵慶慧慮慝慕憂"],["bca1","慼慰慫慾憧憐憫憎憬憚憤憔憮戮摩摯摹撞撲撈撐撰撥撓撕撩撒撮播撫撚撬撙撢撳敵敷數暮暫暴暱樣樟槨樁樞標槽模樓樊槳樂樅槭樑歐歎殤毅毆漿潼澄潑潦潔澆潭潛潸潮澎潺潰潤澗潘滕潯潠潟熟熬熱熨牖犛獎獗瑩璋璃"],["bd40","瑾璀畿瘠瘩瘟瘤瘦瘡瘢皚皺盤瞎瞇瞌瞑瞋磋磅確磊碾磕碼磐稿稼穀稽稷稻窯窮箭箱範箴篆篇篁箠篌糊締練緯緻緘緬緝編緣線緞緩綞緙緲緹罵罷羯"],["bda1","翩耦膛膜膝膠膚膘蔗蔽蔚蓮蔬蔭蔓蔑蔣蔡蔔蓬蔥蓿蔆螂蝴蝶蝠蝦蝸蝨蝙蝗蝌蝓衛衝褐複褒褓褕褊誼諒談諄誕請諸課諉諂調誰論諍誶誹諛豌豎豬賠賞賦賤賬賭賢賣賜質賡赭趟趣踫踐踝踢踏踩踟踡踞躺輝輛輟輩輦輪輜輞"],["be40","輥適遮遨遭遷鄰鄭鄧鄱醇醉醋醃鋅銻銷鋪銬鋤鋁銳銼鋒鋇鋰銲閭閱霄霆震霉靠鞍鞋鞏頡頫頜颳養餓餒餘駝駐駟駛駑駕駒駙骷髮髯鬧魅魄魷魯鴆鴉"],["bea1","鴃麩麾黎墨齒儒儘儔儐儕冀冪凝劑劓勳噙噫噹噩噤噸噪器噥噱噯噬噢噶壁墾壇壅奮嬝嬴學寰導彊憲憑憩憊懍憶憾懊懈戰擅擁擋撻撼據擄擇擂操撿擒擔撾整曆曉暹曄曇暸樽樸樺橙橫橘樹橄橢橡橋橇樵機橈歙歷氅濂澱澡"],["bf40","濃澤濁澧澳激澹澶澦澠澴熾燉燐燒燈燕熹燎燙燜燃燄獨璜璣璘璟璞瓢甌甍瘴瘸瘺盧盥瞠瞞瞟瞥磨磚磬磧禦積穎穆穌穋窺篙簑築篤篛篡篩篦糕糖縊"],["bfa1","縑縈縛縣縞縝縉縐罹羲翰翱翮耨膳膩膨臻興艘艙蕊蕙蕈蕨蕩蕃蕉蕭蕪蕞螃螟螞螢融衡褪褲褥褫褡親覦諦諺諫諱謀諜諧諮諾謁謂諷諭諳諶諼豫豭貓賴蹄踱踴蹂踹踵輻輯輸輳辨辦遵遴選遲遼遺鄴醒錠錶鋸錳錯錢鋼錫錄錚"],["c040","錐錦錡錕錮錙閻隧隨險雕霎霑霖霍霓霏靛靜靦鞘頰頸頻頷頭頹頤餐館餞餛餡餚駭駢駱骸骼髻髭鬨鮑鴕鴣鴦鴨鴒鴛默黔龍龜優償儡儲勵嚎嚀嚐嚅嚇"],["c0a1","嚏壕壓壑壎嬰嬪嬤孺尷屨嶼嶺嶽嶸幫彌徽應懂懇懦懋戲戴擎擊擘擠擰擦擬擱擢擭斂斃曙曖檀檔檄檢檜櫛檣橾檗檐檠歜殮毚氈濘濱濟濠濛濤濫濯澀濬濡濩濕濮濰燧營燮燦燥燭燬燴燠爵牆獰獲璩環璦璨癆療癌盪瞳瞪瞰瞬"],["c140","瞧瞭矯磷磺磴磯礁禧禪穗窿簇簍篾篷簌篠糠糜糞糢糟糙糝縮績繆縷縲繃縫總縱繅繁縴縹繈縵縿縯罄翳翼聱聲聰聯聳臆臃膺臂臀膿膽臉膾臨舉艱薪"],["c1a1","薄蕾薜薑薔薯薛薇薨薊虧蟀蟑螳蟒蟆螫螻螺蟈蟋褻褶襄褸褽覬謎謗謙講謊謠謝謄謐豁谿豳賺賽購賸賻趨蹉蹋蹈蹊轄輾轂轅輿避遽還邁邂邀鄹醣醞醜鍍鎂錨鍵鍊鍥鍋錘鍾鍬鍛鍰鍚鍔闊闋闌闈闆隱隸雖霜霞鞠韓顆颶餵騁"],["c240","駿鮮鮫鮪鮭鴻鴿麋黏點黜黝黛鼾齋叢嚕嚮壙壘嬸彝懣戳擴擲擾攆擺擻擷斷曜朦檳檬櫃檻檸櫂檮檯歟歸殯瀉瀋濾瀆濺瀑瀏燻燼燾燸獷獵璧璿甕癖癘"],["c2a1","癒瞽瞿瞻瞼礎禮穡穢穠竄竅簫簧簪簞簣簡糧織繕繞繚繡繒繙罈翹翻職聶臍臏舊藏薩藍藐藉薰薺薹薦蟯蟬蟲蟠覆覲觴謨謹謬謫豐贅蹙蹣蹦蹤蹟蹕軀轉轍邇邃邈醫醬釐鎔鎊鎖鎢鎳鎮鎬鎰鎘鎚鎗闔闖闐闕離雜雙雛雞霤鞣鞦"],["c340","鞭韹額顏題顎顓颺餾餿餽餮馥騎髁鬃鬆魏魎魍鯊鯉鯽鯈鯀鵑鵝鵠黠鼕鼬儳嚥壞壟壢寵龐廬懲懷懶懵攀攏曠曝櫥櫝櫚櫓瀛瀟瀨瀚瀝瀕瀘爆爍牘犢獸"],["c3a1","獺璽瓊瓣疇疆癟癡矇礙禱穫穩簾簿簸簽簷籀繫繭繹繩繪羅繳羶羹羸臘藩藝藪藕藤藥藷蟻蠅蠍蟹蟾襠襟襖襞譁譜識證譚譎譏譆譙贈贊蹼蹲躇蹶蹬蹺蹴轔轎辭邊邋醱醮鏡鏑鏟鏃鏈鏜鏝鏖鏢鏍鏘鏤鏗鏨關隴難霪霧靡韜韻類"],["c440","願顛颼饅饉騖騙鬍鯨鯧鯖鯛鶉鵡鵲鵪鵬麒麗麓麴勸嚨嚷嚶嚴嚼壤孀孃孽寶巉懸懺攘攔攙曦朧櫬瀾瀰瀲爐獻瓏癢癥礦礪礬礫竇競籌籃籍糯糰辮繽繼"],["c4a1","纂罌耀臚艦藻藹蘑藺蘆蘋蘇蘊蠔蠕襤覺觸議譬警譯譟譫贏贍躉躁躅躂醴釋鐘鐃鏽闡霰飄饒饑馨騫騰騷騵鰓鰍鹹麵黨鼯齟齣齡儷儸囁囀囂夔屬巍懼懾攝攜斕曩櫻欄櫺殲灌爛犧瓖瓔癩矓籐纏續羼蘗蘭蘚蠣蠢蠡蠟襪襬覽譴"],["c540","護譽贓躊躍躋轟辯醺鐮鐳鐵鐺鐸鐲鐫闢霸霹露響顧顥饗驅驃驀騾髏魔魑鰭鰥鶯鶴鷂鶸麝黯鼙齜齦齧儼儻囈囊囉孿巔巒彎懿攤權歡灑灘玀瓤疊癮癬"],["c5a1","禳籠籟聾聽臟襲襯觼讀贖贗躑躓轡酈鑄鑑鑒霽霾韃韁顫饕驕驍髒鬚鱉鰱鰾鰻鷓鷗鼴齬齪龔囌巖戀攣攫攪曬欐瓚竊籤籣籥纓纖纔臢蘸蘿蠱變邐邏鑣鑠鑤靨顯饜驚驛驗髓體髑鱔鱗鱖鷥麟黴囑壩攬灞癱癲矗罐羈蠶蠹衢讓讒"],["c640","讖艷贛釀鑪靂靈靄韆顰驟鬢魘鱟鷹鷺鹼鹽鼇齷齲廳欖灣籬籮蠻觀躡釁鑲鑰顱饞髖鬣黌灤矚讚鑷韉驢驥纜讜躪釅鑽鑾鑼鱷鱸黷豔鑿鸚爨驪鬱鸛鸞籲"],["c940","乂乜凵匚厂万丌乇亍囗兀屮彳丏冇与丮亓仂仉仈冘勼卬厹圠夃夬尐巿旡殳毌气爿丱丼仨仜仩仡仝仚刌匜卌圢圣夗夯宁宄尒尻屴屳帄庀庂忉戉扐氕"],["c9a1","氶汃氿氻犮犰玊禸肊阞伎优伬仵伔仱伀价伈伝伂伅伢伓伄仴伒冱刓刉刐劦匢匟卍厊吇囡囟圮圪圴夼妀奼妅奻奾奷奿孖尕尥屼屺屻屾巟幵庄异弚彴忕忔忏扜扞扤扡扦扢扙扠扚扥旯旮朾朹朸朻机朿朼朳氘汆汒汜汏汊汔汋"],["ca40","汌灱牞犴犵玎甪癿穵网艸艼芀艽艿虍襾邙邗邘邛邔阢阤阠阣佖伻佢佉体佤伾佧佒佟佁佘伭伳伿佡冏冹刜刞刡劭劮匉卣卲厎厏吰吷吪呔呅吙吜吥吘"],["caa1","吽呏呁吨吤呇囮囧囥坁坅坌坉坋坒夆奀妦妘妠妗妎妢妐妏妧妡宎宒尨尪岍岏岈岋岉岒岊岆岓岕巠帊帎庋庉庌庈庍弅弝彸彶忒忑忐忭忨忮忳忡忤忣忺忯忷忻怀忴戺抃抌抎抏抔抇扱扻扺扰抁抈扷扽扲扴攷旰旴旳旲旵杅杇"],["cb40","杙杕杌杈杝杍杚杋毐氙氚汸汧汫沄沋沏汱汯汩沚汭沇沕沜汦汳汥汻沎灴灺牣犿犽狃狆狁犺狅玕玗玓玔玒町甹疔疕皁礽耴肕肙肐肒肜芐芏芅芎芑芓"],["cba1","芊芃芄豸迉辿邟邡邥邞邧邠阰阨阯阭丳侘佼侅佽侀侇佶佴侉侄佷佌侗佪侚佹侁佸侐侜侔侞侒侂侕佫佮冞冼冾刵刲刳剆刱劼匊匋匼厒厔咇呿咁咑咂咈呫呺呾呥呬呴呦咍呯呡呠咘呣呧呤囷囹坯坲坭坫坱坰坶垀坵坻坳坴坢"],["cc40","坨坽夌奅妵妺姏姎妲姌姁妶妼姃姖妱妽姀姈妴姇孢孥宓宕屄屇岮岤岠岵岯岨岬岟岣岭岢岪岧岝岥岶岰岦帗帔帙弨弢弣弤彔徂彾彽忞忥怭怦怙怲怋"],["cca1","怴怊怗怳怚怞怬怢怍怐怮怓怑怌怉怜戔戽抭抴拑抾抪抶拊抮抳抯抻抩抰抸攽斨斻昉旼昄昒昈旻昃昋昍昅旽昑昐曶朊枅杬枎枒杶杻枘枆构杴枍枌杺枟枑枙枃杽极杸杹枔欥殀歾毞氝沓泬泫泮泙沶泔沭泧沷泐泂沺泃泆泭泲"],["cd40","泒泝沴沊沝沀泞泀洰泍泇沰泹泏泩泑炔炘炅炓炆炄炑炖炂炚炃牪狖狋狘狉狜狒狔狚狌狑玤玡玭玦玢玠玬玝瓝瓨甿畀甾疌疘皯盳盱盰盵矸矼矹矻矺"],["cda1","矷祂礿秅穸穻竻籵糽耵肏肮肣肸肵肭舠芠苀芫芚芘芛芵芧芮芼芞芺芴芨芡芩苂芤苃芶芢虰虯虭虮豖迒迋迓迍迖迕迗邲邴邯邳邰阹阽阼阺陃俍俅俓侲俉俋俁俔俜俙侻侳俛俇俖侺俀侹俬剄剉勀勂匽卼厗厖厙厘咺咡咭咥哏"],["ce40","哃茍咷咮哖咶哅哆咠呰咼咢咾呲哞咰垵垞垟垤垌垗垝垛垔垘垏垙垥垚垕壴复奓姡姞姮娀姱姝姺姽姼姶姤姲姷姛姩姳姵姠姾姴姭宨屌峐峘峌峗峋峛"],["cea1","峞峚峉峇峊峖峓峔峏峈峆峎峟峸巹帡帢帣帠帤庰庤庢庛庣庥弇弮彖徆怷怹恔恲恞恅恓恇恉恛恌恀恂恟怤恄恘恦恮扂扃拏挍挋拵挎挃拫拹挏挌拸拶挀挓挔拺挕拻拰敁敃斪斿昶昡昲昵昜昦昢昳昫昺昝昴昹昮朏朐柁柲柈枺"],["cf40","柜枻柸柘柀枷柅柫柤柟枵柍枳柷柶柮柣柂枹柎柧柰枲柼柆柭柌枮柦柛柺柉柊柃柪柋欨殂殄殶毖毘毠氠氡洨洴洭洟洼洿洒洊泚洳洄洙洺洚洑洀洝浂"],["cfa1","洁洘洷洃洏浀洇洠洬洈洢洉洐炷炟炾炱炰炡炴炵炩牁牉牊牬牰牳牮狊狤狨狫狟狪狦狣玅珌珂珈珅玹玶玵玴珫玿珇玾珃珆玸珋瓬瓮甮畇畈疧疪癹盄眈眃眄眅眊盷盻盺矧矨砆砑砒砅砐砏砎砉砃砓祊祌祋祅祄秕种秏秖秎窀"],["d040","穾竑笀笁籺籸籹籿粀粁紃紈紁罘羑羍羾耇耎耏耔耷胘胇胠胑胈胂胐胅胣胙胜胊胕胉胏胗胦胍臿舡芔苙苾苹茇苨茀苕茺苫苖苴苬苡苲苵茌苻苶苰苪"],["d0a1","苤苠苺苳苭虷虴虼虳衁衎衧衪衩觓訄訇赲迣迡迮迠郱邽邿郕郅邾郇郋郈釔釓陔陏陑陓陊陎倞倅倇倓倢倰倛俵俴倳倷倬俶俷倗倜倠倧倵倯倱倎党冔冓凊凄凅凈凎剡剚剒剞剟剕剢勍匎厞唦哢唗唒哧哳哤唚哿唄唈哫唑唅哱"],["d140","唊哻哷哸哠唎唃唋圁圂埌堲埕埒垺埆垽垼垸垶垿埇埐垹埁夎奊娙娖娭娮娕娏娗娊娞娳孬宧宭宬尃屖屔峬峿峮峱峷崀峹帩帨庨庮庪庬弳弰彧恝恚恧"],["d1a1","恁悢悈悀悒悁悝悃悕悛悗悇悜悎戙扆拲挐捖挬捄捅挶捃揤挹捋捊挼挩捁挴捘捔捙挭捇挳捚捑挸捗捀捈敊敆旆旃旄旂晊晟晇晑朒朓栟栚桉栲栳栻桋桏栖栱栜栵栫栭栯桎桄栴栝栒栔栦栨栮桍栺栥栠欬欯欭欱欴歭肂殈毦毤"],["d240","毨毣毢毧氥浺浣浤浶洍浡涒浘浢浭浯涑涍淯浿涆浞浧浠涗浰浼浟涂涘洯浨涋浾涀涄洖涃浻浽浵涐烜烓烑烝烋缹烢烗烒烞烠烔烍烅烆烇烚烎烡牂牸"],["d2a1","牷牶猀狺狴狾狶狳狻猁珓珙珥珖玼珧珣珩珜珒珛珔珝珚珗珘珨瓞瓟瓴瓵甡畛畟疰痁疻痄痀疿疶疺皊盉眝眛眐眓眒眣眑眕眙眚眢眧砣砬砢砵砯砨砮砫砡砩砳砪砱祔祛祏祜祓祒祑秫秬秠秮秭秪秜秞秝窆窉窅窋窌窊窇竘笐"],["d340","笄笓笅笏笈笊笎笉笒粄粑粊粌粈粍粅紞紝紑紎紘紖紓紟紒紏紌罜罡罞罠罝罛羖羒翃翂翀耖耾耹胺胲胹胵脁胻脀舁舯舥茳茭荄茙荑茥荖茿荁茦茜茢"],["d3a1","荂荎茛茪茈茼荍茖茤茠茷茯茩荇荅荌荓茞茬荋茧荈虓虒蚢蚨蚖蚍蚑蚞蚇蚗蚆蚋蚚蚅蚥蚙蚡蚧蚕蚘蚎蚝蚐蚔衃衄衭衵衶衲袀衱衿衯袃衾衴衼訒豇豗豻貤貣赶赸趵趷趶軑軓迾迵适迿迻逄迼迶郖郠郙郚郣郟郥郘郛郗郜郤酐"],["d440","酎酏釕釢釚陜陟隼飣髟鬯乿偰偪偡偞偠偓偋偝偲偈偍偁偛偊偢倕偅偟偩偫偣偤偆偀偮偳偗偑凐剫剭剬剮勖勓匭厜啵啶唼啍啐唴唪啑啢唶唵唰啒啅"],["d4a1","唌唲啥啎唹啈唭唻啀啋圊圇埻堔埢埶埜埴堀埭埽堈埸堋埳埏堇埮埣埲埥埬埡堎埼堐埧堁堌埱埩埰堍堄奜婠婘婕婧婞娸娵婭婐婟婥婬婓婤婗婃婝婒婄婛婈媎娾婍娹婌婰婩婇婑婖婂婜孲孮寁寀屙崞崋崝崚崠崌崨崍崦崥崏"],["d540","崰崒崣崟崮帾帴庱庴庹庲庳弶弸徛徖徟悊悐悆悾悰悺惓惔惏惤惙惝惈悱惛悷惊悿惃惍惀挲捥掊掂捽掽掞掭掝掗掫掎捯掇掐据掯捵掜捭掮捼掤挻掟"],["d5a1","捸掅掁掑掍捰敓旍晥晡晛晙晜晢朘桹梇梐梜桭桮梮梫楖桯梣梬梩桵桴梲梏桷梒桼桫桲梪梀桱桾梛梖梋梠梉梤桸桻梑梌梊桽欶欳欷欸殑殏殍殎殌氪淀涫涴涳湴涬淩淢涷淶淔渀淈淠淟淖涾淥淜淝淛淴淊涽淭淰涺淕淂淏淉"],["d640","淐淲淓淽淗淍淣涻烺焍烷焗烴焌烰焄烳焐烼烿焆焓焀烸烶焋焂焎牾牻牼牿猝猗猇猑猘猊猈狿猏猞玈珶珸珵琄琁珽琇琀珺珼珿琌琋珴琈畤畣痎痒痏"],["d6a1","痋痌痑痐皏皉盓眹眯眭眱眲眴眳眽眥眻眵硈硒硉硍硊硌砦硅硐祤祧祩祪祣祫祡离秺秸秶秷窏窔窐笵筇笴笥笰笢笤笳笘笪笝笱笫笭笯笲笸笚笣粔粘粖粣紵紽紸紶紺絅紬紩絁絇紾紿絊紻紨罣羕羜羝羛翊翋翍翐翑翇翏翉耟"],["d740","耞耛聇聃聈脘脥脙脛脭脟脬脞脡脕脧脝脢舑舸舳舺舴舲艴莐莣莨莍荺荳莤荴莏莁莕莙荵莔莩荽莃莌莝莛莪莋荾莥莯莈莗莰荿莦莇莮荶莚虙虖蚿蚷"],["d7a1","蛂蛁蛅蚺蚰蛈蚹蚳蚸蛌蚴蚻蚼蛃蚽蚾衒袉袕袨袢袪袚袑袡袟袘袧袙袛袗袤袬袌袓袎覂觖觙觕訰訧訬訞谹谻豜豝豽貥赽赻赹趼跂趹趿跁軘軞軝軜軗軠軡逤逋逑逜逌逡郯郪郰郴郲郳郔郫郬郩酖酘酚酓酕釬釴釱釳釸釤釹釪"],["d840","釫釷釨釮镺閆閈陼陭陫陱陯隿靪頄飥馗傛傕傔傞傋傣傃傌傎傝偨傜傒傂傇兟凔匒匑厤厧喑喨喥喭啷噅喢喓喈喏喵喁喣喒喤啽喌喦啿喕喡喎圌堩堷"],["d8a1","堙堞堧堣堨埵塈堥堜堛堳堿堶堮堹堸堭堬堻奡媯媔媟婺媢媞婸媦婼媥媬媕媮娷媄媊媗媃媋媩婻婽媌媜媏媓媝寪寍寋寔寑寊寎尌尰崷嵃嵫嵁嵋崿崵嵑嵎嵕崳崺嵒崽崱嵙嵂崹嵉崸崼崲崶嵀嵅幄幁彘徦徥徫惉悹惌惢惎惄愔"],["d940","惲愊愖愅惵愓惸惼惾惁愃愘愝愐惿愄愋扊掔掱掰揎揥揨揯揃撝揳揊揠揶揕揲揵摡揟掾揝揜揄揘揓揂揇揌揋揈揰揗揙攲敧敪敤敜敨敥斌斝斞斮旐旒"],["d9a1","晼晬晻暀晱晹晪晲朁椌棓椄棜椪棬棪棱椏棖棷棫棤棶椓椐棳棡椇棌椈楰梴椑棯棆椔棸棐棽棼棨椋椊椗棎棈棝棞棦棴棑椆棔棩椕椥棇欹欻欿欼殔殗殙殕殽毰毲毳氰淼湆湇渟湉溈渼渽湅湢渫渿湁湝湳渜渳湋湀湑渻渃渮湞"],["da40","湨湜湡渱渨湠湱湫渹渢渰湓湥渧湸湤湷湕湹湒湦渵渶湚焠焞焯烻焮焱焣焥焢焲焟焨焺焛牋牚犈犉犆犅犋猒猋猰猢猱猳猧猲猭猦猣猵猌琮琬琰琫琖"],["daa1","琚琡琭琱琤琣琝琩琠琲瓻甯畯畬痧痚痡痦痝痟痤痗皕皒盚睆睇睄睍睅睊睎睋睌矞矬硠硤硥硜硭硱硪确硰硩硨硞硢祴祳祲祰稂稊稃稌稄窙竦竤筊笻筄筈筌筎筀筘筅粢粞粨粡絘絯絣絓絖絧絪絏絭絜絫絒絔絩絑絟絎缾缿罥"],["db40","罦羢羠羡翗聑聏聐胾胔腃腊腒腏腇脽腍脺臦臮臷臸臹舄舼舽舿艵茻菏菹萣菀菨萒菧菤菼菶萐菆菈菫菣莿萁菝菥菘菿菡菋菎菖菵菉萉萏菞萑萆菂菳"],["dba1","菕菺菇菑菪萓菃菬菮菄菻菗菢萛菛菾蛘蛢蛦蛓蛣蛚蛪蛝蛫蛜蛬蛩蛗蛨蛑衈衖衕袺裗袹袸裀袾袶袼袷袽袲褁裉覕覘覗觝觚觛詎詍訹詙詀詗詘詄詅詒詈詑詊詌詏豟貁貀貺貾貰貹貵趄趀趉跘跓跍跇跖跜跏跕跙跈跗跅軯軷軺"],["dc40","軹軦軮軥軵軧軨軶軫軱軬軴軩逭逴逯鄆鄬鄄郿郼鄈郹郻鄁鄀鄇鄅鄃酡酤酟酢酠鈁鈊鈥鈃鈚鈦鈏鈌鈀鈒釿釽鈆鈄鈧鈂鈜鈤鈙鈗鈅鈖镻閍閌閐隇陾隈"],["dca1","隉隃隀雂雈雃雱雰靬靰靮頇颩飫鳦黹亃亄亶傽傿僆傮僄僊傴僈僂傰僁傺傱僋僉傶傸凗剺剸剻剼嗃嗛嗌嗐嗋嗊嗝嗀嗔嗄嗩喿嗒喍嗏嗕嗢嗖嗈嗲嗍嗙嗂圔塓塨塤塏塍塉塯塕塎塝塙塥塛堽塣塱壼嫇嫄嫋媺媸媱媵媰媿嫈媻嫆"],["dd40","媷嫀嫊媴媶嫍媹媐寖寘寙尟尳嵱嵣嵊嵥嵲嵬嵞嵨嵧嵢巰幏幎幊幍幋廅廌廆廋廇彀徯徭惷慉慊愫慅愶愲愮慆愯慏愩慀戠酨戣戥戤揅揱揫搐搒搉搠搤"],["dda1","搳摃搟搕搘搹搷搢搣搌搦搰搨摁搵搯搊搚摀搥搧搋揧搛搮搡搎敯斒旓暆暌暕暐暋暊暙暔晸朠楦楟椸楎楢楱椿楅楪椹楂楗楙楺楈楉椵楬椳椽楥棰楸椴楩楀楯楄楶楘楁楴楌椻楋椷楜楏楑椲楒椯楻椼歆歅歃歂歈歁殛嗀毻毼"],["de40","毹毷毸溛滖滈溏滀溟溓溔溠溱溹滆滒溽滁溞滉溷溰滍溦滏溲溾滃滜滘溙溒溎溍溤溡溿溳滐滊溗溮溣煇煔煒煣煠煁煝煢煲煸煪煡煂煘煃煋煰煟煐煓"],["dea1","煄煍煚牏犍犌犑犐犎猼獂猻猺獀獊獉瑄瑊瑋瑒瑑瑗瑀瑏瑐瑎瑂瑆瑍瑔瓡瓿瓾瓽甝畹畷榃痯瘏瘃痷痾痼痹痸瘐痻痶痭痵痽皙皵盝睕睟睠睒睖睚睩睧睔睙睭矠碇碚碔碏碄碕碅碆碡碃硹碙碀碖硻祼禂祽祹稑稘稙稒稗稕稢稓"],["df40","稛稐窣窢窞竫筦筤筭筴筩筲筥筳筱筰筡筸筶筣粲粴粯綈綆綀綍絿綅絺綎絻綃絼綌綔綄絽綒罭罫罧罨罬羦羥羧翛翜耡腤腠腷腜腩腛腢腲朡腞腶腧腯"],["dfa1","腄腡舝艉艄艀艂艅蓱萿葖葶葹蒏蒍葥葑葀蒆葧萰葍葽葚葙葴葳葝蔇葞萷萺萴葺葃葸萲葅萩菙葋萯葂萭葟葰萹葎葌葒葯蓅蒎萻葇萶萳葨葾葄萫葠葔葮葐蜋蜄蛷蜌蛺蛖蛵蝍蛸蜎蜉蜁蛶蜍蜅裖裋裍裎裞裛裚裌裐覅覛觟觥觤"],["e040","觡觠觢觜触詶誆詿詡訿詷誂誄詵誃誁詴詺谼豋豊豥豤豦貆貄貅賌赨赩趑趌趎趏趍趓趔趐趒跰跠跬跱跮跐跩跣跢跧跲跫跴輆軿輁輀輅輇輈輂輋遒逿"],["e0a1","遄遉逽鄐鄍鄏鄑鄖鄔鄋鄎酮酯鉈鉒鈰鈺鉦鈳鉥鉞銃鈮鉊鉆鉭鉬鉏鉠鉧鉯鈶鉡鉰鈱鉔鉣鉐鉲鉎鉓鉌鉖鈲閟閜閞閛隒隓隑隗雎雺雽雸雵靳靷靸靲頏頍頎颬飶飹馯馲馰馵骭骫魛鳪鳭鳧麀黽僦僔僗僨僳僛僪僝僤僓僬僰僯僣僠"],["e140","凘劀劁勩勫匰厬嘧嘕嘌嘒嗼嘏嘜嘁嘓嘂嗺嘝嘄嗿嗹墉塼墐墘墆墁塿塴墋塺墇墑墎塶墂墈塻墔墏壾奫嫜嫮嫥嫕嫪嫚嫭嫫嫳嫢嫠嫛嫬嫞嫝嫙嫨嫟孷寠"],["e1a1","寣屣嶂嶀嵽嶆嵺嶁嵷嶊嶉嶈嵾嵼嶍嵹嵿幘幙幓廘廑廗廎廜廕廙廒廔彄彃彯徶愬愨慁慞慱慳慒慓慲慬憀慴慔慺慛慥愻慪慡慖戩戧戫搫摍摛摝摴摶摲摳摽摵摦撦摎撂摞摜摋摓摠摐摿搿摬摫摙摥摷敳斠暡暠暟朅朄朢榱榶槉"],["e240","榠槎榖榰榬榼榑榙榎榧榍榩榾榯榿槄榽榤槔榹槊榚槏榳榓榪榡榞槙榗榐槂榵榥槆歊歍歋殞殟殠毃毄毾滎滵滱漃漥滸漷滻漮漉潎漙漚漧漘漻漒滭漊"],["e2a1","漶潳滹滮漭潀漰漼漵滫漇漎潃漅滽滶漹漜滼漺漟漍漞漈漡熇熐熉熀熅熂熏煻熆熁熗牄牓犗犕犓獃獍獑獌瑢瑳瑱瑵瑲瑧瑮甀甂甃畽疐瘖瘈瘌瘕瘑瘊瘔皸瞁睼瞅瞂睮瞀睯睾瞃碲碪碴碭碨硾碫碞碥碠碬碢碤禘禊禋禖禕禔禓"],["e340","禗禈禒禐稫穊稰稯稨稦窨窫窬竮箈箜箊箑箐箖箍箌箛箎箅箘劄箙箤箂粻粿粼粺綧綷緂綣綪緁緀緅綝緎緄緆緋緌綯綹綖綼綟綦綮綩綡緉罳翢翣翥翞"],["e3a1","耤聝聜膉膆膃膇膍膌膋舕蒗蒤蒡蒟蒺蓎蓂蒬蒮蒫蒹蒴蓁蓍蒪蒚蒱蓐蒝蒧蒻蒢蒔蓇蓌蒛蒩蒯蒨蓖蒘蒶蓏蒠蓗蓔蓒蓛蒰蒑虡蜳蜣蜨蝫蝀蜮蜞蜡蜙蜛蝃蜬蝁蜾蝆蜠蜲蜪蜭蜼蜒蜺蜱蜵蝂蜦蜧蜸蜤蜚蜰蜑裷裧裱裲裺裾裮裼裶裻"],["e440","裰裬裫覝覡覟覞觩觫觨誫誙誋誒誏誖谽豨豩賕賏賗趖踉踂跿踍跽踊踃踇踆踅跾踀踄輐輑輎輍鄣鄜鄠鄢鄟鄝鄚鄤鄡鄛酺酲酹酳銥銤鉶銛鉺銠銔銪銍"],["e4a1","銦銚銫鉹銗鉿銣鋮銎銂銕銢鉽銈銡銊銆銌銙銧鉾銇銩銝銋鈭隞隡雿靘靽靺靾鞃鞀鞂靻鞄鞁靿韎韍頖颭颮餂餀餇馝馜駃馹馻馺駂馽駇骱髣髧鬾鬿魠魡魟鳱鳲鳵麧僿儃儰僸儆儇僶僾儋儌僽儊劋劌勱勯噈噂噌嘵噁噊噉噆噘"],["e540","噚噀嘳嘽嘬嘾嘸嘪嘺圚墫墝墱墠墣墯墬墥墡壿嫿嫴嫽嫷嫶嬃嫸嬂嫹嬁嬇嬅嬏屧嶙嶗嶟嶒嶢嶓嶕嶠嶜嶡嶚嶞幩幝幠幜緳廛廞廡彉徲憋憃慹憱憰憢憉"],["e5a1","憛憓憯憭憟憒憪憡憍慦憳戭摮摰撖撠撅撗撜撏撋撊撌撣撟摨撱撘敶敺敹敻斲斳暵暰暩暲暷暪暯樀樆樗槥槸樕槱槤樠槿槬槢樛樝槾樧槲槮樔槷槧橀樈槦槻樍槼槫樉樄樘樥樏槶樦樇槴樖歑殥殣殢殦氁氀毿氂潁漦潾澇濆澒"],["e640","澍澉澌潢潏澅潚澖潶潬澂潕潲潒潐潗澔澓潝漀潡潫潽潧澐潓澋潩潿澕潣潷潪潻熲熯熛熰熠熚熩熵熝熥熞熤熡熪熜熧熳犘犚獘獒獞獟獠獝獛獡獚獙"],["e6a1","獢璇璉璊璆璁瑽璅璈瑼瑹甈甇畾瘥瘞瘙瘝瘜瘣瘚瘨瘛皜皝皞皛瞍瞏瞉瞈磍碻磏磌磑磎磔磈磃磄磉禚禡禠禜禢禛歶稹窲窴窳箷篋箾箬篎箯箹篊箵糅糈糌糋緷緛緪緧緗緡縃緺緦緶緱緰緮緟罶羬羰羭翭翫翪翬翦翨聤聧膣膟"],["e740","膞膕膢膙膗舖艏艓艒艐艎艑蔤蔻蔏蔀蔩蔎蔉蔍蔟蔊蔧蔜蓻蔫蓺蔈蔌蓴蔪蓲蔕蓷蓫蓳蓼蔒蓪蓩蔖蓾蔨蔝蔮蔂蓽蔞蓶蔱蔦蓧蓨蓰蓯蓹蔘蔠蔰蔋蔙蔯虢"],["e7a1","蝖蝣蝤蝷蟡蝳蝘蝔蝛蝒蝡蝚蝑蝞蝭蝪蝐蝎蝟蝝蝯蝬蝺蝮蝜蝥蝏蝻蝵蝢蝧蝩衚褅褌褔褋褗褘褙褆褖褑褎褉覢覤覣觭觰觬諏諆誸諓諑諔諕誻諗誾諀諅諘諃誺誽諙谾豍貏賥賟賙賨賚賝賧趠趜趡趛踠踣踥踤踮踕踛踖踑踙踦踧"],["e840","踔踒踘踓踜踗踚輬輤輘輚輠輣輖輗遳遰遯遧遫鄯鄫鄩鄪鄲鄦鄮醅醆醊醁醂醄醀鋐鋃鋄鋀鋙銶鋏鋱鋟鋘鋩鋗鋝鋌鋯鋂鋨鋊鋈鋎鋦鋍鋕鋉鋠鋞鋧鋑鋓"],["e8a1","銵鋡鋆銴镼閬閫閮閰隤隢雓霅霈霂靚鞊鞎鞈韐韏頞頝頦頩頨頠頛頧颲餈飺餑餔餖餗餕駜駍駏駓駔駎駉駖駘駋駗駌骳髬髫髳髲髱魆魃魧魴魱魦魶魵魰魨魤魬鳼鳺鳽鳿鳷鴇鴀鳹鳻鴈鴅鴄麃黓鼏鼐儜儓儗儚儑凞匴叡噰噠噮"],["e940","噳噦噣噭噲噞噷圜圛壈墽壉墿墺壂墼壆嬗嬙嬛嬡嬔嬓嬐嬖嬨嬚嬠嬞寯嶬嶱嶩嶧嶵嶰嶮嶪嶨嶲嶭嶯嶴幧幨幦幯廩廧廦廨廥彋徼憝憨憖懅憴懆懁懌憺"],["e9a1","憿憸憌擗擖擐擏擉撽撉擃擛擳擙攳敿敼斢曈暾曀曊曋曏暽暻暺曌朣樴橦橉橧樲橨樾橝橭橶橛橑樨橚樻樿橁橪橤橐橏橔橯橩橠樼橞橖橕橍橎橆歕歔歖殧殪殫毈毇氄氃氆澭濋澣濇澼濎濈潞濄澽澞濊澨瀄澥澮澺澬澪濏澿澸"],["ea40","澢濉澫濍澯澲澰燅燂熿熸燖燀燁燋燔燊燇燏熽燘熼燆燚燛犝犞獩獦獧獬獥獫獪瑿璚璠璔璒璕璡甋疀瘯瘭瘱瘽瘳瘼瘵瘲瘰皻盦瞚瞝瞡瞜瞛瞢瞣瞕瞙"],["eaa1","瞗磝磩磥磪磞磣磛磡磢磭磟磠禤穄穈穇窶窸窵窱窷篞篣篧篝篕篥篚篨篹篔篪篢篜篫篘篟糒糔糗糐糑縒縡縗縌縟縠縓縎縜縕縚縢縋縏縖縍縔縥縤罃罻罼罺羱翯耪耩聬膱膦膮膹膵膫膰膬膴膲膷膧臲艕艖艗蕖蕅蕫蕍蕓蕡蕘"],["eb40","蕀蕆蕤蕁蕢蕄蕑蕇蕣蔾蕛蕱蕎蕮蕵蕕蕧蕠薌蕦蕝蕔蕥蕬虣虥虤螛螏螗螓螒螈螁螖螘蝹螇螣螅螐螑螝螄螔螜螚螉褞褦褰褭褮褧褱褢褩褣褯褬褟觱諠"],["eba1","諢諲諴諵諝謔諤諟諰諈諞諡諨諿諯諻貑貒貐賵賮賱賰賳赬赮趥趧踳踾踸蹀蹅踶踼踽蹁踰踿躽輶輮輵輲輹輷輴遶遹遻邆郺鄳鄵鄶醓醐醑醍醏錧錞錈錟錆錏鍺錸錼錛錣錒錁鍆錭錎錍鋋錝鋺錥錓鋹鋷錴錂錤鋿錩錹錵錪錔錌"],["ec40","錋鋾錉錀鋻錖閼闍閾閹閺閶閿閵閽隩雔霋霒霐鞙鞗鞔韰韸頵頯頲餤餟餧餩馞駮駬駥駤駰駣駪駩駧骹骿骴骻髶髺髹髷鬳鮀鮅鮇魼魾魻鮂鮓鮒鮐魺鮕"],["eca1","魽鮈鴥鴗鴠鴞鴔鴩鴝鴘鴢鴐鴙鴟麈麆麇麮麭黕黖黺鼒鼽儦儥儢儤儠儩勴嚓嚌嚍嚆嚄嚃噾嚂噿嚁壖壔壏壒嬭嬥嬲嬣嬬嬧嬦嬯嬮孻寱寲嶷幬幪徾徻懃憵憼懧懠懥懤懨懞擯擩擣擫擤擨斁斀斶旚曒檍檖檁檥檉檟檛檡檞檇檓檎"],["ed40","檕檃檨檤檑橿檦檚檅檌檒歛殭氉濌澩濴濔濣濜濭濧濦濞濲濝濢濨燡燱燨燲燤燰燢獳獮獯璗璲璫璐璪璭璱璥璯甐甑甒甏疄癃癈癉癇皤盩瞵瞫瞲瞷瞶"],["eda1","瞴瞱瞨矰磳磽礂磻磼磲礅磹磾礄禫禨穜穛穖穘穔穚窾竀竁簅簏篲簀篿篻簎篴簋篳簂簉簃簁篸篽簆篰篱簐簊糨縭縼繂縳顈縸縪繉繀繇縩繌縰縻縶繄縺罅罿罾罽翴翲耬膻臄臌臊臅臇膼臩艛艚艜薃薀薏薧薕薠薋薣蕻薤薚薞"],["ee40","蕷蕼薉薡蕺蕸蕗薎薖薆薍薙薝薁薢薂薈薅蕹蕶薘薐薟虨螾螪螭蟅螰螬螹螵螼螮蟉蟃蟂蟌螷螯蟄蟊螴螶螿螸螽蟞螲褵褳褼褾襁襒褷襂覭覯覮觲觳謞"],["eea1","謘謖謑謅謋謢謏謒謕謇謍謈謆謜謓謚豏豰豲豱豯貕貔賹赯蹎蹍蹓蹐蹌蹇轃轀邅遾鄸醚醢醛醙醟醡醝醠鎡鎃鎯鍤鍖鍇鍼鍘鍜鍶鍉鍐鍑鍠鍭鎏鍌鍪鍹鍗鍕鍒鍏鍱鍷鍻鍡鍞鍣鍧鎀鍎鍙闇闀闉闃闅閷隮隰隬霠霟霘霝霙鞚鞡鞜"],["ef40","鞞鞝韕韔韱顁顄顊顉顅顃餥餫餬餪餳餲餯餭餱餰馘馣馡騂駺駴駷駹駸駶駻駽駾駼騃骾髾髽鬁髼魈鮚鮨鮞鮛鮦鮡鮥鮤鮆鮢鮠鮯鴳鵁鵧鴶鴮鴯鴱鴸鴰"],["efa1","鵅鵂鵃鴾鴷鵀鴽翵鴭麊麉麍麰黈黚黻黿鼤鼣鼢齔龠儱儭儮嚘嚜嚗嚚嚝嚙奰嬼屩屪巀幭幮懘懟懭懮懱懪懰懫懖懩擿攄擽擸攁攃擼斔旛曚曛曘櫅檹檽櫡櫆檺檶檷櫇檴檭歞毉氋瀇瀌瀍瀁瀅瀔瀎濿瀀濻瀦濼濷瀊爁燿燹爃燽獶"],["f040","璸瓀璵瓁璾璶璻瓂甔甓癜癤癙癐癓癗癚皦皽盬矂瞺磿礌礓礔礉礐礒礑禭禬穟簜簩簙簠簟簭簝簦簨簢簥簰繜繐繖繣繘繢繟繑繠繗繓羵羳翷翸聵臑臒"],["f0a1","臐艟艞薴藆藀藃藂薳薵薽藇藄薿藋藎藈藅薱薶藒蘤薸薷薾虩蟧蟦蟢蟛蟫蟪蟥蟟蟳蟤蟔蟜蟓蟭蟘蟣螤蟗蟙蠁蟴蟨蟝襓襋襏襌襆襐襑襉謪謧謣謳謰謵譇謯謼謾謱謥謷謦謶謮謤謻謽謺豂豵貙貘貗賾贄贂贀蹜蹢蹠蹗蹖蹞蹥蹧"],["f140","蹛蹚蹡蹝蹩蹔轆轇轈轋鄨鄺鄻鄾醨醥醧醯醪鎵鎌鎒鎷鎛鎝鎉鎧鎎鎪鎞鎦鎕鎈鎙鎟鎍鎱鎑鎲鎤鎨鎴鎣鎥闒闓闑隳雗雚巂雟雘雝霣霢霥鞬鞮鞨鞫鞤鞪"],["f1a1","鞢鞥韗韙韖韘韺顐顑顒颸饁餼餺騏騋騉騍騄騑騊騅騇騆髀髜鬈鬄鬅鬩鬵魊魌魋鯇鯆鯃鮿鯁鮵鮸鯓鮶鯄鮹鮽鵜鵓鵏鵊鵛鵋鵙鵖鵌鵗鵒鵔鵟鵘鵚麎麌黟鼁鼀鼖鼥鼫鼪鼩鼨齌齕儴儵劖勷厴嚫嚭嚦嚧嚪嚬壚壝壛夒嬽嬾嬿巃幰"],["f240","徿懻攇攐攍攉攌攎斄旞旝曞櫧櫠櫌櫑櫙櫋櫟櫜櫐櫫櫏櫍櫞歠殰氌瀙瀧瀠瀖瀫瀡瀢瀣瀩瀗瀤瀜瀪爌爊爇爂爅犥犦犤犣犡瓋瓅璷瓃甖癠矉矊矄矱礝礛"],["f2a1","礡礜礗礞禰穧穨簳簼簹簬簻糬糪繶繵繸繰繷繯繺繲繴繨罋罊羃羆羷翽翾聸臗臕艤艡艣藫藱藭藙藡藨藚藗藬藲藸藘藟藣藜藑藰藦藯藞藢蠀蟺蠃蟶蟷蠉蠌蠋蠆蟼蠈蟿蠊蠂襢襚襛襗襡襜襘襝襙覈覷覶觶譐譈譊譀譓譖譔譋譕"],["f340","譑譂譒譗豃豷豶貚贆贇贉趬趪趭趫蹭蹸蹳蹪蹯蹻軂轒轑轏轐轓辴酀鄿醰醭鏞鏇鏏鏂鏚鏐鏹鏬鏌鏙鎩鏦鏊鏔鏮鏣鏕鏄鏎鏀鏒鏧镽闚闛雡霩霫霬霨霦"],["f3a1","鞳鞷鞶韝韞韟顜顙顝顗颿颽颻颾饈饇饃馦馧騚騕騥騝騤騛騢騠騧騣騞騜騔髂鬋鬊鬎鬌鬷鯪鯫鯠鯞鯤鯦鯢鯰鯔鯗鯬鯜鯙鯥鯕鯡鯚鵷鶁鶊鶄鶈鵱鶀鵸鶆鶋鶌鵽鵫鵴鵵鵰鵩鶅鵳鵻鶂鵯鵹鵿鶇鵨麔麑黀黼鼭齀齁齍齖齗齘匷嚲"],["f440","嚵嚳壣孅巆巇廮廯忀忁懹攗攖攕攓旟曨曣曤櫳櫰櫪櫨櫹櫱櫮櫯瀼瀵瀯瀷瀴瀱灂瀸瀿瀺瀹灀瀻瀳灁爓爔犨獽獼璺皫皪皾盭矌矎矏矍矲礥礣礧礨礤礩"],["f4a1","禲穮穬穭竷籉籈籊籇籅糮繻繾纁纀羺翿聹臛臙舋艨艩蘢藿蘁藾蘛蘀藶蘄蘉蘅蘌藽蠙蠐蠑蠗蠓蠖襣襦覹觷譠譪譝譨譣譥譧譭趮躆躈躄轙轖轗轕轘轚邍酃酁醷醵醲醳鐋鐓鏻鐠鐏鐔鏾鐕鐐鐨鐙鐍鏵鐀鏷鐇鐎鐖鐒鏺鐉鏸鐊鏿"],["f540","鏼鐌鏶鐑鐆闞闠闟霮霯鞹鞻韽韾顠顢顣顟飁飂饐饎饙饌饋饓騲騴騱騬騪騶騩騮騸騭髇髊髆鬐鬒鬑鰋鰈鯷鰅鰒鯸鱀鰇鰎鰆鰗鰔鰉鶟鶙鶤鶝鶒鶘鶐鶛"],["f5a1","鶠鶔鶜鶪鶗鶡鶚鶢鶨鶞鶣鶿鶩鶖鶦鶧麙麛麚黥黤黧黦鼰鼮齛齠齞齝齙龑儺儹劘劗囃嚽嚾孈孇巋巏廱懽攛欂櫼欃櫸欀灃灄灊灈灉灅灆爝爚爙獾甗癪矐礭礱礯籔籓糲纊纇纈纋纆纍罍羻耰臝蘘蘪蘦蘟蘣蘜蘙蘧蘮蘡蘠蘩蘞蘥"],["f640","蠩蠝蠛蠠蠤蠜蠫衊襭襩襮襫觺譹譸譅譺譻贐贔趯躎躌轞轛轝酆酄酅醹鐿鐻鐶鐩鐽鐼鐰鐹鐪鐷鐬鑀鐱闥闤闣霵霺鞿韡顤飉飆飀饘饖騹騽驆驄驂驁騺"],["f6a1","騿髍鬕鬗鬘鬖鬺魒鰫鰝鰜鰬鰣鰨鰩鰤鰡鶷鶶鶼鷁鷇鷊鷏鶾鷅鷃鶻鶵鷎鶹鶺鶬鷈鶱鶭鷌鶳鷍鶲鹺麜黫黮黭鼛鼘鼚鼱齎齥齤龒亹囆囅囋奱孋孌巕巑廲攡攠攦攢欋欈欉氍灕灖灗灒爞爟犩獿瓘瓕瓙瓗癭皭礵禴穰穱籗籜籙籛籚"],["f740","糴糱纑罏羇臞艫蘴蘵蘳蘬蘲蘶蠬蠨蠦蠪蠥襱覿覾觻譾讄讂讆讅譿贕躕躔躚躒躐躖躗轠轢酇鑌鑐鑊鑋鑏鑇鑅鑈鑉鑆霿韣顪顩飋饔饛驎驓驔驌驏驈驊"],["f7a1","驉驒驐髐鬙鬫鬻魖魕鱆鱈鰿鱄鰹鰳鱁鰼鰷鰴鰲鰽鰶鷛鷒鷞鷚鷋鷐鷜鷑鷟鷩鷙鷘鷖鷵鷕鷝麶黰鼵鼳鼲齂齫龕龢儽劙壨壧奲孍巘蠯彏戁戃戄攩攥斖曫欑欒欏毊灛灚爢玂玁玃癰矔籧籦纕艬蘺虀蘹蘼蘱蘻蘾蠰蠲蠮蠳襶襴襳觾"],["f840","讌讎讋讈豅贙躘轤轣醼鑢鑕鑝鑗鑞韄韅頀驖驙鬞鬟鬠鱒鱘鱐鱊鱍鱋鱕鱙鱌鱎鷻鷷鷯鷣鷫鷸鷤鷶鷡鷮鷦鷲鷰鷢鷬鷴鷳鷨鷭黂黐黲黳鼆鼜鼸鼷鼶齃齏"],["f8a1","齱齰齮齯囓囍孎屭攭曭曮欓灟灡灝灠爣瓛瓥矕礸禷禶籪纗羉艭虃蠸蠷蠵衋讔讕躞躟躠躝醾醽釂鑫鑨鑩雥靆靃靇韇韥驞髕魙鱣鱧鱦鱢鱞鱠鸂鷾鸇鸃鸆鸅鸀鸁鸉鷿鷽鸄麠鼞齆齴齵齶囔攮斸欘欙欗欚灢爦犪矘矙礹籩籫糶纚"],["f940","纘纛纙臠臡虆虇虈襹襺襼襻觿讘讙躥躤躣鑮鑭鑯鑱鑳靉顲饟鱨鱮鱭鸋鸍鸐鸏鸒鸑麡黵鼉齇齸齻齺齹圞灦籯蠼趲躦釃鑴鑸鑶鑵驠鱴鱳鱱鱵鸔鸓黶鼊"],["f9a1","龤灨灥糷虪蠾蠽蠿讞貜躩軉靋顳顴飌饡馫驤驦驧鬤鸕鸗齈戇欞爧虌躨钂钀钁驩驨鬮鸙爩虋讟钃鱹麷癵驫鱺鸝灩灪麤齾齉龘碁銹裏墻恒粧嫺╔╦╗╠╬╣╚╩╝╒╤╕╞╪╡╘╧╛╓╥╖╟╫╢╙╨╜║═╭╮╰╯▓"]]},9724:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const i=r(n(9544));const o=r(n(2616));const a=r(n(4110));function zeitWorldTable(){return o.default([[i.default.underline("a.zeit.world"),i.default.dim("96.45.80.1")],[i.default.underline("b.zeit.world"),i.default.dim("46.31.236.1")],[i.default.underline("c.zeit.world"),i.default.dim("43.247.170.1")]],{align:["l","l"],hsep:" ".repeat(8),stringLength:a.default}).replace(/^(.*)/gm," $1")}t.default=zeitWorldTable},9726:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5917);t.addGlobalEventProcessor=r.addGlobalEventProcessor;t.Scope=r.Scope;var i=n(4070);t.getCurrentHub=i.getCurrentHub;t.getHubFromCarrier=i.getHubFromCarrier;t.getMainCarrier=i.getMainCarrier;t.Hub=i.Hub;t.makeMain=i.makeMain;t.setHubOnCarrier=i.setHubOnCarrier;var o=n(5341);t.Span=o.Span;t.TRACEPARENT_REGEXP=o.TRACEPARENT_REGEXP},9734:function(e){"use strict";const t=["|","<",">","?",":"];const n=t.map(e=>String.fromCharCode(61440+e.charCodeAt(0)));const r=new Map(t.map((e,t)=>[e,n[t]]));const i=new Map(n.map((e,n)=>[e,t[n]]));e.exports={encode:e=>t.reduce((e,t)=>e.split(t).join(r.get(t)),e),decode:e=>n.reduce((e,t)=>e.split(t).join(i.get(t)),e)}},9735:function(e){e.exports=function listen(e,...t){return new Promise((n,r)=>{t.push(t=>{if(t)return r(t);const{address:i,family:o,port:a}=e.address();const s="IPv6"===o?`[${i}]`:i;n(`http://${s}:${a}`)});e.listen(...t)})}},9736:function(e){"use strict";const t=process.platform==="win32";function notFoundError(e,t){return Object.assign(new Error(`${t} ${e.command} ENOENT`),{code:"ENOENT",errno:"ENOENT",syscall:`${t} ${e.command}`,path:e.command,spawnargs:e.args})}function hookChildProcess(e,n){if(!t){return}const r=e.emit;e.emit=function(t,i){if(t==="exit"){const t=verifyENOENT(i,n,"spawn");if(t){return r.call(e,"error",t)}}return r.apply(e,arguments)}}function verifyENOENT(e,n){if(t&&e===1&&!n.file){return notFoundError(n.original,"spawn")}return null}function verifyENOENTSync(e,n){if(t&&e===1&&!n.file){return notFoundError(n.original,"spawnSync")}return null}e.exports={hookChildProcess:hookChildProcess,verifyENOENT:verifyENOENT,verifyENOENTSync:verifyENOENTSync,notFoundError:notFoundError}},9743:function(e,t,n){"use strict";var r=n(5325);function isObjectObject(e){return r(e)===true&&Object.prototype.toString.call(e)==="[object Object]"}e.exports=function isPlainObject(e){var t,n;if(isObjectObject(e)===false)return false;t=e.constructor;if(typeof t!=="function")return false;n=t.prototype;if(isObjectObject(n)===false)return false;if(n.hasOwnProperty("isPrototypeOf")===false){return false}return true}},9744:function(e,t,n){Object.defineProperty(t,"__esModule",{value:true});var r=n(5173);var i=n(635);var o=n(1390);var a=n(706);var s="cause";var c=5;var u=function(){function LinkedErrors(e){if(e===void 0){e={}}this.name=LinkedErrors.id;this._key=e.key||s;this._limit=e.limit||c}LinkedErrors.prototype.setupOnce=function(){i.addGlobalEventProcessor(function(e,t){var n=i.getCurrentHub().getIntegration(LinkedErrors);if(n){return n.handler(e,t)}return e})};LinkedErrors.prototype.handler=function(e,t){var n=this;if(!e.exception||!e.exception.values||!t||!(t.originalException instanceof Error)){return o.SyncPromise.resolve(e)}return new o.SyncPromise(function(i){n.walkErrorTree(t.originalException,n._key).then(function(t){if(e&&e.exception&&e.exception.values){e.exception.values=r.__spread(t,e.exception.values)}i(e)})})};LinkedErrors.prototype.walkErrorTree=function(e,t,n){var i=this;if(n===void 0){n=[]}if(!(e[t]instanceof Error)||n.length+1>=this._limit){return o.SyncPromise.resolve(n)}return new o.SyncPromise(function(o){a.getExceptionFromError(e[t]).then(function(a){i.walkErrorTree(e[t],t,r.__spread([a],n)).then(o)})})};LinkedErrors.id="LinkedErrors";return LinkedErrors}();t.LinkedErrors=u},9747:function(e,t,n){var r=n(4854);function buildFormatLocale(){var e=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];var t=["January","February","March","April","May","June","July","August","September","October","November","December"];var n=["Su","Mo","Tu","We","Th","Fr","Sa"];var i=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"];var o=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];var a=["AM","PM"];var s=["am","pm"];var c=["a.m.","p.m."];var u={MMM:function(t){return e[t.getMonth()]},MMMM:function(e){return t[e.getMonth()]},dd:function(e){return n[e.getDay()]},ddd:function(e){return i[e.getDay()]},dddd:function(e){return o[e.getDay()]},A:function(e){return e.getHours()/12>=1?a[1]:a[0]},a:function(e){return e.getHours()/12>=1?s[1]:s[0]},aa:function(e){return e.getHours()/12>=1?c[1]:c[0]}};var l=["M","D","DDD","d","Q","W"];l.forEach(function(e){u[e+"o"]=function(t,n){return ordinal(n[e](t))}});return{formatters:u,formattingTokensRegExp:r(u)}}function ordinal(e){var t=e%100;if(t>20||t<10){switch(t%10){case 1:return e+"st";case 2:return e+"nd";case 3:return e+"rd"}}return e+"th"}e.exports=buildFormatLocale},9755:function(e,t,n){e.exports={read:read,readSSHPrivate:readSSHPrivate,write:write};var r=n(9261);var i=n(4833);var o=n(3062).Buffer;var a=n(6977);var s=n(5271);var c=n(2984);var u=n(120);var l=n(1946);var f=n(5302);var p=n(2046);var d=n(4550);var h=n(7825);var m;function read(e,t){return f.read(e,t)}var v="openssh-key-v1";function readSSHPrivate(e,t,i){t=new d({buffer:t});var a=t.readCString();r.strictEqual(a,v,"bad magic string");var u=t.readString();var l=t.readString();var f=t.readBuffer();var g=t.readInt();if(g!==1){throw new Error("OpenSSH-format key file contains "+"multiple keys: this is unsupported.")}var y=t.readBuffer();if(e==="public"){r.ok(t.atEnd(),"excess bytes left after key");return p.read(y)}var b=t.readBuffer();r.ok(t.atEnd(),"excess bytes left after key");var w=new d({buffer:f});switch(l){case"none":if(u!=="none"){throw new Error('OpenSSH-format key uses KDF "none" '+'but specifies a cipher other than "none"')}break;case"bcrypt":var x=w.readBuffer();var k=w.readInt();var j=s.opensshCipherInfo(u);if(m===undefined){m=n(851)}if(typeof i.passphrase==="string"){i.passphrase=o.from(i.passphrase,"utf-8")}if(!o.isBuffer(i.passphrase)){throw new h.KeyEncryptedError(i.filename,"OpenSSH")}var S=new Uint8Array(i.passphrase);var E=new Uint8Array(x);var _=new Uint8Array(j.keySize+j.blockSize);var C=m.pbkdf(S,S.length,E,E.length,_,_.length,k);if(C!==0){throw new Error("bcrypt_pbkdf function returned "+"failure, parameters invalid")}_=o.from(_);var A=_.slice(0,j.keySize);var O=_.slice(j.keySize,j.keySize+j.blockSize);var F=c.createDecipheriv(j.opensslName,A,O);F.setAutoPadding(false);var D,T=[];F.once("error",function(e){if(e.toString().indexOf("bad decrypt")!==-1){throw new Error("Incorrect passphrase "+"supplied, could not decrypt key")}throw e});F.write(b);F.end();while((D=F.read())!==null)T.push(D);b=o.concat(T);break;default:throw new Error('OpenSSH-format key uses unknown KDF "'+l+'"')}t=new d({buffer:b});var I=t.readInt();var R=t.readInt();if(I!==R){throw new Error("Incorrect passphrase supplied, could not "+"decrypt key")}var P={};var B=p.readInternal(P,"private",t.remainder());t.skip(P.consumed);var N=t.readString();B.comment=N;return B}function write(e,t){var i;if(l.isPrivateKey(e))i=e.toPublic();else i=e;var a="none";var u="none";var f=o.alloc(0);var p={blockSize:8};var h;if(t!==undefined){h=t.passphrase;if(typeof h==="string")h=o.from(h,"utf-8");if(h!==undefined){r.buffer(h,"options.passphrase");r.optionalString(t.cipher,"options.cipher");a=t.cipher;if(a===undefined)a="aes128-ctr";p=s.opensshCipherInfo(a);u="bcrypt"}}var g;if(l.isPrivateKey(e)){g=new d({});var y=c.randomBytes(4).readUInt32BE(0);g.writeInt(y);g.writeInt(y);g.write(e.toBuffer("rfc4253"));g.writeString(e.comment||"");var b=1;while(g._offset%p.blockSize!==0)g.writeChar(b++);g=g.toBuffer()}switch(u){case"none":break;case"bcrypt":var w=c.randomBytes(16);var x=16;var k=new d({});k.writeBuffer(w);k.writeInt(x);f=k.toBuffer();if(m===undefined){m=n(851)}var j=new Uint8Array(h);var S=new Uint8Array(w);var E=new Uint8Array(p.keySize+p.blockSize);var _=m.pbkdf(j,j.length,S,S.length,E,E.length,x);if(_!==0){throw new Error("bcrypt_pbkdf function returned "+"failure, parameters invalid")}E=o.from(E);var C=E.slice(0,p.keySize);var A=E.slice(p.keySize,p.keySize+p.blockSize);var O=c.createCipheriv(p.opensslName,C,A);O.setAutoPadding(false);var F,D=[];O.once("error",function(e){throw e});O.write(g);O.end();while((F=O.read())!==null)D.push(F);g=o.concat(D);break;default:throw new Error("Unsupported kdf "+u)}var T=new d({});T.writeCString(v);T.writeString(a);T.writeString(u);T.writeBuffer(f);T.writeInt(1);T.writeBuffer(i.toBuffer("rfc4253"));if(g)T.writeBuffer(g);T=T.toBuffer();var I;if(l.isPrivateKey(e))I="OPENSSH PRIVATE KEY";else I="OPENSSH PUBLIC KEY";var R=T.toString("base64");var P=R.length+R.length/70+18+16+I.length*2+10;T=o.alloc(P);var B=0;B+=T.write("-----BEGIN "+I+"-----\n",B);for(var N=0;N<R.length;){var z=N+70;if(z>R.length)z=R.length;B+=T.write(R.slice(N,z),B);T[B++]=10;N=z}B+=T.write("-----END "+I+"-----\n",B);return T.slice(0,B)}},9756:function(e,t,n){var r=n(9261);var i=n(649);var o=n(7788);var a=o.HASH_ALGOS;var s=o.PK_ALGOS;var c=o.HttpSignatureError;var u=o.InvalidAlgorithmError;var l=o.validateAlgorithm;var f={New:0,Params:1};var p={Name:0,Quote:1,Value:2,Comma:3};function ExpiredRequestError(e){c.call(this,e,ExpiredRequestError)}i.inherits(ExpiredRequestError,c);function InvalidHeaderError(e){c.call(this,e,InvalidHeaderError)}i.inherits(InvalidHeaderError,c);function InvalidParamsError(e){c.call(this,e,InvalidParamsError)}i.inherits(InvalidParamsError,c);function MissingHeaderError(e){c.call(this,e,MissingHeaderError)}i.inherits(MissingHeaderError,c);function StrictParsingError(e){c.call(this,e,StrictParsingError)}i.inherits(StrictParsingError,c);e.exports={parseRequest:function parseRequest(e,t){r.object(e,"request");r.object(e.headers,"request.headers");if(t===undefined){t={}}if(t.headers===undefined){t.headers=[e.headers["x-date"]?"x-date":"date"]}r.object(t,"options");r.arrayOfString(t.headers,"options.headers");r.optionalFinite(t.clockSkew,"options.clockSkew");var n=t.authorizationHeaderName||"authorization";if(!e.headers[n]){throw new MissingHeaderError("no "+n+" header "+"present in the request")}t.clockSkew=t.clockSkew||300;var i=0;var o=f.New;var a=p.Name;var s="";var c="";var d={scheme:"",params:{},signingString:""};var h=e.headers[n];for(i=0;i<h.length;i++){var m=h.charAt(i);switch(Number(o)){case f.New:if(m!==" ")d.scheme+=m;else o=f.Params;break;case f.Params:switch(Number(a)){case p.Name:var v=m.charCodeAt(0);if(v>=65&&v<=90||v>=97&&v<=122){s+=m}else if(m==="="){if(s.length===0)throw new InvalidHeaderError("bad param format");a=p.Quote}else{throw new InvalidHeaderError("bad param format")}break;case p.Quote:if(m==='"'){c="";a=p.Value}else{throw new InvalidHeaderError("bad param format")}break;case p.Value:if(m==='"'){d.params[s]=c;a=p.Comma}else{c+=m}break;case p.Comma:if(m===","){s="";a=p.Name}else{throw new InvalidHeaderError("bad param format")}break;default:throw new Error("Invalid substate")}break;default:throw new Error("Invalid substate")}}if(!d.params.headers||d.params.headers===""){if(e.headers["x-date"]){d.params.headers=["x-date"]}else{d.params.headers=["date"]}}else{d.params.headers=d.params.headers.split(" ")}if(!d.scheme||d.scheme!=="Signature")throw new InvalidHeaderError('scheme was not "Signature"');if(!d.params.keyId)throw new InvalidHeaderError("keyId was not specified");if(!d.params.algorithm)throw new InvalidHeaderError("algorithm was not specified");if(!d.params.signature)throw new InvalidHeaderError("signature was not specified");d.params.algorithm=d.params.algorithm.toLowerCase();try{l(d.params.algorithm)}catch(e){if(e instanceof u)throw new InvalidParamsError(d.params.algorithm+" is not "+"supported");else throw e}for(i=0;i<d.params.headers.length;i++){var g=d.params.headers[i].toLowerCase();d.params.headers[i]=g;if(g==="request-line"){if(!t.strict){d.signingString+=e.method+" "+e.url+" HTTP/"+e.httpVersion}else{throw new StrictParsingError("request-line is not a valid header "+"with strict parsing enabled.")}}else if(g==="(request-target)"){d.signingString+="(request-target): "+e.method.toLowerCase()+" "+e.url}else{var y=e.headers[g];if(y===undefined)throw new MissingHeaderError(g+" was not in the request");d.signingString+=g+": "+y}if(i+1<d.params.headers.length)d.signingString+="\n"}var b;if(e.headers.date||e.headers["x-date"]){if(e.headers["x-date"]){b=new Date(e.headers["x-date"])}else{b=new Date(e.headers.date)}var w=new Date;var x=Math.abs(w.getTime()-b.getTime());if(x>t.clockSkew*1e3){throw new ExpiredRequestError("clock skew of "+x/1e3+"s was greater than "+t.clockSkew+"s")}}t.headers.forEach(function(e){if(d.params.headers.indexOf(e.toLowerCase())<0)throw new MissingHeaderError(e+" was not a signed header")});if(t.algorithms){if(t.algorithms.indexOf(d.params.algorithm)===-1)throw new InvalidParamsError(d.params.algorithm+" is not a supported algorithm")}d.algorithm=d.params.algorithm.toUpperCase();d.keyId=d.params.keyId;return d}}},9758:function(e,t,n){"use strict";var r=n(4219);var i=n(2307);var o=n(774);var a=n(649);var s=n(6886);var c=n(2673);var u=n(2935);var l=n(3945);var f=n(7769);var p=n(3937);var d=n(7822);var h=n(7448);var m=n(2423);var v=n(4393);var g=n(8763);var y=n(3088).strict;var b=n(6518);var w=n(3046);var x=n(7737);var k=n(6124).Querystring;var j=n(3538).Har;var S=n(5968).Auth;var E=n(5548).OAuth;var _=n(9263);var C=n(3246).Multipart;var A=n(9465).Redirect;var O=n(5466).Tunnel;var F=n(3719);var D=n(9335).Buffer;var T=b.safeStringify;var I=b.isReadStream;var R=b.toBase64;var P=b.defer;var B=b.copy;var N=b.version;var z=w.jar();var L={};function filterForNonReserved(e,t){var n={};for(var r in t){var i=e.indexOf(r)===-1;if(i){n[r]=t[r]}}return n}function filterOutReservedFunctions(e,t){var n={};for(var r in t){var i=!(e.indexOf(r)===-1);var o=typeof t[r]==="function";if(!(i&&o)){n[r]=t[r]}}return n}function requestToJSON(){var e=this;return{uri:e.uri,method:e.method,headers:e.headers}}function responseToJSON(){var e=this;return{statusCode:e.statusCode,body:e.body,headers:e.headers,request:requestToJSON.call(e.request)}}function Request(e){var t=this;if(e.har){t._har=new j(t);e=t._har.options(e)}s.Stream.call(t);var n=Object.keys(Request.prototype);var r=filterForNonReserved(n,e);v(t,r);e=filterOutReservedFunctions(n,e);t.readable=true;t.writable=true;if(e.method){t.explicitMethod=true}t._qs=new k(t);t._auth=new S(t);t._oauth=new E(t);t._multipart=new C(t);t._redirect=new A(t);t._tunnel=new O(t);t.init(e)}a.inherits(Request,s.Stream);Request.debug=process.env.NODE_DEBUG&&/\brequest\b/.test(process.env.NODE_DEBUG);function debug(){if(Request.debug){console.error("REQUEST %s",a.format.apply(a,arguments))}}Request.prototype.debug=debug;Request.prototype.init=function(e){var t=this;if(!e){e={}}t.headers=t.headers?B(t.headers):{};for(var n in t.headers){if(typeof t.headers[n]==="undefined"){delete t.headers[n]}}d.httpify(t,t.headers);if(!t.method){t.method=e.method||"GET"}if(!t.localAddress){t.localAddress=e.localAddress}t._qs.init(e);debug(e);if(!t.pool&&t.pool!==false){t.pool=L}t.dests=t.dests||[];t.__isRequestRequest=true;if(!t._callback&&t.callback){t._callback=t.callback;t.callback=function(){if(t._callbackCalled){return}t._callbackCalled=true;t._callback.apply(t,arguments)};t.on("error",t.callback.bind());t.on("complete",t.callback.bind(t,null))}if(!t.uri&&t.url){t.uri=t.url;delete t.url}if(t.baseUrl){if(typeof t.baseUrl!=="string"){return t.emit("error",new Error("options.baseUrl must be a string"))}if(typeof t.uri!=="string"){return t.emit("error",new Error("options.uri must be a string when using options.baseUrl"))}if(t.uri.indexOf("//")===0||t.uri.indexOf("://")!==-1){return t.emit("error",new Error("options.uri must be a path when using options.baseUrl"))}var a=t.baseUrl.lastIndexOf("/")===t.baseUrl.length-1;var s=t.uri.indexOf("/")===0;if(a&&s){t.uri=t.baseUrl+t.uri.slice(1)}else if(a||s){t.uri=t.baseUrl+t.uri}else if(t.uri===""){t.uri=t.baseUrl}else{t.uri=t.baseUrl+"/"+t.uri}delete t.baseUrl}if(!t.uri){return t.emit("error",new Error("options.uri is a required argument"))}if(typeof t.uri==="string"){t.uri=o.parse(t.uri)}if(!t.uri.href){t.uri.href=o.format(t.uri)}if(t.uri.protocol==="unix:"){return t.emit("error",new Error("`unix://` URL scheme is no longer supported. Please use the format `http://unix:SOCKET:PATH`"))}if(t.uri.host==="unix"){t.enableUnixSocket()}if(t.strictSSL===false){t.rejectUnauthorized=false}if(!t.uri.pathname){t.uri.pathname="/"}if(!(t.uri.host||t.uri.hostname&&t.uri.port)&&!t.uri.isUnix){var c=o.format(t.uri);var u='Invalid URI "'+c+'"';if(Object.keys(e).length===0){u+=". This can be caused by a crappy redirection."}t.abort();return t.emit("error",new Error(u))}if(!t.hasOwnProperty("proxy")){t.proxy=x(t.uri)}t.tunnel=t._tunnel.isEnabled();if(t.proxy){t._tunnel.setup(e)}t._redirect.onRequest(e);t.setHost=false;if(!t.hasHeader("host")){var l=t.originalHostHeaderName||"host";t.setHeader(l,t.uri.host);if(t.uri.port){if(t.uri.port==="80"&&t.uri.protocol==="http:"||t.uri.port==="443"&&t.uri.protocol==="https:"){t.setHeader(l,t.uri.hostname)}}t.setHost=true}t.jar(t._jar||e.jar);if(!t.uri.port){if(t.uri.protocol==="http:"){t.uri.port=80}else if(t.uri.protocol==="https:"){t.uri.port=443}}if(t.proxy&&!t.tunnel){t.port=t.proxy.port;t.host=t.proxy.hostname}else{t.port=t.uri.port;t.host=t.uri.hostname}if(e.form){t.form(e.form)}if(e.formData){var f=e.formData;var m=t.form();var v=function(e,t){if(t&&t.hasOwnProperty("value")&&t.hasOwnProperty("options")){m.append(e,t.value,t.options)}else{m.append(e,t)}};for(var b in f){if(f.hasOwnProperty(b)){var w=f[b];if(w instanceof Array){for(var k=0;k<w.length;k++){v(b,w[k])}}else{v(b,w)}}}}if(e.qs){t.qs(e.qs)}if(t.uri.path){t.path=t.uri.path}else{t.path=t.uri.pathname+(t.uri.search||"")}if(t.path.length===0){t.path="/"}if(e.aws){t.aws(e.aws)}if(e.hawk){t.hawk(e.hawk)}if(e.httpSignature){t.httpSignature(e.httpSignature)}if(e.auth){if(Object.prototype.hasOwnProperty.call(e.auth,"username")){e.auth.user=e.auth.username}if(Object.prototype.hasOwnProperty.call(e.auth,"password")){e.auth.pass=e.auth.password}t.auth(e.auth.user,e.auth.pass,e.auth.sendImmediately,e.auth.bearer)}if(t.gzip&&!t.hasHeader("accept-encoding")){t.setHeader("accept-encoding","gzip, deflate")}if(t.uri.auth&&!t.hasHeader("authorization")){var j=t.uri.auth.split(":").map(function(e){return t._qs.unescape(e)});t.auth(j[0],j.slice(1).join(":"),true)}if(!t.tunnel&&t.proxy&&t.proxy.auth&&!t.hasHeader("proxy-authorization")){var S=t.proxy.auth.split(":").map(function(e){return t._qs.unescape(e)});var E="Basic "+R(S.join(":"));t.setHeader("proxy-authorization",E)}if(t.proxy&&!t.tunnel){t.path=t.uri.protocol+"//"+t.uri.host+t.path}if(e.json){t.json(e.json)}if(e.multipart){t.multipart(e.multipart)}if(e.time){t.timing=true;t.elapsedTime=t.elapsedTime||0}function setContentLength(){if(y(t.body)){t.body=D.from(t.body)}if(!t.hasHeader("content-length")){var e;if(typeof t.body==="string"){e=D.byteLength(t.body)}else if(Array.isArray(t.body)){e=t.body.reduce(function(e,t){return e+t.length},0)}else{e=t.body.length}if(e){t.setHeader("content-length",e)}else{t.emit("error",new Error("Argument error, options.body."))}}}if(t.body&&!g(t.body)){setContentLength()}if(e.oauth){t.oauth(e.oauth)}else if(t._oauth.params&&t.hasHeader("authorization")){t.oauth(t._oauth.params)}var _=t.proxy&&!t.tunnel?t.proxy.protocol:t.uri.protocol;var C={"http:":r,"https:":i};var A=t.httpModules||{};t.httpModule=A[_]||C[_];if(!t.httpModule){return t.emit("error",new Error("Invalid protocol: "+_))}if(e.ca){t.ca=e.ca}if(!t.agent){if(e.agentOptions){t.agentOptions=e.agentOptions}if(e.agentClass){t.agentClass=e.agentClass}else if(e.forever){var O=N();if(O.major===0&&O.minor<=10){t.agentClass=_==="http:"?h:h.SSL}else{t.agentClass=t.httpModule.Agent;t.agentOptions=t.agentOptions||{};t.agentOptions.keepAlive=true}}else{t.agentClass=t.httpModule.Agent}}if(t.pool===false){t.agent=false}else{t.agent=t.agent||t.getNewAgent()}t.on("pipe",function(e){if(t.ntick&&t._started){t.emit("error",new Error("You cannot pipe to this stream after the outbound request has started."))}t.src=e;if(I(e)){if(!t.hasHeader("content-type")){t.setHeader("content-type",p.lookup(e.path))}}else{if(e.headers){for(var n in e.headers){if(!t.hasHeader(n)){t.setHeader(n,e.headers[n])}}}if(t._json&&!t.hasHeader("content-type")){t.setHeader("content-type","application/json")}if(e.method&&!t.explicitMethod){t.method=e.method}}});P(function(){if(t._aborted){return}var e=function(){if(t._form){if(!t._auth.hasAuth){t._form.pipe(t)}else if(t._auth.hasAuth&&t._auth.sentAuth){t._form.pipe(t)}}if(t._multipart&&t._multipart.chunked){t._multipart.body.pipe(t)}if(t.body){if(g(t.body)){t.body.pipe(t)}else{setContentLength();if(Array.isArray(t.body)){t.body.forEach(function(e){t.write(e)})}else{t.write(t.body)}t.end()}}else if(t.requestBodyStream){console.warn("options.requestBodyStream is deprecated, please pass the request object to stream.pipe.");t.requestBodyStream.pipe(t)}else if(!t.src){if(t._auth.hasAuth&&!t._auth.sentAuth){t.end();return}if(t.method!=="GET"&&typeof t.method!=="undefined"){t.setHeader("content-length",0)}t.end()}};if(t._form&&!t.hasHeader("content-length")){t.setHeader(t._form.getHeaders(),true);t._form.getLength(function(n,r){if(!n&&!isNaN(r)){t.setHeader("content-length",r)}e()})}else{e()}t.ntick=true})};Request.prototype.getNewAgent=function(){var e=this;var t=e.agentClass;var n={};if(e.agentOptions){for(var r in e.agentOptions){n[r]=e.agentOptions[r]}}if(e.ca){n.ca=e.ca}if(e.ciphers){n.ciphers=e.ciphers}if(e.secureProtocol){n.secureProtocol=e.secureProtocol}if(e.secureOptions){n.secureOptions=e.secureOptions}if(typeof e.rejectUnauthorized!=="undefined"){n.rejectUnauthorized=e.rejectUnauthorized}if(e.cert&&e.key){n.key=e.key;n.cert=e.cert}if(e.pfx){n.pfx=e.pfx}if(e.passphrase){n.passphrase=e.passphrase}var i="";if(t!==e.httpModule.Agent){i+=t.name}var a=e.proxy;if(typeof a==="string"){a=o.parse(a)}var s=a&&a.protocol==="https:"||this.uri.protocol==="https:";if(s){if(n.ca){if(i){i+=":"}i+=n.ca}if(typeof n.rejectUnauthorized!=="undefined"){if(i){i+=":"}i+=n.rejectUnauthorized}if(n.cert){if(i){i+=":"}i+=n.cert.toString("ascii")+n.key.toString("ascii")}if(n.pfx){if(i){i+=":"}i+=n.pfx.toString("ascii")}if(n.ciphers){if(i){i+=":"}i+=n.ciphers}if(n.secureProtocol){if(i){i+=":"}i+=n.secureProtocol}if(n.secureOptions){if(i){i+=":"}i+=n.secureOptions}}if(e.pool===L&&!i&&Object.keys(n).length===0&&e.httpModule.globalAgent){return e.httpModule.globalAgent}i=e.uri.protocol+i;if(!e.pool[i]){e.pool[i]=new t(n);if(e.pool.maxSockets){e.pool[i].maxSockets=e.pool.maxSockets}}return e.pool[i]};Request.prototype.start=function(){var e=this;if(e.timing){var t=(new Date).getTime();var n=F()}if(e._aborted){return}e._started=true;e.method=e.method||"GET";e.href=e.uri.href;if(e.src&&e.src.stat&&e.src.stat.size&&!e.hasHeader("content-length")){e.setHeader("content-length",e.src.stat.size)}if(e._aws){e.aws(e._aws,true)}var r=B(e);delete r.auth;debug("make request",e.uri.href);delete r.timeout;try{e.req=e.httpModule.request(r)}catch(t){e.emit("error",t);return}if(e.timing){e.startTime=t;e.startTimeNow=n;e.timings={}}var i;if(e.timeout&&!e.timeoutTimer){if(e.timeout<0){i=0}else if(typeof e.timeout==="number"&&isFinite(e.timeout)){i=e.timeout}}e.req.on("response",e.onRequestResponse.bind(e));e.req.on("error",e.onRequestError.bind(e));e.req.on("drain",function(){e.emit("drain")});e.req.on("socket",function(t){var n=t._connecting||t.connecting;if(e.timing){e.timings.socket=F()-e.startTimeNow;if(n){var r=function(){e.timings.lookup=F()-e.startTimeNow};var o=function(){e.timings.connect=F()-e.startTimeNow};t.once("lookup",r);t.once("connect",o);e.req.once("error",function(){t.removeListener("lookup",r);t.removeListener("connect",o)})}}var a=function(){e.req.setTimeout(i,function(){if(e.req){e.abort();var t=new Error("ESOCKETTIMEDOUT");t.code="ESOCKETTIMEDOUT";t.connect=false;e.emit("error",t)}})};if(i!==undefined){if(n){var s=function(){t.removeListener("connect",s);clearTimeout(e.timeoutTimer);e.timeoutTimer=null;a()};t.on("connect",s);e.req.on("error",function(e){t.removeListener("connect",s)});e.timeoutTimer=setTimeout(function(){t.removeListener("connect",s);e.abort();var n=new Error("ETIMEDOUT");n.code="ETIMEDOUT";n.connect=true;e.emit("error",n)},i)}else{a()}}e.emit("socket",t)});e.emit("request",e.req)};Request.prototype.onRequestError=function(e){var t=this;if(t._aborted){return}if(t.req&&t.req._reusedSocket&&e.code==="ECONNRESET"&&t.agent.addRequestNoreuse){t.agent={addRequest:t.agent.addRequestNoreuse.bind(t.agent)};t.start();t.req.end();return}if(t.timeout&&t.timeoutTimer){clearTimeout(t.timeoutTimer);t.timeoutTimer=null}t.emit("error",e)};Request.prototype.onRequestResponse=function(e){var t=this;if(t.timing){t.timings.response=F()-t.startTimeNow}debug("onRequestResponse",t.uri.href,e.statusCode,e.headers);e.on("end",function(){if(t.timing){t.timings.end=F()-t.startTimeNow;e.timingStart=t.startTime;if(!t.timings.socket){t.timings.socket=0}if(!t.timings.lookup){t.timings.lookup=t.timings.socket}if(!t.timings.connect){t.timings.connect=t.timings.lookup}if(!t.timings.response){t.timings.response=t.timings.connect}debug("elapsed time",t.timings.end);t.elapsedTime+=Math.round(t.timings.end);e.elapsedTime=t.elapsedTime;e.timings=t.timings;e.timingPhases={wait:t.timings.socket,dns:t.timings.lookup-t.timings.socket,tcp:t.timings.connect-t.timings.lookup,firstByte:t.timings.response-t.timings.connect,download:t.timings.end-t.timings.response,total:t.timings.end}}debug("response end",t.uri.href,e.statusCode,e.headers)});if(t._aborted){debug("aborted",t.uri.href);e.resume();return}t.response=e;e.request=t;e.toJSON=responseToJSON;if(t.httpModule===i&&t.strictSSL&&(!e.hasOwnProperty("socket")||!e.socket.authorized)){debug("strict ssl error",t.uri.href);var n=e.hasOwnProperty("socket")?e.socket.authorizationError:t.uri.href+" does not support SSL";t.emit("error",new Error("SSL Error: "+n));return}t.originalHost=t.getHeader("host");if(!t.originalHostHeaderName){t.originalHostHeaderName=t.hasHeader("host")}if(t.setHost){t.removeHeader("host")}if(t.timeout&&t.timeoutTimer){clearTimeout(t.timeoutTimer);t.timeoutTimer=null}var r=t._jar&&t._jar.setCookie?t._jar:z;var o=function(e){try{r.setCookie(e,t.uri.href,{ignoreError:true})}catch(e){t.emit("error",e)}};e.caseless=d(e.headers);if(e.caseless.has("set-cookie")&&!t._disableCookies){var a=e.caseless.has("set-cookie");if(Array.isArray(e.headers[a])){e.headers[a].forEach(o)}else{o(e.headers[a])}}if(t._redirect.onResponse(e)){return}else{e.on("close",function(){if(!t._ended){t.response.emit("end")}});e.once("end",function(){t._ended=true});var s=function(e){return t.method==="HEAD"||e>=100&&e<200||e===204||e===304};var u;if(t.gzip&&!s(e.statusCode)){var l=e.headers["content-encoding"]||"identity";l=l.trim().toLowerCase();var f={flush:c.Z_SYNC_FLUSH,finishFlush:c.Z_SYNC_FLUSH};if(l==="gzip"){u=c.createGunzip(f);e.pipe(u)}else if(l==="deflate"){u=c.createInflate(f);e.pipe(u)}else{if(l!=="identity"){debug("ignoring unrecognized Content-Encoding "+l)}u=e}}else{u=e}if(t.encoding){if(t.dests.length!==0){console.error("Ignoring encoding parameter as this stream is being piped to another stream which makes the encoding option invalid.")}else{u.setEncoding(t.encoding)}}if(t._paused){u.pause()}t.responseContent=u;t.emit("response",e);t.dests.forEach(function(e){t.pipeDest(e)});u.on("data",function(n){if(t.timing&&!t.responseStarted){t.responseStartTime=(new Date).getTime();e.responseStartTime=t.responseStartTime}t._destdata=true;t.emit("data",n)});u.once("end",function(e){t.emit("end",e)});u.on("error",function(e){t.emit("error",e)});u.on("close",function(){t.emit("close")});if(t.callback){t.readResponseBody(e)}else{t.on("end",function(){if(t._aborted){debug("aborted",t.uri.href);return}t.emit("complete",e)})}}debug("finish init function",t.uri.href)};Request.prototype.readResponseBody=function(e){var t=this;debug("reading response's body");var n=[];var r=0;var i=[];t.on("data",function(e){if(!D.isBuffer(e)){i.push(e)}else if(e.length){r+=e.length;n.push(e)}});t.on("end",function(){debug("end event",t.uri.href);if(t._aborted){debug("aborted",t.uri.href);n=[];r=0;return}if(r){debug("has body",t.uri.href,r);e.body=D.concat(n,r);if(t.encoding!==null){e.body=e.body.toString(t.encoding)}n=[];r=0}else if(i.length){if(t.encoding==="utf8"&&i[0].length>0&&i[0][0]==="\ufeff"){i[0]=i[0].substring(1)}e.body=i.join("")}if(t._json){try{e.body=JSON.parse(e.body,t._jsonReviver)}catch(e){debug("invalid JSON received",t.uri.href)}}debug("emitting complete",t.uri.href);if(typeof e.body==="undefined"&&!t._json){e.body=t.encoding===null?D.alloc(0):""}t.emit("complete",e,e.body)})};Request.prototype.abort=function(){var e=this;e._aborted=true;if(e.req){e.req.abort()}else if(e.response){e.response.destroy()}e.emit("abort")};Request.prototype.pipeDest=function(e){var t=this;var n=t.response;if(e.headers&&!e.headersSent){if(n.caseless.has("content-type")){var r=n.caseless.has("content-type");if(e.setHeader){e.setHeader(r,n.headers[r])}else{e.headers[r]=n.headers[r]}}if(n.caseless.has("content-length")){var i=n.caseless.has("content-length");if(e.setHeader){e.setHeader(i,n.headers[i])}else{e.headers[i]=n.headers[i]}}}if(e.setHeader&&!e.headersSent){for(var o in n.headers){if(!t.gzip||o!=="content-encoding"){e.setHeader(o,n.headers[o])}}e.statusCode=n.statusCode}if(t.pipefilter){t.pipefilter(n,e)}};Request.prototype.qs=function(e,t){var n=this;var r;if(!t&&n.uri.query){r=n._qs.parse(n.uri.query)}else{r={}}for(var i in e){r[i]=e[i]}var a=n._qs.stringify(r);if(a===""){return n}n.uri=o.parse(n.uri.href.split("?")[0]+"?"+a);n.url=n.uri;n.path=n.uri.path;if(n.uri.host==="unix"){n.enableUnixSocket()}return n};Request.prototype.form=function(e){var t=this;if(e){if(!/^application\/x-www-form-urlencoded\b/.test(t.getHeader("content-type"))){t.setHeader("content-type","application/x-www-form-urlencoded")}t.body=typeof e==="string"?t._qs.rfc3986(e.toString("utf8")):t._qs.stringify(e).toString("utf8");return t}t._form=new m;t._form.on("error",function(e){e.message="form-data: "+e.message;t.emit("error",e);t.abort()});return t._form};Request.prototype.multipart=function(e){var t=this;t._multipart.onRequest(e);if(!t._multipart.chunked){t.body=t._multipart.body}return t};Request.prototype.json=function(e){var t=this;if(!t.hasHeader("accept")){t.setHeader("accept","application/json")}if(typeof t.jsonReplacer==="function"){t._jsonReplacer=t.jsonReplacer}t._json=true;if(typeof e==="boolean"){if(t.body!==undefined){if(!/^application\/x-www-form-urlencoded\b/.test(t.getHeader("content-type"))){t.body=T(t.body,t._jsonReplacer)}else{t.body=t._qs.rfc3986(t.body)}if(!t.hasHeader("content-type")){t.setHeader("content-type","application/json")}}}else{t.body=T(e,t._jsonReplacer);if(!t.hasHeader("content-type")){t.setHeader("content-type","application/json")}}if(typeof t.jsonReviver==="function"){t._jsonReviver=t.jsonReviver}return t};Request.prototype.getHeader=function(e,t){var n=this;var r,i,o;if(!t){t=n.headers}Object.keys(t).forEach(function(n){if(n.length!==e.length){return}i=new RegExp(e,"i");o=n.match(i);if(o){r=t[n]}});return r};Request.prototype.enableUnixSocket=function(){var e=this.uri.path.split(":");var t=e[0];var n=e[1];this.socketPath=t;this.uri.pathname=n;this.uri.path=n;this.uri.host=t;this.uri.hostname=t;this.uri.isUnix=true};Request.prototype.auth=function(e,t,n,r){var i=this;i._auth.onRequest(e,t,n,r);return i};Request.prototype.aws=function(e,t){var n=this;if(!t){n._aws=e;return n}if(e.sign_version===4||e.sign_version==="4"){var r={host:n.uri.host,path:n.uri.path,method:n.method,headers:n.headers,body:n.body};if(e.service){r.service=e.service}var i=l.sign(r,{accessKeyId:e.key,secretAccessKey:e.secret,sessionToken:e.session});n.setHeader("authorization",i.headers.Authorization);n.setHeader("x-amz-date",i.headers["X-Amz-Date"]);if(i.headers["X-Amz-Security-Token"]){n.setHeader("x-amz-security-token",i.headers["X-Amz-Security-Token"])}}else{var o=new Date;n.setHeader("date",o.toUTCString());var a={key:e.key,secret:e.secret,verb:n.method.toUpperCase(),date:o,contentType:n.getHeader("content-type")||"",md5:n.getHeader("content-md5")||"",amazonHeaders:u.canonicalizeHeaders(n.headers)};var s=n.uri.path;if(e.bucket&&s){a.resource="/"+e.bucket+s}else if(e.bucket&&!s){a.resource="/"+e.bucket}else if(!e.bucket&&s){a.resource=s}else if(!e.bucket&&!s){a.resource="/"}a.resource=u.canonicalizeResource(a.resource);n.setHeader("authorization",u.authorization(a))}return n};Request.prototype.httpSignature=function(e){var t=this;f.signRequest({getHeader:function(e){return t.getHeader(e,t.headers)},setHeader:function(e,n){t.setHeader(e,n)},method:t.method,path:t.path},e);debug("httpSignature authorization",t.getHeader("authorization"));return t};Request.prototype.hawk=function(e){var t=this;t.setHeader("Authorization",_.header(t.uri,t.method,e))};Request.prototype.oauth=function(e){var t=this;t._oauth.onRequest(e);return t};Request.prototype.jar=function(e){var t=this;var n;if(t._redirect.redirectsFollowed===0){t.originalCookieHeader=t.getHeader("cookie")}if(!e){n=false;t._disableCookies=true}else{var r=e&&e.getCookieString?e:z;var i=t.uri.href;if(r){n=r.getCookieString(i)}}if(n&&n.length){if(t.originalCookieHeader){t.setHeader("cookie",t.originalCookieHeader+"; "+n)}else{t.setHeader("cookie",n)}}t._jar=e;return t};Request.prototype.pipe=function(e,t){var n=this;if(n.response){if(n._destdata){n.emit("error",new Error("You cannot pipe after data has been emitted from the response."))}else if(n._ended){n.emit("error",new Error("You cannot pipe after the response has been ended."))}else{s.Stream.prototype.pipe.call(n,e,t);n.pipeDest(e);return e}}else{n.dests.push(e);s.Stream.prototype.pipe.call(n,e,t);return e}};Request.prototype.write=function(){var e=this;if(e._aborted){return}if(!e._started){e.start()}if(e.req){return e.req.write.apply(e.req,arguments)}};Request.prototype.end=function(e){var t=this;if(t._aborted){return}if(e){t.write(e)}if(!t._started){t.start()}if(t.req){t.req.end()}};Request.prototype.pause=function(){var e=this;if(!e.responseContent){e._paused=true}else{e.responseContent.pause.apply(e.responseContent,arguments)}};Request.prototype.resume=function(){var e=this;if(!e.responseContent){e._paused=false}else{e.responseContent.resume.apply(e.responseContent,arguments)}};Request.prototype.destroy=function(){var e=this;if(!e._ended){e.end()}else if(e.response){e.response.destroy()}};Request.defaultProxyHeaderWhiteList=O.defaultProxyHeaderWhiteList.slice();Request.defaultProxyHeaderExclusiveList=O.defaultProxyHeaderExclusiveList.slice();Request.prototype.toJSON=requestToJSON;e.exports=Request},9761:function(e,t,n){var r=n(6463).SourceMapGenerator;var i=n(8434);var o=/(\r?\n)/;var a=10;var s="$$$isSourceNode$$$";function SourceNode(e,t,n,r,i){this.children=[];this.sourceContents={};this.line=e==null?null:e;this.column=t==null?null:t;this.source=n==null?null:n;this.name=i==null?null:i;this[s]=true;if(r!=null)this.add(r)}SourceNode.fromStringWithSourceMap=function SourceNode_fromStringWithSourceMap(e,t,n){var r=new SourceNode;var a=e.split(o);var s=0;var c=function(){var e=getNextLine();var t=getNextLine()||"";return e+t;function getNextLine(){return s<a.length?a[s++]:undefined}};var u=1,l=0;var f=null;t.eachMapping(function(e){if(f!==null){if(u<e.generatedLine){addMappingWithCode(f,c());u++;l=0}else{var t=a[s]||"";var n=t.substr(0,e.generatedColumn-l);a[s]=t.substr(e.generatedColumn-l);l=e.generatedColumn;addMappingWithCode(f,n);f=e;return}}while(u<e.generatedLine){r.add(c());u++}if(l<e.generatedColumn){var t=a[s]||"";r.add(t.substr(0,e.generatedColumn));a[s]=t.substr(e.generatedColumn);l=e.generatedColumn}f=e},this);if(s<a.length){if(f){addMappingWithCode(f,c())}r.add(a.splice(s).join(""))}t.sources.forEach(function(e){var o=t.sourceContentFor(e);if(o!=null){if(n!=null){e=i.join(n,e)}r.setSourceContent(e,o)}});return r;function addMappingWithCode(e,t){if(e===null||e.source===undefined){r.add(t)}else{var o=n?i.join(n,e.source):e.source;r.add(new SourceNode(e.originalLine,e.originalColumn,o,t,e.name))}}};SourceNode.prototype.add=function SourceNode_add(e){if(Array.isArray(e)){e.forEach(function(e){this.add(e)},this)}else if(e[s]||typeof e==="string"){if(e){this.children.push(e)}}else{throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+e)}return this};SourceNode.prototype.prepend=function SourceNode_prepend(e){if(Array.isArray(e)){for(var t=e.length-1;t>=0;t--){this.prepend(e[t])}}else if(e[s]||typeof e==="string"){this.children.unshift(e)}else{throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+e)}return this};SourceNode.prototype.walk=function SourceNode_walk(e){var t;for(var n=0,r=this.children.length;n<r;n++){t=this.children[n];if(t[s]){t.walk(e)}else{if(t!==""){e(t,{source:this.source,line:this.line,column:this.column,name:this.name})}}}};SourceNode.prototype.join=function SourceNode_join(e){var t;var n;var r=this.children.length;if(r>0){t=[];for(n=0;n<r-1;n++){t.push(this.children[n]);t.push(e)}t.push(this.children[n]);this.children=t}return this};SourceNode.prototype.replaceRight=function SourceNode_replaceRight(e,t){var n=this.children[this.children.length-1];if(n[s]){n.replaceRight(e,t)}else if(typeof n==="string"){this.children[this.children.length-1]=n.replace(e,t)}else{this.children.push("".replace(e,t))}return this};SourceNode.prototype.setSourceContent=function SourceNode_setSourceContent(e,t){this.sourceContents[i.toSetString(e)]=t};SourceNode.prototype.walkSourceContents=function SourceNode_walkSourceContents(e){for(var t=0,n=this.children.length;t<n;t++){if(this.children[t][s]){this.children[t].walkSourceContents(e)}}var r=Object.keys(this.sourceContents);for(var t=0,n=r.length;t<n;t++){e(i.fromSetString(r[t]),this.sourceContents[r[t]])}};SourceNode.prototype.toString=function SourceNode_toString(){var e="";this.walk(function(t){e+=t});return e};SourceNode.prototype.toStringWithSourceMap=function SourceNode_toStringWithSourceMap(e){var t={code:"",line:1,column:0};var n=new r(e);var i=false;var o=null;var s=null;var c=null;var u=null;this.walk(function(e,r){t.code+=e;if(r.source!==null&&r.line!==null&&r.column!==null){if(o!==r.source||s!==r.line||c!==r.column||u!==r.name){n.addMapping({source:r.source,original:{line:r.line,column:r.column},generated:{line:t.line,column:t.column},name:r.name})}o=r.source;s=r.line;c=r.column;u=r.name;i=true}else if(i){n.addMapping({generated:{line:t.line,column:t.column}});o=null;i=false}for(var l=0,f=e.length;l<f;l++){if(e.charCodeAt(l)===a){t.line++;t.column=0;if(l+1===f){o=null;i=false}else if(i){n.addMapping({source:r.source,original:{line:r.line,column:r.column},generated:{line:t.line,column:t.column},name:r.name})}}else{t.column++}}});this.walkSourceContents(function(e,t){n.setSourceContent(e,t)});return{code:t.code,map:n}};t.SourceNode=SourceNode},9767:function(e){"use strict";e.exports=function generate_ref(e,t,n){var r=" ";var i=e.level;var o=e.dataLevel;var a=e.schema[t];var s=e.errSchemaPath+"/"+t;var c=!e.opts.allErrors;var u="data"+(o||"");var l="valid"+i;var f,p;if(a=="#"||a=="#/"){if(e.isRoot){f=e.async;p="validate"}else{f=e.root.schema.$async===true;p="root.refVal[0]"}}else{var d=e.resolveRef(e.baseId,a,e.isRoot);if(d===undefined){var h=e.MissingRefError.message(e.baseId,a);if(e.opts.missingRefs=="fail"){e.logger.error(h);var m=m||[];m.push(r);r="";if(e.createErrors!==false){r+=" { keyword: '"+"$ref"+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(s)+" , params: { ref: '"+e.util.escapeQuotes(a)+"' } ";if(e.opts.messages!==false){r+=" , message: 'can\\'t resolve reference "+e.util.escapeQuotes(a)+"' "}if(e.opts.verbose){r+=" , schema: "+e.util.toQuotedString(a)+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+u+" "}r+=" } "}else{r+=" {} "}var v=r;r=m.pop();if(!e.compositeRule&&c){if(e.async){r+=" throw new ValidationError(["+v+"]); "}else{r+=" validate.errors = ["+v+"]; return false; "}}else{r+=" var err = "+v+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}if(c){r+=" if (false) { "}}else if(e.opts.missingRefs=="ignore"){e.logger.warn(h);if(c){r+=" if (true) { "}}else{throw new e.MissingRefError(e.baseId,a,h)}}else if(d.inline){var g=e.util.copy(e);g.level++;var y="valid"+g.level;g.schema=d.schema;g.schemaPath="";g.errSchemaPath=a;var b=e.validate(g).replace(/validate\.schema/g,d.code);r+=" "+b+" ";if(c){r+=" if ("+y+") { "}}else{f=d.$async===true||e.async&&d.$async!==false;p=d.code}}if(p){var m=m||[];m.push(r);r="";if(e.opts.passContext){r+=" "+p+".call(this, "}else{r+=" "+p+"( "}r+=" "+u+", (dataPath || '')";if(e.errorPath!='""'){r+=" + "+e.errorPath}var w=o?"data"+(o-1||""):"parentData",x=o?e.dataPathArr[o]:"parentDataProperty";r+=" , "+w+" , "+x+", rootData) ";var k=r;r=m.pop();if(f){if(!e.async)throw new Error("async schema referenced by sync schema");if(c){r+=" var "+l+"; "}r+=" try { await "+k+"; ";if(c){r+=" "+l+" = true; "}r+=" } catch (e) { if (!(e instanceof ValidationError)) throw e; if (vErrors === null) vErrors = e.errors; else vErrors = vErrors.concat(e.errors); errors = vErrors.length; ";if(c){r+=" "+l+" = false; "}r+=" } ";if(c){r+=" if ("+l+") { "}}else{r+=" if (!"+k+") { if (vErrors === null) vErrors = "+p+".errors; else vErrors = vErrors.concat("+p+".errors); errors = vErrors.length; } ";if(c){r+=" else { "}}}return r}},9769:function(e,t,n){"use strict";n.r(t);function indent(e,t){return e.split("\n").map(e=>" ".repeat(t)+e).join("\n")}t["default"]=indent},9771:function(e,t,n){"use strict";var r=n(7409);var i=r.method;e.exports=r.extend({path:"bitcoin/receivers",includeBasic:["create","list","retrieve","update","setMetadata","getMetadata"],listTransactions:i({method:"GET",path:"/{receiverId}/transactions",urlParams:["receiverId"]})})},9775:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});function getDeploymentDownscalePresets(e){return Object.keys(e.scale).reduce((e,t)=>Object.assign(e,{[t]:{min:0,max:1}}),{})}t.default=getDeploymentDownscalePresets},9779:function(e,t,n){"use strict";const r=n(9544);const i=n(9159);const o=n(4968);const a=n(8342);const s=n(2688);const c=n(9059);const u=Symbol("text");const l=Symbol("prefixText");class Ora{constructor(e){if(typeof e==="string"){e={text:e}}this.options=Object.assign({text:"",color:"cyan",stream:process.stderr},e);this.spinner=this.options.spinner;this.color=this.options.color;this.hideCursor=this.options.hideCursor!==false;this.interval=this.options.interval||this.spinner.interval||100;this.stream=this.options.stream;this.id=null;this.isEnabled=typeof this.options.isEnabled==="boolean"?this.options.isEnabled:this.stream&&this.stream.isTTY&&!process.env.CI;this.text=this.options.text;this.prefixText=this.options.prefixText;this.linesToClear=0;this.indent=this.options.indent}get indent(){return this._indent}set indent(e=0){if(!(e>=0&&Number.isInteger(e))){throw new Error("The `indent` option must be an integer from 0 and up")}this._indent=e}get spinner(){return this._spinner}set spinner(e){this.frameIndex=0;if(typeof e==="object"){if(e.frames===undefined){throw new Error("The given spinner must have a `frames` property")}this._spinner=e}else if(process.platform==="win32"){this._spinner=o.line}else if(e===undefined){this._spinner=o.dots}else if(o[e]){this._spinner=o[e]}else{throw new Error(`There is no built-in spinner named '${e}'. See https://github.com/sindresorhus/cli-spinners/blob/master/spinners.json for a full list.`)}}get text(){return this[u]}get prefixText(){return this[l]}get isSpinning(){return this.id!==null}updateLineCount(){const e=this.stream.columns||80;const t=typeof this[l]==="string"?this[l]+"-":"";this.lineCount=s(t+"--"+this[u]).split("\n").reduce((t,n)=>{return t+Math.max(1,Math.ceil(c(n)/e))},0)}set text(e){this[u]=e;this.updateLineCount()}set prefixText(e){this[l]=e;this.updateLineCount()}frame(){const{frames:e}=this.spinner;let t=e[this.frameIndex];if(this.color){t=r[this.color](t)}this.frameIndex=++this.frameIndex%e.length;const n=typeof this.prefixText==="string"?this.prefixText+" ":"";const i=typeof this.text==="string"?" "+this.text:"";return n+t+i}clear(){if(!this.isEnabled||!this.stream.isTTY){return this}for(let e=0;e<this.linesToClear;e++){if(e>0){this.stream.moveCursor(0,-1)}this.stream.clearLine();this.stream.cursorTo(this.indent)}this.linesToClear=0;return this}render(){this.clear();this.stream.write(this.frame());this.linesToClear=this.lineCount;return this}start(e){if(e){this.text=e}if(!this.isEnabled){this.stream.write(`- ${this.text}\n`);return this}if(this.isSpinning){return this}if(this.hideCursor){i.hide(this.stream)}this.render();this.id=setInterval(this.render.bind(this),this.interval);return this}stop(){if(!this.isEnabled){return this}clearInterval(this.id);this.id=null;this.frameIndex=0;this.clear();if(this.hideCursor){i.show(this.stream)}return this}succeed(e){return this.stopAndPersist({symbol:a.success,text:e})}fail(e){return this.stopAndPersist({symbol:a.error,text:e})}warn(e){return this.stopAndPersist({symbol:a.warning,text:e})}info(e){return this.stopAndPersist({symbol:a.info,text:e})}stopAndPersist(e={}){const t=e.prefixText||this.prefixText;const n=typeof t==="string"?t+" ":"";const r=e.text||this.text;const i=typeof r==="string"?" "+r:"";this.stop();this.stream.write(`${n}${e.symbol||" "}${i}\n`);return this}}const f=function(e){return new Ora(e)};e.exports=f;e.exports.default=f;e.exports.promise=((e,t)=>{if(typeof e.then!=="function"){throw new TypeError("Parameter `action` must be a Promise")}const n=new Ora(t);n.start();e.then(()=>{n.succeed()},()=>{n.fail()});return n})},9789:function(e,t,n){"use strict";var r=n(3466).Store;var i=n(6708).permuteDomain;var o=n(2459).pathMatch;var a=n(649);function MemoryCookieStore(){r.call(this);this.idx={}}a.inherits(MemoryCookieStore,r);t.MemoryCookieStore=MemoryCookieStore;MemoryCookieStore.prototype.idx=null;MemoryCookieStore.prototype.synchronous=true;MemoryCookieStore.prototype.inspect=function(){return"{ idx: "+a.inspect(this.idx,false,2)+" }"};if(a.inspect.custom){MemoryCookieStore.prototype[a.inspect.custom]=MemoryCookieStore.prototype.inspect}MemoryCookieStore.prototype.findCookie=function(e,t,n,r){if(!this.idx[e]){return r(null,undefined)}if(!this.idx[e][t]){return r(null,undefined)}return r(null,this.idx[e][t][n]||null)};MemoryCookieStore.prototype.findCookies=function(e,t,n){var r=[];if(!e){return n(null,[])}var a;if(!t){a=function matchAll(e){for(var t in e){var n=e[t];for(var i in n){r.push(n[i])}}}}else{a=function matchRFC(e){Object.keys(e).forEach(function(n){if(o(t,n)){var i=e[n];for(var a in i){r.push(i[a])}}})}}var s=i(e)||[e];var c=this.idx;s.forEach(function(e){var t=c[e];if(!t){return}a(t)});n(null,r)};MemoryCookieStore.prototype.putCookie=function(e,t){if(!this.idx[e.domain]){this.idx[e.domain]={}}if(!this.idx[e.domain][e.path]){this.idx[e.domain][e.path]={}}this.idx[e.domain][e.path][e.key]=e;t(null)};MemoryCookieStore.prototype.updateCookie=function(e,t,n){this.putCookie(t,n)};MemoryCookieStore.prototype.removeCookie=function(e,t,n,r){if(this.idx[e]&&this.idx[e][t]&&this.idx[e][t][n]){delete this.idx[e][t][n]}r(null)};MemoryCookieStore.prototype.removeCookies=function(e,t,n){if(this.idx[e]){if(t){delete this.idx[e][t]}else{delete this.idx[e]}}return n(null)};MemoryCookieStore.prototype.getAllCookies=function(e){var t=[];var n=this.idx;var r=Object.keys(n);r.forEach(function(e){var r=Object.keys(n[e]);r.forEach(function(r){var i=Object.keys(n[e][r]);i.forEach(function(i){if(i!==null){t.push(n[e][r][i])}})})});t.sort(function(e,t){return(e.creationIndex||0)-(t.creationIndex||0)});e(null,t)}},9799:function(e,t,n){"use strict";var r=n(5119);e.exports=function defineProperty(e,t,n){if(typeof e!=="object"&&typeof e!=="function"){throw new TypeError("expected an object or function.")}if(typeof t!=="string"){throw new TypeError("expected `prop` to be a string.")}if(r(n)&&("set"in n||"get"in n)){return Object.defineProperty(e,t,n)}return Object.defineProperty(e,t,{configurable:true,enumerable:false,writable:true,value:n})}},9823:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:true});t.httpStatusDescriptionMap=new Map([[400,"BAD_REQUEST"],[402,"PAYMENT_REQUIRED"],[403,"FORBIDDEN"],[404,"NOT_FOUND"],[405,"NOT_ALLOWED"],[410,"GONE"],[413,"PAYLOAD_TOO_LARGE"],[429,"RATE_LIMITED"],[500,"INTERNAL_SERVER_ERROR"],[501,"NOT_IMPLEMENTED"],[502,"BAD_GATEWAY"],[503,"SERVICE_UNAVAILABLE"],[504,"GATEWAY_TIMEOUT"],[508,"INFINITE_LOOP"]]);t.errorMessageMap=new Map([[400,"Bad request"],[402,"Payment required"],[403,"You don't have the required permissions"],[404,"The page could not be found"],[405,"Method not allowed"],[410,"The deployment has been removed"],[413,"Request Entity Too Large"],[429,"Rate limited"],[500,"A server error has occurred"],[501,"Not implemented"],[503,"The deployment is currently unavailable"],[504,"An error occurred with your deployment"],[508,"Infinite loop detected"]]);const n={title:"An error occurred with this application.",subtitle:"This is an error with the application itself, not the platform.",app_error:true};const r={title:"An internal error occurred with ZEIT Now.",subtitle:"This is an error with the platform itself, not the application.",app_error:false};const i={title:"The page could not be found.",subtitle:"The page could not be found in the application.",app_error:true};function generateErrorMessage(e,r){if(e===404){return i}if(e===502){return n}return{title:t.errorMessageMap.get(e)||"Error occurred",app_error:false}}t.generateErrorMessage=generateErrorMessage;function generateHttpStatusDescription(e){return t.httpStatusDescriptionMap.get(e)||"UNKNOWN_ERROR"}t.generateHttpStatusDescription=generateHttpStatusDescription},9841:function(e,t){Object.defineProperty(t,"__esModule",{value:true});t.setPrototypeOf=Object.setPrototypeOf||({__proto__:[]}instanceof Array?setProtoOf:mixinProperties);function setProtoOf(e,t){e.__proto__=t;return e}function mixinProperties(e,t){for(var n in t){if(!e.hasOwnProperty(n)){e[n]=t[n]}}return e}},9844:function(e,t,n){var r=n(649),i=n(6521);function binarySearch(e,t){function find(e,t,n,r){if(r<n)return-1;var i=Math.floor(n+r>>>1);if(t>e[i])return find(e,t,i+1,r);if(t<e[i])return find(e,t,n,i-1);return i}return find(e,t,0,e.length-1)}function IteratedChar(){this.charValue=0;this.index=0;this.nextIndex=0;this.error=false;this.done=false;this.reset=function(){this.charValue=0;this.index=-1;this.nextIndex=0;this.error=false;this.done=false};this.nextByte=function(e){if(this.nextIndex>=e.fRawLength){this.done=true;return-1}var t=e.fRawInput[this.nextIndex++]&255;return t}}function mbcs(){}mbcs.prototype.match=function(e){var t=0,n=0,r=0,o=0,a=0,s=0;var c=new IteratedChar;e:{for(c.reset();this.nextChar(c,e);){a++;if(c.error){o++}else{var u=c.charValue&4294967295;if(u<=255){t++}else{n++;if(this.commonChars!=null){if(binarySearch(this.commonChars,u)>=0){r++}}}}if(o>=2&&o*5>=n){break e}}if(n<=10&&o==0){if(n==0&&a<10){s=0}else{s=10}break e}if(n<20*o){s=0;break e}if(this.commonChars==null){s=30+n-20*o;if(s>100){s=100}}else{var l=Math.log(parseFloat(n)/4);var f=90/l;s=Math.floor(Math.log(r+1)*f+10);s=Math.min(s,100)}}return s==0?null:new i(e,this,s)};mbcs.prototype.nextChar=function(e,t){};e.exports.sjis=function(){this.name=function(){return"Shift-JIS"};this.language=function(){return"ja"};this.commonChars=[33088,33089,33090,33093,33115,33129,33130,33141,33142,33440,33442,33444,33449,33450,33451,33453,33455,33457,33459,33461,33463,33469,33470,33473,33476,33477,33478,33480,33481,33484,33485,33500,33504,33511,33512,33513,33514,33520,33521,33601,33603,33614,33615,33624,33630,33634,33639,33653,33654,33673,33674,33675,33677,33683,36502,37882,38314];this.nextChar=function(e,t){e.index=e.nextIndex;e.error=false;var n;n=e.charValue=e.nextByte(t);if(n<0)return false;if(n<=127||n>160&&n<=223)return true;var r=e.nextByte(t);if(r<0)return false;e.charValue=n<<8|r;if(!(r>=64&&r<=127||r>=128&&r<=255)){e.error=true}return true}};r.inherits(e.exports.sjis,mbcs);e.exports.big5=function(){this.name=function(){return"Big5"};this.language=function(){return"zh"};this.commonChars=[41280,41281,41282,41283,41287,41289,41333,41334,42048,42054,42055,42056,42065,42068,42071,42084,42090,42092,42103,42147,42148,42151,42177,42190,42193,42207,42216,42237,42304,42312,42328,42345,42445,42471,42583,42593,42594,42600,42608,42664,42675,42681,42707,42715,42726,42738,42816,42833,42841,42970,43171,43173,43181,43217,43219,43236,43260,43456,43474,43507,43627,43706,43710,43724,43772,44103,44111,44208,44242,44377,44745,45024,45290,45423,45747,45764,45935,46156,46158,46412,46501,46525,46544,46552,46705,47085,47207,47428,47832,47940,48033,48593,49860,50105,50240,50271];this.nextChar=function(e,t){e.index=e.nextIndex;e.error=false;var n=e.charValue=e.nextByte(t);if(n<0)return false;if(n<=127||n==255)return true;var r=e.nextByte(t);if(r<0)return false;e.charValue=e.charValue<<8|r;if(r<64||r==127||r==255)e.error=true;return true}};r.inherits(e.exports.big5,mbcs);function eucNextChar(e,t){e.index=e.nextIndex;e.error=false;var n=0;var r=0;var i=0;e:{n=e.charValue=e.nextByte(t);if(n<0){e.done=true;break e}if(n<=141){break e}r=e.nextByte(t);e.charValue=e.charValue<<8|r;if(n>=161&&n<=254){if(r<161){e.error=true}break e}if(n==142){if(r<161){e.error=true}break e}if(n==143){i=e.nextByte(t);e.charValue=e.charValue<<8|i;if(i<161){e.error=true}}}return e.done==false}e.exports.euc_jp=function(){this.name=function(){return"EUC-JP"};this.language=function(){return"ja"};this.commonChars=[41377,41378,41379,41382,41404,41418,41419,41430,41431,42146,42148,42150,42152,42154,42155,42156,42157,42159,42161,42163,42165,42167,42169,42171,42173,42175,42176,42177,42179,42180,42182,42183,42184,42185,42186,42187,42190,42191,42192,42206,42207,42209,42210,42212,42216,42217,42218,42219,42220,42223,42226,42227,42402,42403,42404,42406,42407,42410,42413,42415,42416,42419,42421,42423,42424,42425,42431,42435,42438,42439,42440,42441,42443,42448,42453,42454,42455,42462,42464,42465,42469,42473,42474,42475,42476,42477,42483,47273,47572,47854,48072,48880,49079,50410,50940,51133,51896,51955,52188,52689];this.nextChar=eucNextChar};r.inherits(e.exports.euc_jp,mbcs);e.exports.euc_kr=function(){this.name=function(){return"EUC-KR"};this.language=function(){return"ko"};this.commonChars=[45217,45235,45253,45261,45268,45286,45293,45304,45306,45308,45496,45497,45511,45527,45538,45994,46011,46274,46287,46297,46315,46501,46517,46527,46535,46569,46835,47023,47042,47054,47270,47278,47286,47288,47291,47337,47531,47534,47564,47566,47613,47800,47822,47824,47857,48103,48115,48125,48301,48314,48338,48374,48570,48576,48579,48581,48838,48840,48863,48878,48888,48890,49057,49065,49088,49124,49131,49132,49144,49319,49327,49336,49338,49339,49341,49351,49356,49358,49359,49366,49370,49381,49403,49404,49572,49574,49590,49622,49631,49654,49656,50337,50637,50862,51151,51153,51154,51160,51173,51373];this.nextChar=eucNextChar};r.inherits(e.exports.euc_kr,mbcs);e.exports.gb_18030=function(){this.name=function(){return"GB18030"};this.language=function(){return"zh"};this.nextChar=function(e,t){e.index=e.nextIndex;e.error=false;var n=0;var r=0;var i=0;var o=0;e:{n=e.charValue=e.nextByte(t);if(n<0){e.done=true;break e}if(n<=128){break e}r=e.nextByte(t);e.charValue=e.charValue<<8|r;if(n>=129&&n<=254){if(r>=64&&r<=126||r>=80&&r<=254){break e}if(r>=48&&r<=57){i=e.nextByte(t);if(i>=129&&i<=254){o=e.nextByte(t);if(o>=48&&o<=57){e.charValue=e.charValue<<16|i<<8|o;break e}}}e.error=true;break e}}return e.done==false};this.commonChars=[41377,41378,41379,41380,41392,41393,41457,41459,41889,41900,41914,45480,45496,45502,45755,46025,46070,46323,46525,46532,46563,46767,46804,46816,47010,47016,47037,47062,47069,47284,47327,47350,47531,47561,47576,47610,47613,47821,48039,48086,48097,48122,48316,48347,48382,48588,48845,48861,49076,49094,49097,49332,49389,49611,49883,50119,50396,50410,50636,50935,51192,51371,51403,51413,51431,51663,51706,51889,51893,51911,51920,51926,51957,51965,52460,52728,52906,52932,52946,52965,53173,53186,53206,53442,53445,53456,53460,53671,53930,53938,53941,53947,53972,54211,54224,54269,54466,54490,54754,54992]};r.inherits(e.exports.gb_18030,mbcs)},9863:function(e,t,n){"use strict";e.exports=n(7409).extend({path:"invoiceitems",includeBasic:["create","list","retrieve","update","del","setMetadata","getMetadata"]})},9869:function(e,t,n){var r=n(4774);var i=n(662);var o=n(5897);var a=n(3868);var s=n(7961);var c=n(5780);var u=function isFile(e){try{var t=i.statSync(e)}catch(e){if(e&&(e.code==="ENOENT"||e.code==="ENOTDIR"))return false;throw e}return t.isFile()||t.isFIFO()};var l=function isDirectory(e){try{var t=i.statSync(e)}catch(e){if(e&&(e.code==="ENOENT"||e.code==="ENOTDIR"))return false;throw e}return t.isDirectory()};var f=function maybeUnwrapSymlink(e,t){if(t&&t.preserveSymlinks===false){try{return i.realpathSync(e)}catch(e){if(e.code!=="ENOENT"){throw e}}}return e};e.exports=function(e,t){if(typeof e!=="string"){throw new TypeError("Path must be a string.")}var n=c(e,t);var p=n.isFile||u;var d=n.readFileSync||i.readFileSync;var h=n.isDirectory||l;var m=n.extensions||[".js"];var v=n.basedir||o.dirname(a());var g=n.filename||v;n.paths=n.paths||[];var y=f(o.resolve(v),n);if(/^(?:\.\.?(?:\/|$)|\/|([A-Za-z]:)?[\/\\])/.test(e)){var b=o.resolve(y,e);if(e===".."||e.slice(-1)==="/")b+="/";var w=loadAsFileSync(b)||loadAsDirectorySync(b);if(w)return f(w,n)}else if(r[e]){return e}else{var x=loadNodeModulesSync(e,y);if(x)return f(x,n)}if(r[e])return e;var k=new Error("Cannot find module '"+e+"' from '"+g+"'");k.code="MODULE_NOT_FOUND";throw k;function loadAsFileSync(e){var t=loadpkg(o.dirname(e));if(t&&t.dir&&t.pkg&&n.pathFilter){var r=o.relative(t.dir,e);var i=n.pathFilter(t.pkg,e,r);if(i){e=o.resolve(t.dir,i)}}if(p(e)){return e}for(var a=0;a<m.length;a++){var s=e+m[a];if(p(s)){return s}}}function loadpkg(e){if(e===""||e==="/")return;if(process.platform==="win32"&&/^\w:[\/\\]*$/.test(e)){return}if(/[\/\\]node_modules[\/\\]*$/.test(e))return;var t=o.join(e,"package.json");if(!p(t)){return loadpkg(o.dirname(e))}var r=d(t);try{var i=JSON.parse(r)}catch(e){}if(i&&n.packageFilter){i=n.packageFilter(i,e)}return{pkg:i,dir:e}}function loadAsDirectorySync(e){var t=o.join(e,"/package.json");if(p(t)){try{var r=d(t,"UTF8");var i=JSON.parse(r)}catch(e){}if(n.packageFilter){i=n.packageFilter(i,e)}if(i.main){if(typeof i.main!=="string"){var a=new TypeError("package “"+i.name+"” `main` must be a string");a.code="INVALID_PACKAGE_MAIN";throw a}if(i.main==="."||i.main==="./"){i.main="index"}try{var s=loadAsFileSync(o.resolve(e,i.main));if(s)return s;var c=loadAsDirectorySync(o.resolve(e,i.main));if(c)return c}catch(e){}}}return loadAsFileSync(o.join(e,"/index"))}function loadNodeModulesSync(e,t){var r=s(t,n,e);for(var i=0;i<r.length;i++){var a=r[i];if(h(a)){var c=loadAsFileSync(o.join(a,"/",e));if(c)return c;var u=loadAsDirectorySync(o.join(a,"/",e));if(u)return u}}}}},9871:function(e,t,n){"use strict";function _typeof(e){if(typeof Symbol==="function"&&typeof Symbol.iterator==="symbol"){_typeof=function _typeof(e){return typeof e}}else{_typeof=function _typeof(e){return e&&typeof Symbol==="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e}}return _typeof(e)}t.log=log;t.formatArgs=formatArgs;t.save=save;t.load=load;t.useColors=useColors;t.storage=localstorage();t.colors=["#0000CC","#0000FF","#0033CC","#0033FF","#0066CC","#0066FF","#0099CC","#0099FF","#00CC00","#00CC33","#00CC66","#00CC99","#00CCCC","#00CCFF","#3300CC","#3300FF","#3333CC","#3333FF","#3366CC","#3366FF","#3399CC","#3399FF","#33CC00","#33CC33","#33CC66","#33CC99","#33CCCC","#33CCFF","#6600CC","#6600FF","#6633CC","#6633FF","#66CC00","#66CC33","#9900CC","#9900FF","#9933CC","#9933FF","#99CC00","#99CC33","#CC0000","#CC0033","#CC0066","#CC0099","#CC00CC","#CC00FF","#CC3300","#CC3333","#CC3366","#CC3399","#CC33CC","#CC33FF","#CC6600","#CC6633","#CC9900","#CC9933","#CCCC00","#CCCC33","#FF0000","#FF0033","#FF0066","#FF0099","#FF00CC","#FF00FF","#FF3300","#FF3333","#FF3366","#FF3399","#FF33CC","#FF33FF","#FF6600","#FF6633","#FF9900","#FF9933","#FFCC00","#FFCC33"];function useColors(){if(typeof window!=="undefined"&&window.process&&(window.process.type==="renderer"||window.process.__nwjs)){return true}if(typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)){return false}return typeof document!=="undefined"&&document.documentElement&&document.documentElement.style&&document.documentElement.style.WebkitAppearance||typeof window!=="undefined"&&window.console&&(window.console.firebug||window.console.exception&&window.console.table)||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)&&parseInt(RegExp.$1,10)>=31||typeof navigator!=="undefined"&&navigator.userAgent&&navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/)}function formatArgs(t){t[0]=(this.useColors?"%c":"")+this.namespace+(this.useColors?" %c":" ")+t[0]+(this.useColors?"%c ":" ")+"+"+e.exports.humanize(this.diff);if(!this.useColors){return}var n="color: "+this.color;t.splice(1,0,n,"color: inherit");var r=0;var i=0;t[0].replace(/%[a-zA-Z%]/g,function(e){if(e==="%%"){return}r++;if(e==="%c"){i=r}});t.splice(i,0,n)}function log(){var e;return(typeof console==="undefined"?"undefined":_typeof(console))==="object"&&console.log&&(e=console).log.apply(e,arguments)}function save(e){try{if(e){t.storage.setItem("debug",e)}else{t.storage.removeItem("debug")}}catch(e){}}function load(){var e;try{e=t.storage.getItem("debug")}catch(e){}if(!e&&typeof process!=="undefined"&&"env"in process){e=process.env.DEBUG}return e}function localstorage(){try{return localStorage}catch(e){}}e.exports=n(8965)(t);var r=e.exports.formatters;r.j=function(e){try{return JSON.stringify(e)}catch(e){return"[UnexpectedJSONParseError]: "+e.message}}},9874:function(e,t,n){"use strict";var r=n(5325);function isObjectObject(e){return r(e)===true&&Object.prototype.toString.call(e)==="[object Object]"}e.exports=function isPlainObject(e){var t,n;if(isObjectObject(e)===false)return false;t=e.constructor;if(typeof t!=="function")return false;n=t.prototype;if(isObjectObject(n)===false)return false;if(n.hasOwnProperty("isPrototypeOf")===false){return false}return true}},9884:function(e,t){t=e.exports=ProgressBar;function ProgressBar(e,t){this.stream=t.stream||process.stderr;if(typeof t=="number"){var n=t;t={};t.total=n}else{t=t||{};if("string"!=typeof e)throw new Error("format required");if("number"!=typeof t.total)throw new Error("total required")}this.fmt=e;this.curr=t.curr||0;this.total=t.total;this.width=t.width||this.total;this.clear=t.clear;this.chars={complete:t.complete||"=",incomplete:t.incomplete||"-",head:t.head||(t.complete||"=")};this.renderThrottle=t.renderThrottle!==0?t.renderThrottle||16:0;this.lastRender=-Infinity;this.callback=t.callback||function(){};this.tokens={};this.lastDraw=""}ProgressBar.prototype.tick=function(e,t){if(e!==0)e=e||1;if("object"==typeof e)t=e,e=1;if(t)this.tokens=t;if(0==this.curr)this.start=new Date;this.curr+=e;this.render();if(this.curr>=this.total){this.render(undefined,true);this.complete=true;this.terminate();this.callback(this);return}};ProgressBar.prototype.render=function(e,t){t=t!==undefined?t:false;if(e)this.tokens=e;if(!this.stream.isTTY)return;var n=Date.now();var r=n-this.lastRender;if(!t&&r<this.renderThrottle){return}else{this.lastRender=n}var i=this.curr/this.total;i=Math.min(Math.max(i,0),1);var o=Math.floor(i*100);var a,s,c;var u=new Date-this.start;var l=o==100?0:u*(this.total/this.curr-1);var f=this.curr/(u/1e3);var p=this.fmt.replace(":current",this.curr).replace(":total",this.total).replace(":elapsed",isNaN(u)?"0.0":(u/1e3).toFixed(1)).replace(":eta",isNaN(l)||!isFinite(l)?"0.0":(l/1e3).toFixed(1)).replace(":percent",o.toFixed(0)+"%").replace(":rate",Math.round(f));var d=Math.max(0,this.stream.columns-p.replace(":bar","").length);if(d&&process.platform==="win32"){d=d-1}var h=Math.min(this.width,d);c=Math.round(h*i);s=Array(Math.max(0,c+1)).join(this.chars.complete);a=Array(Math.max(0,h-c+1)).join(this.chars.incomplete);if(c>0)s=s.slice(0,-1)+this.chars.head;p=p.replace(":bar",s+a);if(this.tokens)for(var m in this.tokens)p=p.replace(":"+m,this.tokens[m]);if(this.lastDraw!==p){this.stream.cursorTo(0);this.stream.write(p);this.stream.clearLine(1);this.lastDraw=p}};ProgressBar.prototype.update=function(e,t){var n=Math.floor(e*this.total);var r=n-this.curr;this.tick(r,t)};ProgressBar.prototype.interrupt=function(e){this.stream.clearLine();this.stream.cursorTo(0);this.stream.write(e);this.stream.write("\n");this.stream.write(this.lastDraw)};ProgressBar.prototype.terminate=function(){if(this.clear){if(this.stream.clearLine){this.stream.clearLine();this.stream.cursorTo(0)}}else{this.stream.write("\n")}}},9885:function(e){"use strict";e.exports=function(e){if(typeof Buffer.allocUnsafe==="function"){try{return Buffer.allocUnsafe(e)}catch(t){return new Buffer(e)}}return new Buffer(e)}},9891:function(e,t,n){"use strict";var r=n(5325);function isObjectObject(e){return r(e)===true&&Object.prototype.toString.call(e)==="[object Object]"}e.exports=function isPlainObject(e){var t,n;if(isObjectObject(e)===false)return false;t=e.constructor;if(typeof t!=="function")return false;n=t.prototype;if(isObjectObject(n)===false)return false;if(n.hasOwnProperty("isPrototypeOf")===false){return false}return true}},9900:function(e,t){"use strict";function noop(){}t.reflector=function(e){return e.then(noop,noop)}},9907:function(e){(function(){function error(e){var t='<!DOCTYPE html><head> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/> <style> body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; cursor: default; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; } main, aside, section { display: flex; justify-content: center; align-items: center; flex-direction: column; } main { height: 100%; } aside { background: #000; flex-shrink: 1; padding: 30px 20px; } aside p { margin: 0; color: #999999; font-size: 14px; line-height: 24px; } aside a { color: #fff; text-decoration: none; } section span { font-size: 24px; font-weight: 500; display: block; border-bottom: 1px solid #EAEAEA; text-align: center; padding-bottom: 20px; width: 100px; } section p { font-size: 14px; font-weight: 400; } section span + p { margin: 20px 0 0 0; } @media (min-width: 768px) { section { height: 40px; flex-direction: row; } section span, section p { height: 100%; line-height: 40px; } section span { border-bottom: 0; border-right: 1px solid #EAEAEA; padding: 0 20px 0 0; width: auto; } section span + p { margin: 0; padding-left: 20px; } aside { padding: 50px 0; } aside p { max-width: 520px; text-align: center; } } </style></head><body> <main> <section> <span>'+e.statusCode+"</span> <p>"+e.message+"</p> </section> </main></body>";return t}var t=error,n=function(e){var t={"&":"&#38;","<":"&#60;",">":"&#62;",'"':"&#34;","'":"&#39;","/":"&#47;"},n=e?/[&<>"'\/]/g:/&(?!#?\w+;)|<|>|"|'|\//g;return function(e){return e?e.toString().replace(n,function(e){return t[e]||e}):""}}();if(true&&e.exports)e.exports=t;else if(typeof define==="function")define(function(){return t});else{window.render=window.render||{};window.render["error"]=t}})()},9913:function(e,t,n){"use strict";const r=n(2255).fromCallback;const i=n(2617);const o=n(5897);const a=n(1908);const s=n(8975).pathExists;function outputFile(e,t,n,r){if(typeof n==="function"){r=n;n="utf8"}const c=o.dirname(e);s(c,(o,s)=>{if(o)return r(o);if(s)return i.writeFile(e,t,n,r);a.mkdirs(c,o=>{if(o)return r(o);i.writeFile(e,t,n,r)})})}function outputFileSync(e,...t){const n=o.dirname(e);if(i.existsSync(n)){return i.writeFileSync(e,...t)}a.mkdirsSync(n);i.writeFileSync(e,...t)}e.exports={outputFile:r(outputFile),outputFileSync:outputFileSync}},9918:function(e){e.exports={VISA:"Visa",MASTERCARD:"MasterCard",AMERICANEXPRESS:"American Express",DINERSCLUB:"Diners Club",DISCOVER:"Discover",JCB:"JCB"}},9930:function(e,t,n){var r=n(5479).SourceMapConsumer;var i=n(5897);var o;try{o=n(662);if(!o.existsSync||!o.readFileSync){o=null}}catch(e){}var a=false;var s=false;var c=false;var u="auto";var l={};var f={};var p=/^data:application\/json[^,]+base64,/;var d=[];var h=[];function isInBrowser(){if(u==="browser")return true;if(u==="node")return false;return typeof window!=="undefined"&&typeof XMLHttpRequest==="function"&&!(window.require&&window.module&&window.process&&window.process.type==="renderer")}function hasGlobalProcessEventEmitter(){return typeof process==="object"&&process!==null&&typeof process.on==="function"}function handlerExec(e){return function(t){for(var n=0;n<e.length;n++){var r=e[n](t);if(r){return r}}return null}}var m=handlerExec(d);d.push(function(e){e=e.trim();if(/^file:/.test(e)){e=e.replace(/file:\/\/\/(\w:)?/,function(e,t){return t?"":"/"})}if(e in l){return l[e]}var t=null;if(!o){var n=new XMLHttpRequest;n.open("GET",e,false);n.send(null);var t=null;if(n.readyState===4&&n.status===200){t=n.responseText}}else if(o.existsSync(e)){try{t=o.readFileSync(e,"utf8")}catch(e){t=""}}return l[e]=t});function supportRelativeURL(e,t){if(!e)return t;var n=i.dirname(e);var r=/^\w+:\/\/[^\/]*/.exec(n);var o=r?r[0]:"";var a=n.slice(o.length);if(o&&/^\/\w\:/.test(a)){o+="/";return o+i.resolve(n.slice(o.length),t).replace(/\\/g,"/")}return o+i.resolve(n.slice(o.length),t)}function retrieveSourceMapURL(e){var t;if(isInBrowser()){try{var n=new XMLHttpRequest;n.open("GET",e,false);n.send(null);t=n.readyState===4?n.responseText:null;var r=n.getResponseHeader("SourceMap")||n.getResponseHeader("X-SourceMap");if(r){return r}}catch(e){}}t=m(e);var i=/(?:\/\/[@#][ \t]+sourceMappingURL=([^\s'"]+?)[ \t]*$)|(?:\/\*[@#][ \t]+sourceMappingURL=([^\*]+?)[ \t]*(?:\*\/)[ \t]*$)/gm;var o,a;while(a=i.exec(t))o=a;if(!o)return null;return o[1]}var v=handlerExec(h);h.push(function(e){var t=retrieveSourceMapURL(e);if(!t)return null;var n;if(p.test(t)){var r=t.slice(t.indexOf(",")+1);n=new Buffer(r,"base64").toString();t=e}else{t=supportRelativeURL(e,t);n=m(t)}if(!n){return null}return{url:t,map:n}});function mapSourcePosition(e){var t=f[e.source];if(!t){var n=v(e.source);if(n){t=f[e.source]={url:n.url,map:new r(n.map)};if(t.map.sourcesContent){t.map.sources.forEach(function(e,n){var r=t.map.sourcesContent[n];if(r){var i=supportRelativeURL(t.url,e);l[i]=r}})}}else{t=f[e.source]={url:null,map:null}}}if(t&&t.map){var i=t.map.originalPositionFor(e);if(i.source!==null){i.source=supportRelativeURL(t.url,i.source);return i}}return e}function mapEvalOrigin(e){var t=/^eval at ([^(]+) \((.+):(\d+):(\d+)\)$/.exec(e);if(t){var n=mapSourcePosition({source:t[2],line:+t[3],column:t[4]-1});return"eval at "+t[1]+" ("+n.source+":"+n.line+":"+(n.column+1)+")"}t=/^eval at ([^(]+) \((.+)\)$/.exec(e);if(t){return"eval at "+t[1]+" ("+mapEvalOrigin(t[2])+")"}return e}function CallSiteToString(){var e;var t="";if(this.isNative()){t="native"}else{e=this.getScriptNameOrSourceURL();if(!e&&this.isEval()){t=this.getEvalOrigin();t+=", "}if(e){t+=e}else{t+="<anonymous>"}var n=this.getLineNumber();if(n!=null){t+=":"+n;var r=this.getColumnNumber();if(r){t+=":"+r}}}var i="";var o=this.getFunctionName();var a=true;var s=this.isConstructor();var c=!(this.isToplevel()||s);if(c){var u=this.getTypeName();if(u==="[object Object]"){u="null"}var l=this.getMethodName();if(o){if(u&&o.indexOf(u)!=0){i+=u+"."}i+=o;if(l&&o.indexOf("."+l)!=o.length-l.length-1){i+=" [as "+l+"]"}}else{i+=u+"."+(l||"<anonymous>")}}else if(s){i+="new "+(o||"<anonymous>")}else if(o){i+=o}else{i+=t;a=false}if(a){i+=" ("+t+")"}return i}function cloneCallSite(e){var t={};Object.getOwnPropertyNames(Object.getPrototypeOf(e)).forEach(function(n){t[n]=/^(?:is|get)/.test(n)?function(){return e[n].call(e)}:e[n]});t.toString=CallSiteToString;return t}function wrapCallSite(e){if(e.isNative()){return e}var t=e.getFileName()||e.getScriptNameOrSourceURL();if(t){var n=e.getFunctionName();var r=e.getLineNumber();var i=e.getColumnNumber()-1;var o=62;if(r===1&&i>o&&!isInBrowser()&&!e.isEval()){i-=o}var a=mapSourcePosition({source:t,line:r,column:i});e=cloneCallSite(e);e.getFunctionName=function(){return a.name||n};e.getFileName=function(){return a.source};e.getLineNumber=function(){return a.line};e.getColumnNumber=function(){return a.column+1};e.getScriptNameOrSourceURL=function(){return a.source};return e}var s=e.isEval()&&e.getEvalOrigin();if(s){s=mapEvalOrigin(s);e=cloneCallSite(e);e.getEvalOrigin=function(){return s};return e}return e}function prepareStackTrace(e,t){if(c){l={};f={}}return e+t.map(function(e){return"\n at "+wrapCallSite(e)}).join("")}function getErrorSource(e){var t=/\n at [^(]+ \((.*):(\d+):(\d+)\)/.exec(e.stack);if(t){var n=t[1];var r=+t[2];var i=+t[3];var a=l[n];if(!a&&o&&o.existsSync(n)){try{a=o.readFileSync(n,"utf8")}catch(e){a=""}}if(a){var s=a.split(/(?:\r\n|\r|\n)/)[r-1];if(s){return n+":"+r+"\n"+s+"\n"+new Array(i).join(" ")+"^"}}}return null}function printErrorAndExit(e){var t=getErrorSource(e);if(t){console.error();console.error(t)}console.error(e.stack);process.exit(1)}function shimEmitUncaughtException(){var e=process.emit;process.emit=function(t){if(t==="uncaughtException"){var n=arguments[1]&&arguments[1].stack;var r=this.listeners(t).length>0;if(n&&!r){return printErrorAndExit(arguments[1])}}return e.apply(this,arguments)}}t.wrapCallSite=wrapCallSite;t.getErrorSource=getErrorSource;t.mapSourcePosition=mapSourcePosition;t.retrieveSourceMap=v;t.install=function(e){e=e||{};if(e.environment){u=e.environment;if(["node","browser","auto"].indexOf(u)===-1){throw new Error("environment "+u+" was unknown. Available options are {auto, browser, node}")}}if(e.retrieveFile){if(e.overrideRetrieveFile){d.length=0}d.unshift(e.retrieveFile)}if(e.retrieveSourceMap){if(e.overrideRetrieveSourceMap){h.length=0}h.unshift(e.retrieveSourceMap)}if(e.hookRequire&&!isInBrowser()){var t;try{t=n(7786)}catch(e){}var r=t.prototype._compile;if(!r.__sourceMapSupport){t.prototype._compile=function(e,t){l[t]=e;f[t]=undefined;return r.call(this,e,t)};t.prototype._compile.__sourceMapSupport=true}}if(!c){c="emptyCacheBetweenOperations"in e?e.emptyCacheBetweenOperations:false}if(!a){a=true;Error.prepareStackTrace=prepareStackTrace}if(!s){var i="handleUncaughtExceptions"in e?e.handleUncaughtExceptions:true;if(i&&hasGlobalProcessEventEmitter()){s=true;shimEmitUncaughtException()}}}},9950:function(e,t,n){e.exports=n(7762)},9952:function(e){e.exports=function(e,n){var r=[];for(var i=0;i<e.length;i++){var o=n(e[i],i);if(t(o))r.push.apply(r,o);else r.push(o)}return r};var t=Array.isArray||function(e){return Object.prototype.toString.call(e)==="[object Array]"}},9972:function(e,t,n){"use strict";var r=n(8446);var i=n(4794);e.exports=function hasValue(e){if(i(e)){return true}switch(r(e)){case"null":case"boolean":case"function":return true;case"string":case"arguments":return e.length!==0;case"error":return e.message!=="";case"array":var t=e.length;if(t===0){return false}for(var n=0;n<t;n++){if(hasValue(e[n])){return true}}return false;case"file":case"map":case"set":return e.size!==0;case"object":var o=Object.keys(e);if(o.length===0){return false}for(var n=0;n<o.length;n++){var a=o[n];if(hasValue(e[a])){return true}}return false;default:{return false}}}},9975:function(e,t,n){"use strict";var r=this&&this.__awaiter||function(e,t,n,r){return new(n||(n=Promise))(function(i,o){function fulfilled(e){try{step(r.next(e))}catch(e){o(e)}}function rejected(e){try{step(r["throw"](e))}catch(e){o(e)}}function step(e){e.done?i(e.value):new n(function(t){t(e.value)}).then(fulfilled,rejected)}step((r=r.apply(e,t||[])).next())})};var i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)if(Object.hasOwnProperty.call(e,n))t[n]=e[n];t["default"]=e;return t};var o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:true});const a=i(n(8715));const s=o(n(9204));const c=o(n(457));const u=o(n(9655));const l=o(n(7219));const f=o(n(9775));const p=o(n(1889));const d=o(n(5638));const h=o(n(8758));const m=o(n(6479));const v=o(n(586));const g=o(n(5842));const y=/\.now\.sh$/;function assignAlias(e,t,n,i,o,b){return r(this,void 0,void 0,function*(){const r=yield l.default(e,t,i);let w=false;let x=yield p.default(t,o,r,n);if(x instanceof a.DeploymentNotFound){x=null}if(x instanceof Error){return x}if(x!==null&&x.type!=="STATIC"&&n.type!=="STATIC"){if(c.default(x,n)){const r=v.default();const i=yield h.default(e,t,n.uid,x.scale,n.url);if(i instanceof Error){return i}e.log(`Scale rules copied from previous alias ${x.url} ${r()}`);if(!b){const r=yield g.default(e,t,n.uid,x.scale);if(r instanceof a.VerifyScaleTimeout){return r}}}else{e.debug(`Both deployments have the same scaling rules.`)}}if(i.indexOf(".")!==-1&&!y.test(i)){const n=yield m.default(e,t,i,o);if(n instanceof Error){return n}w=d.default(n)}const k=yield s.default(e,t,o,n,i,w);if(k instanceof Error){return k}if(x!==null&&x.type!=="STATIC"){if(yield u.default(e,t,x)){yield h.default(e,t,x.uid,f.default(x),x.url);e.log(`Previous deployment ${x.url} downscaled`)}}return k})}t.default=assignAlias},9987:function(e,t,n){"use strict";var r=n(7409);e.exports=r.extend({path:"accounts/{accountId}/login_links",includeBasic:["create"]})},9995:function(e,t,n){"use strict";var r=n(9335).Buffer;function multipartDataGenerator(e,t,n){var i=(Math.round(Math.random()*1e16)+Math.round(Math.random()*1e16)).toString();n["Content-Type"]="multipart/form-data; boundary="+i;var o=new r(0);function push(e){var t=o;var n=e instanceof r?e:new r(e);o=new r(t.length+n.length+2);t.copy(o);n.copy(o,t.length);o.write("\r\n",o.length-2)}function q(e){return'"'+e.replace(/"|"/g,"%22").replace(/\r\n|\r|\n/g," ")+'"'}for(var a in t){var s=t[a];push("--"+i);if(s.hasOwnProperty("data")){push("Content-Disposition: form-data; name="+q(a)+"; filename="+q(s.name||"blob"));push("Content-Type: "+(s.type||"application/octet-stream"));push("");push(s.data)}else{push("Content-Disposition: form-data; name="+q(a));push("");push(s)}}push("--"+i+"--");return o}e.exports=multipartDataGenerator}},function(e){"use strict";!function(){e.r=function(e){if(typeof Symbol!=="undefined"&&Symbol.toStringTag){Object.defineProperty(e,Symbol.toStringTag,{value:"Module"})}Object.defineProperty(e,"__esModule",{value:true})}}();!function(){e.n=function(t){var n=t&&t.__esModule?function getDefault(){return t["default"]}:function getModuleExports(){return t};e.d(n,"a",n);return n}}();!function(){var t=Object.prototype.hasOwnProperty;e.d=function(e,n,r){if(!t.call(e,n)){Object.defineProperty(e,n,{enumerable:true,get:r})}}}();!function(){e.nmd=function(e){e.paths=[];if(!e.children)e.children=[];Object.defineProperty(e,"loaded",{enumerable:true,get:function(){return e.l}});Object.defineProperty(e,"id",{enumerable:true,get:function(){return e.i}});return e}}();!function(){e.t=function(t,n){if(n&1)t=this(t);if(n&8)return t;if(n&4&&typeof t==="object"&&t&&t.__esModule)return t;var r=Object.create(null);e.r(r);Object.defineProperty(r,"default",{enumerable:true,value:t});if(n&2&&typeof t!="string")for(var i in t)e.d(r,i,function(e){return t[e]}.bind(null,i));return r}}()});
//# sourceMappingURL=index.js.map