/*! For license information please see esdk-obs-browserjs-without-polyfill.3.24.3.min.js.LICENSE.txt */
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.ObsClient=t():e.ObsClient=t()}(self,(function(){return function(){var e,t,r={6783:function(e,t,r){e.exports=r(3761)},5326:function(e,t,r){"use strict";var o=r(9082),n=r(6168),a=r(8446),i=r(3220),s=r(8829),c=r(2510),l=r(2084),u=r(8353),p=r(5754),d=r(1566);e.exports=function(e){return new Promise((function(t,r){var h,f=e.data,m=e.headers,y=e.responseType;function g(){e.cancelToken&&e.cancelToken.unsubscribe(h),e.signal&&e.signal.removeEventListener("abort",h)}o.isFormData(f)&&delete m["Content-Type"];var A=new XMLHttpRequest;if(e.auth){var b=e.auth.username||"",x=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";m.Authorization="Basic "+btoa(b+":"+x)}var v=s(e.baseURL,e.url);function P(){if(A){var o="getAllResponseHeaders"in A?c(A.getAllResponseHeaders()):null,a={data:y&&"text"!==y&&"json"!==y?A.response:A.responseText,status:A.status,statusText:A.statusText,headers:o,config:e,request:A};n((function(e){t(e),g()}),(function(e){r(e),g()}),a),A=null}}if(A.open(e.method.toUpperCase(),i(v,e.params,e.paramsSerializer),!0),A.timeout=e.timeout,"onloadend"in A?A.onloadend=P:A.onreadystatechange=function(){A&&4===A.readyState&&(0!==A.status||A.responseURL&&0===A.responseURL.indexOf("file:"))&&setTimeout(P)},A.onabort=function(){A&&(r(u("Request aborted",e,"ECONNABORTED",A)),A=null)},A.onerror=function(){r(u("Network Error",e,null,A)),A=null},A.ontimeout=function(){var t=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded",o=e.transitional||p;e.timeoutErrorMessage&&(t=e.timeoutErrorMessage),r(u(t,e,o.clarifyTimeoutError?"ETIMEDOUT":"ECONNABORTED",A)),A=null},o.isStandardBrowserEnv()){var k=(e.withCredentials||l(v))&&e.xsrfCookieName?a.read(e.xsrfCookieName):void 0;k&&(m[e.xsrfHeaderName]=k)}"setRequestHeader"in A&&o.forEach(m,(function(e,t){void 0===f&&"content-type"===t.toLowerCase()?delete m[t]:A.setRequestHeader(t,e)})),o.isUndefined(e.withCredentials)||(A.withCredentials=!!e.withCredentials),y&&"json"!==y&&(A.responseType=e.responseType),"function"==typeof e.onDownloadProgress&&A.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&A.upload&&A.upload.addEventListener("progress",e.onUploadProgress),(e.cancelToken||e.signal)&&(h=function(e){A&&(r(!e||e&&e.type?new d("canceled"):e),A.abort(),A=null)},e.cancelToken&&e.cancelToken.subscribe(h),e.signal&&(e.signal.aborted?h():e.signal.addEventListener("abort",h))),f||(f=null),A.send(f)}))}},3761:function(e,t,r){"use strict";var o=r(9082),n=r(4694),a=r(4769),i=r(5433),s=function e(t){var r=new a(t),s=n(a.prototype.request,r);return o.extend(s,a.prototype,r),o.extend(s,r),s.create=function(r){return e(i(t,r))},s}(r(1378));s.Axios=a,s.Cancel=r(1566),s.CancelToken=r(7557),s.isCancel=r(7250),s.VERSION=r(8195).version,s.all=function(e){return Promise.all(e)},s.spread=r(142),s.isAxiosError=r(4993),e.exports=s,e.exports.default=s},1566:function(e){"use strict";function t(e){this.message=e}t.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},t.prototype.__CANCEL__=!0,e.exports=t},7557:function(e,t,r){"use strict";var o=r(1566);function n(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise((function(e){t=e}));var r=this;this.promise.then((function(e){if(r._listeners){var t,o=r._listeners.length;for(t=0;t<o;t++)r._listeners[t](e);r._listeners=null}})),this.promise.then=function(e){var t,o=new Promise((function(e){r.subscribe(e),t=e})).then(e);return o.cancel=function(){r.unsubscribe(t)},o},e((function(e){r.reason||(r.reason=new o(e),t(r.reason))}))}n.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},n.prototype.subscribe=function(e){this.reason?e(this.reason):this._listeners?this._listeners.push(e):this._listeners=[e]},n.prototype.unsubscribe=function(e){if(this._listeners){var t=this._listeners.indexOf(e);-1!==t&&this._listeners.splice(t,1)}},n.source=function(){var e;return{token:new n((function(t){e=t})),cancel:e}},e.exports=n},7250:function(e){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},4769:function(e,t,r){"use strict";var o=r(9082),n=r(3220),a=r(5041),i=r(1928),s=r(5433),c=r(7763),l=c.validators;function u(e){this.defaults=e,this.interceptors={request:new a,response:new a}}u.prototype.request=function(e,t){"string"==typeof e?(t=t||{}).url=e:t=e||{},(t=s(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var r=t.transitional;void 0!==r&&c.assertOptions(r,{silentJSONParsing:l.transitional(l.boolean),forcedJSONParsing:l.transitional(l.boolean),clarifyTimeoutError:l.transitional(l.boolean)},!1);var o=[],n=!0;this.interceptors.request.forEach((function(e){"function"==typeof e.runWhen&&!1===e.runWhen(t)||(n=n&&e.synchronous,o.unshift(e.fulfilled,e.rejected))}));var a,u=[];if(this.interceptors.response.forEach((function(e){u.push(e.fulfilled,e.rejected)})),!n){var p=[i,void 0];for(Array.prototype.unshift.apply(p,o),p=p.concat(u),a=Promise.resolve(t);p.length;)a=a.then(p.shift(),p.shift());return a}for(var d=t;o.length;){var h=o.shift(),f=o.shift();try{d=h(d)}catch(e){f(e);break}}try{a=i(d)}catch(e){return Promise.reject(e)}for(;u.length;)a=a.then(u.shift(),u.shift());return a},u.prototype.getUri=function(e){return e=s(this.defaults,e),n(e.url,e.params,e.paramsSerializer).replace(/^\?/,"")},o.forEach(["delete","get","head","options"],(function(e){u.prototype[e]=function(t,r){return this.request(s(r||{},{method:e,url:t,data:(r||{}).data}))}})),o.forEach(["post","put","patch"],(function(e){u.prototype[e]=function(t,r,o){return this.request(s(o||{},{method:e,url:t,data:r}))}})),e.exports=u},5041:function(e,t,r){"use strict";var o=r(9082);function n(){this.handlers=[]}n.prototype.use=function(e,t,r){return this.handlers.push({fulfilled:e,rejected:t,synchronous:!!r&&r.synchronous,runWhen:r?r.runWhen:null}),this.handlers.length-1},n.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},n.prototype.forEach=function(e){o.forEach(this.handlers,(function(t){null!==t&&e(t)}))},e.exports=n},8829:function(e,t,r){"use strict";var o=r(5131),n=r(4686);e.exports=function(e,t){return e&&!o(t)?n(e,t):t}},8353:function(e,t,r){"use strict";var o=r(3311);e.exports=function(e,t,r,n,a){var i=new Error(e);return o(i,t,r,n,a)}},1928:function(e,t,r){"use strict";var o=r(9082),n=r(9623),a=r(7250),i=r(1378),s=r(1566);function c(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new s("canceled")}e.exports=function(e){return c(e),e.headers=e.headers||{},e.data=n.call(e,e.data,e.headers,e.transformRequest),e.headers=o.merge(e.headers.common||{},e.headers[e.method]||{},e.headers),o.forEach(["delete","get","head","post","put","patch","common"],(function(t){delete e.headers[t]})),(e.adapter||i.adapter)(e).then((function(t){return c(e),t.data=n.call(e,t.data,t.headers,e.transformResponse),t}),(function(t){return a(t)||(c(e),t&&t.response&&(t.response.data=n.call(e,t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)}))}},3311:function(e){"use strict";e.exports=function(e,t,r,o,n){return e.config=t,r&&(e.code=r),e.request=o,e.response=n,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code,status:this.response&&this.response.status?this.response.status:null}},e}},5433:function(e,t,r){"use strict";var o=r(9082);e.exports=function(e,t){t=t||{};var r={};function n(e,t){return o.isPlainObject(e)&&o.isPlainObject(t)?o.merge(e,t):o.isPlainObject(t)?o.merge({},t):o.isArray(t)?t.slice():t}function a(r){return o.isUndefined(t[r])?o.isUndefined(e[r])?void 0:n(void 0,e[r]):n(e[r],t[r])}function i(e){if(!o.isUndefined(t[e]))return n(void 0,t[e])}function s(r){return o.isUndefined(t[r])?o.isUndefined(e[r])?void 0:n(void 0,e[r]):n(void 0,t[r])}function c(r){return r in t?n(e[r],t[r]):r in e?n(void 0,e[r]):void 0}var l={url:i,method:i,data:i,baseURL:s,transformRequest:s,transformResponse:s,paramsSerializer:s,timeout:s,timeoutMessage:s,withCredentials:s,adapter:s,responseType:s,xsrfCookieName:s,xsrfHeaderName:s,onUploadProgress:s,onDownloadProgress:s,decompress:s,maxContentLength:s,maxBodyLength:s,transport:s,httpAgent:s,httpsAgent:s,cancelToken:s,socketPath:s,responseEncoding:s,validateStatus:c};return o.forEach(Object.keys(e).concat(Object.keys(t)),(function(e){var t=l[e]||a,n=t(e);o.isUndefined(n)&&t!==c||(r[e]=n)})),r}},6168:function(e,t,r){"use strict";var o=r(8353);e.exports=function(e,t,r){var n=r.config.validateStatus;r.status&&n&&!n(r.status)?t(o("Request failed with status code "+r.status,r.config,null,r.request,r)):e(r)}},9623:function(e,t,r){"use strict";var o=r(9082),n=r(1378);e.exports=function(e,t,r){var a=this||n;return o.forEach(r,(function(r){e=r.call(a,e,t)})),e}},1378:function(e,t,r){"use strict";var o=r(9082),n=r(9872),a=r(3311),i=r(5754),s={"Content-Type":"application/x-www-form-urlencoded"};function c(e,t){!o.isUndefined(e)&&o.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}var l,u={transitional:i,adapter:(("undefined"!=typeof XMLHttpRequest||"undefined"!=typeof process&&"[object process]"===Object.prototype.toString.call(process))&&(l=r(5326)),l),transformRequest:[function(e,t){return n(t,"Accept"),n(t,"Content-Type"),o.isFormData(e)||o.isArrayBuffer(e)||o.isBuffer(e)||o.isStream(e)||o.isFile(e)||o.isBlob(e)?e:o.isArrayBufferView(e)?e.buffer:o.isURLSearchParams(e)?(c(t,"application/x-www-form-urlencoded;charset=utf-8"),e.toString()):o.isObject(e)||t&&"application/json"===t["Content-Type"]?(c(t,"application/json"),function(e,t,r){if(o.isString(e))try{return(0,JSON.parse)(e),o.trim(e)}catch(e){if("SyntaxError"!==e.name)throw e}return(0,JSON.stringify)(e)}(e)):e}],transformResponse:[function(e){var t=this.transitional||u.transitional,r=t&&t.silentJSONParsing,n=t&&t.forcedJSONParsing,i=!r&&"json"===this.responseType;if(i||n&&o.isString(e)&&e.length)try{return JSON.parse(e)}catch(e){if(i){if("SyntaxError"===e.name)throw a(e,this,"E_JSON_PARSE");throw e}}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,validateStatus:function(e){return e>=200&&e<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};o.forEach(["delete","get","head"],(function(e){u.headers[e]={}})),o.forEach(["post","put","patch"],(function(e){u.headers[e]=o.merge(s)})),e.exports=u},5754:function(e){"use strict";e.exports={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1}},8195:function(e){e.exports={version:"0.26.1"}},4694:function(e){"use strict";e.exports=function(e,t){return function(){for(var r=new Array(arguments.length),o=0;o<r.length;o++)r[o]=arguments[o];return e.apply(t,r)}}},3220:function(e,t,r){"use strict";var o=r(9082);function n(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}e.exports=function(e,t,r){if(!t)return e;var a;if(r)a=r(t);else if(o.isURLSearchParams(t))a=t.toString();else{var i=[];o.forEach(t,(function(e,t){null!=e&&(o.isArray(e)?t+="[]":e=[e],o.forEach(e,(function(e){o.isDate(e)?e=e.toISOString():o.isObject(e)&&(e=JSON.stringify(e)),i.push(n(t)+"="+n(e))})))})),a=i.join("&")}if(a){var s=e.indexOf("#");-1!==s&&(e=e.slice(0,s)),e+=(-1===e.indexOf("?")?"?":"&")+a}return e}},4686:function(e){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},8446:function(e,t,r){"use strict";var o=r(9082);e.exports=o.isStandardBrowserEnv()?{write:function(e,t,r,n,a,i){var s=[];s.push(e+"="+encodeURIComponent(t)),o.isNumber(r)&&s.push("expires="+new Date(r).toGMTString()),o.isString(n)&&s.push("path="+n),o.isString(a)&&s.push("domain="+a),!0===i&&s.push("secure"),document.cookie=s.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},5131:function(e){"use strict";e.exports=function(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}},4993:function(e,t,r){"use strict";var o=r(9082);e.exports=function(e){return o.isObject(e)&&!0===e.isAxiosError}},2084:function(e,t,r){"use strict";var o=r(9082);e.exports=o.isStandardBrowserEnv()?function(){var e,t=/(msie|trident)/i.test(navigator.userAgent),r=document.createElement("a");function n(e){var o=e;return t&&(r.setAttribute("href",o),o=r.href),r.setAttribute("href",o),{href:r.href,protocol:r.protocol?r.protocol.replace(/:$/,""):"",host:r.host,search:r.search?r.search.replace(/^\?/,""):"",hash:r.hash?r.hash.replace(/^#/,""):"",hostname:r.hostname,port:r.port,pathname:"/"===r.pathname.charAt(0)?r.pathname:"/"+r.pathname}}return e=n(window.location.href),function(t){var r=o.isString(t)?n(t):t;return r.protocol===e.protocol&&r.host===e.host}}():function(){return!0}},9872:function(e,t,r){"use strict";var o=r(9082);e.exports=function(e,t){o.forEach(e,(function(r,o){o!==t&&o.toUpperCase()===t.toUpperCase()&&(e[t]=r,delete e[o])}))}},2510:function(e,t,r){"use strict";var o=r(9082),n=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,r,a,i={};return e?(o.forEach(e.split("\n"),(function(e){if(a=e.indexOf(":"),t=o.trim(e.substr(0,a)).toLowerCase(),r=o.trim(e.substr(a+1)),t){if(i[t]&&n.indexOf(t)>=0)return;i[t]="set-cookie"===t?(i[t]?i[t]:[]).concat([r]):i[t]?i[t]+", "+r:r}})),i):i}},142:function(e){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}},7763:function(e,t,r){"use strict";function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}var n=r(8195).version,a={};["object","boolean","number","function","string","symbol"].forEach((function(e,t){a[e]=function(r){return o(r)===e||"a"+(t<1?"n ":" ")+e}}));var i={};a.transitional=function(e,t,r){function o(e,t){return"[Axios v"+n+"] Transitional option '"+e+"'"+t+(r?". "+r:"")}return function(r,n,a){if(!1===e)throw new Error(o(n," has been removed"+(t?" in "+t:"")));return t&&!i[n]&&(i[n]=!0,console.warn(o(n," has been deprecated since v"+t+" and will be removed in the near future"))),!e||e(r,n,a)}},e.exports={assertOptions:function(e,t,r){if("object"!==o(e))throw new TypeError("options must be an object");for(var n=Object.keys(e),a=n.length;a-- >0;){var i=n[a],s=t[i];if(s){var c=e[i],l=void 0===c||s(c,i,e);if(!0!==l)throw new TypeError("option "+i+" must be "+l)}else if(!0!==r)throw Error("Unknown option "+i)}},validators:a}},9082:function(e,t,r){"use strict";function o(e){return o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o(e)}var n=r(4694),a=Object.prototype.toString;function i(e){return Array.isArray(e)}function s(e){return void 0===e}function c(e){return"[object ArrayBuffer]"===a.call(e)}function l(e){return null!==e&&"object"===o(e)}function u(e){if("[object Object]"!==a.call(e))return!1;var t=Object.getPrototypeOf(e);return null===t||t===Object.prototype}function p(e){return"[object Function]"===a.call(e)}function d(e,t){if(null!=e)if("object"!==o(e)&&(e=[e]),i(e))for(var r=0,n=e.length;r<n;r++)t.call(null,e[r],r,e);else for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&t.call(null,e[a],a,e)}e.exports={isArray:i,isArrayBuffer:c,isBuffer:function(e){return null!==e&&!s(e)&&null!==e.constructor&&!s(e.constructor)&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)},isFormData:function(e){return"[object FormData]"===a.call(e)},isArrayBufferView:function(e){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&c(e.buffer)},isString:function(e){return"string"==typeof e},isNumber:function(e){return"number"==typeof e},isObject:l,isPlainObject:u,isUndefined:s,isDate:function(e){return"[object Date]"===a.call(e)},isFile:function(e){return"[object File]"===a.call(e)},isBlob:function(e){return"[object Blob]"===a.call(e)},isFunction:p,isStream:function(e){return l(e)&&p(e.pipe)},isURLSearchParams:function(e){return"[object URLSearchParams]"===a.call(e)},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&"undefined"!=typeof window&&"undefined"!=typeof document},forEach:d,merge:function e(){var t={};function r(r,o){u(t[o])&&u(r)?t[o]=e(t[o],r):u(r)?t[o]=e({},r):i(r)?t[o]=r.slice():t[o]=r}for(var o=0,n=arguments.length;o<n;o++)d(arguments[o],r);return t},extend:function(e,t,r){return d(t,(function(t,o){e[o]=r&&"function"==typeof t?n(t,r):t})),e},trim:function(e){return e.trim?e.trim():e.replace(/^\s+|\s+$/g,"")},stripBOM:function(e){return 65279===e.charCodeAt(0)&&(e=e.slice(1)),e}}},3264:function(e,t,r){var o;!function(n){"use strict";function a(e,t){var r=(65535&e)+(65535&t);return(e>>16)+(t>>16)+(r>>16)<<16|65535&r}function i(e,t,r,o,n,i){return a((s=a(a(t,e),a(o,i)))<<(c=n)|s>>>32-c,r);var s,c}function s(e,t,r,o,n,a,s){return i(t&r|~t&o,e,t,n,a,s)}function c(e,t,r,o,n,a,s){return i(t&o|r&~o,e,t,n,a,s)}function l(e,t,r,o,n,a,s){return i(t^r^o,e,t,n,a,s)}function u(e,t,r,o,n,a,s){return i(r^(t|~o),e,t,n,a,s)}function p(e,t){var r,o,n,i,p;e[t>>5]|=128<<t%32,e[14+(t+64>>>9<<4)]=t;var d=1732584193,h=-271733879,f=-1732584194,m=271733878;for(r=0;r<e.length;r+=16)o=d,n=h,i=f,p=m,d=s(d,h,f,m,e[r],7,-680876936),m=s(m,d,h,f,e[r+1],12,-389564586),f=s(f,m,d,h,e[r+2],17,606105819),h=s(h,f,m,d,e[r+3],22,-1044525330),d=s(d,h,f,m,e[r+4],7,-176418897),m=s(m,d,h,f,e[r+5],12,1200080426),f=s(f,m,d,h,e[r+6],17,-1473231341),h=s(h,f,m,d,e[r+7],22,-45705983),d=s(d,h,f,m,e[r+8],7,1770035416),m=s(m,d,h,f,e[r+9],12,-1958414417),f=s(f,m,d,h,e[r+10],17,-42063),h=s(h,f,m,d,e[r+11],22,-1990404162),d=s(d,h,f,m,e[r+12],7,1804603682),m=s(m,d,h,f,e[r+13],12,-40341101),f=s(f,m,d,h,e[r+14],17,-1502002290),d=c(d,h=s(h,f,m,d,e[r+15],22,1236535329),f,m,e[r+1],5,-165796510),m=c(m,d,h,f,e[r+6],9,-1069501632),f=c(f,m,d,h,e[r+11],14,643717713),h=c(h,f,m,d,e[r],20,-373897302),d=c(d,h,f,m,e[r+5],5,-701558691),m=c(m,d,h,f,e[r+10],9,38016083),f=c(f,m,d,h,e[r+15],14,-660478335),h=c(h,f,m,d,e[r+4],20,-405537848),d=c(d,h,f,m,e[r+9],5,568446438),m=c(m,d,h,f,e[r+14],9,-1019803690),f=c(f,m,d,h,e[r+3],14,-187363961),h=c(h,f,m,d,e[r+8],20,1163531501),d=c(d,h,f,m,e[r+13],5,-1444681467),m=c(m,d,h,f,e[r+2],9,-51403784),f=c(f,m,d,h,e[r+7],14,1735328473),d=l(d,h=c(h,f,m,d,e[r+12],20,-1926607734),f,m,e[r+5],4,-378558),m=l(m,d,h,f,e[r+8],11,-2022574463),f=l(f,m,d,h,e[r+11],16,1839030562),h=l(h,f,m,d,e[r+14],23,-35309556),d=l(d,h,f,m,e[r+1],4,-1530992060),m=l(m,d,h,f,e[r+4],11,1272893353),f=l(f,m,d,h,e[r+7],16,-155497632),h=l(h,f,m,d,e[r+10],23,-1094730640),d=l(d,h,f,m,e[r+13],4,681279174),m=l(m,d,h,f,e[r],11,-358537222),f=l(f,m,d,h,e[r+3],16,-722521979),h=l(h,f,m,d,e[r+6],23,76029189),d=l(d,h,f,m,e[r+9],4,-640364487),m=l(m,d,h,f,e[r+12],11,-421815835),f=l(f,m,d,h,e[r+15],16,530742520),d=u(d,h=l(h,f,m,d,e[r+2],23,-995338651),f,m,e[r],6,-198630844),m=u(m,d,h,f,e[r+7],10,1126891415),f=u(f,m,d,h,e[r+14],15,-1416354905),h=u(h,f,m,d,e[r+5],21,-57434055),d=u(d,h,f,m,e[r+12],6,1700485571),m=u(m,d,h,f,e[r+3],10,-1894986606),f=u(f,m,d,h,e[r+10],15,-1051523),h=u(h,f,m,d,e[r+1],21,-2054922799),d=u(d,h,f,m,e[r+8],6,1873313359),m=u(m,d,h,f,e[r+15],10,-30611744),f=u(f,m,d,h,e[r+6],15,-1560198380),h=u(h,f,m,d,e[r+13],21,1309151649),d=u(d,h,f,m,e[r+4],6,-145523070),m=u(m,d,h,f,e[r+11],10,-1120210379),f=u(f,m,d,h,e[r+2],15,718787259),h=u(h,f,m,d,e[r+9],21,-343485551),d=a(d,o),h=a(h,n),f=a(f,i),m=a(m,p);return[d,h,f,m]}function d(e){var t,r="",o=32*e.length;for(t=0;t<o;t+=8)r+=String.fromCharCode(e[t>>5]>>>t%32&255);return r}function h(e){var t,r=[];for(r[(e.length>>2)-1]=void 0,t=0;t<r.length;t+=1)r[t]=0;var o=8*e.length;for(t=0;t<o;t+=8)r[t>>5]|=(255&e.charCodeAt(t/8))<<t%32;return r}function f(e){var t,r,o="0123456789abcdef",n="";for(r=0;r<e.length;r+=1)t=e.charCodeAt(r),n+=o.charAt(t>>>4&15)+o.charAt(15&t);return n}function m(e){return unescape(encodeURIComponent(e))}function y(e){return function(e){return d(p(h(e),8*e.length))}(m(e))}function g(e,t){return function(e,t){var r,o,n=h(e),a=[],i=[];for(a[15]=i[15]=void 0,n.length>16&&(n=p(n,8*e.length)),r=0;r<16;r+=1)a[r]=909522486^n[r],i[r]=1549556828^n[r];return o=p(a.concat(h(t)),512+8*t.length),d(p(i.concat(o),640))}(m(e),m(t))}function A(e,t,r){return t?r?g(t,e):f(g(t,e)):r?y(e):f(y(e))}void 0===(o=function(){return A}.call(t,r,t,e))||(e.exports=o)}()},2885:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return function(){var t=e,r=t.lib.BlockCipher,o=t.algo,n=[],a=[],i=[],s=[],c=[],l=[],u=[],p=[],d=[],h=[];!function(){for(var e=[],t=0;t<256;t++)e[t]=t<128?t<<1:t<<1^283;var r=0,o=0;for(t=0;t<256;t++){var f=o^o<<1^o<<2^o<<3^o<<4;f=f>>>8^255&f^99,n[r]=f,a[f]=r;var m=e[r],y=e[m],g=e[y],A=257*e[f]^16843008*f;i[r]=A<<24|A>>>8,s[r]=A<<16|A>>>16,c[r]=A<<8|A>>>24,l[r]=A,A=16843009*g^65537*y^257*m^16843008*r,u[f]=A<<24|A>>>8,p[f]=A<<16|A>>>16,d[f]=A<<8|A>>>24,h[f]=A,r?(r=m^e[e[e[g^m]]],o^=e[e[o]]):r=o=1}}();var f=[0,1,2,4,8,16,32,64,128,27,54],m=o.AES=r.extend({_doReset:function(){if(!this._nRounds||this._keyPriorReset!==this._key){for(var e=this._keyPriorReset=this._key,t=e.words,r=e.sigBytes/4,o=4*((this._nRounds=r+6)+1),a=this._keySchedule=[],i=0;i<o;i++)i<r?a[i]=t[i]:(l=a[i-1],i%r?r>6&&i%r==4&&(l=n[l>>>24]<<24|n[l>>>16&255]<<16|n[l>>>8&255]<<8|n[255&l]):(l=n[(l=l<<8|l>>>24)>>>24]<<24|n[l>>>16&255]<<16|n[l>>>8&255]<<8|n[255&l],l^=f[i/r|0]<<24),a[i]=a[i-r]^l);for(var s=this._invKeySchedule=[],c=0;c<o;c++){if(i=o-c,c%4)var l=a[i];else l=a[i-4];s[c]=c<4||i<=4?l:u[n[l>>>24]]^p[n[l>>>16&255]]^d[n[l>>>8&255]]^h[n[255&l]]}}},encryptBlock:function(e,t){this._doCryptBlock(e,t,this._keySchedule,i,s,c,l,n)},decryptBlock:function(e,t){var r=e[t+1];e[t+1]=e[t+3],e[t+3]=r,this._doCryptBlock(e,t,this._invKeySchedule,u,p,d,h,a),r=e[t+1],e[t+1]=e[t+3],e[t+3]=r},_doCryptBlock:function(e,t,r,o,n,a,i,s){for(var c=this._nRounds,l=e[t]^r[0],u=e[t+1]^r[1],p=e[t+2]^r[2],d=e[t+3]^r[3],h=4,f=1;f<c;f++){var m=o[l>>>24]^n[u>>>16&255]^a[p>>>8&255]^i[255&d]^r[h++],y=o[u>>>24]^n[p>>>16&255]^a[d>>>8&255]^i[255&l]^r[h++],g=o[p>>>24]^n[d>>>16&255]^a[l>>>8&255]^i[255&u]^r[h++],A=o[d>>>24]^n[l>>>16&255]^a[u>>>8&255]^i[255&p]^r[h++];l=m,u=y,p=g,d=A}m=(s[l>>>24]<<24|s[u>>>16&255]<<16|s[p>>>8&255]<<8|s[255&d])^r[h++],y=(s[u>>>24]<<24|s[p>>>16&255]<<16|s[d>>>8&255]<<8|s[255&l])^r[h++],g=(s[p>>>24]<<24|s[d>>>16&255]<<16|s[l>>>8&255]<<8|s[255&u])^r[h++],A=(s[d>>>24]<<24|s[l>>>16&255]<<16|s[u>>>8&255]<<8|s[255&p])^r[h++],e[t]=m,e[t+1]=y,e[t+2]=g,e[t+3]=A},keySize:8});t.AES=r._createHelper(m)}(),e.AES},"object"===s(t)?e.exports=t=i(r(8019),r(4760),r(5258),r(8832),r(9127)):(n=[r(8019),r(4760),r(5258),r(8832),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},7158:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return function(){var t=e,r=t.lib.BlockCipher,o=t.algo,n=16,a=[608135816,2242054355,320440878,57701188,2752067618,698298832,137296536,3964562569,1160258022,953160567,3193202383,887688300,3232508343,3380367581,1065670069,3041331479,2450970073,2306472731],i=[[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],[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],[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],[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]],s={pbox:[],sbox:[]};function c(e,t){var r=t>>24&255,o=t>>16&255,n=t>>8&255,a=255&t,i=e.sbox[0][r]+e.sbox[1][o];return(i^=e.sbox[2][n])+e.sbox[3][a]}function l(e,t,r){for(var o,a=t,i=r,s=0;s<n;++s)o=a^=e.pbox[s],a=i=c(e,a)^i,i=o;return o=a,a=i,i=o,i^=e.pbox[n],{left:a^=e.pbox[17],right:i}}var u=o.Blowfish=r.extend({_doReset:function(){if(this._keyPriorReset!==this._key){var e=this._keyPriorReset=this._key,t=e.words,r=e.sigBytes/4;!function(e,t,r){for(var o=0;o<4;o++){e.sbox[o]=[];for(var n=0;n<256;n++)e.sbox[o][n]=i[o][n]}for(var s=0,c=0;c<18;c++)e.pbox[c]=a[c]^t[s],++s>=r&&(s=0);for(var u=0,p=0,d=0,h=0;h<18;h+=2)u=(d=l(e,u,p)).left,p=d.right,e.pbox[h]=u,e.pbox[h+1]=p;for(var f=0;f<4;f++)for(var m=0;m<256;m+=2)u=(d=l(e,u,p)).left,p=d.right,e.sbox[f][m]=u,e.sbox[f][m+1]=p}(s,t,r)}},encryptBlock:function(e,t){var r=l(s,e[t],e[t+1]);e[t]=r.left,e[t+1]=r.right},decryptBlock:function(e,t){var r=function(e,t,r){for(var o,n=t,a=r,i=17;i>1;--i)o=n^=e.pbox[i],n=a=c(e,n)^a,a=o;return o=n,n=a,a=o,a^=e.pbox[1],{left:n^=e.pbox[0],right:a}}(s,e[t],e[t+1]);e[t]=r.left,e[t+1]=r.right},blockSize:2,keySize:4,ivSize:2});t.Blowfish=r._createHelper(u)}(),e.Blowfish},"object"===s(t)?e.exports=t=i(r(8019),r(4760),r(5258),r(8832),r(9127)):(n=[r(8019),r(4760),r(5258),r(8832),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},9127:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t,r,o,n,a,i,s,c,l,u,p,d,h,f,m,y,g,A;e.lib.Cipher||(o=(r=(t=e).lib).Base,n=r.WordArray,a=r.BufferedBlockAlgorithm,(i=t.enc).Utf8,s=i.Base64,c=t.algo.EvpKDF,l=r.Cipher=a.extend({cfg:o.extend(),createEncryptor:function(e,t){return this.create(this._ENC_XFORM_MODE,e,t)},createDecryptor:function(e,t){return this.create(this._DEC_XFORM_MODE,e,t)},init:function(e,t,r){this.cfg=this.cfg.extend(r),this._xformMode=e,this._key=t,this.reset()},reset:function(){a.reset.call(this),this._doReset()},process:function(e){return this._append(e),this._process()},finalize:function(e){return e&&this._append(e),this._doFinalize()},keySize:4,ivSize:4,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:function(){function e(e){return"string"==typeof e?A:y}return function(t){return{encrypt:function(r,o,n){return e(o).encrypt(t,r,o,n)},decrypt:function(r,o,n){return e(o).decrypt(t,r,o,n)}}}}()}),r.StreamCipher=l.extend({_doFinalize:function(){return this._process(!0)},blockSize:1}),u=t.mode={},p=r.BlockCipherMode=o.extend({createEncryptor:function(e,t){return this.Encryptor.create(e,t)},createDecryptor:function(e,t){return this.Decryptor.create(e,t)},init:function(e,t){this._cipher=e,this._iv=t}}),d=u.CBC=function(){var e=p.extend();function t(e,t,r){var o,n=this._iv;n?(o=n,this._iv=void 0):o=this._prevBlock;for(var a=0;a<r;a++)e[t+a]^=o[a]}return e.Encryptor=e.extend({processBlock:function(e,r){var o=this._cipher,n=o.blockSize;t.call(this,e,r,n),o.encryptBlock(e,r),this._prevBlock=e.slice(r,r+n)}}),e.Decryptor=e.extend({processBlock:function(e,r){var o=this._cipher,n=o.blockSize,a=e.slice(r,r+n);o.decryptBlock(e,r),t.call(this,e,r,n),this._prevBlock=a}}),e}(),h=(t.pad={}).Pkcs7={pad:function(e,t){for(var r=4*t,o=r-e.sigBytes%r,a=o<<24|o<<16|o<<8|o,i=[],s=0;s<o;s+=4)i.push(a);var c=n.create(i,o);e.concat(c)},unpad:function(e){var t=255&e.words[e.sigBytes-1>>>2];e.sigBytes-=t}},r.BlockCipher=l.extend({cfg:l.cfg.extend({mode:d,padding:h}),reset:function(){var e;l.reset.call(this);var t=this.cfg,r=t.iv,o=t.mode;this._xformMode==this._ENC_XFORM_MODE?e=o.createEncryptor:(e=o.createDecryptor,this._minBufferSize=1),this._mode&&this._mode.__creator==e?this._mode.init(this,r&&r.words):(this._mode=e.call(o,this,r&&r.words),this._mode.__creator=e)},_doProcessBlock:function(e,t){this._mode.processBlock(e,t)},_doFinalize:function(){var e,t=this.cfg.padding;return this._xformMode==this._ENC_XFORM_MODE?(t.pad(this._data,this.blockSize),e=this._process(!0)):(e=this._process(!0),t.unpad(e)),e},blockSize:4}),f=r.CipherParams=o.extend({init:function(e){this.mixIn(e)},toString:function(e){return(e||this.formatter).stringify(this)}}),m=(t.format={}).OpenSSL={stringify:function(e){var t=e.ciphertext,r=e.salt;return(r?n.create([1398893684,1701076831]).concat(r).concat(t):t).toString(s)},parse:function(e){var t,r=s.parse(e),o=r.words;return 1398893684==o[0]&&1701076831==o[1]&&(t=n.create(o.slice(2,4)),o.splice(0,4),r.sigBytes-=16),f.create({ciphertext:r,salt:t})}},y=r.SerializableCipher=o.extend({cfg:o.extend({format:m}),encrypt:function(e,t,r,o){o=this.cfg.extend(o);var n=e.createEncryptor(r,o),a=n.finalize(t),i=n.cfg;return f.create({ciphertext:a,key:r,iv:i.iv,algorithm:e,mode:i.mode,padding:i.padding,blockSize:e.blockSize,formatter:o.format})},decrypt:function(e,t,r,o){return o=this.cfg.extend(o),t=this._parse(t,o.format),e.createDecryptor(r,o).finalize(t.ciphertext)},_parse:function(e,t){return"string"==typeof e?t.parse(e,this):e}}),g=(t.kdf={}).OpenSSL={execute:function(e,t,r,o,a){if(o||(o=n.random(8)),a)i=c.create({keySize:t+r,hasher:a}).compute(e,o);else var i=c.create({keySize:t+r}).compute(e,o);var s=n.create(i.words.slice(t),4*r);return i.sigBytes=4*t,f.create({key:i,iv:s,salt:o})}},A=r.PasswordBasedCipher=y.extend({cfg:y.cfg.extend({kdf:g}),encrypt:function(e,t,r,o){var n=(o=this.cfg.extend(o)).kdf.execute(r,e.keySize,e.ivSize,o.salt,o.hasher);o.iv=n.iv;var a=y.encrypt.call(this,e,t,n.key,o);return a.mixIn(n),a},decrypt:function(e,t,r,o){o=this.cfg.extend(o),t=this._parse(t,o.format);var n=o.kdf.execute(r,e.keySize,e.ivSize,t.salt,o.hasher);return o.iv=n.iv,y.decrypt.call(this,e,t,n.key,o)}}))},"object"===s(t)?e.exports=t=i(r(8019),r(8832)):(n=[r(8019),r(8832)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},8019:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(){var e=e||function(e,t){var o;if("undefined"!=typeof window&&window.crypto&&(o=window.crypto),"undefined"!=typeof self&&self.crypto&&(o=self.crypto),"undefined"!=typeof globalThis&&globalThis.crypto&&(o=globalThis.crypto),!o&&"undefined"!=typeof window&&window.msCrypto&&(o=window.msCrypto),!o&&void 0!==r.g&&r.g.crypto&&(o=r.g.crypto),!o)try{o=r(477)}catch(e){}var n=function(){if(o){if("function"==typeof o.getRandomValues)try{return o.getRandomValues(new Uint32Array(1))[0]}catch(e){}if("function"==typeof o.randomBytes)try{return o.randomBytes(4).readInt32LE()}catch(e){}}throw new Error("Native crypto module could not be used to get secure random number.")},a=Object.create||function(){function e(){}return function(t){var r;return e.prototype=t,r=new e,e.prototype=null,r}}(),i={},s=i.lib={},c=s.Base={extend:function(e){var t=a(this);return e&&t.mixIn(e),t.hasOwnProperty("init")&&this.init!==t.init||(t.init=function(){t.$super.init.apply(this,arguments)}),t.init.prototype=t,t.$super=this,t},create:function(){var e=this.extend();return e.init.apply(e,arguments),e},init:function(){},mixIn:function(e){for(var t in e)e.hasOwnProperty(t)&&(this[t]=e[t]);e.hasOwnProperty("toString")&&(this.toString=e.toString)},clone:function(){return this.init.prototype.extend(this)}},l=s.WordArray=c.extend({init:function(e,t){e=this.words=e||[],this.sigBytes=null!=t?t:4*e.length},toString:function(e){return(e||p).stringify(this)},concat:function(e){var t=this.words,r=e.words,o=this.sigBytes,n=e.sigBytes;if(this.clamp(),o%4)for(var a=0;a<n;a++){var i=r[a>>>2]>>>24-a%4*8&255;t[o+a>>>2]|=i<<24-(o+a)%4*8}else for(var s=0;s<n;s+=4)t[o+s>>>2]=r[s>>>2];return this.sigBytes+=n,this},clamp:function(){var t=this.words,r=this.sigBytes;t[r>>>2]&=4294967295<<32-r%4*8,t.length=e.ceil(r/4)},clone:function(){var e=c.clone.call(this);return e.words=this.words.slice(0),e},random:function(e){for(var t=[],r=0;r<e;r+=4)t.push(n());return new l.init(t,e)}}),u=i.enc={},p=u.Hex={stringify:function(e){for(var t=e.words,r=e.sigBytes,o=[],n=0;n<r;n++){var a=t[n>>>2]>>>24-n%4*8&255;o.push((a>>>4).toString(16)),o.push((15&a).toString(16))}return o.join("")},parse:function(e){for(var t=e.length,r=[],o=0;o<t;o+=2)r[o>>>3]|=parseInt(e.substr(o,2),16)<<24-o%8*4;return new l.init(r,t/2)}},d=u.Latin1={stringify:function(e){for(var t=e.words,r=e.sigBytes,o=[],n=0;n<r;n++){var a=t[n>>>2]>>>24-n%4*8&255;o.push(String.fromCharCode(a))}return o.join("")},parse:function(e){for(var t=e.length,r=[],o=0;o<t;o++)r[o>>>2]|=(255&e.charCodeAt(o))<<24-o%4*8;return new l.init(r,t)}},h=u.Utf8={stringify:function(e){try{return decodeURIComponent(escape(d.stringify(e)))}catch(e){throw new Error("Malformed UTF-8 data")}},parse:function(e){return d.parse(unescape(encodeURIComponent(e)))}},f=s.BufferedBlockAlgorithm=c.extend({reset:function(){this._data=new l.init,this._nDataBytes=0},_append:function(e){"string"==typeof e&&(e=h.parse(e)),this._data.concat(e),this._nDataBytes+=e.sigBytes},_process:function(t){var r,o=this._data,n=o.words,a=o.sigBytes,i=this.blockSize,s=a/(4*i),c=(s=t?e.ceil(s):e.max((0|s)-this._minBufferSize,0))*i,u=e.min(4*c,a);if(c){for(var p=0;p<c;p+=i)this._doProcessBlock(n,p);r=n.splice(0,c),o.sigBytes-=u}return new l.init(r,u)},clone:function(){var e=c.clone.call(this);return e._data=this._data.clone(),e},_minBufferSize:0}),m=(s.Hasher=f.extend({cfg:c.extend(),init:function(e){this.cfg=this.cfg.extend(e),this.reset()},reset:function(){f.reset.call(this),this._doReset()},update:function(e){return this._append(e),this._process(),this},finalize:function(e){return e&&this._append(e),this._doFinalize()},blockSize:16,_createHelper:function(e){return function(t,r){return new e.init(r).finalize(t)}},_createHmacHelper:function(e){return function(t,r){return new m.HMAC.init(e,r).finalize(t)}}}),i.algo={});return i}(Math);return e},"object"===s(t)?e.exports=t=i():(n=[],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},4760:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t,r;return r=(t=e).lib.WordArray,t.enc.Base64={stringify:function(e){var t=e.words,r=e.sigBytes,o=this._map;e.clamp();for(var n=[],a=0;a<r;a+=3)for(var i=(t[a>>>2]>>>24-a%4*8&255)<<16|(t[a+1>>>2]>>>24-(a+1)%4*8&255)<<8|t[a+2>>>2]>>>24-(a+2)%4*8&255,s=0;s<4&&a+.75*s<r;s++)n.push(o.charAt(i>>>6*(3-s)&63));var c=o.charAt(64);if(c)for(;n.length%4;)n.push(c);return n.join("")},parse:function(e){var t=e.length,o=this._map,n=this._reverseMap;if(!n){n=this._reverseMap=[];for(var a=0;a<o.length;a++)n[o.charCodeAt(a)]=a}var i=o.charAt(64);if(i){var s=e.indexOf(i);-1!==s&&(t=s)}return function(e,t,o){for(var n=[],a=0,i=0;i<t;i++)if(i%4){var s=o[e.charCodeAt(i-1)]<<i%4*2|o[e.charCodeAt(i)]>>>6-i%4*2;n[a>>>2]|=s<<24-a%4*8,a++}return r.create(n,a)}(e,t,n)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="},e.enc.Base64},"object"===s(t)?e.exports=t=i(r(8019)):(n=[r(8019)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},2643:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t,r;return r=(t=e).lib.WordArray,t.enc.Base64url={stringify:function(e,t){void 0===t&&(t=!0);var r=e.words,o=e.sigBytes,n=t?this._safe_map:this._map;e.clamp();for(var a=[],i=0;i<o;i+=3)for(var s=(r[i>>>2]>>>24-i%4*8&255)<<16|(r[i+1>>>2]>>>24-(i+1)%4*8&255)<<8|r[i+2>>>2]>>>24-(i+2)%4*8&255,c=0;c<4&&i+.75*c<o;c++)a.push(n.charAt(s>>>6*(3-c)&63));var l=n.charAt(64);if(l)for(;a.length%4;)a.push(l);return a.join("")},parse:function(e,t){void 0===t&&(t=!0);var o=e.length,n=t?this._safe_map:this._map,a=this._reverseMap;if(!a){a=this._reverseMap=[];for(var i=0;i<n.length;i++)a[n.charCodeAt(i)]=i}var s=n.charAt(64);if(s){var c=e.indexOf(s);-1!==c&&(o=c)}return function(e,t,o){for(var n=[],a=0,i=0;i<t;i++)if(i%4){var s=o[e.charCodeAt(i-1)]<<i%4*2|o[e.charCodeAt(i)]>>>6-i%4*2;n[a>>>2]|=s<<24-a%4*8,a++}return r.create(n,a)}(e,o,a)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",_safe_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_"},e.enc.Base64url},"object"===s(t)?e.exports=t=i(r(8019)):(n=[r(8019)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},5997:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return function(){var t=e,r=t.lib.WordArray,o=t.enc;function n(e){return e<<8&4278255360|e>>>8&16711935}o.Utf16=o.Utf16BE={stringify:function(e){for(var t=e.words,r=e.sigBytes,o=[],n=0;n<r;n+=2){var a=t[n>>>2]>>>16-n%4*8&65535;o.push(String.fromCharCode(a))}return o.join("")},parse:function(e){for(var t=e.length,o=[],n=0;n<t;n++)o[n>>>1]|=e.charCodeAt(n)<<16-n%2*16;return r.create(o,2*t)}},o.Utf16LE={stringify:function(e){for(var t=e.words,r=e.sigBytes,o=[],a=0;a<r;a+=2){var i=n(t[a>>>2]>>>16-a%4*8&65535);o.push(String.fromCharCode(i))}return o.join("")},parse:function(e){for(var t=e.length,o=[],a=0;a<t;a++)o[a>>>1]|=n(e.charCodeAt(a)<<16-a%2*16);return r.create(o,2*t)}}}(),e.enc.Utf16},"object"===s(t)?e.exports=t=i(r(8019)):(n=[r(8019)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},8832:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t,r,o,n,a,i,s;return o=(r=(t=e).lib).Base,n=r.WordArray,i=(a=t.algo).MD5,s=a.EvpKDF=o.extend({cfg:o.extend({keySize:4,hasher:i,iterations:1}),init:function(e){this.cfg=this.cfg.extend(e)},compute:function(e,t){for(var r,o=this.cfg,a=o.hasher.create(),i=n.create(),s=i.words,c=o.keySize,l=o.iterations;s.length<c;){r&&a.update(r),r=a.update(e).finalize(t),a.reset();for(var u=1;u<l;u++)r=a.finalize(r),a.reset();i.concat(r)}return i.sigBytes=4*c,i}}),t.EvpKDF=function(e,t,r){return s.create(r).compute(e,t)},e.EvpKDF},"object"===s(t)?e.exports=t=i(r(8019),r(4965),r(4135)):(n=[r(8019),r(4965),r(4135)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},8143:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t,r,o;return r=(t=e).lib.CipherParams,o=t.enc.Hex,t.format.Hex={stringify:function(e){return e.ciphertext.toString(o)},parse:function(e){var t=o.parse(e);return r.create({ciphertext:t})}},e.format.Hex},"object"===s(t)?e.exports=t=i(r(8019),r(9127)):(n=[r(8019),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},4135:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t,r,o;r=(t=e).lib.Base,o=t.enc.Utf8,t.algo.HMAC=r.extend({init:function(e,t){e=this._hasher=new e.init,"string"==typeof t&&(t=o.parse(t));var r=e.blockSize,n=4*r;t.sigBytes>n&&(t=e.finalize(t)),t.clamp();for(var a=this._oKey=t.clone(),i=this._iKey=t.clone(),s=a.words,c=i.words,l=0;l<r;l++)s[l]^=1549556828,c[l]^=909522486;a.sigBytes=i.sigBytes=n,this.reset()},reset:function(){var e=this._hasher;e.reset(),e.update(this._iKey)},update:function(e){return this._hasher.update(e),this},finalize:function(e){var t=this._hasher,r=t.finalize(e);return t.reset(),t.finalize(this._oKey.clone().concat(r))}})},"object"===s(t)?e.exports=t=i(r(8019)):(n=[r(8019)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},2062:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return e},"object"===s(t)?e.exports=t=i(r(8019),r(2730),r(9054),r(5997),r(4760),r(2643),r(5258),r(4965),r(4183),r(2202),r(8542),r(4047),r(6947),r(8334),r(4135),r(1381),r(8832),r(9127),r(4651),r(8665),r(5218),r(8751),r(8676),r(1307),r(2819),r(6004),r(2469),r(5026),r(8143),r(2885),r(7274),r(5615),r(6768),r(2570),r(7158)):(n=[r(8019),r(2730),r(9054),r(5997),r(4760),r(2643),r(5258),r(4965),r(4183),r(2202),r(8542),r(4047),r(6947),r(8334),r(4135),r(1381),r(8832),r(9127),r(4651),r(8665),r(5218),r(8751),r(8676),r(1307),r(2819),r(6004),r(2469),r(5026),r(8143),r(2885),r(7274),r(5615),r(6768),r(2570),r(7158)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},9054:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return function(){if("function"==typeof ArrayBuffer){var t=e.lib.WordArray,r=t.init,o=t.init=function(e){if(e instanceof ArrayBuffer&&(e=new Uint8Array(e)),(e instanceof Int8Array||"undefined"!=typeof Uint8ClampedArray&&e instanceof Uint8ClampedArray||e instanceof Int16Array||e instanceof Uint16Array||e instanceof Int32Array||e instanceof Uint32Array||e instanceof Float32Array||e instanceof Float64Array)&&(e=new Uint8Array(e.buffer,e.byteOffset,e.byteLength)),e instanceof Uint8Array){for(var t=e.byteLength,o=[],n=0;n<t;n++)o[n>>>2]|=e[n]<<24-n%4*8;r.call(this,o,t)}else r.apply(this,arguments)};o.prototype=t}}(),e.lib.WordArray},"object"===s(t)?e.exports=t=i(r(8019)):(n=[r(8019)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},5258:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return function(t){var r=e,o=r.lib,n=o.WordArray,a=o.Hasher,i=r.algo,s=[];!function(){for(var e=0;e<64;e++)s[e]=4294967296*t.abs(t.sin(e+1))|0}();var c=i.MD5=a.extend({_doReset:function(){this._hash=new n.init([1732584193,4023233417,2562383102,271733878])},_doProcessBlock:function(e,t){for(var r=0;r<16;r++){var o=t+r,n=e[o];e[o]=16711935&(n<<8|n>>>24)|4278255360&(n<<24|n>>>8)}var a=this._hash.words,i=e[t+0],c=e[t+1],h=e[t+2],f=e[t+3],m=e[t+4],y=e[t+5],g=e[t+6],A=e[t+7],b=e[t+8],x=e[t+9],v=e[t+10],P=e[t+11],k=e[t+12],w=e[t+13],S=e[t+14],C=e[t+15],B=a[0],T=a[1],O=a[2],E=a[3];B=l(B,T,O,E,i,7,s[0]),E=l(E,B,T,O,c,12,s[1]),O=l(O,E,B,T,h,17,s[2]),T=l(T,O,E,B,f,22,s[3]),B=l(B,T,O,E,m,7,s[4]),E=l(E,B,T,O,y,12,s[5]),O=l(O,E,B,T,g,17,s[6]),T=l(T,O,E,B,A,22,s[7]),B=l(B,T,O,E,b,7,s[8]),E=l(E,B,T,O,x,12,s[9]),O=l(O,E,B,T,v,17,s[10]),T=l(T,O,E,B,P,22,s[11]),B=l(B,T,O,E,k,7,s[12]),E=l(E,B,T,O,w,12,s[13]),O=l(O,E,B,T,S,17,s[14]),B=u(B,T=l(T,O,E,B,C,22,s[15]),O,E,c,5,s[16]),E=u(E,B,T,O,g,9,s[17]),O=u(O,E,B,T,P,14,s[18]),T=u(T,O,E,B,i,20,s[19]),B=u(B,T,O,E,y,5,s[20]),E=u(E,B,T,O,v,9,s[21]),O=u(O,E,B,T,C,14,s[22]),T=u(T,O,E,B,m,20,s[23]),B=u(B,T,O,E,x,5,s[24]),E=u(E,B,T,O,S,9,s[25]),O=u(O,E,B,T,f,14,s[26]),T=u(T,O,E,B,b,20,s[27]),B=u(B,T,O,E,w,5,s[28]),E=u(E,B,T,O,h,9,s[29]),O=u(O,E,B,T,A,14,s[30]),B=p(B,T=u(T,O,E,B,k,20,s[31]),O,E,y,4,s[32]),E=p(E,B,T,O,b,11,s[33]),O=p(O,E,B,T,P,16,s[34]),T=p(T,O,E,B,S,23,s[35]),B=p(B,T,O,E,c,4,s[36]),E=p(E,B,T,O,m,11,s[37]),O=p(O,E,B,T,A,16,s[38]),T=p(T,O,E,B,v,23,s[39]),B=p(B,T,O,E,w,4,s[40]),E=p(E,B,T,O,i,11,s[41]),O=p(O,E,B,T,f,16,s[42]),T=p(T,O,E,B,g,23,s[43]),B=p(B,T,O,E,x,4,s[44]),E=p(E,B,T,O,k,11,s[45]),O=p(O,E,B,T,C,16,s[46]),B=d(B,T=p(T,O,E,B,h,23,s[47]),O,E,i,6,s[48]),E=d(E,B,T,O,A,10,s[49]),O=d(O,E,B,T,S,15,s[50]),T=d(T,O,E,B,y,21,s[51]),B=d(B,T,O,E,k,6,s[52]),E=d(E,B,T,O,f,10,s[53]),O=d(O,E,B,T,v,15,s[54]),T=d(T,O,E,B,c,21,s[55]),B=d(B,T,O,E,b,6,s[56]),E=d(E,B,T,O,C,10,s[57]),O=d(O,E,B,T,g,15,s[58]),T=d(T,O,E,B,w,21,s[59]),B=d(B,T,O,E,m,6,s[60]),E=d(E,B,T,O,P,10,s[61]),O=d(O,E,B,T,h,15,s[62]),T=d(T,O,E,B,x,21,s[63]),a[0]=a[0]+B|0,a[1]=a[1]+T|0,a[2]=a[2]+O|0,a[3]=a[3]+E|0},_doFinalize:function(){var e=this._data,r=e.words,o=8*this._nDataBytes,n=8*e.sigBytes;r[n>>>5]|=128<<24-n%32;var a=t.floor(o/4294967296),i=o;r[15+(n+64>>>9<<4)]=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8),r[14+(n+64>>>9<<4)]=16711935&(i<<8|i>>>24)|4278255360&(i<<24|i>>>8),e.sigBytes=4*(r.length+1),this._process();for(var s=this._hash,c=s.words,l=0;l<4;l++){var u=c[l];c[l]=16711935&(u<<8|u>>>24)|4278255360&(u<<24|u>>>8)}return s},clone:function(){var e=a.clone.call(this);return e._hash=this._hash.clone(),e}});function l(e,t,r,o,n,a,i){var s=e+(t&r|~t&o)+n+i;return(s<<a|s>>>32-a)+t}function u(e,t,r,o,n,a,i){var s=e+(t&o|r&~o)+n+i;return(s<<a|s>>>32-a)+t}function p(e,t,r,o,n,a,i){var s=e+(t^r^o)+n+i;return(s<<a|s>>>32-a)+t}function d(e,t,r,o,n,a,i){var s=e+(r^(t|~o))+n+i;return(s<<a|s>>>32-a)+t}r.MD5=a._createHelper(c),r.HmacMD5=a._createHmacHelper(c)}(Math),e.MD5},"object"===s(t)?e.exports=t=i(r(8019)):(n=[r(8019)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},4651:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return e.mode.CFB=function(){var t=e.lib.BlockCipherMode.extend();function r(e,t,r,o){var n,a=this._iv;a?(n=a.slice(0),this._iv=void 0):n=this._prevBlock,o.encryptBlock(n,0);for(var i=0;i<r;i++)e[t+i]^=n[i]}return t.Encryptor=t.extend({processBlock:function(e,t){var o=this._cipher,n=o.blockSize;r.call(this,e,t,n,o),this._prevBlock=e.slice(t,t+n)}}),t.Decryptor=t.extend({processBlock:function(e,t){var o=this._cipher,n=o.blockSize,a=e.slice(t,t+n);r.call(this,e,t,n,o),this._prevBlock=a}}),t}(),e.mode.CFB},"object"===s(t)?e.exports=t=i(r(8019),r(9127)):(n=[r(8019),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},5218:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return e.mode.CTRGladman=function(){var t=e.lib.BlockCipherMode.extend();function r(e){if(255&~(e>>24))e+=1<<24;else{var t=e>>16&255,r=e>>8&255,o=255&e;255===t?(t=0,255===r?(r=0,255===o?o=0:++o):++r):++t,e=0,e+=t<<16,e+=r<<8,e+=o}return e}var o=t.Encryptor=t.extend({processBlock:function(e,t){var o=this._cipher,n=o.blockSize,a=this._iv,i=this._counter;a&&(i=this._counter=a.slice(0),this._iv=void 0),function(e){0===(e[0]=r(e[0]))&&(e[1]=r(e[1]))}(i);var s=i.slice(0);o.encryptBlock(s,0);for(var c=0;c<n;c++)e[t+c]^=s[c]}});return t.Decryptor=o,t}(),e.mode.CTRGladman},"object"===s(t)?e.exports=t=i(r(8019),r(9127)):(n=[r(8019),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},8665:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t,r;return e.mode.CTR=(r=(t=e.lib.BlockCipherMode.extend()).Encryptor=t.extend({processBlock:function(e,t){var r=this._cipher,o=r.blockSize,n=this._iv,a=this._counter;n&&(a=this._counter=n.slice(0),this._iv=void 0);var i=a.slice(0);r.encryptBlock(i,0),a[o-1]=a[o-1]+1|0;for(var s=0;s<o;s++)e[t+s]^=i[s]}}),t.Decryptor=r,t),e.mode.CTR},"object"===s(t)?e.exports=t=i(r(8019),r(9127)):(n=[r(8019),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},8676:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t;return e.mode.ECB=((t=e.lib.BlockCipherMode.extend()).Encryptor=t.extend({processBlock:function(e,t){this._cipher.encryptBlock(e,t)}}),t.Decryptor=t.extend({processBlock:function(e,t){this._cipher.decryptBlock(e,t)}}),t),e.mode.ECB},"object"===s(t)?e.exports=t=i(r(8019),r(9127)):(n=[r(8019),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},8751:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t,r;return e.mode.OFB=(r=(t=e.lib.BlockCipherMode.extend()).Encryptor=t.extend({processBlock:function(e,t){var r=this._cipher,o=r.blockSize,n=this._iv,a=this._keystream;n&&(a=this._keystream=n.slice(0),this._iv=void 0),r.encryptBlock(a,0);for(var i=0;i<o;i++)e[t+i]^=a[i]}}),t.Decryptor=r,t),e.mode.OFB},"object"===s(t)?e.exports=t=i(r(8019),r(9127)):(n=[r(8019),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},1307:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return e.pad.AnsiX923={pad:function(e,t){var r=e.sigBytes,o=4*t,n=o-r%o,a=r+n-1;e.clamp(),e.words[a>>>2]|=n<<24-a%4*8,e.sigBytes+=n},unpad:function(e){var t=255&e.words[e.sigBytes-1>>>2];e.sigBytes-=t}},e.pad.Ansix923},"object"===s(t)?e.exports=t=i(r(8019),r(9127)):(n=[r(8019),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},2819:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return e.pad.Iso10126={pad:function(t,r){var o=4*r,n=o-t.sigBytes%o;t.concat(e.lib.WordArray.random(n-1)).concat(e.lib.WordArray.create([n<<24],1))},unpad:function(e){var t=255&e.words[e.sigBytes-1>>>2];e.sigBytes-=t}},e.pad.Iso10126},"object"===s(t)?e.exports=t=i(r(8019),r(9127)):(n=[r(8019),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},6004:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return e.pad.Iso97971={pad:function(t,r){t.concat(e.lib.WordArray.create([2147483648],1)),e.pad.ZeroPadding.pad(t,r)},unpad:function(t){e.pad.ZeroPadding.unpad(t),t.sigBytes--}},e.pad.Iso97971},"object"===s(t)?e.exports=t=i(r(8019),r(9127)):(n=[r(8019),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},5026:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return e.pad.NoPadding={pad:function(){},unpad:function(){}},e.pad.NoPadding},"object"===s(t)?e.exports=t=i(r(8019),r(9127)):(n=[r(8019),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},2469:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return e.pad.ZeroPadding={pad:function(e,t){var r=4*t;e.clamp(),e.sigBytes+=r-(e.sigBytes%r||r)},unpad:function(e){var t=e.words,r=e.sigBytes-1;for(r=e.sigBytes-1;r>=0;r--)if(t[r>>>2]>>>24-r%4*8&255){e.sigBytes=r+1;break}}},e.pad.ZeroPadding},"object"===s(t)?e.exports=t=i(r(8019),r(9127)):(n=[r(8019),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},1381:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t,r,o,n,a,i,s,c;return o=(r=(t=e).lib).Base,n=r.WordArray,i=(a=t.algo).SHA256,s=a.HMAC,c=a.PBKDF2=o.extend({cfg:o.extend({keySize:4,hasher:i,iterations:25e4}),init:function(e){this.cfg=this.cfg.extend(e)},compute:function(e,t){for(var r=this.cfg,o=s.create(r.hasher,e),a=n.create(),i=n.create([1]),c=a.words,l=i.words,u=r.keySize,p=r.iterations;c.length<u;){var d=o.update(t).finalize(i);o.reset();for(var h=d.words,f=h.length,m=d,y=1;y<p;y++){m=o.finalize(m),o.reset();for(var g=m.words,A=0;A<f;A++)h[A]^=g[A]}a.concat(d),l[0]++}return a.sigBytes=4*u,a}}),t.PBKDF2=function(e,t,r){return c.create(r).compute(e,t)},e.PBKDF2},"object"===s(t)?e.exports=t=i(r(8019),r(4183),r(4135)):(n=[r(8019),r(4183),r(4135)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},2570:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return function(){var t=e,r=t.lib.StreamCipher,o=t.algo,n=[],a=[],i=[],s=o.RabbitLegacy=r.extend({_doReset:function(){var e=this._key.words,t=this.cfg.iv,r=this._X=[e[0],e[3]<<16|e[2]>>>16,e[1],e[0]<<16|e[3]>>>16,e[2],e[1]<<16|e[0]>>>16,e[3],e[2]<<16|e[1]>>>16],o=this._C=[e[2]<<16|e[2]>>>16,4294901760&e[0]|65535&e[1],e[3]<<16|e[3]>>>16,4294901760&e[1]|65535&e[2],e[0]<<16|e[0]>>>16,4294901760&e[2]|65535&e[3],e[1]<<16|e[1]>>>16,4294901760&e[3]|65535&e[0]];this._b=0;for(var n=0;n<4;n++)c.call(this);for(n=0;n<8;n++)o[n]^=r[n+4&7];if(t){var a=t.words,i=a[0],s=a[1],l=16711935&(i<<8|i>>>24)|4278255360&(i<<24|i>>>8),u=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),p=l>>>16|4294901760&u,d=u<<16|65535&l;for(o[0]^=l,o[1]^=p,o[2]^=u,o[3]^=d,o[4]^=l,o[5]^=p,o[6]^=u,o[7]^=d,n=0;n<4;n++)c.call(this)}},_doProcessBlock:function(e,t){var r=this._X;c.call(this),n[0]=r[0]^r[5]>>>16^r[3]<<16,n[1]=r[2]^r[7]>>>16^r[5]<<16,n[2]=r[4]^r[1]>>>16^r[7]<<16,n[3]=r[6]^r[3]>>>16^r[1]<<16;for(var o=0;o<4;o++)n[o]=16711935&(n[o]<<8|n[o]>>>24)|4278255360&(n[o]<<24|n[o]>>>8),e[t+o]^=n[o]},blockSize:4,ivSize:2});function c(){for(var e=this._X,t=this._C,r=0;r<8;r++)a[r]=t[r];for(t[0]=t[0]+1295307597+this._b|0,t[1]=t[1]+3545052371+(t[0]>>>0<a[0]>>>0?1:0)|0,t[2]=t[2]+886263092+(t[1]>>>0<a[1]>>>0?1:0)|0,t[3]=t[3]+1295307597+(t[2]>>>0<a[2]>>>0?1:0)|0,t[4]=t[4]+3545052371+(t[3]>>>0<a[3]>>>0?1:0)|0,t[5]=t[5]+886263092+(t[4]>>>0<a[4]>>>0?1:0)|0,t[6]=t[6]+1295307597+(t[5]>>>0<a[5]>>>0?1:0)|0,t[7]=t[7]+3545052371+(t[6]>>>0<a[6]>>>0?1:0)|0,this._b=t[7]>>>0<a[7]>>>0?1:0,r=0;r<8;r++){var o=e[r]+t[r],n=65535&o,s=o>>>16,c=((n*n>>>17)+n*s>>>15)+s*s,l=((4294901760&o)*o|0)+((65535&o)*o|0);i[r]=c^l}e[0]=i[0]+(i[7]<<16|i[7]>>>16)+(i[6]<<16|i[6]>>>16)|0,e[1]=i[1]+(i[0]<<8|i[0]>>>24)+i[7]|0,e[2]=i[2]+(i[1]<<16|i[1]>>>16)+(i[0]<<16|i[0]>>>16)|0,e[3]=i[3]+(i[2]<<8|i[2]>>>24)+i[1]|0,e[4]=i[4]+(i[3]<<16|i[3]>>>16)+(i[2]<<16|i[2]>>>16)|0,e[5]=i[5]+(i[4]<<8|i[4]>>>24)+i[3]|0,e[6]=i[6]+(i[5]<<16|i[5]>>>16)+(i[4]<<16|i[4]>>>16)|0,e[7]=i[7]+(i[6]<<8|i[6]>>>24)+i[5]|0}t.RabbitLegacy=r._createHelper(s)}(),e.RabbitLegacy},"object"===s(t)?e.exports=t=i(r(8019),r(4760),r(5258),r(8832),r(9127)):(n=[r(8019),r(4760),r(5258),r(8832),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},6768:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return function(){var t=e,r=t.lib.StreamCipher,o=t.algo,n=[],a=[],i=[],s=o.Rabbit=r.extend({_doReset:function(){for(var e=this._key.words,t=this.cfg.iv,r=0;r<4;r++)e[r]=16711935&(e[r]<<8|e[r]>>>24)|4278255360&(e[r]<<24|e[r]>>>8);var o=this._X=[e[0],e[3]<<16|e[2]>>>16,e[1],e[0]<<16|e[3]>>>16,e[2],e[1]<<16|e[0]>>>16,e[3],e[2]<<16|e[1]>>>16],n=this._C=[e[2]<<16|e[2]>>>16,4294901760&e[0]|65535&e[1],e[3]<<16|e[3]>>>16,4294901760&e[1]|65535&e[2],e[0]<<16|e[0]>>>16,4294901760&e[2]|65535&e[3],e[1]<<16|e[1]>>>16,4294901760&e[3]|65535&e[0]];for(this._b=0,r=0;r<4;r++)c.call(this);for(r=0;r<8;r++)n[r]^=o[r+4&7];if(t){var a=t.words,i=a[0],s=a[1],l=16711935&(i<<8|i>>>24)|4278255360&(i<<24|i>>>8),u=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8),p=l>>>16|4294901760&u,d=u<<16|65535&l;for(n[0]^=l,n[1]^=p,n[2]^=u,n[3]^=d,n[4]^=l,n[5]^=p,n[6]^=u,n[7]^=d,r=0;r<4;r++)c.call(this)}},_doProcessBlock:function(e,t){var r=this._X;c.call(this),n[0]=r[0]^r[5]>>>16^r[3]<<16,n[1]=r[2]^r[7]>>>16^r[5]<<16,n[2]=r[4]^r[1]>>>16^r[7]<<16,n[3]=r[6]^r[3]>>>16^r[1]<<16;for(var o=0;o<4;o++)n[o]=16711935&(n[o]<<8|n[o]>>>24)|4278255360&(n[o]<<24|n[o]>>>8),e[t+o]^=n[o]},blockSize:4,ivSize:2});function c(){for(var e=this._X,t=this._C,r=0;r<8;r++)a[r]=t[r];for(t[0]=t[0]+1295307597+this._b|0,t[1]=t[1]+3545052371+(t[0]>>>0<a[0]>>>0?1:0)|0,t[2]=t[2]+886263092+(t[1]>>>0<a[1]>>>0?1:0)|0,t[3]=t[3]+1295307597+(t[2]>>>0<a[2]>>>0?1:0)|0,t[4]=t[4]+3545052371+(t[3]>>>0<a[3]>>>0?1:0)|0,t[5]=t[5]+886263092+(t[4]>>>0<a[4]>>>0?1:0)|0,t[6]=t[6]+1295307597+(t[5]>>>0<a[5]>>>0?1:0)|0,t[7]=t[7]+3545052371+(t[6]>>>0<a[6]>>>0?1:0)|0,this._b=t[7]>>>0<a[7]>>>0?1:0,r=0;r<8;r++){var o=e[r]+t[r],n=65535&o,s=o>>>16,c=((n*n>>>17)+n*s>>>15)+s*s,l=((4294901760&o)*o|0)+((65535&o)*o|0);i[r]=c^l}e[0]=i[0]+(i[7]<<16|i[7]>>>16)+(i[6]<<16|i[6]>>>16)|0,e[1]=i[1]+(i[0]<<8|i[0]>>>24)+i[7]|0,e[2]=i[2]+(i[1]<<16|i[1]>>>16)+(i[0]<<16|i[0]>>>16)|0,e[3]=i[3]+(i[2]<<8|i[2]>>>24)+i[1]|0,e[4]=i[4]+(i[3]<<16|i[3]>>>16)+(i[2]<<16|i[2]>>>16)|0,e[5]=i[5]+(i[4]<<8|i[4]>>>24)+i[3]|0,e[6]=i[6]+(i[5]<<16|i[5]>>>16)+(i[4]<<16|i[4]>>>16)|0,e[7]=i[7]+(i[6]<<8|i[6]>>>24)+i[5]|0}t.Rabbit=r._createHelper(s)}(),e.Rabbit},"object"===s(t)?e.exports=t=i(r(8019),r(4760),r(5258),r(8832),r(9127)):(n=[r(8019),r(4760),r(5258),r(8832),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},5615:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return function(){var t=e,r=t.lib.StreamCipher,o=t.algo,n=o.RC4=r.extend({_doReset:function(){for(var e=this._key,t=e.words,r=e.sigBytes,o=this._S=[],n=0;n<256;n++)o[n]=n;n=0;for(var a=0;n<256;n++){var i=n%r,s=t[i>>>2]>>>24-i%4*8&255;a=(a+o[n]+s)%256;var c=o[n];o[n]=o[a],o[a]=c}this._i=this._j=0},_doProcessBlock:function(e,t){e[t]^=a.call(this)},keySize:8,ivSize:0});function a(){for(var e=this._S,t=this._i,r=this._j,o=0,n=0;n<4;n++){r=(r+e[t=(t+1)%256])%256;var a=e[t];e[t]=e[r],e[r]=a,o|=e[(e[t]+e[r])%256]<<24-8*n}return this._i=t,this._j=r,o}t.RC4=r._createHelper(n);var i=o.RC4Drop=n.extend({cfg:n.cfg.extend({drop:192}),_doReset:function(){n._doReset.call(this);for(var e=this.cfg.drop;e>0;e--)a.call(this)}});t.RC4Drop=r._createHelper(i)}(),e.RC4},"object"===s(t)?e.exports=t=i(r(8019),r(4760),r(5258),r(8832),r(9127)):(n=[r(8019),r(4760),r(5258),r(8832),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},8334:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return function(t){var r=e,o=r.lib,n=o.WordArray,a=o.Hasher,i=r.algo,s=n.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]),c=n.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]),l=n.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]),u=n.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]),p=n.create([0,1518500249,1859775393,2400959708,2840853838]),d=n.create([1352829926,1548603684,1836072691,2053994217,0]),h=i.RIPEMD160=a.extend({_doReset:function(){this._hash=n.create([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(e,t){for(var r=0;r<16;r++){var o=t+r,n=e[o];e[o]=16711935&(n<<8|n>>>24)|4278255360&(n<<24|n>>>8)}var a,i,h,x,v,P,k,w,S,C,B,T=this._hash.words,O=p.words,E=d.words,M=s.words,R=c.words,I=l.words,j=u.words;for(P=a=T[0],k=i=T[1],w=h=T[2],S=x=T[3],C=v=T[4],r=0;r<80;r+=1)B=a+e[t+M[r]]|0,B+=r<16?f(i,h,x)+O[0]:r<32?m(i,h,x)+O[1]:r<48?y(i,h,x)+O[2]:r<64?g(i,h,x)+O[3]:A(i,h,x)+O[4],B=(B=b(B|=0,I[r]))+v|0,a=v,v=x,x=b(h,10),h=i,i=B,B=P+e[t+R[r]]|0,B+=r<16?A(k,w,S)+E[0]:r<32?g(k,w,S)+E[1]:r<48?y(k,w,S)+E[2]:r<64?m(k,w,S)+E[3]:f(k,w,S)+E[4],B=(B=b(B|=0,j[r]))+C|0,P=C,C=S,S=b(w,10),w=k,k=B;B=T[1]+h+S|0,T[1]=T[2]+x+C|0,T[2]=T[3]+v+P|0,T[3]=T[4]+a+k|0,T[4]=T[0]+i+w|0,T[0]=B},_doFinalize:function(){var e=this._data,t=e.words,r=8*this._nDataBytes,o=8*e.sigBytes;t[o>>>5]|=128<<24-o%32,t[14+(o+64>>>9<<4)]=16711935&(r<<8|r>>>24)|4278255360&(r<<24|r>>>8),e.sigBytes=4*(t.length+1),this._process();for(var n=this._hash,a=n.words,i=0;i<5;i++){var s=a[i];a[i]=16711935&(s<<8|s>>>24)|4278255360&(s<<24|s>>>8)}return n},clone:function(){var e=a.clone.call(this);return e._hash=this._hash.clone(),e}});function f(e,t,r){return e^t^r}function m(e,t,r){return e&t|~e&r}function y(e,t,r){return(e|~t)^r}function g(e,t,r){return e&r|t&~r}function A(e,t,r){return e^(t|~r)}function b(e,t){return e<<t|e>>>32-t}r.RIPEMD160=a._createHelper(h),r.HmacRIPEMD160=a._createHmacHelper(h)}(Math),e.RIPEMD160},"object"===s(t)?e.exports=t=i(r(8019)):(n=[r(8019)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},4965:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t,r,o,n,a,i,s;return r=(t=e).lib,o=r.WordArray,n=r.Hasher,a=t.algo,i=[],s=a.SHA1=n.extend({_doReset:function(){this._hash=new o.init([1732584193,4023233417,2562383102,271733878,3285377520])},_doProcessBlock:function(e,t){for(var r=this._hash.words,o=r[0],n=r[1],a=r[2],s=r[3],c=r[4],l=0;l<80;l++){if(l<16)i[l]=0|e[t+l];else{var u=i[l-3]^i[l-8]^i[l-14]^i[l-16];i[l]=u<<1|u>>>31}var p=(o<<5|o>>>27)+c+i[l];p+=l<20?1518500249+(n&a|~n&s):l<40?1859775393+(n^a^s):l<60?(n&a|n&s|a&s)-1894007588:(n^a^s)-899497514,c=s,s=a,a=n<<30|n>>>2,n=o,o=p}r[0]=r[0]+o|0,r[1]=r[1]+n|0,r[2]=r[2]+a|0,r[3]=r[3]+s|0,r[4]=r[4]+c|0},_doFinalize:function(){var e=this._data,t=e.words,r=8*this._nDataBytes,o=8*e.sigBytes;return t[o>>>5]|=128<<24-o%32,t[14+(o+64>>>9<<4)]=Math.floor(r/4294967296),t[15+(o+64>>>9<<4)]=r,e.sigBytes=4*t.length,this._process(),this._hash},clone:function(){var e=n.clone.call(this);return e._hash=this._hash.clone(),e}}),t.SHA1=n._createHelper(s),t.HmacSHA1=n._createHmacHelper(s),e.SHA1},"object"===s(t)?e.exports=t=i(r(8019)):(n=[r(8019)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},2202:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t,r,o,n,a;return r=(t=e).lib.WordArray,o=t.algo,n=o.SHA256,a=o.SHA224=n.extend({_doReset:function(){this._hash=new r.init([3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428])},_doFinalize:function(){var e=n._doFinalize.call(this);return e.sigBytes-=4,e}}),t.SHA224=n._createHelper(a),t.HmacSHA224=n._createHmacHelper(a),e.SHA224},"object"===s(t)?e.exports=t=i(r(8019),r(4183)):(n=[r(8019),r(4183)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},4183:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return function(t){var r=e,o=r.lib,n=o.WordArray,a=o.Hasher,i=r.algo,s=[],c=[];!function(){function e(e){for(var r=t.sqrt(e),o=2;o<=r;o++)if(!(e%o))return!1;return!0}function r(e){return 4294967296*(e-(0|e))|0}for(var o=2,n=0;n<64;)e(o)&&(n<8&&(s[n]=r(t.pow(o,.5))),c[n]=r(t.pow(o,1/3)),n++),o++}();var l=[],u=i.SHA256=a.extend({_doReset:function(){this._hash=new n.init(s.slice(0))},_doProcessBlock:function(e,t){for(var r=this._hash.words,o=r[0],n=r[1],a=r[2],i=r[3],s=r[4],u=r[5],p=r[6],d=r[7],h=0;h<64;h++){if(h<16)l[h]=0|e[t+h];else{var f=l[h-15],m=(f<<25|f>>>7)^(f<<14|f>>>18)^f>>>3,y=l[h-2],g=(y<<15|y>>>17)^(y<<13|y>>>19)^y>>>10;l[h]=m+l[h-7]+g+l[h-16]}var A=o&n^o&a^n&a,b=(o<<30|o>>>2)^(o<<19|o>>>13)^(o<<10|o>>>22),x=d+((s<<26|s>>>6)^(s<<21|s>>>11)^(s<<7|s>>>25))+(s&u^~s&p)+c[h]+l[h];d=p,p=u,u=s,s=i+x|0,i=a,a=n,n=o,o=x+(b+A)|0}r[0]=r[0]+o|0,r[1]=r[1]+n|0,r[2]=r[2]+a|0,r[3]=r[3]+i|0,r[4]=r[4]+s|0,r[5]=r[5]+u|0,r[6]=r[6]+p|0,r[7]=r[7]+d|0},_doFinalize:function(){var e=this._data,r=e.words,o=8*this._nDataBytes,n=8*e.sigBytes;return r[n>>>5]|=128<<24-n%32,r[14+(n+64>>>9<<4)]=t.floor(o/4294967296),r[15+(n+64>>>9<<4)]=o,e.sigBytes=4*r.length,this._process(),this._hash},clone:function(){var e=a.clone.call(this);return e._hash=this._hash.clone(),e}});r.SHA256=a._createHelper(u),r.HmacSHA256=a._createHmacHelper(u)}(Math),e.SHA256},"object"===s(t)?e.exports=t=i(r(8019)):(n=[r(8019)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},6947:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return function(t){var r=e,o=r.lib,n=o.WordArray,a=o.Hasher,i=r.x64.Word,s=r.algo,c=[],l=[],u=[];!function(){for(var e=1,t=0,r=0;r<24;r++){c[e+5*t]=(r+1)*(r+2)/2%64;var o=(2*e+3*t)%5;e=t%5,t=o}for(e=0;e<5;e++)for(t=0;t<5;t++)l[e+5*t]=t+(2*e+3*t)%5*5;for(var n=1,a=0;a<24;a++){for(var s=0,p=0,d=0;d<7;d++){if(1&n){var h=(1<<d)-1;h<32?p^=1<<h:s^=1<<h-32}128&n?n=n<<1^113:n<<=1}u[a]=i.create(s,p)}}();var p=[];!function(){for(var e=0;e<25;e++)p[e]=i.create()}();var d=s.SHA3=a.extend({cfg:a.cfg.extend({outputLength:512}),_doReset:function(){for(var e=this._state=[],t=0;t<25;t++)e[t]=new i.init;this.blockSize=(1600-2*this.cfg.outputLength)/32},_doProcessBlock:function(e,t){for(var r=this._state,o=this.blockSize/2,n=0;n<o;n++){var a=e[t+2*n],i=e[t+2*n+1];a=16711935&(a<<8|a>>>24)|4278255360&(a<<24|a>>>8),i=16711935&(i<<8|i>>>24)|4278255360&(i<<24|i>>>8),(T=r[n]).high^=i,T.low^=a}for(var s=0;s<24;s++){for(var d=0;d<5;d++){for(var h=0,f=0,m=0;m<5;m++)h^=(T=r[d+5*m]).high,f^=T.low;var y=p[d];y.high=h,y.low=f}for(d=0;d<5;d++){var g=p[(d+4)%5],A=p[(d+1)%5],b=A.high,x=A.low;for(h=g.high^(b<<1|x>>>31),f=g.low^(x<<1|b>>>31),m=0;m<5;m++)(T=r[d+5*m]).high^=h,T.low^=f}for(var v=1;v<25;v++){var P=(T=r[v]).high,k=T.low,w=c[v];w<32?(h=P<<w|k>>>32-w,f=k<<w|P>>>32-w):(h=k<<w-32|P>>>64-w,f=P<<w-32|k>>>64-w);var S=p[l[v]];S.high=h,S.low=f}var C=p[0],B=r[0];for(C.high=B.high,C.low=B.low,d=0;d<5;d++)for(m=0;m<5;m++){var T=r[v=d+5*m],O=p[v],E=p[(d+1)%5+5*m],M=p[(d+2)%5+5*m];T.high=O.high^~E.high&M.high,T.low=O.low^~E.low&M.low}T=r[0];var R=u[s];T.high^=R.high,T.low^=R.low}},_doFinalize:function(){var e=this._data,r=e.words,o=(this._nDataBytes,8*e.sigBytes),a=32*this.blockSize;r[o>>>5]|=1<<24-o%32,r[(t.ceil((o+1)/a)*a>>>5)-1]|=128,e.sigBytes=4*r.length,this._process();for(var i=this._state,s=this.cfg.outputLength/8,c=s/8,l=[],u=0;u<c;u++){var p=i[u],d=p.high,h=p.low;d=16711935&(d<<8|d>>>24)|4278255360&(d<<24|d>>>8),h=16711935&(h<<8|h>>>24)|4278255360&(h<<24|h>>>8),l.push(h),l.push(d)}return new n.init(l,s)},clone:function(){for(var e=a.clone.call(this),t=e._state=this._state.slice(0),r=0;r<25;r++)t[r]=t[r].clone();return e}});r.SHA3=a._createHelper(d),r.HmacSHA3=a._createHmacHelper(d)}(Math),e.SHA3},"object"===s(t)?e.exports=t=i(r(8019),r(2730)):(n=[r(8019),r(2730)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},4047:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t,r,o,n,a,i,s;return r=(t=e).x64,o=r.Word,n=r.WordArray,a=t.algo,i=a.SHA512,s=a.SHA384=i.extend({_doReset:function(){this._hash=new n.init([new o.init(3418070365,3238371032),new o.init(1654270250,914150663),new o.init(2438529370,812702999),new o.init(355462360,4144912697),new o.init(1731405415,4290775857),new o.init(2394180231,1750603025),new o.init(3675008525,1694076839),new o.init(1203062813,3204075428)])},_doFinalize:function(){var e=i._doFinalize.call(this);return e.sigBytes-=16,e}}),t.SHA384=i._createHelper(s),t.HmacSHA384=i._createHmacHelper(s),e.SHA384},"object"===s(t)?e.exports=t=i(r(8019),r(2730),r(8542)):(n=[r(8019),r(2730),r(8542)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},8542:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return function(){var t=e,r=t.lib.Hasher,o=t.x64,n=o.Word,a=o.WordArray,i=t.algo;function s(){return n.create.apply(n,arguments)}var c=[s(1116352408,3609767458),s(1899447441,602891725),s(3049323471,3964484399),s(3921009573,2173295548),s(961987163,4081628472),s(1508970993,3053834265),s(2453635748,2937671579),s(2870763221,3664609560),s(3624381080,2734883394),s(310598401,1164996542),s(607225278,1323610764),s(1426881987,3590304994),s(1925078388,4068182383),s(2162078206,991336113),s(2614888103,633803317),s(3248222580,3479774868),s(3835390401,2666613458),s(4022224774,944711139),s(264347078,2341262773),s(604807628,2007800933),s(770255983,1495990901),s(1249150122,1856431235),s(1555081692,3175218132),s(1996064986,2198950837),s(2554220882,3999719339),s(2821834349,766784016),s(2952996808,2566594879),s(3210313671,3203337956),s(3336571891,1034457026),s(3584528711,2466948901),s(113926993,3758326383),s(338241895,168717936),s(666307205,1188179964),s(773529912,1546045734),s(1294757372,1522805485),s(1396182291,2643833823),s(1695183700,2343527390),s(1986661051,1014477480),s(2177026350,1206759142),s(2456956037,344077627),s(2730485921,1290863460),s(2820302411,3158454273),s(3259730800,3505952657),s(3345764771,106217008),s(3516065817,3606008344),s(3600352804,1432725776),s(4094571909,1467031594),s(275423344,851169720),s(430227734,3100823752),s(506948616,1363258195),s(659060556,3750685593),s(883997877,3785050280),s(958139571,3318307427),s(1322822218,3812723403),s(1537002063,2003034995),s(1747873779,3602036899),s(1955562222,1575990012),s(2024104815,1125592928),s(2227730452,2716904306),s(2361852424,442776044),s(2428436474,593698344),s(2756734187,3733110249),s(3204031479,2999351573),s(3329325298,3815920427),s(3391569614,3928383900),s(3515267271,566280711),s(3940187606,3454069534),s(4118630271,4000239992),s(116418474,1914138554),s(174292421,2731055270),s(289380356,3203993006),s(460393269,320620315),s(685471733,587496836),s(852142971,1086792851),s(1017036298,365543100),s(1126000580,2618297676),s(1288033470,3409855158),s(1501505948,4234509866),s(1607167915,987167468),s(1816402316,1246189591)],l=[];!function(){for(var e=0;e<80;e++)l[e]=s()}();var u=i.SHA512=r.extend({_doReset:function(){this._hash=new a.init([new n.init(1779033703,4089235720),new n.init(3144134277,2227873595),new n.init(1013904242,4271175723),new n.init(2773480762,1595750129),new n.init(1359893119,2917565137),new n.init(2600822924,725511199),new n.init(528734635,4215389547),new n.init(1541459225,327033209)])},_doProcessBlock:function(e,t){for(var r=this._hash.words,o=r[0],n=r[1],a=r[2],i=r[3],s=r[4],u=r[5],p=r[6],d=r[7],h=o.high,f=o.low,m=n.high,y=n.low,g=a.high,A=a.low,b=i.high,x=i.low,v=s.high,P=s.low,k=u.high,w=u.low,S=p.high,C=p.low,B=d.high,T=d.low,O=h,E=f,M=m,R=y,I=g,j=A,D=b,_=x,L=v,q=P,U=k,G=w,N=S,F=C,H=B,z=T,K=0;K<80;K++){var W,V,Q=l[K];if(K<16)V=Q.high=0|e[t+2*K],W=Q.low=0|e[t+2*K+1];else{var X=l[K-15],$=X.high,Y=X.low,Z=($>>>1|Y<<31)^($>>>8|Y<<24)^$>>>7,J=(Y>>>1|$<<31)^(Y>>>8|$<<24)^(Y>>>7|$<<25),ee=l[K-2],te=ee.high,re=ee.low,oe=(te>>>19|re<<13)^(te<<3|re>>>29)^te>>>6,ne=(re>>>19|te<<13)^(re<<3|te>>>29)^(re>>>6|te<<26),ae=l[K-7],ie=ae.high,se=ae.low,ce=l[K-16],le=ce.high,ue=ce.low;V=(V=(V=Z+ie+((W=J+se)>>>0<J>>>0?1:0))+oe+((W+=ne)>>>0<ne>>>0?1:0))+le+((W+=ue)>>>0<ue>>>0?1:0),Q.high=V,Q.low=W}var pe,de=L&U^~L&N,he=q&G^~q&F,fe=O&M^O&I^M&I,me=E&R^E&j^R&j,ye=(O>>>28|E<<4)^(O<<30|E>>>2)^(O<<25|E>>>7),ge=(E>>>28|O<<4)^(E<<30|O>>>2)^(E<<25|O>>>7),Ae=(L>>>14|q<<18)^(L>>>18|q<<14)^(L<<23|q>>>9),be=(q>>>14|L<<18)^(q>>>18|L<<14)^(q<<23|L>>>9),xe=c[K],ve=xe.high,Pe=xe.low,ke=H+Ae+((pe=z+be)>>>0<z>>>0?1:0),we=ge+me;H=N,z=F,N=U,F=G,U=L,G=q,L=D+(ke=(ke=(ke=ke+de+((pe+=he)>>>0<he>>>0?1:0))+ve+((pe+=Pe)>>>0<Pe>>>0?1:0))+V+((pe+=W)>>>0<W>>>0?1:0))+((q=_+pe|0)>>>0<_>>>0?1:0)|0,D=I,_=j,I=M,j=R,M=O,R=E,O=ke+(ye+fe+(we>>>0<ge>>>0?1:0))+((E=pe+we|0)>>>0<pe>>>0?1:0)|0}f=o.low=f+E,o.high=h+O+(f>>>0<E>>>0?1:0),y=n.low=y+R,n.high=m+M+(y>>>0<R>>>0?1:0),A=a.low=A+j,a.high=g+I+(A>>>0<j>>>0?1:0),x=i.low=x+_,i.high=b+D+(x>>>0<_>>>0?1:0),P=s.low=P+q,s.high=v+L+(P>>>0<q>>>0?1:0),w=u.low=w+G,u.high=k+U+(w>>>0<G>>>0?1:0),C=p.low=C+F,p.high=S+N+(C>>>0<F>>>0?1:0),T=d.low=T+z,d.high=B+H+(T>>>0<z>>>0?1:0)},_doFinalize:function(){var e=this._data,t=e.words,r=8*this._nDataBytes,o=8*e.sigBytes;return t[o>>>5]|=128<<24-o%32,t[30+(o+128>>>10<<5)]=Math.floor(r/4294967296),t[31+(o+128>>>10<<5)]=r,e.sigBytes=4*t.length,this._process(),this._hash.toX32()},clone:function(){var e=r.clone.call(this);return e._hash=this._hash.clone(),e},blockSize:32});t.SHA512=r._createHelper(u),t.HmacSHA512=r._createHmacHelper(u)}(),e.SHA512},"object"===s(t)?e.exports=t=i(r(8019),r(2730)):(n=[r(8019),r(2730)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},7274:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){return function(){var t=e,r=t.lib,o=r.WordArray,n=r.BlockCipher,a=t.algo,i=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4],s=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32],c=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28],l=[{0:8421888,268435456:32768,536870912:8421378,805306368:2,1073741824:512,1342177280:8421890,1610612736:8389122,1879048192:8388608,2147483648:514,2415919104:8389120,2684354560:33280,2952790016:8421376,3221225472:32770,3489660928:8388610,3758096384:0,4026531840:33282,134217728:0,402653184:8421890,671088640:33282,939524096:32768,1207959552:8421888,1476395008:512,1744830464:8421378,2013265920:2,2281701376:8389120,2550136832:33280,2818572288:8421376,3087007744:8389122,3355443200:8388610,3623878656:32770,3892314112:514,4160749568:8388608,1:32768,268435457:2,536870913:8421888,805306369:8388608,1073741825:8421378,1342177281:33280,1610612737:512,1879048193:8389122,2147483649:8421890,2415919105:8421376,2684354561:8388610,2952790017:33282,3221225473:514,3489660929:8389120,3758096385:32770,4026531841:0,134217729:8421890,402653185:8421376,671088641:8388608,939524097:512,1207959553:32768,1476395009:8388610,1744830465:2,2013265921:33282,2281701377:32770,2550136833:8389122,2818572289:514,3087007745:8421888,3355443201:8389120,3623878657:0,3892314113:33280,4160749569:8421378},{0:1074282512,16777216:16384,33554432:524288,50331648:1074266128,67108864:1073741840,83886080:1074282496,100663296:1073758208,117440512:16,134217728:540672,150994944:1073758224,167772160:1073741824,184549376:540688,201326592:524304,218103808:0,234881024:16400,251658240:1074266112,8388608:1073758208,25165824:540688,41943040:16,58720256:1073758224,75497472:1074282512,92274688:1073741824,109051904:524288,125829120:1074266128,142606336:524304,159383552:0,176160768:16384,192937984:1074266112,209715200:1073741840,226492416:540672,243269632:1074282496,260046848:16400,268435456:0,285212672:1074266128,301989888:1073758224,318767104:1074282496,335544320:1074266112,352321536:16,369098752:540688,385875968:16384,402653184:16400,419430400:524288,436207616:524304,452984832:1073741840,469762048:540672,486539264:1073758208,503316480:1073741824,520093696:1074282512,276824064:540688,293601280:524288,310378496:1074266112,327155712:16384,343932928:1073758208,360710144:1074282512,377487360:16,394264576:1073741824,411041792:1074282496,427819008:1073741840,444596224:1073758224,461373440:524304,478150656:0,494927872:16400,511705088:1074266128,528482304:540672},{0:260,1048576:0,2097152:67109120,3145728:65796,4194304:65540,5242880:67108868,6291456:67174660,7340032:67174400,8388608:67108864,9437184:67174656,10485760:65792,11534336:67174404,12582912:67109124,13631488:65536,14680064:4,15728640:256,524288:67174656,1572864:67174404,2621440:0,3670016:67109120,4718592:67108868,5767168:65536,6815744:65540,7864320:260,8912896:4,9961472:256,11010048:67174400,12058624:65796,13107200:65792,14155776:67109124,15204352:67174660,16252928:67108864,16777216:67174656,17825792:65540,18874368:65536,19922944:67109120,20971520:256,22020096:67174660,23068672:67108868,24117248:0,25165824:67109124,26214400:67108864,27262976:4,28311552:65792,29360128:67174400,30408704:260,31457280:65796,32505856:67174404,17301504:67108864,18350080:260,19398656:67174656,20447232:0,21495808:65540,22544384:67109120,23592960:256,24641536:67174404,25690112:65536,26738688:67174660,27787264:65796,28835840:67108868,29884416:67109124,30932992:67174400,31981568:4,33030144:65792},{0:2151682048,65536:2147487808,131072:4198464,196608:2151677952,262144:0,327680:4198400,393216:2147483712,458752:4194368,524288:2147483648,589824:4194304,655360:64,720896:2147487744,786432:2151678016,851968:4160,917504:4096,983040:2151682112,32768:2147487808,98304:64,163840:2151678016,229376:2147487744,294912:4198400,360448:2151682112,425984:0,491520:2151677952,557056:4096,622592:2151682048,688128:4194304,753664:4160,819200:2147483648,884736:4194368,950272:4198464,1015808:2147483712,1048576:4194368,1114112:4198400,1179648:2147483712,1245184:0,1310720:4160,1376256:2151678016,1441792:2151682048,1507328:2147487808,1572864:2151682112,1638400:2147483648,1703936:2151677952,1769472:4198464,1835008:2147487744,1900544:4194304,1966080:64,2031616:4096,1081344:2151677952,1146880:2151682112,1212416:0,1277952:4198400,1343488:4194368,1409024:2147483648,1474560:2147487808,1540096:64,1605632:2147483712,1671168:4096,1736704:2147487744,1802240:2151678016,1867776:4160,1933312:2151682048,1998848:4194304,2064384:4198464},{0:128,4096:17039360,8192:262144,12288:536870912,16384:537133184,20480:16777344,24576:553648256,28672:262272,32768:16777216,36864:537133056,40960:536871040,45056:553910400,49152:553910272,53248:0,57344:17039488,61440:553648128,2048:17039488,6144:553648256,10240:128,14336:17039360,18432:262144,22528:537133184,26624:553910272,30720:536870912,34816:537133056,38912:0,43008:553910400,47104:16777344,51200:536871040,55296:553648128,59392:16777216,63488:262272,65536:262144,69632:128,73728:536870912,77824:553648256,81920:16777344,86016:553910272,90112:537133184,94208:16777216,98304:553910400,102400:553648128,106496:17039360,110592:537133056,114688:262272,118784:536871040,122880:0,126976:17039488,67584:553648256,71680:16777216,75776:17039360,79872:537133184,83968:536870912,88064:17039488,92160:128,96256:553910272,100352:262272,104448:553910400,108544:0,112640:553648128,116736:16777344,120832:262144,124928:537133056,129024:536871040},{0:268435464,256:8192,512:270532608,768:270540808,1024:268443648,1280:2097152,1536:2097160,1792:268435456,2048:0,2304:268443656,2560:2105344,2816:8,3072:270532616,3328:2105352,3584:8200,3840:270540800,128:270532608,384:270540808,640:8,896:2097152,1152:2105352,1408:268435464,1664:268443648,1920:8200,2176:2097160,2432:8192,2688:268443656,2944:270532616,3200:0,3456:270540800,3712:2105344,3968:268435456,4096:268443648,4352:270532616,4608:270540808,4864:8200,5120:2097152,5376:268435456,5632:268435464,5888:2105344,6144:2105352,6400:0,6656:8,6912:270532608,7168:8192,7424:268443656,7680:270540800,7936:2097160,4224:8,4480:2105344,4736:2097152,4992:268435464,5248:268443648,5504:8200,5760:270540808,6016:270532608,6272:270540800,6528:270532616,6784:8192,7040:2105352,7296:2097160,7552:0,7808:268435456,8064:268443656},{0:1048576,16:33555457,32:1024,48:1049601,64:34604033,80:0,96:1,112:34603009,128:33555456,144:1048577,160:33554433,176:34604032,192:34603008,208:1025,224:1049600,240:33554432,8:34603009,24:0,40:33555457,56:34604032,72:1048576,88:33554433,104:33554432,120:1025,136:1049601,152:33555456,168:34603008,184:1048577,200:1024,216:34604033,232:1,248:1049600,256:33554432,272:1048576,288:33555457,304:34603009,320:1048577,336:33555456,352:34604032,368:1049601,384:1025,400:34604033,416:1049600,432:1,448:0,464:34603008,480:33554433,496:1024,264:1049600,280:33555457,296:34603009,312:1,328:33554432,344:1048576,360:1025,376:34604032,392:33554433,408:34603008,424:0,440:34604033,456:1049601,472:1024,488:33555456,504:1048577},{0:134219808,1:131072,2:134217728,3:32,4:131104,5:134350880,6:134350848,7:2048,8:134348800,9:134219776,10:133120,11:134348832,12:2080,13:0,14:134217760,15:133152,2147483648:2048,2147483649:134350880,2147483650:134219808,2147483651:134217728,2147483652:134348800,2147483653:133120,2147483654:133152,2147483655:32,2147483656:134217760,2147483657:2080,2147483658:131104,2147483659:134350848,2147483660:0,2147483661:134348832,2147483662:134219776,2147483663:131072,16:133152,17:134350848,18:32,19:2048,20:134219776,21:134217760,22:134348832,23:131072,24:0,25:131104,26:134348800,27:134219808,28:134350880,29:133120,30:2080,31:134217728,2147483664:131072,2147483665:2048,2147483666:134348832,2147483667:133152,2147483668:32,2147483669:134348800,2147483670:134217728,2147483671:134219808,2147483672:134350880,2147483673:134217760,2147483674:134219776,2147483675:0,2147483676:133120,2147483677:2080,2147483678:131104,2147483679:134350848}],u=[4160749569,528482304,33030144,2064384,129024,8064,504,2147483679],p=a.DES=n.extend({_doReset:function(){for(var e=this._key.words,t=[],r=0;r<56;r++){var o=i[r]-1;t[r]=e[o>>>5]>>>31-o%32&1}for(var n=this._subKeys=[],a=0;a<16;a++){var l=n[a]=[],u=c[a];for(r=0;r<24;r++)l[r/6|0]|=t[(s[r]-1+u)%28]<<31-r%6,l[4+(r/6|0)]|=t[28+(s[r+24]-1+u)%28]<<31-r%6;for(l[0]=l[0]<<1|l[0]>>>31,r=1;r<7;r++)l[r]=l[r]>>>4*(r-1)+3;l[7]=l[7]<<5|l[7]>>>27}var p=this._invSubKeys=[];for(r=0;r<16;r++)p[r]=n[15-r]},encryptBlock:function(e,t){this._doCryptBlock(e,t,this._subKeys)},decryptBlock:function(e,t){this._doCryptBlock(e,t,this._invSubKeys)},_doCryptBlock:function(e,t,r){this._lBlock=e[t],this._rBlock=e[t+1],d.call(this,4,252645135),d.call(this,16,65535),h.call(this,2,858993459),h.call(this,8,16711935),d.call(this,1,1431655765);for(var o=0;o<16;o++){for(var n=r[o],a=this._lBlock,i=this._rBlock,s=0,c=0;c<8;c++)s|=l[c][((i^n[c])&u[c])>>>0];this._lBlock=i,this._rBlock=a^s}var p=this._lBlock;this._lBlock=this._rBlock,this._rBlock=p,d.call(this,1,1431655765),h.call(this,8,16711935),h.call(this,2,858993459),d.call(this,16,65535),d.call(this,4,252645135),e[t]=this._lBlock,e[t+1]=this._rBlock},keySize:2,ivSize:2,blockSize:2});function d(e,t){var r=(this._lBlock>>>e^this._rBlock)&t;this._rBlock^=r,this._lBlock^=r<<e}function h(e,t){var r=(this._rBlock>>>e^this._lBlock)&t;this._lBlock^=r,this._rBlock^=r<<e}t.DES=n._createHelper(p);var f=a.TripleDES=n.extend({_doReset:function(){var e=this._key.words;if(2!==e.length&&4!==e.length&&e.length<6)throw new Error("Invalid key length - 3DES requires the key length to be 64, 128, 192 or >192.");var t=e.slice(0,2),r=e.length<4?e.slice(0,2):e.slice(2,4),n=e.length<6?e.slice(0,2):e.slice(4,6);this._des1=p.createEncryptor(o.create(t)),this._des2=p.createEncryptor(o.create(r)),this._des3=p.createEncryptor(o.create(n))},encryptBlock:function(e,t){this._des1.encryptBlock(e,t),this._des2.decryptBlock(e,t),this._des3.encryptBlock(e,t)},decryptBlock:function(e,t){this._des3.decryptBlock(e,t),this._des2.encryptBlock(e,t),this._des1.decryptBlock(e,t)},keySize:6,ivSize:2,blockSize:2});t.TripleDES=n._createHelper(f)}(),e.TripleDES},"object"===s(t)?e.exports=t=i(r(8019),r(4760),r(5258),r(8832),r(9127)):(n=[r(8019),r(4760),r(5258),r(8832),r(9127)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},2730:function(e,t,r){var o,n,a,i;function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}i=function(e){var t,r,o,n,a;return r=(t=e).lib,o=r.Base,n=r.WordArray,(a=t.x64={}).Word=o.extend({init:function(e,t){this.high=e,this.low=t}}),a.WordArray=o.extend({init:function(e,t){e=this.words=e||[],this.sigBytes=null!=t?t:8*e.length},toX32:function(){for(var e=this.words,t=e.length,r=[],o=0;o<t;o++){var a=e[o];r.push(a.high),r.push(a.low)}return n.create(r,this.sigBytes)},clone:function(){for(var e=o.clone.call(this),t=e.words=this.words.slice(0),r=t.length,n=0;n<r;n++)t[n]=t[n].clone();return e}}),e},"object"===s(t)?e.exports=t=i(r(8019)):(n=[r(8019)],void 0===(a="function"==typeof(o=i)?o.apply(t,n):o)||(e.exports=a))},5472:function(e,t,r){var o,n;function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}e=r.nmd(e),function(i,s){"use strict";"object"===a(e)&&e.exports?e.exports=s():void 0===(n="function"==typeof(o=s)?o.call(t,r,t,e):o)||(e.exports=n)}(0,(function(e){"use strict";var t=e&&e.IPv6;return{best:function(e){var t,r,o=e.toLowerCase().split(":"),n=o.length,a=8;for(""===o[0]&&""===o[1]&&""===o[2]?(o.shift(),o.shift()):""===o[0]&&""===o[1]?o.shift():""===o[n-1]&&""===o[n-2]&&o.pop(),-1!==o[(n=o.length)-1].indexOf(".")&&(a=7),t=0;t<n&&""!==o[t];t++);if(t<a)for(o.splice(t,1,"0000");o.length<a;)o.splice(t,0,"0000");for(var i=0;i<a;i++){r=o[i].split("");for(var s=0;s<3&&"0"===r[0]&&r.length>1;s++)r.splice(0,1);o[i]=r.join("")}var c=-1,l=0,u=0,p=-1,d=!1;for(i=0;i<a;i++)d?"0"===o[i]?u+=1:(d=!1,u>l&&(c=p,l=u)):"0"===o[i]&&(d=!0,p=i,u=1);u>l&&(c=p,l=u),l>1&&o.splice(c,l,""),n=o.length;var h="";for(""===o[0]&&(h=":"),i=0;i<n&&(h+=o[i],i!==n-1);i++)h+=":";return""===o[n-1]&&(h+=":"),h},noConflict:function(){return e.IPv6===this&&(e.IPv6=t),this}}}))},562:function(e,t,r){var o,n;function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}e=r.nmd(e),function(i,s){"use strict";"object"===a(e)&&e.exports?e.exports=s():void 0===(n="function"==typeof(o=s)?o.call(t,r,t,e):o)||(e.exports=n)}(0,(function(e){"use strict";var t=e&&e.SecondLevelDomains,r={list:{ac:" com gov mil net org ",ae:" ac co gov mil name net org pro sch ",af:" com edu gov net org ",al:" com edu gov mil net org ",ao:" co ed gv it og pb ",ar:" com edu gob gov int mil net org tur ",at:" ac co gv or ",au:" asn com csiro edu gov id net org ",ba:" co com edu gov mil net org rs unbi unmo unsa untz unze ",bb:" biz co com edu gov info net org store tv ",bh:" biz cc com edu gov info net org ",bn:" com edu gov net org ",bo:" com edu gob gov int mil net org tv ",br:" adm adv agr am arq art ato b bio blog bmd cim cng cnt com coop ecn edu eng esp etc eti far flog fm fnd fot fst g12 ggf gov imb ind inf jor jus lel mat med mil mus net nom not ntr odo org ppg pro psc psi qsl rec slg srv tmp trd tur tv vet vlog wiki zlg ",bs:" com edu gov net org ",bz:" du et om ov rg ",ca:" ab bc mb nb nf nl ns nt nu on pe qc sk yk ",ck:" biz co edu gen gov info net org ",cn:" ac ah bj com cq edu fj gd gov gs gx gz ha hb he hi hl hn jl js jx ln mil net nm nx org qh sc sd sh sn sx tj tw xj xz yn zj ",co:" com edu gov mil net nom org ",cr:" ac c co ed fi go or sa ",cy:" ac biz com ekloges gov ltd name net org parliament press pro tm ",do:" art com edu gob gov mil net org sld web ",dz:" art asso com edu gov net org pol ",ec:" com edu fin gov info med mil net org pro ",eg:" com edu eun gov mil name net org sci ",er:" com edu gov ind mil net org rochest w ",es:" com edu gob nom org ",et:" biz com edu gov info name net org ",fj:" ac biz com info mil name net org pro ",fk:" ac co gov net nom org ",fr:" asso com f gouv nom prd presse tm ",gg:" co net org ",gh:" com edu gov mil org ",gn:" ac com gov net org ",gr:" com edu gov mil net org ",gt:" com edu gob ind mil net org ",gu:" com edu gov net org ",hk:" com edu gov idv net org ",hu:" 2000 agrar bolt casino city co erotica erotika film forum games hotel info ingatlan jogasz konyvelo lakas media news org priv reklam sex shop sport suli szex tm tozsde utazas video ",id:" ac co go mil net or sch web ",il:" ac co gov idf k12 muni net org ",in:" ac co edu ernet firm gen gov i ind mil net nic org res ",iq:" com edu gov i mil net org ",ir:" ac co dnssec gov i id net org sch ",it:" edu gov ",je:" co net org ",jo:" com edu gov mil name net org sch ",jp:" ac ad co ed go gr lg ne or ",ke:" ac co go info me mobi ne or sc ",kh:" com edu gov mil net org per ",ki:" biz com de edu gov info mob net org tel ",km:" asso com coop edu gouv k medecin mil nom notaires pharmaciens presse tm veterinaire ",kn:" edu gov net org ",kr:" ac busan chungbuk chungnam co daegu daejeon es gangwon go gwangju gyeongbuk gyeonggi gyeongnam hs incheon jeju jeonbuk jeonnam k kg mil ms ne or pe re sc seoul ulsan ",kw:" com edu gov net org ",ky:" com edu gov net org ",kz:" com edu gov mil net org ",lb:" com edu gov net org ",lk:" assn com edu gov grp hotel int ltd net ngo org sch soc web ",lr:" com edu gov net org ",lv:" asn com conf edu gov id mil net org ",ly:" com edu gov id med net org plc sch ",ma:" ac co gov m net org press ",mc:" asso tm ",me:" ac co edu gov its net org priv ",mg:" com edu gov mil nom org prd tm ",mk:" com edu gov inf name net org pro ",ml:" com edu gov net org presse ",mn:" edu gov org ",mo:" com edu gov net org ",mt:" com edu gov net org ",mv:" aero biz com coop edu gov info int mil museum name net org pro ",mw:" ac co com coop edu gov int museum net org ",mx:" com edu gob net org ",my:" com edu gov mil name net org sch ",nf:" arts com firm info net other per rec store web ",ng:" biz com edu gov mil mobi name net org sch ",ni:" ac co com edu gob mil net nom org ",np:" com edu gov mil net org ",nr:" biz com edu gov info net org ",om:" ac biz co com edu gov med mil museum net org pro sch ",pe:" com edu gob mil net nom org sld ",ph:" com edu gov i mil net ngo org ",pk:" biz com edu fam gob gok gon gop gos gov net org web ",pl:" art bialystok biz com edu gda gdansk gorzow gov info katowice krakow lodz lublin mil net ngo olsztyn org poznan pwr radom slupsk szczecin torun warszawa waw wroc wroclaw zgora ",pr:" ac biz com edu est gov info isla name net org pro prof ",ps:" com edu gov net org plo sec ",pw:" belau co ed go ne or ",ro:" arts com firm info nom nt org rec store tm www ",rs:" ac co edu gov in org ",sb:" com edu gov net org ",sc:" com edu gov net org ",sh:" co com edu gov net nom org ",sl:" com edu gov net org ",st:" co com consulado edu embaixada gov mil net org principe saotome store ",sv:" com edu gob org red ",sz:" ac co org ",tr:" av bbs bel biz com dr edu gen gov info k12 name net org pol tel tsk tv web ",tt:" aero biz cat co com coop edu gov info int jobs mil mobi museum name net org pro tel travel ",tw:" club com ebiz edu game gov idv mil net org ",mu:" ac co com gov net or org ",mz:" ac co edu gov org ",na:" co com ",nz:" ac co cri geek gen govt health iwi maori mil net org parliament school ",pa:" abo ac com edu gob ing med net nom org sld ",pt:" com edu gov int net nome org publ ",py:" com edu gov mil net org ",qa:" com edu gov mil net org ",re:" asso com nom ",ru:" ac adygeya altai amur arkhangelsk astrakhan bashkiria belgorod bir bryansk buryatia cbg chel chelyabinsk chita chukotka chuvashia com dagestan e-burg edu gov grozny int irkutsk ivanovo izhevsk jar joshkar-ola kalmykia kaluga kamchatka karelia kazan kchr kemerovo khabarovsk khakassia khv kirov koenig komi kostroma kranoyarsk kuban kurgan kursk lipetsk magadan mari mari-el marine mil mordovia mosreg msk murmansk nalchik net nnov nov novosibirsk nsk omsk orenburg org oryol penza perm pp pskov ptz rnd ryazan sakhalin samara saratov simbirsk smolensk spb stavropol stv surgut tambov tatarstan tom tomsk tsaritsyn tsk tula tuva tver tyumen udm udmurtia ulan-ude vladikavkaz vladimir vladivostok volgograd vologda voronezh vrn vyatka yakutia yamal yekaterinburg yuzhno-sakhalinsk ",rw:" ac co com edu gouv gov int mil net ",sa:" com edu gov med net org pub sch ",sd:" com edu gov info med net org tv ",se:" a ac b bd c d e f g h i k l m n o org p parti pp press r s t tm u w x y z ",sg:" com edu gov idn net org per ",sn:" art com edu gouv org perso univ ",sy:" com edu gov mil net news org ",th:" ac co go in mi net or ",tj:" ac biz co com edu go gov info int mil name net nic org test web ",tn:" agrinet com defense edunet ens fin gov ind info intl mincom nat net org perso rnrt rns rnu tourism ",tz:" ac co go ne or ",ua:" biz cherkassy chernigov chernovtsy ck cn co com crimea cv dn dnepropetrovsk donetsk dp edu gov if in ivano-frankivsk kh kharkov kherson khmelnitskiy kiev kirovograd km kr ks kv lg lugansk lutsk lviv me mk net nikolaev od odessa org pl poltava pp rovno rv sebastopol sumy te ternopil uzhgorod vinnica vn zaporizhzhe zhitomir zp zt ",ug:" ac co go ne or org sc ",uk:" ac bl british-library co cym gov govt icnet jet lea ltd me mil mod national-library-scotland nel net nhs nic nls org orgn parliament plc police sch scot soc ",us:" dni fed isa kids nsn ",uy:" com edu gub mil net org ",ve:" co com edu gob info mil net org web ",vi:" co com k12 net org ",vn:" ac biz com edu gov health info int name net org pro ",ye:" co com gov ltd me net org plc ",yu:" ac co edu gov org ",za:" ac agric alt bourse city co cybernet db edu gov grondar iaccess imt inca landesign law mil net ngo nis nom olivetti org pix school tm web ",zm:" ac co com edu gov net org sch ",com:"ar br cn de eu gb gr hu jpn kr no qc ru sa se uk us uy za ",net:"gb jp se uk ",org:"ae",de:"com "},has:function(e){var t=e.lastIndexOf(".");if(t<=0||t>=e.length-1)return!1;var o=e.lastIndexOf(".",t-1);if(o<=0||o>=t-1)return!1;var n=r.list[e.slice(t+1)];return!!n&&n.indexOf(" "+e.slice(o+1,t)+" ")>=0},is:function(e){var t=e.lastIndexOf(".");if(t<=0||t>=e.length-1)return!1;if(e.lastIndexOf(".",t-1)>=0)return!1;var o=r.list[e.slice(t+1)];return!!o&&o.indexOf(" "+e.slice(0,t)+" ")>=0},get:function(e){var t=e.lastIndexOf(".");if(t<=0||t>=e.length-1)return null;var o=e.lastIndexOf(".",t-1);if(o<=0||o>=t-1)return null;var n=r.list[e.slice(t+1)];return n?n.indexOf(" "+e.slice(o+1,t)+" ")<0?null:e.slice(o+1):null},noConflict:function(){return e.SecondLevelDomains===this&&(e.SecondLevelDomains=t),this}};return r}))},107:function(e,t,r){var o,n,a;function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}e=r.nmd(e),function(s,c){"use strict";"object"===i(e)&&e.exports?e.exports=c(r(9538),r(5472),r(562)):(n=[r(9538),r(5472),r(562)],void 0===(a="function"==typeof(o=c)?o.apply(t,n):o)||(e.exports=a))}(0,(function(e,t,r,o){"use strict";var n=o&&o.URI;function a(e,t){var r=arguments.length>=1;if(!(this instanceof a))return r?arguments.length>=2?new a(e,t):new a(e):new a;if(void 0===e){if(r)throw new TypeError("undefined is not a valid argument for URI");e="undefined"!=typeof location?location.href+"":""}if(null===e&&r)throw new TypeError("null is not a valid argument for URI");return this.href(e),void 0!==t?this.absoluteTo(t):this}a.version="1.19.11";var s=a.prototype,c=Object.prototype.hasOwnProperty;function l(e){return e.replace(/([.*+?^=!:${}()|[\]\/\\])/g,"\\$1")}function u(e){return void 0===e?"Undefined":String(Object.prototype.toString.call(e)).slice(8,-1)}function p(e){return"Array"===u(e)}function d(e,t){var r,o,n={};if("RegExp"===u(t))n=null;else if(p(t))for(r=0,o=t.length;r<o;r++)n[t[r]]=!0;else n[t]=!0;for(r=0,o=e.length;r<o;r++)(n&&void 0!==n[e[r]]||!n&&t.test(e[r]))&&(e.splice(r,1),o--,r--);return e}function h(e,t){var r,o;if(p(t)){for(r=0,o=t.length;r<o;r++)if(!h(e,t[r]))return!1;return!0}var n=u(t);for(r=0,o=e.length;r<o;r++)if("RegExp"===n){if("string"==typeof e[r]&&e[r].match(t))return!0}else if(e[r]===t)return!0;return!1}function f(e,t){if(!p(e)||!p(t))return!1;if(e.length!==t.length)return!1;e.sort(),t.sort();for(var r=0,o=e.length;r<o;r++)if(e[r]!==t[r])return!1;return!0}function m(e){return e.replace(/^\/+|\/+$/g,"")}function y(e){return escape(e)}function g(e){return encodeURIComponent(e).replace(/[!'()*]/g,y).replace(/\*/g,"%2A")}a._parts=function(){return{protocol:null,username:null,password:null,hostname:null,urn:null,port:null,path:null,query:null,fragment:null,preventInvalidHostname:a.preventInvalidHostname,duplicateQueryParameters:a.duplicateQueryParameters,escapeQuerySpace:a.escapeQuerySpace}},a.preventInvalidHostname=!1,a.duplicateQueryParameters=!1,a.escapeQuerySpace=!0,a.protocol_expression=/^[a-z][a-z0-9.+-]*$/i,a.idn_expression=/[^a-z0-9\._-]/i,a.punycode_expression=/(xn--)/i,a.ip4_expression=/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/,a.ip6_expression=/^\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-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-Fa-f]{1,4}:){5}(((:[0-9A-Fa-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-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-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-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-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-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-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-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-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-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-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*$/,a.find_uri_expression=/\b((?:[a-z][\w-]+:(?:\/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?«»“”‘’]))/gi,a.findUri={start:/\b(?:([a-z][a-z0-9.+-]*:\/\/)|www\.)/gi,end:/[\s\r\n]|$/,trim:/[`!()\[\]{};:'".,<>?«»“”„‘’]+$/,parens:/(\([^\)]*\)|\[[^\]]*\]|\{[^}]*\}|<[^>]*>)/g},a.leading_whitespace_expression=/^[\x00-\x20\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]+/,a.ascii_tab_whitespace=/[\u0009\u000A\u000D]+/g,a.defaultPorts={http:"80",https:"443",ftp:"21",gopher:"70",ws:"80",wss:"443"},a.hostProtocols=["http","https"],a.invalid_hostname_characters=/[^a-zA-Z0-9\.\-:_]/,a.domAttributes={a:"href",blockquote:"cite",link:"href",base:"href",script:"src",form:"action",img:"src",area:"href",iframe:"src",embed:"src",source:"src",track:"src",input:"src",audio:"src",video:"src"},a.getDomAttribute=function(e){if(e&&e.nodeName){var t=e.nodeName.toLowerCase();if("input"!==t||"image"===e.type)return a.domAttributes[t]}},a.encode=g,a.decode=decodeURIComponent,a.iso8859=function(){a.encode=escape,a.decode=unescape},a.unicode=function(){a.encode=g,a.decode=decodeURIComponent},a.characters={pathname:{encode:{expression:/%(24|26|2B|2C|3B|3D|3A|40)/gi,map:{"%24":"$","%26":"&","%2B":"+","%2C":",","%3B":";","%3D":"=","%3A":":","%40":"@"}},decode:{expression:/[\/\?#]/g,map:{"/":"%2F","?":"%3F","#":"%23"}}},reserved:{encode:{expression:/%(21|23|24|26|27|28|29|2A|2B|2C|2F|3A|3B|3D|3F|40|5B|5D)/gi,map:{"%3A":":","%2F":"/","%3F":"?","%23":"#","%5B":"[","%5D":"]","%40":"@","%21":"!","%24":"$","%26":"&","%27":"'","%28":"(","%29":")","%2A":"*","%2B":"+","%2C":",","%3B":";","%3D":"="}}},urnpath:{encode:{expression:/%(21|24|27|28|29|2A|2B|2C|3B|3D|40)/gi,map:{"%21":"!","%24":"$","%27":"'","%28":"(","%29":")","%2A":"*","%2B":"+","%2C":",","%3B":";","%3D":"=","%40":"@"}},decode:{expression:/[\/\?#:]/g,map:{"/":"%2F","?":"%3F","#":"%23",":":"%3A"}}}},a.encodeQuery=function(e,t){var r=a.encode(e+"");return void 0===t&&(t=a.escapeQuerySpace),t?r.replace(/%20/g,"+"):r},a.decodeQuery=function(e,t){e+="",void 0===t&&(t=a.escapeQuerySpace);try{return a.decode(t?e.replace(/\+/g,"%20"):e)}catch(t){return e}};var A,b={encode:"encode",decode:"decode"},x=function(e,t){return function(r){try{return a[t](r+"").replace(a.characters[e][t].expression,(function(r){return a.characters[e][t].map[r]}))}catch(e){return r}}};for(A in b)a[A+"PathSegment"]=x("pathname",b[A]),a[A+"UrnPathSegment"]=x("urnpath",b[A]);var v=function(e,t,r){return function(o){var n;n=r?function(e){return a[t](a[r](e))}:a[t];for(var i=(o+"").split(e),s=0,c=i.length;s<c;s++)i[s]=n(i[s]);return i.join(e)}};function P(e){return function(t,r){return void 0===t?this._parts[e]||"":(this._parts[e]=t||null,this.build(!r),this)}}function k(e,t){return function(r,o){return void 0===r?this._parts[e]||"":(null!==r&&(r+="").charAt(0)===t&&(r=r.substring(1)),this._parts[e]=r,this.build(!o),this)}}a.decodePath=v("/","decodePathSegment"),a.decodeUrnPath=v(":","decodeUrnPathSegment"),a.recodePath=v("/","encodePathSegment","decode"),a.recodeUrnPath=v(":","encodeUrnPathSegment","decode"),a.encodeReserved=x("reserved","encode"),a.parse=function(e,t){var r;return t||(t={preventInvalidHostname:a.preventInvalidHostname}),(r=(e=(e=e.replace(a.leading_whitespace_expression,"")).replace(a.ascii_tab_whitespace,"")).indexOf("#"))>-1&&(t.fragment=e.substring(r+1)||null,e=e.substring(0,r)),(r=e.indexOf("?"))>-1&&(t.query=e.substring(r+1)||null,e=e.substring(0,r)),"//"===(e=(e=e.replace(/^(https?|ftp|wss?)?:+[/\\]*/i,"$1://")).replace(/^[/\\]{2,}/i,"//")).substring(0,2)?(t.protocol=null,e=e.substring(2),e=a.parseAuthority(e,t)):(r=e.indexOf(":"))>-1&&(t.protocol=e.substring(0,r)||null,t.protocol&&!t.protocol.match(a.protocol_expression)?t.protocol=void 0:"//"===e.substring(r+1,r+3).replace(/\\/g,"/")?(e=e.substring(r+3),e=a.parseAuthority(e,t)):(e=e.substring(r+1),t.urn=!0)),t.path=e,t},a.parseHost=function(e,t){e||(e="");var r,o,n=(e=e.replace(/\\/g,"/")).indexOf("/");if(-1===n&&(n=e.length),"["===e.charAt(0))r=e.indexOf("]"),t.hostname=e.substring(1,r)||null,t.port=e.substring(r+2,n)||null,"/"===t.port&&(t.port=null);else{var i=e.indexOf(":"),s=e.indexOf("/"),c=e.indexOf(":",i+1);-1!==c&&(-1===s||c<s)?(t.hostname=e.substring(0,n)||null,t.port=null):(o=e.substring(0,n).split(":"),t.hostname=o[0]||null,t.port=o[1]||null)}return t.hostname&&"/"!==e.substring(n).charAt(0)&&(n++,e="/"+e),t.preventInvalidHostname&&a.ensureValidHostname(t.hostname,t.protocol),t.port&&a.ensureValidPort(t.port),e.substring(n)||"/"},a.parseAuthority=function(e,t){return e=a.parseUserinfo(e,t),a.parseHost(e,t)},a.parseUserinfo=function(e,t){var r=e;-1!==e.indexOf("\\")&&(e=e.replace(/\\/g,"/"));var o,n=e.indexOf("/"),i=e.lastIndexOf("@",n>-1?n:e.length-1);return i>-1&&(-1===n||i<n)?(o=e.substring(0,i).split(":"),t.username=o[0]?a.decode(o[0]):null,o.shift(),t.password=o[0]?a.decode(o.join(":")):null,e=r.substring(i+1)):(t.username=null,t.password=null),e},a.parseQuery=function(e,t){if(!e)return{};if(!(e=e.replace(/&+/g,"&").replace(/^\?*&*|&+$/g,"")))return{};for(var r,o,n,i={},s=e.split("&"),l=s.length,u=0;u<l;u++)r=s[u].split("="),o=a.decodeQuery(r.shift(),t),n=r.length?a.decodeQuery(r.join("="),t):null,"__proto__"!==o&&(c.call(i,o)?("string"!=typeof i[o]&&null!==i[o]||(i[o]=[i[o]]),i[o].push(n)):i[o]=n);return i},a.build=function(e){var t="",r=!1;return e.protocol&&(t+=e.protocol+":"),e.urn||!t&&!e.hostname||(t+="//",r=!0),t+=a.buildAuthority(e)||"","string"==typeof e.path&&("/"!==e.path.charAt(0)&&r&&(t+="/"),t+=e.path),"string"==typeof e.query&&e.query&&(t+="?"+e.query),"string"==typeof e.fragment&&e.fragment&&(t+="#"+e.fragment),t},a.buildHost=function(e){var t="";return e.hostname?(a.ip6_expression.test(e.hostname)?t+="["+e.hostname+"]":t+=e.hostname,e.port&&(t+=":"+e.port),t):""},a.buildAuthority=function(e){return a.buildUserinfo(e)+a.buildHost(e)},a.buildUserinfo=function(e){var t="";return e.username&&(t+=a.encode(e.username)),e.password&&(t+=":"+a.encode(e.password)),t&&(t+="@"),t},a.buildQuery=function(e,t,r){var o,n,i,s,l="";for(n in e)if("__proto__"!==n&&c.call(e,n))if(p(e[n]))for(o={},i=0,s=e[n].length;i<s;i++)void 0!==e[n][i]&&void 0===o[e[n][i]+""]&&(l+="&"+a.buildQueryParameter(n,e[n][i],r),!0!==t&&(o[e[n][i]+""]=!0));else void 0!==e[n]&&(l+="&"+a.buildQueryParameter(n,e[n],r));return l.substring(1)},a.buildQueryParameter=function(e,t,r){return a.encodeQuery(e,r)+(null!==t?"="+a.encodeQuery(t,r):"")},a.addQuery=function(e,t,r){if("object"===i(t))for(var o in t)c.call(t,o)&&a.addQuery(e,o,t[o]);else{if("string"!=typeof t)throw new TypeError("URI.addQuery() accepts an object, string as the name parameter");if(void 0===e[t])return void(e[t]=r);"string"==typeof e[t]&&(e[t]=[e[t]]),p(r)||(r=[r]),e[t]=(e[t]||[]).concat(r)}},a.setQuery=function(e,t,r){if("object"===i(t))for(var o in t)c.call(t,o)&&a.setQuery(e,o,t[o]);else{if("string"!=typeof t)throw new TypeError("URI.setQuery() accepts an object, string as the name parameter");e[t]=void 0===r?null:r}},a.removeQuery=function(e,t,r){var o,n,s;if(p(t))for(o=0,n=t.length;o<n;o++)e[t[o]]=void 0;else if("RegExp"===u(t))for(s in e)t.test(s)&&(e[s]=void 0);else if("object"===i(t))for(s in t)c.call(t,s)&&a.removeQuery(e,s,t[s]);else{if("string"!=typeof t)throw new TypeError("URI.removeQuery() accepts an object, string, RegExp as the first parameter");void 0!==r?"RegExp"===u(r)?!p(e[t])&&r.test(e[t])?e[t]=void 0:e[t]=d(e[t],r):e[t]!==String(r)||p(r)&&1!==r.length?p(e[t])&&(e[t]=d(e[t],r)):e[t]=void 0:e[t]=void 0}},a.hasQuery=function(e,t,r,o){switch(u(t)){case"String":break;case"RegExp":for(var n in e)if(c.call(e,n)&&t.test(n)&&(void 0===r||a.hasQuery(e,n,r)))return!0;return!1;case"Object":for(var i in t)if(c.call(t,i)&&!a.hasQuery(e,i,t[i]))return!1;return!0;default:throw new TypeError("URI.hasQuery() accepts a string, regular expression or object as the name parameter")}switch(u(r)){case"Undefined":return t in e;case"Boolean":return r===Boolean(p(e[t])?e[t].length:e[t]);case"Function":return!!r(e[t],t,e);case"Array":return!!p(e[t])&&(o?h:f)(e[t],r);case"RegExp":return p(e[t])?!!o&&h(e[t],r):Boolean(e[t]&&e[t].match(r));case"Number":r=String(r);case"String":return p(e[t])?!!o&&h(e[t],r):e[t]===r;default:throw new TypeError("URI.hasQuery() accepts undefined, boolean, string, number, RegExp, Function as the value parameter")}},a.joinPaths=function(){for(var e=[],t=[],r=0,o=0;o<arguments.length;o++){var n=new a(arguments[o]);e.push(n);for(var i=n.segment(),s=0;s<i.length;s++)"string"==typeof i[s]&&t.push(i[s]),i[s]&&r++}if(!t.length||!r)return new a("");var c=new a("").segment(t);return""!==e[0].path()&&"/"!==e[0].path().slice(0,1)||c.path("/"+c.path()),c.normalize()},a.commonPath=function(e,t){var r,o=Math.min(e.length,t.length);for(r=0;r<o;r++)if(e.charAt(r)!==t.charAt(r)){r--;break}return r<1?e.charAt(0)===t.charAt(0)&&"/"===e.charAt(0)?"/":"":("/"===e.charAt(r)&&"/"===t.charAt(r)||(r=e.substring(0,r).lastIndexOf("/")),e.substring(0,r+1))},a.withinString=function(e,t,r){r||(r={});var o=r.start||a.findUri.start,n=r.end||a.findUri.end,i=r.trim||a.findUri.trim,s=r.parens||a.findUri.parens,c=/[a-z0-9-]=["']?$/i;for(o.lastIndex=0;;){var l=o.exec(e);if(!l)break;var u=l.index;if(r.ignoreHtml){var p=e.slice(Math.max(u-3,0),u);if(p&&c.test(p))continue}for(var d=u+e.slice(u).search(n),h=e.slice(u,d),f=-1;;){var m=s.exec(h);if(!m)break;var y=m.index+m[0].length;f=Math.max(f,y)}if(!((h=f>-1?h.slice(0,f)+h.slice(f).replace(i,""):h.replace(i,"")).length<=l[0].length||r.ignore&&r.ignore.test(h))){var g=t(h,u,d=u+h.length,e);void 0!==g?(g=String(g),e=e.slice(0,u)+g+e.slice(d),o.lastIndex=u+g.length):o.lastIndex=d}}return o.lastIndex=0,e},a.ensureValidHostname=function(t,r){var o=!!t,n=!1;if(!!r&&(n=h(a.hostProtocols,r)),n&&!o)throw new TypeError("Hostname cannot be empty, if protocol is "+r);if(t&&t.match(a.invalid_hostname_characters)){if(!e)throw new TypeError('Hostname "'+t+'" contains characters other than [A-Z0-9.-:_] and Punycode.js is not available');if(e.toASCII(t).match(a.invalid_hostname_characters))throw new TypeError('Hostname "'+t+'" contains characters other than [A-Z0-9.-:_]')}},a.ensureValidPort=function(e){if(e){var t=Number(e);if(!(/^[0-9]+$/.test(t)&&t>0&&t<65536))throw new TypeError('Port "'+e+'" is not a valid port')}},a.noConflict=function(e){if(e){var t={URI:this.noConflict()};return o.URITemplate&&"function"==typeof o.URITemplate.noConflict&&(t.URITemplate=o.URITemplate.noConflict()),o.IPv6&&"function"==typeof o.IPv6.noConflict&&(t.IPv6=o.IPv6.noConflict()),o.SecondLevelDomains&&"function"==typeof o.SecondLevelDomains.noConflict&&(t.SecondLevelDomains=o.SecondLevelDomains.noConflict()),t}return o.URI===this&&(o.URI=n),this},s.build=function(e){return!0===e?this._deferred_build=!0:(void 0===e||this._deferred_build)&&(this._string=a.build(this._parts),this._deferred_build=!1),this},s.clone=function(){return new a(this)},s.valueOf=s.toString=function(){return this.build(!1)._string},s.protocol=P("protocol"),s.username=P("username"),s.password=P("password"),s.hostname=P("hostname"),s.port=P("port"),s.query=k("query","?"),s.fragment=k("fragment","#"),s.search=function(e,t){var r=this.query(e,t);return"string"==typeof r&&r.length?"?"+r:r},s.hash=function(e,t){var r=this.fragment(e,t);return"string"==typeof r&&r.length?"#"+r:r},s.pathname=function(e,t){if(void 0===e||!0===e){var r=this._parts.path||(this._parts.hostname?"/":"");return e?(this._parts.urn?a.decodeUrnPath:a.decodePath)(r):r}return this._parts.urn?this._parts.path=e?a.recodeUrnPath(e):"":this._parts.path=e?a.recodePath(e):"/",this.build(!t),this},s.path=s.pathname,s.href=function(e,t){var r;if(void 0===e)return this.toString();this._string="",this._parts=a._parts();var o=e instanceof a,n="object"===i(e)&&(e.hostname||e.path||e.pathname);if(e.nodeName&&(e=e[a.getDomAttribute(e)]||"",n=!1),!o&&n&&void 0!==e.pathname&&(e=e.toString()),"string"==typeof e||e instanceof String)this._parts=a.parse(String(e),this._parts);else{if(!o&&!n)throw new TypeError("invalid input");var s=o?e._parts:e;for(r in s)"query"!==r&&c.call(this._parts,r)&&(this._parts[r]=s[r]);s.query&&this.query(s.query,!1)}return this.build(!t),this},s.is=function(e){var t=!1,o=!1,n=!1,i=!1,s=!1,c=!1,l=!1,u=!this._parts.urn;switch(this._parts.hostname&&(u=!1,o=a.ip4_expression.test(this._parts.hostname),n=a.ip6_expression.test(this._parts.hostname),s=(i=!(t=o||n))&&r&&r.has(this._parts.hostname),c=i&&a.idn_expression.test(this._parts.hostname),l=i&&a.punycode_expression.test(this._parts.hostname)),e.toLowerCase()){case"relative":return u;case"absolute":return!u;case"domain":case"name":return i;case"sld":return s;case"ip":return t;case"ip4":case"ipv4":case"inet4":return o;case"ip6":case"ipv6":case"inet6":return n;case"idn":return c;case"url":return!this._parts.urn;case"urn":return!!this._parts.urn;case"punycode":return l}return null};var w=s.protocol,S=s.port,C=s.hostname;s.protocol=function(e,t){if(e&&!(e=e.replace(/:(\/\/)?$/,"")).match(a.protocol_expression))throw new TypeError('Protocol "'+e+"\" contains characters other than [A-Z0-9.+-] or doesn't start with [A-Z]");return w.call(this,e,t)},s.scheme=s.protocol,s.port=function(e,t){return this._parts.urn?void 0===e?"":this:(void 0!==e&&(0===e&&(e=null),e&&(":"===(e+="").charAt(0)&&(e=e.substring(1)),a.ensureValidPort(e))),S.call(this,e,t))},s.hostname=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0!==e){var r={preventInvalidHostname:this._parts.preventInvalidHostname};if("/"!==a.parseHost(e,r))throw new TypeError('Hostname "'+e+'" contains characters other than [A-Z0-9.-]');e=r.hostname,this._parts.preventInvalidHostname&&a.ensureValidHostname(e,this._parts.protocol)}return C.call(this,e,t)},s.origin=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e){var r=this.protocol();return this.authority()?(r?r+"://":"")+this.authority():""}var o=a(e);return this.protocol(o.protocol()).authority(o.authority()).build(!t),this},s.host=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e)return this._parts.hostname?a.buildHost(this._parts):"";if("/"!==a.parseHost(e,this._parts))throw new TypeError('Hostname "'+e+'" contains characters other than [A-Z0-9.-]');return this.build(!t),this},s.authority=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e)return this._parts.hostname?a.buildAuthority(this._parts):"";if("/"!==a.parseAuthority(e,this._parts))throw new TypeError('Hostname "'+e+'" contains characters other than [A-Z0-9.-]');return this.build(!t),this},s.userinfo=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e){var r=a.buildUserinfo(this._parts);return r?r.substring(0,r.length-1):r}return"@"!==e[e.length-1]&&(e+="@"),a.parseUserinfo(e,this._parts),this.build(!t),this},s.resource=function(e,t){var r;return void 0===e?this.path()+this.search()+this.hash():(r=a.parse(e),this._parts.path=r.path,this._parts.query=r.query,this._parts.fragment=r.fragment,this.build(!t),this)},s.subdomain=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e){if(!this._parts.hostname||this.is("IP"))return"";var r=this._parts.hostname.length-this.domain().length-1;return this._parts.hostname.substring(0,r)||""}var o=this._parts.hostname.length-this.domain().length,n=this._parts.hostname.substring(0,o),i=new RegExp("^"+l(n));if(e&&"."!==e.charAt(e.length-1)&&(e+="."),-1!==e.indexOf(":"))throw new TypeError("Domains cannot contain colons");return e&&a.ensureValidHostname(e,this._parts.protocol),this._parts.hostname=this._parts.hostname.replace(i,e),this.build(!t),this},s.domain=function(e,t){if(this._parts.urn)return void 0===e?"":this;if("boolean"==typeof e&&(t=e,e=void 0),void 0===e){if(!this._parts.hostname||this.is("IP"))return"";var r=this._parts.hostname.match(/\./g);if(r&&r.length<2)return this._parts.hostname;var o=this._parts.hostname.length-this.tld(t).length-1;return o=this._parts.hostname.lastIndexOf(".",o-1)+1,this._parts.hostname.substring(o)||""}if(!e)throw new TypeError("cannot set domain empty");if(-1!==e.indexOf(":"))throw new TypeError("Domains cannot contain colons");if(a.ensureValidHostname(e,this._parts.protocol),!this._parts.hostname||this.is("IP"))this._parts.hostname=e;else{var n=new RegExp(l(this.domain())+"$");this._parts.hostname=this._parts.hostname.replace(n,e)}return this.build(!t),this},s.tld=function(e,t){if(this._parts.urn)return void 0===e?"":this;if("boolean"==typeof e&&(t=e,e=void 0),void 0===e){if(!this._parts.hostname||this.is("IP"))return"";var o=this._parts.hostname.lastIndexOf("."),n=this._parts.hostname.substring(o+1);return!0!==t&&r&&r.list[n.toLowerCase()]&&r.get(this._parts.hostname)||n}var a;if(!e)throw new TypeError("cannot set TLD empty");if(e.match(/[^a-zA-Z0-9-]/)){if(!r||!r.is(e))throw new TypeError('TLD "'+e+'" contains characters other than [A-Z0-9]');a=new RegExp(l(this.tld())+"$"),this._parts.hostname=this._parts.hostname.replace(a,e)}else{if(!this._parts.hostname||this.is("IP"))throw new ReferenceError("cannot set TLD on non-domain host");a=new RegExp(l(this.tld())+"$"),this._parts.hostname=this._parts.hostname.replace(a,e)}return this.build(!t),this},s.directory=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e||!0===e){if(!this._parts.path&&!this._parts.hostname)return"";if("/"===this._parts.path)return"/";var r=this._parts.path.length-this.filename().length-1,o=this._parts.path.substring(0,r)||(this._parts.hostname?"/":"");return e?a.decodePath(o):o}var n=this._parts.path.length-this.filename().length,i=this._parts.path.substring(0,n),s=new RegExp("^"+l(i));return this.is("relative")||(e||(e="/"),"/"!==e.charAt(0)&&(e="/"+e)),e&&"/"!==e.charAt(e.length-1)&&(e+="/"),e=a.recodePath(e),this._parts.path=this._parts.path.replace(s,e),this.build(!t),this},s.filename=function(e,t){if(this._parts.urn)return void 0===e?"":this;if("string"!=typeof e){if(!this._parts.path||"/"===this._parts.path)return"";var r=this._parts.path.lastIndexOf("/"),o=this._parts.path.substring(r+1);return e?a.decodePathSegment(o):o}var n=!1;"/"===e.charAt(0)&&(e=e.substring(1)),e.match(/\.?\//)&&(n=!0);var i=new RegExp(l(this.filename())+"$");return e=a.recodePath(e),this._parts.path=this._parts.path.replace(i,e),n?this.normalizePath(t):this.build(!t),this},s.suffix=function(e,t){if(this._parts.urn)return void 0===e?"":this;if(void 0===e||!0===e){if(!this._parts.path||"/"===this._parts.path)return"";var r,o,n=this.filename(),i=n.lastIndexOf(".");return-1===i?"":(r=n.substring(i+1),o=/^[a-z0-9%]+$/i.test(r)?r:"",e?a.decodePathSegment(o):o)}"."===e.charAt(0)&&(e=e.substring(1));var s,c=this.suffix();if(c)s=e?new RegExp(l(c)+"$"):new RegExp(l("."+c)+"$");else{if(!e)return this;this._parts.path+="."+a.recodePath(e)}return s&&(e=a.recodePath(e),this._parts.path=this._parts.path.replace(s,e)),this.build(!t),this},s.segment=function(e,t,r){var o=this._parts.urn?":":"/",n=this.path(),a="/"===n.substring(0,1),i=n.split(o);if(void 0!==e&&"number"!=typeof e&&(r=t,t=e,e=void 0),void 0!==e&&"number"!=typeof e)throw new Error('Bad segment "'+e+'", must be 0-based integer');if(a&&i.shift(),e<0&&(e=Math.max(i.length+e,0)),void 0===t)return void 0===e?i:i[e];if(null===e||void 0===i[e])if(p(t)){i=[];for(var s=0,c=t.length;s<c;s++)(t[s].length||i.length&&i[i.length-1].length)&&(i.length&&!i[i.length-1].length&&i.pop(),i.push(m(t[s])))}else(t||"string"==typeof t)&&(t=m(t),""===i[i.length-1]?i[i.length-1]=t:i.push(t));else t?i[e]=m(t):i.splice(e,1);return a&&i.unshift(""),this.path(i.join(o),r)},s.segmentCoded=function(e,t,r){var o,n,i;if("number"!=typeof e&&(r=t,t=e,e=void 0),void 0===t){if(p(o=this.segment(e,t,r)))for(n=0,i=o.length;n<i;n++)o[n]=a.decode(o[n]);else o=void 0!==o?a.decode(o):void 0;return o}if(p(t))for(n=0,i=t.length;n<i;n++)t[n]=a.encode(t[n]);else t="string"==typeof t||t instanceof String?a.encode(t):t;return this.segment(e,t,r)};var B=s.query;return s.query=function(e,t){if(!0===e)return a.parseQuery(this._parts.query,this._parts.escapeQuerySpace);if("function"==typeof e){var r=a.parseQuery(this._parts.query,this._parts.escapeQuerySpace),o=e.call(this,r);return this._parts.query=a.buildQuery(o||r,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),this.build(!t),this}return void 0!==e&&"string"!=typeof e?(this._parts.query=a.buildQuery(e,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),this.build(!t),this):B.call(this,e,t)},s.setQuery=function(e,t,r){var o=a.parseQuery(this._parts.query,this._parts.escapeQuerySpace);if("string"==typeof e||e instanceof String)o[e]=void 0!==t?t:null;else{if("object"!==i(e))throw new TypeError("URI.addQuery() accepts an object, string as the name parameter");for(var n in e)c.call(e,n)&&(o[n]=e[n])}return this._parts.query=a.buildQuery(o,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),"string"!=typeof e&&(r=t),this.build(!r),this},s.addQuery=function(e,t,r){var o=a.parseQuery(this._parts.query,this._parts.escapeQuerySpace);return a.addQuery(o,e,void 0===t?null:t),this._parts.query=a.buildQuery(o,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),"string"!=typeof e&&(r=t),this.build(!r),this},s.removeQuery=function(e,t,r){var o=a.parseQuery(this._parts.query,this._parts.escapeQuerySpace);return a.removeQuery(o,e,t),this._parts.query=a.buildQuery(o,this._parts.duplicateQueryParameters,this._parts.escapeQuerySpace),"string"!=typeof e&&(r=t),this.build(!r),this},s.hasQuery=function(e,t,r){var o=a.parseQuery(this._parts.query,this._parts.escapeQuerySpace);return a.hasQuery(o,e,t,r)},s.setSearch=s.setQuery,s.addSearch=s.addQuery,s.removeSearch=s.removeQuery,s.hasSearch=s.hasQuery,s.normalize=function(){return this._parts.urn?this.normalizeProtocol(!1).normalizePath(!1).normalizeQuery(!1).normalizeFragment(!1).build():this.normalizeProtocol(!1).normalizeHostname(!1).normalizePort(!1).normalizePath(!1).normalizeQuery(!1).normalizeFragment(!1).build()},s.normalizeProtocol=function(e){return"string"==typeof this._parts.protocol&&(this._parts.protocol=this._parts.protocol.toLowerCase(),this.build(!e)),this},s.normalizeHostname=function(r){return this._parts.hostname&&(this.is("IDN")&&e?this._parts.hostname=e.toASCII(this._parts.hostname):this.is("IPv6")&&t&&(this._parts.hostname=t.best(this._parts.hostname)),this._parts.hostname=this._parts.hostname.toLowerCase(),this.build(!r)),this},s.normalizePort=function(e){return"string"==typeof this._parts.protocol&&this._parts.port===a.defaultPorts[this._parts.protocol]&&(this._parts.port=null,this.build(!e)),this},s.normalizePath=function(e){var t,r=this._parts.path;if(!r)return this;if(this._parts.urn)return this._parts.path=a.recodeUrnPath(this._parts.path),this.build(!e),this;if("/"===this._parts.path)return this;var o,n,i="";for("/"!==(r=a.recodePath(r)).charAt(0)&&(t=!0,r="/"+r),"/.."!==r.slice(-3)&&"/."!==r.slice(-2)||(r+="/"),r=r.replace(/(\/(\.\/)+)|(\/\.$)/g,"/").replace(/\/{2,}/g,"/"),t&&(i=r.substring(1).match(/^(\.\.\/)+/)||"")&&(i=i[0]);-1!==(o=r.search(/\/\.\.(\/|$)/));)0!==o?(-1===(n=r.substring(0,o).lastIndexOf("/"))&&(n=o),r=r.substring(0,n)+r.substring(o+3)):r=r.substring(3);return t&&this.is("relative")&&(r=i+r.substring(1)),this._parts.path=r,this.build(!e),this},s.normalizePathname=s.normalizePath,s.normalizeQuery=function(e){return"string"==typeof this._parts.query&&(this._parts.query.length?this.query(a.parseQuery(this._parts.query,this._parts.escapeQuerySpace)):this._parts.query=null,this.build(!e)),this},s.normalizeFragment=function(e){return this._parts.fragment||(this._parts.fragment=null,this.build(!e)),this},s.normalizeSearch=s.normalizeQuery,s.normalizeHash=s.normalizeFragment,s.iso8859=function(){var e=a.encode,t=a.decode;a.encode=escape,a.decode=decodeURIComponent;try{this.normalize()}finally{a.encode=e,a.decode=t}return this},s.unicode=function(){var e=a.encode,t=a.decode;a.encode=g,a.decode=unescape;try{this.normalize()}finally{a.encode=e,a.decode=t}return this},s.readable=function(){var t=this.clone();t.username("").password("").normalize();var r="";if(t._parts.protocol&&(r+=t._parts.protocol+"://"),t._parts.hostname&&(t.is("punycode")&&e?(r+=e.toUnicode(t._parts.hostname),t._parts.port&&(r+=":"+t._parts.port)):r+=t.host()),t._parts.hostname&&t._parts.path&&"/"!==t._parts.path.charAt(0)&&(r+="/"),r+=t.path(!0),t._parts.query){for(var o="",n=0,i=t._parts.query.split("&"),s=i.length;n<s;n++){var c=(i[n]||"").split("=");o+="&"+a.decodeQuery(c[0],this._parts.escapeQuerySpace).replace(/&/g,"%26"),void 0!==c[1]&&(o+="="+a.decodeQuery(c[1],this._parts.escapeQuerySpace).replace(/&/g,"%26"))}r+="?"+o.substring(1)}return r+a.decodeQuery(t.hash(),!0)},s.absoluteTo=function(e){var t,r,o,n=this.clone(),i=["protocol","username","password","hostname","port"];if(this._parts.urn)throw new Error("URNs do not have any generally defined hierarchical components");if(e instanceof a||(e=new a(e)),n._parts.protocol)return n;if(n._parts.protocol=e._parts.protocol,this._parts.hostname)return n;for(r=0;o=i[r];r++)n._parts[o]=e._parts[o];return n._parts.path?(".."===n._parts.path.substring(-2)&&(n._parts.path+="/"),"/"!==n.path().charAt(0)&&(t=(t=e.directory())||(0===e.path().indexOf("/")?"/":""),n._parts.path=(t?t+"/":"")+n._parts.path,n.normalizePath())):(n._parts.path=e._parts.path,n._parts.query||(n._parts.query=e._parts.query)),n.build(),n},s.relativeTo=function(e){var t,r,o,n,i,s=this.clone().normalize();if(s._parts.urn)throw new Error("URNs do not have any generally defined hierarchical components");if(e=new a(e).normalize(),t=s._parts,r=e._parts,n=s.path(),i=e.path(),"/"!==n.charAt(0))throw new Error("URI is already relative");if("/"!==i.charAt(0))throw new Error("Cannot calculate a URI relative to another relative URI");if(t.protocol===r.protocol&&(t.protocol=null),t.username!==r.username||t.password!==r.password)return s.build();if(null!==t.protocol||null!==t.username||null!==t.password)return s.build();if(t.hostname!==r.hostname||t.port!==r.port)return s.build();if(t.hostname=null,t.port=null,n===i)return t.path="",s.build();if(!(o=a.commonPath(n,i)))return s.build();var c=r.path.substring(o.length).replace(/[^\/]*$/,"").replace(/.*?\//g,"../");return t.path=c+t.path.substring(o.length)||"./",s.build()},s.equals=function(e){var t,r,o,n,i,s=this.clone(),l=new a(e),u={};if(s.normalize(),l.normalize(),s.toString()===l.toString())return!0;if(o=s.query(),n=l.query(),s.query(""),l.query(""),s.toString()!==l.toString())return!1;if(o.length!==n.length)return!1;for(i in t=a.parseQuery(o,this._parts.escapeQuerySpace),r=a.parseQuery(n,this._parts.escapeQuerySpace),t)if(c.call(t,i)){if(p(t[i])){if(!f(t[i],r[i]))return!1}else if(t[i]!==r[i])return!1;u[i]=!0}for(i in r)if(c.call(r,i)&&!u[i])return!1;return!0},s.preventInvalidHostname=function(e){return this._parts.preventInvalidHostname=!!e,this},s.duplicateQueryParameters=function(e){return this._parts.duplicateQueryParameters=!!e,this},s.escapeQuerySpace=function(e){return this._parts.escapeQuerySpace=!!e,this},a}))},9538:function(e,t,r){var o;function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}e=r.nmd(e),function(a){var i="object"==n(t)&&t&&!t.nodeType&&t,s="object"==n(e)&&e&&!e.nodeType&&e,c="object"==(void 0===r.g?"undefined":n(r.g))&&r.g;c.global!==c&&c.window!==c&&c.self!==c||(a=c);var l,u,p=2147483647,d=36,h=26,f=38,m=700,y=/^xn--/,g=/[^\x20-\x7E]/,A=/[\x2E\u3002\uFF0E\uFF61]/g,b={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},x=d-1,v=Math.floor,P=String.fromCharCode;function k(e){throw new RangeError(b[e])}function w(e,t){for(var r=e.length,o=[];r--;)o[r]=t(e[r]);return o}function S(e,t){var r=e.split("@"),o="";return r.length>1&&(o=r[0]+"@",e=r[1]),o+w((e=e.replace(A,".")).split("."),t).join(".")}function C(e){for(var t,r,o=[],n=0,a=e.length;n<a;)(t=e.charCodeAt(n++))>=55296&&t<=56319&&n<a?56320==(64512&(r=e.charCodeAt(n++)))?o.push(((1023&t)<<10)+(1023&r)+65536):(o.push(t),n--):o.push(t);return o}function B(e){return w(e,(function(e){var t="";return e>65535&&(t+=P((e-=65536)>>>10&1023|55296),e=56320|1023&e),t+P(e)})).join("")}function T(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function O(e,t,r){var o=0;for(e=r?v(e/m):e>>1,e+=v(e/t);e>x*h>>1;o+=d)e=v(e/x);return v(o+(x+1)*e/(e+f))}function E(e){var t,r,o,n,a,i,s,c,l,u,f,m=[],y=e.length,g=0,A=128,b=72;for((r=e.lastIndexOf("-"))<0&&(r=0),o=0;o<r;++o)e.charCodeAt(o)>=128&&k("not-basic"),m.push(e.charCodeAt(o));for(n=r>0?r+1:0;n<y;){for(a=g,i=1,s=d;n>=y&&k("invalid-input"),((c=(f=e.charCodeAt(n++))-48<10?f-22:f-65<26?f-65:f-97<26?f-97:d)>=d||c>v((p-g)/i))&&k("overflow"),g+=c*i,!(c<(l=s<=b?1:s>=b+h?h:s-b));s+=d)i>v(p/(u=d-l))&&k("overflow"),i*=u;b=O(g-a,t=m.length+1,0==a),v(g/t)>p-A&&k("overflow"),A+=v(g/t),g%=t,m.splice(g++,0,A)}return B(m)}function M(e){var t,r,o,n,a,i,s,c,l,u,f,m,y,g,A,b=[];for(m=(e=C(e)).length,t=128,r=0,a=72,i=0;i<m;++i)(f=e[i])<128&&b.push(P(f));for(o=n=b.length,n&&b.push("-");o<m;){for(s=p,i=0;i<m;++i)(f=e[i])>=t&&f<s&&(s=f);for(s-t>v((p-r)/(y=o+1))&&k("overflow"),r+=(s-t)*y,t=s,i=0;i<m;++i)if((f=e[i])<t&&++r>p&&k("overflow"),f==t){for(c=r,l=d;!(c<(u=l<=a?1:l>=a+h?h:l-a));l+=d)A=c-u,g=d-u,b.push(P(T(u+A%g,0))),c=v(A/g);b.push(P(T(c,0))),a=O(r,y,o==n),r=0,++o}++r,++t}return b.join("")}if(l={version:"1.3.2",ucs2:{decode:C,encode:B},decode:E,encode:M,toASCII:function(e){return S(e,(function(e){return g.test(e)?"xn--"+M(e):e}))},toUnicode:function(e){return S(e,(function(e){return y.test(e)?E(e.slice(4).toLowerCase()):e}))}},"object"==n(r.amdO)&&r.amdO)void 0===(o=function(){return l}.call(t,r,t,e))||(e.exports=o);else if(i&&s)if(e.exports==i)s.exports=l;else for(u in l)l.hasOwnProperty(u)&&(i[u]=l[u]);else a.punycode=l}(this)},3784:function(e,t){t.AclPrivate="private",t.AclPublicRead="public-read",t.AclPublicReadWrite="public-read-write",t.AclPublicReadDelivered="public-read-delivered",t.AclPublicReadWriteDelivered="public-read-write-delivered",t.AclAuthenticatedRead="authenticated-read",t.AclBucketOwnerRead="bucket-owner-read",t.AclBucketOwnerFullControl="bucket-owner-full-control",t.AclLogDeliveryWrite="log-delivery-write",t.StorageClassStandard="STANDARD",t.StorageClassWarm="WARM",t.StorageClassCold="COLD",t.StorageClassDeepArchive="DEEP_ARCHIVE",t.StorageClassIntelligentTiering="INTELLIGENT_TIERING",t.PermissionRead="READ",t.PermissionWrite="WRITE",t.PermissionReadAcp="READ_ACP",t.PermissionWriteAcp="WRITE_ACP",t.PermissionFullControl="FULL_CONTROL",t.GroupAllUsers="AllUsers",t.GroupAuthenticatedUsers="AuthenticatedUsers",t.GroupLogDelivery="LogDelivery",t.RestoreTierExpedited="Expedited",t.RestoreTierStandard="Standard",t.RestoreTierBulk="Bulk",t.GranteeGroup="Group",t.GranteeUser="CanonicalUser",t.CopyMetadata="COPY",t.ReplaceMetadata="REPLACE",t.EventObjectCreatedAll="ObjectCreated:*",t.EventObjectCreatedPut="ObjectCreated:Put",t.EventObjectCreatedPost="ObjectCreated:Post",t.EventObjectCreatedCopy="ObjectCreated:Copy",t.EventObjectCreatedCompleteMultipartUpload="ObjectCreated:CompleteMultipartUpload",t.EventObjectRemovedAll="ObjectRemoved:*",t.EventObjectRemovedDelete="ObjectRemoved:Delete",t.EventObjectRemovedDeleteMarkerCreated="ObjectRemoved:DeleteMarkerCreated",t.ContentMD5="Content-MD5",t.ContentSHA256="Content-SHA256"},477:function(){}},o={};function n(e){var t=o[e];if(void 0!==t)return t.exports;var a=o[e]={id:e,loaded:!1,exports:{}};return r[e].call(a.exports,a,a.exports,n),a.loaded=!0,a.exports}n.amdO={},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},t=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__},n.t=function(r,o){if(1&o&&(r=this(r)),8&o)return r;if("object"==typeof r&&r){if(4&o&&r.__esModule)return r;if(16&o&&"function"==typeof r.then)return r}var a=Object.create(null);n.r(a);var i={};e=e||[null,t({}),t([]),t(t)];for(var s=2&o&&r;"object"==typeof s&&!~e.indexOf(s);s=t(s))Object.getOwnPropertyNames(s).forEach((function(e){i[e]=function(){return r[e]}}));return i.default=function(){return r},n.d(a,i),a},n.d=function(e,t){for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.nmd=function(e){return e.paths=[],e.children||(e.children=[]),e};var a={};return function(){"use strict";n.d(a,{default:function(){return qo}});var e=n(107),t=n.n(e),r=n(6783),o=n.n(r);function i(e,t,r){return t=c(t),function(e,t){if(t&&("object"===p(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(e,s()?Reflect.construct(t,r||[],c(e).constructor):t.apply(e,r))}function s(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(e){}return(s=function(){return!!e})()}function c(e){return c=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},c(e)}function l(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&u(e,t)}function u(e,t){return u=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},u(e,t)}function p(e){return p="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},p(e)}function d(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function h(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,m(o.key),o)}}function f(e,t,r){return t&&h(e.prototype,t),r&&h(e,r),Object.defineProperty(e,"prototype",{writable:!1}),e}function m(e){var t=function(e,t){if("object"!=p(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=p(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==p(t)?t:t+""}var y="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",g="ARRAYBUFFER not supported by this environment",A="UINT8ARRAY not supported by this environment";function b(e,t,r,o){var n,a,i,s=t||[0],c=(r=r||0)>>>3,l=-1===o?3:0;for(n=0;n<e.length;n+=1)a=(i=n+c)>>>2,s.length<=a&&s.push(0),s[a]|=e[n]<<8*(l+o*(i%4));return{value:s,binLen:8*e.length+r}}function x(e,t,r){switch(t){case"UTF8":case"UTF16BE":case"UTF16LE":break;default:throw new Error("encoding must be UTF8, UTF16BE, or UTF16LE")}switch(e){case"HEX":return function(e,t,o){return function(e,t,r,o){var n,a,i,s;if(0!=e.length%2)throw new Error("String of HEX type must be in byte increments");var c=t||[0],l=(r=r||0)>>>3,u=-1===o?3:0;for(n=0;n<e.length;n+=2){if(a=parseInt(e.substr(n,2),16),isNaN(a))throw new Error("String of HEX type contains invalid characters");for(i=(s=(n>>>1)+l)>>>2;c.length<=i;)c.push(0);c[i]|=a<<8*(u+o*(s%4))}return{value:c,binLen:4*e.length+r}}(e,t,o,r)};case"TEXT":return function(e,o,n){return function(e,t,r,o,n){var a,i,s,c,l,u,p,d,h=0,f=r||[0],m=(o=o||0)>>>3;if("UTF8"===t)for(p=-1===n?3:0,s=0;s<e.length;s+=1)for(i=[],128>(a=e.charCodeAt(s))?i.push(a):2048>a?(i.push(192|a>>>6),i.push(128|63&a)):55296>a||57344<=a?i.push(224|a>>>12,128|a>>>6&63,128|63&a):(s+=1,a=65536+((1023&a)<<10|1023&e.charCodeAt(s)),i.push(240|a>>>18,128|a>>>12&63,128|a>>>6&63,128|63&a)),c=0;c<i.length;c+=1){for(l=(u=h+m)>>>2;f.length<=l;)f.push(0);f[l]|=i[c]<<8*(p+n*(u%4)),h+=1}else for(p=-1===n?2:0,d="UTF16LE"===t&&1!==n||"UTF16LE"!==t&&1===n,s=0;s<e.length;s+=1){for(a=e.charCodeAt(s),!0===d&&(a=(c=255&a)<<8|a>>>8),l=(u=h+m)>>>2;f.length<=l;)f.push(0);f[l]|=a<<8*(p+n*(u%4)),h+=2}return{value:f,binLen:8*h+o}}(e,t,o,n,r)};case"B64":return function(e,t,o){return function(e,t,r,o){var n,a,i,s,c,l,u=0,p=t||[0],d=(r=r||0)>>>3,h=-1===o?3:0,f=e.indexOf("=");if(-1===e.search(/^[a-zA-Z0-9=+/]+$/))throw new Error("Invalid character in base-64 string");if(e=e.replace(/=/g,""),-1!==f&&f<e.length)throw new Error("Invalid '=' found in base-64 string");for(n=0;n<e.length;n+=4){for(s=e.substr(n,4),i=0,a=0;a<s.length;a+=1)i|=y.indexOf(s.charAt(a))<<18-6*a;for(a=0;a<s.length-1;a+=1){for(c=(l=u+d)>>>2;p.length<=c;)p.push(0);p[c]|=(i>>>16-8*a&255)<<8*(h+o*(l%4)),u+=1}}return{value:p,binLen:8*u+r}}(e,t,o,r)};case"BYTES":return function(e,t,o){return function(e,t,r,o){var n,a,i,s,c=t||[0],l=(r=r||0)>>>3,u=-1===o?3:0;for(a=0;a<e.length;a+=1)n=e.charCodeAt(a),i=(s=a+l)>>>2,c.length<=i&&c.push(0),c[i]|=n<<8*(u+o*(s%4));return{value:c,binLen:8*e.length+r}}(e,t,o,r)};case"ARRAYBUFFER":try{new ArrayBuffer(0)}catch(e){throw new Error(g)}return function(e,t,o){return function(e,t,r,o){return b(new Uint8Array(e),t,r,o)}(e,t,o,r)};case"UINT8ARRAY":try{new Uint8Array(0)}catch(e){throw new Error(A)}return function(e,t,o){return b(e,t,o,r)};default:throw new Error("format must be HEX, TEXT, B64, BYTES, ARRAYBUFFER, or UINT8ARRAY")}}function v(e,t,r,o){switch(e){case"HEX":return function(e){return function(e,t,r,o){var n,a,i="0123456789abcdef",s="",c=t/8,l=-1===r?3:0;for(n=0;n<c;n+=1)a=e[n>>>2]>>>8*(l+r*(n%4)),s+=i.charAt(a>>>4&15)+i.charAt(15&a);return o.outputUpper?s.toUpperCase():s}(e,t,r,o)};case"B64":return function(e){return function(e,t,r,o){var n,a,i,s,c,l="",u=t/8,p=-1===r?3:0;for(n=0;n<u;n+=3)for(s=n+1<u?e[n+1>>>2]:0,c=n+2<u?e[n+2>>>2]:0,i=(e[n>>>2]>>>8*(p+r*(n%4))&255)<<16|(s>>>8*(p+r*((n+1)%4))&255)<<8|c>>>8*(p+r*((n+2)%4))&255,a=0;a<4;a+=1)l+=8*n+6*a<=t?y.charAt(i>>>6*(3-a)&63):o.b64Pad;return l}(e,t,r,o)};case"BYTES":return function(e){return function(e,t,r){var o,n,a="",i=t/8,s=-1===r?3:0;for(o=0;o<i;o+=1)n=e[o>>>2]>>>8*(s+r*(o%4))&255,a+=String.fromCharCode(n);return a}(e,t,r)};case"ARRAYBUFFER":try{new ArrayBuffer(0)}catch(e){throw new Error(g)}return function(e){return function(e,t,r){var o,n=t/8,a=new ArrayBuffer(n),i=new Uint8Array(a),s=-1===r?3:0;for(o=0;o<n;o+=1)i[o]=e[o>>>2]>>>8*(s+r*(o%4))&255;return a}(e,t,r)};case"UINT8ARRAY":try{new Uint8Array(0)}catch(e){throw new Error(A)}return function(e){return function(e,t,r){var o,n=t/8,a=-1===r?3:0,i=new Uint8Array(n);for(o=0;o<n;o+=1)i[o]=e[o>>>2]>>>8*(a+r*(o%4))&255;return i}(e,t,r)};default:throw new Error("format must be HEX, B64, BYTES, ARRAYBUFFER, or UINT8ARRAY")}}var P=4294967296,k=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],w=[3238371032,914150663,812702999,4144912697,4290775857,1750603025,1694076839,3204075428],S=[1779033703,3144134277,1013904242,2773480762,1359893119,2600822924,528734635,1541459225],C="Chosen SHA variant is not supported",B="Cannot set numRounds with MAC";function T(e,t){var r,o,n=e.binLen>>>3,a=t.binLen>>>3,i=n<<3,s=4-n<<3;if(n%4!=0){for(r=0;r<a;r+=4)o=n+r>>>2,e.value[o]|=t.value[r>>>2]<<i,e.value.push(0),e.value[o+1]|=t.value[r>>>2]>>>s;return(e.value.length<<2)-4>=a+n&&e.value.pop(),{value:e.value,binLen:e.binLen+t.binLen}}return{value:e.value.concat(t.value),binLen:e.binLen+t.binLen}}function O(e){var t={outputUpper:!1,b64Pad:"=",outputLen:-1},r=e||{},o="Output length must be a multiple of 8";if(t.outputUpper=r.outputUpper||!1,r.b64Pad&&(t.b64Pad=r.b64Pad),r.outputLen){if(r.outputLen%8!=0)throw new Error(o);t.outputLen=r.outputLen}else if(r.shakeLen){if(r.shakeLen%8!=0)throw new Error(o);t.outputLen=r.shakeLen}if("boolean"!=typeof t.outputUpper)throw new Error("Invalid outputUpper formatting option");if("string"!=typeof t.b64Pad)throw new Error("Invalid b64Pad formatting option");return t}function E(e,t,r,o){var n=e+" must include a value and format";if(!t){if(!o)throw new Error(n);return o}if(void 0===t.value||!t.format)throw new Error(n);return x(t.format,t.encoding||"UTF8",r)(t.value)}var M=function(){return f((function e(t,r,o){d(this,e);var n=o||{};if(this.t=r,this.i=n.encoding||"UTF8",this.numRounds=n.numRounds||1,isNaN(this.numRounds)||this.numRounds!==parseInt(this.numRounds,10)||1>this.numRounds)throw new Error("numRounds must a integer >= 1");this.o=t,this.h=[],this.u=0,this.l=!1,this.A=0,this.H=!1,this.S=[],this.p=[]}),[{key:"update",value:function(e){var t,r=0,o=this.m>>>5,n=this.C(e,this.h,this.u),a=n.binLen,i=n.value,s=a>>>5;for(t=0;t<s;t+=o)r+this.m<=a&&(this.U=this.v(i.slice(t,t+o),this.U),r+=this.m);return this.A+=r,this.h=i.slice(r>>>5),this.u=a%this.m,this.l=!0,this}},{key:"getHash",value:function(e,t){var r,o,n=this.R,a=O(t);if(this.K){if(-1===a.outputLen)throw new Error("Output length must be specified in options");n=a.outputLen}var i=v(e,n,this.T,a);if(this.H&&this.g)return i(this.g(a));for(o=this.F(this.h.slice(),this.u,this.A,this.L(this.U),n),r=1;r<this.numRounds;r+=1)this.K&&n%32!=0&&(o[o.length-1]&=16777215>>>24-n%32),o=this.F(o,n,0,this.B(this.o),n);return i(o)}},{key:"setHMACKey",value:function(e,t,r){if(!this.M)throw new Error("Variant does not support HMAC");if(this.l)throw new Error("Cannot set MAC key after calling update");var o=x(t,(r||{}).encoding||"UTF8",this.T);this.k(o(e))}},{key:"k",value:function(e){var t,r=this.m>>>3,o=r/4-1;if(1!==this.numRounds)throw new Error(B);if(this.H)throw new Error("MAC key already set");for(r<e.binLen/8&&(e.value=this.F(e.value,e.binLen,0,this.B(this.o),this.R));e.value.length<=o;)e.value.push(0);for(t=0;t<=o;t+=1)this.S[t]=909522486^e.value[t],this.p[t]=1549556828^e.value[t];this.U=this.v(this.S,this.U),this.A=this.m,this.H=!0}},{key:"getHMAC",value:function(e,t){var r=O(t);return v(e,this.R,this.T,r)(this.Y())}},{key:"Y",value:function(){var e;if(!this.H)throw new Error("Cannot call getHMAC without first setting MAC key");var t=this.F(this.h.slice(),this.u,this.A,this.L(this.U),this.R);return e=this.v(this.p,this.B(this.o)),this.F(t,this.R,this.m,e,this.R)}}])}();function R(e,t){return e<<t|e>>>32-t}function I(e,t){return e>>>t|e<<32-t}function j(e,t){return e>>>t}function D(e,t,r){return e^t^r}function _(e,t,r){return e&t^~e&r}function L(e,t,r){return e&t^e&r^t&r}function q(e){return I(e,2)^I(e,13)^I(e,22)}function U(e,t){var r=(65535&e)+(65535&t);return(65535&(e>>>16)+(t>>>16)+(r>>>16))<<16|65535&r}function G(e,t,r,o){var n=(65535&e)+(65535&t)+(65535&r)+(65535&o);return(65535&(e>>>16)+(t>>>16)+(r>>>16)+(o>>>16)+(n>>>16))<<16|65535&n}function N(e,t,r,o,n){var a=(65535&e)+(65535&t)+(65535&r)+(65535&o)+(65535&n);return(65535&(e>>>16)+(t>>>16)+(r>>>16)+(o>>>16)+(n>>>16)+(a>>>16))<<16|65535&a}function F(e){return I(e,7)^I(e,18)^j(e,3)}function H(e){return I(e,6)^I(e,11)^I(e,25)}function z(e){return[1732584193,4023233417,2562383102,271733878,3285377520]}function K(e,t){var r,o,n,a,i,s,c,l=[];for(r=t[0],o=t[1],n=t[2],a=t[3],i=t[4],c=0;c<80;c+=1)l[c]=c<16?e[c]:R(l[c-3]^l[c-8]^l[c-14]^l[c-16],1),s=c<20?N(R(r,5),_(o,n,a),i,1518500249,l[c]):c<40?N(R(r,5),D(o,n,a),i,1859775393,l[c]):c<60?N(R(r,5),L(o,n,a),i,2400959708,l[c]):N(R(r,5),D(o,n,a),i,3395469782,l[c]),i=a,a=n,n=R(o,30),o=r,r=s;return t[0]=U(r,t[0]),t[1]=U(o,t[1]),t[2]=U(n,t[2]),t[3]=U(a,t[3]),t[4]=U(i,t[4]),t}function W(e,t,r,o){for(var n,a=15+(t+65>>>9<<4),i=t+r;e.length<=a;)e.push(0);for(e[t>>>5]|=128<<24-t%32,e[a]=4294967295&i,e[a-1]=i/P|0,n=0;n<e.length;n+=16)o=K(e.slice(n,n+16),o);return o}var V=function(e){function t(e,r,o){var n;if(d(this,t),"SHA-1"!==e)throw new Error(C);var a=o||{};return(n=i(this,t,[e,r,o])).M=!0,n.g=n.Y,n.T=-1,n.C=x(n.t,n.i,n.T),n.v=K,n.L=function(e){return e.slice()},n.B=z,n.F=W,n.U=[1732584193,4023233417,2562383102,271733878,3285377520],n.m=512,n.R=160,n.K=!1,a.hmacKey&&n.k(E("hmacKey",a.hmacKey,n.T)),n}return l(t,e),f(t)}(M);function Q(e){return"SHA-224"==e?w.slice():S.slice()}function X(e,t){var r,o,n,a,i,s,c,l,u,p,d,h,f=[];for(r=t[0],o=t[1],n=t[2],a=t[3],i=t[4],s=t[5],c=t[6],l=t[7],d=0;d<64;d+=1)f[d]=d<16?e[d]:G(I(h=f[d-2],17)^I(h,19)^j(h,10),f[d-7],F(f[d-15]),f[d-16]),u=N(l,H(i),_(i,s,c),k[d],f[d]),p=U(q(r),L(r,o,n)),l=c,c=s,s=i,i=U(a,u),a=n,n=o,o=r,r=U(u,p);return t[0]=U(r,t[0]),t[1]=U(o,t[1]),t[2]=U(n,t[2]),t[3]=U(a,t[3]),t[4]=U(i,t[4]),t[5]=U(s,t[5]),t[6]=U(c,t[6]),t[7]=U(l,t[7]),t}var $=function(e){function t(e,r,o){var n;if(d(this,t),"SHA-224"!==e&&"SHA-256"!==e)throw new Error(C);var a=o||{};return(n=i(this,t,[e,r,o])).g=n.Y,n.M=!0,n.T=-1,n.C=x(n.t,n.i,n.T),n.v=X,n.L=function(e){return e.slice()},n.B=Q,n.F=function(t,r,o,n){return function(e,t,r,o,n){for(var a,i=15+(t+65>>>9<<4),s=t+r;e.length<=i;)e.push(0);for(e[t>>>5]|=128<<24-t%32,e[i]=4294967295&s,e[i-1]=s/P|0,a=0;a<e.length;a+=16)o=X(e.slice(a,a+16),o);return"SHA-224"===n?[o[0],o[1],o[2],o[3],o[4],o[5],o[6]]:o}(t,r,o,n,e)},n.U=Q(e),n.m=512,n.R="SHA-224"===e?224:256,n.K=!1,a.hmacKey&&n.k(E("hmacKey",a.hmacKey,n.T)),n}return l(t,e),f(t)}(M),Y=f((function e(t,r){d(this,e),this.N=t,this.I=r}));function Z(e,t){var r;return t>32?(r=64-t,new Y(e.I<<t|e.N>>>r,e.N<<t|e.I>>>r)):0!==t?(r=32-t,new Y(e.N<<t|e.I>>>r,e.I<<t|e.N>>>r)):e}function J(e,t){var r;return t<32?(r=32-t,new Y(e.N>>>t|e.I<<r,e.I>>>t|e.N<<r)):(r=64-t,new Y(e.I>>>t|e.N<<r,e.N>>>t|e.I<<r))}function ee(e,t){return new Y(e.N>>>t,e.I>>>t|e.N<<32-t)}function te(e,t,r){return new Y(e.N&t.N^e.N&r.N^t.N&r.N,e.I&t.I^e.I&r.I^t.I&r.I)}function re(e){var t=J(e,28),r=J(e,34),o=J(e,39);return new Y(t.N^r.N^o.N,t.I^r.I^o.I)}function oe(e,t){var r,o;r=(65535&e.I)+(65535&t.I);var n=(65535&(o=(e.I>>>16)+(t.I>>>16)+(r>>>16)))<<16|65535&r;return r=(65535&e.N)+(65535&t.N)+(o>>>16),o=(e.N>>>16)+(t.N>>>16)+(r>>>16),new Y((65535&o)<<16|65535&r,n)}function ne(e,t,r,o){var n,a;n=(65535&e.I)+(65535&t.I)+(65535&r.I)+(65535&o.I);var i=(65535&(a=(e.I>>>16)+(t.I>>>16)+(r.I>>>16)+(o.I>>>16)+(n>>>16)))<<16|65535&n;return n=(65535&e.N)+(65535&t.N)+(65535&r.N)+(65535&o.N)+(a>>>16),a=(e.N>>>16)+(t.N>>>16)+(r.N>>>16)+(o.N>>>16)+(n>>>16),new Y((65535&a)<<16|65535&n,i)}function ae(e,t,r,o,n){var a,i;a=(65535&e.I)+(65535&t.I)+(65535&r.I)+(65535&o.I)+(65535&n.I);var s=(65535&(i=(e.I>>>16)+(t.I>>>16)+(r.I>>>16)+(o.I>>>16)+(n.I>>>16)+(a>>>16)))<<16|65535&a;return a=(65535&e.N)+(65535&t.N)+(65535&r.N)+(65535&o.N)+(65535&n.N)+(i>>>16),i=(e.N>>>16)+(t.N>>>16)+(r.N>>>16)+(o.N>>>16)+(n.N>>>16)+(a>>>16),new Y((65535&i)<<16|65535&a,s)}function ie(e,t){return new Y(e.N^t.N,e.I^t.I)}function se(e){var t=J(e,19),r=J(e,61),o=ee(e,6);return new Y(t.N^r.N^o.N,t.I^r.I^o.I)}function ce(e){var t=J(e,1),r=J(e,8),o=ee(e,7);return new Y(t.N^r.N^o.N,t.I^r.I^o.I)}function le(e){var t=J(e,14),r=J(e,18),o=J(e,41);return new Y(t.N^r.N^o.N,t.I^r.I^o.I)}var ue=[new Y(k[0],3609767458),new Y(k[1],602891725),new Y(k[2],3964484399),new Y(k[3],2173295548),new Y(k[4],4081628472),new Y(k[5],3053834265),new Y(k[6],2937671579),new Y(k[7],3664609560),new Y(k[8],2734883394),new Y(k[9],1164996542),new Y(k[10],1323610764),new Y(k[11],3590304994),new Y(k[12],4068182383),new Y(k[13],991336113),new Y(k[14],633803317),new Y(k[15],3479774868),new Y(k[16],2666613458),new Y(k[17],944711139),new Y(k[18],2341262773),new Y(k[19],2007800933),new Y(k[20],1495990901),new Y(k[21],1856431235),new Y(k[22],3175218132),new Y(k[23],2198950837),new Y(k[24],3999719339),new Y(k[25],766784016),new Y(k[26],2566594879),new Y(k[27],3203337956),new Y(k[28],1034457026),new Y(k[29],2466948901),new Y(k[30],3758326383),new Y(k[31],168717936),new Y(k[32],1188179964),new Y(k[33],1546045734),new Y(k[34],1522805485),new Y(k[35],2643833823),new Y(k[36],2343527390),new Y(k[37],1014477480),new Y(k[38],1206759142),new Y(k[39],344077627),new Y(k[40],1290863460),new Y(k[41],3158454273),new Y(k[42],3505952657),new Y(k[43],106217008),new Y(k[44],3606008344),new Y(k[45],1432725776),new Y(k[46],1467031594),new Y(k[47],851169720),new Y(k[48],3100823752),new Y(k[49],1363258195),new Y(k[50],3750685593),new Y(k[51],3785050280),new Y(k[52],3318307427),new Y(k[53],3812723403),new Y(k[54],2003034995),new Y(k[55],3602036899),new Y(k[56],1575990012),new Y(k[57],1125592928),new Y(k[58],2716904306),new Y(k[59],442776044),new Y(k[60],593698344),new Y(k[61],3733110249),new Y(k[62],2999351573),new Y(k[63],3815920427),new Y(3391569614,3928383900),new Y(3515267271,566280711),new Y(3940187606,3454069534),new Y(4118630271,4000239992),new Y(116418474,1914138554),new Y(174292421,2731055270),new Y(289380356,3203993006),new Y(460393269,320620315),new Y(685471733,587496836),new Y(852142971,1086792851),new Y(1017036298,365543100),new Y(1126000580,2618297676),new Y(1288033470,3409855158),new Y(1501505948,4234509866),new Y(1607167915,987167468),new Y(1816402316,1246189591)];function pe(e){return"SHA-384"===e?[new Y(3418070365,w[0]),new Y(1654270250,w[1]),new Y(2438529370,w[2]),new Y(355462360,w[3]),new Y(1731405415,w[4]),new Y(41048885895,w[5]),new Y(3675008525,w[6]),new Y(1203062813,w[7])]:[new Y(S[0],4089235720),new Y(S[1],2227873595),new Y(S[2],4271175723),new Y(S[3],1595750129),new Y(S[4],2917565137),new Y(S[5],725511199),new Y(S[6],4215389547),new Y(S[7],327033209)]}function de(e,t){var r,o,n,a,i,s,c,l,u,p,d,h,f,m,y,g=[];for(r=t[0],o=t[1],n=t[2],a=t[3],i=t[4],s=t[5],c=t[6],l=t[7],d=0;d<80;d+=1)d<16?(h=2*d,g[d]=new Y(e[h],e[h+1])):g[d]=ne(se(g[d-2]),g[d-7],ce(g[d-15]),g[d-16]),u=ae(l,le(i),(m=s,y=c,new Y((f=i).N&m.N^~f.N&y.N,f.I&m.I^~f.I&y.I)),ue[d],g[d]),p=oe(re(r),te(r,o,n)),l=c,c=s,s=i,i=oe(a,u),a=n,n=o,o=r,r=oe(u,p);return t[0]=oe(r,t[0]),t[1]=oe(o,t[1]),t[2]=oe(n,t[2]),t[3]=oe(a,t[3]),t[4]=oe(i,t[4]),t[5]=oe(s,t[5]),t[6]=oe(c,t[6]),t[7]=oe(l,t[7]),t}var he=function(e){function t(e,r,o){var n;if(d(this,t),"SHA-384"!==e&&"SHA-512"!==e)throw new Error(C);var a=o||{};return(n=i(this,t,[e,r,o])).g=n.Y,n.M=!0,n.T=-1,n.C=x(n.t,n.i,n.T),n.v=de,n.L=function(e){return e.slice()},n.B=pe,n.F=function(t,r,o,n){return function(e,t,r,o,n){for(var a,i=31+(t+129>>>10<<5),s=t+r;e.length<=i;)e.push(0);for(e[t>>>5]|=128<<24-t%32,e[i]=4294967295&s,e[i-1]=s/P|0,a=0;a<e.length;a+=32)o=de(e.slice(a,a+32),o);return"SHA-384"===n?[o[0].N,o[0].I,o[1].N,o[1].I,o[2].N,o[2].I,o[3].N,o[3].I,o[4].N,o[4].I,o[5].N,o[5].I]:[o[0].N,o[0].I,o[1].N,o[1].I,o[2].N,o[2].I,o[3].N,o[3].I,o[4].N,o[4].I,o[5].N,o[5].I,o[6].N,o[6].I,o[7].N,o[7].I]}(t,r,o,n,e)},n.U=pe(e),n.m=1024,n.R="SHA-384"===e?384:512,n.K=!1,a.hmacKey&&n.k(E("hmacKey",a.hmacKey,n.T)),n}return l(t,e),f(t)}(M),fe=[new Y(0,1),new Y(0,32898),new Y(2147483648,32906),new Y(2147483648,2147516416),new Y(0,32907),new Y(0,2147483649),new Y(2147483648,2147516545),new Y(2147483648,32777),new Y(0,138),new Y(0,136),new Y(0,2147516425),new Y(0,2147483658),new Y(0,2147516555),new Y(2147483648,139),new Y(2147483648,32905),new Y(2147483648,32771),new Y(2147483648,32770),new Y(2147483648,128),new Y(0,32778),new Y(2147483648,2147483658),new Y(2147483648,2147516545),new Y(2147483648,32896),new Y(0,2147483649),new Y(2147483648,2147516424)],me=[[0,36,3,41,18],[1,44,10,45,2],[62,6,43,15,61],[28,55,25,21,56],[27,20,39,8,14]];function ye(e){var t,r=[];for(t=0;t<5;t+=1)r[t]=[new Y(0,0),new Y(0,0),new Y(0,0),new Y(0,0),new Y(0,0)];return r}function ge(e){var t,r=[];for(t=0;t<5;t+=1)r[t]=e[t].slice();return r}function Ae(e,t){var r,o,n,a,i,s,c,l,u,p=[],d=[];if(null!==e)for(o=0;o<e.length;o+=2)t[(o>>>1)%5][(o>>>1)/5|0]=ie(t[(o>>>1)%5][(o>>>1)/5|0],new Y(e[o+1],e[o]));for(r=0;r<24;r+=1){for(a=ye(),o=0;o<5;o+=1)p[o]=(i=t[o][0],s=t[o][1],c=t[o][2],l=t[o][3],u=t[o][4],new Y(i.N^s.N^c.N^l.N^u.N,i.I^s.I^c.I^l.I^u.I));for(o=0;o<5;o+=1)d[o]=ie(p[(o+4)%5],Z(p[(o+1)%5],1));for(o=0;o<5;o+=1)for(n=0;n<5;n+=1)t[o][n]=ie(t[o][n],d[o]);for(o=0;o<5;o+=1)for(n=0;n<5;n+=1)a[n][(2*o+3*n)%5]=Z(t[o][n],me[o][n]);for(o=0;o<5;o+=1)for(n=0;n<5;n+=1)t[o][n]=ie(a[o][n],new Y(~a[(o+1)%5][n].N&a[(o+2)%5][n].N,~a[(o+1)%5][n].I&a[(o+2)%5][n].I));t[0][0]=ie(t[0][0],fe[r])}return t}function be(e){var t,r,o=0,n=[0,0],a=[4294967295&e,e/P&2097151];for(t=6;t>=0;t--)0==(r=a[t>>2]>>>8*t&255)&&0===o||(n[o+1>>2]|=r<<8*(o+1),o+=1);return o=0!==o?o:1,n[0]|=o,{value:o+1>4?n:[n[0]],binLen:8+8*o}}function xe(e){return T(be(e.binLen),e)}function ve(e,t){var r,o=be(t),n=t>>>2,a=(n-(o=T(o,e)).value.length%n)%n;for(r=0;r<a;r++)o.value.push(0);return o.value}var Pe=function(e){function t(e,r,o){var n;d(this,t);var a=6,s=0,c=o||{};if(1!==(n=i(this,t,[e,r,o])).numRounds){if(c.kmacKey||c.hmacKey)throw new Error(B);if("CSHAKE128"===n.o||"CSHAKE256"===n.o)throw new Error("Cannot set numRounds for CSHAKE variants")}switch(n.T=1,n.C=x(n.t,n.i,n.T),n.v=Ae,n.L=ge,n.B=ye,n.U=ye(),n.K=!1,e){case"SHA3-224":n.m=s=1152,n.R=224,n.M=!0,n.g=n.Y;break;case"SHA3-256":n.m=s=1088,n.R=256,n.M=!0,n.g=n.Y;break;case"SHA3-384":n.m=s=832,n.R=384,n.M=!0,n.g=n.Y;break;case"SHA3-512":n.m=s=576,n.R=512,n.M=!0,n.g=n.Y;break;case"SHAKE128":a=31,n.m=s=1344,n.R=-1,n.K=!0,n.M=!1,n.g=null;break;case"SHAKE256":a=31,n.m=s=1088,n.R=-1,n.K=!0,n.M=!1,n.g=null;break;case"KMAC128":a=4,n.m=s=1344,n.X(o),n.R=-1,n.K=!0,n.M=!1,n.g=n._;break;case"KMAC256":a=4,n.m=s=1088,n.X(o),n.R=-1,n.K=!0,n.M=!1,n.g=n._;break;case"CSHAKE128":n.m=s=1344,a=n.O(o),n.R=-1,n.K=!0,n.M=!1,n.g=null;break;case"CSHAKE256":n.m=s=1088,a=n.O(o),n.R=-1,n.K=!0,n.M=!1,n.g=null;break;default:throw new Error(C)}return n.F=function(e,t,r,o,n){return function(e,t,r,o,n,a,i){var s,c,l=0,u=[],p=n>>>5,d=t>>>5;for(s=0;s<d&&t>=n;s+=p)o=Ae(e.slice(s,s+p),o),t-=n;for(e=e.slice(s),t%=n;e.length<p;)e.push(0);for(e[(s=t>>>3)>>2]^=a<<s%4*8,e[p-1]^=2147483648,o=Ae(e,o);32*u.length<i&&(c=o[l%5][l/5|0],u.push(c.I),!(32*u.length>=i));)u.push(c.N),0==64*(l+=1)%n&&(Ae(null,o),l=0);return u}(e,t,0,o,s,a,n)},c.hmacKey&&n.k(E("hmacKey",c.hmacKey,n.T)),n}return l(t,e),f(t,[{key:"O",value:function(e,t){var r=function(e){var t=e||{};return{funcName:E("funcName",t.funcName,1,{value:[],binLen:0}),customization:E("Customization",t.customization,1,{value:[],binLen:0})}}(e||{});t&&(r.funcName=t);var o=T(xe(r.funcName),xe(r.customization));if(0!==r.customization.binLen||0!==r.funcName.binLen){for(var n=ve(o,this.m>>>3),a=0;a<n.length;a+=this.m>>>5)this.U=this.v(n.slice(a,a+(this.m>>>5)),this.U),this.A+=this.m;return 4}return 31}},{key:"X",value:function(e){var t=function(e){var t=e||{};return{kmacKey:E("kmacKey",t.kmacKey,1),funcName:{value:[1128353099],binLen:32},customization:E("Customization",t.customization,1,{value:[],binLen:0})}}(e||{});this.O(e,t.funcName);for(var r=ve(xe(t.kmacKey),this.m>>>3),o=0;o<r.length;o+=this.m>>>5)this.U=this.v(r.slice(o,o+(this.m>>>5)),this.U),this.A+=this.m;this.H=!0}},{key:"_",value:function(e){var t=T({value:this.h.slice(),binLen:this.u},function(e){var t,r,o=0,n=[0,0],a=[4294967295&e,e/P&2097151];for(t=6;t>=0;t--)0==(r=a[t>>2]>>>8*t&255)&&0===o||(n[o>>2]|=r<<8*o,o+=1);return n[(o=0!==o?o:1)>>2]|=o<<8*o,{value:o+1>4?n:[n[0]],binLen:8+8*o}}(e.outputLen));return this.F(t.value,t.binLen,this.A,this.L(this.U),e.outputLen)}}])}(M),ke=function(){return f((function e(t,r,o){if(d(this,e),"SHA-1"==t)this.P=new V(t,r,o);else if("SHA-224"==t||"SHA-256"==t)this.P=new $(t,r,o);else if("SHA-384"==t||"SHA-512"==t)this.P=new he(t,r,o);else{if("SHA3-224"!=t&&"SHA3-256"!=t&&"SHA3-384"!=t&&"SHA3-512"!=t&&"SHAKE128"!=t&&"SHAKE256"!=t&&"CSHAKE128"!=t&&"CSHAKE256"!=t&&"KMAC128"!=t&&"KMAC256"!=t)throw new Error(C);this.P=new Pe(t,r,o)}}),[{key:"update",value:function(e){return this.P.update(e),this}},{key:"getHash",value:function(e,t){return this.P.getHash(e,t)}},{key:"setHMACKey",value:function(e,t,r){this.P.setHMACKey(e,t,r)}},{key:"getHMAC",value:function(e,t){return this.P.getHMAC(e,t)}}])}(),we="3.7.7",Se=we,Ce="function"==typeof Buffer,Be="function"==typeof TextDecoder?new TextDecoder:void 0,Te="function"==typeof TextEncoder?new TextEncoder:void 0,Oe=Array.prototype.slice.call("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="),Ee=function(e){var t={};return e.forEach((function(e,r){return t[e]=r})),t}(Oe),Me=/^(?:[A-Za-z\d+\/]{4})*?(?:[A-Za-z\d+\/]{2}(?:==)?|[A-Za-z\d+\/]{3}=?)?$/,Re=String.fromCharCode.bind(String),Ie="function"==typeof Uint8Array.from?Uint8Array.from.bind(Uint8Array):function(e){return new Uint8Array(Array.prototype.slice.call(e,0))},je=function(e){return e.replace(/=/g,"").replace(/[+\/]/g,(function(e){return"+"==e?"-":"_"}))},De=function(e){return e.replace(/[^A-Za-z0-9\+\/]/g,"")},_e=function(e){for(var t,r,o,n,a="",i=e.length%3,s=0;s<e.length;){if((r=e.charCodeAt(s++))>255||(o=e.charCodeAt(s++))>255||(n=e.charCodeAt(s++))>255)throw new TypeError("invalid character found");a+=Oe[(t=r<<16|o<<8|n)>>18&63]+Oe[t>>12&63]+Oe[t>>6&63]+Oe[63&t]}return i?a.slice(0,i-3)+"===".substring(i):a},Le="function"==typeof btoa?function(e){return btoa(e)}:Ce?function(e){return Buffer.from(e,"binary").toString("base64")}:_e,qe=Ce?function(e){return Buffer.from(e).toString("base64")}:function(e){for(var t=[],r=0,o=e.length;r<o;r+=4096)t.push(Re.apply(null,e.subarray(r,r+4096)));return Le(t.join(""))},Ue=function(e){return arguments.length>1&&void 0!==arguments[1]&&arguments[1]?je(qe(e)):qe(e)},Ge=function(e){if(e.length<2)return(t=e.charCodeAt(0))<128?e:t<2048?Re(192|t>>>6)+Re(128|63&t):Re(224|t>>>12&15)+Re(128|t>>>6&63)+Re(128|63&t);var t=65536+1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320);return Re(240|t>>>18&7)+Re(128|t>>>12&63)+Re(128|t>>>6&63)+Re(128|63&t)},Ne=/[\uD800-\uDBFF][\uDC00-\uDFFFF]|[^\x00-\x7F]/g,Fe=function(e){return e.replace(Ne,Ge)},He=Ce?function(e){return Buffer.from(e,"utf8").toString("base64")}:Te?function(e){return qe(Te.encode(e))}:function(e){return Le(Fe(e))},ze=function(e){return arguments.length>1&&void 0!==arguments[1]&&arguments[1]?je(He(e)):He(e)},Ke=function(e){return ze(e,!0)},We=/[\xC0-\xDF][\x80-\xBF]|[\xE0-\xEF][\x80-\xBF]{2}|[\xF0-\xF7][\x80-\xBF]{3}/g,Ve=function(e){switch(e.length){case 4:var t=((7&e.charCodeAt(0))<<18|(63&e.charCodeAt(1))<<12|(63&e.charCodeAt(2))<<6|63&e.charCodeAt(3))-65536;return Re(55296+(t>>>10))+Re(56320+(1023&t));case 3:return Re((15&e.charCodeAt(0))<<12|(63&e.charCodeAt(1))<<6|63&e.charCodeAt(2));default:return Re((31&e.charCodeAt(0))<<6|63&e.charCodeAt(1))}},Qe=function(e){return e.replace(We,Ve)},Xe=function(e){if(e=e.replace(/\s+/g,""),!Me.test(e))throw new TypeError("malformed base64.");e+="==".slice(2-(3&e.length));for(var t,r,o,n="",a=0;a<e.length;)t=Ee[e.charAt(a++)]<<18|Ee[e.charAt(a++)]<<12|(r=Ee[e.charAt(a++)])<<6|(o=Ee[e.charAt(a++)]),n+=64===r?Re(t>>16&255):64===o?Re(t>>16&255,t>>8&255):Re(t>>16&255,t>>8&255,255&t);return n},$e="function"==typeof atob?function(e){return atob(De(e))}:Ce?function(e){return Buffer.from(e,"base64").toString("binary")}:Xe,Ye=Ce?function(e){return Ie(Buffer.from(e,"base64"))}:function(e){return Ie($e(e).split("").map((function(e){return e.charCodeAt(0)})))},Ze=function(e){return Ye(et(e))},Je=Ce?function(e){return Buffer.from(e,"base64").toString("utf8")}:Be?function(e){return Be.decode(Ye(e))}:function(e){return Qe($e(e))},et=function(e){return De(e.replace(/[-_]/g,(function(e){return"-"==e?"+":"/"})))},tt=function(e){return Je(et(e))},rt=function(e){return{value:e,enumerable:!1,writable:!0,configurable:!0}},ot=function(){var e=function(e,t){return Object.defineProperty(String.prototype,e,rt(t))};e("fromBase64",(function(){return tt(this)})),e("toBase64",(function(e){return ze(this,e)})),e("toBase64URI",(function(){return ze(this,!0)})),e("toBase64URL",(function(){return ze(this,!0)})),e("toUint8Array",(function(){return Ze(this)}))},nt=function(){var e=function(e,t){return Object.defineProperty(Uint8Array.prototype,e,rt(t))};e("toBase64",(function(e){return Ue(this,e)})),e("toBase64URI",(function(){return Ue(this,!0)})),e("toBase64URL",(function(){return Ue(this,!0)}))},at={version:we,VERSION:Se,atob:$e,atobPolyfill:Xe,btoa:Le,btoaPolyfill:_e,fromBase64:tt,toBase64:ze,encode:ze,encodeURI:Ke,encodeURL:Ke,utob:Fe,btou:Qe,decode:tt,isValid:function(e){if("string"!=typeof e)return!1;var t=e.replace(/\s+/g,"").replace(/={0,2}$/,"");return!/[^\s0-9a-zA-Z\+/]/.test(t)||!/[^\s0-9a-zA-Z\-_]/.test(t)},fromUint8Array:Ue,toUint8Array:Ze,extendString:ot,extendUint8Array:nt,extendBuiltins:function(){ot(),nt()}},it=n(3264),st=n.n(it),ct=new function(){var e=function e(t){var r={};if(1===t.nodeType){if(t.attributes.length>0){r["@attributes"]={};for(var o=0;o<t.attributes.length;o++){var n=t.attributes.item(o);r["@attributes"][n.nodeName]=n.value}}}else 3===t.nodeType&&(r=t.nodeValue);if(t.hasChildNodes())for(var a=0;a<t.childNodes.length;a++){var i=t.childNodes.item(a),s=i.nodeName;if(void 0===r[s])r[s]=e(i);else{if(void 0===r[s].push){var c=r[s];r[s]=[],r[s].push(c)}r[s].push(e(i))}}return r};this.parseString=function(t,r){var o;window.DOMParser?o=(new window.DOMParser).parseFromString(t,"text/xml"):(o=new window.ActiveXObject("Microsoft.XMLDOM")).async="false";var n,a,i=(n=e(o),-1===(a=JSON.stringify(n,void 0,2).replace(/(\\t|\\r|\\n)/g,"").replace(/"",[\n\t\r\s]+""[,]*/g,"").replace(/(\n[\t\s\r]*\n)/g,"").replace(/[\s\t]{2,}""[,]{0,1}/g,"").replace(/"[\s\t]{1,}"[,]{0,1}/g,"")).indexOf('"parsererror": {')?a:"Invalid XML format");return void 0===r?JSON.parse(i):i}},lt={location:"xml",sentAs:"Domain",type:"array",items:{type:"object",parameters:{Name:{type:"string",sentAs:"Name"},Action:{type:"string",sentAs:"Action"},Status:{type:"string",sentAs:"Status"},Agency:{type:"string",sentAs:"Agency"},Filter:{type:"object",sentAs:"Filter",parameters:{Object:{type:"object",sentAs:"Object",parameters:{FilterRule:{type:"array",sentAs:"FilterRule",items:{type:"object",parameters:{Name:{type:"string",sentAs:"Name"},Value:{type:"string",sentAs:"Value"}}}}}}}},Events:{type:"array",items:{type:"adapter"},sentAs:"Event"}}}},ut={SseKms:{location:"header",sentAs:"server-side-encryption",withPrefix:!0,type:"adapter"},SseMode:{location:"header",sentAs:"server-side-encryption",withPrefix:!0,type:"adapter"},SseAlgorithm:{location:"header",sentAs:"server-side-data-encryption",withPrefix:!0},SseKmsKey:{location:"header",sentAs:"server-side-encryption-kms-key-id",withPrefix:!0},SseKmsProjectId:{location:"header",sentAs:"sse-kms-key-project-id",withPrefix:!0},SseC:{location:"header",sentAs:"server-side-encryption-customer-algorithm",withPrefix:!0},SseCKey:{location:"header",sentAs:"server-side-encryption-customer-key",type:"password",withPrefix:!0},SseCKeyMd5:{location:"header",sentAs:"server-side-encryption-customer-key-MD5",withPrefix:!0}},pt={SseMode:{location:"header",sentAs:"server-side-encryption",withPrefix:!0,type:"adapter"},SseAlgorithm:{location:"header",sentAs:"server-side-data-encryption",withPrefix:!0},SseKmsKey:{location:"header",sentAs:"server-side-encryption-kms-key-id",withPrefix:!0},SseKmsProjectId:{location:"header",sentAs:"sse-kms-key-project-id",withPrefix:!0}},dt={httpMethod:"POST",parameters:{ApiPath:{location:"uri"},CreateReviewTask:{required:!0,location:"body"}}},ht={data:{type:"body"},parameters:{CreateReviewTask:{location:"body"}}},ft={httpMethod:"GET",parameters:{ApiPath:{location:"uri"}}},mt={data:{type:"body"},parameters:{result:{location:"body"}}},yt={httpMethod:"PUT",parameters:{ApiPath:{location:"uri"},CreateReviewTask:{required:!0,location:"body"}}},gt={data:{type:"body"},parameters:{CreateReviewTask:{location:"body"}}},At={httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"task_name"}}},bt={httpMethod:"GET",parameters:{ApiPath:{location:"uri"},Type:{location:"urlPath",sentAs:"type"},Limit:{type:"number",location:"urlPath",sentAs:"limit"},Offset:{type:"number",location:"urlPath",sentAs:"offset"}}},xt={data:{type:"body"},parameters:{result:{location:"body"}}},vt={required:!0,type:"array",location:"xml",sentAs:"Rule",items:{type:"object",parameters:{ID:{sentAs:"ID"},Prefix:{sentAs:"Prefix"},Status:{sentAs:"Status"},Filter:{type:"object",sentAs:"Filter",parameters:{And:{type:"object",sentAs:"And",parameters:{Prefix:{sentAs:"Prefix"},Tag:{type:"array",sentAs:"Tag",items:{type:"object",location:"xml",sentAs:"Tag",parameters:{Key:{sentAs:"Key"},Value:{sentAs:"Value"}}}}}}}},Transitions:{type:"array",sentAs:"Transition",items:{type:"object",parameters:{StorageClass:{sentAs:"StorageClass",type:"adapter"},Date:{sentAs:"Date"},Days:{type:"number",sentAs:"Days"}}}},Expiration:{type:"object",sentAs:"Expiration",parameters:{Date:{sentAs:"Date"},Days:{type:"number",sentAs:"Days"},ExpiredObjectDeleteMarker:{sentAs:"ExpiredObjectDeleteMarker"}}},AbortIncompleteMultipartUpload:{type:"object",sentAs:"AbortIncompleteMultipartUpload",parameters:{DaysAfterInitiation:{type:"number",sentAs:"DaysAfterInitiation"}}},NoncurrentVersionTransitions:{type:"array",sentAs:"NoncurrentVersionTransition",items:{type:"object",parameters:{StorageClass:{sentAs:"StorageClass",type:"adapter"},NoncurrentDays:{type:"number",sentAs:"NoncurrentDays"}}}},NoncurrentVersionExpiration:{type:"object",sentAs:"NoncurrentVersionExpiration",parameters:{NoncurrentDays:{type:"number",sentAs:"NoncurrentDays"}}}}}},Pt={location:"xml",type:"object",parameters:{DefaultRetention:{type:"object",sentAs:"DefaultRetention",parameters:{Days:{sentAs:"Days"},Years:{sentAs:"Years"},Mode:{sentAs:"Mode"}}}}},kt={Name:{location:"xml",sentAs:"Name"},CertificateId:{location:"xml",sentAs:"CertificateId"},Certificate:{location:"xml",sentAs:"Certificate"},CertificateChain:{location:"xml",sentAs:"CertificateChain"},PrivateKey:{location:"xml",sentAs:"PrivateKey"}},wt={type:"array",location:"xml",sentAs:"FunctionGraphConfiguration",items:{type:"object",location:"xml",parameters:{ID:{sentAs:"Id"},Filter:{type:"object",parameters:{FilterRules:{wrapper:"Object",type:"array",sentAs:"FilterRule",items:{type:"object",parameters:{Name:{},Value:{}}}}}},FunctionGraph:{},Event:{type:"array",items:{type:"adapter"}}}}},St={type:"array",location:"xml",sentAs:"TopicConfiguration",items:{type:"object",location:"xml",parameters:{ID:{sentAs:"Id"},Filter:{type:"object",parameters:{FilterRules:{wrapper:"Object",type:"array",sentAs:"FilterRule",items:{type:"object",parameters:{Name:{},Value:{}}}}}},Topic:{},Event:{type:"array",items:{type:"adapter"}}}}},Ct={type:"array",location:"xml",sentAs:"EventGridConfiguration",items:{type:"object",location:"xml",parameters:{ID:{sentAs:"Id"},Filter:{type:"object",parameters:{FilterRules:{wrapper:"Object",type:"array",sentAs:"FilterRule",items:{type:"object",parameters:{Name:{},Value:{}}}}}},ChannelId:{},ObjectKeyEncode:{},UseOBSMessageLayout:{},Event:{type:"array",items:{type:"adapter"}}}}},Bt={type:"array",location:"xml",sentAs:"FunctionStageConfiguration",items:{type:"object",location:"xml",parameters:{ID:{sentAs:"Id"},Filter:{type:"object",parameters:{FilterRules:{wrapper:"Object",type:"array",sentAs:"FilterRule",items:{type:"object",parameters:{Name:{},Value:{}}}}}},FunctionStage:{},Event:{type:"array",items:{type:"adapter"}}}}};function Tt(e){return Tt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Tt(e)}function Ot(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,o)}return r}function Et(e,t,r){return t=function(e){var t=function(e,t){if("object"!=Tt(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=Tt(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==Tt(t)?t:t+""}(t),t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var Mt={httpMethod:"PUT",data:{xmlRoot:"CreateBucketConfiguration"},parameters:function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?Ot(Object(r),!0).forEach((function(t){Et(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):Ot(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}({Bucket:{required:!0,location:"uri"},ACL:{location:"header",sentAs:"acl",withPrefix:!0},StorageType:{location:"header",sentAs:"storage-class",withPrefix:!0},ObjectLockEnabeld:{location:"header",sentAs:"bucket-object-lock-enabled",withPrefix:!0},IESLocation:{location:"header",sentAs:"ies-location",withPrefix:!0},FileInterface:{location:"header",sentAs:"fs-file-interface",withPrefix:!0},Type:{location:"header",sentAs:"bucket-type",withPrefix:!0},MultiAz:{location:"header",sentAs:"az-redundancy",withPrefix:!0},Redundancy:{location:"header",sentAs:"bucket-redundancy",withPrefix:!0},IsFusionAllowUpgrade:{location:"header",sentAs:"fusion-allow-upgrade",withPrefix:!0},IsFusionAllowAlternative:{location:"header",sentAs:"fusion-allow-alternative",withPrefix:!0},Cluster:{location:"header",sentAs:"location-clustergroup-id",withPrefix:!0},GrantFullControl:{location:"header",sentAs:"grant-full-control",withPrefix:!0},GrantFullControlDelivered:{location:"header",sentAs:"grant-full-control-delivered",withPrefix:!0},GrantRead:{location:"header",sentAs:"grant-read",withPrefix:!0},GrantReadDelivered:{location:"header",sentAs:"grant-read-delivered",withPrefix:!0},GrantReadACP:{location:"header",sentAs:"grant-read-acp",withPrefix:!0},GrantWrite:{location:"header",sentAs:"grant-write",withPrefix:!0},GrantWriteACP:{location:"header",sentAs:"grant-write-acp",withPrefix:!0},ClusterType:{location:"header",sentAs:"cluster-type",withPrefix:!0},MultiEnterprise:{location:"header",sentAs:"epid",withPrefix:!0},Location:{location:"xml",sentAs:"Location"}},pt)},Rt={type:"object",location:"xml",sentAs:"Owner",parameters:{ID:{sentAs:"ID"}}},It={type:"array",location:"xml",sentAs:"CommonPrefixes",items:{type:"object",parameters:{Prefix:{decode:!0,sentAs:"Prefix"},MTime:{sentAs:"MTime"},InodeNo:{sentAs:"InodeNo"}}}};function jt(e){return jt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},jt(e)}function Dt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,o)}return r}function _t(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?Dt(Object(r),!0).forEach((function(t){Lt(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):Dt(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function Lt(e,t,r){return t=function(e){var t=function(e,t){if("object"!=jt(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=jt(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==jt(t)?t:t+""}(t),t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var qt={type:"object",location:"xml",sentAs:"Owner",parameters:{ID:{sentAs:"ID"}}},Ut={type:"object",location:"xml",sentAs:"Initiator",parameters:{ID:{sentAs:"ID"}}},Gt={sentAs:"BackToSourceRule",required:!0,location:"xml",type:"array",items:{type:"object",parameters:{ID:{sentAs:"ID"},Condition:{sentAs:"Condition",type:"object",parameters:{ObjectKeyPrefixEquals:{sentAs:"ObjectKeyPrefixEquals"},HttpErrorCodeReturnedEquals:{sentAs:"HttpErrorCodeReturnedEquals"}}},Redirect:{sentAs:"Redirect",type:"object",parameters:{HttpRedirectCode:{sentAs:"HttpRedirectCode"},SourceEndpoint:{sentAs:"SourceEndpoint"},SourceBucketName:{sentAs:"SourceBucketName"},ReplaceKeyWith:{sentAs:"ReplaceKeyWith"},StaticUri:{sentAs:"StaticUri"},ReplaceKeyPrefixWith:{sentAs:"ReplaceKeyPrefixWith"},MigrationConfiguration:{sentAs:"MigrationConfiguration",type:"object",parameters:{Agency:{sentAs:"Agency"},LogBucketName:{sentAs:"LogBucketName"},PrivateBucketConfiguration:{sentAs:"PrivateBucketConfiguration",type:"object",parameters:{SourceStorageProvider:{sentAs:"SourceStorageProvider"},SourceBucketAK:{sentAs:"SourceBucketAK"},SourceBucketSK:{sentAs:"SourceBucketSK"},SourceBucketZone:{sentAs:"SourceBucketZone"}}}}}}}}}},Nt={type:"array",location:"xml",wrapper:"AccessControlList",sentAs:"Grant",items:{type:"object",parameters:{Grantee:{type:"object",sentAs:"Grantee",parameters:{Type:{type:"ignore"},ID:{sentAs:"ID",notAllowEmpty:!0},URI:{sentAs:"Canned",type:"adapter",notAllowEmpty:!0}}},Permission:{sentAs:"Permission"},Delivered:{sentAs:"Delivered"}}}},Ft={type:"object",location:"xml",sentAs:"LoggingEnabled",parameters:{TargetBucket:{sentAs:"TargetBucket"},TargetPrefix:{sentAs:"TargetPrefix"},TargetGrants:{type:"array",wrapper:"TargetGrants",sentAs:"Grant",items:{type:"object",parameters:{Grantee:{type:"object",sentAs:"Grantee",parameters:{Type:{type:"ignore"},ID:{sentAs:"ID"},URI:{sentAs:"Canned",type:"adapter"}}},Permission:{sentAs:"Permission"}}}}}},Ht={type:"object",location:"xml",sentAs:"RedirectAllRequestsTo",parameters:{HostName:{sentAs:"HostName"},Protocol:{sentAs:"Protocol"}}},zt={type:"array",wrapper:"RoutingRules",location:"xml",sentAs:"RoutingRule",items:{type:"object",parameters:{Condition:{type:"object",sentAs:"Condition",parameters:{HttpErrorCodeReturnedEquals:{sentAs:"HttpErrorCodeReturnedEquals"},KeyPrefixEquals:{sentAs:"KeyPrefixEquals"}}},Redirect:{type:"object",sentAs:"Redirect",parameters:{HostName:{sentAs:"HostName"},HttpRedirectCode:{sentAs:"HttpRedirectCode"},Protocol:{sentAs:"Protocol"},ReplaceKeyPrefixWith:{sentAs:"ReplaceKeyPrefixWith"},ReplaceKeyWith:{sentAs:"ReplaceKeyWith"}}}}}},Kt={type:"object",location:"xml",sentAs:"IndexDocument",parameters:{Suffix:{sentAs:"Suffix"}}},Wt={type:"object",location:"xml",sentAs:"ErrorDocument",parameters:{Key:{sentAs:"Key"}}},Vt={required:!0,type:"array",location:"xml",sentAs:"CORSRule",items:{type:"object",parameters:{ID:{sentAs:"ID"},AllowedMethod:{type:"array",sentAs:"AllowedMethod",items:{type:"string"}},AllowedOrigin:{type:"array",sentAs:"AllowedOrigin",items:{type:"string"}},AllowedHeader:{type:"array",sentAs:"AllowedHeader",items:{type:"string"}},MaxAgeSeconds:{type:"number",sentAs:"MaxAgeSeconds"},ExposeHeader:{type:"array",sentAs:"ExposeHeader",items:{type:"string"}}}}},Qt={required:!0,type:"array",location:"xml",wrapper:"TagSet",sentAs:"Tag",items:{type:"object",parameters:{Key:{sentAs:"Key"},Value:{sentAs:"Value"}}}},Xt={required:!0,type:"array",location:"xml",sentAs:"Rule",items:{type:"object",parameters:{ID:{sentAs:"ID"},Prefix:{sentAs:"Prefix"},Status:{sentAs:"Status"},Destination:{type:"object",sentAs:"Destination",parameters:{Bucket:{sentAs:"Bucket",type:"adapter"},StorageClass:{sentAs:"StorageClass",type:"adapter"},DeleteData:{sentAs:"DeleteData",type:"string"}}},HistoricalObjectReplication:{sentAs:"HistoricalObjectReplication"}}}},$t={type:"object",location:"xml",sentAs:"Rule",parameters:{ApplyServerSideEncryptionByDefault:{type:"object",sentAs:"ApplyServerSideEncryptionByDefault",parameters:{SSEAlgorithm:{sentAs:"SSEAlgorithm"},KMSMasterKeyID:{sentAs:"KMSMasterKeyID"},ProjectID:{sentAs:"ProjectID"},KMSDataEncryption:{sentAs:"KMSDataEncryption"}}}}},Yt={type:"object",location:"xml",sentAs:"InventoryConfiguration",parameters:{Id:{sentAs:"Id"},IsEnabled:{sentAs:"IsEnabled"},Filter:{type:"object",sentAs:"Filter",parameters:{Prefix:{sentAs:"Prefix"}}},Destination:{type:"object",sentAs:"Destination",parameters:{Format:{sentAs:"Format"},Bucket:{sentAs:"Bucket"},Prefix:{sentAs:"Prefix"},Encryption:{type:"object",sentAs:"Encryption",parameters:{"SSE-KMS":{type:"object",sentAs:"SSE-KMS",parameters:{KeyId:{sentAs:"KeyId",type:"adapter"}}}}}}},Schedule:{type:"object",sentAs:"Schedule",parameters:{Frequency:{sentAs:"Frequency"}}},IncludedObjectVersions:{sentAs:"IncludedObjectVersions"},OptionalFields:{type:"object",location:"xml",sentAs:"OptionalFields",parameters:{Field:{type:"array",sentAs:"Field",items:{type:"string"}}}}}},Zt={HeadBucket:{httpMethod:"HEAD",parameters:{Bucket:{required:!0,location:"uri"}}},HeadApiVersion:{httpMethod:"HEAD",urlPath:"apiversion",parameters:{Bucket:{location:"uri"}}},HeadApiVersionOutput:{parameters:{ApiVersion:{location:"header",sentAs:"x-obs-api"}}},CreateSfsBucket:{httpMethod:"PUT",data:{xmlRoot:"CreateBucketConfiguration"},parameters:{ApiPath:{location:"uri"},ACL:{location:"header",sentAs:"acl",withPrefix:!0},StorageType:{location:"header",sentAs:"storage-class",withPrefix:!0},ObjectLockEnabeld:{location:"header",sentAs:"bucket-object-lock-enabled",withPrefix:!0},IESLocation:{location:"header",sentAs:"ies-location",withPrefix:!0},FileInterface:{location:"header",sentAs:"fs-file-interface",withPrefix:!0},Type:{location:"header",sentAs:"bucket-type",withPrefix:!0},MultiAz:{location:"header",sentAs:"az-redundancy",withPrefix:!0},Redundancy:{location:"header",sentAs:"bucket-redundancy",withPrefix:!0},IsFusionAllowUpgrade:{location:"header",sentAs:"fusion-allow-upgrade",withPrefix:!0},IsFusionAllowAlternative:{location:"header",sentAs:"fusion-allow-alternative",withPrefix:!0},Cluster:{location:"header",sentAs:"location-clustergroup-id",withPrefix:!0},GrantFullControl:{location:"header",sentAs:"grant-full-control",withPrefix:!0},GrantRead:{location:"header",sentAs:"grant-read",withPrefix:!0},GrantReadACP:{location:"header",sentAs:"grant-read-acp",withPrefix:!0},GrantWrite:{location:"header",sentAs:"grant-write",withPrefix:!0},GrantWriteACP:{location:"header",sentAs:"grant-write-acp",withPrefix:!0},ClusterType:{location:"header",sentAs:"cluster-type",withPrefix:!0},MultiEnterprise:{location:"header",sentAs:"epid",withPrefix:!0},Location:{location:"xml",sentAs:"Location"}}},DeleteSfsBucket:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"}}},CreateBucket:Mt,GetBucketMetadata:{httpMethod:"HEAD",parameters:{Bucket:{required:!0,location:"uri"},Origin:{location:"header",sentAs:"Origin"},RequestHeader:{location:"header",sentAs:"Access-Control-Request-Headers"}}},GetBucketMetadataOutput:{parameters:{StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0},ObsVersion:{location:"header",sentAs:"version",withPrefix:!0},Location:{location:"header",sentAs:"bucket-location",withPrefix:!0},FileInterface:{location:"header",sentAs:"fs-file-interface",withPrefix:!0},Type:{location:"header",sentAs:"bucket-type",withPrefix:!0},MultiAz:{location:"header",sentAs:"az-redundancy",withPrefix:!0},Redundancy:{location:"header",sentAs:"bucket-redundancy",withPrefix:!0},Cluster:{location:"header",sentAs:"location-clustergroup-id",withPrefix:!0},MultiEnterprise:{location:"header",sentAs:"epid",withPrefix:!0},ClusterType:{location:"header",sentAs:"cluster-type",withPrefix:!0},IESLocation:{location:"header",sentAs:"ies-location",withPrefix:!0},AllowOrigin:{location:"header",sentAs:"access-control-allow-origin"},MaxAgeSeconds:{location:"header",sentAs:"access-control-max-age"},ExposeHeader:{location:"header",sentAs:"access-control-expose-headers"},AllowMethod:{location:"header",sentAs:"access-control-allow-methods"},AllowHeader:{location:"header",sentAs:"access-control-allow-headers"}}},DeleteBucket:{httpMethod:"DELETE",parameters:{Bucket:{required:!0,location:"uri"}}},ListBuckets:{httpMethod:"GET",parameters:{Type:{sentAs:"x-obs-bucket-type",location:"header"},Location:{sentAs:"location",location:"header",withPrefix:!0}}},ListBucketsOutput:{data:{type:"xml",xmlRoot:"ListAllMyBucketsResult"},parameters:{Buckets:{location:"xml",sentAs:"Bucket",type:"array",wrapper:"Buckets",items:{type:"object",location:"xml",sentAs:"Bucket",parameters:{Name:{sentAs:"Name"},CreationDate:{sentAs:"CreationDate"},Location:{sentAs:"Location"},ClusterType:{sentAs:"ClusterType"},IESLocation:{sentAs:"IESLocation"},BucketType:{sentAs:"BucketType"}}}},Owner:{type:"object",location:"xml",sentAs:"Owner",parameters:{ID:{sentAs:"ID"},DisplayName:{sentAs:"DisplayName"}}}}},ListSfsBuckets:{httpMethod:"GET",parameters:{Type:{sentAs:"x-obs-bucket-type",location:"header"},ApiPath:{location:"uri"},Location:{sentAs:"location",location:"header",withPrefix:!0}}},ListSfsBucketsOutput:{data:{type:"xml",xmlRoot:"ListAllMyBucketsResult"},parameters:{Buckets:{location:"xml",sentAs:"Bucket",type:"array",wrapper:"Buckets",items:{type:"object",location:"xml",sentAs:"Bucket",parameters:{Name:{sentAs:"Name"},CreationDate:{sentAs:"CreationDate"},Location:{sentAs:"Location"},ClusterType:{sentAs:"ClusterType"},IESLocation:{sentAs:"IESLocation"}}}},Owner:{type:"object",location:"xml",sentAs:"Owner",parameters:{ID:{sentAs:"ID"},DisplayName:{sentAs:"DisplayName"}}}}},ListObjects:{httpMethod:"GET",parameters:{Bucket:{required:!0,location:"uri"},Prefix:{location:"urlPath",sentAs:"prefix"},Marker:{location:"urlPath",sentAs:"marker"},MaxKeys:{type:"number",location:"urlPath",sentAs:"max-keys"},Delimiter:{location:"urlPath",sentAs:"delimiter"},EncodingType:{location:"urlPath",sentAs:"encoding-type"}}},ListObjectsOutput:{data:{type:"xml",xmlRoot:"ListBucketResult"},parameters:{Location:{location:"header",sentAs:"bucket-location",withPrefix:!0},Bucket:{location:"xml",sentAs:"Name"},Delimiter:{decode:!0,location:"xml",sentAs:"Delimiter"},IsTruncated:{location:"xml",sentAs:"IsTruncated"},Prefix:{decode:!0,location:"xml",sentAs:"Prefix"},Marker:{decode:!0,location:"xml",sentAs:"Marker"},NextMarker:{decode:!0,location:"xml",sentAs:"NextMarker"},MaxKeys:{location:"xml",sentAs:"MaxKeys"},EncodingType:{location:"xml",sentAs:"EncodingType"},Contents:{type:"array",location:"xml",sentAs:"Contents",items:{type:"object",parameters:{Key:{decode:!0,sentAs:"Key"},LastModified:{sentAs:"LastModified"},ETag:{sentAs:"ETag"},Size:{sentAs:"Size"},Type:{sentAs:"Type"},StorageClass:{sentAs:"StorageClass"},Owner:Rt}}},CommonPrefixes:It}},ListVersions:{httpMethod:"GET",urlPath:"versions",parameters:{Bucket:{required:!0,location:"uri"},Prefix:{location:"urlPath",sentAs:"prefix"},KeyMarker:{location:"urlPath",sentAs:"key-marker"},MaxKeys:{type:"number",location:"urlPath",sentAs:"max-keys"},Delimiter:{location:"urlPath",sentAs:"delimiter"},VersionIdMarker:{location:"urlPath",sentAs:"version-id-marker"},EncodingType:{location:"urlPath",sentAs:"encoding-type"}}},ListVersionsOutput:{data:{type:"xml",xmlRoot:"ListVersionsResult"},parameters:{EncodingType:{location:"xml",sentAs:"EncodingType"},Location:{location:"header",sentAs:"bucket-location",withPrefix:!0},Bucket:{location:"xml",sentAs:"Name"},Prefix:{decode:!0,location:"xml",sentAs:"Prefix"},Delimiter:{decode:!0,location:"xml",sentAs:"Delimiter"},KeyMarker:{decode:!0,location:"xml",sentAs:"KeyMarker"},VersionIdMarker:{location:"xml",sentAs:"VersionIdMarker"},NextKeyMarker:{decode:!0,location:"xml",sentAs:"NextKeyMarker"},NextVersionIdMarker:{location:"xml",sentAs:"NextVersionIdMarker"},MaxKeys:{location:"xml",sentAs:"MaxKeys"},IsTruncated:{location:"xml",sentAs:"IsTruncated"},Versions:{type:"array",location:"xml",sentAs:"Version",items:{type:"object",parameters:{Key:{decode:!0,sentAs:"Key"},VersionId:{sentAs:"VersionId"},IsLatest:{sentAs:"IsLatest"},LastModified:{sentAs:"LastModified"},ETag:{sentAs:"ETag"},Size:{sentAs:"Size"},Type:{sentAs:"Type"},Owner:Rt,StorageClass:{sentAs:"StorageClass"}}}},DeleteMarkers:{type:"array",location:"xml",sentAs:"DeleteMarker",items:{type:"object",parameters:{Key:{decode:!0,sentAs:"Key"},VersionId:{sentAs:"VersionId"},IsLatest:{sentAs:"IsLatest"},LastModified:{sentAs:"LastModified"},Owner:Rt}}},CommonPrefixes:It}},PutBackToSource:{httpMethod:"PUT",data:{xmlRoot:"BackToSourceConfiguration"},urlPath:"backtosource",parameters:{Bucket:{required:!0,location:"uri"},BackToSourceRules:Gt,ContentMD5:{location:"header",sentAs:"Content-MD5"}}},DeleteBackToSource:{httpMethod:"DELETE",urlPath:"backtosource",parameters:{Bucket:{required:!0,location:"uri"}}},GetBackToSource:{httpMethod:"GET",urlPath:"backtosource",parameters:{Bucket:{required:!0,location:"uri"}}},GetBackToSourceOutput:{data:{type:"xml",xmlRoot:"BackToSourceConfiguration"},parameters:{BackToSourceRules:Gt}},GetBucketLocation:{httpMethod:"GET",urlPath:"location",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketLocationOutput:{data:{type:"xml"},parameters:{Location:{location:"xml",sentAs:"Location"}}},GetBucketStorageInfo:{httpMethod:"GET",urlPath:"storageinfo",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketStorageInfoOutput:{data:{type:"xml",xmlRoot:"GetBucketStorageInfoResult"},parameters:{Size:{location:"xml",sentAs:"Size"},ObjectNumber:{location:"xml",sentAs:"ObjectNumber"},StandardSize:{location:"xml",sentAs:"StandardSize"},StandardObjectNumber:{location:"xml",sentAs:"StandardObjectNumber"},WarmSize:{location:"xml",sentAs:"WarmSize"},WarmObjectNumber:{location:"xml",sentAs:"WarmObjectNumber"},ColdSize:{location:"xml",sentAs:"ColdSize"},ColdObjectNumber:{location:"xml",sentAs:"ColdObjectNumber"},DeepArchiveSize:{location:"xml",sentAs:"DeepArchiveSize"},DeepArchiveObjectNumber:{location:"xml",sentAs:"DeepArchiveObjectNumber"},HighPerformanceSize:{location:"xml",sentAs:"HighPerformanceSize"},HighPerformanceObjectNumber:{location:"xml",sentAs:"HighPerformanceObjectNumber"}}},SetBucketQuota:{httpMethod:"PUT",urlPath:"quota",data:{xmlRoot:"Quota"},parameters:{Bucket:{required:!0,location:"uri"},StorageQuota:{required:!0,location:"xml",sentAs:"StorageQuota"},NumberQuota:{required:!1,location:"xml",sentAs:"NumberQuota"}}},GetBucketQuota:{httpMethod:"GET",urlPath:"quota",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketQuotaOutput:{data:{type:"xml",xmlRoot:"Quota"},parameters:{StorageQuota:{location:"xml",sentAs:"StorageQuota"},NumberQuota:{location:"xml",sentAs:"NumberQuota"}}},SetBucketAcl:{httpMethod:"PUT",urlPath:"acl",data:{xmlRoot:"AccessControlPolicy"},parameters:{Bucket:{required:!0,location:"uri"},ACL:{location:"header",sentAs:"acl",withPrefix:!0,type:"adapter"},Owner:qt,Grants:Nt}},GetBucketInventory:{httpMethod:"GET",urlPath:"inventory",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketInventoryOutput:{data:{type:"xml",xmlRoot:"ListInventoryConfiguration"},parameters:{Rules:{type:"array",location:"xml",sentAs:"InventoryConfiguration",items:{type:"object",parameters:{Id:{sentAs:"Id"},IsEnabled:{sentAs:"IsEnabled"},Filter:{type:"object",sentAs:"Filter",parameters:{Prefix:{sentAs:"Prefix"}}},Destination:{type:"object",sentAs:"Destination",parameters:{Format:{sentAs:"Format"},Bucket:{sentAs:"Bucket"},Prefix:{sentAs:"Prefix"}}},Schedule:{type:"object",sentAs:"Schedule",parameters:{Frequency:{sentAs:"Frequency"}}},IncludedObjectVersions:{sentAs:"IncludedObjectVersions"},OptionalFields:{type:"object",location:"xml",sentAs:"OptionalFields",parameters:{Field:{type:"array",sentAs:"Field",items:{type:"string"}}}},LastExportTime:{sentAs:"LastExportTime"}}}}}},SetBucketInventory:{httpMethod:"PUT",urlPath:"inventory",parameters:{Bucket:{required:!0,location:"uri"},Id:{location:"urlPath",sentAs:"id"},InventoryConfiguration:Yt}},SetBucketInventoryOutput:{data:{type:"xml",xmlRoot:"InventoryConfiguration"},parameters:{InventoryConfiguration:Yt}},DeleteBucketInventory:{httpMethod:"DELETE",urlPath:"inventory",parameters:{Bucket:{required:!0,location:"uri"},Id:{location:"urlPath",sentAs:"id"}}},DeleteBucketInventoryOutput:{data:{type:"xml",xmlRoot:"InventoryConfiguration"},parameters:{InventoryConfiguration:Yt}},GetBucketAcl:{httpMethod:"GET",urlPath:"acl",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketAclOutput:{data:{type:"xml",xmlRoot:"AccessControlPolicy"},parameters:{Owner:qt,Grants:Nt}},SetBucketLoggingConfiguration:{httpMethod:"PUT",urlPath:"logging",data:{xmlRoot:"BucketLoggingStatus",xmlAllowEmpty:!0},parameters:{Bucket:{required:!0,location:"uri"},Agency:{location:"xml",sentAs:"Agency"},LoggingEnabled:Ft}},GetBucketLoggingConfiguration:{httpMethod:"GET",urlPath:"logging",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketLoggingConfigurationOutput:{data:{type:"xml",xmlRoot:"BucketLoggingStatus"},parameters:{Agency:{location:"xml",sentAs:"Agency"},LoggingEnabled:Ft}},SetSFSAcl:{httpMethod:"PUT",urlPath:"sfsacl",parameters:{Bucket:{required:!0,location:"uri"},Policy:{required:!0,location:"body"}}},GetSFSAcl:{httpMethod:"GET",urlPath:"sfsacl",parameters:{Bucket:{required:!0,location:"uri"}}},GetSFSAclOutput:{data:{type:"body"},parameters:{Policy:{location:"body"}}},DeleteSFSAcl:{httpMethod:"DELETE",urlPath:"sfsacl",parameters:{Bucket:{required:!0,location:"uri"}}},SetBucketPolicy:{httpMethod:"PUT",urlPath:"policy",parameters:{Bucket:{required:!0,location:"uri"},Policy:{required:!0,location:"body"}}},GetBucketPolicy:{httpMethod:"GET",urlPath:"policy",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketPolicyOutput:{data:{type:"body"},parameters:{Policy:{location:"body"}}},DeleteBucketPolicy:{httpMethod:"DELETE",urlPath:"policy",parameters:{Bucket:{required:!0,location:"uri"}}},SetBucketDisPolicy:{httpMethod:"PUT",urlPath:"disPolicy",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"},Rules:{required:!0,location:"body"}}},GetBucketDisPolicy:{httpMethod:"GET",urlPath:"disPolicy",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"},ContentType:{location:"header",sentAs:"Content-Type"}}},GetBucketDisPolicyOutput:{data:{type:"body"},parameters:{Rules:{location:"body"}}},DeleteBucketDisPolicy:{httpMethod:"DELETE",urlPath:"disPolicy",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"}}},SetBucketLifecycleConfiguration:{httpMethod:"PUT",urlPath:"lifecycle",data:{xmlRoot:"LifecycleConfiguration",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Rules:vt}},GetBucketLifecycleConfiguration:{httpMethod:"GET",urlPath:"lifecycle",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketLifecycleConfigurationOutput:{data:{type:"xml",xmlRoot:"LifecycleConfiguration"},parameters:{Rules:vt}},DeleteBucketLifecycleConfiguration:{httpMethod:"DELETE",urlPath:"lifecycle",parameters:{Bucket:{required:!0,location:"uri"}}},SetBucketWebsiteConfiguration:{httpMethod:"PUT",urlPath:"website",data:{xmlRoot:"WebsiteConfiguration"},parameters:{Bucket:{required:!0,location:"uri"},RedirectAllRequestsTo:Ht,IndexDocument:Kt,ErrorDocument:Wt,RoutingRules:zt}},GetBucketWebsiteConfiguration:{httpMethod:"GET",urlPath:"website",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketWebsiteConfigurationOutput:{data:{type:"xml",xmlRoot:"WebsiteConfiguration"},parameters:{RedirectAllRequestsTo:Ht,IndexDocument:Kt,ErrorDocument:Wt,RoutingRules:zt}},DeleteBucketWebsiteConfiguration:{httpMethod:"DELETE",urlPath:"website",parameters:{Bucket:{required:!0,location:"uri"}}},SetBucketVersioningConfiguration:{httpMethod:"PUT",urlPath:"versioning",data:{xmlRoot:"VersioningConfiguration"},parameters:{Bucket:{required:!0,location:"uri"},VersionStatus:{required:!0,location:"xml",sentAs:"Status"}}},GetBucketVersioningConfiguration:{httpMethod:"GET",urlPath:"versioning",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketVersioningConfigurationOutput:{data:{type:"xml",xmlRoot:"VersioningConfiguration"},parameters:{VersionStatus:{location:"xml",sentAs:"Status"}}},SetBucketCors:{httpMethod:"PUT",urlPath:"cors",data:{xmlRoot:"CORSConfiguration",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},CorsRules:Vt}},GetBucketCors:{httpMethod:"GET",urlPath:"cors",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketCorsOutput:{data:{type:"xml",xmlRoot:"CORSConfiguration"},parameters:{CorsRules:Vt}},DeleteBucketCors:{httpMethod:"DELETE",urlPath:"cors",parameters:{Bucket:{required:!0,location:"uri"}}},SetBucketNotification:{httpMethod:"PUT",urlPath:"notification",data:{xmlRoot:"NotificationConfiguration",xmlAllowEmpty:!0},parameters:{Bucket:{required:!0,location:"uri"},TopicConfigurations:St,FunctionGraphConfigurations:wt,FunctionStageConfigurations:Bt,EventGridConfigurations:Ct}},GetBucketNotification:{httpMethod:"GET",urlPath:"notification",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketNotificationOutput:{data:{type:"xml",xmlRoot:"NotificationConfiguration"},parameters:{RequestId:{location:"header",sentAs:"x-obs-request-id"},TopicConfigurations:St,FunctionGraphConfigurations:wt,FunctionStageConfigurations:Bt,EventGridConfigurations:Ct}},GetBucketObjectLockConfiguration:{httpMethod:"GET",urlPath:"object-lock",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketObjectLockConfigurationOutput:{data:{type:"xml",xmlRoot:"ObjectLockConfiguration"},parameters:{Rule:Pt}},SetBucketObjectLockConfig:{httpMethod:"PUT",urlPath:"object-lock",data:{type:"xml",xmlAllowEmpty:!0,xmlRoot:"ObjectLockConfiguration"},parameters:{Bucket:{required:!0,location:"uri"},Rule:Pt}},SetBucketTagging:{httpMethod:"PUT",urlPath:"tagging",data:{xmlRoot:"Tagging",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Tags:Qt}},DeleteBucketTagging:{httpMethod:"DELETE",urlPath:"tagging",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketTagging:{httpMethod:"GET",urlPath:"tagging",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketTaggingOutput:{data:{type:"xml",xmlRoot:"Tagging"},parameters:{Tags:Qt}},SetBucketStoragePolicy:{httpMethod:"PUT",urlPath:"storageClass",parameters:{Bucket:{required:!0,location:"uri"},StorageClass:{required:!0,location:"xml",type:"adapter",sentAs:"StorageClass"}}},GetBucketStoragePolicy:{httpMethod:"GET",urlPath:"storageClass",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketStoragePolicyOutput:{data:{type:"xml"},parameters:{StorageClass:{location:"xml",type:"string",sentAs:"StorageClass"}}},SetBucketReplication:{httpMethod:"PUT",urlPath:"replication",data:{xmlRoot:"ReplicationConfiguration",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Agency:{location:"xml",sentAs:"Agency"},Rules:Xt}},GetBucketReplication:{httpMethod:"GET",urlPath:"replication",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketReplicationOutput:{data:{type:"xml",xmlRoot:"ReplicationConfiguration"},parameters:{Agency:{location:"xml",sentAs:"Agency"},Rules:Xt}},DeleteBucketReplication:{httpMethod:"DELETE",urlPath:"replication",parameters:{Bucket:{required:!0,location:"uri"}}},PutObject:{httpMethod:"PUT",parameters:_t(_t({ObjectLockMode:{location:"header",sentAs:"object-lock-mode",withPrefix:!0},ObjectLockRetainUntailDate:{location:"header",sentAs:"object-lock-retain-until-date",withPrefix:!0},Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},ContentMD5:{location:"header",sentAs:"Content-MD5"},ContentSHA256:{location:"header",sentAs:"content-sha256",withPrefix:!0},ContentType:{location:"header",sentAs:"Content-Type"},Offset:{type:"plain"},ContentLength:{location:"header",sentAs:"Content-Length",type:"plain"},ACL:{location:"header",sentAs:"acl",withPrefix:!0,type:"adapter"},GrantRead:{location:"header",sentAs:"grant-read",withPrefix:!0},GrantReadAcp:{location:"header",sentAs:"grant-read-acp",withPrefix:!0},GrantWriteAcp:{location:"header",sentAs:"grant-write-acp",withPrefix:!0},GrantFullControl:{location:"header",sentAs:"grant-full-control",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0,type:"adapter"},Metadata:{type:"object",location:"header",sentAs:"meta-",withPrefix:!0},CacheControl:{location:"header",sentAs:"Cache-Control"},ContentDisposition:{location:"header",sentAs:"Content-Disposition",encodingSafe:' ;/?:@&=+$,"'},ContentLanguage:{location:"header",sentAs:"Content-Language"},ContentEncoding:{location:"header",sentAs:"Content-Encoding"},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0},Tags:{location:"header",sentAs:"tagging",withPrefix:!0},Expires:{location:"header",sentAs:"expires",type:"number",withPrefix:!0},SuccessActionRedirect:{location:"header",sentAs:"success-action-redirect"}},ut),{},{Body:{location:"body"},SourceFile:{type:"srcFile"},ProgressCallback:{type:"plain"}})},PutObjectOutput:{parameters:_t({ETag:{location:"header",sentAs:"etag"},VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0}},ut)},AppendObject:{httpMethod:"POST",urlPath:"append",parameters:_t(_t({Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},Position:{location:"urlPath",sentAs:"position",type:"number"},ContentMD5:{location:"header",sentAs:"Content-MD5"},ContentType:{location:"header",sentAs:"Content-Type"},Offset:{type:"plain"},ContentLength:{location:"header",sentAs:"Content-Length",type:"plain"},ACL:{location:"header",sentAs:"acl",withPrefix:!0,type:"adapter"},GrantRead:{location:"header",sentAs:"grant-read",withPrefix:!0},GrantReadAcp:{location:"header",sentAs:"grant-read-acp",withPrefix:!0},GrantWriteAcp:{location:"header",sentAs:"grant-write-acp",withPrefix:!0},GrantFullControl:{location:"header",sentAs:"grant-full-control",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0,type:"adapter"},Metadata:{type:"object",location:"header",sentAs:"meta-",withPrefix:!0},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0},Tags:{location:"header",sentAs:"tagging",withPrefix:!0},Expires:{location:"header",sentAs:"expires",type:"number",withPrefix:!0}},ut),{},{Body:{location:"body"},SourceFile:{type:"srcFile"},ProgressCallback:{type:"plain"}})},AppendObjectOutput:{parameters:_t({ETag:{location:"header",sentAs:"etag"},NextPosition:{location:"header",sentAs:"next-append-position",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0}},ut)},GetObject:{httpMethod:"GET",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},ResponseCacheControl:{location:"urlPath",sentAs:"response-cache-control"},ResponseContentDisposition:{location:"urlPath",sentAs:"response-content-disposition"},ResponseContentEncoding:{location:"urlPath",sentAs:"response-content-encoding"},ResponseContentLanguage:{location:"urlPath",sentAs:"response-content-language"},ResponseContentType:{location:"urlPath",sentAs:"response-content-type"},ResponseExpires:{location:"urlPath",sentAs:"response-expires"},VersionId:{location:"urlPath",sentAs:"versionId"},ImageProcess:{location:"urlPath",sentAs:"x-image-process"},IfMatch:{location:"header",sentAs:"If-Match"},IfModifiedSince:{location:"header",sentAs:"If-Modified-Since"},IfNoneMatch:{location:"header",sentAs:"If-None-Match"},IfUnmodifiedSince:{location:"header",sentAs:"If-Unmodified-Since"},Range:{location:"header",sentAs:"Range"},Origin:{location:"header",sentAs:"Origin"},RequestHeader:{location:"header",sentAs:"Access-Control-Request-Headers"},SaveByType:{type:"dstFile"},SseC:{location:"header",sentAs:"server-side-encryption-customer-algorithm",withPrefix:!0},SseCKey:{location:"header",sentAs:"server-side-encryption-customer-key",type:"password",withPrefix:!0},ProgressCallback:{type:"plain"}}},GetObjectOutput:{data:{type:"body"},parameters:_t(_t({Content:{location:"body"},Expiration:{location:"header",sentAs:"expiration",withPrefix:!0},ETag:{location:"header",sentAs:"etag"},CacheControl:{location:"header",sentAs:"Cache-Control"},ContentDisposition:{location:"header",sentAs:"Content-Disposition"},ContentEncoding:{location:"header",sentAs:"Content-Encoding"},ContentLanguage:{location:"header",sentAs:"Content-Language"},ContentType:{location:"header",sentAs:"Content-Type"},Expires:{location:"header",sentAs:"Expires"},VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},ContentLength:{location:"header",sentAs:"Content-Length"},DeleteMarker:{location:"header",sentAs:"delete-marker",withPrefix:!0},LastModified:{location:"header",sentAs:"Last-Modified"},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0},Restore:{location:"header",sentAs:"restore",withPrefix:!0},AllowOrigin:{location:"header",sentAs:"access-control-allow-origin"},MaxAgeSeconds:{location:"header",sentAs:"access-control-max-age"},ExposeHeader:{location:"header",sentAs:"access-control-expose-headers"},AllowMethod:{location:"header",sentAs:"access-control-allow-methods"},AllowHeader:{location:"header",sentAs:"access-control-allow-headers"}},ut),{},{Metadata:{location:"header",type:"object",sentAs:"meta-",withPrefix:!0}})},CopyObject:{httpMethod:"PUT",parameters:_t(_t({Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},ACL:{location:"header",sentAs:"acl",withPrefix:!0,type:"adapter"},GrantRead:{location:"header",sentAs:"grant-read",withPrefix:!0},GrantReadAcp:{location:"header",sentAs:"grant-read-acp",withPrefix:!0},GrantWriteAcp:{location:"header",sentAs:"grant-write-acp",withPrefix:!0},GrantFullControl:{location:"header",sentAs:"grant-full-control",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0,type:"adapter"},CopySource:{required:!0,location:"header",sentAs:"copy-source",withPrefix:!0,skipEncoding:!0},CopySourceIfMatch:{location:"header",sentAs:"copy-source-if-match",withPrefix:!0},CopySourceIfModifiedSince:{location:"header",sentAs:"copy-source-if-modified-since",withPrefix:!0},CopySourceIfNoneMatch:{location:"header",sentAs:"copy-source-if-none-match",withPrefix:!0},CopySourceIfUnmodifiedSince:{location:"header",sentAs:"copy-source-if-unmodified-since",withPrefix:!0},ContentType:{location:"header",sentAs:"Content-Type"},ContentEncoding:{location:"header",sentAs:"content-encoding"},ContentLanguage:{location:"header",sentAs:"content-language"},ContentDisposition:{location:"header",sentAs:"content-disposition"},CacheControl:{location:"header",sentAs:"cache-control"},TagDirective:{location:"header",sentAs:"tagging-directive",withPrefix:!0},Tags:{location:"header",sentAs:"tagging",withPrefix:!0},Expires:{location:"header",sentAs:"expires"},Metadata:{type:"object",location:"header",sentAs:"meta-",withPrefix:!0},MetadataDirective:{location:"header",sentAs:"metadata-directive",withPrefix:!0},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0},SuccessActionRedirect:{location:"header",sentAs:"success-action-redirect"}},ut),{},{CopySourceSseC:{location:"header",sentAs:"copy-source-server-side-encryption-customer-algorithm",withPrefix:!0},CopySourceSseCKey:{location:"header",sentAs:"copy-source-server-side-encryption-customer-key",type:"password",withPrefix:!0}})},CopyObjectOutput:{data:{type:"xml",xmlRoot:"CopyObjectResult"},parameters:_t({VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},CopySourceVersionId:{location:"header",sentAs:"copy-source-version-id",withPrefix:!0},ETag:{location:"xml",sentAs:"ETag"},LastModified:{location:"xml",sentAs:"LastModified"}},ut)},RestoreObject:{httpMethod:"POST",urlPath:"restore",data:{xmlRoot:"RestoreRequest",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"},Days:{location:"xml",sentAs:"Days"},Tier:{wrapper:"RestoreJob",location:"xml",sentAs:"Tier"}}},GetObjectMetadata:{httpMethod:"HEAD",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"},Origin:{location:"header",sentAs:"Origin"},RequestHeader:{location:"header",sentAs:"Access-Control-Request-Headers"},SseC:{location:"header",sentAs:"server-side-encryption-customer-algorithm",withPrefix:!0},SseCKey:{location:"header",sentAs:"server-side-encryption-customer-key",type:"password",withPrefix:!0}}},GetObjectMetadataOutput:{parameters:_t(_t({ObjectLockMode:{location:"header",sentAs:"object-lock-mode",withPrefix:!0},ObjectLockRetainUntilDate:{location:"header",sentAs:"object-lock-retain-until-date",withPrefix:!0},Expiration:{location:"header",sentAs:"expiration",withPrefix:!0},LastModified:{location:"header",sentAs:"Last-Modified"},ContentLength:{location:"header",sentAs:"Content-Length"},ContentType:{location:"header",sentAs:"Content-Type"},TaggingCount:{location:"header",sentAs:"tagging-count",withPrefix:!0},ETag:{location:"header",sentAs:"etag"},VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0},Restore:{location:"header",sentAs:"restore",withPrefix:!0},ObjectType:{location:"header",sentAs:"x-obs-object-type"},NextPosition:{location:"header",sentAs:"x-obs-next-append-position"},AllowOrigin:{location:"header",sentAs:"access-control-allow-origin"},MaxAgeSeconds:{location:"header",sentAs:"access-control-max-age"},ExposeHeader:{location:"header",sentAs:"access-control-expose-headers"},AllowMethod:{location:"header",sentAs:"access-control-allow-methods"},AllowHeader:{location:"header",sentAs:"access-control-allow-headers"}},ut),{},{Metadata:{location:"header",type:"object",sentAs:"meta-",withPrefix:!0},ContentLanguage:{location:"header",sentAs:"Content-Language"},ContentEncoding:{location:"header",sentAs:"Content-Encoding"},CacheControl:{location:"header",sentAs:"Cache-Control"},ContentDisposition:{location:"header",sentAs:"Content-Disposition"},Expires:{location:"header",sentAs:"Expires"},ReplicationStatus:{location:"header",sentAs:"replication-status",withPrefix:!0}})},SetObjectMetadata:{httpMethod:"PUT",urlPath:"metadata",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"},Origin:{location:"header",sentAs:"Origin"},RequestHeader:{location:"header",sentAs:"Access-Control-Request-Headers"},CacheControl:{location:"header",sentAs:"Cache-Control"},ContentDisposition:{location:"header",sentAs:"Content-Disposition",encodingSafe:' ;/?:@&=+$,"'},ContentLanguage:{location:"header",sentAs:"Content-Language"},ContentEncoding:{location:"header",sentAs:"Content-Encoding"},ContentType:{location:"header",sentAs:"Content-Type"},Tags:{location:"header",sentAs:"tagging",withPrefix:!0},Expires:{location:"header",sentAs:"Expires"},Metadata:{shape:"Sy",location:"header",type:"object",sentAs:"meta-",withPrefix:!0},MetadataDirective:{location:"header",sentAs:"metadata-directive",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0}}},SetObjectMetadataOutput:{parameters:{Expires:{location:"header",sentAs:"Expires"},ContentLength:{location:"header",sentAs:"Content-Length"},ContentType:{location:"header",sentAs:"Content-Type"},ContentLanguage:{location:"header",sentAs:"Content-Language"},CacheControl:{location:"header",sentAs:"Cache-Control"},ContentDisposition:{location:"header",sentAs:"Content-Disposition"},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0,type:"adapter"},Metadata:{location:"header",type:"object",sentAs:"meta-",withPrefix:!0}}},SetObjectAcl:{httpMethod:"PUT",urlPath:"acl",data:{xmlRoot:"AccessControlPolicy"},parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"},ACL:{location:"header",sentAs:"acl",withPrefix:!0,type:"adapter"},Delivered:{location:"xml",sentAs:"Delivered"},Owner:qt,Grants:Nt}},SetObjectAclOutput:{parameters:{VersionId:{location:"header",sentAs:"version-id",withPrefix:!0}}},SetObjectObjectLock:{httpMethod:"PUT",urlPath:"retention",data:{xmlRoot:"Retention"},parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"},Mode:{sentAs:"Mode",location:"xml"},RetainUntilDate:{sentAs:"RetainUntilDate",location:"xml"}}},GetObjectAcl:{httpMethod:"GET",urlPath:"acl",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"}}},GetObjectAclOutput:{data:{type:"xml",xmlRoot:"AccessControlPolicy"},parameters:{VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},Delivered:{location:"xml",sentAs:"Delivered"},Owner:qt,Grants:Nt}},GetObjectTagging:{httpMethod:"GET",urlPath:"tagging",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"}}},GetObjectTaggingOutput:{data:{type:"xml",xmlRoot:"Tagging"},parameters:{Tags:Qt}},SetObjectTagging:{httpMethod:"PUT",urlPath:"tagging",data:{xmlRoot:"Tagging",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"},Tags:Qt}},DeleteObjectTagging:{httpMethod:"DELETE",urlPath:"tagging",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"}}},DeleteObject:{httpMethod:"DELETE",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"}}},DeleteObjectOutput:{parameters:{VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},DeleteMarker:{location:"header",sentAs:"delete-marker",withPrefix:!0}}},DeleteObjects:{httpMethod:"POST",urlPath:"delete",data:{xmlRoot:"Delete",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Quiet:{location:"xml",sentAs:"Quiet"},EncodingType:{location:"xml",sentAs:"EncodingType"},Objects:{required:!0,type:"array",location:"xml",sentAs:"Object",items:{type:"object",parameters:{Key:{sentAs:"Key"},VersionId:{sentAs:"VersionId"}}}}}},DeleteObjectsOutput:{data:{type:"xml",xmlRoot:"DeleteResult"},EncodingType:{location:"xml",sentAs:"EncodingType"},parameters:{Deleteds:{type:"array",location:"xml",sentAs:"Deleted",items:{type:"object",parameters:{Key:{decode:!0,sentAs:"Key"},VersionId:{sentAs:"VersionId"},DeleteMarker:{sentAs:"DeleteMarker"},DeleteMarkerVersionId:{sentAs:"DeleteMarkerVersionId"}}}},Errors:{type:"array",location:"xml",sentAs:"Error",items:{type:"object",parameters:{Key:{sentAs:"Key"},VersionId:{sentAs:"VersionId"},Code:{sentAs:"Code"},Message:{sentAs:"Message"}}}}}},InitiateMultipartUpload:{httpMethod:"POST",urlPath:"uploads",parameters:_t({EncodingType:{location:"urlPath",sentAs:"encoding-type"},ObjectLockMode:{location:"header",sentAs:"object-lock-mode",withPrefix:!0},ObjectLockRetainUntailDate:{location:"header",sentAs:"object-lock-retain-until-date",withPrefix:!0},Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},ACL:{location:"header",sentAs:"acl",withPrefix:!0,type:"adapter"},GrantRead:{location:"header",sentAs:"grant-read",withPrefix:!0},GrantReadAcp:{location:"header",sentAs:"grant-read-acp",withPrefix:!0},GrantWriteAcp:{location:"header",sentAs:"grant-write-acp",withPrefix:!0},GrantFullControl:{location:"header",sentAs:"grant-full-control",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0,type:"adapter"},Metadata:{type:"object",location:"header",sentAs:"meta-",withPrefix:!0},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0},Tags:{location:"header",sentAs:"tagging",withPrefix:!0},Expires:{location:"header",sentAs:"expires",type:"number",withPrefix:!0},ContentType:{location:"header",sentAs:"Content-Type"},CacheControl:{location:"header",sentAs:"Cache-Control"},ContentDisposition:{location:"header",sentAs:"Content-Disposition",encodingSafe:' ;/?:@&=+$,"'},ContentLanguage:{location:"header",sentAs:"Content-Language"},ContentEncoding:{location:"header",sentAs:"Content-Encoding"}},ut)},InitiateMultipartUploadOutput:{data:{type:"xml",xmlRoot:"InitiateMultipartUploadResult"},parameters:{EncodingType:{location:"xml",sentAs:"EncodingType"},Bucket:{location:"xml",sentAs:"Bucket"},Key:{location:"xml",sentAs:"Key"},UploadId:{location:"xml",sentAs:"UploadId"},ObjectEncryptionRule:ut}},ListMultipartUploads:{httpMethod:"GET",urlPath:"uploads",parameters:{Bucket:{required:!0,location:"uri"},Delimiter:{location:"urlPath",sentAs:"delimiter"},KeyMarker:{location:"urlPath",sentAs:"key-marker"},MaxUploads:{type:"number",location:"urlPath",sentAs:"max-uploads"},Prefix:{location:"urlPath",sentAs:"prefix"},UploadIdMarker:{location:"urlPath",sentAs:"upload-id-marker"},EncodingType:{location:"urlPath",sentAs:"encoding-type"}}},ListMultipartUploadsOutput:{data:{type:"xml",xmlRoot:"ListMultipartUploadsResult"},parameters:{Bucket:{location:"xml",sentAs:"Bucket"},KeyMarker:{decode:!0,location:"xml",sentAs:"KeyMarker"},UploadIdMarker:{location:"xml",sentAs:"UploadIdMarker"},NextKeyMarker:{decode:!0,location:"xml",sentAs:"NextKeyMarker"},Prefix:{decode:!0,location:"xml",sentAs:"Prefix"},Delimiter:{decode:!0,location:"xml",sentAs:"Delimiter"},NextUploadIdMarker:{location:"xml",sentAs:"NextUploadIdMarker"},MaxUploads:{location:"xml",sentAs:"MaxUploads"},IsTruncated:{location:"xml",sentAs:"IsTruncated"},EncodingType:{location:"xml",sentAs:"EncodingType"},Uploads:{type:"array",location:"xml",sentAs:"Upload",items:{type:"object",parameters:{UploadId:{sentAs:"UploadId"},Key:{decode:!0,sentAs:"Key"},Initiated:{sentAs:"Initiated"},StorageClass:{sentAs:"StorageClass"},Owner:qt,Initiator:Ut}}},CommonPrefixes:{type:"array",location:"xml",sentAs:"CommonPrefixes",items:{type:"object",parameters:{Prefix:{decode:!0,sentAs:"Prefix"},MTime:{sentAs:"MTime"},InodeNo:{sentAs:"InodeNo"}}}}}},UploadPart:{httpMethod:"PUT",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},PartNumber:{required:!0,type:"number",location:"urlPath",sentAs:"partNumber"},UploadId:{required:!0,location:"urlPath",sentAs:"uploadId"},ContentMD5:{location:"header",sentAs:"Content-MD5"},ContentSHA256:{location:"header",sentAs:"content-sha256",withPrefix:!0},Body:{location:"body"},SourceFile:{type:"srcFile"},Offset:{type:"plain"},PartSize:{type:"plain"},SseKms:{location:"header",sentAs:"server-side-encryption",withPrefix:!0},SseKmsKey:{location:"header",sentAs:"server-side-encryption-kms-key-id",withPrefix:!0},SseKmsProjectId:{location:"header",sentAs:"sse-kms-key-project-id",withPrefix:!0},SseC:{location:"header",sentAs:"server-side-encryption-customer-algorithm",withPrefix:!0},SseCKey:{location:"header",sentAs:"server-side-encryption-customer-key",type:"password",withPrefix:!0},ProgressCallback:{type:"plain"}}},UploadPartOutput:{parameters:_t({ETag:{location:"header",sentAs:"etag"}},ut)},ListParts:{httpMethod:"GET",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},UploadId:{required:!0,location:"urlPath",sentAs:"uploadId"},MaxParts:{type:"number",location:"urlPath",sentAs:"max-parts"},PartNumberMarker:{type:"number",location:"urlPath",sentAs:"part-number-marker"},EncodingType:{location:"urlPath",sentAs:"encoding-type"}}},ListPartsOutput:{data:{type:"xml",xmlRoot:"ListPartsResult"},parameters:{Bucket:{location:"xml",sentAs:"Bucket"},Key:{decode:!0,location:"xml",sentAs:"Key"},UploadId:{location:"xml",sentAs:"UploadId"},PartNumberMarker:{location:"xml",sentAs:"PartNumberMarker"},NextPartNumberMarker:{location:"xml",sentAs:"NextPartNumberMarker"},MaxParts:{location:"xml",sentAs:"MaxParts"},IsTruncated:{location:"xml",sentAs:"IsTruncated"},StorageClass:{location:"xml",sentAs:"StorageClass"},EncodingType:{location:"urlPath",sentAs:"EncodingType"},Initiator:Ut,Owner:qt,Parts:{type:"array",location:"xml",sentAs:"Part",items:{type:"object",parameters:{PartNumber:{sentAs:"PartNumber"},LastModified:{sentAs:"LastModified"},ETag:{sentAs:"ETag"},Size:{sentAs:"Size"}}}}}},CopyPart:{httpMethod:"PUT",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},PartNumber:{required:!0,location:"urlPath",sentAs:"partNumber",type:"number"},UploadId:{required:!0,location:"urlPath",sentAs:"uploadId"},CopySource:{required:!0,location:"header",sentAs:"copy-source",skipEncoding:!0,withPrefix:!0},CopySourceRange:{location:"header",sentAs:"copy-source-range",withPrefix:!0},SseC:{location:"header",sentAs:"server-side-encryption-customer-algorithm",withPrefix:!0},SseCKey:{location:"header",sentAs:"server-side-encryption-customer-key",type:"password",withPrefix:!0},CopySourceSseC:{location:"header",sentAs:"copy-source-server-side-encryption-customer-algorithm",withPrefix:!0},CopySourceSseCKey:{location:"header",sentAs:"copy-source-server-side-encryption-customer-key",type:"password",withPrefix:!0}}},CopyPartOutput:{data:{type:"xml",xmlRoot:"CopyPartResult"},parameters:_t({LastModified:{location:"xml",sentAs:"LastModified"},ETag:{location:"xml",sentAs:"ETag"}},ut)},AbortMultipartUpload:{httpMethod:"DELETE",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},UploadId:{required:!0,location:"urlPath",sentAs:"uploadId"}}},CompleteMultipartUpload:{httpMethod:"POST",data:{xmlRoot:"CompleteMultipartUpload"},parameters:_t(_t({Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},UploadId:{required:!0,location:"urlPath",sentAs:"uploadId"},EncodingType:{location:"urlPath",sentAs:"encoding-type"}},ut),{},{Parts:{required:!0,type:"array",location:"xml",sentAs:"Part",items:{type:"object",parameters:{PartNumber:{sentAs:"PartNumber"},ETag:{sentAs:"ETag"}}}},Callback:{location:"header",sentAs:"callback",withPrefix:!0,type:"callback",parameters:{CallbackUrl:{required:!0},CallbackBody:{required:!0},CallbackHost:{},CallbackBodyType:{}}}})},CompleteMultipartUploadOutput:{data:{type:"xml",xmlRoot:"CompleteMultipartUploadResult"},parameters:{VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},Location:{location:"xml",sentAs:"Location"},EncodingType:{location:"xml",sentAs:"EncodingType"},Bucket:{location:"xml",sentAs:"Bucket"},Key:{decode:!0,location:"xml",sentAs:"Key"},ETag:{location:"xml",sentAs:"ETag"},SseKms:{location:"header",sentAs:"server-side-encryption",withPrefix:!0},SseKmsKey:{location:"header",sentAs:"server-side-encryption-kms-key-id",withPrefix:!0},SseKmsProjectId:{location:"header",sentAs:"sse-kms-key-project-id",withPrefix:!0},SseC:{location:"header",sentAs:"server-side-encryption-customer-algorithm",withPrefix:!0},SseCKeyMd5:{location:"header",sentAs:"server-side-encryption-customer-key-MD5",withPrefix:!0}},CallbackResponse:{location:"body",sentAs:"CallbackResponseBody"}},OptionsBucket:{httpMethod:"OPTIONS",parameters:{Bucket:{required:!0,location:"uri"},Origin:{required:!0,location:"header",sentAs:"Origin"},AccessControlRequestMethods:{required:!0,type:"array",location:"header",sentAs:"Access-Control-Request-Method",items:{type:"string"}},AccessControlRequestHeaders:{type:"array",location:"header",sentAs:"Access-Control-Request-Headers",items:{type:"string"}}}},OptionsBucketOutput:{parameters:{AllowOrigin:{location:"header",sentAs:"access-control-allow-origin"},AllowHeader:{location:"header",sentAs:"access-control-allow-headers"},AllowMethod:{location:"header",sentAs:"access-control-allow-methods"},ExposeHeader:{location:"header",sentAs:"access-control-expose-headers"},MaxAgeSeconds:{location:"header",sentAs:"access-control-max-age"}}},OptionsObject:{httpMethod:"OPTIONS",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},Origin:{required:!0,location:"header",sentAs:"Origin"},AccessControlRequestMethods:{required:!0,type:"array",location:"header",sentAs:"Access-Control-Request-Method",items:{type:"string"}},AccessControlRequestHeaders:{type:"array",location:"header",sentAs:"Access-Control-Request-Headers",items:{type:"string"}}}},OptionsObjectOutput:{parameters:{AllowOrigin:{location:"header",sentAs:"access-control-allow-origin"},AllowHeader:{location:"header",sentAs:"access-control-allow-headers"},AllowMethod:{location:"header",sentAs:"access-control-allow-methods"},ExposeHeader:{location:"header",sentAs:"access-control-expose-headers"},MaxAgeSeconds:{location:"header",sentAs:"access-control-max-age"}}},GetBucketEncryption:{httpMethod:"GET",urlPath:"encryption",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketEncryptionOutput:{data:{type:"xml",xmlRoot:"ServerSideEncryptionConfiguration"},parameters:{Rule:$t}},SetBucketEncryption:{httpMethod:"PUT",urlPath:"encryption",data:{xmlRoot:"ServerSideEncryptionConfiguration"},parameters:{Bucket:{required:!0,location:"uri"},Rule:$t}},SetBucketEncryptionOutput:{data:{type:"xml",xmlRoot:"ServerSideEncryptionConfiguration"},parameters:{Rule:$t}},DeleteBucketEncryption:{httpMethod:"DELETE",urlPath:"encryption",parameters:{Bucket:{required:!0,location:"uri"}}},DeleteBucketEncryptionOutput:{data:{type:"xml",xmlRoot:"ServerSideEncryptionConfiguration"},parameters:{Rule:$t}},GetBucketRequesterPay:{httpMethod:"GET",urlPath:"requestPayment",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketRequesterPayOutput:{data:{type:"xml",xmlRoot:"RequestPaymentConfiguration"},parameters:{Payer:{location:"xml",sentAs:"Payer"}}},SetBucketRequesterPay:{httpMethod:"PUT",urlPath:"requestPayment",data:{xmlRoot:"RequestPaymentConfiguration"},parameters:{Bucket:{required:!0,location:"uri"},Payer:{location:"xml",sentAs:"Payer"}}},SetBucketRequesterPayOutput:{data:{type:"xml",xmlRoot:"RequestPaymentConfiguration"},parameters:{Payer:{location:"xml",sentAs:"Payer"}}},SetMirrorBackToSource:{httpMethod:"PUT",urlPath:"mirrorBackToSource",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"},Rules:{required:!0,location:"body"}}},SetMirrorBackToSourceOutput:{data:{type:"body"},parameters:{Rules:{location:"body"}}},GetMirrorBackToSource:{httpMethod:"GET",urlPath:"mirrorBackToSource",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"}}},GetMirrorBackToSourceOutput:{data:{type:"body"},parameters:{Rules:{location:"body"}}},DeleteMirrorBackToSource:{httpMethod:"DELETE",urlPath:"mirrorBackToSource",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"}}},GetBucketDirectColdAccess:{httpMethod:"GET",urlPath:"directcoldaccess",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketDirectColdAccessOutput:{data:{type:"xml",xmlRoot:"DirectColdAccessConfiguration"},parameters:{Status:{location:"xml",sentAs:"Status"}}},SetBucketDirectColdAccess:{httpMethod:"PUT",urlPath:"directcoldaccess",data:{xmlRoot:"DirectColdAccessConfiguration",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Status:{required:!0,location:"xml",sentAs:"Status"}}},SetBucketDirectColdAccessOutput:{data:{type:"xml",xmlRoot:"DirectColdAccessConfiguration"},parameters:{Status:{location:"xml",sentAs:"Status"}}},DeleteBucketDirectColdAccess:{httpMethod:"DELETE",urlPath:"directcoldaccess",parameters:{Bucket:{required:!0,location:"uri"}}},DeleteBucketDirectColdAccessOutput:{data:{type:"xml",xmlRoot:"DirectColdAccessConfiguration"},parameters:{Status:{location:"xml",sentAs:"Status"}}},GetBucketCustomDomain:{httpMethod:"GET",urlPath:"customdomain",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketCustomDomainOutput:{data:{type:"xml",xmlRoot:"ListBucketCustomDomainsResult"},parameters:{Domains:{location:"xml",type:"array",sentAs:"Domains",items:{type:"object",parameters:{DomainName:{sentAs:"DomainName"},Value:{sentAs:"CreateTime"},CertificateId:{sentAs:"CertificateId"}}}}}},SetBucketCustomDomain:{httpMethod:"PUT",data:{xmlRoot:"CustomDomainConfiguration",md5:!0},parameters:_t({Bucket:{required:!0,location:"uri"},DomainName:{location:"urlPath",sentAs:"customdomain"}},kt)},DeleteBucketCustomDomain:{httpMethod:"DELETE",parameters:{Bucket:{required:!0,location:"uri"},DomainName:{location:"urlPath",sentAs:"customdomain"}}},GetCDNNotifyConfiguration:{httpMethod:"GET",urlPath:"CDNNotifyConfiguration",parameters:{Bucket:{required:!0,location:"uri"},NotForwardTag:{type:"string",sentAs:"x-obs-not-forward-tag",location:"header"}}},GetCDNNotifyConfigurationOutput:{data:{type:"xml",xmlRoot:"CDNNotifyConfiguration"},parameters:{Domain:lt}},SetCdnNotifyConfiguration:{httpMethod:"PUT",urlPath:"CDNNotifyConfiguration",data:{xmlRoot:"CDNNotifyConfiguration",xmlAllowEmpty:!0},parameters:{Bucket:{required:!0,location:"uri"},NotForwardTag:{type:"string",sentAs:"x-obs-not-forward-tag",location:"header"},Domain:lt}},GetQuota:{httpMethod:"GET",urlPath:"quota"},GetQuotaOutput:{data:{type:"xml",xmlRoot:"MaxBucketNumber"},parameters:{Size:{location:"xml",sentAs:"Number"}}},GetWorkflowTrigger:{httpMethod:"GET",urlPath:"obsworkflowtriggerpolicy",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"}}},GetWorkflowTriggerOutput:{data:{type:"body"},parameters:{rules:{location:"body"}}},DeleteWorkflowTrigger:{httpMethod:"DELETE",urlPath:"obsworkflowtriggerpolicy",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"}}},CreateWorkflowTrigger:{httpMethod:"PUT",urlPath:"obsworkflowtriggerpolicy",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"},Rule:{required:!0,location:"body"}}},RestoreFailedWorkflowExecution:{httpMethod:"PUT",parameters:{ApiPath:{location:"uri"},Other_parameter:{required:!0,location:"uri",sentAs:"execution_name"},GraphName:{required:!0,location:"urlPath",sentAs:"x-workflow-graph-name"}}},CreateTemplate:{httpMethod:"POST",parameters:{ApiPath:{location:"uri"},Template:{required:!0,location:"body"}}},CreateWorkflow:{httpMethod:"POST",parameters:{ApiPath:{location:"uri"},Other_parameter:{required:!0,location:"uri",sentAs:"graph_name"},Workflow_create:{location:"urlPath",sentAs:"x-workflow-create"},Workflow:{required:!0,location:"body"}}},CreateAuditPolicy:dt,CreateAuditPolicyOutput:ht,GetAuditPolicy:ft,GetAuditPolicyOutput:mt,PutAuditPolicy:yt,PutAuditPolicyOutPut:gt,DeleteAuditPolicy:At,GetAuditResult:bt,GetAuditResultOutput:xt,DeleteWorkflow:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"graph_name"}}},UpdateWorkflow:{httpMethod:"PUT",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"graph_name"},Graph_name:{required:!0,location:"body"}}},GetWorkflowList:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"graph_name_prefix"},XObsLimit:{type:"number",location:"urlPath",sentAs:"x-workflow-limit"},XObsPrefix:{location:"urlPath",sentAs:"x-workflow-prefix"},XObsStart:{type:"number",location:"urlPath",sentAs:"x-workflow-start"}}},GetWorkflowListOutput:{data:{type:"body"},parameters:{workflows:{location:"body"}}},GetWorkflowTemplateList:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"template_name_prefix"},Start:{type:"number",location:"urlPath",sentAs:"x-workflow-start"},Limit:{type:"number",location:"urlPath",sentAs:"x-workflow-limit"},"X-workflow-prefix":{location:"urlPath",sentAs:"x-workflow-prefix"}}},GetWorkflowTemplateListOutput:{data:{type:"body"},parameters:{templates:{location:"body"}}},GetWorkflowInstanceList:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"execution_name_prefix"},Start:{type:"number",location:"urlPath",sentAs:"x-workflow-start"},Limit:{type:"number",location:"urlPath",sentAs:"x-workflow-limit"},Graph_name:{location:"urlPath",sentAs:"x-workflow-graph-name"},State:{location:"urlPath",sentAs:"x-workflow-execution-state"},"X-workflow-prefix":{location:"urlPath",sentAs:"x-workflow-prefix"}}},GetWorkflowInstanceListOutput:{data:{type:"body"},parameters:{instances:{location:"body"}}},DeleteTemplate:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"template_name"}}},GetActionTemplates:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"template_name_prefix"},XObsPrefix:{location:"urlPath",sentAs:"x-workflow-prefix"},XObsCategory:{type:"String",location:"urlPath",sentAs:"x-workflow-category"}}},GetActionTemplatesOutput:{data:{type:"body"},parameters:{actions:{location:"body"}}},GetWorkflowAuthorization:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"}}},GetWorkflowAuthorizationOutput:{data:{type:"body"},parameters:{authorization:{location:"body"}}},OpenWorkflowAuthorization:{httpMethod:"POST",parameters:{ApiPath:{location:"uri"}}},CreateOnlineDecom:{httpMethod:"PUT",urlPath:"obscompresspolicy",parameters:{Bucket:{required:!0,location:"uri"},Decom:{required:!0,location:"body"}}},GetOnlineDecom:{httpMethod:"GET",urlPath:"obscompresspolicy",parameters:{Bucket:{required:!0,location:"uri"}}},GetOnlineDecomOutput:{data:{type:"body"},parameters:{Decom:{location:"body"}}},DeleteOnlineDecom:{httpMethod:"DELETE",urlPath:"obscompresspolicy",parameters:{Bucket:{required:!0,location:"uri"}}},GetPublicationTemplates:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name_prefix"},XObsCategory:{location:"urlPath",sentAs:"x-workflow-category"},XObsOtatus:{location:"urlPath",sentAs:"x-workflow-status"},XObsPrefix:{location:"urlPath",sentAs:"x-workflow-prefix"}}},GetPublicationTemplatesOutput:{data:{type:"body"},parameters:{PublishedTemplates:{location:"body"}}},GetPublicationTemplateDetail:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"}}},GetPublicationTemplateDetailOutput:{data:{type:"body"},parameters:{PublishTemplate:{location:"body"}}},GetWorkflowAgreements:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},XWorkflowType:{required:!0,location:"urlPath",sentAs:"x-workflow-type"}}},GetWorkflowAgreementsOutput:{data:{type:"body"},parameters:{authorization:{location:"body"}}},OpenWorkflowAgreements:{httpMethod:"POST",parameters:{ApiPath:{location:"uri"},XWorkflowType:{required:!0,location:"urlPath",sentAs:"x-workflow-type"}}},CreateMyActionTemplate:{httpMethod:"POST",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"},ActionTemplate:{required:!0,location:"body"}}},CreateMyActionTemplateOutput:{data:{type:"body"},parameters:{ActionTemplate:{location:"body"}}},GetMyActionTemplates:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name_prefix"},XObsCategory:{location:"urlPath",sentAs:"x-workflow-category"},XObsOtatus:{location:"urlPath",sentAs:"x-workflow-status"},XObsPrefix:{location:"urlPath",sentAs:"x-workflow-prefix"}}},GetMyActionTemplatesOutput:{data:{type:"body"},parameters:{ActionTemplates:{location:"body"}}},GetMyactiontemplateDetail:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"}}},GetMyactiontemplateDetailOutput:{data:{type:"body"},parameters:{ActionTemplate:{location:"body"}}},UpdateMyActionTemplate:{httpMethod:"PUT",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"},ActionTemplate:{required:!0,location:"body"}}},UpdateMyActionTemplateOutput:{data:{type:"body"},parameters:{ActionTemplate:{location:"body"}}},DeleteMyActionTemplate:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"}}},ForbidMyActionTemplate:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"},XObsForbid:{location:"urlPath",sentAs:"x-workflow-forbid"}}},UpdatePublicActionTemplate:{httpMethod:"PUT",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"},PublicAction:{required:!0,location:"body"}}},GetOmPublicActionTemplates:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name_prefix"},XObsCategory:{location:"urlPath",sentAs:"x-workflow-category"},XObsOtatus:{location:"urlPath",sentAs:"x-workflow-status"},XObsPrefix:{location:"urlPath",sentAs:"x-workflow-prefix"}}},GetOmPublicActionTemplatesOutput:{data:{type:"body"},parameters:{Templates:{location:"body"}}},SetBucketAlias:{httpMethod:"PUT",urlPath:"obsbucketalias",data:{xmlRoot:"CreateBucketAlias"},parameters:{Bucket:{required:!0,location:"uri"},BucketList:{location:"xml",type:"object",sentAs:"BucketList",parameters:{Bucket:{location:"xml",type:"array",items:{parameters:{sentAs:"Bucket"}}}}}}},GetBucketAlias:{httpMethod:"GET",urlPath:"obsalias",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketAliasOutput:{data:{type:"xml",xmlRoot:"AliasList"},parameters:{BucketAlias:{location:"xml",type:"object",sentAs:"BucketAlias",parameters:{Alias:{sentAs:"Alias"},BucketList:{sentAs:"Bucket",location:"xml",type:"array",wrapper:"BucketList",items:{type:"string"}}}}}},DeleteBucketAlias:{httpMethod:"DELETE",urlPath:"obsbucketalias",parameters:{Bucket:{required:!0,location:"uri"}}},BindBucketAlias:{httpMethod:"PUT",urlPath:"obsalias",data:{xmlRoot:"AliasList"},parameters:{Bucket:{required:!0,location:"uri"},Alias:{location:"xml",type:"string",sentAs:"Alias"}}},BindBucketAliasOutput:{data:{xmlRoot:"AliasList"},parameters:{Bucket:{required:!0,location:"uri"},Alias:{location:"xml",type:"string",sentAs:"Alias"}}},UnbindBucketAlias:{httpMethod:"DELETE",urlPath:"obsalias",parameters:{Bucket:{required:!0,location:"uri"}}},ListBucketsAlias:{httpMethod:"GET",urlPath:"obsbucketalias"},ListBucketsAliasOutput:{data:{type:"xml",xmlRoot:"ListBucketAliasResult"},parameters:{BucketAliasList:{location:"xml",sentAs:"BucketAliasList",type:"object",parameters:{BucketAlias:{location:"xml",type:"array",sentAs:"BucketAlias",items:{type:"object",parameters:{Alias:{sentAs:"Alias"},CreationDate:{sentAs:"CreationDate"},BucketList:{location:"xml",type:"object",sentAs:"BucketList",parameters:{Bucket:{location:"xml",type:"array",items:{parameters:{sentAs:"Bucket"}}}}}}}}}},Owner:{location:"xml",sentAs:"Owner",type:"object",parameters:{ID:{sentAs:"ID"}}}}},getSFSPermissionAcl:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"}}},getSFSPermissionAclOutput:{data:{type:"body"},parameters:{PermissionGroup:{location:"body"}}},updateSFSPermissionAcl:{httpMethod:"PUT",parameters:{ApiPath:{location:"uri"},Params:{location:"body"}}},deleteSFSPermissionAcl:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"}}},getSFSPermissionGroupList:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},Limit:{location:"urlPath",sentAs:"limit"},Offset:{location:"urlPath",sentAs:"offset"}}},getSFSPermissionGroupListOutput:{data:{type:"body"},parameters:{PermissionGroups:{location:"body"}}},setSFSPermissionGroup:{httpMethod:"POST",parameters:{ApiPath:{location:"uri"},Params:{location:"body"}}},updateSFSPermissionGroup:{httpMethod:"PUT",parameters:{ApiPath:{location:"uri"},Params:{location:"body"}}},getSFSPermissionGroup:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"}}},getSFSPermissionGroupOutput:{data:{type:"body"},parameters:{PermissionGroup:{location:"body"}}},deleteSFSPermissionGroup:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"}}}};function Jt(e){return Jt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Jt(e)}function er(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,o)}return r}function tr(e,t,r){return t=function(e){var t=function(e,t){if("object"!=Jt(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=Jt(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==Jt(t)?t:t+""}(t),t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var rr={httpMethod:"PUT",data:{xmlRoot:"CreateBucketConfiguration"},parameters:function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?er(Object(r),!0).forEach((function(t){tr(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):er(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}({Bucket:{required:!0,location:"uri"},ACL:{location:"header",sentAs:"acl",withPrefix:!0},StorageType:{location:"header",sentAs:"x-default-storage-class"},IESLocation:{location:"header",sentAs:"ies-location",withPrefix:!0},ObjectLockEnabeld:{location:"header",sentAs:"bucket-object-lock-enabled",withPrefix:!0},FileInterface:{location:"header",sentAs:"fs-file-interface",withPrefix:!0},Type:{location:"header",sentAs:"bucket-type",withPrefix:!0},MultiAz:{location:"header",sentAs:"x-obs-az-redundancy"},Redundancy:{location:"header",sentAs:"bucket-redundancy",withPrefix:!0},IsFusionAllowUpgrade:{location:"header",sentAs:"fusion-allow-upgrade",withPrefix:!0},IsFusionAllowAlternative:{location:"header",sentAs:"fusion-allow-alternative",withPrefix:!0},Cluster:{location:"header",sentAs:"location-clustergroup-id",withPrefix:!0},GrantFullControl:{location:"header",sentAs:"grant-full-control",withPrefix:!0},GrantFullControlDelivered:{location:"header",sentAs:"grant-full-control-delivered",withPrefix:!0},GrantRead:{location:"header",sentAs:"grant-read",withPrefix:!0},GrantReadDelivered:{location:"header",sentAs:"grant-read-delivered",withPrefix:!0},GrantReadACP:{location:"header",sentAs:"grant-read-acp",withPrefix:!0},GrantWrite:{location:"header",sentAs:"grant-write",withPrefix:!0},GrantWriteACP:{location:"header",sentAs:"grant-write-acp",withPrefix:!0},ClusterType:{location:"header",sentAs:"cluster-type",withPrefix:!0},MultiEnterprise:{location:"header",sentAs:"epid",withPrefix:!0},Location:{location:"xml",sentAs:"LocationConstraint"}},pt)},or={type:"object",location:"xml",sentAs:"Owner",parameters:{ID:{sentAs:"ID"},Name:{sentAs:"DisplayName"}}},nr={type:"array",location:"xml",sentAs:"CommonPrefixes",items:{type:"object",parameters:{Prefix:{decode:!0,sentAs:"Prefix"},MTime:{sentAs:"MTime"},InodeNo:{sentAs:"InodeNo"}}}};function ar(e){return ar="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ar(e)}function ir(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,o)}return r}function sr(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?ir(Object(r),!0).forEach((function(t){cr(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):ir(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function cr(e,t,r){return t=function(e){var t=function(e,t){if("object"!=ar(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=ar(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==ar(t)?t:t+""}(t),t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var lr={type:"object",location:"xml",sentAs:"Owner",parameters:{ID:{sentAs:"ID"},Name:{sentAs:"DisplayName"}}},ur={type:"object",location:"xml",sentAs:"Rule",parameters:{ApplyServerSideEncryptionByDefault:{type:"object",sentAs:"ApplyServerSideEncryptionByDefault",parameters:{SSEAlgorithm:{sentAs:"SSEAlgorithm"},KMSMasterKeyID:{sentAs:"KMSMasterKeyID"},ProjectID:{sentAs:"ProjectID"},KMSDataEncryption:{sentAs:"KMSDataEncryption"}}}}},pr={type:"object",location:"xml",sentAs:"InventoryConfiguration",parameters:{Id:{sentAs:"Id"},IsEnabled:{sentAs:"IsEnabled"},Filter:{type:"object",sentAs:"Filter",parameters:{Prefix:{sentAs:"Prefix"}}},Destination:{type:"object",sentAs:"Destination",parameters:{Format:{sentAs:"Format"},Bucket:{sentAs:"Bucket"},Prefix:{sentAs:"Prefix"},Encryption:{type:"object",sentAs:"Encryption",parameters:{"SSE-KMS":{type:"object",sentAs:"SSE-KMS",parameters:{KeyId:{sentAs:"KeyId",type:"adapter"}}}}}}},Schedule:{type:"object",sentAs:"Schedule",parameters:{Frequency:{sentAs:"Frequency"}}},IncludedObjectVersions:{sentAs:"IncludedObjectVersions"},OptionalFields:{type:"object",location:"xml",sentAs:"OptionalFields",parameters:{Field:{type:"array",sentAs:"Field",items:{type:"string"}}}}}},dr={type:"object",location:"xml",sentAs:"Initiator",parameters:{ID:{sentAs:"ID"},Name:{sentAs:"DisplayName"}}},hr={sentAs:"BackToSourceRule",required:!0,location:"xml",type:"array",items:{type:"object",parameters:{ID:{sentAs:"ID"},Condition:{sentAs:"Condition",type:"object",parameters:{ObjectKeyPrefixEquals:{sentAs:"ObjectKeyPrefixEquals"},HttpErrorCodeReturnedEquals:{sentAs:"HttpErrorCodeReturnedEquals"}}},Redirect:{sentAs:"Redirect",type:"object",parameters:{HttpRedirectCode:{sentAs:"HttpRedirectCode"},SourceEndpoint:{sentAs:"SourceEndpoint"},SourceBucketName:{sentAs:"SourceBucketName"},ReplaceKeyWith:{sentAs:"ReplaceKeyWith"},StaticUri:{sentAs:"StaticUri"},ReplaceKeyPrefixWith:{sentAs:"ReplaceKeyPrefixWith"},MigrationConfiguration:{sentAs:"MigrationConfiguration",type:"object",parameters:{Agency:{sentAs:"Agency"},LogBucketName:{sentAs:"LogBucketName"},PrivateBucketConfiguration:{sentAs:"PrivateBucketConfiguration",type:"object",parameters:{SourceStorageProvider:{sentAs:"SourceStorageProvider"},SourceBucketAK:{sentAs:"SourceBucketAK"},SourceBucketSK:{sentAs:"SourceBucketSK"},SourceBucketZone:{sentAs:"SourceBucketZone"}}}}}}}}}},fr={type:"array",location:"xml",wrapper:"AccessControlList",sentAs:"Grant",items:{type:"object",parameters:{Grantee:{data:{xsiNamespace:"http://www.w3.org/2001/XMLSchema-instance",xsiType:"Type"},type:"object",sentAs:"Grantee",parameters:{Type:{type:"ignore"},ID:{sentAs:"ID",notAllowEmpty:!0},Name:{sentAs:"DisplayName"},URI:{sentAs:"URI",type:"adapter",notAllowEmpty:!0}}},Permission:{sentAs:"Permission"}}}},mr={type:"object",location:"xml",sentAs:"LoggingEnabled",parameters:{TargetBucket:{sentAs:"TargetBucket"},TargetPrefix:{sentAs:"TargetPrefix"},TargetGrants:{type:"array",wrapper:"TargetGrants",sentAs:"Grant",items:{type:"object",parameters:{Grantee:{data:{xsiNamespace:"http://www.w3.org/2001/XMLSchema-instance",xsiType:"Type"},type:"object",sentAs:"Grantee",parameters:{Type:{type:"ignore"},ID:{sentAs:"ID"},Name:{sentAs:"DisplayName"},URI:{sentAs:"URI",type:"adapter"}}},Permission:{sentAs:"Permission"}}}}}},yr={type:"object",location:"xml",sentAs:"RedirectAllRequestsTo",parameters:{HostName:{sentAs:"HostName"},Protocol:{sentAs:"Protocol"}}},gr={type:"array",wrapper:"RoutingRules",location:"xml",sentAs:"RoutingRule",items:{type:"object",parameters:{Condition:{type:"object",sentAs:"Condition",parameters:{HttpErrorCodeReturnedEquals:{sentAs:"HttpErrorCodeReturnedEquals"},KeyPrefixEquals:{sentAs:"KeyPrefixEquals"}}},Redirect:{type:"object",sentAs:"Redirect",parameters:{HostName:{sentAs:"HostName"},HttpRedirectCode:{sentAs:"HttpRedirectCode"},Protocol:{sentAs:"Protocol"},ReplaceKeyPrefixWith:{sentAs:"ReplaceKeyPrefixWith"},ReplaceKeyWith:{sentAs:"ReplaceKeyWith"}}}}}},Ar={type:"object",location:"xml",sentAs:"IndexDocument",parameters:{Suffix:{sentAs:"Suffix"}}},br={type:"object",location:"xml",sentAs:"ErrorDocument",parameters:{Key:{sentAs:"Key"}}},xr={required:!0,type:"array",location:"xml",sentAs:"CORSRule",items:{type:"object",parameters:{ID:{sentAs:"ID"},AllowedMethod:{type:"array",sentAs:"AllowedMethod",items:{type:"string"}},AllowedOrigin:{type:"array",sentAs:"AllowedOrigin",items:{type:"string"}},AllowedHeader:{type:"array",sentAs:"AllowedHeader",items:{type:"string"}},MaxAgeSeconds:{type:"number",sentAs:"MaxAgeSeconds"},ExposeHeader:{type:"array",sentAs:"ExposeHeader",items:{type:"string"}}}}},vr={required:!0,type:"array",location:"xml",wrapper:"TagSet",sentAs:"Tag",items:{type:"object",parameters:{Key:{sentAs:"Key"},Value:{sentAs:"Value"}}}},Pr={required:!0,type:"array",location:"xml",sentAs:"Rule",items:{type:"object",parameters:{ID:{sentAs:"ID"},Prefix:{sentAs:"Prefix"},Status:{sentAs:"Status"},Destination:{type:"object",sentAs:"Destination",parameters:{Bucket:{sentAs:"Bucket",type:"adapter"},StorageClass:{sentAs:"StorageClass",type:"adapter"},DeleteData:{sentAs:"DeleteData",type:"string"}}},HistoricalObjectReplication:{sentAs:"HistoricalObjectReplication"}}}},kr={HeadBucket:{httpMethod:"HEAD",parameters:{Bucket:{required:!0,location:"uri"}}},HeadApiVersion:{httpMethod:"HEAD",urlPath:"apiversion",parameters:{Bucket:{location:"uri"}}},HeadApiVersionOutput:{parameters:{ApiVersion:{location:"header",sentAs:"x-obs-api"}}},CreateBucket:rr,CreateSfsBucket:{httpMethod:"PUT",data:{xmlRoot:"CreateBucketConfiguration"},parameters:{ApiPath:{location:"uri"},ACL:{location:"header",sentAs:"acl",withPrefix:!0},StorageType:{location:"header",sentAs:"x-default-storage-class"},IESLocation:{location:"header",sentAs:"ies-location",withPrefix:!0},ObjectLockEnabeld:{location:"header",sentAs:"bucket-object-lock-enabled",withPrefix:!0},FileInterface:{location:"header",sentAs:"fs-file-interface",withPrefix:!0},Type:{location:"header",sentAs:"bucket-type",withPrefix:!0},MultiAz:{location:"header",sentAs:"x-obs-az-redundancy"},Redundancy:{location:"header",sentAs:"bucket-redundancy",withPrefix:!0},IsFusionAllowUpgrade:{location:"header",sentAs:"fusion-allow-upgrade",withPrefix:!0},IsFusionAllowAlternative:{location:"header",sentAs:"fusion-allow-alternative",withPrefix:!0},Cluster:{location:"header",sentAs:"location-clustergroup-id",withPrefix:!0},GrantFullControl:{location:"header",sentAs:"grant-full-control",withPrefix:!0},GrantRead:{location:"header",sentAs:"grant-read",withPrefix:!0},GrantReadACP:{location:"header",sentAs:"grant-read-acp",withPrefix:!0},GrantWrite:{location:"header",sentAs:"grant-write",withPrefix:!0},GrantWriteACP:{location:"header",sentAs:"grant-write-acp",withPrefix:!0},ClusterType:{location:"header",sentAs:"cluster-type",withPrefix:!0},MultiEnterprise:{location:"header",sentAs:"epid",withPrefix:!0},Location:{location:"xml",sentAs:"LocationConstraint"}}},DeleteSfsBucket:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"}}},ListSfsBuckets:{httpMethod:"GET",parameters:{Type:{sentAs:"x-obs-bucket-type",location:"header"},ApiPath:{location:"uri"},Location:{sentAs:"location",location:"header",withPrefix:!0}}},ListSfsBucketsOutput:{data:{type:"xml",xmlRoot:"ListAllMyBucketsResult"},parameters:{Buckets:{location:"xml",sentAs:"Bucket",type:"array",wrapper:"Buckets",items:{type:"object",location:"xml",sentAs:"Bucket",parameters:{Name:{sentAs:"Name"},CreationDate:{sentAs:"CreationDate"},Location:{sentAs:"Location"},ClusterType:{sentAs:"ClusterType"},IESLocation:{sentAs:"IESLocation"}}}},Owner:{type:"object",location:"xml",sentAs:"Owner",parameters:{ID:{sentAs:"ID"},DisplayName:{sentAs:"DisplayName"}}}}},SetSFSAcl:{httpMethod:"PUT",urlPath:"sfsacl",parameters:{Bucket:{required:!0,location:"uri"},Policy:{required:!0,location:"body"}}},GetSFSAcl:{httpMethod:"GET",urlPath:"sfsacl",parameters:{Bucket:{required:!0,location:"uri"}}},GetSFSAclOutput:{data:{type:"body"},parameters:{Policy:{location:"body"}}},DeleteSFSAcl:{httpMethod:"DELETE",urlPath:"sfsacl",parameters:{Bucket:{required:!0,location:"uri"}}},getSFSPermissionAcl:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"}}},getSFSPermissionAclOutput:{data:{type:"body"},parameters:{PermissionGroup:{location:"body"}}},updateSFSPermissionAcl:{httpMethod:"PUT",parameters:{ApiPath:{location:"uri"},Params:{location:"body"}}},deleteSFSPermissionAcl:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"}}},getSFSPermissionGroupList:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},Limit:{location:"urlPath",sentAs:"limit"},Offset:{location:"urlPath",sentAs:"offset"}}},getSFSPermissionGroupListOutput:{data:{type:"body"},parameters:{PermissionGroups:{location:"body"}}},setSFSPermissionGroup:{httpMethod:"POST",parameters:{ApiPath:{location:"uri"},Params:{location:"body"}}},updateSFSPermissionGroup:{httpMethod:"PUT",parameters:{ApiPath:{location:"uri"},Params:{location:"body"}}},getSFSPermissionGroup:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"}}},getSFSPermissionGroupOutput:{data:{type:"body"},parameters:{PermissionGroup:{location:"body"}}},deleteSFSPermissionGroup:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"}}},GetBucketMetadata:{httpMethod:"HEAD",parameters:{Bucket:{required:!0,location:"uri"},Origin:{location:"header",sentAs:"Origin"},RequestHeader:{location:"header",sentAs:"Access-Control-Request-Headers"}}},GetBucketMetadataOutput:{parameters:{StorageClass:{location:"header",sentAs:"x-default-storage-class"},ObsVersion:{location:"header",sentAs:"x-obs-version"},Location:{location:"header",sentAs:"bucket-region",withPrefix:!0},FileInterface:{location:"header",sentAs:"fs-file-interface",withPrefix:!0},Type:{location:"header",sentAs:"bucket-type",withPrefix:!0},MultiAz:{location:"header",sentAs:"x-obs-az-redundancy"},Redundancy:{location:"header",sentAs:"bucket-redundancy",withPrefix:!0},MultiEnterprise:{location:"header",sentAs:"epid",withPrefix:!0},ClusterType:{location:"header",sentAs:"cluster-type",withPrefix:!0},Cluster:{location:"header",sentAs:"location-clustergroup-id",withPrefix:!0},IESLocation:{location:"header",sentAs:"ies-location",withPrefix:!0},AllowOrigin:{location:"header",sentAs:"access-control-allow-origin"},MaxAgeSeconds:{location:"header",sentAs:"access-control-max-age"},ExposeHeader:{location:"header",sentAs:"access-control-expose-headers"},AllowMethod:{location:"header",sentAs:"access-control-allow-methods"},AllowHeader:{location:"header",sentAs:"access-control-allow-headers"}}},DeleteBucket:{httpMethod:"DELETE",parameters:{Bucket:{required:!0,location:"uri"}}},ListBuckets:{httpMethod:"GET",parameters:{Type:{sentAs:"x-obs-bucket-type",location:"header"},Location:{sentAs:"location",location:"header",withPrefix:!0}}},ListBucketsOutput:{data:{type:"xml",xmlRoot:"ListAllMyBucketsResult"},parameters:{Buckets:{location:"xml",sentAs:"Bucket",type:"array",wrapper:"Buckets",items:{type:"object",location:"xml",sentAs:"Bucket",parameters:{Name:{sentAs:"Name"},CreationDate:{sentAs:"CreationDate"},Location:{sentAs:"Location"},ClusterType:{sentAs:"ClusterType"},IESLocation:{sentAs:"IESLocation"},BucketType:{sentAs:"BucketType"}}}},Owner:{type:"object",location:"xml",sentAs:"Owner",parameters:{ID:{sentAs:"ID"},DisplayName:{sentAs:"DisplayName"}}}}},GetBucketLocation:{httpMethod:"GET",urlPath:"location",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketLocationOutput:{data:{type:"xml",xmlRoot:"CreateBucketConfiguration"},parameters:{Location:{location:"xml",sentAs:"LocationConstraint"}}},ListObjects:{httpMethod:"GET",parameters:{Bucket:{required:!0,location:"uri"},Prefix:{location:"urlPath",sentAs:"prefix"},Marker:{location:"urlPath",sentAs:"marker"},MaxKeys:{type:"number",location:"urlPath",sentAs:"max-keys"},Delimiter:{location:"urlPath",sentAs:"delimiter"},EncodingType:{location:"urlPath",sentAs:"encoding-type"}}},ListObjectsOutput:{data:{type:"xml",xmlRoot:"ListBucketResult"},parameters:{Location:{location:"header",sentAs:"bucket-region",withPrefix:!0},Bucket:{location:"xml",sentAs:"Name"},Delimiter:{decode:!0,location:"xml",sentAs:"Delimiter"},IsTruncated:{location:"xml",sentAs:"IsTruncated"},Prefix:{decode:!0,location:"xml",sentAs:"Prefix"},Marker:{decode:!0,location:"xml",sentAs:"Marker"},NextMarker:{decode:!0,location:"xml",sentAs:"NextMarker"},MaxKeys:{location:"xml",sentAs:"MaxKeys"},EncodingType:{location:"xml",sentAs:"EncodingType"},Contents:{type:"array",location:"xml",sentAs:"Contents",items:{type:"object",parameters:{Key:{decode:!0,sentAs:"Key"},LastModified:{sentAs:"LastModified"},ETag:{sentAs:"ETag"},Size:{sentAs:"Size"},Type:{sentAs:"Type"},StorageClass:{sentAs:"StorageClass"},Owner:or}}},CommonPrefixes:nr}},ListVersions:{httpMethod:"GET",urlPath:"versions",parameters:{Bucket:{required:!0,location:"uri"},Prefix:{location:"urlPath",sentAs:"prefix"},KeyMarker:{location:"urlPath",sentAs:"key-marker"},MaxKeys:{type:"number",location:"urlPath",sentAs:"max-keys"},Delimiter:{location:"urlPath",sentAs:"delimiter"},VersionIdMarker:{location:"urlPath",sentAs:"version-id-marker"},EncodingType:{location:"urlPath",sentAs:"encoding-type"}}},ListVersionsOutput:{data:{type:"xml",xmlRoot:"ListVersionsResult"},parameters:{EncodingType:{location:"xml",sentAs:"EncodingType"},Location:{location:"header",sentAs:"bucket-region",withPrefix:!0},Bucket:{location:"xml",sentAs:"Name"},Prefix:{decode:!0,location:"xml",sentAs:"Prefix"},Delimiter:{decode:!0,location:"xml",sentAs:"Delimiter"},KeyMarker:{decode:!0,location:"xml",sentAs:"KeyMarker"},VersionIdMarker:{location:"xml",sentAs:"VersionIdMarker"},NextKeyMarker:{decode:!0,location:"xml",sentAs:"NextKeyMarker"},NextVersionIdMarker:{location:"xml",sentAs:"NextVersionIdMarker"},MaxKeys:{location:"xml",sentAs:"MaxKeys"},IsTruncated:{location:"xml",sentAs:"IsTruncated"},Versions:{type:"array",location:"xml",sentAs:"Version",items:{type:"object",parameters:{Key:{decode:!0,sentAs:"Key"},VersionId:{sentAs:"VersionId"},IsLatest:{sentAs:"IsLatest"},LastModified:{sentAs:"LastModified"},ETag:{sentAs:"ETag"},Size:{sentAs:"Size"},Type:{sentAs:"Type"},Owner:or,StorageClass:{sentAs:"StorageClass"}}}},DeleteMarkers:{type:"array",location:"xml",sentAs:"DeleteMarker",items:{type:"object",parameters:{Key:{decode:!0,sentAs:"Key"},VersionId:{sentAs:"VersionId"},IsLatest:{sentAs:"IsLatest"},LastModified:{sentAs:"LastModified"},Owner:or}}},CommonPrefixes:nr}},PutBackToSource:{httpMethod:"PUT",data:{xmlRoot:"BackToSourceConfiguration"},urlPath:"backtosource",parameters:{Bucket:{required:!0,location:"uri"},BackToSourceRules:hr,ContentMD5:{location:"header",sentAs:"Content-MD5"}}},DeleteBackToSource:{httpMethod:"DELETE",urlPath:"backtosource",parameters:{Bucket:{required:!0,location:"uri"}}},GetBackToSource:{httpMethod:"GET",urlPath:"backtosource",parameters:{Bucket:{required:!0,location:"uri"}}},GetBackToSourceOutput:{data:{type:"xml",xmlRoot:"BackToSourceConfiguration"},parameters:{BackToSourceRules:hr}},GetBucketStorageInfo:{httpMethod:"GET",urlPath:"storageinfo",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketStorageInfoOutput:{data:{type:"xml",xmlRoot:"GetBucketStorageInfoResult"},parameters:{Size:{location:"xml",sentAs:"Size"},ObjectNumber:{location:"xml",sentAs:"ObjectNumber"},StandardSize:{location:"xml",sentAs:"StandardSize"},StandardObjectNumber:{location:"xml",sentAs:"StandardObjectNumber"},Standard_IASize:{location:"xml",sentAs:"Standard_IASize"},Standard_IAObjectNumber:{location:"xml",sentAs:"Standard_IAObjectNumber"},GlacierSize:{location:"xml",sentAs:"GlacierSize"},GlacierObjectNumber:{location:"xml",sentAs:"GlacierObjectNumber"},DeepArchiveSize:{location:"xml",sentAs:"DeepArchiveSize"},DeepArchiveObjectNumber:{location:"xml",sentAs:"DeepArchiveObjectNumber"},HighPerformanceSize:{location:"xml",sentAs:"HighPerformanceSize"},HighPerformanceObjectNumber:{location:"xml",sentAs:"HighPerformanceObjectNumber"}}},SetBucketQuota:{httpMethod:"PUT",urlPath:"quota",data:{xmlRoot:"Quota"},parameters:{Bucket:{required:!0,location:"uri"},StorageQuota:{required:!0,location:"xml",sentAs:"StorageQuota"},NumberQuota:{required:!1,location:"xml",sentAs:"NumberQuota"}}},GetBucketQuota:{httpMethod:"GET",urlPath:"quota",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketQuotaOutput:{data:{type:"xml",xmlRoot:"Quota"},parameters:{StorageQuota:{location:"xml",sentAs:"StorageQuota"},NumberQuota:{location:"xml",sentAs:"NumberQuota"}}},SetBucketAcl:{httpMethod:"PUT",urlPath:"acl",data:{xmlRoot:"AccessControlPolicy"},parameters:{Bucket:{required:!0,location:"uri"},ACL:{location:"header",sentAs:"acl",withPrefix:!0,type:"adapter"},Owner:lr,Grants:fr}},GetBucketAcl:{httpMethod:"GET",urlPath:"acl",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketAclOutput:{data:{type:"xml",xmlRoot:"AccessControlPolicy"},parameters:{Owner:lr,Grants:fr}},SetBucketLoggingConfiguration:{httpMethod:"PUT",urlPath:"logging",data:{xmlRoot:"BucketLoggingStatus",xmlAllowEmpty:!0},parameters:{Bucket:{required:!0,location:"uri"},LoggingEnabled:mr}},GetBucketLoggingConfiguration:{httpMethod:"GET",urlPath:"logging",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketLoggingConfigurationOutput:{data:{type:"xml",xmlRoot:"BucketLoggingStatus"},parameters:{LoggingEnabled:mr}},SetBucketPolicy:{httpMethod:"PUT",urlPath:"policy",parameters:{Bucket:{required:!0,location:"uri"},Policy:{required:!0,location:"body"}}},GetBucketPolicy:{httpMethod:"GET",urlPath:"policy",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketPolicyOutput:{data:{type:"body"},parameters:{Policy:{location:"body"}}},DeleteBucketPolicy:{httpMethod:"DELETE",urlPath:"policy",parameters:{Bucket:{required:!0,location:"uri"}}},SetBucketDisPolicy:{httpMethod:"PUT",urlPath:"disPolicy",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"},Rules:{required:!0,location:"body"}}},GetBucketDisPolicy:{httpMethod:"GET",urlPath:"disPolicy",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"},ContentType:{location:"header",sentAs:"Content-Type"}}},GetBucketDisPolicyOutput:{data:{type:"body"},parameters:{Rules:{location:"body"}}},DeleteBucketDisPolicy:{httpMethod:"DELETE",urlPath:"disPolicy",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"}}},SetBucketLifecycleConfiguration:{httpMethod:"PUT",urlPath:"lifecycle",data:{xmlRoot:"LifecycleConfiguration",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Rules:vt}},GetBucketLifecycleConfiguration:{httpMethod:"GET",urlPath:"lifecycle",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketLifecycleConfigurationOutput:{data:{type:"xml",xmlRoot:"LifecycleConfiguration"},parameters:{Rules:vt}},DeleteBucketLifecycleConfiguration:{httpMethod:"DELETE",urlPath:"lifecycle",parameters:{Bucket:{required:!0,location:"uri"}}},SetBucketWebsiteConfiguration:{httpMethod:"PUT",urlPath:"website",data:{xmlRoot:"WebsiteConfiguration"},parameters:{Bucket:{required:!0,location:"uri"},RedirectAllRequestsTo:yr,IndexDocument:Ar,ErrorDocument:br,RoutingRules:gr}},GetBucketWebsiteConfiguration:{httpMethod:"GET",urlPath:"website",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketWebsiteConfigurationOutput:{data:{type:"xml",xmlRoot:"WebsiteConfiguration"},parameters:{RedirectAllRequestsTo:yr,IndexDocument:Ar,ErrorDocument:br,RoutingRules:gr}},DeleteBucketWebsiteConfiguration:{httpMethod:"DELETE",urlPath:"website",parameters:{Bucket:{required:!0,location:"uri"}}},SetBucketVersioningConfiguration:{httpMethod:"PUT",urlPath:"versioning",data:{xmlRoot:"VersioningConfiguration"},parameters:{Bucket:{required:!0,location:"uri"},VersionStatus:{required:!0,location:"xml",sentAs:"Status"}}},GetBucketVersioningConfiguration:{httpMethod:"GET",urlPath:"versioning",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketVersioningConfigurationOutput:{data:{type:"xml",xmlRoot:"VersioningConfiguration"},parameters:{VersionStatus:{location:"xml",sentAs:"Status"}}},SetBucketCors:{httpMethod:"PUT",urlPath:"cors",data:{xmlRoot:"CORSConfiguration",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},CorsRules:xr}},GetBucketCors:{httpMethod:"GET",urlPath:"cors",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketCorsOutput:{data:{type:"xml",xmlRoot:"CORSConfiguration"},parameters:{CorsRules:xr}},DeleteBucketCors:{httpMethod:"DELETE",urlPath:"cors",parameters:{Bucket:{required:!0,location:"uri"}}},SetBucketNotification:{httpMethod:"PUT",urlPath:"notification",data:{xmlRoot:"NotificationConfiguration",xmlAllowEmpty:!0},parameters:{Bucket:{required:!0,location:"uri"},TopicConfigurations:St,FunctionGraphConfigurations:wt,FunctionStageConfigurations:Bt,EventGridConfigurations:Ct}},GetBucketNotification:{httpMethod:"GET",urlPath:"notification",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketNotificationOutput:{data:{type:"xml",xmlRoot:"NotificationConfiguration"},parameters:{TopicConfigurations:St,FunctionGraphConfigurations:wt,FunctionStageConfigurations:Bt,EventGridConfigurations:Ct}},GetBucketObjectLockConfiguration:{httpMethod:"GET",urlPath:"object-lock",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketObjectLockConfigurationOutput:{data:{type:"xml",xmlRoot:"ObjectLockConfiguration"},parameters:{Rule:Pt}},SetBucketObjectLockConfig:{httpMethod:"PUT",urlPath:"object-lock",data:{type:"xml",xmlAllowEmpty:!0,xmlRoot:"ObjectLockConfiguration"},parameters:{Bucket:{required:!0,location:"uri"},Rule:Pt}},SetBucketTagging:{httpMethod:"PUT",urlPath:"tagging",data:{xmlRoot:"Tagging",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Tags:vr}},DeleteBucketTagging:{httpMethod:"DELETE",urlPath:"tagging",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketTagging:{httpMethod:"GET",urlPath:"tagging",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketTaggingOutput:{data:{type:"xml",xmlRoot:"Tagging"},parameters:{Tags:vr}},SetBucketStoragePolicy:{httpMethod:"PUT",urlPath:"storagePolicy",data:{xmlRoot:"StoragePolicy"},parameters:{Bucket:{required:!0,location:"uri"},StorageClass:{required:!0,location:"xml",type:"adapter",sentAs:"DefaultStorageClass"}}},GetBucketStoragePolicy:{httpMethod:"GET",urlPath:"storagePolicy",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketStoragePolicyOutput:{data:{type:"xml",xmlRoot:"StoragePolicy"},parameters:{StorageClass:{location:"xml",type:"string",sentAs:"DefaultStorageClass"}}},SetBucketReplication:{httpMethod:"PUT",urlPath:"replication",data:{xmlRoot:"ReplicationConfiguration",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Agency:{location:"xml",sentAs:"Agency"},Rules:Pr}},GetBucketReplication:{httpMethod:"GET",urlPath:"replication",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketReplicationOutput:{data:{type:"xml",xmlRoot:"ReplicationConfiguration"},parameters:{Agency:{location:"xml",sentAs:"Agency"},Rules:Pr}},DeleteBucketReplication:{httpMethod:"DELETE",urlPath:"replication",parameters:{Bucket:{required:!0,location:"uri"}}},PutObject:{httpMethod:"PUT",parameters:sr(sr({Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},ContentMD5:{location:"header",sentAs:"Content-MD5"},ContentSHA256:{location:"header",sentAs:"content-sha256",withPrefix:!0},ContentType:{location:"header",sentAs:"Content-Type"},Offset:{type:"plain"},ContentLength:{location:"header",sentAs:"Content-Length",type:"plain"},ACL:{location:"header",sentAs:"acl",withPrefix:!0,type:"adapter"},GrantRead:{location:"header",sentAs:"grant-read",withPrefix:!0},GrantReadAcp:{location:"header",sentAs:"grant-read-acp",withPrefix:!0},GrantWriteAcp:{location:"header",sentAs:"grant-write-acp",withPrefix:!0},GrantFullControl:{location:"header",sentAs:"grant-full-control",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0,type:"adapter"},Metadata:{type:"object",location:"header",sentAs:"meta-",withPrefix:!0},CacheControl:{location:"header",sentAs:"Cache-Control"},ContentDisposition:{location:"header",sentAs:"Content-Disposition",encodingSafe:' ;/?:@&=+$,"'},ContentLanguage:{location:"header",sentAs:"Content-Language"},ContentEncoding:{location:"header",sentAs:"Content-Encoding"},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0},Tags:{location:"header",sentAs:"tagging",withPrefix:!0},Expires:{location:"header",sentAs:"x-obs-expires",type:"number"}},ut),{},{Body:{location:"body"},SourceFile:{type:"srcFile"},ProgressCallback:{type:"plain"}})},PutObjectOutput:{parameters:sr({ETag:{location:"header",sentAs:"etag"},VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0}},ut)},AppendObject:{httpMethod:"POST",urlPath:"append",parameters:sr(sr({Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},Position:{location:"urlPath",sentAs:"position",type:"number"},ContentMD5:{location:"header",sentAs:"Content-MD5"},Offset:{type:"plain"},ContentType:{location:"header",sentAs:"Content-Type"},ContentLength:{location:"header",sentAs:"Content-Length",type:"plain"},ACL:{location:"header",sentAs:"acl",withPrefix:!0,type:"adapter"},GrantRead:{location:"header",sentAs:"grant-read",withPrefix:!0},GrantReadAcp:{location:"header",sentAs:"grant-read-acp",withPrefix:!0},GrantWriteAcp:{location:"header",sentAs:"grant-write-acp",withPrefix:!0},GrantFullControl:{location:"header",sentAs:"grant-full-control",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0,type:"adapter"},Metadata:{type:"object",location:"header",sentAs:"meta-",withPrefix:!0},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0},Tags:{location:"header",sentAs:"tagging",withPrefix:!0},Expires:{location:"header",sentAs:"x-obs-expires",type:"number"}},ut),{},{Body:{location:"body"},SourceFile:{type:"srcFile"},ProgressCallback:{type:"plain"}})},AppendObjectOutput:{parameters:sr({ETag:{location:"header",sentAs:"etag"},NextPosition:{location:"header",sentAs:"x-obs-next-append-position"},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0}},ut)},GetObject:{httpMethod:"GET",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},ResponseCacheControl:{location:"urlPath",sentAs:"response-cache-control"},ResponseContentDisposition:{location:"urlPath",sentAs:"response-content-disposition"},ResponseContentEncoding:{location:"urlPath",sentAs:"response-content-encoding"},ResponseContentLanguage:{location:"urlPath",sentAs:"response-content-language"},ResponseContentType:{location:"urlPath",sentAs:"response-content-type"},ResponseExpires:{location:"urlPath",sentAs:"response-expires"},VersionId:{location:"urlPath",sentAs:"versionId"},ImageProcess:{location:"urlPath",sentAs:"x-image-process"},IfMatch:{location:"header",sentAs:"If-Match"},IfModifiedSince:{location:"header",sentAs:"If-Modified-Since"},IfNoneMatch:{location:"header",sentAs:"If-None-Match"},IfUnmodifiedSince:{location:"header",sentAs:"If-Unmodified-Since"},Range:{location:"header",sentAs:"Range"},Origin:{location:"header",sentAs:"Origin"},RequestHeader:{location:"header",sentAs:"Access-Control-Request-Headers"},SaveByType:{type:"dstFile"},SseC:{location:"header",sentAs:"server-side-encryption-customer-algorithm",withPrefix:!0},SseCKey:{location:"header",sentAs:"server-side-encryption-customer-key",type:"password",withPrefix:!0},ProgressCallback:{type:"plain"}}},GetObjectOutput:{data:{type:"body"},parameters:sr(sr({Content:{location:"body"},Expiration:{location:"header",sentAs:"expiration",withPrefix:!0},ETag:{location:"header",sentAs:"etag"},CacheControl:{location:"header",sentAs:"Cache-Control"},ContentDisposition:{location:"header",sentAs:"Content-Disposition"},ContentEncoding:{location:"header",sentAs:"Content-Encoding"},ContentLanguage:{location:"header",sentAs:"Content-Language"},ContentType:{location:"header",sentAs:"Content-Type"},Expires:{location:"header",sentAs:"Expires"},VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},ContentLength:{location:"header",sentAs:"Content-Length"},DeleteMarker:{location:"header",sentAs:"delete-marker",withPrefix:!0},LastModified:{location:"header",sentAs:"Last-Modified"},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0},Restore:{location:"header",sentAs:"restore",withPrefix:!0},AllowOrigin:{location:"header",sentAs:"access-control-allow-origin"},MaxAgeSeconds:{location:"header",sentAs:"access-control-max-age"},ExposeHeader:{location:"header",sentAs:"access-control-expose-headers"},AllowMethod:{location:"header",sentAs:"access-control-allow-methods"},AllowHeader:{location:"header",sentAs:"access-control-allow-headers"}},ut),{},{Metadata:{location:"header",type:"object",sentAs:"meta-",withPrefix:!0}})},CopyObject:{httpMethod:"PUT",parameters:sr(sr({Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},ACL:{location:"header",sentAs:"acl",withPrefix:!0,type:"adapter"},GrantRead:{location:"header",sentAs:"grant-read",withPrefix:!0},GrantReadAcp:{location:"header",sentAs:"grant-read-acp",withPrefix:!0},GrantWriteAcp:{location:"header",sentAs:"grant-write-acp",withPrefix:!0},GrantFullControl:{location:"header",sentAs:"grant-full-control",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0,type:"adapter"},CopySource:{required:!0,location:"header",sentAs:"copy-source",withPrefix:!0,skipEncoding:!0},CopySourceIfMatch:{location:"header",sentAs:"copy-source-if-match",withPrefix:!0},CopySourceIfModifiedSince:{location:"header",sentAs:"copy-source-if-modified-since",withPrefix:!0},CopySourceIfNoneMatch:{location:"header",sentAs:"copy-source-if-none-match",withPrefix:!0},CopySourceIfUnmodifiedSince:{location:"header",sentAs:"copy-source-if-unmodified-since",withPrefix:!0},ContentType:{location:"header",sentAs:"Content-Type"},ContentEncoding:{location:"header",sentAs:"content-encoding"},ContentLanguage:{location:"header",sentAs:"content-language"},ContentDisposition:{location:"header",sentAs:"content-disposition"},CacheControl:{location:"header",sentAs:"cache-control"},TagDirective:{location:"header",sentAs:"tagging-directive",withPrefix:!0},Tags:{location:"header",sentAs:"tagging",withPrefix:!0},Expires:{location:"header",sentAs:"expires"},Metadata:{type:"object",location:"header",sentAs:"meta-",withPrefix:!0},MetadataDirective:{location:"header",sentAs:"metadata-directive",withPrefix:!0},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0}},ut),{},{CopySourceSseC:{location:"header",sentAs:"copy-source-server-side-encryption-customer-algorithm",withPrefix:!0},CopySourceSseCKey:{location:"header",sentAs:"copy-source-server-side-encryption-customer-key",type:"password",withPrefix:!0}})},CopyObjectOutput:{data:{type:"xml",xmlRoot:"CopyObjectResult"},parameters:sr({VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},CopySourceVersionId:{location:"header",sentAs:"copy-source-version-id",withPrefix:!0},ETag:{location:"xml",sentAs:"ETag"},LastModified:{location:"xml",sentAs:"LastModified"}},ut)},RestoreObject:{httpMethod:"POST",urlPath:"restore",data:{xmlRoot:"RestoreRequest",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"},Days:{location:"xml",sentAs:"Days"},Tier:{wrapper:"GlacierJobParameters",location:"xml",sentAs:"Tier"}}},GetObjectMetadata:{httpMethod:"HEAD",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"},Origin:{location:"header",sentAs:"Origin"},RequestHeader:{location:"header",sentAs:"Access-Control-Request-Headers"},SseC:{location:"header",sentAs:"server-side-encryption-customer-algorithm",withPrefix:!0},SseCKey:{location:"header",sentAs:"server-side-encryption-customer-key",type:"password",withPrefix:!0}}},GetObjectMetadataOutput:{parameters:sr(sr({ObjectLockMode:{location:"header",sentAs:"object-lock-mode",withPrefix:!0},ObjectLockRetainUntilDate:{location:"header",sentAs:"object-lock-retain-until-date",withPrefix:!0},Expiration:{location:"header",sentAs:"expiration",withPrefix:!0},LastModified:{location:"header",sentAs:"Last-Modified"},ContentLength:{location:"header",sentAs:"Content-Length"},ContentType:{location:"header",sentAs:"Content-Type"},ETag:{location:"header",sentAs:"etag"},VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0},Restore:{location:"header",sentAs:"restore",withPrefix:!0},ObjectType:{location:"header",sentAs:"x-obs-object-type"},NextPosition:{location:"header",sentAs:"x-obs-next-append-position"},AllowOrigin:{location:"header",sentAs:"access-control-allow-origin"},MaxAgeSeconds:{location:"header",sentAs:"access-control-max-age"},ExposeHeader:{location:"header",sentAs:"access-control-expose-headers"},AllowMethod:{location:"header",sentAs:"access-control-allow-methods"},AllowHeader:{location:"header",sentAs:"access-control-allow-headers"}},ut),{},{Metadata:{location:"header",type:"object",sentAs:"meta-",withPrefix:!0},ContentLanguage:{location:"header",sentAs:"Content-Language"},ContentEncoding:{location:"header",sentAs:"Content-Encoding"},CacheControl:{location:"header",sentAs:"Cache-Control"},ContentDisposition:{location:"header",sentAs:"Content-Disposition"},TaggingCount:{location:"header",sentAs:"tagging-count",withPrefix:!0},Expires:{location:"header",sentAs:"Expires"},ReplicationStatus:{location:"header",sentAs:"replication-status",withPrefix:!0}})},SetObjectMetadata:{httpMethod:"PUT",urlPath:"metadata",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"},Origin:{location:"header",sentAs:"Origin"},RequestHeader:{location:"header",sentAs:"Access-Control-Request-Headers"},CacheControl:{location:"header",sentAs:"Cache-Control"},ContentDisposition:{location:"header",sentAs:"Content-Disposition",encodingSafe:' ;/?:@&=+$,"'},ContentLanguage:{location:"header",sentAs:"Content-Language"},ContentEncoding:{location:"header",sentAs:"Content-Encoding"},ContentType:{location:"header",sentAs:"Content-Type"},Tags:{location:"header",sentAs:"tagging",withPrefix:!0},Expires:{location:"header",sentAs:"Expires"},Metadata:{shape:"Sy",location:"header",type:"object",sentAs:"meta-",withPrefix:!0},MetadataDirective:{location:"header",sentAs:"metadata-directive",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0}}},SetObjectMetadataOutput:{parameters:{Expires:{location:"header",sentAs:"Expires"},ContentLength:{location:"header",sentAs:"Content-Length"},ContentType:{location:"header",sentAs:"Content-Type"},ContentLanguage:{location:"header",sentAs:"Content-Language"},CacheControl:{location:"header",sentAs:"Cache-Control"},ContentDisposition:{location:"header",sentAs:"Content-Disposition"},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0,type:"adapter"},Metadata:{location:"header",type:"object",sentAs:"meta-",withPrefix:!0}}},SetObjectAcl:{httpMethod:"PUT",urlPath:"acl",data:{xmlRoot:"AccessControlPolicy"},parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"},ACL:{location:"header",sentAs:"acl",withPrefix:!0,type:"adapter"},Owner:lr,Grants:fr}},SetObjectAclOutput:{parameters:{VersionId:{location:"header",sentAs:"version-id",withPrefix:!0}}},SetObjectObjectLock:{httpMethod:"PUT",urlPath:"retention",data:{xmlRoot:"Retention"},parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"},Mode:{sentAs:"Mode",location:"xml"},RetainUntilDate:{sentAs:"RetainUntilDate",location:"xml"}}},GetObjectAcl:{httpMethod:"GET",urlPath:"acl",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"}}},GetObjectAclOutput:{data:{type:"xml",xmlRoot:"AccessControlPolicy"},parameters:{VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},Owner:lr,Grants:fr}},GetObjectTagging:{httpMethod:"GET",urlPath:"tagging",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"}}},GetObjectTaggingOutput:{data:{type:"xml",xmlRoot:"Tagging"},parameters:{Tags:vr}},SetObjectTagging:{httpMethod:"PUT",urlPath:"tagging",data:{xmlRoot:"Tagging",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"},Tags:vr}},DeleteObjectTagging:{httpMethod:"DELETE",urlPath:"tagging",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"}}},DeleteObject:{httpMethod:"DELETE",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},VersionId:{location:"urlPath",sentAs:"versionId"}}},DeleteObjectOutput:{parameters:{VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},DeleteMarker:{location:"header",sentAs:"delete-marker",withPrefix:!0}}},DeleteObjects:{httpMethod:"POST",urlPath:"delete",data:{xmlRoot:"Delete",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Quiet:{location:"xml",sentAs:"Quiet"},EncodingType:{location:"xml",sentAs:"EncodingType"},Objects:{required:!0,type:"array",location:"xml",sentAs:"Object",items:{type:"object",parameters:{Key:{sentAs:"Key"},VersionId:{sentAs:"VersionId"}}}}}},DeleteObjectsOutput:{data:{type:"xml",xmlRoot:"DeleteResult"},parameters:{EncodingType:{location:"xml",sentAs:"EncodingType"},Deleteds:{type:"array",location:"xml",sentAs:"Deleted",items:{type:"object",parameters:{Key:{decode:!0,sentAs:"Key"},VersionId:{sentAs:"VersionId"},DeleteMarker:{sentAs:"DeleteMarker"},DeleteMarkerVersionId:{sentAs:"DeleteMarkerVersionId"}}}},Errors:{type:"array",location:"xml",sentAs:"Error",items:{type:"object",parameters:{Key:{decode:!0,sentAs:"Key"},VersionId:{sentAs:"VersionId"},Code:{sentAs:"Code"},Message:{sentAs:"Message"}}}}}},InitiateMultipartUpload:{httpMethod:"POST",urlPath:"uploads",parameters:sr({EncodingType:{location:"urlPath",sentAs:"encoding-type"},ObjectLockMode:{location:"header",sentAs:"object-lock-mode",withPrefix:!0},ObjectLockRetainUntailDate:{location:"header",sentAs:"object-lock-retain-until-date",withPrefix:!0},Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},ACL:{location:"header",sentAs:"acl",withPrefix:!0,type:"adapter"},GrantRead:{location:"header",sentAs:"grant-read",withPrefix:!0},GrantReadAcp:{location:"header",sentAs:"grant-read-acp",withPrefix:!0},GrantWriteAcp:{location:"header",sentAs:"grant-write-acp",withPrefix:!0},GrantFullControl:{location:"header",sentAs:"grant-full-control",withPrefix:!0},StorageClass:{location:"header",sentAs:"storage-class",withPrefix:!0,type:"adapter"},Metadata:{type:"object",location:"header",sentAs:"meta-",withPrefix:!0},WebsiteRedirectLocation:{location:"header",sentAs:"website-redirect-location",withPrefix:!0},Tags:{location:"header",sentAs:"tagging",withPrefix:!0},Expires:{location:"header",sentAs:"x-obs-expires",type:"number"},ContentType:{location:"header",sentAs:"Content-Type"},CacheControl:{location:"header",sentAs:"Cache-Control"},ContentDisposition:{location:"header",sentAs:"Content-Disposition",encodingSafe:' ;/?:@&=+$,"'},ContentLanguage:{location:"header",sentAs:"Content-Language"},ContentEncoding:{location:"header",sentAs:"Content-Encoding"}},ut)},InitiateMultipartUploadOutput:{data:{type:"xml",xmlRoot:"InitiateMultipartUploadResult"},parameters:sr({EncodingType:{location:"xml",sentAs:"EncodingType"},Bucket:{location:"xml",sentAs:"Bucket"},Key:{decode:!0,location:"xml",sentAs:"Key"},UploadId:{location:"xml",sentAs:"UploadId"}},ut)},ListMultipartUploads:{httpMethod:"GET",urlPath:"uploads",parameters:{Bucket:{required:!0,location:"uri"},Delimiter:{location:"urlPath",sentAs:"delimiter"},KeyMarker:{location:"urlPath",sentAs:"key-marker"},MaxUploads:{type:"number",location:"urlPath",sentAs:"max-uploads"},Prefix:{location:"urlPath",sentAs:"prefix"},UploadIdMarker:{location:"urlPath",sentAs:"upload-id-marker"},EncodingType:{location:"urlPath",sentAs:"encoding-type"}}},ListMultipartUploadsOutput:{data:{type:"xml",xmlRoot:"ListMultipartUploadsResult"},parameters:{Bucket:{location:"xml",sentAs:"Bucket"},KeyMarker:{decode:!0,location:"xml",sentAs:"KeyMarker"},UploadIdMarker:{location:"xml",sentAs:"UploadIdMarker"},NextKeyMarker:{decode:!0,location:"xml",sentAs:"NextKeyMarker"},Prefix:{decode:!0,location:"xml",sentAs:"Prefix"},Delimiter:{decode:!0,location:"xml",sentAs:"Delimiter"},NextUploadIdMarker:{location:"xml",sentAs:"NextUploadIdMarker"},MaxUploads:{location:"xml",sentAs:"MaxUploads"},IsTruncated:{location:"xml",sentAs:"IsTruncated"},EncodingType:{location:"xml",sentAs:"EncodingType"},Uploads:{type:"array",location:"xml",sentAs:"Upload",items:{type:"object",parameters:{UploadId:{sentAs:"UploadId"},Key:{decode:!0,sentAs:"Key"},Initiated:{sentAs:"Initiated"},StorageClass:{sentAs:"StorageClass"},Owner:lr,Initiator:dr}}},CommonPrefixes:{type:"array",location:"xml",sentAs:"CommonPrefixes",items:{type:"object",parameters:{Prefix:{decode:!0,sentAs:"Prefix"},MTime:{sentAs:"MTime"},InodeNo:{sentAs:"InodeNo"}}}}}},UploadPart:{httpMethod:"PUT",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},PartNumber:{required:!0,type:"number",location:"urlPath",sentAs:"partNumber"},UploadId:{required:!0,location:"urlPath",sentAs:"uploadId"},ContentMD5:{location:"header",sentAs:"Content-MD5"},ContentSHA256:{location:"header",sentAs:"content-sha256",withPrefix:!0},Body:{location:"body"},SourceFile:{type:"srcFile"},Offset:{type:"plain"},PartSize:{type:"plain"},SseC:{location:"header",sentAs:"server-side-encryption-customer-algorithm",withPrefix:!0},SseCKey:{location:"header",sentAs:"server-side-encryption-customer-key",type:"password",withPrefix:!0},ProgressCallback:{type:"plain"}}},UploadPartOutput:{parameters:sr({ETag:{location:"header",sentAs:"etag"}},ut)},ListParts:{httpMethod:"GET",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},UploadId:{required:!0,location:"urlPath",sentAs:"uploadId"},MaxParts:{type:"number",location:"urlPath",sentAs:"max-parts"},PartNumberMarker:{type:"number",location:"urlPath",sentAs:"part-number-marker"},EncodingType:{location:"urlPath",sentAs:"encoding-type"}}},ListPartsOutput:{data:{type:"xml",xmlRoot:"ListPartsResult"},parameters:{Bucket:{location:"xml",sentAs:"Bucket"},Key:{decode:!0,location:"xml",sentAs:"Key"},UploadId:{location:"xml",sentAs:"UploadId"},PartNumberMarker:{location:"xml",sentAs:"PartNumberMarker"},NextPartNumberMarker:{location:"xml",sentAs:"NextPartNumberMarker"},MaxParts:{location:"xml",sentAs:"MaxParts"},IsTruncated:{location:"xml",sentAs:"IsTruncated"},StorageClass:{location:"xml",sentAs:"StorageClass"},EncodingType:{location:"urlPath",sentAs:"EncodingType"},Initiator:dr,Owner:lr,Parts:{type:"array",location:"xml",sentAs:"Part",items:{type:"object",parameters:{PartNumber:{sentAs:"PartNumber"},LastModified:{sentAs:"LastModified"},ETag:{sentAs:"ETag"},Size:{sentAs:"Size"}}}}}},CopyPart:{httpMethod:"PUT",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},PartNumber:{required:!0,location:"urlPath",sentAs:"partNumber",type:"number"},UploadId:{required:!0,location:"urlPath",sentAs:"uploadId"},CopySource:{required:!0,location:"header",sentAs:"copy-source",skipEncoding:!0,withPrefix:!0},CopySourceRange:{location:"header",sentAs:"copy-source-range",withPrefix:!0},SseC:{location:"header",sentAs:"server-side-encryption-customer-algorithm",withPrefix:!0},SseCKey:{location:"header",sentAs:"server-side-encryption-customer-key",type:"password",withPrefix:!0},CopySourceSseC:{location:"header",sentAs:"copy-source-server-side-encryption-customer-algorithm",withPrefix:!0},CopySourceSseCKey:{location:"header",sentAs:"copy-source-server-side-encryption-customer-key",type:"password",withPrefix:!0}}},CopyPartOutput:{data:{type:"xml",xmlRoot:"CopyPartResult"},parameters:sr({LastModified:{location:"xml",sentAs:"LastModified"},ETag:{location:"xml",sentAs:"ETag"}},ut)},AbortMultipartUpload:{httpMethod:"DELETE",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},UploadId:{required:!0,location:"urlPath",sentAs:"uploadId"}}},CompleteMultipartUpload:{httpMethod:"POST",data:{xmlRoot:"CompleteMultipartUpload"},parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},UploadId:{required:!0,location:"urlPath",sentAs:"uploadId"},EncodingType:{location:"urlPath",sentAs:"encoding-type"},Parts:{required:!0,type:"array",location:"xml",sentAs:"Part",items:{type:"object",parameters:{PartNumber:{sentAs:"PartNumber"},ETag:{sentAs:"ETag"}}}},Callback:{location:"header",sentAs:"callback",withPrefix:!0,type:"callback",parameters:{CallbackUrl:{required:!0},CallbackBody:{required:!0},CallbackHost:{},CallbackBodyType:{}}}}},CompleteMultipartUploadOutput:{data:{type:"xml",xmlRoot:"CompleteMultipartUploadResult"},parameters:sr({VersionId:{location:"header",sentAs:"version-id",withPrefix:!0},Location:{location:"xml",sentAs:"Location"},EncodingType:{location:"xml",sentAs:"EncodingType"},Bucket:{location:"xml",sentAs:"Bucket"},Key:{decode:!0,location:"xml",sentAs:"Key"},ETag:{location:"xml",sentAs:"ETag"}},ut),CallbackResponse:{location:"body",sentAs:"CallbackResponseBody"}},GetBucketInventory:{httpMethod:"GET",urlPath:"inventory",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketInventoryOutput:{data:{type:"xml",xmlRoot:"ListInventoryConfiguration"},parameters:{Rules:{type:"array",location:"xml",sentAs:"InventoryConfiguration",items:{type:"object",parameters:{Id:{sentAs:"Id"},IsEnabled:{sentAs:"IsEnabled"},Filter:{type:"object",sentAs:"Filter",parameters:{Prefix:{sentAs:"Prefix"}}},Destination:{type:"object",sentAs:"Destination",parameters:{Format:{sentAs:"Format"},Bucket:{sentAs:"Bucket"},Prefix:{sentAs:"Prefix"}}},Schedule:{type:"object",sentAs:"Schedule",parameters:{Frequency:{sentAs:"Frequency"}}},IncludedObjectVersions:{sentAs:"IncludedObjectVersions"},OptionalFields:{type:"object",location:"xml",sentAs:"OptionalFields",parameters:{Field:{type:"array",sentAs:"Field",items:{type:"string"}}}},LastExportTime:{sentAs:"LastExportTime"}}}}}},SetBucketInventory:{httpMethod:"PUT",urlPath:"inventory",parameters:{Bucket:{required:!0,location:"uri"},Id:{location:"urlPath",sentAs:"id"},InventoryConfiguration:pr}},SetBucketInventoryOutput:{data:{type:"xml",xmlRoot:"InventoryConfiguration"},parameters:{InventoryConfiguration:pr}},DeleteInventory:{httpMethod:"DELETE",urlPath:"inventory",parameters:{Bucket:{required:!0,location:"uri"},Id:{location:"urlPath",sentAs:"id"}}},DeleteInventoryOutput:{data:{type:"xml",xmlRoot:"InventoryConfiguration"},parameters:{InventoryConfiguration:pr}},GetBucketEncryption:{httpMethod:"GET",urlPath:"encryption",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketEncryptionOutput:{data:{type:"xml",xmlRoot:"ServerSideEncryptionConfiguration"},parameters:{Rule:ur}},SetBucketEncryption:{httpMethod:"PUT",urlPath:"encryption",data:{xmlRoot:"ServerSideEncryptionConfiguration"},parameters:{Bucket:{required:!0,location:"uri"},Rule:ur}},SetBucketEncryptionOutput:{data:{type:"xml",xmlRoot:"ServerSideEncryptionConfiguration"},parameters:{Rule:ur}},DeleteBucketEncryption:{httpMethod:"DELETE",urlPath:"encryption",parameters:{Bucket:{required:!0,location:"uri"}}},DeleteBucketEncryptionOutput:{data:{type:"xml",xmlRoot:"ServerSideEncryptionConfiguration"},parameters:{Rule:ur}},GetBucketRequesterPay:{httpMethod:"GET",urlPath:"requestPayment",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketRequesterPayOutput:{data:{type:"xml",xmlRoot:"RequestPaymentConfiguration"},parameters:{Payer:{location:"xml",sentAs:"Payer"}}},SetBucketRequesterPay:{httpMethod:"PUT",urlPath:"requestPayment",data:{xmlRoot:"RequestPaymentConfiguration"},parameters:{Bucket:{required:!0,location:"uri"},Payer:{location:"xml",sentAs:"Payer"}}},SetBucketRequesterPayOutput:{data:{type:"xml",xmlRoot:"RequestPaymentConfiguration"},parameters:{Payer:{location:"xml",sentAs:"Payer"}}},OptionsBucket:{httpMethod:"OPTIONS",parameters:{Bucket:{required:!0,location:"uri"},Origin:{required:!0,location:"header",sentAs:"Origin"},AccessControlRequestMethods:{required:!0,type:"array",location:"header",sentAs:"Access-Control-Request-Method",items:{type:"string"}},AccessControlRequestHeaders:{type:"array",location:"header",sentAs:"Access-Control-Request-Headers",items:{type:"string"}}}},OptionsBucketOutput:{parameters:{AllowOrigin:{location:"header",sentAs:"access-control-allow-origin"},AllowHeader:{location:"header",sentAs:"access-control-allow-headers"},AllowMethod:{location:"header",sentAs:"access-control-allow-methods"},ExposeHeader:{location:"header",sentAs:"access-control-expose-headers"},MaxAgeSeconds:{location:"header",sentAs:"access-control-max-age"}}},OptionsObject:{httpMethod:"OPTIONS",parameters:{Bucket:{required:!0,location:"uri"},Key:{required:!0,location:"uri"},Origin:{required:!0,location:"header",sentAs:"Origin"},AccessControlRequestMethods:{required:!0,type:"array",location:"header",sentAs:"Access-Control-Request-Method",items:{type:"string"}},AccessControlRequestHeaders:{type:"array",location:"header",sentAs:"Access-Control-Request-Headers",items:{type:"string"}}}},OptionsObjectOutput:{parameters:{AllowOrigin:{location:"header",sentAs:"access-control-allow-origin"},AllowHeader:{location:"header",sentAs:"access-control-allow-headers"},AllowMethod:{location:"header",sentAs:"access-control-allow-methods"},ExposeHeader:{location:"header",sentAs:"access-control-expose-headers"},MaxAgeSeconds:{location:"header",sentAs:"access-control-max-age"}}},SetMirrorBackToSource:{httpMethod:"PUT",urlPath:"mirrorBackToSource",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"},Rules:{required:!0,location:"body"}}},SetMirrorBackToSourceOutput:{data:{type:"body"},parameters:{Rules:{location:"body"}}},GetMirrorBackToSource:{httpMethod:"GET",urlPath:"mirrorBackToSource",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"}}},GetMirrorBackToSourceOutput:{data:{type:"body"},parameters:{Rules:{location:"body"}}},deleteMirrorBackToSource:{httpMethod:"DELETE",urlPath:"mirrorBackToSource",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"}}},GetBucketDirectColdAccess:{httpMethod:"GET",urlPath:"directcoldaccess",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketDirectColdAccessOutput:{data:{type:"xml",xmlRoot:"DirectColdAccessConfiguration"},parameters:{Status:{location:"xml",sentAs:"Status"}}},SetBucketDirectColdAccess:{httpMethod:"PUT",urlPath:"directcoldaccess",data:{xmlRoot:"DirectColdAccessConfiguration",md5:!0},parameters:{Bucket:{required:!0,location:"uri"},Status:{required:!0,location:"xml",sentAs:"Status"}}},SetBucketDirectColdAccessOutput:{data:{type:"xml",xmlRoot:"DirectColdAccessConfiguration"},parameters:{Status:{location:"xml",sentAs:"Status"}}},DeleteBucketDirectColdAccess:{httpMethod:"DELETE",urlPath:"directcoldaccess",parameters:{Bucket:{required:!0,location:"uri"}}},DeleteBucketDirectColdAccessOutput:{data:{type:"xml",xmlRoot:"DirectColdAccessConfiguration"},parameters:{Status:{location:"xml",sentAs:"Status"}}},GetBucketCustomDomain:{httpMethod:"GET",urlPath:"customdomain",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketCustomDomainOutput:{data:{type:"xml",xmlRoot:"ListBucketCustomDomainsResult"},parameters:{Domains:{location:"xml",type:"array",sentAs:"Domains",items:{type:"object",parameters:{DomainName:{sentAs:"DomainName"},Value:{sentAs:"CreateTime"},CertificateId:{sentAs:"CertificateId"}}}}}},SetBucketCustomDomain:{httpMethod:"PUT",data:{xmlRoot:"CustomDomainConfiguration",md5:!0},parameters:sr({Bucket:{required:!0,location:"uri"},DomainName:{location:"urlPath",sentAs:"customdomain"}},kt)},DeleteBucketCustomDomain:{httpMethod:"DELETE",parameters:{Bucket:{required:!0,location:"uri"},DomainName:{location:"urlPath",sentAs:"customdomain"}}},GetCDNNotifyConfiguration:{httpMethod:"GET",urlPath:"CDNNotifyConfiguration",parameters:{Bucket:{required:!0,location:"uri"},NotForwardTag:{type:"string",sentAs:"x-obs-not-forward-tag",location:"header"}}},GetCDNNotifyConfigurationOutput:{data:{type:"xml",xmlRoot:"CDNNotifyConfiguration"},parameters:{Domain:lt}},SetCdnNotifyConfiguration:{httpMethod:"PUT",urlPath:"CDNNotifyConfiguration",data:{xmlRoot:"CDNNotifyConfiguration",xmlAllowEmpty:!0},parameters:{Bucket:{required:!0,location:"uri"},NotForwardTag:{type:"string",sentAs:"x-obs-not-forward-tag",location:"header"},Domain:lt}},GetQuota:{httpMethod:"GET",urlPath:"quota"},GetQuotaOutput:{data:{type:"xml",xmlRoot:"MaxBucketNumber"},parameters:{Size:{location:"xml",sentAs:"Number"}}},GetWorkflowTrigger:{httpMethod:"GET",urlPath:"triggerpolicy",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"}}},GetWorkflowTriggerOutput:{data:{type:"body"},parameters:{rules:{location:"body"}}},DeleteWorkflowTrigger:{httpMethod:"DELETE",urlPath:"triggerpolicy",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"}}},CreateWorkflowTrigger:{httpMethod:"PUT",urlPath:"triggerpolicy",parameters:{Bucket:{required:!0,location:"uri"},ApiPath:{location:"uri"},Rule:{required:!0,location:"body"}}},RestoreFailedWorkflowExecution:{httpMethod:"PUT",parameters:{ApiPath:{location:"uri"},Other_parameter:{required:!0,location:"uri",sentAs:"execution_name"},GraphName:{required:!0,location:"urlPath",sentAs:"x-workflow-graph-name"}}},CreateTemplate:{httpMethod:"POST",parameters:{ApiPath:{location:"uri"},Template:{required:!0,location:"body"}}},CreateWorkflow:{httpMethod:"POST",parameters:{ApiPath:{location:"uri"},Other_parameter:{required:!0,location:"uri",sentAs:"graph_name"},Workflow_create:{location:"urlPath",sentAs:"x-workflow-create"},Workflow:{required:!0,location:"body"}}},CreateAuditPolicy:dt,CreateAuditPolicyOutput:ht,GetAuditPolicy:ft,GetAuditPolicyOutput:mt,PutAuditPolicy:yt,PutAuditPolicyOutPut:gt,DeleteAuditPolicy:At,GetAuditResult:bt,GetAuditResultOutput:xt,DeleteWorkflow:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"graph_name"}}},UpdateWorkflow:{httpMethod:"PUT",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"graph_name"},Graph_name:{required:!0,location:"body"}}},GetWorkflowList:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"graph_name_prefix"},XObsLimit:{type:"number",location:"urlPath",sentAs:"x-workflow-limit"},XObsPrefix:{location:"urlPath",sentAs:"x-workflow-prefix"},XObsStart:{type:"number",location:"urlPath",sentAs:"x-workflow-start"}}},GetWorkflowListOutput:{data:{type:"body"},parameters:{workflows:{location:"body"}}},GetWorkflowTemplateList:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"template_name_prefix"},Start:{type:"number",location:"urlPath",sentAs:"x-workflow-start"},Limit:{type:"number",location:"urlPath",sentAs:"x-workflow-limit"},"X-workflow-prefix":{location:"urlPath",sentAs:"x-workflow-prefix"}}},GetWorkflowTemplateListOutput:{data:{type:"body"},parameters:{templates:{location:"body"}}},GetWorkflowInstanceList:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"execution_name_prefix"},Start:{type:"number",location:"urlPath",sentAs:"x-workflow-start"},Limit:{type:"number",location:"urlPath",sentAs:"x-workflow-limit"},Graph_name:{location:"urlPath",sentAs:"x-workflow-graph-name"},State:{location:"urlPath",sentAs:"x-workflow-execution-state"},"X-workflow-prefix":{location:"urlPath",sentAs:"x-workflow-prefix"}}},GetWorkflowInstanceListOutput:{data:{type:"body"},parameters:{instances:{location:"body"}}},DeleteTemplate:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"template_name"}}},GetActionTemplates:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},Other_parameter:{location:"uri",sentAs:"template_name_prefix"},XObsPrefix:{location:"urlPath",sentAs:"x-workflow-prefix"},XObsCategory:{type:"String",location:"urlPath",sentAs:"x-workflow-category"}}},GetActionTemplatesOutput:{data:{type:"body"},parameters:{templates:{location:"body"}}},GetWorkflowAuthorization:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"}}},GetWorkflowAuthorizationOutput:{data:{type:"body"},parameters:{authorization:{location:"body"}}},OpenWorkflowAuthorization:{httpMethod:"POST",parameters:{ApiPath:{location:"uri"}}},CreateOnlineDecom:{httpMethod:"PUT",urlPath:"obscompresspolicy",parameters:{Bucket:{required:!0,location:"uri"},Decom:{required:!0,location:"body"}}},GetOnlineDecom:{httpMethod:"GET",urlPath:"obscompresspolicy",parameters:{Bucket:{required:!0,location:"uri"}}},GetOnlineDecomOutput:{data:{type:"body"},parameters:{Decom:{location:"body"}}},DeleteOnlineDecom:{httpMethod:"DELETE",urlPath:"obscompresspolicy",parameters:{Bucket:{required:!0,location:"uri"}}},GetPublicationTemplates:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name_prefix"},XObsCategory:{location:"urlPath",sentAs:"x-workflow-category"},XObsOtatus:{location:"urlPath",sentAs:"x-workflow-status"},XObsPrefix:{location:"urlPath",sentAs:"x-workflow-prefix"}}},GetPublicationTemplatesOutput:{data:{type:"body"},parameters:{PublishedTemplates:{location:"body"}}},GetPublicationTemplateDetail:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"}}},GetPublicationTemplateDetailOutput:{data:{type:"body"},parameters:{PublishTemplate:{location:"body"}}},GetWorkflowAgreements:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},XWorkflowType:{required:!0,location:"urlPath",sentAs:"x-workflow-type"}}},GetWorkflowAgreementsOutput:{data:{type:"body"},parameters:{authorization:{location:"body"}}},OpenWorkflowAgreements:{httpMethod:"POST",parameters:{ApiPath:{location:"uri"},XWorkflowType:{required:!0,location:"urlPath",sentAs:"x-workflow-type"}}},CreateMyActionTemplate:{httpMethod:"POST",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"},ActionTemplate:{required:!0,location:"body"}}},CreateMyActionTemplateOutput:{data:{type:"body"},parameters:{ActionTemplate:{location:"body"}}},GetMyActionTemplates:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name_prefix"},XObsCategory:{location:"urlPath",sentAs:"x-workflow-category"},XObsOtatus:{location:"urlPath",sentAs:"x-workflow-status"},XObsPrefix:{location:"urlPath",sentAs:"x-workflow-prefix"}}},GetMyActionTemplatesOutput:{data:{type:"body"},parameters:{ActionTemplates:{location:"body"}}},GetMyactiontemplateDetail:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"}}},GetMyactiontemplateDetailOutput:{data:{type:"body"},parameters:{ActionTemplate:{location:"body"}}},UpdateMyActionTemplate:{httpMethod:"PUT",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"},ActionTemplate:{required:!0,location:"body"}}},UpdateMyActionTemplateOutput:{data:{type:"body"},parameters:{ActionTemplate:{location:"body"}}},DeleteMyActionTemplate:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"}}},ForbidMyActionTemplate:{httpMethod:"DELETE",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"},XObsForbid:{location:"urlPath",sentAs:"x-workflow-forbid"}}},UpdatePublicActionTemplate:{httpMethod:"PUT",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name"},PublicAction:{required:!0,location:"body"}}},GetOmPublicActionTemplates:{httpMethod:"GET",parameters:{ApiPath:{location:"uri"},OtherParameter:{location:"uri",sentAs:"template_name_prefix"},XObsCategory:{location:"urlPath",sentAs:"x-workflow-category"},XObsOtatus:{location:"urlPath",sentAs:"x-workflow-status"},XObsPrefix:{location:"urlPath",sentAs:"x-workflow-prefix"}}},GetOmPublicActionTemplatesOutput:{data:{type:"body"},parameters:{Templates:{location:"body"}}},SetBucketAlias:{httpMethod:"PUT",urlPath:"obsbucketalias",data:{xmlRoot:"CreateBucketAlias"},parameters:{Bucket:{required:!0,location:"uri"},BucketList:{location:"xml",type:"object",sentAs:"BucketList",parameters:{Bucket:{location:"xml",type:"array",items:{parameters:{sentAs:"Bucket"}}}}}}},GetBucketAlias:{httpMethod:"GET",urlPath:"obsalias",parameters:{Bucket:{required:!0,location:"uri"}}},GetBucketAliasOutput:{data:{type:"xml",xmlRoot:"AliasList"},parameters:{BucketAlias:{location:"xml",type:"object",sentAs:"BucketAlias",parameters:{Alias:{sentAs:"Alias"},BucketList:{sentAs:"Bucket",location:"xml",type:"array",wrapper:"BucketList",items:{type:"string"}}}}}},DeleteBucketAlias:{httpMethod:"DELETE",urlPath:"obsbucketalias",parameters:{Bucket:{required:!0,location:"uri"}}},BindBucketAlias:{httpMethod:"PUT",urlPath:"obsalias",data:{xmlRoot:"AliasList"},parameters:{Bucket:{required:!0,location:"uri"},Alias:{location:"xml",type:"string",sentAs:"Alias"}}},BindBucketAliasOutput:{data:{xmlRoot:"AliasList"},parameters:{Bucket:{required:!0,location:"uri"},Alias:{location:"xml",type:"string",sentAs:"Alias"}}},UnbindBucketAlias:{httpMethod:"DELETE",urlPath:"obsalias",parameters:{Bucket:{required:!0,location:"uri"}}},ListBucketsAlias:{httpMethod:"GET",urlPath:"obsbucketalias"},ListBucketsAliasOutput:{data:{type:"xml",xmlRoot:"ListBucketAliasResult"},parameters:{BucketAliasList:{location:"xml",sentAs:"BucketAliasList",type:"object",parameters:{BucketAlias:{location:"xml",type:"array",sentAs:"BucketAlias",items:{type:"object",parameters:{Alias:{sentAs:"Alias"},CreationDate:{sentAs:"CreationDate"},BucketList:{location:"xml",type:"object",sentAs:"BucketList",parameters:{Bucket:{location:"xml",type:"array",items:{parameters:{sentAs:"Bucket"}}}}}}}}}},Owner:{location:"xml",sentAs:"Owner",type:"object",parameters:{ID:{sentAs:"ID"}}}}}},wr=n(3784),Sr=n.t(wr,2);function Cr(e){return Cr="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Cr(e)}function Br(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=new Array(t);r<t;r++)o[r]=e[r];return o}var Tr={createHmac:function(e,t){var r=new ke("sha1"===e?"SHA-1":"sha512"===e?"SHA-512":"SHA-256","TEXT");return r.setHMACKey(t,t instanceof ArrayBuffer?"ARRAYBUFFER":"TEXT"),{update:function(e){return r.update(e),this},digest:function(e){return"hex"===e?r.getHMAC("HEX"):"base64"===e?r.getHMAC("B64"):r.getHMAC("ARRAYBUFFER")}}},createHash:function(e){if("md5"===e)return{update:function(e){return this.message?this.message+=e:this.message=e,this},digest:function(e){return"hex"===e?st()(this.message):"base64"===e||"rawbase64"===e?(window.btoa?window.btoa:at.encode)(st()(this.message,!1,!0)):st()(this.message,!1,!0)}};var t=new ke("sha1"===e?"SHA-1":"sha512"===e?"SHA-512":"SHA-256","TEXT");return{update:function(e){return t.update(e),this},digest:function(e){return"hex"===e?t.getHash("HEX"):"base64"===e?t.getHash("B64"):t.getHash("ARRAYBUFFER")}}}},Or="e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",Er=["inventory","acl","backtosource","policy","torrent","logging","location","storageinfo","quota","storageclass","storagepolicy","mirrorbacktosource","requestpayment","versions","versioning","versionid","uploads","uploadid","partnumber","website","notification","replication","lifecycle","deletebucket","delete","cors","restore","tagging","append","position","response-content-type","response-content-language","response-expires","response-cache-control","response-content-disposition","response-content-encoding","x-image-process","x-image-save-object","x-image-save-bucket","x-oss-process","encryption","obsworkflowtriggerpolicy","x-workflow-limit","x-workflow-prefix","x-workflow-start","x-workflow-template-name","x-workflow-graph-name","x-workflow-execution-state","x-workflow-category","x-workflow-prefix","x-workflow-create","directcoldaccess","customdomain","cdnnotifyconfiguration","metadata","dispolicy","obscompresspolicy","template_name","template_name_prefix","x-workflow-status","x-workflow-type","x-workflow-forbid","sfsacl","obsbucketalias","obsalias","rename","name","modify","attname","inventory","truncate","object-lock","retention","x-obs-security-token"],Mr=["content-type","content-md5","content-length","content-language","expires","origin","cache-control","content-disposition","content-encoding","x-default-storage-class","location","date","etag","host","last-modified","content-range","x-reserved","access-control-allow-origin","access-control-allow-headers","access-control-max-age","access-control-allow-methods","access-control-expose-headers","connection","x-obs-location-clustergroup-id"],Rr={"content-length":"ContentLength",date:"Date","x-reserved":"Reserved"},Ir=["STANDARD","WARM","COLD","DEEP_ARCHIVE","INTELLIGENT_TIERING"],jr=["STANDARD","STANDARD_IA","GLACIER","DEEP_ARCHIVE","INTELLIGENT_TIERING"],Dr=["private","public-read","public-read-write","public-read-delivered","public-read-write-delivered"],_r=["private","public-read","public-read-write","authenticated-read","bucket-owner-read","bucket-owner-full-control","log-delivery-write"],Lr=["Everyone","LogDelivery"],qr=["http://acs.amazonaws.com/groups/global/AllUsers","http://acs.amazonaws.com/groups/global/AuthenticatedUsers","http://acs.amazonaws.com/groups/s3/LogDelivery"],Ur=["ObjectCreated","ObjectCreated:*","ObjectCreated:Put","ObjectCreated:Post","ObjectCreated:Copy","ObjectCreated:CompleteMultipartUpload","ObjectRemoved","ObjectRemoved:*","ObjectRemoved:Delete","ObjectRemoved:DeleteMarkerCreated","ObjectChanged:*","ObjectChanged:Rename","ObjectChanged:Truncate","ObjectChanged:Modify"],Gr=["ObjectCreated","s3:ObjectCreated:*","s3:ObjectCreated:Put","s3:ObjectCreated:Post","s3:ObjectCreated:Copy","s3:ObjectCreated:CompleteMultipartUpload","ObjectRemoved","s3:ObjectRemoved:*","s3:ObjectRemoved:Delete","s3:ObjectRemoved:DeleteMarkerCreated","ObjectRemoved:*","ObjectRemoved:Delete","ObjectRemoved:DeleteMarkerCreated","ObjectChanged:*","ObjectChanged:Rename","ObjectChanged:Truncate","ObjectChanged:Modify"],Nr=["CreateBucket","SetBucketAlias","BindBucketAlias","UnbindBucketAlias","DeleteBucketAlias","GetBucketAlias"],Fr="HeadApiVersion",Hr={signature:"obs",headerPrefix:"x-obs-",headerMetaPrefix:"x-obs-meta-",authPrefix:"OBS"},zr={signature:"v2",headerPrefix:"x-amz-",headerMetaPrefix:"x-amz-meta-",authPrefix:"AWS"};function Kr(e,t,r){if(0===(e=String(e)).length)return"";if(r)return e;var o;if(t){o=[];var n,a=function(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=function(e,t){if(e){if("string"==typeof e)return Br(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Br(e,t):void 0}}(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var o=0,n=function(){};return{s:n,n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(e){throw e},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i=!0,s=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return i=e.done,e},e:function(e){s=!0,a=e},f:function(){try{i||null==r.return||r.return()}finally{if(s)throw a}}}}(e);try{for(a.s();!(n=a.n()).done;){var i=n.value;o.push(t.indexOf(i)>=0?i:encodeURIComponent(i))}}catch(e){a.e(e)}finally{a.f()}o=o.join("")}else o=encodeURIComponent(e);return o.replace(/!/g,"%21").replace(/\*/g,"%2A").replace(/'/g,"%27").replace(/\(/g,"%28").replace(/\)/g,"%29")}function Wr(e){return JSON?JSON.stringify(e):""}function Vr(e,t){var r={};for(var o in t)if({}.hasOwnProperty.call(t,o)){var n=String(o).toLowerCase();0===n.indexOf(e)&&(r[n.slice(e.length)]=t[o])}return r}function Qr(e){return"[object Function]"===Object.prototype.toString.call(e)}function Xr(e){return"[object Object]"===Object.prototype.toString.call(e)}function $r(e,t){if("object"===Cr(e))return t(null,e);try{return t(null,ct.parseString(e))}catch(e){return t(e,null)}}function Yr(e){var t=new Date(Date.parse(e)),r=t.getUTCHours(),o=t.getUTCMinutes(),n=t.getUTCSeconds(),a=t.getUTCDate(),i=t.getUTCMonth()+1,s="";return s+=t.getUTCFullYear()+"-",i<10&&(s+="0"),s+=i+"-",a<10&&(s+="0"),s+=a+"T",r<10&&(s+="0"),s+=r+":",o<10&&(s+="0"),s+=o+":",n<10&&(s+="0"),s+(n+"Z")}function Zr(e){var t=new Date(Date.parse(e)),r=t.getUTCHours(),o=t.getUTCMinutes(),n=t.getUTCSeconds(),a=t.getUTCDate(),i=t.getUTCMonth()+1,s="",c="";return s+=t.getUTCFullYear(),i<10&&(s+="0"),s+=i,a<10&&(s+="0"),c+=(s+=a)+"T",r<10&&(c+="0"),c+=r,o<10&&(c+="0"),c+=o,n<10&&(c+="0"),[s,c+=n+"Z"]}function Jr(e){var t=[],r={};for(var o in e)({}).hasOwnProperty.call(e,o)&&(t.push(o.toLowerCase()),r[o.toLowerCase()]=e[o]);t=t.sort();for(var n="",a="",i=0;i<t.length;i++)0!==i&&(n+=";"),n+=t[i],a+=t[i]+":"+r[t[i]]+"\n";return[n,a]}function eo(e,t,r,o){var n=Tr.createHmac("sha256","AWS4"+t).update(e).digest(),a=Tr.createHmac("sha256",n).update(r).digest(),i=Tr.createHmac("sha256",a).update("s3").digest(),s=Tr.createHmac("sha256",i).update("aws4_request").digest();return Tr.createHmac("sha256",s).update(o).digest("hex")}function to(e,t,r,o,n){var a="AWS4-HMAC-SHA256\n";return a+=t+"\n",a+=e+"/"+o+"/s3/aws4_request\n",eo(e,r,o,a+=Tr.createHash("sha256").update(n).digest("hex"))}function ro(e){this.log=e,this.ak=null,this.sk=null,this.securityToken=null,this.isSecure=!0,this.server=null,this.pathStyle=!1,this.signatureContext=null,this.isSignatureNegotiation=!0,this.bucketSignatureCache={},this.region="region",this.port=null,this.timeout=300,this.obsSdkVersion="3.22.3",this.isCname=!1,this.bucketEventEmitters={},this.useRawXhr=!1}ro.prototype.encodeURIWithSafe=Kr,ro.prototype.mimeTypes={"7z":"application/x-7z-compressed",aac:"audio/x-aac",ai:"application/postscript",aif:"audio/x-aiff",asc:"text/plain",asf:"video/x-ms-asf",atom:"application/atom+xml",avi:"video/x-msvideo",bmp:"image/bmp",bz2:"application/x-bzip2",cer:"application/pkix-cert",crl:"application/pkix-crl",crt:"application/x-x509-ca-cert",css:"text/css",csv:"text/csv",cu:"application/cu-seeme",deb:"application/x-debian-package",doc:"application/msword",docx:"application/vnd.openxmlformats-officedocument.wordprocessingml.document",dvi:"application/x-dvi",eot:"application/vnd.ms-fontobject",eps:"application/postscript",epub:"application/epub+zip",etx:"text/x-setext",flac:"audio/flac",flv:"video/x-flv",gif:"image/gif",gz:"application/gzip",htm:"text/html",html:"text/html",ico:"image/x-icon",ics:"text/calendar",ini:"text/plain",iso:"application/x-iso9660-image",jar:"application/java-archive",jpe:"image/jpeg",jpeg:"image/jpeg",jpg:"image/jpeg",js:"text/javascript",json:"application/json",latex:"application/x-latex",log:"text/plain",m4a:"audio/mp4",m4v:"video/mp4",mid:"audio/midi",midi:"audio/midi",mov:"video/quicktime",mp3:"audio/mpeg",mp4:"video/mp4",mp4a:"audio/mp4",mp4v:"video/mp4",mpe:"video/mpeg",mpeg:"video/mpeg",mpg:"video/mpeg",mpg4:"video/mp4",oga:"audio/ogg",ogg:"audio/ogg",ogv:"video/ogg",ogx:"application/ogg",pbm:"image/x-portable-bitmap",pdf:"application/pdf",pgm:"image/x-portable-graymap",png:"image/png",pnm:"image/x-portable-anymap",ppm:"image/x-portable-pixmap",ppt:"application/vnd.ms-powerpoint",pptx:"application/vnd.openxmlformats-officedocument.presentationml.presentation",ps:"application/postscript",qt:"video/quicktime",rar:"application/x-rar-compressed",ras:"image/x-cmu-raster",rss:"application/rss+xml",rtf:"application/rtf",sgm:"text/sgml",sgml:"text/sgml",svg:"image/svg+xml",swf:"application/x-shockwave-flash",tar:"application/x-tar",tif:"image/tiff",tiff:"image/tiff",torrent:"application/x-bittorrent",ttf:"application/x-font-ttf",txt:"text/plain",wav:"audio/x-wav",webm:"video/webm",wma:"audio/x-ms-wma",wmv:"video/x-ms-wmv",woff:"application/x-font-woff",wsdl:"application/wsdl+xml",xbm:"image/x-xbitmap",xls:"application/vnd.ms-excel",xlsx:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",xml:"application/xml",xpm:"image/x-xpixmap",xwd:"image/x-xwindowdump",yaml:"text/yaml",yml:"text/yaml",zip:"application/zip"},ro.prototype.refresh=function(e,t,r){this.ak=e?String(e).trim():null,this.sk=t?String(t).trim():null,this.securityToken=r?String(r).trim():null},ro.prototype.initFactory=function(e,t,r,o,n,a,i,s,c,l,u,p,d,h,f,m,y){if(this.refresh(e,t,l),this.urlPrefix=d||"",this.regionDomains=h||null,this.setRequestHeaderHook=f||null,this.checkAlgorithm=wr.ContentMD5,"string"==typeof y&&"sha256"===y.toLowerCase()&&(this.checkAlgorithm=wr.ContentSHA256),!o)throw new Error("Server is not set");0===(o=String(o).trim()).indexOf("https://")?(o=o.slice(8),r=!0):0===o.indexOf("http://")&&(o=o.slice(7),r=!1);for(var g=o.lastIndexOf("/");g>=0;)g=(o=o.slice(0,g)).lastIndexOf("/");(g=o.indexOf(":"))>=0&&(s=o.slice(g+1),o=o.slice(0,g)),this.server=o,/^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$/.test(this.server)&&(n=!0),void 0!==r&&(this.isSecure=r),void 0!==n&&(this.pathStyle=n),a=void 0!==a?String(a).trim().toLowerCase():"obs",void 0!==u&&(this.isSignatureNegotiation=u),this.isCname=p,(this.pathStyle||this.isCname)&&(this.isSignatureNegotiation=!1,"obs"===a&&(a="v2")),this.signatureContext="obs"===a?Hr:zr,void 0!==i&&(this.region=String(i)),this.port=s?parseInt(s,10):this.isSecure?443:80,void 0!==c&&(this.timeout=parseInt(c,10)),void 0!==m&&(this.useRawXhr=m)},ro.prototype.SseKmsAdapter=function(e,t){e=e||"";var r=(e=String(e)).indexOf("aws:");return"obs"===t.signature?0===r?e.slice(4):e:0===r?e:"aws:"+e},ro.prototype.SseModeAdapter=function(e,t){e=e||"";var r=(e=String(e)).indexOf("aws:");return"obs"===t.signature?0===r?e.slice(4):e:0===r?e:"aws:"+e},ro.prototype.BucketAdapter=function(e,t){e=e||"";var r=(e=String(e)).indexOf("arn:aws:s3:::");return"obs"===t.signature?0===r?e.slice(13):e:0===r?e:"arn:aws:s3:::"+e},ro.prototype.EventAdapter=function(e,t){return e=e||"",e=String(e),"obs"===t.signature?Ur.indexOf(e)>=0?e:Gr.indexOf(e)>=0?e.substring(3):"":Gr.indexOf(e)>=0?e:Ur.indexOf(e)>=0?"s3:"+e:""},ro.prototype.EventsAdapter=function(e,t){return this.EventAdapter(e,t)},ro.prototype.URIAdapter=function(e,t){return e=e||"",e=String(e),"obs"===t.signature?Lr.indexOf(e)>=0?e:"AllUsers"===e||"http://acs.amazonaws.com/groups/global/AllUsers"===e?"Everyone":"":qr.indexOf(e)>=0?e:"Everyone"===e||"AllUsers"===e?"http://acs.amazonaws.com/groups/global/AllUsers":"AuthenticatedUsers"===e?"http://acs.amazonaws.com/groups/global/AuthenticatedUsers":"LogDelivery"===e?"http://acs.amazonaws.com/groups/s3/LogDelivery":""},ro.prototype.StorageClassAdapter=function(e,t){return e=e||"",e=String(e).toUpperCase(),"obs"===t.signature?Ir.indexOf(e)>=0?e:"STANDARD_IA"===e?"WARM":"GLACIER"===e?"COLD":"":jr.indexOf(e)>=0?e:"WARM"===e?"STANDARD_IA":"COLD"===e?"GLACIER":""},ro.prototype.ACLAdapter=function(e,t){return e=e||"",e=String(e).toLowerCase(),"obs"===t.signature?Dr.indexOf(e)>=0?e:"":("public-read-delivered"===e?e="public-read":"public-read-write-delivered"===e&&(e="public-read-write"),_r.indexOf(e)>=0?e:"")},ro.prototype.doExec=function(e,t,r){var o=this.makeParam(e,t);if("err"in o)return r(o.err,null);this.sendRequest(e,o,r)},ro.prototype.doNegotiation=function(e,t,r,o,n,a){var i=null,s=this;if(n&&t.Bucket){var c=this.bucketSignatureCache[t.Bucket];if(c&&c.signatureContext&&c.expireTime>(new Date).getTime()){t.signatureContext=c.signatureContext;var l=this.makeParam(e,t);return"err"in l?r(l.err,null):(l.signatureContext=c.signatureContext,this.sendRequest(e,l,r))}if((i=this.bucketEventEmitters[t.Bucket])||(i={s:0,n:function(){for(;this.e&&this.e.length>0;)this.e.shift()()}},this.bucketEventEmitters[t.Bucket]=i),i.s)return void i.e.push((function(){s.doNegotiation(e,t,r,o,n,a)}));i.e=[],i.s=1}this.doExec(Fr,o?{Bucket:t.Bucket,hasRegion:t.hasRegion}:{},(function(n,c){if(n)return r(n,null),void(i&&(i.s=0,i.n()));if(o&&404===c.CommonMsg.Status||c.CommonMsg.Status>=500)return r(n,c),void(i&&(i.s=0,i.n()));var l=zr;c.CommonMsg.Status<300&&c.InterfaceResult&&c.InterfaceResult.ApiVersion>="3.0"&&(l=Hr),a&&(s.bucketSignatureCache[t.Bucket]={signatureContext:l,expireTime:(new Date).getTime()+15+60*Math.ceil(5*Math.random())*1e3}),i&&(i.s=0,i.n()),t.signatureContext=l;var u=s.makeParam(e,t);if("err"in u)return r(u.err,null);u.signatureContext=l,s.sendRequest(e,u,r)}))},ro.prototype.exec=function(e,t,r){var o=this;o.isSignatureNegotiation&&e!==Fr?"ListBuckets"===e?o.doNegotiation(e,t,r,!1,!1,!1):Nr.indexOf(e)>-1?o.doNegotiation(e,t,(function(n,a){if(!n&&400===a.CommonMsg.Status&&"Unsupported Authorization Type"===a.CommonMsg.Message&&t.signatureContext&&"v2"===t.signatureContext.signature){t.signatureContext=zr;var i=o.makeParam(e,t);return"err"in i?r(i.err,null):(i.signatureContext=t.signatureContext,void o.sendRequest(e,i,r))}r(n,a)}),!1,!0,!1):o.doNegotiation(e,t,r,!0,!0,!0):o.doExec(e,t,r)},ro.prototype.sliceBlob=function(e,t,r,o){return o=o||e.type,e.mozSlice?e.mozSlice(t,r,o):e.webkitSlice?e.webkitSlice(t,r,o):e.slice(t,r,o)},ro.prototype.toXml=function(e,t,r,o,n){var a="";if(null!==r)return a+this.buildXml(e,t,r,o,n);for(var i in t)if(i in e){var s=t[i].sentAs||i;a+=this.buildXml(e,t[i],i,s,n)}return a},ro.prototype.buildXml=function(e,t,r,o,n){var a="",i=t.type;if("array"===i)for(var s=0;s<e[r].length;s++)if("object"===t.items.type){if(!e[r][s])return a;var c=this.toXml(e[r][s],t.items.parameters,null,null,n);""!==c&&(a+="<"+o+">"+c+"</"+o+">")}else"adapter"===t.items.type?a+="<"+o+">"+String(this[r+"Adapter"](e[r][s],n)).replace(/&/g,"&amp;").replace(/'/g,"&apos;").replace(/"/g,"&quot;")+"</"+o+">":"array"!==t.items.type&&(a+="<"+o+">"+String(e[r][s]).replace(/&/g,"&amp;").replace(/'/g,"&apos;").replace(/"/g,"&quot;")+"</"+o+">");else if("object"===i){if(!e[r])return a;var l=this.toXml(e[r],t.parameters,null,null,n);""!==l&&(a+="<"+o,"data"in t&&("xsiNamespace"in t.data&&(a+=' xmlns:xsi="'+t.data.xsiNamespace+'"'),"xsiType"in t.data&&(a+=' xsi:type="'+e[r][t.data.xsiType]+'"')),a+=">",a+=l+"</"+o+">")}else"adapter"===i?a+="<"+o+">"+String(this[r+"Adapter"](e[r],n)).replace(/&/g,"&amp;").replace(/'/g,"&apos;").replace(/"/g,"&quot;")+"</"+o+">":"ignore"!==i&&(a+="<"+o+">"+String(e[r]).replace(/&/g,"&amp;").replace(/'/g,"&apos;").replace(/"/g,"&quot;")+"</"+o+">");if(a&&t.wrapper){var u=t.wrapper;a="<"+u+">"+a+"</"+u+">"}return a},ro.prototype.jsonToObject=function(e,t,r,o){var n={};if(null!==r)this.buildObject(e,t,r,n,o);else for(var a in e)({}).hasOwnProperty.call(e,a)&&this.buildObject(e,t,a,n,o);return n},ro.prototype.buildObject=function(e,t,r,o,n){var a=function(t){return void 0===t?"":t&&e[r].decode&&n?decodeURIComponent(t.replace(/\+/g,"%20")):t};if(Xr(t)){var i=!0,s=e[r].wrapper;if(s&&s in t&&(i=Xr(t=t[s])),i){var c=e[r].sentAs||r;if(c in t)if("object"===e[r].type)o[r]=this.jsonToObject(e[r].parameters,t[c],null,n);else if("array"===e[r].type){var l=[];if(function(e){return"[object Array]"===Object.prototype.toString.call(e)}(t[c]))for(var u=0;u<t[c].length;u++)l[u]="object"===e[r].items.type?this.jsonToObject(e[r].items.parameters,t[c][u],null,n):a(t[c][u]["#text"]);else l[0]="object"===e[r].items.type?this.jsonToObject(e[r].items.parameters,t[c],null,n):a(t[c]["#text"]||"");o[r]=l}else o[r]=a(t[c]["#text"])}}void 0===o[r]&&("object"===e[r].type?o[r]=e[r].parameters?this.jsonToObject(e[r].parameters,null,null,n):{}:"array"===e[r].type&&(o[r]=[]))},ro.prototype.makeParam=function(e,t){var r=t.signatureContext||this.signatureContext,o="obs"===r.signature?Zt[e]:kr[e],n=o.httpMethod,a="/",i="",s="",c={},l={};for(var u in l.$requestParam=t,"urlPath"in o&&(i+="?",i+=o.urlPath),o.parameters)if({}.hasOwnProperty.call(o.parameters,u)){var p=o.parameters[u];if("Bucket"===u&&this.isCname)continue;var d=t[u];if("callback"===p.type&&void 0===d&&p.parameters&&(void 0!==t.CallbackUrl||void 0!==t.CallbackBody)){d={};for(var h=0,f=Object.keys(p.parameters);h<f.length;h++){var m=f[h],y=p.parameters[m],g=t[m];if(y.required&&(null==g||"[object String]"===Object.prototype.toString.call(g)&&""===g))return l.err=m+" is a required element!",this.log.runLog("error",e,l.err),l;d[m.slice(0,1).toLowerCase()+m.slice(1)]=g}}if(p.required&&(null==d||"[object String]"===Object.prototype.toString.call(d)&&""===d))return l.err=u+" is a required element!",this.log.runLog("error",e,l.err),l;if(null!=d){if("srcFile"===p.type||"dstFile"===p.type){l[p.type]=d;continue}"plain"===p.type&&(l[u]=d);var A=p.sentAs||u;if(p.withPrefix&&(A=r.headerPrefix+A),"uri"===p.location)"/"!==a&&(a+="/"),a+=d;else if("header"===p.location){var b=p.encodingSafe||" ;/?:@&=+$,";if("object"===p.type){if(r.headerMetaPrefix===A)for(var x in d)if({}.hasOwnProperty.call(d,x)){var v=d[x];c[0===(x=String(x).trim().toLowerCase()).indexOf(A)?x:A+x]=Kr(v,b)}}else if("array"===p.type){var P=[];for(var k in d)({}).hasOwnProperty.call(d,k)&&(P[k]=Kr(d[k],b));c[A]=P}else if("password"===p.type){var w=window.btoa?window.btoa:at.encode;c[A]=w(d),c[p.pwdSentAs||A+"-MD5"]=this.rawBufMD5(d)}else if("number"===p.type&&Number(d))c[A]=Kr(String(d),b);else if("boolean"===p.type)c[A]=Kr(d?"true":"false",b);else if("callback"===p.type)c[A]=at.encode(JSON.stringify(d));else if("adapter"===p.type){var S=this[u+"Adapter"](d,r);S&&(c[A]=Kr(String(S),b))}else c[A]=Kr(String(d),b,p.skipEncoding)}else if("urlPath"===p.location){var C=""===i?"?":"&",B=d;("number"!==p.type||"number"===p.type&&Number(B)>=0)&&(i+=C+Kr(A,"/")+"="+Kr(String(B),"/"))}else if("xml"===p.location){var T=this.toXml(t,p,u,A,r);T&&(s+=T)}else"body"===p.location&&(s=d)}}var O="file"===l.dstFile;if("Content-Type"in c||O||(c["Content-Type"]="binary/octet-stream"),"data"in o&&"xmlRoot"in o.data&&(s||o.data.xmlAllowEmpty)){var E=o.data.xmlRoot;s="<"+E+">"+s+"</"+E+">",c["Content-Type"]="application/xml"}if(O&&(l.rawUri=a),c.Host=this.server+(80===this.port||443===this.port?"":":"+this.port),!this.pathStyle&&!this.isCname){var M=a.split("/");if(M.length>=2&&M[1]){c.Host=M[1]+"."+c.Host;var R=a.replace(M[1],"");0===R.indexOf("//")&&(R=R.slice(1)),"v4"===r.signature?a=R:"/"===R&&(a+="/"),l.requestUri=Kr(R,"/")}}if(l.method=n,l.uri=Kr(a,"/"),l.urlPath=i,s&&(o.data&&o.data.md5&&(this.checkAlgorithm===wr.ContentSHA256?c["".concat(r.headerPrefix).concat(wr.ContentSHA256.toLowerCase())]=this.bufSHA256(s,"hex"):c[wr.ContentMD5]=this.bufMD5(s),c["Content-Length"]=0===s.length?"0":String(s.length)),l.xml=s,this.log.runLog("debug",e,"request content:"+s)),l.headers=c,"srcFile"in l&&(l.srcFile instanceof window.File||l.srcFile instanceof window.Blob)){var I=l.srcFile.size;if("Content-Length"in l.headers||"PartSize"in l||"Offset"in l){var j,D=l.Offset;D=D&&D>=0&&D<I?D:0,j=(j="PartSize"in l?l.PartSize:"Content-Length"in l.headers?parseInt(l.headers["Content-Length"],10):I)&&j>0&&j<=I-D?j:I-D,l.PartSize=j,l.Offset=D,l.headers["Content-Length"]=String(l.PartSize)}}return l},ro.prototype.parseCommonHeaders=function(e,t,r){for(var o in Rr)({}).hasOwnProperty.call(Rr,o)&&(e.InterfaceResult[Rr[o]]=t[o]);e.InterfaceResult.RequestId=t[r.headerPrefix+"request-id"],e.InterfaceResult.Id2=t[r.headerPrefix+"id-2"],e.CommonMsg.RequestId=e.InterfaceResult.RequestId,e.CommonMsg.Id2=e.InterfaceResult.Id2},ro.prototype.contrustCommonMsg=function(e,t,r,o){for(var n in e.InterfaceResult={},this.parseCommonHeaders(e,r,o),t)if("header"===t[n].location){var a=t[n].sentAs||n;if(t[n].withPrefix&&(a=o.headerPrefix+a),"object"===t[n].type)e.InterfaceResult[n]=Vr(a,r);else{var i=null;a in r?i=r[a]:a.toLowerCase()in r&&(i=r[a.toLowerCase()]),null!==i&&(e.InterfaceResult[n]=i)}}},ro.prototype.getRequest=function(e,t,r,o,n,a){var i=this.regionDomains,s={},c=this.log,l="obs"===r.signature?Zt[e+"Output"]:kr[e+"Output"],u=(l=l||{}).parameters||{};s.CommonMsg={Status:t.status,Code:"",Message:"",HostId:"",RequestId:"",InterfaceResult:null};var p=t.headers,d=Wr(p);c.runLog("info",e,"get response start, statusCode:"+t.status),c.runLog("debug",e,"response msg :statusCode:"+t.status+", headers:"+d);var h=function(){var t="Status:"+s.CommonMsg.Status+", Code:"+s.CommonMsg.Code+", Message:"+s.CommonMsg.Message;c.runLog("debug",e,"exec interface "+e+" finish, "+t),a(null,s)};if(t.status>=300&&t.status<400&&304!==t.status&&o<=5){var f=p.location||p.Location;if(f){var m="http code is 3xx, need to redirect to "+f;c.runLog("warn",e,m);var y=new Error("redirect");return y.location=f,y.bucketLocation=p["x-amz-bucket-region"]||p["x-obs-bucket-region"],a(y)}var g=p["x-amz-bucket-region"]||p["x-obs-bucket-location"];if(g&&i[g]){var A=(this.isSecure?"https://":"http://")+i[g];Qr(this.setRequestHeaderHook)&&this.setRequestHeaderHook(p,n,e,i[g]);var b="get redirect code 3xx, need to redirect to"+A;c.runLog("error",e,b);var x=new Error("redirect");return x.location=A,a(x)}c.runLog("error",e,"get redirect code 3xx, but no location in headers")}if(t.status<300){var v=t.data;this.contrustCommonMsg(s,u,p,r);var P="Status: "+s.CommonMsg.Status+", headers: "+d;if(v&&(P+="body length: "+v.length,c.runLog("debug",e,"response body length:"+v.length)),c.runLog("debug",e,P),v&&"data"in l){if(n.CallbackUrl&&l.CallbackResponse)return s.InterfaceResult[l.CallbackResponse.sentAs]=v,void h();if("xml"===l.data.type){var k=this;return $r(v,(function(t,r){if(t)return c.runLog("error",e,"change xml to json err ["+Wr(t)+"]"),a(t,null);var o=r;l.data.xmlRoot&&l.data.xmlRoot in o&&(o=r[l.data.xmlRoot]);var n=!!o.EncodingType;if(Xr(o))for(var i in u)"xml"===u[i].location&&(s.InterfaceResult[i]=k.jsonToObject(u,o,i,n)[i]);h()}))}if("body"===l.data.type)for(var w in u)if("body"===u[w].location){s.InterfaceResult[w]=v;break}}return h()}var S=t.data,C="Status: "+s.CommonMsg.Status+", headers: "+d;return""!==S&&(C+="body: "+S,c.runLog("debug",e,"response body :"+S)),s.CommonMsg.RequestId=p[r.headerPrefix+"request-id"],s.CommonMsg.Id2=p[r.headerPrefix+"id2"],s.CommonMsg.Indicator=p["x-reserved-indicator"],c.runLog("info",e,"request finished with request id:"+s.CommonMsg.RequestId),c.runLog("debug",e,C),S?$r(S,(function(t,r){if(t)c.runLog("error",e,"change xml to json err ["+Wr(t)+"]"),s.CommonMsg.Message=t.message;else if(r){if("Error"in r){var o=r.Error;for(var n in o)o[n]&&o[n]["#text"]&&(s.CommonMsg[n]=o[n]["#text"])}else{var a=r;"code"in a&&(s.CommonMsg.Code=a.code),"message"in a&&(s.CommonMsg.Message=a.message),"hostId"in a&&(s.CommonMsg.HostId=a.hostId),"request_id"in a&&a.request_id&&(s.CommonMsg.RequestId=a.request_id)}c.runLog("error",e,"request error with error code:"+s.CommonMsg.Code+", error message:"+s.CommonMsg.Message+", request id:"+s.CommonMsg.RequestId)}h()})):h()},ro.prototype.makeRequest=function(e,t,r,n){var a=this.log,i=t.xml||null,s=t.signatureContext||this.signatureContext;if(delete t.headers.Authorization,"file"===t.dstFile){var c={};if(t.urlPath)for(var l=t.urlPath.slice(1).split("&"),u=0;u<l.length;u++)if(-1===l[u].indexOf("="))c[l[u]]="";else{var p=l[u].split("=");c[p[0]]=p[1]}var d=t.rawUri.split("/")[1],h=t.rawUri.slice(("/"+d+"/").length);this.isCname&&(h=t.rawUri.slice(1),d="");var f={CommonMsg:{Status:0,Code:"",Message:"",HostId:""},InterfaceResult:{}},m=("obs"===s.signature?Zt[e+"Output"]:kr[e+"Output"]).parameters;for(var y in m)if("body"===m[y].location){f.InterfaceResult[y]=this.createSignedUrlSync({Method:t.method,Bucket:d,Key:h,Expires:3600,Headers:t.headers,QueryParams:c,signatureContext:s});break}return n(null,f)}var g,A=t.$requestParam.RequestDate,b=Object.prototype.toString.call(A);if("[object Date]"===b)g=A;else if("[object String]"===b)try{(g=new Date).setTime(Date.parse(A))}catch(e){}g||(g=new Date);var x=g.toUTCString(),v="v4"===s.signature.toLowerCase();t.headers[s.headerPrefix+"date"]=v?Zr(x)[1]:x;var P=(t.requestUri?t.requestUri:t.uri)+t.urlPath;this.ak&&this.sk&&e!==Fr&&(this.securityToken&&(t.headers[s.headerPrefix+"security-token"]=this.securityToken),v?this.v4Auth(t,e,s):this.doAuth(t,e,s));var k=t.headers;Qr(this.setRequestHeaderHook)&&this.setRequestHeaderHook(k,t.$requestParam,e);var w=k.Host,S=t.method,C={};for(var B in k)({}).hasOwnProperty.call(k,B)&&(C[B]=k[B]);C.Authorization="****";var T="method:"+S+", path:"+P+"headers:"+Wr(C);i&&(T+="body:"+i),a.runLog("info",e,"prepare request parameters ok,then Send request to service start"),a.runLog("debug",e,"request msg:"+T);var O=t.protocol?0===t.protocol.toLowerCase().indexOf("https"):this.isSecure,E=t.port||this.port;delete k.Host,delete k["Content-Length"];var M="text";!t.dstFile||"file"===t.dstFile||"arraybuffer"!==t.dstFile&&"blob"!==t.dstFile||(M=String(t.dstFile));var R=g.getTime(),I=this,j=function(t){try{var r=Wr(t);a.runLog("error",e,"Send request to service error ["+r+"]")}catch(r){t.toString&&a.runLog("error",e,"Send request to service error ["+t.toString()+"]")}a.runLog("info",e,"http cost "+((new Date).getTime()-R)+" ms"),n(t,null)};if(this.useRawXhr){var D=null;try{D=new XMLHttpRequest}catch(e){try{D=new ActiveXObject("Msxml2.XMLHTTP")}catch(e){try{D=new ActiveXObject("Microsoft.XMLHTTP")}catch(e){}}}if(null===D)return n(new Error("XHR is not available"),null);if(t.srcFile){if(!(t.srcFile instanceof window.File||t.srcFile instanceof window.Blob))return n(new Error("source file must be an instance of window.File or window.Blob"),null);try{var _=t.srcFile;if(t.Offset>=0&&t.PartSize>0)_=this.sliceBlob(_,t.Offset,t.Offset+t.PartSize);else if("ContentLength"in t){var L=parseInt(t.ContentLength,10);L>0&&(_=this.sliceBlob(_,0,L))}i=_}catch(e){return n(e)}}for(var q in D.open(S,(O?"https://"+this.urlPrefix+w:"http://"+this.urlPrefix+w)+P),D.withCredentials=!1,k)({}).hasOwnProperty.call(k,q)&&D.setRequestHeader(q,k[q]);D.timeout=1e3*I.timeout,D.responseType=M,t.$requestParam.cancelHook=function(){D.abort()},D.onreadystatechange=function(){if(4===D.readyState&&D.status>=200){a.runLog("info",e,"http cost "+((new Date).getTime()-R)+" ms");for(var o=D.getAllResponseHeaders().trim().split(/[\r\n]+/),i={},c=0;c<o.length;c++){var l=o[c].split(": "),u=l.shift(),p=l.join(": ");i[u.toLowerCase()]=p}var d=D.response;d||""!==M&&"text"!==M||(d=D.responseText);var h={status:D.status,headers:i,data:d};I.getRequest(e,h,s,r,t.$requestParam,n)}};var U=!1,G=function(e){U||(U=!0,j(e))};D.ontimeout=function(){G(new Error("timeout of "+D.timeout+"ms exceed"))},D.onerror=function(){G(new Error("Network Error"))},D.onabort=function(){G(new Error("Cancel"))},D.upload&&(D.upload.ontimeout=function(){G(new Error("timeout of "+D.timeout+"ms exceed"))},D.upload.onerror=function(){G(new Error("Network Error"))},D.upload.onabort=function(e){G(new Error("Cancel"))}),Qr(t.ProgressCallback)&&("GET"!==S&&D.upload?"PUT"!==S&&"POST"!==S||(D.upload.onprogress=function(e){e.lengthComputable&&t.ProgressCallback(e.loaded,e.total,((new Date).getTime()-R)/1e3)}):D.onprogress=function(e){e.lengthComputable&&t.ProgressCallback(e.loaded,e.total,((new Date).getTime()-R)/1e3)}),D.send(i)}else{var N=null,F=null;if(Qr(t.ProgressCallback)){var H=function(e){e.lengthComputable&&t.ProgressCallback(e.loaded,e.total,((new Date).getTime()-R)/1e3)};"GET"===S?F=H:"PUT"!==S&&"POST"!==S||(N=H)}var z=":"+E;w.indexOf(":")>=0&&(z="");var K="",W=O?"https://":"http://";if(this.urlPrefix&&Qr(this.setRequestHeaderHook)&&"UploadPart"!==e){var V=!0;(t.$requestParam.hasRegion||t.$requestParam.redirectRegion)&&(V=!1);var Q="";5443===E&&(Q="-5443"),V?t.$requestParam.Bucket?(-1!==t.$requestParam.Bucket.indexOf(".")&&(K=W+this.urlPrefix+"/bucket"+Q),K=W+this.urlPrefix+"/bucket"+Q):K="/"===P.split("?")[0]?W+this.urlPrefix+Q:W+this.urlPrefix+"/place"+Q:K=t.$requestParam.Bucket?W+this.urlPrefix+"/region-bucket"+Q:W+this.urlPrefix+"/region"+Q}else K=W+w+z;var X={method:S,url:K+P,withCredentials:!1,headers:k,validateStatus:function(e){return e>=200},maxRedirects:0,responseType:M,data:i,timeout:1e3*this.timeout,onUploadProgress:N,onDownloadProgress:F,cancelToken:new(o().CancelToken)((function(e){t.$requestParam.cancelHook=e}))};if(t.srcFile){if(!(t.srcFile instanceof window.File||t.srcFile instanceof window.Blob))return n(new Error("source file must be an instance of window.File or window.Blob"),null);var $=t.srcFile;try{if(t.Offset>=0&&t.PartSize>0)$=this.sliceBlob($,t.Offset,t.Offset+t.PartSize);else if("ContentLength"in t){var Y=parseInt(t.ContentLength,10);Y>0&&($=this.sliceBlob($,0,Y))}}catch(e){return n(e)}X.data=$}o().request(X).then((function(o){a.runLog("info",e,"http cost "+((new Date).getTime()-R)+" ms"),I.getRequest(e,o,s,r,t.$requestParam,n)})).catch((function(e){j(e)}))}},ro.prototype.sendRequest=function(e,r,o,n){void 0===n&&(n=1);var a=!1;n<=r.$requestParam.maxPartRetryCount&&(a=!0);var i=r.headers.Host,s=this;s.makeRequest(e,r,n,(function(c,l){if(c&&"redirect"===c.message){var u=function(e){var r=t().parse(e);return{hostname:r.hostname,port:r.port,host:r.hostname,protocol:r.protocol?r.protocol+":":"",query:r.query,path:r.path+(r.query?"?"+r.query:""),pathname:r.path,search:r.query?"?"+r.query:""}}(c.location);c.bucketLocation&&-1!==u.hostname.indexOf(r.$requestParam.Bucket)&&(r.$requestParam.redirectRegion=c.bucketLocation),r.headers.Host=u.hostname,r.protocol=u.protocol,r.port=u.port||(r.protocol&&0===r.protocol.toLowerCase().indexOf("https")?443:80),s.sendRequest(e,r,o,n+1)}else"UploadPart"===e&&a&&(c||l.CommonMsg.Status>300)?(r.headers.Host=i,s.sendRequest(e,r,o,n+1)):o(c,l)}))},ro.prototype.doAuth=function(e,t,r){for(var o=["Content-MD5","Content-Type"],n=e.method+"\n",a=0;a<o.length;a++)o[a]in e.headers&&(n+=e.headers[o[a]]),n+="\n";r.headerPrefix+"date"in e.headers||(n+=e.headers.Date),n+="\n";var i=[];for(var s in e.headers)if({}.hasOwnProperty.call(e.headers,s)){var c=s.toLowerCase();0===c.indexOf(r.headerPrefix)&&i.push({key:c,value:e.headers[s]})}i=i.sort((function(e,t){return e.key<t.key?-1:e.key>t.key?1:0}));for(var l=0;l<i.length;l++){var u=i[l].key,p=0===u.indexOf(r.headerMetaPrefix)?i[l].value.trim():i[l].value;n+=u+":"+p+"\n"}var d=e.uri;if(this.isCname&&("/"===d?d+=e.headers.Host+"/":0===d.indexOf("/")&&(d="/"+e.headers.Host+d)),e.urlPath){for(var h=e.urlPath.slice(1).split("&").sort(),f="",m=0;m<h.length;m++){var y=h[m].split("="),g=decodeURIComponent(y[0]);Er.indexOf(g.toLowerCase())>=0&&(f+=""===f?"?":"&",f+=g,2===y.length&&y[1]&&(f+="="+decodeURIComponent(y[1])))}d+=f}n+=d,this.log.runLog("debug",t,"stringToSign:"+n),e.headers.Authorization=r.authPrefix+" "+this.ak+":"+Tr.createHmac("sha1",this.sk).update(n).digest("base64")},ro.prototype.v4Auth=function(e,t,r){e.headers[r.headerPrefix+"content-sha256"]=Or;var o=e.headers,n=this.log,a=null,i=null;if(r.headerPrefix+"date"in o)a=(i=o[r.headerPrefix+"date"]).slice(0,i.indexOf("T"));else{var s=Zr(o.Date);a=s[0],i=s[1]}var c=this.ak+"/"+a+"/"+this.region+"/s3/aws4_request",l=Jr(o),u=l[0],p=l[1],d="";if(e.urlPath){var h=e.urlPath.slice(1).split("&");h=h.sort();for(var f=0;f<h.length;f++)d+=h[f],-1===h[f].indexOf("=")&&(d+="="),f!==h.length-1&&(d+="&")}var m=e.method+"\n";m+=e.uri+"\n",m+=d+"\n",m+=p+"\n",m+=u+"\n",m+=Or,n.runLog("debug",t,"canonicalRequest:"+m);var y=to(a,i,this.sk,this.region,m);e.headers.Authorization="AWS4-HMAC-SHA256 Credential="+c+",SignedHeaders="+u+",Signature="+y},ro.prototype.bufMD5=function(e){return Tr.createHash("md5").update(e).digest("base64")},ro.prototype.bufSHA256=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"base64";return Tr.createHash("sha256").update(e).digest(t)},ro.prototype.rawBufMD5=function(e){return Tr.createHash("md5").update(e).digest("rawbase64")},ro.prototype.createSignedUrl=function(e){return"v4"===(e.signatureContext||this.signatureContext).signature.toLowerCase()?this.createV4SignedUrlSync(e):this.createV2SignedUrl(e)},ro.prototype.createSignedUrlSync=function(e){return"v4"===(e.signatureContext||this.signatureContext).signature.toLowerCase()?this.createV4SignedUrlSync(e):this.createV2SignedUrlSync(e)},ro.prototype.getStringToSign=function(e,t){var r=e.isShareFolder,o=e.queryParams,n=e.queryParamsKeys,a=t.signatureContext||this.signatureContext,i=t.Method?String(t.Method):"GET",s=t.Bucket?String(t.Bucket):null,c=t.Key?String(t.Key):null,l=t.Policy?String(t.Policy):null,u=t.Expires?parseInt(t.Expires,10):300;u<0&&(u=300),u=parseInt((new Date).getTime()/1e3,10)+u;var p={};if(t.Headers&&t.Headers instanceof Object&&!(t.Headers instanceof Array))for(var d in t.Headers)({}).hasOwnProperty.call(t.Headers,d)&&(p[d]=t.Headers[d]);var h={};for(var f in p)if({}.hasOwnProperty.call(p,f)){var m=String(f).toLowerCase();("content-type"===m||"content-md5"===m||m.length>a.headerPrefix.length&&m.slice(0,a.headerPrefix.length)===a.headerPrefix)&&(h[m]=p[f])}var y="",g=this.server;this.isCname?y+="/"+g+"/":s&&(y+="/"+s,this.pathStyle||(g=s+"."+g,y+="/")),c&&(y.lastIndexOf("/")!==y.length-1&&(y+="/"),y+=c=Kr(c,"/")),""===y&&(y="/"),n.sort();for(var A=!1,b=[],x=r?"":"/",v=0;v<n.length;v++){var P=n[v],k=o[P];if(P=Kr(P,x),k=Kr(k,x),(!r||"policy"!==P.toLowerCase())&&(Er.indexOf(P.toLowerCase())>=0||0===P.toLowerCase().indexOf(a.headerPrefix))){A=!0;var w=k?P+"="+decodeURIComponent(k):P;b.push(w)}}b=b.join("&"),A&&(b="?"+b),y+=b;var S=[i];if(S.push("\n"),"content-md5"in h&&S.push(h["content-md5"]),S.push("\n"),"content-type"in h&&S.push(h["content-type"]),S.push("\n"),r?S.push(l):S.push(String(u)),S.push("\n"),r)S.push(b);else{var C=[],B=0;for(var T in h)T.length>a.headerPrefix.length&&T.slice(0,a.headerPrefix.length)===a.headerPrefix&&(C[B++]=T);C=C.sort();for(var O=0;O<C.length;O++)S.push(C[O]),S.push(":"),S.push(h[C[O]]),S.push("\n");S.push(y)}return{stringToSign:S.join(""),headers:p,host:g}},ro.prototype.getQueryParams=function(e){var t=e.Policy?String(e.Policy):null,r=e.Prefix?String(e.Prefix):null,o=e.Expires?parseInt(e.Expires,10):300,n={};if(e.QueryParams&&e.QueryParams instanceof Object&&!(e.QueryParams instanceof Array))for(var a=0,i=Object.keys(e.QueryParams);a<i.length;a++){var s=i[a];n[s]=e.QueryParams[s]}var c=e.SpecialParam?String(e.SpecialParam):null,l=e.signatureContext||this.signatureContext,u=function(e,t){if(["storageClass","storagePolicy"].includes(e))return"obs"===t?"storageClass":"v2"===t?"storagePolicy":void 0}(c,l.signature.toLowerCase());u&&(c=u),c&&(n[c]=""),e.AfterStringToSign?n[l.headerPrefix+"security-token"]="${hws:security-token}":this.securityToken&&!n[l.headerPrefix+"security-token"]&&(n[l.headerPrefix+"security-token"]=this.securityToken),o<0&&(o=300),o=parseInt((new Date).getTime()/1e3,10)+o;var p=t&&r;p?(n.Policy=t,n.prefix=r):n.Expires=String(o);var d=[];return Object.keys(n).forEach((function(e){d.push(e)})),d.sort(),{isShareFolder:p,queryParams:n,queryParamsKeys:d}},ro.prototype.getSignResult=function(e,t,r){var o=e.bucketName,n=e.objectKey,a=e.signatureContext,i=e.isShareFolder,s=e.queryParams,c=e.queryParamsKeys;r&&(s[a.headerPrefix+"security-token"]=r),"v2"===a.signature.toLowerCase()?(s.AWSAccessKeyId=t,c.push("AWSAccessKeyId")):(s.AccessKeyId=t,c.push("AccessKeyId"));var l="";o&&this.pathStyle&&(l+="/"+o),n&&(l+="/"+(n=Kr(n,"/"))),l+="?",c.sort();for(var u=i?"":"/",p=0;p<c.length;p++){var d=c[p],h=s[d];l+=d=Kr(d,u),(h=Kr(h,u))&&(l+="="+h),l+="&"}return l},ro.prototype.createV2SignedUrl=function(e){var t=this,r=this.isSecure,o=this.port,n=this.getQueryParams(e),a=n.isShareFolder,i=n.queryParams,s=n.queryParamsKeys,c=this.getStringToSign({isShareFolder:a,queryParams:i,queryParamsKeys:s},e),l=c.stringToSign,u=c.headers,p=c.host,d={bucketName:e.Bucket?String(e.Bucket):null,objectKey:e.Key?String(e.Key):null,signatureContext:e.signatureContext||this.signatureContext,isShareFolder:a,queryParams:i,queryParamsKeys:s};if(Qr(e.AfterStringToSign))return Promise.resolve(e.AfterStringToSign(l)).then((function(e){var n=e.signature,i=e.ak,s=e.stsToken;return function(e,t){return t+=a?"Signature="+Kr(e):"Signature="+Kr(e,"/"),{ActualSignedRequestHeaders:u,SignedUrl:(r?"https":"http")+"://"+p+":"+o+t}}(n,t.getSignResult(d,i,s))}))},ro.prototype.createV2SignedUrlSync=function(e){var t=this.getQueryParams(e),r=t.isShareFolder,o=t.queryParams,n=t.queryParamsKeys,a=this.getStringToSign({isShareFolder:r,queryParams:o,queryParamsKeys:n},e),i=a.stringToSign,s=a.headers,c=a.host,l={bucketName:e.Bucket?String(e.Bucket):null,objectKey:e.Key?String(e.Key):null,signatureContext:e.signatureContext||this.signatureContext,isShareFolder:r,queryParams:o,queryParamsKeys:n},u=this.getSignResult(l,this.ak,this.securityToken),p=Tr.createHmac("sha1",this.sk);return p.update(i),u+=r?"Signature="+Kr(p.digest("base64")):"Signature="+Kr(p.digest("base64"),"/"),{ActualSignedRequestHeaders:s,SignedUrl:(this.isSecure?"https":"http")+"://"+c+":"+this.port+u}},ro.prototype.createV4SignedUrlSync=function(e){var t=(e=e||{}).signatureContext||this.signatureContext,r=e.Method?String(e.Method):"GET",o=e.Bucket?String(e.Bucket):null,n=e.Key?String(e.Key):null,a=e.SpecialParam?String(e.SpecialParam):null;"storageClass"===a&&(a="storagePolicy");var i=e.Expires?parseInt(e.Expires,10):300,s={};if(e.Headers&&e.Headers instanceof Object&&!(e.Headers instanceof Array))for(var c in e.Headers)({}).hasOwnProperty.call(e.Headers,c)&&(s[c]=e.Headers[c]);var l={};if(e.QueryParams&&e.QueryParams instanceof Object&&!(e.QueryParams instanceof Array))for(var u in e.QueryParams)({}).hasOwnProperty.call(e.QueryParams,u)&&(l[u]=e.QueryParams[u]);this.securityToken&&!l[t.headerPrefix+"security-token"]&&(l[t.headerPrefix+"security-token"]=this.securityToken);var p="",d="",h=this.server;o&&(this.pathStyle?(p+="/"+o,d+="/"+o):h=o+"."+h),n&&(p+="/"+(n=Kr(n,"/")),d+="/"+n),""===d&&(d="/"),p+="?",a&&(l[a]=""),i<0&&(i=300);var f=Zr(s.date||s.Date||(new Date).toUTCString()),m=f[0],y=f[1];s.Host=h+(80===this.port||443===this.port?"":":"+this.port),l["X-Amz-Algorithm"]="AWS4-HMAC-SHA256",l["X-Amz-Credential"]=this.ak+"/"+m+"/"+this.region+"/s3/aws4_request",l["X-Amz-Date"]=y,l["X-Amz-Expires"]=String(i);var g=Jr(s);l["X-Amz-SignedHeaders"]=g[0];var A={},b=[];for(var x in l)if({}.hasOwnProperty.call(l,x)){var v=l[x];x=Kr(x,"/"),v=Kr(v),A[x]=v,b.push(x),p+=x,v&&(p+="="+v),p+="&"}var P="";b.sort();for(var k=0;k<b.length;)P+=b[k]+"="+A[b[k]],++k!==b.length&&(P+="&");var w=r+"\n";return w+=d+"\n",w+=P+"\n",w+=g[1]+"\n",w+=g[0]+"\n",w+="UNSIGNED-PAYLOAD",p+="X-Amz-Signature="+Kr(to(m,y,this.sk,this.region,w)),{ActualSignedRequestHeaders:s,SignedUrl:(this.isSecure?"https":"http")+"://"+h+":"+this.port+p}},ro.prototype.createPostSignatureSync=function(e){var t=e.signatureContext||this.signatureContext;if("v4"===t.signature)return this.createV4PostSignatureSync(e);var r=(e=e||{}).Bucket?String(e.Bucket):null,o=e.Key?String(e.Key):null,n=e.Expires?parseInt(e.Expires,10):300,a={};if(e.FormParams&&e.FormParams instanceof Object&&!(e.FormParams instanceof Array))for(var i in e.FormParams)({}).hasOwnProperty.call(e.FormParams,i)&&(a[i]=e.FormParams[i]);this.securityToken&&!a[t.headerPrefix+"security-token"]&&(a[t.headerPrefix+"security-token"]=this.securityToken);var s=new Date;s.setTime(parseInt((new Date).getTime(),10)+1e3*n),s=Yr(s.toUTCString()),r&&(a.bucket=r),o&&(a.key=o);var c=[];c.push('{"expiration":"'),c.push(s),c.push('", "conditions":[');var l=!0,u=!0,p=["acl","bucket","key","success_action_redirect","redirect","success_action_status"];for(var d in a)if(d){var h=a[d];"bucket"===(d=String(d).toLowerCase())?l=!1:"key"===d&&(u=!1),Mr.indexOf(d)<0&&p.indexOf(d)<0&&0!==d.indexOf(t.headerPrefix)||(c.push('{"'),c.push(d),c.push('":"'),c.push(null!==h?String(h):""),c.push('"},'))}l&&c.push('["starts-with", "$bucket", ""],'),u&&c.push('["starts-with", "$key", ""],'),c.push("]}");var f=c.join("");c=window.btoa?window.btoa(f):at.encode(f);var m=Tr.createHmac("sha1",this.sk).update(c).digest("base64");return{OriginPolicy:f,Policy:c,Signature:m,Token:this.ak+":"+m+":"+c}},ro.prototype.createV4PostSignatureSync=function(e){var t=(e=e||{}).signatureContext||this.signatureContext,r=e.Bucket?String(e.Bucket):null,o=e.Key?String(e.Key):null,n=e.Expires?parseInt(e.Expires,10):300,a={};if(e.FormParams&&e.FormParams instanceof Object&&!(e.FormParams instanceof Array))for(var i in e.FormParams)({}).hasOwnProperty.call(e.FormParams,i)&&(a[i]=e.FormParams[i]);this.securityToken&&!a[t.headerPrefix+"security-token"]&&(a[t.headerPrefix+"security-token"]=this.securityToken);var s=Zr((new Date).toUTCString()),c=s[0],l=s[1],u=this.ak+"/"+c+"/"+this.region+"/s3/aws4_request",p=new Date;p.setTime(parseInt((new Date).getTime(),10)+1e3*n),p=Yr(p.toUTCString()),a["X-Amz-Algorithm"]="AWS4-HMAC-SHA256",a["X-Amz-Date"]=l,a["X-Amz-Credential"]=u,r&&(a.bucket=r),o&&(a.key=o);var d=[];d.push('{"expiration":"'),d.push(p),d.push('", "conditions":[');var h=!0,f=!0,m=["acl","bucket","key","success_action_redirect","redirect","success_action_status"];for(var y in a)if(y){var g=a[y];"bucket"===(y=String(y).toLowerCase())?h=!1:"key"===y&&(f=!1),Mr.indexOf(y)<0&&m.indexOf(y)<0&&0!==y.indexOf(t.headerPrefix)||(d.push('{"'),d.push(y),d.push('":"'),d.push(null!==g?String(g):""),d.push('"},'))}h&&d.push('["starts-with", "$bucket", ""],'),f&&d.push('["starts-with", "$key", ""],'),d.push("]}");var A=d.join("");d=window.btoa?window.btoa(A):at.encode(A);var b=eo(c,this.sk,this.region,d);return{OriginPolicy:A,Policy:d,Algorithm:a["X-Amz-Algorithm"],Credential:a["X-Amz-Credential"],Date:a["X-Amz-Date"],Signature:b}};var oo=ro,no=Number.MAX_VALUE;function ao(){this.consoleLog=window.console,this._level=no}ao.prototype.setLevel=function(e){e&&(e="info"===(e=String(e).toLowerCase())?20:"warn"===e?30:"error"===e?40:"debug"===e?10:no,this._level=e)},ao.prototype.runLog=function(e,t,r){if(e){var o=[(new Date).toLocaleString(),e.toLowerCase(),t,r].join("|");"debug"===e.toLowerCase()&&this._level<=10?this.consoleLog.debug(o):"info"===e.toLowerCase()&&this._level<=20?this.consoleLog.info(o):"warn"===e.toLowerCase()&&this._level<=30?this.consoleLog.warn(o):"error"===e.toLowerCase()&&this._level<=40&&this.consoleLog.error(o)}};var io=ao,so=function(e){return"[object String]"===Object.prototype.toString.call(e)&&e.lastIndexOf("/")!==e.length-1&&(e+="/"),e},co={extend:function(e){e.prototype.dropFile=function(e,t){this.deleteObject(e,t)},e.prototype.dropFolder=function(e,t){var r=this;e=e||{};var o=function(e,t,r){e=e||function(){};var o=(new Date).getTime();return function(r,n){return t.runLog("info","dropFolder","ObsClient cost "+((new Date).getTime()-o)+" ms"),"[object String]"===Object.prototype.toString.call(r)?e(new Error(r),n):e(r,n)}}(t,r.log),n=function(e){return e=e||function(){},function(t,r,o){return"[object Error]"===Object.prototype.toString.call(o)?e(t,r,o):"[object String]"===Object.prototype.toString.call(o)?e(t,r,new Error(o)):o?o.CommonMsg.Status>300?e(t,r,new Error("status:"+o.CommonMsg.Status+", code:"+o.CommonMsg.Code+", message:"+o.CommonMsg.Message)):void e(t,r,o):void 0}}(e.EventCallback),a=e.TaskNum||1,i=0,s=[],c=function(e,t,o,c){if(c)return t.finished++,void o(t);var l=function(){i++,r.dropFile({Bucket:t.bucket,Key:e},(function(r,c){i--,t.finished++,function(){for(;i<a&&s.length>0;)s.shift()()}(),r?(n("dropFileFailed",e,r),t.subDeleted=!1):c.CommonMsg.Status>=300?(n("dropFileFailed",e,c),t.subDeleted=!1):n("dropFileSucceed",e,c),o(t)}))};i<a?l():s.push(l)},l=function(e,t,r){return function(o){!o.isTruncated&&o.finished===o.total&&o.subDeleted&&c(e,t,r,!1)}},u=so(e.Prefix);!function e(t,n,u,p,d){i++,r.listObjects({Bucket:n,Prefix:u,Delimiter:"/",Marker:p},(function(r,p){if(i--,r)return o(r);if(p.CommonMsg.Status>=300)return o(null,p);if(t.total+=p.InterfaceResult.Contents.length,t.total+=p.InterfaceResult.CommonPrefixes.length,0!==t.total){t.isTruncated="true"===p.InterfaceResult.IsTruncated;for(var h=function(r){return function(){e({total:0,finished:0,isTruncated:!1,bucket:n,subDeleted:!0},n,r,null,l(r,t,d))}},f=0;f<p.InterfaceResult.CommonPrefixes.length;f++){var m=so(p.InterfaceResult.CommonPrefixes[f].Prefix);i<a?e({total:0,finished:0,isTruncated:!1,bucket:n,subDeleted:!0},n,m,null,l(m,t,d)):s.push(h(m))}for(var y=0;y<p.InterfaceResult.Contents.length;y++){var g=p.InterfaceResult.Contents[y].Key;c(g,t,d,g.lastIndexOf("/")===g.length-1)}t.isTruncated&&(i<a?e(t,n,u,p.InterfaceResult.NextMarker,d):s.push((function(){e(t,n,u,p.InterfaceResult.NextMarker,d)})))}else d(t)}))}({total:0,finished:0,isTruncated:!1,bucket:e.Bucket,subDeleted:!0},e.Bucket,u,null,(function(e){if(!e.isTruncated&&e.finished===e.total)if(e.subDeleted)r.dropFile({Bucket:e.bucket,Key:u},(function(e,t){return e?(n("dropFileFailed",u,e),o(e)):t.CommonMsg.Status>=300?(n("dropFileFailed",u,t),o(null,t)):(n("dropFileSucceed",u,t),o(null,t))}));else{var t="drop folder "+u+" failed due to child file deletion failed";n("dropFileFailed",u,new Error(t)),o(t)}}))}}},lo=co,uo=n(2062),po=n.n(uo),ho=5368709120,fo=function(e){return"[object Function]"===Object.prototype.toString.call(e)},mo=function(e){var t=[];if(t.push(e.bucket),t.push(e.key),t.push(e.sourceFile.name),t.push(String(e.partSize)),t.push(String(e.partCount)),t.push(String(e.fileStat.fileSize)),t.push(String(e.fileStat.lastModified)),e.uploadId&&t.push(e.uploadId),e.sseC&&t.push(e.sseC),e.sseCKey&&t.push(e.sseCKey),e.parts)for(var r=0;r<e.parts.length;r++){var o=e.parts[r];o&&(t.push(String(o.partNumber)),t.push(String(o.offset)),t.push(String(o.partSize)),t.push(String(o.isCompleted)),o.etag&&t.push(String(o.etag)))}return window.btoa(st()(t.join(""),!1,!0))},yo=function(e,t,r){e&&e.uploadId&&r.abortMultipartUpload({Bucket:e.bucket,Key:e.key,RequestDate:e.requestDate,UploadId:e.uploadId},(function(o,n){o?r.log.runLog("warn",t,"abort multipart upload failed, bucket:"+e.bucket+", key:"+e.key+", uploadId:"+e.uploadId+", err:"+o):n.CommonMsg.Status>=300?r.log.runLog("warn",t,"abort multipart upload failed, bucket:"+e.bucket+", key:"+e.key+", uploadId:"+e.uploadId+", status:"+n.CommonMsg.Status+", code:"+n.CommonMsg.Code+", message:"+n.CommonMsg.Message):(delete e.uploadId,r.log.runLog("warn",t,"abort multipart upload succeed, bucket:"+e.bucket+", key:"+e.key+", uploadId:"+e.uploadId))}))},go=function(e){if(!(e.finishedCount<e.uploadCheckpoint.partCount)){if(e.isAbort)return yo(e.uploadCheckpoint,e.funcName,e.that),e.callback("uploadFile failed the upload task is aborted");if(e.isSuspend)return e.callback("the process of uploadFile is suspened, you can retry with the uploadCheckpoint");if(e.hasError)return e.callback("uploadFile finished with error, you can retry with the uploadCheckpoint");for(var t=[],r=0;r<e.uploadCheckpoint.partCount;r++){var o=e.uploadCheckpoint.parts[r];t.push({PartNumber:o.partNumber,ETag:o.etag})}e.that.completeMultipartUpload({Bucket:e.uploadCheckpoint.bucket,Key:e.uploadCheckpoint.key,RequestDate:e.uploadCheckpoint.requestDate,UploadId:e.uploadCheckpoint.uploadId,Parts:t,CallbackUrl:e.callbackUrl,CallbackHost:e.callbackHost,CallbackBody:e.callbackBody,CallbackBodyType:e.callbackBodyType},(function(t,r){var o={bucket:e.uploadCheckpoint.bucket,key:e.uploadCheckpoint.key,uploadId:e.uploadCheckpoint.uploadId};return t?(e.eventCallback("completeMultipartUploadFailed",o,t),e.callback(t)):r.CommonMsg.Status>=500?(e.eventCallback("completeMultipartUploadFailed",o,r),e.callback(null,r)):r.CommonMsg.Status>=300&&r.CommonMsg.Status<500?(e.eventCallback("completeMultipartUploadAborted",o,r),yo(e.uploadCheckpoint,e.funcName,e.that),e.callback(null,r)):(e.eventCallback("completeMultipartUploadSucceed",o,r),void e.callback(null,r))}))}},Ao=function(e){e.resumeCallback({cancel:function(){e.isSuspend=!0;for(var t=0;t<e.uploadPartParams.length;t++){var r=e.uploadPartParams[t].cancelHook;fo(r)&&r()}},abort:function(){e.isAbort=!0;for(var t=0;t<e.uploadPartParams.length;t++){var r=e.uploadPartParams[t].abortHook;fo(r)&&r()}}},e.uploadCheckpoint);var t=[],r=function(){if(0!==t.length)for(;e.runningTask<e.taskNum&&t.length>0;)t.shift()();else go(e)},o=(window.btoa&&window.btoa,function(o){return function(){if(e.runningTask++,e.isSuspend||e.isAbort)return e.runningTask--,e.finishedCount++,e.finishedCount+=t.length,t=[],r();var n,a,i,s,c=0,l=function(t){if(!c){c=1;var n,a={Bucket:e.uploadCheckpoint.bucket,Key:e.uploadCheckpoint.key,RequestDate:e.uploadCheckpoint.requestDate,PartNumber:o.partNumber,UploadId:e.uploadCheckpoint.uploadId,SourceFile:e.uploadCheckpoint.sourceFile,maxPartRetryCount:e.maxPartRetryCount,Offset:o.offset,PartSize:o.partSize,SseC:e.uploadCheckpoint.sseC,SseCKey:e.uploadCheckpoint.sseCKey,ProgressCallback:(n=o.partNumber,function(t,r,o){e.progressCallback(n,t)}),ContentMD5:t};e.uploadPartParams.push(a),e.that.uploadPart(a,(function(t,n){if(e.runningTask--,e.finishedCount++,e.isSuspend)return r();var a={partNumber:o.partNumber,bucket:e.uploadCheckpoint.bucket,key:e.uploadCheckpoint.key,uploadId:e.uploadCheckpoint.uploadId};t?(e.eventCallback("uploadPartFailed",a,t),e.hasError=!0):n.CommonMsg.Status>=500||400===n.CommonMsg.Status&&"BadDigest"===n.CommonMsg.Code?(e.eventCallback("uploadPartFailed",a,n),e.hasError=!0):n.CommonMsg.Status>=300&&n.CommonMsg.Status<500?(e.isAbort=!0,e.hasError=!0,e.eventCallback("uploadPartAborted",a,n)):(o.etag=n.InterfaceResult.ETag,o.isCompleted=!0,a.etag=o.etag,e.uploadCheckpoint.md5=mo(e.uploadCheckpoint),e.eventCallback("uploadPartSucceed",a,n),e.that.log.runLog("debug",e.funcName,"Part "+String(o.partNumber)+" is finished, uploadId "+e.uploadCheckpoint.uploadId)),r()}))}};if(e.verifyMd5&&window.FileReader&&(e.uploadCheckpoint.sourceFile instanceof window.File||e.uploadCheckpoint.sourceFile instanceof window.Blob)){var u=(n=e.uploadCheckpoint.sourceFile,a=o.offset,i=o.offset+o.partSize,s=s||n.type,n.mozSlice?n.mozSlice(a,i,s):n.webkitSlice?n.webkitSlice(a,i,s):n.slice(a,i,s)),p=new window.FileReader;return p.onload=function(e){var t=po().lib.WordArray.create(e.target.result),r=po().MD5(t),o=po().enc.Base64.stringify(r);t=null,l(o)},p.onerror=function(t){e.that.log.runLog("error",e.funcName,"Caculate md5 for part "+String(o.partNumber)+" failed"),l()},void p.readAsArrayBuffer(u)}l()}});if(!e.isSuspend){for(var n=0;n<e.uploadCheckpoint.partCount;n++){var a=e.uploadCheckpoint.parts[n];a.isCompleted?(e.finishedCount++,e.finishedBytes+=a.partSize):t.push(o(a))}return 0===t.length?go(e):r()}e.callback("the process of uploadFile is suspened, you can retry with the uploadCheckpoint")},bo={extend:function(e){e.prototype.uploadFile=function(e,t){var r=this;e=e||{};var o="uploadFile",n=function(e,t,r){e=e||function(){};var o=(new Date).getTime();return function(n,a){return t.runLog("info",r,"ObsClient cost "+((new Date).getTime()-o)+" ms"),"[object String]"===Object.prototype.toString.call(n)?e(new Error(n),a):e(n,a)}}(t,r.log,o),a=function(e){return e=e||function(){},function(t,r,o){return"[object Error]"===Object.prototype.toString.call(o)?e(t,r,o):"[object String]"===Object.prototype.toString.call(o)?e(t,r,new Error(o)):o?o.CommonMsg.Status>300?e(t,r,new Error("status:"+o.CommonMsg.Status+", code:"+o.CommonMsg.Code+", message:"+o.CommonMsg.Message)):void e(t,r,o):void 0}}(e.EventCallback),i=e.TaskNum||1,s=e.PartRetryNum||0,c=e.ProgressCallback||function(){},l=e.ResumeCallback||function(){},u=e.VerifyMd5||!1;r.log.runLog("info",o,"enter "+o+"...");var p=null;if(e.UploadCheckpoint&&e.UploadCheckpoint.sourceFile&&e.UploadCheckpoint.fileStat&&e.UploadCheckpoint.uploadId&&e.UploadCheckpoint.md5===mo(e.UploadCheckpoint)?p=e.UploadCheckpoint:yo(e.UploadCheckpoint,o,r),p){var d=p.sourceFile;if(!(d instanceof window.File||d instanceof window.Blob))return n("source file is not valid, must be an instanceof [File | Blob]");if(!d.mozSlice&&!d.webkitSlice&&!d.slice)return n("your browser cannot support the slice method for [File | Blob]")}else{var h=e.SourceFile;if(!(h instanceof window.File||h instanceof window.Blob))return n("source file is not valid, must be an instanceof [File | Blob]");if(!h.mozSlice&&!h.webkitSlice&&!h.slice)return n("your browser cannot support the slice method for [File | Blob]");r.log.runLog("debug",o,"Begin to uploadFile to OBS from file:"+h.name);var f=h.size,m=parseInt(e.PartSize,10),y=0,g=[];if(0===f)m=0,y=1,g.push({partNumber:1,offset:0,partSize:0,isCompleted:!1});else{if(m=isNaN(m)||m<102400?9437184:m>ho?ho:m,(y=Math.floor(f/m))>=1e4&&(m=Math.floor(f/1e4),f%1e4!=0&&(m+=1),y=Math.floor(f/m)),m>ho)return n("The source file "+h.name+" is too large");var A=f%m;0!==A&&y++;for(var b=0;b<y;b++)g.push({partNumber:b+1,offset:b*m,partSize:m,isCompleted:!1});0!==A&&(g[y-1].partSize=A)}r.log.runLog("debug",o,"Total parts count "+y),(p={bucket:e.Bucket,key:e.Key,sourceFile:h,partSize:m,partCount:y,parts:g}).fileStat={fileSize:f,lastModified:h.lastModified},e.SseC&&e.SseCKey&&(p.sseC=e.SseC,p.sseCKey=e.SseCKey),p.md5=mo(p)}p.requestDate=e.RequestDate;var x={start:(new Date).getTime(),uploadCheckpoint:p,funcName:o,maxPartRetryCount:s,taskNum:i,callback:n,that:r,runningTask:0,finishedCount:0,hasError:!1,finishedBytes:0,isAbort:!1,resumeCallback:l,isSuspend:!1,partsLoaded:{},requestDate:e.RequestDate,uploadPartParams:[],verifyMd5:u,callbackUrl:e.CallbackUrl,callbackHost:e.CallbackHost,callbackBody:e.CallbackBody,callbackBodyType:e.CallbackBodyType,eventCallback:function(e,t,r){x.isSuspend||a(e,t,r)},progressCallback:function(e,t){x.isSuspend||(x.finishedBytes+=t,x.partsLoaded[e]&&(x.finishedBytes-=x.partsLoaded[e]),x.partsLoaded[e]=t,c(x.finishedBytes,x.uploadCheckpoint.fileStat.fileSize,((new Date).getTime()-x.start)/1e3))}};if(!p.uploadId){var v=e.ContentType;return!v&&p.key&&(v=r.util.mimeTypes[p.key.substring(p.key.lastIndexOf(".")+1)]),!v&&p.sourceFile.name&&(v=r.util.mimeTypes[p.sourceFile.name.substring(p.sourceFile.name.lastIndexOf(".")+1)]),void r.initiateMultipartUpload({Bucket:e.Bucket,Key:e.Key,RequestDate:e.RequestDate,ACL:e.ACL,Metadata:e.Metadata,WebsiteRedirectLocation:e.WebsiteRedirectLocation,StorageClass:e.StorageClass,ContentType:v,Expires:e.Expires,SseKms:e.SseKms,SseKmsKey:e.SseKmsKey,SseC:e.SseC,SseCKey:e.SseCKey},(function(t,a){var i={bucket:e.Bucket,key:e.Key};if(t)return x.eventCallback("initiateMultipartUploadFailed",i,t),n(t);if(a.CommonMsg.Status>=300)return x.eventCallback("initiateMultipartUploadFailed",i,a),n(null,a);var s=a.InterfaceResult.UploadId;p.uploadId=s,p.md5=mo(p),x.uploadCheckpoint=p,i.uploadId=s,r.log.runLog("info",o,"Claim a new upload id "+s),x.eventCallback("initiateMultipartUploadSucceed",i,a),Ao(x)}))}Ao(x)}}},xo=bo;function vo(e){return vo="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},vo(e)}function Po(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,o)}return r}function ko(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?Po(Object(r),!0).forEach((function(t){wo(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):Po(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function wo(e,t,r){return t=function(e){var t=function(e,t){if("object"!=vo(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=vo(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==vo(t)?t:t+""}(t),t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function So(e){this.factory(e)}function Co(e){return e.slice(0,1).toUpperCase()+e.slice(1)}var Bo=["createBucket","createSfsBucket","listBuckets","listSfsBuckets","getBucketMetadata","headBucket","deleteBucket","deleteSfsBucket","setBucketQuota","getBucketQuota","getBucketStorageInfo","setBucketPolicy","getBucketPolicy","deleteBucketPolicy","setBucketVersioningConfiguration","getBucketVersioningConfiguration","putBackToSource","deleteBackToSource","getBackToSource","getBucketLocation","listVersions","listObjects","setBucketLifecycleConfiguration","getBucketLifecycleConfiguration","deleteBucketLifecycleConfiguration","setBucketAcl","getBucketAcl","setBucketLoggingConfiguration","getBucketLoggingConfiguration","setBucketWebsiteConfiguration","getBucketWebsiteConfiguration","deleteBucketWebsiteConfiguration","setBucketNotification","getBucketNotification","getBucketObjectLockConfiguration","setBucketObjectLockConfig","setBucketTagging","getBucketTagging","deleteBucketTagging","getBucketCors","deleteBucketCors","setBucketStoragePolicy","getBucketStoragePolicy","getObject","getObjectMetadata","setObjectMetadata","setObjectAcl","getObjectAcl","setObjectObjectLock","deleteObject","deleteObjects","listMultipartUploads","listParts","abortMultipartUpload","completeMultipartUpload","getBucketInventory","setBucketInventory","deleteBucketInventory","getBucketEncryption","setBucketEncryption","deleteBucketEncryption","getBucketRequesterPay","setBucketRequesterPay","setMirrorBackToSource","getMirrorBackToSource","deleteMirrorBackToSource","getWorkflowTrigger","deleteWorkflowTrigger","createWorkflowTrigger","restoreFailedWorkflowExecution","createTemplate","createWorkflow","createAuditPolicy","getAuditPolicy","deleteAuditPolicy","getAuditResult","getWorkflowList","deleteWorkflow","getWorkflowTemplateList","getWorkflowInstanceList","deleteTemplate","updateWorkflow","getActionTemplates","getWorkflowAuthorization","openWorkflowAuthorization","getBucketDirectColdAccess","setBucketDirectColdAccess","deleteBucketDirectColdAccess","getBucketCustomDomain","setBucketCustomDomain","deleteBucketCustomDomain","setBucketCors","getBucketReplication","setBucketReplication","deleteBucketReplication","getCDNNotifyConfiguration","setCdnNotifyConfiguration","getQuota","getBucketDisPolicy","setBucketDisPolicy","deleteBucketDisPolicy","createOnlineDecom","getOnlineDecom","getWorkflowAgreements","openWorkflowAgreements","deleteOnlineDecom","getMyActionTemplates","createMyActionTemplate","getMyactiontemplateDetail","updateMyActionTemplate","deleteMyActionTemplate","forbidMyActionTemplate","updatePublicActionTemplate","getOmPublicActionTemplates","setSFSAcl","getSFSAcl","deleteSFSAcl","setBucketAlias","bindBucketAlias","unbindBucketAlias","deleteBucketAlias","listBucketsAlias","getBucketAlias","getSFSPermissionAcl","updateSFSPermissionAcl","deleteSFSPermissionAcl","getSFSPermissionGroupList","setSFSPermissionGroup","updateSFSPermissionGroup","getSFSPermissionGroup","deleteSFSPermissionGroup","setObjectTagging","getObjectTagging","deleteObjectTagging"];function To(e){return function(t,r){this.exec(Co(e),t,r)}}for(var Oo=0;Oo<Bo.length;Oo++){var Eo=Bo[Oo];So.prototype[Eo]=To(Eo)}function Mo(e){return"[object Function]"===Object.prototype.toString.call(e)}function Ro(e){return function(t,r){if(Mo(t))e.call(this,null,t);else{if(!Mo(r)){var o=this;return new Promise((function(r,n){e.call(o,t,(function(e,t){if(e)return n(e);r(t)}))}))}e.call(this,t,r)}}}if(So.prototype.createTemplate=function(e,t){e.ApiPath="v2/workflowtemplates",this.exec("CreateTemplate",e,t)},So.prototype.createWorkflow=function(e,t){e.ApiPath="v2/workflows",this.exec("CreateWorkflow",e,t)},So.prototype.createAuditPolicy=function(e,t){e.ApiPath="v2/audit/policy",this.exec("CreateAuditPolicy",e,t)},So.prototype.getAuditPolicy=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/audit/policy",this.exec("GetAuditPolicy",e,t),this.util.pathStyle=!1},So.prototype.putAuditPolicy=function(e,t){e.ApiPath="v2/audit/policy",this.exec("PutAuditPolicy",e,t)},So.prototype.deleteAuditPolicy=function(e,t){e.ApiPath="v2/audit/policy",this.exec("DeleteAuditPolicy",e,t)},So.prototype.restoreFailedWorkflowExecution=function(e,t){e.ApiPath="v2/workflowexecutions",this.exec("RestoreFailedWorkflowExecution",e,t)},So.prototype.getWorkflowList=function(e,t){e.ApiPath="v2/workflows",this.exec("GetWorkflowList",e,t)},So.prototype.getAuditResult=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/audit/result",this.exec("GetAuditResult",e,t),this.util.pathStyle=!1},So.prototype.deleteWorkflow=function(e,t){e.ApiPath="v2/workflows",this.exec("DeleteWorkflow",e,t)},So.prototype.deleteTemplate=function(e,t){e.ApiPath="v2/workflowtemplates",this.exec("DeleteTemplate",e,t)},So.prototype.getWorkflowTemplateList=function(e,t){e.ApiPath="v2/workflowtemplates",this.exec("GetWorkflowTemplateList",e,t)},So.prototype.getWorkflowInstanceList=function(e,t){e.ApiPath="v2/workflowexecutions",this.exec("GetWorkflowInstanceList",e,t)},So.prototype.updateWorkflow=function(e,t){e.ApiPath="v2/workflows",this.exec("UpdateWorkflow",e,t)},So.prototype.getActionTemplates=function(e,t){e.ApiPath="v2/actiontemplates",this.exec("GetActionTemplates",e,t)},So.prototype.getWorkflowAuthorization=function(e,t){e.ApiPath="v2/workflow-authorization",this.exec("GetWorkflowAuthorization",e,t)},So.prototype.openWorkflowAuthorization=function(e,t){e.ApiPath="v2/workflow-authorization",this.exec("OpenWorkflowAuthorization",e,t)},So.prototype.getPublicationTemplates=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/publicactiontemplates",this.exec("GetPublicationTemplates",e,t),this.util.pathStyle=!1},So.prototype.getPublicationTemplateDetail=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/publicactiontemplates",this.exec("GetPublicationTemplateDetail",e,t),this.util.pathStyle=!1},So.prototype.getWorkflowAgreements=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/workflow-agreements",this.exec("GetWorkflowAgreements",e,t),this.util.pathStyle=!1},So.prototype.openWorkflowAgreements=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/workflow-agreements",this.exec("OpenWorkflowAgreements",e,t),this.util.pathStyle=!1},So.prototype.createMyActionTemplate=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/myactiontemplates",this.exec("CreateMyActionTemplate",e,t),this.util.pathStyle=!1},So.prototype.getMyActionTemplates=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/myactiontemplates",this.exec("GetMyActionTemplates",e,t),this.util.pathStyle=!1},So.prototype.getMyactiontemplateDetail=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/myactiontemplates",this.exec("GetMyactiontemplateDetail",e,t),this.util.pathStyle=!1},So.prototype.updateMyActionTemplate=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/myactiontemplates",this.exec("UpdateMyActionTemplate",e,t),this.util.pathStyle=!1},So.prototype.deleteMyActionTemplate=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/myactiontemplates",this.exec("DeleteMyActionTemplate",e,t),this.util.pathStyle=!1},So.prototype.createSfsBucket=function(e,t){this.util.pathStyle=!0;var r=ko({},e),o=r.Bucket;r.ApiPath="v1/sfs/".concat(o),delete r.Bucket,this.exec("CreateSfsBucket",r,t),this.util.pathStyle=!1},So.prototype.listSfsBuckets=function(e,t){this.util.pathStyle=!0;var r=ko({},e);r.ApiPath="v1/sfs",this.exec("ListSfsBuckets",r,t),this.util.pathStyle=!1},So.prototype.deleteSfsBucket=function(e,t){this.util.pathStyle=!0;var r=ko({},e),o=r.Bucket;r.ApiPath="v1/sfs/".concat(o),delete r.Bucket,this.exec("DeleteSfsBucket",r,t),this.util.pathStyle=!1},So.prototype.forbidMyActionTemplate=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/myactiontemplates",this.exec("ForbidMyActionTemplate",e,t),this.util.pathStyle=!1},So.prototype.updatePublicActionTemplate=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/ompublicactiontemplates",this.exec("UpdatePublicActionTemplate",e,t),this.util.pathStyle=!1},So.prototype.getOmPublicActionTemplates=function(e,t){this.util.pathStyle=!0,e.ApiPath="v2/ompublicactiontemplates",this.exec("GetOmPublicActionTemplates",e,t),this.util.pathStyle=!1},So.prototype.putObject=function(e,t){if("Body"in e&&"SourceFile"in e){var r="the input body and sourcefile exist at same time,please specify one of eigther a string or file to be send!";return this.log.runLog("error","PutObject",r),t(new Error(r),null)}if(!("ContentType"in e)&&("Key"in e&&(e.ContentType=this.util.mimeTypes[e.Key.substring(e.Key.lastIndexOf(".")+1)]),!e.ContentType&&"SourceFile"in e)){var o=e.SourceFile.name;e.ContentType=this.util.mimeTypes[o.substring(o.lastIndexOf(".")+1)]}this.exec("PutObject",e,t)},So.prototype.appendObject=function(e,t){if("Body"in e&&"SourceFile"in e){var r="the input body and sourcefile exist at same time,please specify one of eigther a string or file to be send!";return this.log.isLevelEnabled("error")&&this.log.runLog("error","PutObject",r),t(new Error(r),null)}"ContentType"in e||("Key"in e&&(e.ContentType=this.util.mimeTypes[e.Key.substring(e.Key.lastIndexOf(".")+1)]),!e.ContentType&&"SourceFile"in e&&(e.ContentType=this.util.mimeTypes[e.SourceFile.substring(e.SourceFile.lastIndexOf(".")+1)])),this.exec("AppendObject",e,t)},So.prototype.copyObject=function(e,t){var r="CopySource";if(r in e){var o=e[r],n=o.lastIndexOf("?versionId=");e[r]=n>0?this.util.encodeURIWithSafe(o.slice(0,n))+o.slice(n):this.util.encodeURIWithSafe(o)}this.exec("CopyObject",e,t)},So.prototype.copyPart=function(e,t){var r="CopySource";if(r in e){var o=e[r],n=o.lastIndexOf("?versionId=");e[r]=n>0?this.util.encodeURIWithSafe(o.slice(0,n))+o.slice(n):this.util.encodeURIWithSafe(o)}this.exec("CopyPart",e,t)},So.prototype.restoreObject=function(e,t){this.exec("RestoreObject",e,(function(e,r){!e&&r.InterfaceResult&&r.CommonMsg.Status<300&&(r.InterfaceResult.RestoreStatus=200===r.CommonMsg.Status?"AVALIABLE":"INPROGRESS"),t(e,r)}))},So.prototype.initiateMultipartUpload=function(e,t){"ContentType"in e||"Key"in e&&(e.ContentType=this.util.mimeTypes[e.Key.substring(e.Key.lastIndexOf(".")+1)]),this.exec("InitiateMultipartUpload",e,t)},So.prototype.uploadPart=function(e,t){if("Body"in e&&"SourceFile"in e){var r="the input body and sourcefile exist at same time, please specify one of eigther a string or file to be send!";return this.log.runLog("error","UploadPart",r),t(new Error(r),null)}this.exec("UploadPart",e,t)},So.prototype.getSFSPermissionAcl=function(e,t){this.util.pathStyle=!0;var r=ko({},e);r.ApiPath="v3/bucket/".concat(e.Bucket,"/sfsacl"),delete r.Bucket,this.exec("getSFSPermissionAcl",r,t),this.util.pathStyle=!1},So.prototype.updateSFSPermissionAcl=function(e,t){this.util.pathStyle=!0;var r=ko({},e);r.ApiPath="v3/bucket/".concat(e.Bucket,"/sfsacl"),delete r.Bucket,this.exec("updateSFSPermissionAcl",r,t),this.util.pathStyle=!1},So.prototype.deleteSFSPermissionAcl=function(e,t){this.util.pathStyle=!0;var r=ko({},e);r.ApiPath="v3/bucket/".concat(e.Bucket,"/sfsacl"),delete r.Bucket,this.exec("deleteSFSPermissionAcl",r,t),this.util.pathStyle=!1},So.prototype.getSFSPermissionGroupList=function(e,t){e||(e={}),this.util.pathStyle=!0,e.ApiPath="v3/sfs/permission-group",this.exec("getSFSPermissionGroupList",e,t),this.util.pathStyle=!1},So.prototype.setSFSPermissionGroup=function(e,t){this.util.pathStyle=!0,e.ApiPath="v3/sfs/permission-group",this.exec("setSFSPermissionGroup",e,t),this.util.pathStyle=!1},So.prototype.updateSFSPermissionGroup=function(e,t){this.util.pathStyle=!0,e.ApiPath="v3/sfs/permission-group/".concat(e.id),this.exec("updateSFSPermissionGroup",e,t),this.util.pathStyle=!1},So.prototype.getSFSPermissionGroup=function(e,t){this.util.pathStyle=!0,e.ApiPath="v3/sfs/permission-group/".concat(e.id),this.exec("getSFSPermissionGroup",e,t),this.util.pathStyle=!1},So.prototype.deleteSFSPermissionGroup=function(e,t){this.util.pathStyle=!0,e.ApiPath="v3/sfs/permission-group/".concat(e.id),this.exec("deleteSFSPermissionGroup",e,t),this.util.pathStyle=!1},lo.extend(So),xo.extend(So),Mo(Promise))for(var Io in So.prototype)if({}.hasOwnProperty.call(So.prototype,Io)){var jo=So.prototype[Io];So.prototype[Io]=Ro(jo)}for(var Do in So.prototype.exec=function(e,t,r){var o=this.log;o.runLog("info",e,"enter "+e+"...");var n=(new Date).getTime();t=t||{},r=r||function(){},this.util.exec(e,t,(function t(a,i){t.$called||(t.$called=!0,!a||a instanceof Error||(a=new Error(a)),o.runLog("debug",e,"ObsClient cost "+((new Date).getTime()-n)+" ms"),r(a,i))}))},So.prototype.initLog=function(e){e=e||{},this.log.setLevel(e.level);var t=["[OBS SDK Version="+this.util.obsSdkVersion];if(this.util.server){var r=this.util.port?":"+this.util.port:"";t.push("Endpoint="+(this.util.is_secure?"https":"http")+"://"+this.util.server+r)}t.push("Access Mode="+(this.util.path_style?"Path":"Virtual Hosting")+"]"),this.log.runLog("warn","init",t.join("];["))},So.prototype.factory=function(e){this.log=new io,this.util=new oo(this.log),e=e||{},this.util.initFactory(e.access_key_id,e.secret_access_key,e.is_secure,e.server,e.path_style,e.signature,e.region,e.port,e.timeout,e.security_token,e.is_signature_negotiation,e.is_cname,e.url_prefix,e.region_domains,e.setRequestHeaderHook,e.useRawXhr,e.checksum_algorithm)},So.prototype.refresh=function(e,t,r){this.util.refresh(e,t,r)},So.prototype.createSignedUrl=function(e){return this.util.createSignedUrl(e)},So.prototype.createSignedUrlSync=function(e){return this.util.createSignedUrlSync(e)},So.prototype.createV2SignedUrlSync=function(e){return this.util.createV2SignedUrlSync(e)},So.prototype.createV4SignedUrlSync=function(e){return this.util.createV4SignedUrlSync(e)},So.prototype.createPostSignatureSync=function(e){return this.util.createPostSignatureSync(e)},So.prototype.createV4PostSignatureSync=function(e){return this.util.createV4PostSignatureSync(e)},So.prototype.enums=Sr,So.prototype)({}).hasOwnProperty.call(So.prototype,Do)&&(So.prototype[Co(Do)]=So.prototype[Do]);for(var _o in So.prototype)if({}.hasOwnProperty.call(So.prototype,_o)){var Lo=_o.indexOf("Configuration");Lo>0&&Lo+13===_o.length&&(So.prototype[_o.slice(0,Lo)]=So.prototype[_o])}var qo=So}(),a.default}()}));