@mservices-tech/scripts 3.3.0-scripts-release-refactor-rc.0 → 4.0.0-scripts-fix-versioning-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8,7 +8,7 @@ module.exports = {
|
|
|
8
8
|
// to the release commit. This prebump script, together with commitAll: true
|
|
9
9
|
// option, let's us do that
|
|
10
10
|
prebump: 'git add .',
|
|
11
|
-
postchangelog:
|
|
11
|
+
postchangelog: `bash ./node_modules/@mservices-tech/scripts/remove_git_hashes_from_markdown_file/remove_git_hashes_from_markdown_file.sh --markdown-file=./CHANGELOG.md${process.env.TRACK_DEPENDENCIES === 'true' ? ' && bash ./node_modules/@mservices-tech/scripts/enrich_changelog_with_dependency_changes/enrich_changelog_with_dependency_changes.sh' : ''}`,
|
|
12
12
|
},
|
|
13
13
|
types: [
|
|
14
14
|
{ type: 'feat', section: 'Features' },
|
package/package.json
CHANGED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
|
|
3
|
+
source "$(dirname "$0")/../src/utils.sh" || exit 1
|
|
4
|
+
|
|
5
|
+
function usage() {
|
|
6
|
+
cat << END
|
|
7
|
+
Usage:
|
|
8
|
+
${BASH_SOURCE[0]} [--help] [--markdown-file=file_path]
|
|
9
|
+
Where:
|
|
10
|
+
help - show usage information and exit
|
|
11
|
+
markdown-file - Markdown file path
|
|
12
|
+
Description:
|
|
13
|
+
Removes all git hashes and compare links from a Markdown file.
|
|
14
|
+
END
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function main() {
|
|
18
|
+
parse_arguments "$@"
|
|
19
|
+
if [ ${PROCESS_ARGUMENTS['--help']} ]; then
|
|
20
|
+
usage
|
|
21
|
+
exit 0
|
|
22
|
+
fi
|
|
23
|
+
|
|
24
|
+
local markdown_file="${PROCESS_ARGUMENTS['--markdown-file']}"
|
|
25
|
+
|
|
26
|
+
if [ -z "$markdown_file" ]; then
|
|
27
|
+
logger_error "Provide a path to Markdown file, e.g.: ${BASH_SOURCE[0]} --markdown-file=CHANGELOG.md"
|
|
28
|
+
exit 1
|
|
29
|
+
fi
|
|
30
|
+
|
|
31
|
+
# Remove git hash links: ([abc1234](https://...)) or ([#123](https://...))
|
|
32
|
+
perl -i -pe 's/\(\[(?:[a-f0-9]{7}|#\d+)\]\(https?:\/\/[\w#.\/?=-]+\)\)//g' "$markdown_file"
|
|
33
|
+
|
|
34
|
+
# Remove version compare links: [1.2.3](https://...) → 1.2.3
|
|
35
|
+
perl -i -pe 's/\[(\d+\.\d+\.\d+[^\]]*)\]\(https?:\/\/[\w#.\/?=-]+\)/$1/g' "$markdown_file"
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
main "$@"
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
"use strict";var Bl=Object.create;var Hi=Object.defineProperty;var Hl=Object.getOwnPropertyDescriptor;var Gl=Object.getOwnPropertyNames;var Wl=Object.getPrototypeOf,Ul=Object.prototype.hasOwnProperty;var f=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var Yl=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Gl(e))!Ul.call(t,i)&&i!==r&&Hi(t,i,{get:()=>e[i],enumerable:!(n=Hl(e,i))||n.enumerable});return t};var Ee=(t,e,r)=>(r=t!=null?Bl(Wl(t)):{},Yl(e||!t||!t.__esModule?Hi(r,"default",{value:t,enumerable:!0}):r,t));var Q=f((W0,ts)=>{"use strict";var tn=class t extends Error{constructor(e){super(`Format functions must be synchronous taking a two arguments: (info, opts)
|
|
3
|
-
Found: ${e.toString().split(`
|
|
4
|
-
`)[0]}
|
|
5
|
-
`),Error.captureStackTrace(this,t)}};ts.exports=t=>{if(t.length>2)throw new tn(t);function e(n={}){this.options=n}e.prototype.transform=t;function r(n){return new e(n)}return r.Format=e,r}});var ss=f((U0,is)=>{var ns={};is.exports=ns;var rs={reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],inverse:[7,27],hidden:[8,28],strikethrough:[9,29],black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],gray:[90,39],grey:[90,39],brightRed:[91,39],brightGreen:[92,39],brightYellow:[93,39],brightBlue:[94,39],brightMagenta:[95,39],brightCyan:[96,39],brightWhite:[97,39],bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgGray:[100,49],bgGrey:[100,49],bgBrightRed:[101,49],bgBrightGreen:[102,49],bgBrightYellow:[103,49],bgBrightBlue:[104,49],bgBrightMagenta:[105,49],bgBrightCyan:[106,49],bgBrightWhite:[107,49],blackBG:[40,49],redBG:[41,49],greenBG:[42,49],yellowBG:[43,49],blueBG:[44,49],magentaBG:[45,49],cyanBG:[46,49],whiteBG:[47,49]};Object.keys(rs).forEach(function(t){var e=rs[t],r=ns[t]=[];r.open="\x1B["+e[0]+"m",r.close="\x1B["+e[1]+"m"})});var as=f((Y0,os)=>{"use strict";os.exports=function(t,e){e=e||process.argv||[];var r=e.indexOf("--"),n=/^-{1,2}/.test(t)?"":"--",i=e.indexOf(n+t);return i!==-1&&(r===-1?!0:i<r)}});var ls=f((z0,us)=>{"use strict";var sc=require("os"),ae=as(),J=process.env,Ve=void 0;ae("no-color")||ae("no-colors")||ae("color=false")?Ve=!1:(ae("color")||ae("colors")||ae("color=true")||ae("color=always"))&&(Ve=!0);"FORCE_COLOR"in J&&(Ve=J.FORCE_COLOR.length===0||parseInt(J.FORCE_COLOR,10)!==0);function oc(t){return t===0?!1:{level:t,hasBasic:!0,has256:t>=2,has16m:t>=3}}function ac(t){if(Ve===!1)return 0;if(ae("color=16m")||ae("color=full")||ae("color=truecolor"))return 3;if(ae("color=256"))return 2;if(t&&!t.isTTY&&Ve!==!0)return 0;var e=Ve?1:0;if(process.platform==="win32"){var r=sc.release().split(".");return Number(process.versions.node.split(".")[0])>=8&&Number(r[0])>=10&&Number(r[2])>=10586?Number(r[2])>=14931?3:2:1}if("CI"in J)return["TRAVIS","CIRCLECI","APPVEYOR","GITLAB_CI"].some(function(i){return i in J})||J.CI_NAME==="codeship"?1:e;if("TEAMCITY_VERSION"in J)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(J.TEAMCITY_VERSION)?1:0;if("TERM_PROGRAM"in J){var n=parseInt((J.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(J.TERM_PROGRAM){case"iTerm.app":return n>=3?3:2;case"Hyper":return 3;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test(J.TERM)?2:/^screen|^xterm|^vt100|^rxvt|color|ansi|cygwin|linux/i.test(J.TERM)||"COLORTERM"in J?1:(J.TERM==="dumb",e)}function rn(t){var e=ac(t);return oc(e)}us.exports={supportsColor:rn,stdout:rn(process.stdout),stderr:rn(process.stderr)}});var fs=f((V0,cs)=>{cs.exports=function(e,r){var n="";e=e||"Run the trap, drop the bass",e=e.split("");var i={a:["@","\u0104","\u023A","\u0245","\u0394","\u039B","\u0414"],b:["\xDF","\u0181","\u0243","\u026E","\u03B2","\u0E3F"],c:["\xA9","\u023B","\u03FE"],d:["\xD0","\u018A","\u0500","\u0501","\u0502","\u0503"],e:["\xCB","\u0115","\u018E","\u0258","\u03A3","\u03BE","\u04BC","\u0A6C"],f:["\u04FA"],g:["\u0262"],h:["\u0126","\u0195","\u04A2","\u04BA","\u04C7","\u050A"],i:["\u0F0F"],j:["\u0134"],k:["\u0138","\u04A0","\u04C3","\u051E"],l:["\u0139"],m:["\u028D","\u04CD","\u04CE","\u0520","\u0521","\u0D69"],n:["\xD1","\u014B","\u019D","\u0376","\u03A0","\u048A"],o:["\xD8","\xF5","\xF8","\u01FE","\u0298","\u047A","\u05DD","\u06DD","\u0E4F"],p:["\u01F7","\u048E"],q:["\u09CD"],r:["\xAE","\u01A6","\u0210","\u024C","\u0280","\u042F"],s:["\xA7","\u03DE","\u03DF","\u03E8"],t:["\u0141","\u0166","\u0373"],u:["\u01B1","\u054D"],v:["\u05D8"],w:["\u0428","\u0460","\u047C","\u0D70"],x:["\u04B2","\u04FE","\u04FC","\u04FD"],y:["\xA5","\u04B0","\u04CB"],z:["\u01B5","\u0240"]};return e.forEach(function(s){s=s.toLowerCase();var o=i[s]||[" "],a=Math.floor(Math.random()*o.length);typeof i[s]<"u"?n+=i[s][a]:n+=s}),n}});var ds=f((K0,hs)=>{hs.exports=function(e,r){e=e||" he is here ";var n={up:["\u030D","\u030E","\u0304","\u0305","\u033F","\u0311","\u0306","\u0310","\u0352","\u0357","\u0351","\u0307","\u0308","\u030A","\u0342","\u0313","\u0308","\u034A","\u034B","\u034C","\u0303","\u0302","\u030C","\u0350","\u0300","\u0301","\u030B","\u030F","\u0312","\u0313","\u0314","\u033D","\u0309","\u0363","\u0364","\u0365","\u0366","\u0367","\u0368","\u0369","\u036A","\u036B","\u036C","\u036D","\u036E","\u036F","\u033E","\u035B","\u0346","\u031A"],down:["\u0316","\u0317","\u0318","\u0319","\u031C","\u031D","\u031E","\u031F","\u0320","\u0324","\u0325","\u0326","\u0329","\u032A","\u032B","\u032C","\u032D","\u032E","\u032F","\u0330","\u0331","\u0332","\u0333","\u0339","\u033A","\u033B","\u033C","\u0345","\u0347","\u0348","\u0349","\u034D","\u034E","\u0353","\u0354","\u0355","\u0356","\u0359","\u035A","\u0323"],mid:["\u0315","\u031B","\u0300","\u0301","\u0358","\u0321","\u0322","\u0327","\u0328","\u0334","\u0335","\u0336","\u035C","\u035D","\u035E","\u035F","\u0360","\u0362","\u0338","\u0337","\u0361"," \u0489"]},i=[].concat(n.up,n.down,n.mid);function s(u){var l=Math.floor(Math.random()*u);return l}function o(u){var l=!1;return i.filter(function(d){l=d===u}),l}function a(u,l){var d="",g,p;l=l||{},l.up=typeof l.up<"u"?l.up:!0,l.mid=typeof l.mid<"u"?l.mid:!0,l.down=typeof l.down<"u"?l.down:!0,l.size=typeof l.size<"u"?l.size:"maxi",u=u.split("");for(p in u)if(!o(p)){switch(d=d+u[p],g={up:0,down:0,mid:0},l.size){case"mini":g.up=s(8),g.mid=s(2),g.down=s(8);break;case"maxi":g.up=s(16)+3,g.mid=s(4)+1,g.down=s(64)+3;break;default:g.up=s(8)+1,g.mid=s(6)/2,g.down=s(8)+1;break}var v=["up","mid","down"];for(var c in v)for(var b=v[c],w=0;w<=g[b];w++)l[b]&&(d=d+n[b][s(n[b].length)])}return d}return a(e,r)}});var gs=f((J0,ps)=>{ps.exports=function(t){return function(e,r,n){if(e===" ")return e;switch(r%3){case 0:return t.red(e);case 1:return t.white(e);case 2:return t.blue(e)}}}});var bs=f((Z0,ms)=>{ms.exports=function(t){return function(e,r,n){return r%2===0?e:t.inverse(e)}}});var _s=f((Q0,ys)=>{ys.exports=function(t){var e=["red","yellow","green","blue","magenta"];return function(r,n,i){return r===" "?r:t[e[n++%e.length]](r)}}});var ws=f((X0,vs)=>{vs.exports=function(t){var e=["underline","inverse","grey","yellow","red","green","blue","white","cyan","magenta","brightYellow","brightRed","brightGreen","brightBlue","brightWhite","brightCyan","brightMagenta"];return function(r,n,i){return r===" "?r:t[e[Math.round(Math.random()*(e.length-2))]](r)}}});var Rs=f((tm,Os)=>{var M={};Os.exports=M;M.themes={};var uc=require("util"),Ne=M.styles=ss(),Ss=Object.defineProperties,lc=new RegExp(/[\r\n]+/g);M.supportsColor=ls().supportsColor;typeof M.enabled>"u"&&(M.enabled=M.supportsColor()!==!1);M.enable=function(){M.enabled=!0};M.disable=function(){M.enabled=!1};M.stripColors=M.strip=function(t){return(""+t).replace(/\x1B\[\d+m/g,"")};var em=M.stylize=function(e,r){if(!M.enabled)return e+"";var n=Ne[r];return!n&&r in M?M[r](e):n.open+e+n.close},cc=/[|\\{}()[\]^$+*?.]/g,fc=function(t){if(typeof t!="string")throw new TypeError("Expected a string");return t.replace(cc,"\\$&")};function xs(t){var e=function r(){return dc.apply(r,arguments)};return e._styles=t,e.__proto__=hc,e}var Ms=function(){var t={};return Ne.grey=Ne.gray,Object.keys(Ne).forEach(function(e){Ne[e].closeRe=new RegExp(fc(Ne[e].close),"g"),t[e]={get:function(){return xs(this._styles.concat(e))}}}),t}(),hc=Ss(function(){},Ms);function dc(){var t=Array.prototype.slice.call(arguments),e=t.map(function(o){return o!=null&&o.constructor===String?o:uc.inspect(o)}).join(" ");if(!M.enabled||!e)return e;for(var r=e.indexOf(`
|
|
6
|
-
`)!=-1,n=this._styles,i=n.length;i--;){var s=Ne[n[i]];e=s.open+e.replace(s.closeRe,s.open)+s.close,r&&(e=e.replace(lc,function(o){return s.close+o+s.open}))}return e}M.setTheme=function(t){if(typeof t=="string"){console.log("colors.setTheme now only accepts an object, not a string. If you are trying to set a theme from a file, it is now your (the caller's) responsibility to require the file. The old syntax looked like colors.setTheme(__dirname + '/../themes/generic-logging.js'); The new syntax looks like colors.setTheme(require(__dirname + '/../themes/generic-logging.js'));");return}for(var e in t)(function(r){M[r]=function(n){if(typeof t[r]=="object"){var i=n;for(var s in t[r])i=M[t[r][s]](i);return i}return M[t[r]](n)}})(e)};function pc(){var t={};return Object.keys(Ms).forEach(function(e){t[e]={get:function(){return xs([e])}}}),t}var gc=function(e,r){var n=r.split("");return n=n.map(e),n.join("")};M.trap=fs();M.zalgo=ds();M.maps={};M.maps.america=gs()(M);M.maps.zebra=bs()(M);M.maps.rainbow=_s()(M);M.maps.random=ws()(M);for(Es in M.maps)(function(t){M[t]=function(e){return gc(M.maps[t],e)}})(Es);var Es;Ss(M,pc())});var nn=f((rm,Ts)=>{var mc=Rs();Ts.exports=mc});var qs=f(sn=>{"use strict";sn.levels={error:0,warn:1,help:2,data:3,info:4,debug:5,prompt:6,verbose:7,input:8,silly:9};sn.colors={error:"red",warn:"yellow",help:"cyan",data:"grey",info:"green",debug:"blue",prompt:"grey",verbose:"cyan",input:"grey",silly:"magenta"}});var As=f(on=>{"use strict";on.levels={error:0,warn:1,info:2,http:3,verbose:4,debug:5,silly:6};on.colors={error:"red",warn:"yellow",info:"green",http:"green",verbose:"cyan",debug:"blue",silly:"magenta"}});var Ls=f(an=>{"use strict";an.levels={emerg:0,alert:1,crit:2,error:3,warning:4,notice:5,info:6,debug:7};an.colors={emerg:"red",alert:"yellow",crit:"red",error:"red",warning:"red",notice:"yellow",info:"green",debug:"blue"}});var Ns=f(zt=>{"use strict";Object.defineProperty(zt,"cli",{value:qs()});Object.defineProperty(zt,"npm",{value:As()});Object.defineProperty(zt,"syslog",{value:Ls()})});var $=f(dt=>{"use strict";Object.defineProperty(dt,"LEVEL",{value:Symbol.for("level")});Object.defineProperty(dt,"MESSAGE",{value:Symbol.for("message")});Object.defineProperty(dt,"SPLAT",{value:Symbol.for("splat")});Object.defineProperty(dt,"configs",{value:Ns()})});var Jt=f((um,Kt)=>{"use strict";var cn=nn(),{LEVEL:un,MESSAGE:ln}=$();cn.enabled=!0;var js=/\s+/,Vt=class t{constructor(e={}){e.colors&&this.addColors(e.colors),this.options=e}static addColors(e){let r=Object.keys(e).reduce((n,i)=>(n[i]=js.test(e[i])?e[i].split(js):e[i],n),{});return t.allColors=Object.assign({},t.allColors||{},r),t.allColors}addColors(e){return t.addColors(e)}colorize(e,r,n){if(typeof n>"u"&&(n=r),!Array.isArray(t.allColors[e]))return cn[t.allColors[e]](n);for(let i=0,s=t.allColors[e].length;i<s;i++)n=cn[t.allColors[e][i]](n);return n}transform(e,r){return r.all&&typeof e[ln]=="string"&&(e[ln]=this.colorize(e[un],e.level,e[ln])),(r.level||r.all||!r.message)&&(e.level=this.colorize(e[un],e.level)),(r.all||r.message)&&(e.message=this.colorize(e[un],e.level,e.message)),e}};Kt.exports=t=>new Vt(t);Kt.exports.Colorizer=Kt.exports.Format=Vt});var Ps=f((lm,Cs)=>{"use strict";var{Colorizer:bc}=Jt();Cs.exports=t=>(bc.addColors(t.colors||t),t)});var Ds=f((cm,Is)=>{"use strict";var yc=Q();Is.exports=yc(t=>(t.message=` ${t.message}`,t))});var $s=f((fm,ks)=>{"use strict";var _c=Q(),{LEVEL:Fs,MESSAGE:fn}=$();ks.exports=_c((t,{stack:e,cause:r})=>{if(t instanceof Error){let i=Object.assign({},t,{level:t.level,[Fs]:t[Fs]||t.level,message:t.message,[fn]:t[fn]||t.message});return e&&(i.stack=t.stack),r&&(i.cause=t.cause),i}if(!(t.message instanceof Error))return t;let n=t.message;return Object.assign(t,n),t.message=n.message,t[fn]=n.message,e&&(t.stack=n.stack),r&&(t.cause=n.cause),t})});var dn=f((hm,Qt)=>{"use strict";var{configs:vc,LEVEL:Bs,MESSAGE:hn}=$(),Zt=class t{constructor(e={levels:vc.npm.levels}){this.paddings=t.paddingForLevels(e.levels,e.filler),this.options=e}static getLongestLevel(e){let r=Object.keys(e).map(n=>n.length);return Math.max(...r)}static paddingForLevel(e,r,n){let i=n+1-e.length,s=Math.floor(i/r.length);return`${r}${r.repeat(s)}`.slice(0,i)}static paddingForLevels(e,r=" "){let n=t.getLongestLevel(e);return Object.keys(e).reduce((i,s)=>(i[s]=t.paddingForLevel(s,r,n),i),{})}transform(e,r){return e.message=`${this.paddings[e[Bs]]}${e.message}`,e[hn]&&(e[hn]=`${this.paddings[e[Bs]]}${e[hn]}`),e}};Qt.exports=t=>new Zt(t);Qt.exports.Padder=Qt.exports.Format=Zt});var Hs=f((dm,pn)=>{"use strict";var{Colorizer:wc}=Jt(),{Padder:Ec}=dn(),{configs:Sc,MESSAGE:xc}=$(),Xt=class{constructor(e={}){e.levels||(e.levels=Sc.cli.levels),this.colorizer=new wc(e),this.padder=new Ec(e),this.options=e}transform(e,r){return this.colorizer.transform(this.padder.transform(e,r),r),e[xc]=`${e.level}:${e.message}`,e}};pn.exports=t=>new Xt(t);pn.exports.Format=Xt});var Ws=f((pm,gn)=>{"use strict";var Mc=Q();function Gs(t){if(t.every(Oc))return e=>{let r=e;for(let n=0;n<t.length;n++)if(r=t[n].transform(r,t[n].options),!r)return!1;return r}}function Oc(t){if(typeof t.transform!="function")throw new Error(["No transform function found on format. Did you create a format instance?","const myFormat = format(formatFn);","const instance = myFormat();"].join(`
|
|
7
|
-
`));return!0}gn.exports=(...t)=>{let e=Mc(Gs(t)),r=e();return r.Format=e.Format,r};gn.exports.cascade=Gs});var gt=f((_n,zs)=>{"use strict";var{hasOwnProperty:pt}=Object.prototype,Ce=yn();Ce.configure=yn;Ce.stringify=Ce;Ce.default=Ce;_n.stringify=Ce;_n.configure=yn;zs.exports=Ce;var Rc=/[\u0000-\u001f\u0022\u005c\ud800-\udfff]/;function Se(t){return t.length<5e3&&!Rc.test(t)?`"${t}"`:JSON.stringify(t)}function mn(t,e){if(t.length>200||e)return t.sort(e);for(let r=1;r<t.length;r++){let n=t[r],i=r;for(;i!==0&&t[i-1]>n;)t[i]=t[i-1],i--;t[i]=n}return t}var Tc=Object.getOwnPropertyDescriptor(Object.getPrototypeOf(Object.getPrototypeOf(new Int8Array)),Symbol.toStringTag).get;function bn(t){return Tc.call(t)!==void 0&&t.length!==0}function Us(t,e,r){t.length<r&&(r=t.length);let n=e===","?"":" ",i=`"0":${n}${t[0]}`;for(let s=1;s<r;s++)i+=`${e}"${s}":${n}${t[s]}`;return i}function qc(t){if(pt.call(t,"circularValue")){let e=t.circularValue;if(typeof e=="string")return`"${e}"`;if(e==null)return e;if(e===Error||e===TypeError)return{toString(){throw new TypeError("Converting circular structure to JSON")}};throw new TypeError('The "circularValue" argument must be of type string or the value null or undefined')}return'"[Circular]"'}function Ac(t){let e;if(pt.call(t,"deterministic")&&(e=t.deterministic,typeof e!="boolean"&&typeof e!="function"))throw new TypeError('The "deterministic" argument must be of type boolean or comparator function');return e===void 0?!0:e}function Lc(t,e){let r;if(pt.call(t,e)&&(r=t[e],typeof r!="boolean"))throw new TypeError(`The "${e}" argument must be of type boolean`);return r===void 0?!0:r}function Ys(t,e){let r;if(pt.call(t,e)){if(r=t[e],typeof r!="number")throw new TypeError(`The "${e}" argument must be of type number`);if(!Number.isInteger(r))throw new TypeError(`The "${e}" argument must be an integer`);if(r<1)throw new RangeError(`The "${e}" argument must be >= 1`)}return r===void 0?1/0:r}function je(t){return t===1?"1 item":`${t} items`}function Nc(t){let e=new Set;for(let r of t)(typeof r=="string"||typeof r=="number")&&e.add(String(r));return e}function jc(t){if(pt.call(t,"strict")){let e=t.strict;if(typeof e!="boolean")throw new TypeError('The "strict" argument must be of type boolean');if(e)return r=>{let n=`Object can not safely be stringified. Received type ${typeof r}`;throw typeof r!="function"&&(n+=` (${r.toString()})`),new Error(n)}}}function yn(t){t={...t};let e=jc(t);e&&(t.bigint===void 0&&(t.bigint=!1),"circularValue"in t||(t.circularValue=Error));let r=qc(t),n=Lc(t,"bigint"),i=Ac(t),s=typeof i=="function"?i:void 0,o=Ys(t,"maximumDepth"),a=Ys(t,"maximumBreadth");function u(v,c,b,w,S,R){let _=c[v];switch(typeof _=="object"&&_!==null&&typeof _.toJSON=="function"&&(_=_.toJSON(v)),_=w.call(c,v,_),typeof _){case"string":return Se(_);case"object":{if(_===null)return"null";if(b.indexOf(_)!==-1)return r;let O="",P=",",I=R;if(Array.isArray(_)){if(_.length===0)return"[]";if(o<b.length+1)return'"[Array]"';b.push(_),S!==""&&(R+=S,O+=`
|
|
8
|
-
${R}`,P=`,
|
|
9
|
-
${R}`);let z=Math.min(_.length,a),ee=0;for(;ee<z-1;ee++){let We=u(String(ee),_,b,w,S,R);O+=We!==void 0?We:"null",O+=P}let te=u(String(ee),_,b,w,S,R);if(O+=te!==void 0?te:"null",_.length-1>a){let We=_.length-a-1;O+=`${P}"... ${je(We)} not stringified"`}return S!==""&&(O+=`
|
|
10
|
-
${I}`),b.pop(),`[${O}]`}let A=Object.keys(_),D=A.length;if(D===0)return"{}";if(o<b.length+1)return'"[Object]"';let T="",Y="";S!==""&&(R+=S,P=`,
|
|
11
|
-
${R}`,T=" ");let K=Math.min(D,a);i&&!bn(_)&&(A=mn(A,s)),b.push(_);for(let z=0;z<K;z++){let ee=A[z],te=u(ee,_,b,w,S,R);te!==void 0&&(O+=`${Y}${Se(ee)}:${T}${te}`,Y=P)}if(D>a){let z=D-a;O+=`${Y}"...":${T}"${je(z)} not stringified"`,Y=P}return S!==""&&Y.length>1&&(O=`
|
|
12
|
-
${R}${O}
|
|
13
|
-
${I}`),b.pop(),`{${O}}`}case"number":return isFinite(_)?String(_):e?e(_):"null";case"boolean":return _===!0?"true":"false";case"undefined":return;case"bigint":if(n)return String(_);default:return e?e(_):void 0}}function l(v,c,b,w,S,R){switch(typeof c=="object"&&c!==null&&typeof c.toJSON=="function"&&(c=c.toJSON(v)),typeof c){case"string":return Se(c);case"object":{if(c===null)return"null";if(b.indexOf(c)!==-1)return r;let _=R,O="",P=",";if(Array.isArray(c)){if(c.length===0)return"[]";if(o<b.length+1)return'"[Array]"';b.push(c),S!==""&&(R+=S,O+=`
|
|
14
|
-
${R}`,P=`,
|
|
15
|
-
${R}`);let D=Math.min(c.length,a),T=0;for(;T<D-1;T++){let K=l(String(T),c[T],b,w,S,R);O+=K!==void 0?K:"null",O+=P}let Y=l(String(T),c[T],b,w,S,R);if(O+=Y!==void 0?Y:"null",c.length-1>a){let K=c.length-a-1;O+=`${P}"... ${je(K)} not stringified"`}return S!==""&&(O+=`
|
|
16
|
-
${_}`),b.pop(),`[${O}]`}b.push(c);let I="";S!==""&&(R+=S,P=`,
|
|
17
|
-
${R}`,I=" ");let A="";for(let D of w){let T=l(D,c[D],b,w,S,R);T!==void 0&&(O+=`${A}${Se(D)}:${I}${T}`,A=P)}return S!==""&&A.length>1&&(O=`
|
|
18
|
-
${R}${O}
|
|
19
|
-
${_}`),b.pop(),`{${O}}`}case"number":return isFinite(c)?String(c):e?e(c):"null";case"boolean":return c===!0?"true":"false";case"undefined":return;case"bigint":if(n)return String(c);default:return e?e(c):void 0}}function d(v,c,b,w,S){switch(typeof c){case"string":return Se(c);case"object":{if(c===null)return"null";if(typeof c.toJSON=="function"){if(c=c.toJSON(v),typeof c!="object")return d(v,c,b,w,S);if(c===null)return"null"}if(b.indexOf(c)!==-1)return r;let R=S;if(Array.isArray(c)){if(c.length===0)return"[]";if(o<b.length+1)return'"[Array]"';b.push(c),S+=w;let T=`
|
|
20
|
-
${S}`,Y=`,
|
|
21
|
-
${S}`,K=Math.min(c.length,a),z=0;for(;z<K-1;z++){let te=d(String(z),c[z],b,w,S);T+=te!==void 0?te:"null",T+=Y}let ee=d(String(z),c[z],b,w,S);if(T+=ee!==void 0?ee:"null",c.length-1>a){let te=c.length-a-1;T+=`${Y}"... ${je(te)} not stringified"`}return T+=`
|
|
22
|
-
${R}`,b.pop(),`[${T}]`}let _=Object.keys(c),O=_.length;if(O===0)return"{}";if(o<b.length+1)return'"[Object]"';S+=w;let P=`,
|
|
23
|
-
${S}`,I="",A="",D=Math.min(O,a);bn(c)&&(I+=Us(c,P,a),_=_.slice(c.length),D-=c.length,A=P),i&&(_=mn(_,s)),b.push(c);for(let T=0;T<D;T++){let Y=_[T],K=d(Y,c[Y],b,w,S);K!==void 0&&(I+=`${A}${Se(Y)}: ${K}`,A=P)}if(O>a){let T=O-a;I+=`${A}"...": "${je(T)} not stringified"`,A=P}return A!==""&&(I=`
|
|
24
|
-
${S}${I}
|
|
25
|
-
${R}`),b.pop(),`{${I}}`}case"number":return isFinite(c)?String(c):e?e(c):"null";case"boolean":return c===!0?"true":"false";case"undefined":return;case"bigint":if(n)return String(c);default:return e?e(c):void 0}}function g(v,c,b){switch(typeof c){case"string":return Se(c);case"object":{if(c===null)return"null";if(typeof c.toJSON=="function"){if(c=c.toJSON(v),typeof c!="object")return g(v,c,b);if(c===null)return"null"}if(b.indexOf(c)!==-1)return r;let w="",S=c.length!==void 0;if(S&&Array.isArray(c)){if(c.length===0)return"[]";if(o<b.length+1)return'"[Array]"';b.push(c);let I=Math.min(c.length,a),A=0;for(;A<I-1;A++){let T=g(String(A),c[A],b);w+=T!==void 0?T:"null",w+=","}let D=g(String(A),c[A],b);if(w+=D!==void 0?D:"null",c.length-1>a){let T=c.length-a-1;w+=`,"... ${je(T)} not stringified"`}return b.pop(),`[${w}]`}let R=Object.keys(c),_=R.length;if(_===0)return"{}";if(o<b.length+1)return'"[Object]"';let O="",P=Math.min(_,a);S&&bn(c)&&(w+=Us(c,",",a),R=R.slice(c.length),P-=c.length,O=","),i&&(R=mn(R,s)),b.push(c);for(let I=0;I<P;I++){let A=R[I],D=g(A,c[A],b);D!==void 0&&(w+=`${O}${Se(A)}:${D}`,O=",")}if(_>a){let I=_-a;w+=`${O}"...":"${je(I)} not stringified"`}return b.pop(),`{${w}}`}case"number":return isFinite(c)?String(c):e?e(c):"null";case"boolean":return c===!0?"true":"false";case"undefined":return;case"bigint":if(n)return String(c);default:return e?e(c):void 0}}function p(v,c,b){if(arguments.length>1){let w="";if(typeof b=="number"?w=" ".repeat(Math.min(b,10)):typeof b=="string"&&(w=b.slice(0,10)),c!=null){if(typeof c=="function")return u("",{"":v},[],c,w,"");if(Array.isArray(c))return l("",v,[],Nc(c),w,"")}if(w.length!==0)return d("",v,[],w,"")}return g("",v,[])}return p}});var vn=f((gm,Vs)=>{"use strict";var Cc=Q(),{MESSAGE:Pc}=$(),Ic=gt();function Dc(t,e){return typeof e=="bigint"?e.toString():e}Vs.exports=Cc((t,e)=>{let r=Ic.configure(e);return t[Pc]=r(t,e.replacer||Dc,e.space),t})});var Js=f((mm,Ks)=>{"use strict";var Fc=Q();Ks.exports=Fc((t,e)=>e.message?(t.message=`[${e.label}] ${t.message}`,t):(t.label=e.label,t))});var Qs=f((bm,Zs)=>{"use strict";var kc=Q(),{MESSAGE:$c}=$(),Bc=gt();Zs.exports=kc(t=>{let e={};return t.message&&(e["@message"]=t.message,delete t.message),t.timestamp&&(e["@timestamp"]=t.timestamp,delete t.timestamp),e["@fields"]=t,t[$c]=Bc(e),t})});var eo=f((ym,Xs)=>{"use strict";var Hc=Q();function Gc(t,e,r){let n=e.reduce((s,o)=>(s[o]=t[o],delete t[o],s),{}),i=Object.keys(t).reduce((s,o)=>(s[o]=t[o],delete t[o],s),{});return Object.assign(t,n,{[r]:i}),t}function Wc(t,e,r){return t[r]=e.reduce((n,i)=>(n[i]=t[i],delete t[i],n),{}),t}Xs.exports=Hc((t,e={})=>{let r="metadata";e.key&&(r=e.key);let n=[];return!e.fillExcept&&!e.fillWith&&(n.push("level"),n.push("message")),e.fillExcept&&(n=e.fillExcept),n.length>0?Gc(t,n,r):e.fillWith?Wc(t,e.fillWith,r):t})});var ro=f((_m,to)=>{var Ke=1e3,Je=Ke*60,Ze=Je*60,Pe=Ze*24,Uc=Pe*7,Yc=Pe*365.25;to.exports=function(t,e){e=e||{};var r=typeof t;if(r==="string"&&t.length>0)return zc(t);if(r==="number"&&isFinite(t))return e.long?Kc(t):Vc(t);throw new Error("val is not a non-empty string or a valid number. val="+JSON.stringify(t))};function zc(t){if(t=String(t),!(t.length>100)){var e=/^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(t);if(e){var r=parseFloat(e[1]),n=(e[2]||"ms").toLowerCase();switch(n){case"years":case"year":case"yrs":case"yr":case"y":return r*Yc;case"weeks":case"week":case"w":return r*Uc;case"days":case"day":case"d":return r*Pe;case"hours":case"hour":case"hrs":case"hr":case"h":return r*Ze;case"minutes":case"minute":case"mins":case"min":case"m":return r*Je;case"seconds":case"second":case"secs":case"sec":case"s":return r*Ke;case"milliseconds":case"millisecond":case"msecs":case"msec":case"ms":return r;default:return}}}}function Vc(t){var e=Math.abs(t);return e>=Pe?Math.round(t/Pe)+"d":e>=Ze?Math.round(t/Ze)+"h":e>=Je?Math.round(t/Je)+"m":e>=Ke?Math.round(t/Ke)+"s":t+"ms"}function Kc(t){var e=Math.abs(t);return e>=Pe?er(t,e,Pe,"day"):e>=Ze?er(t,e,Ze,"hour"):e>=Je?er(t,e,Je,"minute"):e>=Ke?er(t,e,Ke,"second"):t+" ms"}function er(t,e,r,n){var i=e>=r*1.5;return Math.round(t/r)+" "+n+(i?"s":"")}});var io=f((mt,no)=>{"use strict";var Jc=Q(),Zc=ro();no.exports=Jc(t=>{let e=+new Date;return mt.diff=e-(mt.prevTime||e),mt.prevTime=e,t.ms=`+${Zc(mt.diff)}`,t})});var ao=f((vm,oo)=>{"use strict";var Qc=require("util").inspect,Xc=Q(),{LEVEL:ef,MESSAGE:so,SPLAT:tf}=$();oo.exports=Xc((t,e={})=>{let r=Object.assign({},t);return delete r[ef],delete r[so],delete r[tf],t[so]=Qc(r,!1,e.depth||null,e.colorize),t})});var uo=f((wm,rr)=>{"use strict";var{MESSAGE:rf}=$(),tr=class{constructor(e){this.template=e}transform(e){return e[rf]=this.template(e),e}};rr.exports=t=>new tr(t);rr.exports.Printf=rr.exports.Format=tr});var fo=f((Em,co)=>{"use strict";var nf=Q(),{MESSAGE:lo}=$(),sf=gt();co.exports=nf(t=>{let e=sf(Object.assign({},t,{level:void 0,message:void 0,splat:void 0})),r=t.padding&&t.padding[t.level]||"";return e!=="{}"?t[lo]=`${t.level}:${r} ${t.message} ${e}`:t[lo]=`${t.level}:${r} ${t.message}`,t})});var go=f((Sm,po)=>{"use strict";var of=require("util"),{SPLAT:ho}=$(),af=/%[scdjifoO%]/g,uf=/%%/g,wn=class{constructor(e){this.options=e}_splat(e,r){let n=e.message,i=e[ho]||e.splat||[],s=n.match(uf),o=s&&s.length||0,u=r.length-o-i.length,l=u<0?i.splice(u,-1*u):[],d=l.length;if(d)for(let g=0;g<d;g++)Object.assign(e,l[g]);return e.message=of.format(n,...i),e}transform(e){let r=e.message,n=e[ho]||e.splat;if(!n||!n.length)return e;let i=r&&r.match&&r.match(af);if(!i&&(n||n.length)){let s=n.length>1?n.splice(0):n,o=s.length;if(o)for(let a=0;a<o;a++)Object.assign(e,s[a]);return e}return i?this._splat(e,i):e}};po.exports=t=>new wn(t)});var bo=f((nr,mo)=>{(function(t,e){typeof nr=="object"&&typeof mo<"u"?e(nr):typeof define=="function"&&define.amd?define(["exports"],e):e(t.fecha={})})(nr,function(t){"use strict";var e=/d{1,4}|M{1,4}|YY(?:YY)?|S{1,3}|Do|ZZ|Z|([HhMsDm])\1?|[aA]|"[^"]*"|'[^']*'/g,r="\\d\\d?",n="\\d\\d",i="\\d{3}",s="\\d{4}",o="[^\\s]+",a=/\[([^]*?)\]/gm;function u(h,y){for(var N=[],Z=0,E=h.length;Z<E;Z++)N.push(h[Z].substr(0,y));return N}var l=function(h){return function(y,N){var Z=N[h].map(function(fe){return fe.toLowerCase()}),E=Z.indexOf(y.toLowerCase());return E>-1?E:null}};function d(h){for(var y=[],N=1;N<arguments.length;N++)y[N-1]=arguments[N];for(var Z=0,E=y;Z<E.length;Z++){var fe=E[Z];for(var Le in fe)h[Le]=fe[Le]}return h}var g=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],p=["January","February","March","April","May","June","July","August","September","October","November","December"],v=u(p,3),c=u(g,3),b={dayNamesShort:c,dayNames:g,monthNamesShort:v,monthNames:p,amPm:["am","pm"],DoFn:function(h){return h+["th","st","nd","rd"][h%10>3?0:(h-h%10!==10?1:0)*h%10]}},w=d({},b),S=function(h){return w=d(w,h)},R=function(h){return h.replace(/[|\\{()[^$+*?.-]/g,"\\$&")},_=function(h,y){for(y===void 0&&(y=2),h=String(h);h.length<y;)h="0"+h;return h},O={D:function(h){return String(h.getDate())},DD:function(h){return _(h.getDate())},Do:function(h,y){return y.DoFn(h.getDate())},d:function(h){return String(h.getDay())},dd:function(h){return _(h.getDay())},ddd:function(h,y){return y.dayNamesShort[h.getDay()]},dddd:function(h,y){return y.dayNames[h.getDay()]},M:function(h){return String(h.getMonth()+1)},MM:function(h){return _(h.getMonth()+1)},MMM:function(h,y){return y.monthNamesShort[h.getMonth()]},MMMM:function(h,y){return y.monthNames[h.getMonth()]},YY:function(h){return _(String(h.getFullYear()),4).substr(2)},YYYY:function(h){return _(h.getFullYear(),4)},h:function(h){return String(h.getHours()%12||12)},hh:function(h){return _(h.getHours()%12||12)},H:function(h){return String(h.getHours())},HH:function(h){return _(h.getHours())},m:function(h){return String(h.getMinutes())},mm:function(h){return _(h.getMinutes())},s:function(h){return String(h.getSeconds())},ss:function(h){return _(h.getSeconds())},S:function(h){return String(Math.round(h.getMilliseconds()/100))},SS:function(h){return _(Math.round(h.getMilliseconds()/10),2)},SSS:function(h){return _(h.getMilliseconds(),3)},a:function(h,y){return h.getHours()<12?y.amPm[0]:y.amPm[1]},A:function(h,y){return h.getHours()<12?y.amPm[0].toUpperCase():y.amPm[1].toUpperCase()},ZZ:function(h){var y=h.getTimezoneOffset();return(y>0?"-":"+")+_(Math.floor(Math.abs(y)/60)*100+Math.abs(y)%60,4)},Z:function(h){var y=h.getTimezoneOffset();return(y>0?"-":"+")+_(Math.floor(Math.abs(y)/60),2)+":"+_(Math.abs(y)%60,2)}},P=function(h){return+h-1},I=[null,r],A=[null,o],D=["isPm",o,function(h,y){var N=h.toLowerCase();return N===y.amPm[0]?0:N===y.amPm[1]?1:null}],T=["timezoneOffset","[^\\s]*?[\\+\\-]\\d\\d:?\\d\\d|[^\\s]*?Z?",function(h){var y=(h+"").match(/([+-]|\d\d)/gi);if(y){var N=+y[1]*60+parseInt(y[2],10);return y[0]==="+"?N:-N}return 0}],Y={D:["day",r],DD:["day",n],Do:["day",r+o,function(h){return parseInt(h,10)}],M:["month",r,P],MM:["month",n,P],YY:["year",n,function(h){var y=new Date,N=+(""+y.getFullYear()).substr(0,2);return+(""+(+h>68?N-1:N)+h)}],h:["hour",r,void 0,"isPm"],hh:["hour",n,void 0,"isPm"],H:["hour",r],HH:["hour",n],m:["minute",r],mm:["minute",n],s:["second",r],ss:["second",n],YYYY:["year",s],S:["millisecond","\\d",function(h){return+h*100}],SS:["millisecond",n,function(h){return+h*10}],SSS:["millisecond",i],d:I,dd:I,ddd:A,dddd:A,MMM:["month",o,l("monthNamesShort")],MMMM:["month",o,l("monthNames")],a:D,A:D,ZZ:T,Z:T},K={default:"ddd MMM DD YYYY HH:mm:ss",shortDate:"M/D/YY",mediumDate:"MMM D, YYYY",longDate:"MMMM D, YYYY",fullDate:"dddd, MMMM D, YYYY",isoDate:"YYYY-MM-DD",isoDateTime:"YYYY-MM-DDTHH:mm:ssZ",shortTime:"HH:mm",mediumTime:"HH:mm:ss",longTime:"HH:mm:ss.SSS"},z=function(h){return d(K,h)},ee=function(h,y,N){if(y===void 0&&(y=K.default),N===void 0&&(N={}),typeof h=="number"&&(h=new Date(h)),Object.prototype.toString.call(h)!=="[object Date]"||isNaN(h.getTime()))throw new Error("Invalid Date pass to format");y=K[y]||y;var Z=[];y=y.replace(a,function(fe,Le){return Z.push(Le),"@@@"});var E=d(d({},w),N);return y=y.replace(e,function(fe){return O[fe](h,E)}),y.replace(/@@@/g,function(){return Z.shift()})};function te(h,y,N){if(N===void 0&&(N={}),typeof y!="string")throw new Error("Invalid format in fecha parse");if(y=K[y]||y,h.length>1e3)return null;var Z=new Date,E={year:Z.getFullYear(),month:0,day:1,hour:0,minute:0,second:0,millisecond:0,isPm:null,timezoneOffset:null},fe=[],Le=[],lt=y.replace(a,function(ct,Ue){return Le.push(R(Ue)),"@@@"}),kt={},Di={};lt=R(lt).replace(e,function(ct){var Ue=Y[ct],Jr=Ue[0],$l=Ue[1],Bi=Ue[3];if(kt[Jr])throw new Error("Invalid format. "+Jr+" specified twice in format");return kt[Jr]=!0,Bi&&(Di[Bi]=!0),fe.push(Ue),"("+$l+")"}),Object.keys(Di).forEach(function(ct){if(!kt[ct])throw new Error("Invalid format. "+ct+" is required in specified format")}),lt=lt.replace(/@@@/g,function(){return Le.shift()});var $t=h.match(new RegExp(lt,"i"));if(!$t)return null;for(var Dl=d(d({},w),N),se=1;se<$t.length;se++){var Fi=fe[se-1],Fl=Fi[0],ki=Fi[2],$i=ki?ki($t[se],Dl):+$t[se];if($i==null)return null;E[Fl]=$i}E.isPm===1&&E.hour!=null&&+E.hour!=12?E.hour=+E.hour+12:E.isPm===0&&+E.hour==12&&(E.hour=0);var Bt;if(E.timezoneOffset==null){Bt=new Date(E.year,E.month,E.day,E.hour,E.minute,E.second,E.millisecond);for(var Ht=[["month","getMonth"],["day","getDate"],["hour","getHours"],["minute","getMinutes"],["second","getSeconds"]],se=0,kl=Ht.length;se<kl;se++)if(kt[Ht[se][0]]&&E[Ht[se][0]]!==Bt[Ht[se][1]]())return null}else if(Bt=new Date(Date.UTC(E.year,E.month,E.day,E.hour,E.minute-E.timezoneOffset,E.second,E.millisecond)),E.month>11||E.month<0||E.day>31||E.day<1||E.hour>23||E.hour<0||E.minute>59||E.minute<0||E.second>59||E.second<0)return null;return Bt}var We={format:ee,parse:te,defaultI18n:b,setGlobalDateI18n:S,setGlobalDateMasks:z};t.assign=d,t.default=We,t.format=ee,t.parse=te,t.defaultI18n=b,t.setGlobalDateI18n=S,t.setGlobalDateMasks=z,Object.defineProperty(t,"__esModule",{value:!0})})});var _o=f((xm,yo)=>{"use strict";var lf=bo(),cf=Q();yo.exports=cf((t,e={})=>(e.format&&(t.timestamp=typeof e.format=="function"?e.format():lf.format(new Date,e.format)),t.timestamp||(t.timestamp=new Date().toISOString()),e.alias&&(t[e.alias]=t.timestamp),t))});var wo=f((Mm,vo)=>{"use strict";var En=nn(),ff=Q(),{MESSAGE:Sn}=$();vo.exports=ff((t,e)=>(e.level!==!1&&(t.level=En.strip(t.level)),e.message!==!1&&(t.message=En.strip(String(t.message))),e.raw!==!1&&t[Sn]&&(t[Sn]=En.strip(String(t[Sn]))),t))});var Mn=f(xn=>{"use strict";var hf=xn.format=Q();xn.levels=Ps();function V(t,e){Object.defineProperty(hf,t,{get(){return e()},configurable:!0})}V("align",function(){return Ds()});V("errors",function(){return $s()});V("cli",function(){return Hs()});V("combine",function(){return Ws()});V("colorize",function(){return Jt()});V("json",function(){return vn()});V("label",function(){return Js()});V("logstash",function(){return Qs()});V("metadata",function(){return eo()});V("ms",function(){return io()});V("padLevels",function(){return dn()});V("prettyPrint",function(){return ao()});V("printf",function(){return uo()});V("simple",function(){return fo()});V("splat",function(){return go()});V("timestamp",function(){return _o()});V("uncolorize",function(){return wo()})});var On=f(ir=>{"use strict";var{format:Eo}=require("util");ir.warn={deprecated(t){return()=>{throw new Error(Eo("{ %s } was removed in winston@3.0.0.",t))}},useFormat(t){return()=>{throw new Error([Eo("{ %s } was removed in winston@3.0.0.",t),"Use a custom winston.format = winston.format(function) instead."].join(`
|
|
26
|
-
`))}},forFunctions(t,e,r){r.forEach(n=>{t[n]=ir.warn[e](n)})},forProperties(t,e,r){r.forEach(n=>{let i=ir.warn[e](n);Object.defineProperty(t,n,{get:i,set:i})})}}});var So=f((Tm,df)=>{df.exports={name:"winston",description:"A logger for just about everything.",version:"3.19.0",author:"Charlie Robbins <charlie.robbins@gmail.com>",maintainers:["David Hyde <dabh@alumni.stanford.edu>"],repository:{type:"git",url:"https://github.com/winstonjs/winston.git"},keywords:["winston","logger","logging","logs","sysadmin","bunyan","pino","loglevel","tools","json","stream"],dependencies:{"@dabh/diagnostics":"^2.0.8","@colors/colors":"^1.6.0",async:"^3.2.3","is-stream":"^2.0.0",logform:"^2.7.0","one-time":"^1.0.0","readable-stream":"^3.4.0","safe-stable-stringify":"^2.3.1","stack-trace":"0.0.x","triple-beam":"^1.3.0","winston-transport":"^4.9.0"},devDependencies:{"@babel/cli":"^7.23.9","@babel/core":"^7.24.0","@babel/preset-env":"^7.24.0","@dabh/eslint-config-populist":"^4.4.0","@types/node":"^20.11.24","abstract-winston-transport":"^0.5.1",assume:"^2.2.0","cross-spawn-async":"^2.2.5",eslint:"^8.57.0",hock:"^1.4.1",jest:"^29.7.0",rimraf:"5.0.10",split2:"^4.1.0","std-mocks":"^2.0.0",through2:"^4.0.2","winston-compat":"^0.1.5"},main:"./lib/winston.js",browser:"./dist/winston",types:"./index.d.ts",scripts:{lint:"eslint lib/*.js lib/winston/*.js lib/winston/**/*.js --resolve-plugins-relative-to ./node_modules/@dabh/eslint-config-populist",test:"jest","test:unit":"jest -c test/jest.config.unit.js","test:integration":"jest -c test/jest.config.integration.js","test:typescript":"npx --package typescript tsc --project test",build:"babel lib -d dist",prebuild:"rimraf dist",prepublishOnly:"npm run build"},engines:{node:">= 12.0.0"},license:"MIT"}});var Mo=f((qm,xo)=>{xo.exports=require("util").deprecate});var Rn=f((Am,Oo)=>{Oo.exports=require("stream")});var qn=f((Lm,To)=>{"use strict";function pf(t,e){var r=this,n=this._readableState&&this._readableState.destroyed,i=this._writableState&&this._writableState.destroyed;return n||i?(e?e(t):t&&(this._writableState?this._writableState.errorEmitted||(this._writableState.errorEmitted=!0,process.nextTick(Tn,this,t)):process.nextTick(Tn,this,t)),this):(this._readableState&&(this._readableState.destroyed=!0),this._writableState&&(this._writableState.destroyed=!0),this._destroy(t||null,function(s){!e&&s?r._writableState?r._writableState.errorEmitted?process.nextTick(sr,r):(r._writableState.errorEmitted=!0,process.nextTick(Ro,r,s)):process.nextTick(Ro,r,s):e?(process.nextTick(sr,r),e(s)):process.nextTick(sr,r)}),this)}function Ro(t,e){Tn(t,e),sr(t)}function sr(t){t._writableState&&!t._writableState.emitClose||t._readableState&&!t._readableState.emitClose||t.emit("close")}function gf(){this._readableState&&(this._readableState.destroyed=!1,this._readableState.reading=!1,this._readableState.ended=!1,this._readableState.endEmitted=!1),this._writableState&&(this._writableState.destroyed=!1,this._writableState.ended=!1,this._writableState.ending=!1,this._writableState.finalCalled=!1,this._writableState.prefinished=!1,this._writableState.finished=!1,this._writableState.errorEmitted=!1)}function Tn(t,e){t.emit("error",e)}function mf(t,e){var r=t._readableState,n=t._writableState;r&&r.autoDestroy||n&&n.autoDestroy?t.destroy(e):t.emit("error",e)}To.exports={destroy:pf,undestroy:gf,errorOrDestroy:mf}});var xe=f((Nm,Lo)=>{"use strict";var Ao={};function ne(t,e,r){r||(r=Error);function n(s,o,a){return typeof e=="string"?e:e(s,o,a)}class i extends r{constructor(o,a,u){super(n(o,a,u))}}i.prototype.name=r.name,i.prototype.code=t,Ao[t]=i}function qo(t,e){if(Array.isArray(t)){let r=t.length;return t=t.map(n=>String(n)),r>2?`one of ${e} ${t.slice(0,r-1).join(", ")}, or `+t[r-1]:r===2?`one of ${e} ${t[0]} or ${t[1]}`:`of ${e} ${t[0]}`}else return`of ${e} ${String(t)}`}function bf(t,e,r){return t.substr(!r||r<0?0:+r,e.length)===e}function yf(t,e,r){return(r===void 0||r>t.length)&&(r=t.length),t.substring(r-e.length,r)===e}function _f(t,e,r){return typeof r!="number"&&(r=0),r+e.length>t.length?!1:t.indexOf(e,r)!==-1}ne("ERR_INVALID_OPT_VALUE",function(t,e){return'The value "'+e+'" is invalid for option "'+t+'"'},TypeError);ne("ERR_INVALID_ARG_TYPE",function(t,e,r){let n;typeof e=="string"&&bf(e,"not ")?(n="must not be",e=e.replace(/^not /,"")):n="must be";let i;if(yf(t," argument"))i=`The ${t} ${n} ${qo(e,"type")}`;else{let s=_f(t,".")?"property":"argument";i=`The "${t}" ${s} ${n} ${qo(e,"type")}`}return i+=`. Received type ${typeof r}`,i},TypeError);ne("ERR_STREAM_PUSH_AFTER_EOF","stream.push() after EOF");ne("ERR_METHOD_NOT_IMPLEMENTED",function(t){return"The "+t+" method is not implemented"});ne("ERR_STREAM_PREMATURE_CLOSE","Premature close");ne("ERR_STREAM_DESTROYED",function(t){return"Cannot call "+t+" after a stream was destroyed"});ne("ERR_MULTIPLE_CALLBACK","Callback called multiple times");ne("ERR_STREAM_CANNOT_PIPE","Cannot pipe, not readable");ne("ERR_STREAM_WRITE_AFTER_END","write after end");ne("ERR_STREAM_NULL_VALUES","May not write null values to stream",TypeError);ne("ERR_UNKNOWN_ENCODING",function(t){return"Unknown encoding: "+t},TypeError);ne("ERR_STREAM_UNSHIFT_AFTER_END_EVENT","stream.unshift() after end event");Lo.exports.codes=Ao});var An=f((jm,No)=>{"use strict";var vf=xe().codes.ERR_INVALID_OPT_VALUE;function wf(t,e,r){return t.highWaterMark!=null?t.highWaterMark:e?t[r]:null}function Ef(t,e,r,n){var i=wf(e,n,r);if(i!=null){if(!(isFinite(i)&&Math.floor(i)===i)||i<0){var s=n?r:"highWaterMark";throw new vf(s,i)}return Math.floor(i)}return t.objectMode?16:16*1024}No.exports={getHighWaterMark:Ef}});var jo=f((Cm,Ln)=>{typeof Object.create=="function"?Ln.exports=function(e,r){r&&(e.super_=r,e.prototype=Object.create(r.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}))}:Ln.exports=function(e,r){if(r){e.super_=r;var n=function(){};n.prototype=r.prototype,e.prototype=new n,e.prototype.constructor=e}}});var Qe=f((Pm,jn)=>{try{if(Nn=require("util"),typeof Nn.inherits!="function")throw"";jn.exports=Nn.inherits}catch{jn.exports=jo()}var Nn});var ko=f((Im,Fo)=>{"use strict";function Co(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),r.push.apply(r,n)}return r}function Po(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?Co(Object(r),!0).forEach(function(n){Sf(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Co(Object(r)).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(r,n))})}return t}function Sf(t,e,r){return e=Do(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function xf(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function Io(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,Do(n.key),n)}}function Mf(t,e,r){return e&&Io(t.prototype,e),r&&Io(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function Do(t){var e=Of(t,"string");return typeof e=="symbol"?e:String(e)}function Of(t,e){if(typeof t!="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}var Rf=require("buffer"),or=Rf.Buffer,Tf=require("util"),Cn=Tf.inspect,qf=Cn&&Cn.custom||"inspect";function Af(t,e,r){or.prototype.copy.call(t,e,r)}Fo.exports=function(){function t(){xf(this,t),this.head=null,this.tail=null,this.length=0}return Mf(t,[{key:"push",value:function(r){var n={data:r,next:null};this.length>0?this.tail.next=n:this.head=n,this.tail=n,++this.length}},{key:"unshift",value:function(r){var n={data:r,next:this.head};this.length===0&&(this.tail=n),this.head=n,++this.length}},{key:"shift",value:function(){if(this.length!==0){var r=this.head.data;return this.length===1?this.head=this.tail=null:this.head=this.head.next,--this.length,r}}},{key:"clear",value:function(){this.head=this.tail=null,this.length=0}},{key:"join",value:function(r){if(this.length===0)return"";for(var n=this.head,i=""+n.data;n=n.next;)i+=r+n.data;return i}},{key:"concat",value:function(r){if(this.length===0)return or.alloc(0);for(var n=or.allocUnsafe(r>>>0),i=this.head,s=0;i;)Af(i.data,n,s),s+=i.data.length,i=i.next;return n}},{key:"consume",value:function(r,n){var i;return r<this.head.data.length?(i=this.head.data.slice(0,r),this.head.data=this.head.data.slice(r)):r===this.head.data.length?i=this.shift():i=n?this._getString(r):this._getBuffer(r),i}},{key:"first",value:function(){return this.head.data}},{key:"_getString",value:function(r){var n=this.head,i=1,s=n.data;for(r-=s.length;n=n.next;){var o=n.data,a=r>o.length?o.length:r;if(a===o.length?s+=o:s+=o.slice(0,r),r-=a,r===0){a===o.length?(++i,n.next?this.head=n.next:this.head=this.tail=null):(this.head=n,n.data=o.slice(a));break}++i}return this.length-=i,s}},{key:"_getBuffer",value:function(r){var n=or.allocUnsafe(r),i=this.head,s=1;for(i.data.copy(n),r-=i.data.length;i=i.next;){var o=i.data,a=r>o.length?o.length:r;if(o.copy(n,n.length-r,0,a),r-=a,r===0){a===o.length?(++s,i.next?this.head=i.next:this.head=this.tail=null):(this.head=i,i.data=o.slice(a));break}++s}return this.length-=s,n}},{key:qf,value:function(r,n){return Cn(this,Po(Po({},n),{},{depth:0,customInspect:!1}))}}]),t}()});var Ho=f((Pn,Bo)=>{var ar=require("buffer"),he=ar.Buffer;function $o(t,e){for(var r in t)e[r]=t[r]}he.from&&he.alloc&&he.allocUnsafe&&he.allocUnsafeSlow?Bo.exports=ar:($o(ar,Pn),Pn.Buffer=Ie);function Ie(t,e,r){return he(t,e,r)}Ie.prototype=Object.create(he.prototype);$o(he,Ie);Ie.from=function(t,e,r){if(typeof t=="number")throw new TypeError("Argument must not be a number");return he(t,e,r)};Ie.alloc=function(t,e,r){if(typeof t!="number")throw new TypeError("Argument must be a number");var n=he(t);return e!==void 0?typeof r=="string"?n.fill(e,r):n.fill(e):n.fill(0),n};Ie.allocUnsafe=function(t){if(typeof t!="number")throw new TypeError("Argument must be a number");return he(t)};Ie.allocUnsafeSlow=function(t){if(typeof t!="number")throw new TypeError("Argument must be a number");return ar.SlowBuffer(t)}});var Fn=f(Wo=>{"use strict";var Dn=Ho().Buffer,Go=Dn.isEncoding||function(t){switch(t=""+t,t&&t.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}};function Lf(t){if(!t)return"utf8";for(var e;;)switch(t){case"utf8":case"utf-8":return"utf8";case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return"utf16le";case"latin1":case"binary":return"latin1";case"base64":case"ascii":case"hex":return t;default:if(e)return;t=(""+t).toLowerCase(),e=!0}}function Nf(t){var e=Lf(t);if(typeof e!="string"&&(Dn.isEncoding===Go||!Go(t)))throw new Error("Unknown encoding: "+t);return e||t}Wo.StringDecoder=bt;function bt(t){this.encoding=Nf(t);var e;switch(this.encoding){case"utf16le":this.text=Ff,this.end=kf,e=4;break;case"utf8":this.fillLast=Pf,e=4;break;case"base64":this.text=$f,this.end=Bf,e=3;break;default:this.write=Hf,this.end=Gf;return}this.lastNeed=0,this.lastTotal=0,this.lastChar=Dn.allocUnsafe(e)}bt.prototype.write=function(t){if(t.length===0)return"";var e,r;if(this.lastNeed){if(e=this.fillLast(t),e===void 0)return"";r=this.lastNeed,this.lastNeed=0}else r=0;return r<t.length?e?e+this.text(t,r):this.text(t,r):e||""};bt.prototype.end=Df;bt.prototype.text=If;bt.prototype.fillLast=function(t){if(this.lastNeed<=t.length)return t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,this.lastTotal-this.lastNeed,0,t.length),this.lastNeed-=t.length};function In(t){return t<=127?0:t>>5===6?2:t>>4===14?3:t>>3===30?4:t>>6===2?-1:-2}function jf(t,e,r){var n=e.length-1;if(n<r)return 0;var i=In(e[n]);return i>=0?(i>0&&(t.lastNeed=i-1),i):--n<r||i===-2?0:(i=In(e[n]),i>=0?(i>0&&(t.lastNeed=i-2),i):--n<r||i===-2?0:(i=In(e[n]),i>=0?(i>0&&(i===2?i=0:t.lastNeed=i-3),i):0))}function Cf(t,e,r){if((e[0]&192)!==128)return t.lastNeed=0,"\uFFFD";if(t.lastNeed>1&&e.length>1){if((e[1]&192)!==128)return t.lastNeed=1,"\uFFFD";if(t.lastNeed>2&&e.length>2&&(e[2]&192)!==128)return t.lastNeed=2,"\uFFFD"}}function Pf(t){var e=this.lastTotal-this.lastNeed,r=Cf(this,t,e);if(r!==void 0)return r;if(this.lastNeed<=t.length)return t.copy(this.lastChar,e,0,this.lastNeed),this.lastChar.toString(this.encoding,0,this.lastTotal);t.copy(this.lastChar,e,0,t.length),this.lastNeed-=t.length}function If(t,e){var r=jf(this,t,e);if(!this.lastNeed)return t.toString("utf8",e);this.lastTotal=r;var n=t.length-(r-this.lastNeed);return t.copy(this.lastChar,0,n),t.toString("utf8",e,n)}function Df(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+"\uFFFD":e}function Ff(t,e){if((t.length-e)%2===0){var r=t.toString("utf16le",e);if(r){var n=r.charCodeAt(r.length-1);if(n>=55296&&n<=56319)return this.lastNeed=2,this.lastTotal=4,this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1],r.slice(0,-1)}return r}return this.lastNeed=1,this.lastTotal=2,this.lastChar[0]=t[t.length-1],t.toString("utf16le",e,t.length-1)}function kf(t){var e=t&&t.length?this.write(t):"";if(this.lastNeed){var r=this.lastTotal-this.lastNeed;return e+this.lastChar.toString("utf16le",0,r)}return e}function $f(t,e){var r=(t.length-e)%3;return r===0?t.toString("base64",e):(this.lastNeed=3-r,this.lastTotal=3,r===1?this.lastChar[0]=t[t.length-1]:(this.lastChar[0]=t[t.length-2],this.lastChar[1]=t[t.length-1]),t.toString("base64",e,t.length-r))}function Bf(t){var e=t&&t.length?this.write(t):"";return this.lastNeed?e+this.lastChar.toString("base64",0,3-this.lastNeed):e}function Hf(t){return t.toString(this.encoding)}function Gf(t){return t&&t.length?this.write(t):""}});var ur=f((Fm,zo)=>{"use strict";var Uo=xe().codes.ERR_STREAM_PREMATURE_CLOSE;function Wf(t){var e=!1;return function(){if(!e){e=!0;for(var r=arguments.length,n=new Array(r),i=0;i<r;i++)n[i]=arguments[i];t.apply(this,n)}}}function Uf(){}function Yf(t){return t.setHeader&&typeof t.abort=="function"}function Yo(t,e,r){if(typeof e=="function")return Yo(t,null,e);e||(e={}),r=Wf(r||Uf);var n=e.readable||e.readable!==!1&&t.readable,i=e.writable||e.writable!==!1&&t.writable,s=function(){t.writable||a()},o=t._writableState&&t._writableState.finished,a=function(){i=!1,o=!0,n||r.call(t)},u=t._readableState&&t._readableState.endEmitted,l=function(){n=!1,u=!0,i||r.call(t)},d=function(c){r.call(t,c)},g=function(){var c;if(n&&!u)return(!t._readableState||!t._readableState.ended)&&(c=new Uo),r.call(t,c);if(i&&!o)return(!t._writableState||!t._writableState.ended)&&(c=new Uo),r.call(t,c)},p=function(){t.req.on("finish",a)};return Yf(t)?(t.on("complete",a),t.on("abort",g),t.req?p():t.on("request",p)):i&&!t._writableState&&(t.on("end",s),t.on("close",s)),t.on("end",l),t.on("finish",a),e.error!==!1&&t.on("error",d),t.on("close",g),function(){t.removeListener("complete",a),t.removeListener("abort",g),t.removeListener("request",p),t.req&&t.req.removeListener("finish",a),t.removeListener("end",s),t.removeListener("close",s),t.removeListener("finish",a),t.removeListener("end",l),t.removeListener("error",d),t.removeListener("close",g)}}zo.exports=Yo});var Ko=f((km,Vo)=>{"use strict";var lr;function Me(t,e,r){return e=zf(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function zf(t){var e=Vf(t,"string");return typeof e=="symbol"?e:String(e)}function Vf(t,e){if(typeof t!="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}var Kf=ur(),Oe=Symbol("lastResolve"),De=Symbol("lastReject"),yt=Symbol("error"),cr=Symbol("ended"),Fe=Symbol("lastPromise"),kn=Symbol("handlePromise"),ke=Symbol("stream");function Re(t,e){return{value:t,done:e}}function Jf(t){var e=t[Oe];if(e!==null){var r=t[ke].read();r!==null&&(t[Fe]=null,t[Oe]=null,t[De]=null,e(Re(r,!1)))}}function Zf(t){process.nextTick(Jf,t)}function Qf(t,e){return function(r,n){t.then(function(){if(e[cr]){r(Re(void 0,!0));return}e[kn](r,n)},n)}}var Xf=Object.getPrototypeOf(function(){}),eh=Object.setPrototypeOf((lr={get stream(){return this[ke]},next:function(){var e=this,r=this[yt];if(r!==null)return Promise.reject(r);if(this[cr])return Promise.resolve(Re(void 0,!0));if(this[ke].destroyed)return new Promise(function(o,a){process.nextTick(function(){e[yt]?a(e[yt]):o(Re(void 0,!0))})});var n=this[Fe],i;if(n)i=new Promise(Qf(n,this));else{var s=this[ke].read();if(s!==null)return Promise.resolve(Re(s,!1));i=new Promise(this[kn])}return this[Fe]=i,i}},Me(lr,Symbol.asyncIterator,function(){return this}),Me(lr,"return",function(){var e=this;return new Promise(function(r,n){e[ke].destroy(null,function(i){if(i){n(i);return}r(Re(void 0,!0))})})}),lr),Xf),th=function(e){var r,n=Object.create(eh,(r={},Me(r,ke,{value:e,writable:!0}),Me(r,Oe,{value:null,writable:!0}),Me(r,De,{value:null,writable:!0}),Me(r,yt,{value:null,writable:!0}),Me(r,cr,{value:e._readableState.endEmitted,writable:!0}),Me(r,kn,{value:function(s,o){var a=n[ke].read();a?(n[Fe]=null,n[Oe]=null,n[De]=null,s(Re(a,!1))):(n[Oe]=s,n[De]=o)},writable:!0}),r));return n[Fe]=null,Kf(e,function(i){if(i&&i.code!=="ERR_STREAM_PREMATURE_CLOSE"){var s=n[De];s!==null&&(n[Fe]=null,n[Oe]=null,n[De]=null,s(i)),n[yt]=i;return}var o=n[Oe];o!==null&&(n[Fe]=null,n[Oe]=null,n[De]=null,o(Re(void 0,!0))),n[cr]=!0}),e.on("readable",Zf.bind(null,n)),n};Vo.exports=th});var Xo=f(($m,Qo)=>{"use strict";function Jo(t,e,r,n,i,s,o){try{var a=t[s](o),u=a.value}catch(l){r(l);return}a.done?e(u):Promise.resolve(u).then(n,i)}function rh(t){return function(){var e=this,r=arguments;return new Promise(function(n,i){var s=t.apply(e,r);function o(u){Jo(s,n,i,o,a,"next",u)}function a(u){Jo(s,n,i,o,a,"throw",u)}o(void 0)})}}function Zo(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),r.push.apply(r,n)}return r}function nh(t){for(var e=1;e<arguments.length;e++){var r=arguments[e]!=null?arguments[e]:{};e%2?Zo(Object(r),!0).forEach(function(n){ih(t,n,r[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):Zo(Object(r)).forEach(function(n){Object.defineProperty(t,n,Object.getOwnPropertyDescriptor(r,n))})}return t}function ih(t,e,r){return e=sh(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function sh(t){var e=oh(t,"string");return typeof e=="symbol"?e:String(e)}function oh(t,e){if(typeof t!="object"||t===null)return t;var r=t[Symbol.toPrimitive];if(r!==void 0){var n=r.call(t,e||"default");if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(t)}var ah=xe().codes.ERR_INVALID_ARG_TYPE;function uh(t,e,r){var n;if(e&&typeof e.next=="function")n=e;else if(e&&e[Symbol.asyncIterator])n=e[Symbol.asyncIterator]();else if(e&&e[Symbol.iterator])n=e[Symbol.iterator]();else throw new ah("iterable",["Iterable"],e);var i=new t(nh({objectMode:!0},r)),s=!1;i._read=function(){s||(s=!0,o())};function o(){return a.apply(this,arguments)}function a(){return a=rh(function*(){try{var u=yield n.next(),l=u.value,d=u.done;d?i.push(null):i.push(yield l)?o():s=!1}catch(g){i.destroy(g)}}),a.apply(this,arguments)}return i}Qo.exports=uh});var Kn=f((Hm,la)=>{"use strict";la.exports=q;var Xe;q.ReadableState=na;var Bm=require("events").EventEmitter,ra=function(e,r){return e.listeners(r).length},vt=Rn(),fr=require("buffer").Buffer,lh=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){};function ch(t){return fr.from(t)}function fh(t){return fr.isBuffer(t)||t instanceof lh}var $n=require("util"),x;$n&&$n.debuglog?x=$n.debuglog("stream"):x=function(){};var hh=ko(),zn=qn(),dh=An(),ph=dh.getHighWaterMark,hr=xe().codes,gh=hr.ERR_INVALID_ARG_TYPE,mh=hr.ERR_STREAM_PUSH_AFTER_EOF,bh=hr.ERR_METHOD_NOT_IMPLEMENTED,yh=hr.ERR_STREAM_UNSHIFT_AFTER_END_EVENT,et,Bn,Hn;Qe()(q,vt);var _t=zn.errorOrDestroy,Gn=["error","close","destroy","pause","resume"];function _h(t,e,r){if(typeof t.prependListener=="function")return t.prependListener(e,r);!t._events||!t._events[e]?t.on(e,r):Array.isArray(t._events[e])?t._events[e].unshift(r):t._events[e]=[r,t._events[e]]}function na(t,e,r){Xe=Xe||$e(),t=t||{},typeof r!="boolean"&&(r=e instanceof Xe),this.objectMode=!!t.objectMode,r&&(this.objectMode=this.objectMode||!!t.readableObjectMode),this.highWaterMark=ph(this,t,"readableHighWaterMark",r),this.buffer=new hh,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.paused=!0,this.emitClose=t.emitClose!==!1,this.autoDestroy=!!t.autoDestroy,this.destroyed=!1,this.defaultEncoding=t.defaultEncoding||"utf8",this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,t.encoding&&(et||(et=Fn().StringDecoder),this.decoder=new et(t.encoding),this.encoding=t.encoding)}function q(t){if(Xe=Xe||$e(),!(this instanceof q))return new q(t);var e=this instanceof Xe;this._readableState=new na(t,this,e),this.readable=!0,t&&(typeof t.read=="function"&&(this._read=t.read),typeof t.destroy=="function"&&(this._destroy=t.destroy)),vt.call(this)}Object.defineProperty(q.prototype,"destroyed",{enumerable:!1,get:function(){return this._readableState===void 0?!1:this._readableState.destroyed},set:function(e){this._readableState&&(this._readableState.destroyed=e)}});q.prototype.destroy=zn.destroy;q.prototype._undestroy=zn.undestroy;q.prototype._destroy=function(t,e){e(t)};q.prototype.push=function(t,e){var r=this._readableState,n;return r.objectMode?n=!0:typeof t=="string"&&(e=e||r.defaultEncoding,e!==r.encoding&&(t=fr.from(t,e),e=""),n=!0),ia(this,t,e,!1,n)};q.prototype.unshift=function(t){return ia(this,t,null,!0,!1)};function ia(t,e,r,n,i){x("readableAddChunk",e);var s=t._readableState;if(e===null)s.reading=!1,Eh(t,s);else{var o;if(i||(o=vh(s,e)),o)_t(t,o);else if(s.objectMode||e&&e.length>0)if(typeof e!="string"&&!s.objectMode&&Object.getPrototypeOf(e)!==fr.prototype&&(e=ch(e)),n)s.endEmitted?_t(t,new yh):Wn(t,s,e,!0);else if(s.ended)_t(t,new mh);else{if(s.destroyed)return!1;s.reading=!1,s.decoder&&!r?(e=s.decoder.write(e),s.objectMode||e.length!==0?Wn(t,s,e,!1):Yn(t,s)):Wn(t,s,e,!1)}else n||(s.reading=!1,Yn(t,s))}return!s.ended&&(s.length<s.highWaterMark||s.length===0)}function Wn(t,e,r,n){e.flowing&&e.length===0&&!e.sync?(e.awaitDrain=0,t.emit("data",r)):(e.length+=e.objectMode?1:r.length,n?e.buffer.unshift(r):e.buffer.push(r),e.needReadable&&dr(t)),Yn(t,e)}function vh(t,e){var r;return!fh(e)&&typeof e!="string"&&e!==void 0&&!t.objectMode&&(r=new gh("chunk",["string","Buffer","Uint8Array"],e)),r}q.prototype.isPaused=function(){return this._readableState.flowing===!1};q.prototype.setEncoding=function(t){et||(et=Fn().StringDecoder);var e=new et(t);this._readableState.decoder=e,this._readableState.encoding=this._readableState.decoder.encoding;for(var r=this._readableState.buffer.head,n="";r!==null;)n+=e.write(r.data),r=r.next;return this._readableState.buffer.clear(),n!==""&&this._readableState.buffer.push(n),this._readableState.length=n.length,this};var ea=1073741824;function wh(t){return t>=ea?t=ea:(t--,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,t|=t>>>16,t++),t}function ta(t,e){return t<=0||e.length===0&&e.ended?0:e.objectMode?1:t!==t?e.flowing&&e.length?e.buffer.head.data.length:e.length:(t>e.highWaterMark&&(e.highWaterMark=wh(t)),t<=e.length?t:e.ended?e.length:(e.needReadable=!0,0))}q.prototype.read=function(t){x("read",t),t=parseInt(t,10);var e=this._readableState,r=t;if(t!==0&&(e.emittedReadable=!1),t===0&&e.needReadable&&((e.highWaterMark!==0?e.length>=e.highWaterMark:e.length>0)||e.ended))return x("read: emitReadable",e.length,e.ended),e.length===0&&e.ended?Un(this):dr(this),null;if(t=ta(t,e),t===0&&e.ended)return e.length===0&&Un(this),null;var n=e.needReadable;x("need readable",n),(e.length===0||e.length-t<e.highWaterMark)&&(n=!0,x("length less than watermark",n)),e.ended||e.reading?(n=!1,x("reading or ended",n)):n&&(x("do read"),e.reading=!0,e.sync=!0,e.length===0&&(e.needReadable=!0),this._read(e.highWaterMark),e.sync=!1,e.reading||(t=ta(r,e)));var i;return t>0?i=aa(t,e):i=null,i===null?(e.needReadable=e.length<=e.highWaterMark,t=0):(e.length-=t,e.awaitDrain=0),e.length===0&&(e.ended||(e.needReadable=!0),r!==t&&e.ended&&Un(this)),i!==null&&this.emit("data",i),i};function Eh(t,e){if(x("onEofChunk"),!e.ended){if(e.decoder){var r=e.decoder.end();r&&r.length&&(e.buffer.push(r),e.length+=e.objectMode?1:r.length)}e.ended=!0,e.sync?dr(t):(e.needReadable=!1,e.emittedReadable||(e.emittedReadable=!0,sa(t)))}}function dr(t){var e=t._readableState;x("emitReadable",e.needReadable,e.emittedReadable),e.needReadable=!1,e.emittedReadable||(x("emitReadable",e.flowing),e.emittedReadable=!0,process.nextTick(sa,t))}function sa(t){var e=t._readableState;x("emitReadable_",e.destroyed,e.length,e.ended),!e.destroyed&&(e.length||e.ended)&&(t.emit("readable"),e.emittedReadable=!1),e.needReadable=!e.flowing&&!e.ended&&e.length<=e.highWaterMark,Vn(t)}function Yn(t,e){e.readingMore||(e.readingMore=!0,process.nextTick(Sh,t,e))}function Sh(t,e){for(;!e.reading&&!e.ended&&(e.length<e.highWaterMark||e.flowing&&e.length===0);){var r=e.length;if(x("maybeReadMore read 0"),t.read(0),r===e.length)break}e.readingMore=!1}q.prototype._read=function(t){_t(this,new bh("_read()"))};q.prototype.pipe=function(t,e){var r=this,n=this._readableState;switch(n.pipesCount){case 0:n.pipes=t;break;case 1:n.pipes=[n.pipes,t];break;default:n.pipes.push(t);break}n.pipesCount+=1,x("pipe count=%d opts=%j",n.pipesCount,e);var i=(!e||e.end!==!1)&&t!==process.stdout&&t!==process.stderr,s=i?a:b;n.endEmitted?process.nextTick(s):r.once("end",s),t.on("unpipe",o);function o(w,S){x("onunpipe"),w===r&&S&&S.hasUnpiped===!1&&(S.hasUnpiped=!0,d())}function a(){x("onend"),t.end()}var u=xh(r);t.on("drain",u);var l=!1;function d(){x("cleanup"),t.removeListener("close",v),t.removeListener("finish",c),t.removeListener("drain",u),t.removeListener("error",p),t.removeListener("unpipe",o),r.removeListener("end",a),r.removeListener("end",b),r.removeListener("data",g),l=!0,n.awaitDrain&&(!t._writableState||t._writableState.needDrain)&&u()}r.on("data",g);function g(w){x("ondata");var S=t.write(w);x("dest.write",S),S===!1&&((n.pipesCount===1&&n.pipes===t||n.pipesCount>1&&ua(n.pipes,t)!==-1)&&!l&&(x("false write response, pause",n.awaitDrain),n.awaitDrain++),r.pause())}function p(w){x("onerror",w),b(),t.removeListener("error",p),ra(t,"error")===0&&_t(t,w)}_h(t,"error",p);function v(){t.removeListener("finish",c),b()}t.once("close",v);function c(){x("onfinish"),t.removeListener("close",v),b()}t.once("finish",c);function b(){x("unpipe"),r.unpipe(t)}return t.emit("pipe",r),n.flowing||(x("pipe resume"),r.resume()),t};function xh(t){return function(){var r=t._readableState;x("pipeOnDrain",r.awaitDrain),r.awaitDrain&&r.awaitDrain--,r.awaitDrain===0&&ra(t,"data")&&(r.flowing=!0,Vn(t))}}q.prototype.unpipe=function(t){var e=this._readableState,r={hasUnpiped:!1};if(e.pipesCount===0)return this;if(e.pipesCount===1)return t&&t!==e.pipes?this:(t||(t=e.pipes),e.pipes=null,e.pipesCount=0,e.flowing=!1,t&&t.emit("unpipe",this,r),this);if(!t){var n=e.pipes,i=e.pipesCount;e.pipes=null,e.pipesCount=0,e.flowing=!1;for(var s=0;s<i;s++)n[s].emit("unpipe",this,{hasUnpiped:!1});return this}var o=ua(e.pipes,t);return o===-1?this:(e.pipes.splice(o,1),e.pipesCount-=1,e.pipesCount===1&&(e.pipes=e.pipes[0]),t.emit("unpipe",this,r),this)};q.prototype.on=function(t,e){var r=vt.prototype.on.call(this,t,e),n=this._readableState;return t==="data"?(n.readableListening=this.listenerCount("readable")>0,n.flowing!==!1&&this.resume()):t==="readable"&&!n.endEmitted&&!n.readableListening&&(n.readableListening=n.needReadable=!0,n.flowing=!1,n.emittedReadable=!1,x("on readable",n.length,n.reading),n.length?dr(this):n.reading||process.nextTick(Mh,this)),r};q.prototype.addListener=q.prototype.on;q.prototype.removeListener=function(t,e){var r=vt.prototype.removeListener.call(this,t,e);return t==="readable"&&process.nextTick(oa,this),r};q.prototype.removeAllListeners=function(t){var e=vt.prototype.removeAllListeners.apply(this,arguments);return(t==="readable"||t===void 0)&&process.nextTick(oa,this),e};function oa(t){var e=t._readableState;e.readableListening=t.listenerCount("readable")>0,e.resumeScheduled&&!e.paused?e.flowing=!0:t.listenerCount("data")>0&&t.resume()}function Mh(t){x("readable nexttick read 0"),t.read(0)}q.prototype.resume=function(){var t=this._readableState;return t.flowing||(x("resume"),t.flowing=!t.readableListening,Oh(this,t)),t.paused=!1,this};function Oh(t,e){e.resumeScheduled||(e.resumeScheduled=!0,process.nextTick(Rh,t,e))}function Rh(t,e){x("resume",e.reading),e.reading||t.read(0),e.resumeScheduled=!1,t.emit("resume"),Vn(t),e.flowing&&!e.reading&&t.read(0)}q.prototype.pause=function(){return x("call pause flowing=%j",this._readableState.flowing),this._readableState.flowing!==!1&&(x("pause"),this._readableState.flowing=!1,this.emit("pause")),this._readableState.paused=!0,this};function Vn(t){var e=t._readableState;for(x("flow",e.flowing);e.flowing&&t.read()!==null;);}q.prototype.wrap=function(t){var e=this,r=this._readableState,n=!1;t.on("end",function(){if(x("wrapped end"),r.decoder&&!r.ended){var o=r.decoder.end();o&&o.length&&e.push(o)}e.push(null)}),t.on("data",function(o){if(x("wrapped data"),r.decoder&&(o=r.decoder.write(o)),!(r.objectMode&&o==null)&&!(!r.objectMode&&(!o||!o.length))){var a=e.push(o);a||(n=!0,t.pause())}});for(var i in t)this[i]===void 0&&typeof t[i]=="function"&&(this[i]=function(a){return function(){return t[a].apply(t,arguments)}}(i));for(var s=0;s<Gn.length;s++)t.on(Gn[s],this.emit.bind(this,Gn[s]));return this._read=function(o){x("wrapped _read",o),n&&(n=!1,t.resume())},this};typeof Symbol=="function"&&(q.prototype[Symbol.asyncIterator]=function(){return Bn===void 0&&(Bn=Ko()),Bn(this)});Object.defineProperty(q.prototype,"readableHighWaterMark",{enumerable:!1,get:function(){return this._readableState.highWaterMark}});Object.defineProperty(q.prototype,"readableBuffer",{enumerable:!1,get:function(){return this._readableState&&this._readableState.buffer}});Object.defineProperty(q.prototype,"readableFlowing",{enumerable:!1,get:function(){return this._readableState.flowing},set:function(e){this._readableState&&(this._readableState.flowing=e)}});q._fromList=aa;Object.defineProperty(q.prototype,"readableLength",{enumerable:!1,get:function(){return this._readableState.length}});function aa(t,e){if(e.length===0)return null;var r;return e.objectMode?r=e.buffer.shift():!t||t>=e.length?(e.decoder?r=e.buffer.join(""):e.buffer.length===1?r=e.buffer.first():r=e.buffer.concat(e.length),e.buffer.clear()):r=e.buffer.consume(t,e.decoder),r}function Un(t){var e=t._readableState;x("endReadable",e.endEmitted),e.endEmitted||(e.ended=!0,process.nextTick(Th,e,t))}function Th(t,e){if(x("endReadableNT",t.endEmitted,t.length),!t.endEmitted&&t.length===0&&(t.endEmitted=!0,e.readable=!1,e.emit("end"),t.autoDestroy)){var r=e._writableState;(!r||r.autoDestroy&&r.finished)&&e.destroy()}}typeof Symbol=="function"&&(q.from=function(t,e){return Hn===void 0&&(Hn=Xo()),Hn(q,t,e)});function ua(t,e){for(var r=0,n=t.length;r<n;r++)if(t[r]===e)return r;return-1}});var $e=f((Gm,fa)=>{"use strict";var qh=Object.keys||function(t){var e=[];for(var r in t)e.push(r);return e};fa.exports=de;var ca=Kn(),Zn=mr();Qe()(de,ca);for(Jn=qh(Zn.prototype),pr=0;pr<Jn.length;pr++)gr=Jn[pr],de.prototype[gr]||(de.prototype[gr]=Zn.prototype[gr]);var Jn,gr,pr;function de(t){if(!(this instanceof de))return new de(t);ca.call(this,t),Zn.call(this,t),this.allowHalfOpen=!0,t&&(t.readable===!1&&(this.readable=!1),t.writable===!1&&(this.writable=!1),t.allowHalfOpen===!1&&(this.allowHalfOpen=!1,this.once("end",Ah)))}Object.defineProperty(de.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}});Object.defineProperty(de.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}});Object.defineProperty(de.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}});function Ah(){this._writableState.ended||process.nextTick(Lh,this)}function Lh(t){t.end()}Object.defineProperty(de.prototype,"destroyed",{enumerable:!1,get:function(){return this._readableState===void 0||this._writableState===void 0?!1:this._readableState.destroyed&&this._writableState.destroyed},set:function(e){this._readableState===void 0||this._writableState===void 0||(this._readableState.destroyed=e,this._writableState.destroyed=e)}})});var mr=f((Wm,ba)=>{"use strict";ba.exports=F;function da(t){var e=this;this.next=null,this.entry=null,this.finish=function(){id(e,t)}}var tt;F.WritableState=Et;var Nh={deprecate:Mo()},pa=Rn(),yr=require("buffer").Buffer,jh=(typeof global<"u"?global:typeof window<"u"?window:typeof self<"u"?self:{}).Uint8Array||function(){};function Ch(t){return yr.from(t)}function Ph(t){return yr.isBuffer(t)||t instanceof jh}var Xn=qn(),Ih=An(),Dh=Ih.getHighWaterMark,Te=xe().codes,Fh=Te.ERR_INVALID_ARG_TYPE,kh=Te.ERR_METHOD_NOT_IMPLEMENTED,$h=Te.ERR_MULTIPLE_CALLBACK,Bh=Te.ERR_STREAM_CANNOT_PIPE,Hh=Te.ERR_STREAM_DESTROYED,Gh=Te.ERR_STREAM_NULL_VALUES,Wh=Te.ERR_STREAM_WRITE_AFTER_END,Uh=Te.ERR_UNKNOWN_ENCODING,rt=Xn.errorOrDestroy;Qe()(F,pa);function Yh(){}function Et(t,e,r){tt=tt||$e(),t=t||{},typeof r!="boolean"&&(r=e instanceof tt),this.objectMode=!!t.objectMode,r&&(this.objectMode=this.objectMode||!!t.writableObjectMode),this.highWaterMark=Dh(this,t,"writableHighWaterMark",r),this.finalCalled=!1,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1,this.destroyed=!1;var n=t.decodeStrings===!1;this.decodeStrings=!n,this.defaultEncoding=t.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(i){Xh(e,i)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.emitClose=t.emitClose!==!1,this.autoDestroy=!!t.autoDestroy,this.bufferedRequestCount=0,this.corkedRequestsFree=new da(this)}Et.prototype.getBuffer=function(){for(var e=this.bufferedRequest,r=[];e;)r.push(e),e=e.next;return r};(function(){try{Object.defineProperty(Et.prototype,"buffer",{get:Nh.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.","DEP0003")})}catch{}})();var br;typeof Symbol=="function"&&Symbol.hasInstance&&typeof Function.prototype[Symbol.hasInstance]=="function"?(br=Function.prototype[Symbol.hasInstance],Object.defineProperty(F,Symbol.hasInstance,{value:function(e){return br.call(this,e)?!0:this!==F?!1:e&&e._writableState instanceof Et}})):br=function(e){return e instanceof this};function F(t){tt=tt||$e();var e=this instanceof tt;if(!e&&!br.call(F,this))return new F(t);this._writableState=new Et(t,this,e),this.writable=!0,t&&(typeof t.write=="function"&&(this._write=t.write),typeof t.writev=="function"&&(this._writev=t.writev),typeof t.destroy=="function"&&(this._destroy=t.destroy),typeof t.final=="function"&&(this._final=t.final)),pa.call(this)}F.prototype.pipe=function(){rt(this,new Bh)};function zh(t,e){var r=new Wh;rt(t,r),process.nextTick(e,r)}function Vh(t,e,r,n){var i;return r===null?i=new Gh:typeof r!="string"&&!e.objectMode&&(i=new Fh("chunk",["string","Buffer"],r)),i?(rt(t,i),process.nextTick(n,i),!1):!0}F.prototype.write=function(t,e,r){var n=this._writableState,i=!1,s=!n.objectMode&&Ph(t);return s&&!yr.isBuffer(t)&&(t=Ch(t)),typeof e=="function"&&(r=e,e=null),s?e="buffer":e||(e=n.defaultEncoding),typeof r!="function"&&(r=Yh),n.ending?zh(this,r):(s||Vh(this,n,t,r))&&(n.pendingcb++,i=Jh(this,n,s,t,e,r)),i};F.prototype.cork=function(){this._writableState.corked++};F.prototype.uncork=function(){var t=this._writableState;t.corked&&(t.corked--,!t.writing&&!t.corked&&!t.bufferProcessing&&t.bufferedRequest&&ga(this,t))};F.prototype.setDefaultEncoding=function(e){if(typeof e=="string"&&(e=e.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((e+"").toLowerCase())>-1))throw new Uh(e);return this._writableState.defaultEncoding=e,this};Object.defineProperty(F.prototype,"writableBuffer",{enumerable:!1,get:function(){return this._writableState&&this._writableState.getBuffer()}});function Kh(t,e,r){return!t.objectMode&&t.decodeStrings!==!1&&typeof e=="string"&&(e=yr.from(e,r)),e}Object.defineProperty(F.prototype,"writableHighWaterMark",{enumerable:!1,get:function(){return this._writableState.highWaterMark}});function Jh(t,e,r,n,i,s){if(!r){var o=Kh(e,n,i);n!==o&&(r=!0,i="buffer",n=o)}var a=e.objectMode?1:n.length;e.length+=a;var u=e.length<e.highWaterMark;if(u||(e.needDrain=!0),e.writing||e.corked){var l=e.lastBufferedRequest;e.lastBufferedRequest={chunk:n,encoding:i,isBuf:r,callback:s,next:null},l?l.next=e.lastBufferedRequest:e.bufferedRequest=e.lastBufferedRequest,e.bufferedRequestCount+=1}else Qn(t,e,!1,a,n,i,s);return u}function Qn(t,e,r,n,i,s,o){e.writelen=n,e.writecb=o,e.writing=!0,e.sync=!0,e.destroyed?e.onwrite(new Hh("write")):r?t._writev(i,e.onwrite):t._write(i,s,e.onwrite),e.sync=!1}function Zh(t,e,r,n,i){--e.pendingcb,r?(process.nextTick(i,n),process.nextTick(wt,t,e),t._writableState.errorEmitted=!0,rt(t,n)):(i(n),t._writableState.errorEmitted=!0,rt(t,n),wt(t,e))}function Qh(t){t.writing=!1,t.writecb=null,t.length-=t.writelen,t.writelen=0}function Xh(t,e){var r=t._writableState,n=r.sync,i=r.writecb;if(typeof i!="function")throw new $h;if(Qh(r),e)Zh(t,r,n,e,i);else{var s=ma(r)||t.destroyed;!s&&!r.corked&&!r.bufferProcessing&&r.bufferedRequest&&ga(t,r),n?process.nextTick(ha,t,r,s,i):ha(t,r,s,i)}}function ha(t,e,r,n){r||ed(t,e),e.pendingcb--,n(),wt(t,e)}function ed(t,e){e.length===0&&e.needDrain&&(e.needDrain=!1,t.emit("drain"))}function ga(t,e){e.bufferProcessing=!0;var r=e.bufferedRequest;if(t._writev&&r&&r.next){var n=e.bufferedRequestCount,i=new Array(n),s=e.corkedRequestsFree;s.entry=r;for(var o=0,a=!0;r;)i[o]=r,r.isBuf||(a=!1),r=r.next,o+=1;i.allBuffers=a,Qn(t,e,!0,e.length,i,"",s.finish),e.pendingcb++,e.lastBufferedRequest=null,s.next?(e.corkedRequestsFree=s.next,s.next=null):e.corkedRequestsFree=new da(e),e.bufferedRequestCount=0}else{for(;r;){var u=r.chunk,l=r.encoding,d=r.callback,g=e.objectMode?1:u.length;if(Qn(t,e,!1,g,u,l,d),r=r.next,e.bufferedRequestCount--,e.writing)break}r===null&&(e.lastBufferedRequest=null)}e.bufferedRequest=r,e.bufferProcessing=!1}F.prototype._write=function(t,e,r){r(new kh("_write()"))};F.prototype._writev=null;F.prototype.end=function(t,e,r){var n=this._writableState;return typeof t=="function"?(r=t,t=null,e=null):typeof e=="function"&&(r=e,e=null),t!=null&&this.write(t,e),n.corked&&(n.corked=1,this.uncork()),n.ending||nd(this,n,r),this};Object.defineProperty(F.prototype,"writableLength",{enumerable:!1,get:function(){return this._writableState.length}});function ma(t){return t.ending&&t.length===0&&t.bufferedRequest===null&&!t.finished&&!t.writing}function td(t,e){t._final(function(r){e.pendingcb--,r&&rt(t,r),e.prefinished=!0,t.emit("prefinish"),wt(t,e)})}function rd(t,e){!e.prefinished&&!e.finalCalled&&(typeof t._final=="function"&&!e.destroyed?(e.pendingcb++,e.finalCalled=!0,process.nextTick(td,t,e)):(e.prefinished=!0,t.emit("prefinish")))}function wt(t,e){var r=ma(e);if(r&&(rd(t,e),e.pendingcb===0&&(e.finished=!0,t.emit("finish"),e.autoDestroy))){var n=t._readableState;(!n||n.autoDestroy&&n.endEmitted)&&t.destroy()}return r}function nd(t,e,r){e.ending=!0,wt(t,e),r&&(e.finished?process.nextTick(r):t.once("finish",r)),e.ended=!0,t.writable=!1}function id(t,e,r){var n=t.entry;for(t.entry=null;n;){var i=n.callback;e.pendingcb--,i(r),n=n.next}e.corkedRequestsFree.next=t}Object.defineProperty(F.prototype,"destroyed",{enumerable:!1,get:function(){return this._writableState===void 0?!1:this._writableState.destroyed},set:function(e){this._writableState&&(this._writableState.destroyed=e)}});F.prototype.destroy=Xn.destroy;F.prototype._undestroy=Xn.undestroy;F.prototype._destroy=function(t,e){e(t)}});var ei=f((Um,va)=>{"use strict";var sd=require("util"),ya=mr(),{LEVEL:_a}=$(),St=va.exports=function(e={}){ya.call(this,{objectMode:!0,highWaterMark:e.highWaterMark}),this.format=e.format,this.level=e.level,this.handleExceptions=e.handleExceptions,this.handleRejections=e.handleRejections,this.silent=e.silent,e.log&&(this.log=e.log),e.logv&&(this.logv=e.logv),e.close&&(this.close=e.close),this.once("pipe",r=>{this.levels=r.levels,this.parent=r}),this.once("unpipe",r=>{r===this.parent&&(this.parent=null,this.close&&this.close())})};sd.inherits(St,ya);St.prototype._write=function(e,r,n){if(this.silent||e.exception===!0&&!this.handleExceptions)return n(null);let i=this.level||this.parent&&this.parent.level;if(!i||this.levels[i]>=this.levels[e[_a]]){if(e&&!this.format)return this.log(e,n);let s,o;try{o=this.format.transform(Object.assign({},e),this.format.options)}catch(a){s=a}if(s||!o){if(n(),s)throw s;return}return this.log(o,n)}return this._writableState.sync=!1,n(null)};St.prototype._writev=function(e,r){if(this.logv){let n=e.filter(this._accept,this);return n.length?this.logv(n,r):r(null)}for(let n=0;n<e.length;n++){if(!this._accept(e[n]))continue;if(e[n].chunk&&!this.format){this.log(e[n].chunk,e[n].callback);continue}let i,s;try{s=this.format.transform(Object.assign({},e[n].chunk),this.format.options)}catch(o){i=o}if(i||!s){if(e[n].callback(),i)throw r(null),i}else this.log(s,e[n].callback)}return r(null)};St.prototype._accept=function(e){let r=e.chunk;if(this.silent)return!1;let n=this.level||this.parent&&this.parent.level;return!!((r.exception===!0||!n||this.levels[n]>=this.levels[r[_a]])&&(this.handleExceptions||r.exception!==!0))};St.prototype._nop=function(){}});var ri=f((Ym,Ea)=>{"use strict";var od=require("util"),{LEVEL:ti}=$(),wa=ei(),xt=Ea.exports=function(e={}){if(wa.call(this,e),!e.transport||typeof e.transport.log!="function")throw new Error("Invalid transport, must be an object with a log method.");this.transport=e.transport,this.level=this.level||e.transport.level,this.handleExceptions=this.handleExceptions||e.transport.handleExceptions,this._deprecated();function r(n){this.emit("error",n,this.transport)}this.transport.__winstonError||(this.transport.__winstonError=r.bind(this),this.transport.on("error",this.transport.__winstonError))};od.inherits(xt,wa);xt.prototype._write=function(e,r,n){if(this.silent||e.exception===!0&&!this.handleExceptions)return n(null);(!this.level||this.levels[this.level]>=this.levels[e[ti]])&&this.transport.log(e[ti],e.message,e,this._nop),n(null)};xt.prototype._writev=function(e,r){for(let n=0;n<e.length;n++)this._accept(e[n])&&(this.transport.log(e[n].chunk[ti],e[n].chunk.message,e[n].chunk,this._nop),e[n].callback());return r(null)};xt.prototype._deprecated=function(){console.error([`${this.transport.name} is a legacy winston transport. Consider upgrading: `,"- Upgrade docs: https://github.com/winstonjs/winston/blob/master/UPGRADE-3.0.md"].join(`
|
|
27
|
-
`))};xt.prototype.close=function(){this.transport.close&&this.transport.close(),this.transport.__winstonError&&(this.transport.removeListener("error",this.transport.__winstonError),this.transport.__winstonError=null)}});var nt=f((zm,ni)=>{"use strict";ni.exports=ei();ni.exports.LegacyTransportStream=ri()});var Ma=f((Km,xa)=>{"use strict";var ad=require("os"),{LEVEL:Sa,MESSAGE:it}=$(),ud=nt();xa.exports=class extends ud{constructor(e={}){super(e),this.name=e.name||"console",this.stderrLevels=this._stringArrayToSet(e.stderrLevels),this.consoleWarnLevels=this._stringArrayToSet(e.consoleWarnLevels),this.eol=typeof e.eol=="string"?e.eol:ad.EOL,this.forceConsole=e.forceConsole||!1,this._consoleLog=console.log.bind(console),this._consoleWarn=console.warn.bind(console),this._consoleError=console.error.bind(console),this.setMaxListeners(30)}log(e,r){if(setImmediate(()=>this.emit("logged",e)),this.stderrLevels[e[Sa]]){console._stderr&&!this.forceConsole?console._stderr.write(`${e[it]}${this.eol}`):this._consoleError(e[it]),r&&r();return}else if(this.consoleWarnLevels[e[Sa]]){console._stderr&&!this.forceConsole?console._stderr.write(`${e[it]}${this.eol}`):this._consoleWarn(e[it]),r&&r();return}console._stdout&&!this.forceConsole?console._stdout.write(`${e[it]}${this.eol}`):this._consoleLog(e[it]),r&&r()}_stringArrayToSet(e,r){if(!e)return{};if(r=r||"Cannot make set from type other than Array of string elements",!Array.isArray(e))throw new Error(r);return e.reduce((n,i)=>{if(typeof i!="string")throw new Error(r);return n[i]=!0,n},{})}}});var vr=f((_r,Oa)=>{"use strict";Object.defineProperty(_r,"__esModule",{value:!0});_r.default=ld;function ld(t){return t&&typeof t.length=="number"&&t.length>=0&&t.length%1===0}Oa.exports=_r.default});var Ta=f((wr,Ra)=>{"use strict";Object.defineProperty(wr,"__esModule",{value:!0});wr.default=function(t){return function(...e){var r=e.pop();return t.call(this,e,r)}};Ra.exports=wr.default});var La=f(qe=>{"use strict";Object.defineProperty(qe,"__esModule",{value:!0});qe.fallback=qa;qe.wrap=Aa;var cd=qe.hasQueueMicrotask=typeof queueMicrotask=="function"&&queueMicrotask,fd=qe.hasSetImmediate=typeof setImmediate=="function"&&setImmediate,hd=qe.hasNextTick=typeof process=="object"&&typeof process.nextTick=="function";function qa(t){setTimeout(t,0)}function Aa(t){return(e,...r)=>t(()=>e(...r))}var Mt;cd?Mt=queueMicrotask:fd?Mt=setImmediate:hd?Mt=process.nextTick:Mt=qa;qe.default=Aa(Mt)});var Ia=f((Er,Pa)=>{"use strict";Object.defineProperty(Er,"__esModule",{value:!0});Er.default=yd;var dd=Ta(),pd=Ca(dd),gd=La(),md=Ca(gd),bd=Be();function Ca(t){return t&&t.__esModule?t:{default:t}}function yd(t){return(0,bd.isAsync)(t)?function(...e){let r=e.pop(),n=t.apply(this,e);return Na(n,r)}:(0,pd.default)(function(e,r){var n;try{n=t.apply(this,e)}catch(i){return r(i)}if(n&&typeof n.then=="function")return Na(n,r);r(null,n)})}function Na(t,e){return t.then(r=>{ja(e,null,r)},r=>{ja(e,r&&(r instanceof Error||r.message)?r:new Error(r))})}function ja(t,e,r){try{t(e,r)}catch(n){(0,md.default)(i=>{throw i},n)}}Pa.exports=Er.default});var Be=f(ye=>{"use strict";Object.defineProperty(ye,"__esModule",{value:!0});ye.isAsyncIterable=ye.isAsyncGenerator=ye.isAsync=void 0;var _d=Ia(),vd=wd(_d);function wd(t){return t&&t.__esModule?t:{default:t}}function Da(t){return t[Symbol.toStringTag]==="AsyncFunction"}function Ed(t){return t[Symbol.toStringTag]==="AsyncGenerator"}function Sd(t){return typeof t[Symbol.asyncIterator]=="function"}function xd(t){if(typeof t!="function")throw new Error("expected a function");return Da(t)?(0,vd.default)(t):t}ye.default=xd;ye.isAsync=Da;ye.isAsyncGenerator=Ed;ye.isAsyncIterable=Sd});var st=f((Sr,Fa)=>{"use strict";Object.defineProperty(Sr,"__esModule",{value:!0});Sr.default=Md;function Md(t,e){if(e||(e=t.length),!e)throw new Error("arity is undefined");function r(...n){return typeof n[e-1]=="function"?t.apply(this,n):new Promise((i,s)=>{n[e-1]=(o,...a)=>{if(o)return s(o);i(a.length>1?a:a[0])},t.apply(this,n)})}return r}Fa.exports=Sr.default});var $a=f((xr,ka)=>{"use strict";Object.defineProperty(xr,"__esModule",{value:!0});var Od=vr(),Rd=ii(Od),Td=Be(),qd=ii(Td),Ad=st(),Ld=ii(Ad);function ii(t){return t&&t.__esModule?t:{default:t}}xr.default=(0,Ld.default)((t,e,r)=>{var n=(0,Rd.default)(e)?[]:{};t(e,(i,s,o)=>{(0,qd.default)(i)((a,...u)=>{u.length<2&&([u]=u),n[s]=u,o(a)})},i=>r(i,n))},3);ka.exports=xr.default});var si=f((Mr,Ba)=>{"use strict";Object.defineProperty(Mr,"__esModule",{value:!0});Mr.default=Nd;function Nd(t){function e(...r){if(t!==null){var n=t;t=null,n.apply(this,r)}}return Object.assign(e,t),e}Ba.exports=Mr.default});var Ga=f((Or,Ha)=>{"use strict";Object.defineProperty(Or,"__esModule",{value:!0});Or.default=function(t){return t[Symbol.iterator]&&t[Symbol.iterator]()};Ha.exports=Or.default});var Ya=f((Rr,Ua)=>{"use strict";Object.defineProperty(Rr,"__esModule",{value:!0});Rr.default=$d;var jd=vr(),Cd=Wa(jd),Pd=Ga(),Id=Wa(Pd);function Wa(t){return t&&t.__esModule?t:{default:t}}function Dd(t){var e=-1,r=t.length;return function(){return++e<r?{value:t[e],key:e}:null}}function Fd(t){var e=-1;return function(){var n=t.next();return n.done?null:(e++,{value:n.value,key:e})}}function kd(t){var e=t?Object.keys(t):[],r=-1,n=e.length;return function i(){var s=e[++r];return s==="__proto__"?i():r<n?{value:t[s],key:s}:null}}function $d(t){if((0,Cd.default)(t))return Dd(t);var e=(0,Id.default)(t);return e?Fd(e):kd(t)}Ua.exports=Rr.default});var oi=f((Tr,za)=>{"use strict";Object.defineProperty(Tr,"__esModule",{value:!0});Tr.default=Bd;function Bd(t){return function(...e){if(t===null)throw new Error("Callback was already called.");var r=t;t=null,r.apply(this,e)}}za.exports=Tr.default});var Ar=f((qr,Va)=>{"use strict";Object.defineProperty(qr,"__esModule",{value:!0});var Hd={};qr.default=Hd;Va.exports=qr.default});var Ja=f((Lr,Ka)=>{"use strict";Object.defineProperty(Lr,"__esModule",{value:!0});Lr.default=Yd;var Gd=Ar(),Wd=Ud(Gd);function Ud(t){return t&&t.__esModule?t:{default:t}}function Yd(t,e,r,n){let i=!1,s=!1,o=!1,a=0,u=0;function l(){a>=e||o||i||(o=!0,t.next().then(({value:p,done:v})=>{if(!(s||i)){if(o=!1,v){i=!0,a<=0&&n(null);return}a++,r(p,u,d),u++,l()}}).catch(g))}function d(p,v){if(a-=1,!s){if(p)return g(p);if(p===!1){i=!0,s=!0;return}if(v===Wd.default||i&&a<=0)return i=!0,n(null);l()}}function g(p){s||(o=!1,i=!0,n(p))}l()}Ka.exports=Lr.default});var eu=f((Nr,Xa)=>{"use strict";Object.defineProperty(Nr,"__esModule",{value:!0});var zd=si(),Vd=Ot(zd),Kd=Ya(),Jd=Ot(Kd),Zd=oi(),Qd=Ot(Zd),Za=Be(),Xd=Ja(),Qa=Ot(Xd),ep=Ar(),tp=Ot(ep);function Ot(t){return t&&t.__esModule?t:{default:t}}Nr.default=t=>(e,r,n)=>{if(n=(0,Vd.default)(n),t<=0)throw new RangeError("concurrency limit cannot be less than 1");if(!e)return n(null);if((0,Za.isAsyncGenerator)(e))return(0,Qa.default)(e,t,r,n);if((0,Za.isAsyncIterable)(e))return(0,Qa.default)(e[Symbol.asyncIterator](),t,r,n);var i=(0,Jd.default)(e),s=!1,o=!1,a=0,u=!1;function l(g,p){if(!o)if(a-=1,g)s=!0,n(g);else if(g===!1)s=!0,o=!0;else{if(p===tp.default||s&&a<=0)return s=!0,n(null);u||d()}}function d(){for(u=!0;a<t&&!s;){var g=i();if(g===null){s=!0,a<=0&&n(null);return}a+=1,r(g.value,g.key,(0,Qd.default)(l))}u=!1}d()};Xa.exports=Nr.default});var ui=f((jr,tu)=>{"use strict";Object.defineProperty(jr,"__esModule",{value:!0});var rp=eu(),np=ai(rp),ip=Be(),sp=ai(ip),op=st(),ap=ai(op);function ai(t){return t&&t.__esModule?t:{default:t}}function up(t,e,r,n){return(0,np.default)(e)(t,(0,sp.default)(r),n)}jr.default=(0,ap.default)(up,4);tu.exports=jr.default});var iu=f((Cr,nu)=>{"use strict";Object.defineProperty(Cr,"__esModule",{value:!0});var lp=ui(),cp=ru(lp),fp=st(),hp=ru(fp);function ru(t){return t&&t.__esModule?t:{default:t}}function dp(t,e,r){return(0,cp.default)(t,1,e,r)}Cr.default=(0,hp.default)(dp,3);nu.exports=Cr.default});var au=f((Pr,ou)=>{"use strict";Object.defineProperty(Pr,"__esModule",{value:!0});Pr.default=yp;var pp=$a(),gp=su(pp),mp=iu(),bp=su(mp);function su(t){return t&&t.__esModule?t:{default:t}}function yp(t,e){return(0,gp.default)(bp.default,t,e)}ou.exports=Pr.default});var li=f((Qm,lu)=>{"use strict";lu.exports=_e;var Ir=xe().codes,_p=Ir.ERR_METHOD_NOT_IMPLEMENTED,vp=Ir.ERR_MULTIPLE_CALLBACK,wp=Ir.ERR_TRANSFORM_ALREADY_TRANSFORMING,Ep=Ir.ERR_TRANSFORM_WITH_LENGTH_0,Dr=$e();Qe()(_e,Dr);function Sp(t,e){var r=this._transformState;r.transforming=!1;var n=r.writecb;if(n===null)return this.emit("error",new vp);r.writechunk=null,r.writecb=null,e!=null&&this.push(e),n(t);var i=this._readableState;i.reading=!1,(i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}function _e(t){if(!(this instanceof _e))return new _e(t);Dr.call(this,t),this._transformState={afterTransform:Sp.bind(this),needTransform:!1,transforming:!1,writecb:null,writechunk:null,writeencoding:null},this._readableState.needReadable=!0,this._readableState.sync=!1,t&&(typeof t.transform=="function"&&(this._transform=t.transform),typeof t.flush=="function"&&(this._flush=t.flush)),this.on("prefinish",xp)}function xp(){var t=this;typeof this._flush=="function"&&!this._readableState.destroyed?this._flush(function(e,r){uu(t,e,r)}):uu(this,null,null)}_e.prototype.push=function(t,e){return this._transformState.needTransform=!1,Dr.prototype.push.call(this,t,e)};_e.prototype._transform=function(t,e,r){r(new _p("_transform()"))};_e.prototype._write=function(t,e,r){var n=this._transformState;if(n.writecb=r,n.writechunk=t,n.writeencoding=e,!n.transforming){var i=this._readableState;(n.needTransform||i.needReadable||i.length<i.highWaterMark)&&this._read(i.highWaterMark)}};_e.prototype._read=function(t){var e=this._transformState;e.writechunk!==null&&!e.transforming?(e.transforming=!0,this._transform(e.writechunk,e.writeencoding,e.afterTransform)):e.needTransform=!0};_e.prototype._destroy=function(t,e){Dr.prototype._destroy.call(this,t,function(r){e(r)})};function uu(t,e,r){if(e)return t.emit("error",e);if(r!=null&&t.push(r),t._writableState.length)throw new Ep;if(t._transformState.transforming)throw new wp;return t.push(null)}});var hu=f((Xm,fu)=>{"use strict";fu.exports=Rt;var cu=li();Qe()(Rt,cu);function Rt(t){if(!(this instanceof Rt))return new Rt(t);cu.call(this,t)}Rt.prototype._transform=function(t,e,r){r(null,t)}});var bu=f((eb,mu)=>{"use strict";var ci;function Mp(t){var e=!1;return function(){e||(e=!0,t.apply(void 0,arguments))}}var gu=xe().codes,Op=gu.ERR_MISSING_ARGS,Rp=gu.ERR_STREAM_DESTROYED;function du(t){if(t)throw t}function Tp(t){return t.setHeader&&typeof t.abort=="function"}function qp(t,e,r,n){n=Mp(n);var i=!1;t.on("close",function(){i=!0}),ci===void 0&&(ci=ur()),ci(t,{readable:e,writable:r},function(o){if(o)return n(o);i=!0,n()});var s=!1;return function(o){if(!i&&!s){if(s=!0,Tp(t))return t.abort();if(typeof t.destroy=="function")return t.destroy();n(o||new Rp("pipe"))}}}function pu(t){t()}function Ap(t,e){return t.pipe(e)}function Lp(t){return!t.length||typeof t[t.length-1]!="function"?du:t.pop()}function Np(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];var n=Lp(e);if(Array.isArray(e[0])&&(e=e[0]),e.length<2)throw new Op("streams");var i,s=e.map(function(o,a){var u=a<e.length-1,l=a>0;return qp(o,u,l,function(d){i||(i=d),d&&s.forEach(pu),!u&&(s.forEach(pu),n(i))})});return e.reduce(Ap)}mu.exports=Np});var He=f((ie,qt)=>{var Tt=require("stream");process.env.READABLE_STREAM==="disable"&&Tt?(qt.exports=Tt.Readable,Object.assign(qt.exports,Tt),qt.exports.Stream=Tt):(ie=qt.exports=Kn(),ie.Stream=Tt||ie,ie.Readable=ie,ie.Writable=mr(),ie.Duplex=$e(),ie.Transform=li(),ie.PassThrough=hu(),ie.finished=ur(),ie.pipeline=bu())});var bi=f((tb,_u)=>{var ot=[],At=[],fi=function(){};function di(t){return~ot.indexOf(t)?!1:(ot.push(t),!0)}function pi(t){fi=t}function jp(t){for(var e=[],r=0;r<ot.length;r++){if(ot[r].async){e.push(ot[r]);continue}if(ot[r](t))return!0}return e.length?new Promise(function(i){Promise.all(e.map(function(o){return o(t)})).then(function(o){i(o.some(Boolean))})}):!1}function gi(t){return~At.indexOf(t)?!1:(At.push(t),!0)}function hi(){fi.apply(fi,arguments)}function yu(t){for(var e=0;e<At.length;e++)t=At[e].apply(At[e],arguments);return t}function mi(t,e){var r=Object.prototype.hasOwnProperty;for(var n in e)r.call(e,n)&&(t[n]=e[n]);return t}function Cp(t){return t.enabled=!1,t.modify=gi,t.set=pi,t.use=di,mi(function(){return!1},t)}function Pp(t){function e(){var r=Array.prototype.slice.call(arguments,0);return hi.call(hi,t,yu(r,t)),!0}return t.enabled=!0,t.modify=gi,t.set=pi,t.use=di,mi(e,t)}_u.exports=function(e){return e.introduce=mi,e.enabled=jp,e.process=yu,e.modify=gi,e.write=hi,e.nope=Cp,e.yep=Pp,e.set=pi,e.use=di,e}});var wu=f((rb,vu)=>{var Ip=bi(),Dp=Ip(function t(e,r){return r=r||{},r.namespace=e,r.prod=!0,r.dev=!1,r.force||t.force?t.yep(r):t.nope(r)});vu.exports=Dp});var Ru=f((nb,Ou)=>{"use strict";var pe={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]},Su=Object.create(null);for(let t in pe)Object.hasOwn(pe,t)&&(Su[pe[t]]=t);var G={to:{},get:{}};G.get=function(t){let e=t.slice(0,3).toLowerCase(),r,n;switch(e){case"hsl":{r=G.get.hsl(t),n="hsl";break}case"hwb":{r=G.get.hwb(t),n="hwb";break}default:{r=G.get.rgb(t),n="rgb";break}}return r?{model:n,value:r}:null};G.get.rgb=function(t){if(!t)return null;let e=/^#([a-f\d]{3,4})$/i,r=/^#([a-f\d]{6})([a-f\d]{2})?$/i,n=/^rgba?\(\s*([+-]?\d+)(?=[\s,])\s*(?:,\s*)?([+-]?\d+)(?=[\s,])\s*(?:,\s*)?([+-]?\d+)\s*(?:[\s,|/]\s*([+-]?[\d.]+)(%?)\s*)?\)$/,i=/^rgba?\(\s*([+-]?[\d.]+)%\s*,?\s*([+-]?[\d.]+)%\s*,?\s*([+-]?[\d.]+)%\s*(?:[\s,|/]\s*([+-]?[\d.]+)(%?)\s*)?\)$/,s=/^(\w+)$/,o=[0,0,0,1],a,u,l;if(a=t.match(r)){for(l=a[2],a=a[1],u=0;u<3;u++){let d=u*2;o[u]=Number.parseInt(a.slice(d,d+2),16)}l&&(o[3]=Number.parseInt(l,16)/255)}else if(a=t.match(e)){for(a=a[1],l=a[3],u=0;u<3;u++)o[u]=Number.parseInt(a[u]+a[u],16);l&&(o[3]=Number.parseInt(l+l,16)/255)}else if(a=t.match(n)){for(u=0;u<3;u++)o[u]=Number.parseInt(a[u+1],10);a[4]&&(o[3]=a[5]?Number.parseFloat(a[4])*.01:Number.parseFloat(a[4]))}else if(a=t.match(i)){for(u=0;u<3;u++)o[u]=Math.round(Number.parseFloat(a[u+1])*2.55);a[4]&&(o[3]=a[5]?Number.parseFloat(a[4])*.01:Number.parseFloat(a[4]))}else return(a=t.match(s))?a[1]==="transparent"?[0,0,0,0]:Object.hasOwn(pe,a[1])?(o=pe[a[1]],o[3]=1,o):null:null;for(u=0;u<3;u++)o[u]=Ae(o[u],0,255);return o[3]=Ae(o[3],0,1),o};G.get.hsl=function(t){if(!t)return null;let e=/^hsla?\(\s*([+-]?(?:\d{0,3}\.)?\d+)(?:deg)?\s*,?\s*([+-]?[\d.]+)%\s*,?\s*([+-]?[\d.]+)%\s*(?:[,|/]\s*([+-]?(?=\.\d|\d)(?:0|[1-9]\d*)?(?:\.\d*)?(?:[eE][+-]?\d+)?)\s*)?\)$/,r=t.match(e);if(r){let n=Number.parseFloat(r[4]),i=(Number.parseFloat(r[1])%360+360)%360,s=Ae(Number.parseFloat(r[2]),0,100),o=Ae(Number.parseFloat(r[3]),0,100),a=Ae(Number.isNaN(n)?1:n,0,1);return[i,s,o,a]}return null};G.get.hwb=function(t){if(!t)return null;let e=/^hwb\(\s*([+-]?\d{0,3}(?:\.\d+)?)(?:deg)?\s*[\s,]\s*([+-]?[\d.]+)%\s*[\s,]\s*([+-]?[\d.]+)%\s*(?:[\s,]\s*([+-]?(?=\.\d|\d)(?:0|[1-9]\d*)?(?:\.\d*)?(?:[eE][+-]?\d+)?)\s*)?\)$/,r=t.match(e);if(r){let n=Number.parseFloat(r[4]),i=(Number.parseFloat(r[1])%360+360)%360,s=Ae(Number.parseFloat(r[2]),0,100),o=Ae(Number.parseFloat(r[3]),0,100),a=Ae(Number.isNaN(n)?1:n,0,1);return[i,s,o,a]}return null};G.to.hex=function(...t){return"#"+Fr(t[0])+Fr(t[1])+Fr(t[2])+(t[3]<1?Fr(Math.round(t[3]*255)):"")};G.to.rgb=function(...t){return t.length<4||t[3]===1?"rgb("+Math.round(t[0])+", "+Math.round(t[1])+", "+Math.round(t[2])+")":"rgba("+Math.round(t[0])+", "+Math.round(t[1])+", "+Math.round(t[2])+", "+t[3]+")"};G.to.rgb.percent=function(...t){let e=Math.round(t[0]/255*100),r=Math.round(t[1]/255*100),n=Math.round(t[2]/255*100);return t.length<4||t[3]===1?"rgb("+e+"%, "+r+"%, "+n+"%)":"rgba("+e+"%, "+r+"%, "+n+"%, "+t[3]+")"};G.to.hsl=function(...t){return t.length<4||t[3]===1?"hsl("+t[0]+", "+t[1]+"%, "+t[2]+"%)":"hsla("+t[0]+", "+t[1]+"%, "+t[2]+"%, "+t[3]+")"};G.to.hwb=function(...t){let e="";return t.length>=4&&t[3]!==1&&(e=", "+t[3]),"hwb("+t[0]+", "+t[1]+"%, "+t[2]+"%"+e+")"};G.to.keyword=function(...t){return Su[t.slice(0,3)]};function Ae(t,e,r){return Math.min(Math.max(e,t),r)}function Fr(t){let e=Math.round(t).toString(16).toUpperCase();return e.length<2?"0"+e:e}var xu={};for(let t of Object.keys(pe))xu[pe[t]]=t;var m={rgb:{channels:3,labels:"rgb"},hsl:{channels:3,labels:"hsl"},hsv:{channels:3,labels:"hsv"},hwb:{channels:3,labels:"hwb"},cmyk:{channels:4,labels:"cmyk"},xyz:{channels:3,labels:"xyz"},lab:{channels:3,labels:"lab"},oklab:{channels:3,labels:["okl","oka","okb"]},lch:{channels:3,labels:"lch"},oklch:{channels:3,labels:["okl","okc","okh"]},hex:{channels:1,labels:["hex"]},keyword:{channels:1,labels:["keyword"]},ansi16:{channels:1,labels:["ansi16"]},ansi256:{channels:1,labels:["ansi256"]},hcg:{channels:3,labels:["h","c","g"]},apple:{channels:3,labels:["r16","g16","b16"]},gray:{channels:1,labels:["gray"]}},ve=(6/29)**3;function at(t){let e=t>.0031308?1.055*t**.4166666666666667-.055:t*12.92;return Math.min(Math.max(0,e),1)}function ut(t){return t>.04045?((t+.055)/1.055)**2.4:t/12.92}for(let t of Object.keys(m)){if(!("channels"in m[t]))throw new Error("missing channels property: "+t);if(!("labels"in m[t]))throw new Error("missing channel labels property: "+t);if(m[t].labels.length!==m[t].channels)throw new Error("channel and label counts mismatch: "+t);let{channels:e,labels:r}=m[t];delete m[t].channels,delete m[t].labels,Object.defineProperty(m[t],"channels",{value:e}),Object.defineProperty(m[t],"labels",{value:r})}m.rgb.hsl=function(t){let e=t[0]/255,r=t[1]/255,n=t[2]/255,i=Math.min(e,r,n),s=Math.max(e,r,n),o=s-i,a,u;switch(s){case i:{a=0;break}case e:{a=(r-n)/o;break}case r:{a=2+(n-e)/o;break}case n:{a=4+(e-r)/o;break}}a=Math.min(a*60,360),a<0&&(a+=360);let l=(i+s)/2;return s===i?u=0:l<=.5?u=o/(s+i):u=o/(2-s-i),[a,u*100,l*100]};m.rgb.hsv=function(t){let e,r,n,i,s,o=t[0]/255,a=t[1]/255,u=t[2]/255,l=Math.max(o,a,u),d=l-Math.min(o,a,u),g=function(p){return(l-p)/6/d+1/2};if(d===0)i=0,s=0;else{switch(s=d/l,e=g(o),r=g(a),n=g(u),l){case o:{i=n-r;break}case a:{i=1/3+e-n;break}case u:{i=2/3+r-e;break}}i<0?i+=1:i>1&&(i-=1)}return[i*360,s*100,l*100]};m.rgb.hwb=function(t){let e=t[0],r=t[1],n=t[2],i=m.rgb.hsl(t)[0],s=1/255*Math.min(e,Math.min(r,n));return n=1-1/255*Math.max(e,Math.max(r,n)),[i,s*100,n*100]};m.rgb.oklab=function(t){let e=ut(t[0]/255),r=ut(t[1]/255),n=ut(t[2]/255),i=Math.cbrt(.4122214708*e+.5363325363*r+.0514459929*n),s=Math.cbrt(.2119034982*e+.6806995451*r+.1073969566*n),o=Math.cbrt(.0883024619*e+.2817188376*r+.6299787005*n),a=.2104542553*i+.793617785*s-.0040720468*o,u=1.9779984951*i-2.428592205*s+.4505937099*o,l=.0259040371*i+.7827717662*s-.808675766*o;return[a*100,u*100,l*100]};m.rgb.cmyk=function(t){let e=t[0]/255,r=t[1]/255,n=t[2]/255,i=Math.min(1-e,1-r,1-n),s=(1-e-i)/(1-i)||0,o=(1-r-i)/(1-i)||0,a=(1-n-i)/(1-i)||0;return[s*100,o*100,a*100,i*100]};function Fp(t,e){return(t[0]-e[0])**2+(t[1]-e[1])**2+(t[2]-e[2])**2}m.rgb.keyword=function(t){let e=xu[t];if(e)return e;let r=Number.POSITIVE_INFINITY,n;for(let i of Object.keys(pe)){let s=pe[i],o=Fp(t,s);o<r&&(r=o,n=i)}return n};m.keyword.rgb=function(t){return pe[t]};m.rgb.xyz=function(t){let e=ut(t[0]/255),r=ut(t[1]/255),n=ut(t[2]/255),i=e*.4124564+r*.3575761+n*.1804375,s=e*.2126729+r*.7151522+n*.072175,o=e*.0193339+r*.119192+n*.9503041;return[i*100,s*100,o*100]};m.rgb.lab=function(t){let e=m.rgb.xyz(t),r=e[0],n=e[1],i=e[2];r/=95.047,n/=100,i/=108.883,r=r>ve?r**(1/3):7.787*r+16/116,n=n>ve?n**(1/3):7.787*n+16/116,i=i>ve?i**(1/3):7.787*i+16/116;let s=116*n-16,o=500*(r-n),a=200*(n-i);return[s,o,a]};m.hsl.rgb=function(t){let e=t[0]/360,r=t[1]/100,n=t[2]/100,i,s;if(r===0)return s=n*255,[s,s,s];let o=n<.5?n*(1+r):n+r-n*r,a=2*n-o,u=[0,0,0];for(let l=0;l<3;l++)i=e+1/3*-(l-1),i<0&&i++,i>1&&i--,6*i<1?s=a+(o-a)*6*i:2*i<1?s=o:3*i<2?s=a+(o-a)*(2/3-i)*6:s=a,u[l]=s*255;return u};m.hsl.hsv=function(t){let e=t[0],r=t[1]/100,n=t[2]/100,i=r,s=Math.max(n,.01);n*=2,r*=n<=1?n:2-n,i*=s<=1?s:2-s;let o=(n+r)/2,a=n===0?2*i/(s+i):2*r/(n+r);return[e,a*100,o*100]};m.hsv.rgb=function(t){let e=t[0]/60,r=t[1]/100,n=t[2]/100,i=Math.floor(e)%6,s=e-Math.floor(e),o=255*n*(1-r),a=255*n*(1-r*s),u=255*n*(1-r*(1-s));switch(n*=255,i){case 0:return[n,u,o];case 1:return[a,n,o];case 2:return[o,n,u];case 3:return[o,a,n];case 4:return[u,o,n];case 5:return[n,o,a]}};m.hsv.hsl=function(t){let e=t[0],r=t[1]/100,n=t[2]/100,i=Math.max(n,.01),s,o;o=(2-r)*n;let a=(2-r)*i;return s=r*i,s/=a<=1?a:2-a,s=s||0,o/=2,[e,s*100,o*100]};m.hwb.rgb=function(t){let e=t[0]/360,r=t[1]/100,n=t[2]/100,i=r+n,s;i>1&&(r/=i,n/=i);let o=Math.floor(6*e),a=1-n;s=6*e-o,o&1&&(s=1-s);let u=r+s*(a-r),l,d,g;switch(o){default:case 6:case 0:{l=a,d=u,g=r;break}case 1:{l=u,d=a,g=r;break}case 2:{l=r,d=a,g=u;break}case 3:{l=r,d=u,g=a;break}case 4:{l=u,d=r,g=a;break}case 5:{l=a,d=r,g=u;break}}return[l*255,d*255,g*255]};m.cmyk.rgb=function(t){let e=t[0]/100,r=t[1]/100,n=t[2]/100,i=t[3]/100,s=1-Math.min(1,e*(1-i)+i),o=1-Math.min(1,r*(1-i)+i),a=1-Math.min(1,n*(1-i)+i);return[s*255,o*255,a*255]};m.xyz.rgb=function(t){let e=t[0]/100,r=t[1]/100,n=t[2]/100,i,s,o;return i=e*3.2404542+r*-1.5371385+n*-.4985314,s=e*-.969266+r*1.8760108+n*.041556,o=e*.0556434+r*-.2040259+n*1.0572252,i=at(i),s=at(s),o=at(o),[i*255,s*255,o*255]};m.xyz.lab=function(t){let e=t[0],r=t[1],n=t[2];e/=95.047,r/=100,n/=108.883,e=e>ve?e**(1/3):7.787*e+16/116,r=r>ve?r**(1/3):7.787*r+16/116,n=n>ve?n**(1/3):7.787*n+16/116;let i=116*r-16,s=500*(e-r),o=200*(r-n);return[i,s,o]};m.xyz.oklab=function(t){let e=t[0]/100,r=t[1]/100,n=t[2]/100,i=Math.cbrt(.8189330101*e+.3618667424*r-.1288597137*n),s=Math.cbrt(.0329845436*e+.9293118715*r+.0361456387*n),o=Math.cbrt(.0482003018*e+.2643662691*r+.633851707*n),a=.2104542553*i+.793617785*s-.0040720468*o,u=1.9779984951*i-2.428592205*s+.4505937099*o,l=.0259040371*i+.7827717662*s-.808675766*o;return[a*100,u*100,l*100]};m.oklab.oklch=function(t){return m.lab.lch(t)};m.oklab.xyz=function(t){let e=t[0]/100,r=t[1]/100,n=t[2]/100,i=(.999999998*e+.396337792*r+.215803758*n)**3,s=(1.000000008*e-.105561342*r-.063854175*n)**3,o=(1.000000055*e-.089484182*r-1.291485538*n)**3,a=1.227013851*i-.55779998*s+.281256149*o,u=-.040580178*i+1.11225687*s-.071676679*o,l=-.076381285*i-.421481978*s+1.58616322*o;return[a*100,u*100,l*100]};m.oklab.rgb=function(t){let e=t[0]/100,r=t[1]/100,n=t[2]/100,i=(e+.3963377774*r+.2158037573*n)**3,s=(e-.1055613458*r-.0638541728*n)**3,o=(e-.0894841775*r-1.291485548*n)**3,a=at(4.0767416621*i-3.3077115913*s+.2309699292*o),u=at(-1.2684380046*i+2.6097574011*s-.3413193965*o),l=at(-.0041960863*i-.7034186147*s+1.707614701*o);return[a*255,u*255,l*255]};m.oklch.oklab=function(t){return m.lch.lab(t)};m.lab.xyz=function(t){let e=t[0],r=t[1],n=t[2],i,s,o;s=(e+16)/116,i=r/500+s,o=s-n/200;let a=s**3,u=i**3,l=o**3;return s=a>ve?a:(s-16/116)/7.787,i=u>ve?u:(i-16/116)/7.787,o=l>ve?l:(o-16/116)/7.787,i*=95.047,s*=100,o*=108.883,[i,s,o]};m.lab.lch=function(t){let e=t[0],r=t[1],n=t[2],i;i=Math.atan2(n,r)*360/2/Math.PI,i<0&&(i+=360);let o=Math.sqrt(r*r+n*n);return[e,o,i]};m.lch.lab=function(t){let e=t[0],r=t[1],i=t[2]/360*2*Math.PI,s=r*Math.cos(i),o=r*Math.sin(i);return[e,s,o]};m.rgb.ansi16=function(t,e=null){let[r,n,i]=t,s=e===null?m.rgb.hsv(t)[2]:e;if(s=Math.round(s/50),s===0)return 30;let o=30+(Math.round(i/255)<<2|Math.round(n/255)<<1|Math.round(r/255));return s===2&&(o+=60),o};m.hsv.ansi16=function(t){return m.rgb.ansi16(m.hsv.rgb(t),t[2])};m.rgb.ansi256=function(t){let e=t[0],r=t[1],n=t[2];return e>>4===r>>4&&r>>4===n>>4?e<8?16:e>248?231:Math.round((e-8)/247*24)+232:16+36*Math.round(e/255*5)+6*Math.round(r/255*5)+Math.round(n/255*5)};m.ansi16.rgb=function(t){t=t[0];let e=t%10;if(e===0||e===7)return t>50&&(e+=3.5),e=e/10.5*255,[e,e,e];let r=(Math.trunc(t>50)+1)*.5,n=(e&1)*r*255,i=(e>>1&1)*r*255,s=(e>>2&1)*r*255;return[n,i,s]};m.ansi256.rgb=function(t){if(t=t[0],t>=232){let s=(t-232)*10+8;return[s,s,s]}t-=16;let e,r=Math.floor(t/36)/5*255,n=Math.floor((e=t%36)/6)/5*255,i=e%6/5*255;return[r,n,i]};m.rgb.hex=function(t){let r=(((Math.round(t[0])&255)<<16)+((Math.round(t[1])&255)<<8)+(Math.round(t[2])&255)).toString(16).toUpperCase();return"000000".slice(r.length)+r};m.hex.rgb=function(t){let e=t.toString(16).match(/[a-f\d]{6}|[a-f\d]{3}/i);if(!e)return[0,0,0];let r=e[0];e[0].length===3&&(r=[...r].map(a=>a+a).join(""));let n=Number.parseInt(r,16),i=n>>16&255,s=n>>8&255,o=n&255;return[i,s,o]};m.rgb.hcg=function(t){let e=t[0]/255,r=t[1]/255,n=t[2]/255,i=Math.max(Math.max(e,r),n),s=Math.min(Math.min(e,r),n),o=i-s,a,u=o<1?s/(1-o):0;return o<=0?a=0:i===e?a=(r-n)/o%6:i===r?a=2+(n-e)/o:a=4+(e-r)/o,a/=6,a%=1,[a*360,o*100,u*100]};m.hsl.hcg=function(t){let e=t[1]/100,r=t[2]/100,n=r<.5?2*e*r:2*e*(1-r),i=0;return n<1&&(i=(r-.5*n)/(1-n)),[t[0],n*100,i*100]};m.hsv.hcg=function(t){let e=t[1]/100,r=t[2]/100,n=e*r,i=0;return n<1&&(i=(r-n)/(1-n)),[t[0],n*100,i*100]};m.hcg.rgb=function(t){let e=t[0]/360,r=t[1]/100,n=t[2]/100;if(r===0)return[n*255,n*255,n*255];let i=[0,0,0],s=e%1*6,o=s%1,a=1-o,u=0;switch(Math.floor(s)){case 0:{i[0]=1,i[1]=o,i[2]=0;break}case 1:{i[0]=a,i[1]=1,i[2]=0;break}case 2:{i[0]=0,i[1]=1,i[2]=o;break}case 3:{i[0]=0,i[1]=a,i[2]=1;break}case 4:{i[0]=o,i[1]=0,i[2]=1;break}default:i[0]=1,i[1]=0,i[2]=a}return u=(1-r)*n,[(r*i[0]+u)*255,(r*i[1]+u)*255,(r*i[2]+u)*255]};m.hcg.hsv=function(t){let e=t[1]/100,r=t[2]/100,n=e+r*(1-e),i=0;return n>0&&(i=e/n),[t[0],i*100,n*100]};m.hcg.hsl=function(t){let e=t[1]/100,n=t[2]/100*(1-e)+.5*e,i=0;return n>0&&n<.5?i=e/(2*n):n>=.5&&n<1&&(i=e/(2*(1-n))),[t[0],i*100,n*100]};m.hcg.hwb=function(t){let e=t[1]/100,r=t[2]/100,n=e+r*(1-e);return[t[0],(n-e)*100,(1-n)*100]};m.hwb.hcg=function(t){let e=t[1]/100,n=1-t[2]/100,i=n-e,s=0;return i<1&&(s=(n-i)/(1-i)),[t[0],i*100,s*100]};m.apple.rgb=function(t){return[t[0]/65535*255,t[1]/65535*255,t[2]/65535*255]};m.rgb.apple=function(t){return[t[0]/255*65535,t[1]/255*65535,t[2]/255*65535]};m.gray.rgb=function(t){return[t[0]/100*255,t[0]/100*255,t[0]/100*255]};m.gray.hsl=function(t){return[0,0,t[0]]};m.gray.hsv=m.gray.hsl;m.gray.hwb=function(t){return[0,100,t[0]]};m.gray.cmyk=function(t){return[0,0,0,t[0]]};m.gray.lab=function(t){return[t[0],0,0]};m.gray.hex=function(t){let e=Math.round(t[0]/100*255)&255,n=((e<<16)+(e<<8)+e).toString(16).toUpperCase();return"000000".slice(n.length)+n};m.rgb.gray=function(t){return[(t[0]+t[1]+t[2])/3/255*100]};function kp(){let t={},e=Object.keys(m);for(let{length:r}=e,n=0;n<r;n++)t[e[n]]={distance:-1,parent:null};return t}function $p(t){let e=kp(),r=[t];for(e[t].distance=0;r.length>0;){let n=r.pop(),i=Object.keys(m[n]);for(let{length:s}=i,o=0;o<s;o++){let a=i[o],u=e[a];u.distance===-1&&(u.distance=e[n].distance+1,u.parent=n,r.unshift(a))}}return e}function Bp(t,e){return function(r){return e(t(r))}}function Hp(t,e){let r=[e[t].parent,t],n=m[e[t].parent][t],i=e[t].parent;for(;e[i].parent;)r.unshift(e[i].parent),n=Bp(m[e[i].parent][i],n),i=e[i].parent;return n.conversion=r,n}function Gp(t){let e=$p(t),r={},n=Object.keys(e);for(let{length:i}=n,s=0;s<i;s++){let o=n[s];e[o].parent!==null&&(r[o]=Hp(o,e))}return r}var W={},Wp=Object.keys(m);function Up(t){let e=function(...r){let n=r[0];return n==null?n:(n.length>1&&(r=n),t(r))};return"conversion"in t&&(e.conversion=t.conversion),e}function Yp(t){let e=function(...r){let n=r[0];if(n==null)return n;n.length>1&&(r=n);let i=t(r);if(typeof i=="object")for(let{length:s}=i,o=0;o<s;o++)i[o]=Math.round(i[o]);return i};return"conversion"in t&&(e.conversion=t.conversion),e}for(let t of Wp){W[t]={},Object.defineProperty(W[t],"channels",{value:m[t].channels}),Object.defineProperty(W[t],"labels",{value:m[t].labels});let e=Gp(t),r=Object.keys(e);for(let n of r){let i=e[n];W[t][n]=Yp(i),W[t][n].raw=Up(i)}}var Mu=["keyword","gray","hex"],yi={};for(let t of Object.keys(W))yi[[...W[t].labels].sort().join("")]=t;var _i={};function H(t,e){if(!(this instanceof H))return new H(t,e);if(e&&e in Mu&&(e=null),e&&!(e in W))throw new Error("Unknown model: "+e);let r,n;if(t==null)this.model="rgb",this.color=[0,0,0],this.valpha=1;else if(t instanceof H)this.model=t.model,this.color=[...t.color],this.valpha=t.valpha;else if(typeof t=="string"){let i=G.get(t);if(i===null)throw new Error("Unable to parse color from string: "+t);this.model=i.model,n=W[this.model].channels,this.color=i.value.slice(0,n),this.valpha=typeof i.value[n]=="number"?i.value[n]:1}else if(t.length>0){this.model=e||"rgb",n=W[this.model].channels;let i=Array.prototype.slice.call(t,0,n);this.color=vi(i,n),this.valpha=typeof t[n]=="number"?t[n]:1}else if(typeof t=="number")this.model="rgb",this.color=[t>>16&255,t>>8&255,t&255],this.valpha=1;else{this.valpha=1;let i=Object.keys(t);"alpha"in t&&(i.splice(i.indexOf("alpha"),1),this.valpha=typeof t.alpha=="number"?t.alpha:0);let s=i.sort().join("");if(!(s in yi))throw new Error("Unable to parse color from object: "+JSON.stringify(t));this.model=yi[s];let{labels:o}=W[this.model],a=[];for(r=0;r<o.length;r++)a.push(t[o[r]]);this.color=vi(a)}if(_i[this.model])for(n=W[this.model].channels,r=0;r<n;r++){let i=_i[this.model][r];i&&(this.color[r]=i(this.color[r]))}this.valpha=Math.max(0,Math.min(1,this.valpha)),Object.freeze&&Object.freeze(this)}H.prototype={toString(){return this.string()},toJSON(){return this[this.model]()},string(t){let e=this.model in G.to?this:this.rgb();e=e.round(typeof t=="number"?t:1);let r=e.valpha===1?e.color:[...e.color,this.valpha];return G.to[e.model](...r)},percentString(t){let e=this.rgb().round(typeof t=="number"?t:1),r=e.valpha===1?e.color:[...e.color,this.valpha];return G.to.rgb.percent(...r)},array(){return this.valpha===1?[...this.color]:[...this.color,this.valpha]},object(){let t={},{channels:e}=W[this.model],{labels:r}=W[this.model];for(let n=0;n<e;n++)t[r[n]]=this.color[n];return this.valpha!==1&&(t.alpha=this.valpha),t},unitArray(){let t=this.rgb().color;return t[0]/=255,t[1]/=255,t[2]/=255,this.valpha!==1&&t.push(this.valpha),t},unitObject(){let t=this.rgb().object();return t.r/=255,t.g/=255,t.b/=255,this.valpha!==1&&(t.alpha=this.valpha),t},round(t){return t=Math.max(t||0,0),new H([...this.color.map(Vp(t)),this.valpha],this.model)},alpha(t){return t!==void 0?new H([...this.color,Math.max(0,Math.min(1,t))],this.model):this.valpha},red:k("rgb",0,B(255)),green:k("rgb",1,B(255)),blue:k("rgb",2,B(255)),hue:k(["hsl","hsv","hsl","hwb","hcg"],0,t=>(t%360+360)%360),saturationl:k("hsl",1,B(100)),lightness:k("hsl",2,B(100)),saturationv:k("hsv",1,B(100)),value:k("hsv",2,B(100)),chroma:k("hcg",1,B(100)),gray:k("hcg",2,B(100)),white:k("hwb",1,B(100)),wblack:k("hwb",2,B(100)),cyan:k("cmyk",0,B(100)),magenta:k("cmyk",1,B(100)),yellow:k("cmyk",2,B(100)),black:k("cmyk",3,B(100)),x:k("xyz",0,B(95.047)),y:k("xyz",1,B(100)),z:k("xyz",2,B(108.833)),l:k("lab",0,B(100)),a:k("lab",1),b:k("lab",2),keyword(t){return t!==void 0?new H(t):W[this.model].keyword(this.color)},hex(t){return t!==void 0?new H(t):G.to.hex(...this.rgb().round().color)},hexa(t){if(t!==void 0)return new H(t);let e=this.rgb().round().color,r=Math.round(this.valpha*255).toString(16).toUpperCase();return r.length===1&&(r="0"+r),G.to.hex(...e)+r},rgbNumber(){let t=this.rgb().color;return(t[0]&255)<<16|(t[1]&255)<<8|t[2]&255},luminosity(){let t=this.rgb().color,e=[];for(let[r,n]of t.entries()){let i=n/255;e[r]=i<=.04045?i/12.92:((i+.055)/1.055)**2.4}return .2126*e[0]+.7152*e[1]+.0722*e[2]},contrast(t){let e=this.luminosity(),r=t.luminosity();return e>r?(e+.05)/(r+.05):(r+.05)/(e+.05)},level(t){let e=this.contrast(t);return e>=7?"AAA":e>=4.5?"AA":""},isDark(){let t=this.rgb().color;return(t[0]*2126+t[1]*7152+t[2]*722)/1e4<128},isLight(){return!this.isDark()},negate(){let t=this.rgb();for(let e=0;e<3;e++)t.color[e]=255-t.color[e];return t},lighten(t){let e=this.hsl();return e.color[2]+=e.color[2]*t,e},darken(t){let e=this.hsl();return e.color[2]-=e.color[2]*t,e},saturate(t){let e=this.hsl();return e.color[1]+=e.color[1]*t,e},desaturate(t){let e=this.hsl();return e.color[1]-=e.color[1]*t,e},whiten(t){let e=this.hwb();return e.color[1]+=e.color[1]*t,e},blacken(t){let e=this.hwb();return e.color[2]+=e.color[2]*t,e},grayscale(){let t=this.rgb().color,e=t[0]*.3+t[1]*.59+t[2]*.11;return H.rgb(e,e,e)},fade(t){return this.alpha(this.valpha-this.valpha*t)},opaquer(t){return this.alpha(this.valpha+this.valpha*t)},rotate(t){let e=this.hsl(),r=e.color[0];return r=(r+t)%360,r=r<0?360+r:r,e.color[0]=r,e},mix(t,e){if(!t||!t.rgb)throw new Error('Argument to "mix" was not a Color instance, but rather an instance of '+typeof t);let r=t.rgb(),n=this.rgb(),i=e===void 0?.5:e,s=2*i-1,o=r.alpha()-n.alpha(),a=((s*o===-1?s:(s+o)/(1+s*o))+1)/2,u=1-a;return H.rgb(a*r.red()+u*n.red(),a*r.green()+u*n.green(),a*r.blue()+u*n.blue(),r.alpha()*i+n.alpha()*(1-i))}};for(let t of Object.keys(W)){if(Mu.includes(t))continue;let{channels:e}=W[t];H.prototype[t]=function(...r){return this.model===t?new H(this):r.length>0?new H(r,t):new H([...Kp(W[this.model][t].raw(this.color)),this.valpha],t)},H[t]=function(...r){let n=r[0];return typeof n=="number"&&(n=vi(r,e)),new H(n,t)}}function zp(t,e){return Number(t.toFixed(e))}function Vp(t){return function(e){return zp(e,t)}}function k(t,e,r){t=Array.isArray(t)?t:[t];for(let n of t)(_i[n]||=[])[e]=r;return t=t[0],function(n){let i;return n!==void 0?(r&&(n=r(n)),i=this[t](),i.color[e]=n,i):(i=this[t]().color[e],r&&(i=r(i)),i)}}function B(t){return function(e){return Math.max(0,Math.min(t,e))}}function Kp(t){return Array.isArray(t)?t:[t]}function vi(t,e){for(let r=0;r<e;r++)typeof t[r]!="number"&&(t[r]=0);return t}function Jp(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Zp=function(e){for(var r=0,n=0;r<e.length;n=e.charCodeAt(r++)+((n<<5)-n));var i=Math.floor(Math.abs(Math.sin(n)*1e4%1*16777216)).toString(16);return"#"+Array(6-i.length+1).join("0")+i},Eu=Jp(Zp);function Qp(t,e){let r=t.split(e||":"),n=Eu(r[0]);if(!r.length)return n;for(let i=0,s=r.length-1;i<s;i++)n=H(n).mix(H(Eu(r[i+1]))).saturate(1).hex();return n}Ou.exports=Qp});var qu=f((ib,Tu)=>{"use strict";function ue(t,e){if(e)return new ue(t).style(e);if(!(this instanceof ue))return new ue(t);this.text=t}ue.prototype.prefix="\x1B[";ue.prototype.suffix="m";ue.prototype.hex=function(e){e=e[0]==="#"?e.substring(1):e,e.length===3&&(e=e.split(""),e[5]=e[2],e[4]=e[2],e[3]=e[1],e[2]=e[1],e[1]=e[0],e=e.join(""));var r=e.substring(0,2),n=e.substring(2,4),i=e.substring(4,6);return[parseInt(r,16),parseInt(n,16),parseInt(i,16)]};ue.prototype.rgb=function(e,r,n){var i=e/255*5,s=r/255*5,o=n/255*5;return this.ansi(i,s,o)};ue.prototype.ansi=function(e,r,n){var i=Math.round(e),s=Math.round(r),o=Math.round(n);return 16+i*36+s*6+o};ue.prototype.reset=function(){return this.prefix+"39;49"+this.suffix};ue.prototype.style=function(e){return this.prefix+"38;5;"+this.rgb.apply(this,this.hex(e))+this.suffix+this.text+this.reset()};Tu.exports=ue});var Lu=f((sb,Au)=>{var Xp=Ru(),eg=qu();Au.exports=function(e,r){var n=r.namespace,i=r.colors!==!1?eg(n+":",Xp(n)):n+":";return e[0]=i+" "+e[0],e}});var ju=f((ob,Nu)=>{"use strict";Nu.exports=function(e,r){if(!r)return!1;for(var n=r.split(/[\s,]+/),i=0;i<n.length;i++){if(r=n[i].replace("*",".*?"),r.charAt(0)==="-"){if(new RegExp("^"+r.substr(1)+"$").test(e))return!1;continue}if(new RegExp("^"+r+"$").test(e))return!0}return!1}});var Pu=f((ab,Cu)=>{var tg=ju();Cu.exports=function(e){return function(n){try{return tg(n,e())}catch{}return!1}}});var Du=f((ub,Iu)=>{var rg=Pu();Iu.exports=rg(function(){return process.env.DEBUG||process.env.DIAGNOSTICS})});var ku=f((lb,Fu)=>{Fu.exports=function(t,e){try{Function.prototype.apply.call(console.log,console,e)}catch{}}});var Bu=f((cb,$u)=>{var ng=bi(),ig=require("tty").isatty(1),kr=ng(function t(e,r){return r=r||{},r.colors="colors"in r?r.colors:ig,r.namespace=e,r.prod=!1,r.dev=!0,!t.enabled(e)&&!(r.force||t.force)?t.nope(r):t.yep(r)});kr.modify(Lu());kr.use(Du());kr.set(ku());$u.exports=kr});var Lt=f((fb,wi)=>{process.env.NODE_ENV==="production"?wi.exports=wu():wi.exports=Bu()});var Gu=f((hb,Hu)=>{"use strict";var Ei=require("fs"),{StringDecoder:sg}=require("string_decoder"),{Stream:og}=He();function ag(){}Hu.exports=(t,e)=>{let r=Buffer.alloc(65536),n=new sg("utf8"),i=new og,s="",o=0,a=0;return t.start===-1&&delete t.start,i.readable=!0,i.destroy=()=>{i.destroyed=!0,i.emit("end"),i.emit("close")},Ei.open(t.file,"a+","0644",(u,l)=>{if(u){e?e(u):i.emit("error",u),i.destroy();return}(function d(){if(i.destroyed){Ei.close(l,ag);return}return Ei.read(l,r,0,r.length,o,(g,p)=>{if(g){e?e(g):i.emit("error",g),i.destroy();return}if(!p)return s&&((t.start==null||a>t.start)&&(e?e(null,s):i.emit("line",s)),a++,s=""),setTimeout(d,1e3);let v=n.write(r.slice(0,p));e||i.emit("data",v),v=(s+v).split(/\n+/);let c=v.length-1,b=0;for(;b<c;b++)(t.start==null||a>t.start)&&(e?e(null,v[b]):i.emit("line",v[b])),a++;return s=v[c],o+=p,d()})})()}),e?i.destroy:i}});var zu=f((pb,Yu)=>{"use strict";var X=require("fs"),U=require("path"),Wu=au(),ug=require("zlib"),{MESSAGE:lg}=$(),{Stream:cg,PassThrough:Uu}=He(),fg=nt(),le=Lt()("winston:file"),hg=require("os"),dg=Gu();Yu.exports=class extends fg{constructor(e={}){super(e),this.name=e.name||"file";function r(n,...i){i.slice(1).forEach(s=>{if(e[s])throw new Error(`Cannot set ${s} and ${n} together`)})}if(this._stream=new Uu,this._stream.setMaxListeners(30),this._onError=this._onError.bind(this),e.filename||e.dirname)r("filename or dirname","stream"),this._basename=this.filename=e.filename?U.basename(e.filename):"winston.log",this.dirname=e.dirname||U.dirname(e.filename),this.options=e.options||{flags:"a"};else if(e.stream)console.warn("options.stream will be removed in winston@4. Use winston.transports.Stream"),r("stream","filename","maxsize"),this._dest=this._stream.pipe(this._setupStream(e.stream)),this.dirname=U.dirname(this._dest.path);else throw new Error("Cannot log to file without filename or stream.");this.maxsize=e.maxsize||null,this.rotationFormat=e.rotationFormat||!1,this.zippedArchive=e.zippedArchive||!1,this.maxFiles=e.maxFiles||null,this.eol=typeof e.eol=="string"?e.eol:hg.EOL,this.tailable=e.tailable||!1,this.lazy=e.lazy||!1,this._size=0,this._pendingSize=0,this._created=0,this._drain=!1,this._opening=!1,this._ending=!1,this._fileExist=!1,this.dirname&&this._createLogDirIfNotExist(this.dirname),this.lazy||this.open()}finishIfEnding(){this._ending&&(this._opening?this.once("open",()=>{this._stream.once("finish",()=>this.emit("finish")),setImmediate(()=>this._stream.end())}):(this._stream.once("finish",()=>this.emit("finish")),setImmediate(()=>this._stream.end())))}_final(e){if(this._opening){this.once("open",()=>this._final(e));return}if(this._stream.end(),!this._dest||this._dest.writableFinished)return e();this._dest.once("finish",e),this._dest.once("error",e)}log(e,r=()=>{}){if(this.silent)return r(),!0;if(this._drain){this._stream.once("drain",()=>{this._drain=!1,this.log(e,r)});return}if(this._rotate){this._stream.once("rotate",()=>{this._rotate=!1,this.log(e,r)});return}if(this.lazy){if(!this._fileExist){this._opening||this.open(),this.once("open",()=>{this._fileExist=!0,this.log(e,r)});return}if(this._needsNewFile(this._pendingSize)){this._dest.once("close",()=>{this._opening||this.open(),this.once("open",()=>{this.log(e,r)})});return}}let n=`${e[lg]}${this.eol}`,i=Buffer.byteLength(n);function s(){if(this._size+=i,this._pendingSize-=i,le("logged %s %s",this._size,n),this.emit("logged",e),!this._rotate&&!this._opening&&this._needsNewFile()){if(this.lazy){this._endStream(()=>{this.emit("fileclosed")});return}this._rotate=!0,this._endStream(()=>this._rotateFile())}}this._pendingSize+=i,this._opening&&!this.rotatedWhileOpening&&this._needsNewFile(this._size+this._pendingSize)&&(this.rotatedWhileOpening=!0);let o=this._stream.write(n,s.bind(this));return o?r():(this._drain=!0,this._stream.once("drain",()=>{this._drain=!1,r()})),le("written",o,this._drain),this.finishIfEnding(),o}query(e,r){typeof e=="function"&&(r=e,e={}),e=g(e);let n=U.join(this.dirname,this.filename),i="",s=[],o=0,a=X.createReadStream(n,{encoding:"utf8"});a.on("error",p=>{if(a.readable&&a.destroy(),!!r)return p.code!=="ENOENT"?r(p):r(null,s)}),a.on("data",p=>{p=(i+p).split(/\n+/);let v=p.length-1,c=0;for(;c<v;c++)(!e.start||o>=e.start)&&u(p[c]),o++;i=p[v]}),a.on("close",()=>{i&&u(i,!0),e.order==="desc"&&(s=s.reverse()),r&&r(null,s)});function u(p,v){try{let c=JSON.parse(p);d(c)&&l(c)}catch(c){v||a.emit("error",c)}}function l(p){if(e.rows&&s.length>=e.rows&&e.order!=="desc"){a.readable&&a.destroy();return}e.fields&&(p=e.fields.reduce((v,c)=>(v[c]=p[c],v),{})),e.order==="desc"&&s.length>=e.rows&&s.shift(),s.push(p)}function d(p){if(!p||typeof p!="object")return;let v=new Date(p.timestamp);if(!(e.from&&v<e.from||e.until&&v>e.until||e.level&&e.level!==p.level))return!0}function g(p){return p=p||{},p.rows=p.rows||p.limit||10,p.start=p.start||0,p.until=p.until||new Date,typeof p.until!="object"&&(p.until=new Date(p.until)),p.from=p.from||p.until-24*60*60*1e3,typeof p.from!="object"&&(p.from=new Date(p.from)),p.order=p.order||"desc",p}}stream(e={}){let r=U.join(this.dirname,this.filename),n=new cg,i={file:r,start:e.start};return n.destroy=dg(i,(s,o)=>{if(s)return n.emit("error",s);try{n.emit("data",o),o=JSON.parse(o),n.emit("log",o)}catch(a){n.emit("error",a)}}),n}open(){this.filename&&(this._opening||(this._opening=!0,this.stat((e,r)=>{if(e)return this.emit("error",e);le("stat done: %s { size: %s }",this.filename,r),this._size=r,this._dest=this._createStream(this._stream),this._opening=!1,this.once("open",()=>{this._stream.emit("rotate")||(this._rotate=!1)})})))}stat(e){let r=this._getFile(),n=U.join(this.dirname,r);X.stat(n,(i,s)=>{if(i&&i.code==="ENOENT")return le("ENOENT\xA0ok",n),this.filename=r,e(null,0);if(i)return le(`err ${i.code} ${n}`),e(i);if(!s||this._needsNewFile(s.size))return this._incFile(()=>this.stat(e));this.filename=r,e(null,s.size)})}close(e){this._stream&&this._stream.end(()=>{e&&e(),this.emit("flush"),this.emit("closed")})}_needsNewFile(e){return e=e||this._size,this.maxsize&&e>=this.maxsize}_onError(e){this.emit("error",e)}_setupStream(e){return e.on("error",this._onError),e}_cleanupStream(e){return e.removeListener("error",this._onError),e.destroy(),e}_rotateFile(){this._incFile(()=>this.open())}_endStream(e=()=>{}){this._dest?(this._stream.unpipe(this._dest),this._dest.end(()=>{this._cleanupStream(this._dest),e()})):e()}_createStream(e){let r=U.join(this.dirname,this.filename);le("create stream start",r,this.options);let n=X.createWriteStream(r,this.options).on("error",i=>le(i)).on("close",()=>le("close",n.path,n.bytesWritten)).on("open",()=>{le("file open ok",r),this.emit("open",r),e.pipe(n),this.rotatedWhileOpening&&(this._stream=new Uu,this._stream.setMaxListeners(30),this._rotateFile(),this.rotatedWhileOpening=!1,this._cleanupStream(n),e.end())});return le("create stream ok",r),n}_incFile(e){le("_incFile",this.filename);let r=U.extname(this._basename),n=U.basename(this._basename,r),i=[];this.zippedArchive&&i.push(function(s){let o=this._created>0&&!this.tailable?this._created:"";this._compressFile(U.join(this.dirname,`${n}${o}${r}`),U.join(this.dirname,`${n}${o}${r}.gz`),s)}.bind(this)),i.push(function(s){this.tailable?this._checkMaxFilesTailable(r,n,s):(this._created+=1,this._checkMaxFilesIncrementing(r,n,s))}.bind(this)),Wu(i,e)}_getFile(){let e=U.extname(this._basename),r=U.basename(this._basename,e),n=this.rotationFormat?this.rotationFormat():this._created;return!this.tailable&&this._created?`${r}${n}${e}`:`${r}${e}`}_checkMaxFilesIncrementing(e,r,n){if(!this.maxFiles||this._created<this.maxFiles)return setImmediate(n);let i=this._created-this.maxFiles,s=i!==0?i:"",o=this.zippedArchive?".gz":"",a=`${r}${s}${e}${o}`,u=U.join(this.dirname,a);X.unlink(u,n)}_checkMaxFilesTailable(e,r,n){let i=[];if(!this.maxFiles)return;let s=this.zippedArchive?".gz":"";for(let o=this.maxFiles-1;o>1;o--)i.push(function(a,u){let l=`${r}${a-1}${e}${s}`,d=U.join(this.dirname,l);X.exists(d,g=>{if(!g)return u(null);l=`${r}${a}${e}${s}`,X.rename(d,U.join(this.dirname,l),u)})}.bind(this,o));Wu(i,()=>{X.rename(U.join(this.dirname,`${r}${e}${s}`),U.join(this.dirname,`${r}1${e}${s}`),n)})}_compressFile(e,r,n){X.access(e,X.F_OK,i=>{if(i)return n();var s=ug.createGzip(),o=X.createReadStream(e),a=X.createWriteStream(r);a.on("finish",()=>{X.unlink(e,n)}),o.pipe(s).pipe(a)})}_createLogDirIfNotExist(e){X.existsSync(e)||X.mkdirSync(e,{recursive:!0})}}});var Ku=f((mb,Vu)=>{"use strict";var pg=require("http"),gg=require("https"),{Stream:mg}=He(),bg=nt(),{configure:yg}=gt();Vu.exports=class extends bg{constructor(e={}){super(e),this.options=e,this.name=e.name||"http",this.ssl=!!e.ssl,this.host=e.host||"localhost",this.port=e.port,this.auth=e.auth,this.path=e.path||"",this.maximumDepth=e.maximumDepth,this.agent=e.agent,this.headers=e.headers||{},this.headers["content-type"]="application/json",this.batch=e.batch||!1,this.batchInterval=e.batchInterval||5e3,this.batchCount=e.batchCount||10,this.batchOptions=[],this.batchTimeoutID=-1,this.batchCallback={},this.port||(this.port=this.ssl?443:80)}log(e,r){this._request(e,null,null,(n,i)=>{i&&i.statusCode!==200&&(n=new Error(`Invalid HTTP Status Code: ${i.statusCode}`)),n?this.emit("warn",n):this.emit("logged",e)}),r&&setImmediate(r)}query(e,r){typeof e=="function"&&(r=e,e={}),e={method:"query",params:this.normalizeQuery(e)};let n=e.params.auth||null;delete e.params.auth;let i=e.params.path||null;delete e.params.path,this._request(e,n,i,(s,o,a)=>{if(o&&o.statusCode!==200&&(s=new Error(`Invalid HTTP Status Code: ${o.statusCode}`)),s)return r(s);if(typeof a=="string")try{a=JSON.parse(a)}catch(u){return r(u)}r(null,a)})}stream(e={}){let r=new mg;e={method:"stream",params:e};let n=e.params.path||null;delete e.params.path;let i=e.params.auth||null;delete e.params.auth;let s="",o=this._request(e,i,n);return r.destroy=()=>o.destroy(),o.on("data",a=>{a=(s+a).split(/\n+/);let u=a.length-1,l=0;for(;l<u;l++)try{r.emit("log",JSON.parse(a[l]))}catch(d){r.emit("error",d)}s=a[u]}),o.on("error",a=>r.emit("error",a)),r}_request(e,r,n,i){e=e||{},r=r||this.auth,n=n||this.path||"",this.batch?this._doBatch(e,i,r,n):this._doRequest(e,i,r,n)}_doBatch(e,r,n,i){if(this.batchOptions.push(e),this.batchOptions.length===1){let s=this;this.batchCallback=r,this.batchTimeoutID=setTimeout(function(){s.batchTimeoutID=-1,s._doBatchRequest(s.batchCallback,n,i)},this.batchInterval)}this.batchOptions.length===this.batchCount&&this._doBatchRequest(this.batchCallback,n,i)}_doBatchRequest(e,r,n){this.batchTimeoutID>0&&(clearTimeout(this.batchTimeoutID),this.batchTimeoutID=-1);let i=this.batchOptions.slice();this.batchOptions=[],this._doRequest(i,e,r,n)}_doRequest(e,r,n,i){let s=Object.assign({},this.headers);n&&n.bearer&&(s.Authorization=`Bearer ${n.bearer}`);let o=(this.ssl?gg:pg).request({...this.options,method:"POST",host:this.host,port:this.port,path:`/${i.replace(/^\//,"")}`,headers:s,auth:n&&n.username&&n.password?`${n.username}:${n.password}`:"",agent:this.agent});o.on("error",r),o.on("response",u=>u.on("end",()=>r(null,u)).resume());let a=yg({...this.maximumDepth&&{maximumDepth:this.maximumDepth}});o.end(Buffer.from(a(e,this.options.replacer),"utf8"))}}});var Si=f((bb,Ju)=>{"use strict";var ge=t=>t!==null&&typeof t=="object"&&typeof t.pipe=="function";ge.writable=t=>ge(t)&&t.writable!==!1&&typeof t._write=="function"&&typeof t._writableState=="object";ge.readable=t=>ge(t)&&t.readable!==!1&&typeof t._read=="function"&&typeof t._readableState=="object";ge.duplex=t=>ge.writable(t)&&ge.readable(t);ge.transform=t=>ge.duplex(t)&&typeof t._transform=="function";Ju.exports=ge});var Qu=f((_b,Zu)=>{"use strict";var _g=Si(),{MESSAGE:vg}=$(),wg=require("os"),Eg=nt();Zu.exports=class extends Eg{constructor(e={}){if(super(e),!e.stream||!_g(e.stream))throw new Error("options.stream is required.");this._stream=e.stream,this._stream.setMaxListeners(1/0),this.isObjectMode=e.stream._writableState.objectMode,this.eol=typeof e.eol=="string"?e.eol:wg.EOL}log(e,r){if(setImmediate(()=>this.emit("logged",e)),this.isObjectMode){this._stream.write(e),r&&r();return}this._stream.write(`${e[vg]}${this.eol}`),r&&r()}}});var Xu=f(Nt=>{"use strict";Object.defineProperty(Nt,"Console",{configurable:!0,enumerable:!0,get(){return Ma()}});Object.defineProperty(Nt,"File",{configurable:!0,enumerable:!0,get(){return zu()}});Object.defineProperty(Nt,"Http",{configurable:!0,enumerable:!0,get(){return Ku()}});Object.defineProperty(Nt,"Stream",{configurable:!0,enumerable:!0,get(){return Qu()}})});var Br=f(jt=>{"use strict";var $r=Mn(),{configs:xi}=$();jt.cli=$r.levels(xi.cli);jt.npm=$r.levels(xi.npm);jt.syslog=$r.levels(xi.syslog);jt.addColors=$r.levels});var tl=f((Hr,el)=>{"use strict";Object.defineProperty(Hr,"__esModule",{value:!0});var Sg=vr(),xg=Ge(Sg),Mg=Ar(),Og=Ge(Mg),Rg=ui(),Tg=Ge(Rg),qg=si(),Ag=Ge(qg),Lg=oi(),Ng=Ge(Lg),jg=Be(),Cg=Ge(jg),Pg=st(),Ig=Ge(Pg);function Ge(t){return t&&t.__esModule?t:{default:t}}function Dg(t,e,r){r=(0,Ag.default)(r);var n=0,i=0,{length:s}=t,o=!1;s===0&&r(null);function a(u,l){u===!1&&(o=!0),o!==!0&&(u?r(u):(++i===s||l===Og.default)&&r(null))}for(;n<s;n++)e(t[n],n,(0,Ng.default)(a))}function Fg(t,e,r){return(0,Tg.default)(t,1/0,e,r)}function kg(t,e,r){var n=(0,xg.default)(t)?Dg:Fg;return n(t,(0,Cg.default)(e),r)}Hr.default=(0,Ig.default)(kg,3);el.exports=Hr.default});var nl=f((Gr,rl)=>{"use strict";Object.defineProperty(Gr,"__esModule",{value:!0});Gr.default=$g;function $g(t){return(e,r,n)=>t(e,n)}rl.exports=Gr.default});var Yr=f((Ur,il)=>{"use strict";Object.defineProperty(Ur,"__esModule",{value:!0});var Bg=tl(),Hg=Wr(Bg),Gg=nl(),Wg=Wr(Gg),Ug=Be(),Yg=Wr(Ug),zg=st(),Vg=Wr(zg);function Wr(t){return t&&t.__esModule?t:{default:t}}function Kg(t,e,r){return(0,Hg.default)(t,(0,Wg.default)((0,Yg.default)(e)),r)}Ur.default=(0,Vg.default)(Kg,3);il.exports=Ur.default});var ol=f((Eb,sl)=>{"use strict";var Jg=Object.prototype.toString;sl.exports=function(e){if(typeof e.displayName=="string"&&e.constructor.name)return e.displayName;if(typeof e.name=="string"&&e.name)return e.name;if(typeof e=="object"&&e.constructor&&typeof e.constructor.name=="string")return e.constructor.name;var r=e.toString(),n=Jg.call(e).slice(8,-1);return n==="Function"?r=r.substring(r.indexOf("(")+1,r.indexOf(")")):r=n,r||"anonymous"}});var Mi=f((Sb,al)=>{"use strict";var Zg=ol();al.exports=function(e){var r=0,n;function i(){return r||(r=1,n=e.apply(this,arguments),e=null),n}return i.displayName=Zg(e),i}});var Oi=f(Pt=>{Pt.get=function(t){var e=Error.stackTraceLimit;Error.stackTraceLimit=1/0;var r={},n=Error.prepareStackTrace;Error.prepareStackTrace=function(s,o){return o},Error.captureStackTrace(r,t||Pt.get);var i=r.stack;return Error.prepareStackTrace=n,Error.stackTraceLimit=e,i};Pt.parse=function(t){if(!t.stack)return[];var e=this,r=t.stack.split(`
|
|
28
|
-
`).slice(1);return r.map(function(n){if(n.match(/^\s*[-]{4,}$/))return e._createParsedCallSite({fileName:n,lineNumber:null,functionName:null,typeName:null,methodName:null,columnNumber:null,native:null});var i=n.match(/at (?:(.+)\s+\()?(?:(.+?):(\d+)(?::(\d+))?|([^)]+))\)?/);if(i){var s=null,o=null,a=null,u=null,l=null,d=i[5]==="native";if(i[1]){a=i[1];var g=a.lastIndexOf(".");if(a[g-1]=="."&&g--,g>0){s=a.substr(0,g),o=a.substr(g+1);var p=s.indexOf(".Module");p>0&&(a=a.substr(p+1),s=s.substr(0,p))}u=null}o&&(u=s,l=o),o==="<anonymous>"&&(l=null,a=null);var v={fileName:i[2]||null,lineNumber:parseInt(i[3],10)||null,functionName:a,typeName:u,methodName:l,columnNumber:parseInt(i[4],10)||null,native:d};return e._createParsedCallSite(v)}}).filter(function(n){return!!n})};function Ct(t){for(var e in t)this[e]=t[e]}var Qg=["this","typeName","functionName","methodName","fileName","lineNumber","columnNumber","function","evalOrigin"],Xg=["topLevel","eval","native","constructor"];Qg.forEach(function(t){Ct.prototype[t]=null,Ct.prototype["get"+t[0].toUpperCase()+t.substr(1)]=function(){return this[t]}});Xg.forEach(function(t){Ct.prototype[t]=!1,Ct.prototype["is"+t[0].toUpperCase()+t.substr(1)]=function(){return this[t]}});Pt._createParsedCallSite=function(t){return new Ct(t)}});var ll=f((Ob,ul)=>{"use strict";var{Writable:e0}=He();ul.exports=class extends e0{constructor(e){if(super({objectMode:!0}),!e)throw new Error("ExceptionStream requires a TransportStream instance.");this.handleExceptions=!0,this.transport=e}_write(e,r,n){return e.exception?this.transport.log(e,n):(n(),!0)}}});var Ti=f((Tb,hl)=>{"use strict";var cl=require("os"),t0=Yr(),Ri=Lt()("winston:exception"),r0=Mi(),fl=Oi(),n0=ll();hl.exports=class{constructor(e){if(!e)throw new Error("Logger is required to handle exceptions");this.logger=e,this.handlers=new Map}handle(...e){e.forEach(r=>{if(Array.isArray(r))return r.forEach(n=>this._addHandler(n));this._addHandler(r)}),this.catcher||(this.catcher=this._uncaughtException.bind(this),process.on("uncaughtException",this.catcher))}unhandle(){this.catcher&&(process.removeListener("uncaughtException",this.catcher),this.catcher=!1,Array.from(this.handlers.values()).forEach(e=>this.logger.unpipe(e)))}getAllInfo(e){let r=null;return e&&(r=typeof e=="string"?e:e.message),{error:e,level:"error",message:[`uncaughtException: ${r||"(no error message)"}`,e&&e.stack||" No stack trace"].join(`
|
|
29
|
-
`),stack:e&&e.stack,exception:!0,date:new Date().toString(),process:this.getProcessInfo(),os:this.getOsInfo(),trace:this.getTrace(e)}}getProcessInfo(){return{pid:process.pid,uid:process.getuid?process.getuid():null,gid:process.getgid?process.getgid():null,cwd:process.cwd(),execPath:process.execPath,version:process.version,argv:process.argv,memoryUsage:process.memoryUsage()}}getOsInfo(){return{loadavg:cl.loadavg(),uptime:cl.uptime()}}getTrace(e){return(e?fl.parse(e):fl.get()).map(n=>({column:n.getColumnNumber(),file:n.getFileName(),function:n.getFunctionName(),line:n.getLineNumber(),method:n.getMethodName(),native:n.isNative()}))}_addHandler(e){if(!this.handlers.has(e)){e.handleExceptions=!0;let r=new n0(e);this.handlers.set(e,r),this.logger.pipe(r)}}_uncaughtException(e){let r=this.getAllInfo(e),n=this._getExceptionHandlers(),i=typeof this.logger.exitOnError=="function"?this.logger.exitOnError(e):this.logger.exitOnError,s;!n.length&&i&&(console.warn("winston: exitOnError cannot be true with no exception handlers."),console.warn("winston: not exiting process."),i=!1);function o(){Ri("doExit",i),Ri("process._exiting",process._exiting),i&&!process._exiting&&(s&&clearTimeout(s),process.exit(1))}if(!n||n.length===0)return process.nextTick(o);t0(n,(a,u)=>{let l=r0(u),d=a.transport||a;function g(p){return()=>{Ri(p),l()}}d._ending=!0,d.once("finish",g("finished")),d.once("error",g("error"))},()=>i&&o()),this.logger.log(r),i&&(s=setTimeout(o,3e3))}_getExceptionHandlers(){return this.logger.transports.filter(e=>(e.transport||e).handleExceptions)}}});var pl=f((Ab,dl)=>{"use strict";var{Writable:i0}=He();dl.exports=class extends i0{constructor(e){if(super({objectMode:!0}),!e)throw new Error("RejectionStream requires a TransportStream instance.");this.handleRejections=!0,this.transport=e}_write(e,r,n){return e.rejection?this.transport.log(e,n):(n(),!0)}}});var Ai=f((Nb,bl)=>{"use strict";var gl=require("os"),s0=Yr(),qi=Lt()("winston:rejection"),o0=Mi(),ml=Oi(),a0=pl();bl.exports=class{constructor(e){if(!e)throw new Error("Logger is required to handle rejections");this.logger=e,this.handlers=new Map}handle(...e){e.forEach(r=>{if(Array.isArray(r))return r.forEach(n=>this._addHandler(n));this._addHandler(r)}),this.catcher||(this.catcher=this._unhandledRejection.bind(this),process.on("unhandledRejection",this.catcher))}unhandle(){this.catcher&&(process.removeListener("unhandledRejection",this.catcher),this.catcher=!1,Array.from(this.handlers.values()).forEach(e=>this.logger.unpipe(e)))}getAllInfo(e){let r=null;return e&&(r=typeof e=="string"?e:e.message),{error:e,level:"error",message:[`unhandledRejection: ${r||"(no error message)"}`,e&&e.stack||" No stack trace"].join(`
|
|
30
|
-
`),stack:e&&e.stack,rejection:!0,date:new Date().toString(),process:this.getProcessInfo(),os:this.getOsInfo(),trace:this.getTrace(e)}}getProcessInfo(){return{pid:process.pid,uid:process.getuid?process.getuid():null,gid:process.getgid?process.getgid():null,cwd:process.cwd(),execPath:process.execPath,version:process.version,argv:process.argv,memoryUsage:process.memoryUsage()}}getOsInfo(){return{loadavg:gl.loadavg(),uptime:gl.uptime()}}getTrace(e){return(e?ml.parse(e):ml.get()).map(n=>({column:n.getColumnNumber(),file:n.getFileName(),function:n.getFunctionName(),line:n.getLineNumber(),method:n.getMethodName(),native:n.isNative()}))}_addHandler(e){if(!this.handlers.has(e)){e.handleRejections=!0;let r=new a0(e);this.handlers.set(e,r),this.logger.pipe(r)}}_unhandledRejection(e){let r=this.getAllInfo(e),n=this._getRejectionHandlers(),i=typeof this.logger.exitOnError=="function"?this.logger.exitOnError(e):this.logger.exitOnError,s;!n.length&&i&&(console.warn("winston: exitOnError cannot be true with no rejection handlers."),console.warn("winston: not exiting process."),i=!1);function o(){qi("doExit",i),qi("process._exiting",process._exiting),i&&!process._exiting&&(s&&clearTimeout(s),process.exit(1))}if(!n||n.length===0)return process.nextTick(o);s0(n,(a,u)=>{let l=o0(u),d=a.transport||a;function g(p){return()=>{qi(p),l()}}d._ending=!0,d.once("finish",g("finished")),d.once("error",g("error"))},()=>i&&o()),this.logger.log(r),i&&(s=setTimeout(o,3e3))}_getRejectionHandlers(){return this.logger.transports.filter(e=>(e.transport||e).handleRejections)}}});var _l=f((jb,yl)=>{"use strict";var Li=class{constructor(e){let r=zr();if(typeof e!="object"||Array.isArray(e)||!(e instanceof r))throw new Error("Logger is required for profiling");this.logger=e,this.start=Date.now()}done(...e){typeof e[e.length-1]=="function"&&(console.warn("Callback function no longer supported as of winston@3.0.0"),e.pop());let r=typeof e[e.length-1]=="object"?e.pop():{};return r.level=r.level||"info",r.durationMs=Date.now()-this.start,this.logger.write(r)}};yl.exports=Li});var zr=f((Cb,Sl)=>{"use strict";var{Stream:u0,Transform:l0}=He(),vl=Yr(),{LEVEL:me,SPLAT:wl}=$(),El=Si(),c0=Ti(),f0=Ai(),h0=ri(),d0=_l(),{warn:p0}=On(),g0=Br(),m0=/%[scdjifoO%]/g,Vr=class extends l0{constructor(e){super({objectMode:!0}),this.configure(e)}child(e){let r=this;return Object.create(r,{write:{value:function(n){let i=Object.assign({},e,n);n instanceof Error&&(i.stack=n.stack,i.message=n.message,i.cause=n.cause),r.write(i)}}})}configure({silent:e,format:r,defaultMeta:n,levels:i,level:s="info",exitOnError:o=!0,transports:a,colors:u,emitErrs:l,formatters:d,padLevels:g,rewriters:p,stripColors:v,exceptionHandlers:c,rejectionHandlers:b}={}){if(this.transports.length&&this.clear(),this.silent=e,this.format=r||this.format||vn()(),this.defaultMeta=n||null,this.levels=i||this.levels||g0.npm.levels,this.level=s,this.exceptions&&this.exceptions.unhandle(),this.rejections&&this.rejections.unhandle(),this.exceptions=new c0(this),this.rejections=new f0(this),this.profilers={},this.exitOnError=o,a&&(a=Array.isArray(a)?a:[a],a.forEach(w=>this.add(w))),u||l||d||g||p||v)throw new Error(["{ colors, emitErrs, formatters, padLevels, rewriters, stripColors } were removed in winston@3.0.0.","Use a custom winston.format(function) instead.","See: https://github.com/winstonjs/winston/tree/master/UPGRADE-3.0.md"].join(`
|
|
31
|
-
`));c&&this.exceptions.handle(c),b&&this.rejections.handle(b)}getHighestLogLevel(){let e=It(this.levels,this.level);return!this.transports||this.transports.length===0?e:this.transports.reduce((r,n)=>{let i=It(this.levels,n.level);return i!==null&&i>r?i:r},e)}isLevelEnabled(e){let r=It(this.levels,e);if(r===null)return!1;let n=It(this.levels,this.level);return n===null?!1:!this.transports||this.transports.length===0?n>=r:this.transports.findIndex(s=>{let o=It(this.levels,s.level);return o===null&&(o=n),o>=r})!==-1}log(e,r,...n){if(arguments.length===1)return e[me]=e.level,this._addDefaultMeta(e),this.write(e),this;if(arguments.length===2)return r&&typeof r=="object"?(r[me]=r.level=e,this._addDefaultMeta(r),this.write(r),this):(r={[me]:e,level:e,message:r},this._addDefaultMeta(r),this.write(r),this);let[i]=n;if(typeof i=="object"&&i!==null&&!(r&&r.match&&r.match(m0))){let o=Object.assign({},this.defaultMeta,i,{[me]:e,[wl]:n,level:e,message:r});return i.message&&(o.message=`${o.message} ${i.message}`),i.stack&&(o.stack=i.stack),i.cause&&(o.cause=i.cause),this.write(o),this}return this.write(Object.assign({},this.defaultMeta,{[me]:e,[wl]:n,level:e,message:r})),this}_transform(e,r,n){if(this.silent)return n();e[me]||(e[me]=e.level),!this.levels[e[me]]&&this.levels[e[me]]!==0&&console.error("[winston] Unknown logger level: %s",e[me]),this._readableState.pipes||console.error("[winston] Attempt to write logs with no transports, which can increase memory usage: %j",e);try{this.push(this.format.transform(e,this.format.options))}finally{this._writableState.sync=!1,n()}}_final(e){let r=this.transports.slice();vl(r,(n,i)=>{if(!n||n.finished)return setImmediate(i);n.once("finish",i),n.end()},e)}add(e){let r=!El(e)||e.log.length>2?new h0({transport:e}):e;if(!r._writableState||!r._writableState.objectMode)throw new Error("Transports must WritableStreams in objectMode. Set { objectMode: true }.");return this._onEvent("error",r),this._onEvent("warn",r),this.pipe(r),e.handleExceptions&&this.exceptions.handle(),e.handleRejections&&this.rejections.handle(),this}remove(e){if(!e)return this;let r=e;return(!El(e)||e.log.length>2)&&(r=this.transports.filter(n=>n.transport===e)[0]),r&&this.unpipe(r),this}clear(){return this.unpipe(),this}close(){return this.exceptions.unhandle(),this.rejections.unhandle(),this.clear(),this.emit("close"),this}setLevels(){p0.deprecated("setLevels")}query(e,r){typeof e=="function"&&(r=e,e={}),e=e||{};let n={},i=Object.assign({},e.query||{});function s(a,u){e.query&&typeof a.formatQuery=="function"&&(e.query=a.formatQuery(i)),a.query(e,(l,d)=>{if(l)return u(l);typeof a.formatResults=="function"&&(d=a.formatResults(d,e.format)),u(null,d)})}function o(a,u){s(a,(l,d)=>{u&&(d=l||d,d&&(n[a.name]=d),u()),u=null})}vl(this.transports.filter(a=>!!a.query),o,()=>r(null,n))}stream(e={}){let r=new u0,n=[];return r._streams=n,r.destroy=()=>{let i=n.length;for(;i--;)n[i].destroy()},this.transports.filter(i=>!!i.stream).forEach(i=>{let s=i.stream(e);s&&(n.push(s),s.on("log",o=>{o.transport=o.transport||[],o.transport.push(i.name),r.emit("log",o)}),s.on("error",o=>{o.transport=o.transport||[],o.transport.push(i.name),r.emit("error",o)}))}),r}startTimer(){return new d0(this)}profile(e,...r){let n=Date.now();if(this.profilers[e]){let i=this.profilers[e];delete this.profilers[e],typeof r[r.length-2]=="function"&&(console.warn("Callback function no longer supported as of winston@3.0.0"),r.pop());let s=typeof r[r.length-1]=="object"?r.pop():{};return s.level=s.level||"info",s.durationMs=n-i,s.message=s.message||e,this.write(s)}return this.profilers[e]=n,this}handleExceptions(...e){console.warn("Deprecated: .handleExceptions() will be removed in winston@4. Use .exceptions.handle()"),this.exceptions.handle(...e)}unhandleExceptions(...e){console.warn("Deprecated: .unhandleExceptions() will be removed in winston@4. Use .exceptions.unhandle()"),this.exceptions.unhandle(...e)}cli(){throw new Error(["Logger.cli() was removed in winston@3.0.0","Use a custom winston.formats.cli() instead.","See: https://github.com/winstonjs/winston/tree/master/UPGRADE-3.0.md"].join(`
|
|
32
|
-
`))}_onEvent(e,r){function n(i){e==="error"&&!this.transports.includes(r)&&this.add(r),this.emit(e,i,r)}r["__winston"+e]||(r["__winston"+e]=n.bind(this),r.on(e,r["__winston"+e]))}_addDefaultMeta(e){this.defaultMeta&&Object.assign(e,this.defaultMeta)}};function It(t,e){let r=t[e];return!r&&r!==0?null:r}Object.defineProperty(Vr.prototype,"transports",{configurable:!1,enumerable:!0,get(){let{pipes:t}=this._readableState;return Array.isArray(t)?t:[t].filter(Boolean)}});Sl.exports=Vr});var Ni=f((Pb,xl)=>{"use strict";var{LEVEL:b0}=$(),y0=Br(),_0=zr(),v0=Lt()("winston:create-logger");function w0(t){return"is"+t.charAt(0).toUpperCase()+t.slice(1)+"Enabled"}xl.exports=function(t={}){t.levels=t.levels||y0.npm.levels;class e extends _0{constructor(i){super(i)}}let r=new e(t);return Object.keys(t.levels).forEach(function(n){if(v0('Define prototype method for "%s"',n),n==="log"){console.warn('Level "log" not defined: conflicts with the method "log". Use a different level name.');return}e.prototype[n]=function(...i){let s=this||r;if(i.length===1){let[o]=i,a=o&&o.message&&o||{message:o};return a.level=a[b0]=n,s._addDefaultMeta(a),s.write(a),this||r}return i.length===0?(s.log(n,""),s):s.log(n,...i)},e.prototype[w0(n)]=function(){return(this||r).isLevelEnabled(n)}}),r}});var Ol=f((Db,Ml)=>{"use strict";var E0=Ni();Ml.exports=class{constructor(e={}){this.loggers=new Map,this.options=e}add(e,r){if(!this.loggers.has(e)){r=Object.assign({},r||this.options);let n=r.transports||this.options.transports;n?r.transports=Array.isArray(n)?n.slice():[n]:r.transports=[];let i=E0(r);i.on("close",()=>this._delete(e)),this.loggers.set(e,i)}return this.loggers.get(e)}get(e,r){return this.add(e,r)}has(e){return!!this.loggers.has(e)}close(e){if(e)return this._removeLogger(e);this.loggers.forEach((r,n)=>this._removeLogger(n))}_removeLogger(e){if(!this.loggers.has(e))return;this.loggers.get(e).close(),this._delete(e)}_delete(e){this.loggers.delete(e)}}});var Tl=f(L=>{"use strict";var Rl=Mn(),{warn:Dt}=On();L.version=So().version;L.transports=Xu();L.config=Br();L.addColors=Rl.levels;L.format=Rl.format;L.createLogger=Ni();L.Logger=zr();L.ExceptionHandler=Ti();L.RejectionHandler=Ai();L.Container=Ol();L.Transport=nt();L.loggers=new L.Container;var be=L.createLogger();Object.keys(L.config.npm.levels).concat(["log","query","stream","add","remove","clear","profile","startTimer","handleExceptions","unhandleExceptions","handleRejections","unhandleRejections","configure","child"]).forEach(t=>L[t]=(...e)=>be[t](...e));Object.defineProperty(L,"level",{get(){return be.level},set(t){be.level=t}});Object.defineProperty(L,"exceptions",{get(){return be.exceptions}});Object.defineProperty(L,"rejections",{get(){return be.rejections}});["exitOnError"].forEach(t=>{Object.defineProperty(L,t,{get(){return be[t]},set(e){be[t]=e}})});Object.defineProperty(L,"default",{get(){return{exceptionHandlers:be.exceptionHandlers,rejectionHandlers:be.rejectionHandlers,transports:be.transports}}});Dt.deprecated(L,"setLevels");Dt.forFunctions(L,"useFormat",["cli"]);Dt.forProperties(L,"useFormat",["padLevels","stripColors"]);Dt.forFunctions(L,"deprecated",["addRewriter","addFilter","clone","extend"]);Dt.forProperties(L,"deprecated",["emitErrs","levelLength"])});var Pl=f((Ft,Cl)=>{"use strict";Object.defineProperty(Ft,"__esModule",{value:!0});Ft.default=void 0;var M0={printWidth:100,tabWidth:2,semi:!0,singleQuote:!0,trailingComma:"es5",bracketSpacing:!0,bracketSameLine:!1,arrowParens:"avoid",plugins:["@trivago/prettier-plugin-sort-imports","prettier-plugin-sh","prettier-plugin-pkg","prettier-plugin-toml","prettier-plugin-nginx"],overrides:[{files:["*.toml.template"],options:{parser:"toml"}},{files:["*.nginxconf","nginx*.conf","nginx*.conf.template"],options:{parser:"nginx"}},{files:[".env",".env.*"],options:{parser:"sh"}}],importOrder:["(^react(.*)|^next(.*))$","<THIRD_PARTY_MODULES>","^[./]"],importOrderSeparation:!0,importOrderSortSpecifiers:!0,importOrderParserPlugins:["typescript","jsx","decorators-legacy"]},Ub=Ft.default=M0;Cl.exports=Ft.default});var Nl=require("child_process"),jl=require("fs");var Gi=(t=0)=>e=>`\x1B[${e+t}m`,Wi=(t=0)=>e=>`\x1B[${38+t};5;${e}m`,Ui=(t=0)=>(e,r,n)=>`\x1B[${38+t};2;${e};${r};${n}m`,j={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],overline:[53,55],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],gray:[90,39],grey:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgGray:[100,49],bgGrey:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}},j0=Object.keys(j.modifier),zl=Object.keys(j.color),Vl=Object.keys(j.bgColor),C0=[...zl,...Vl];function Kl(){let t=new Map;for(let[e,r]of Object.entries(j)){for(let[n,i]of Object.entries(r))j[n]={open:`\x1B[${i[0]}m`,close:`\x1B[${i[1]}m`},r[n]=j[n],t.set(i[0],i[1]);Object.defineProperty(j,e,{value:r,enumerable:!1})}return Object.defineProperty(j,"codes",{value:t,enumerable:!1}),j.color.close="\x1B[39m",j.bgColor.close="\x1B[49m",j.color.ansi=Gi(),j.color.ansi256=Wi(),j.color.ansi16m=Ui(),j.bgColor.ansi=Gi(10),j.bgColor.ansi256=Wi(10),j.bgColor.ansi16m=Ui(10),Object.defineProperties(j,{rgbToAnsi256:{value(e,r,n){return e===r&&r===n?e<8?16:e>248?231:Math.round((e-8)/247*24)+232:16+36*Math.round(e/255*5)+6*Math.round(r/255*5)+Math.round(n/255*5)},enumerable:!1},hexToRgb:{value(e){let r=/[a-f\d]{6}|[a-f\d]{3}/i.exec(e.toString(16));if(!r)return[0,0,0];let[n]=r;n.length===3&&(n=[...n].map(s=>s+s).join(""));let i=Number.parseInt(n,16);return[i>>16&255,i>>8&255,i&255]},enumerable:!1},hexToAnsi256:{value:e=>j.rgbToAnsi256(...j.hexToRgb(e)),enumerable:!1},ansi256ToAnsi:{value(e){if(e<8)return 30+e;if(e<16)return 90+(e-8);let r,n,i;if(e>=232)r=((e-232)*10+8)/255,n=r,i=r;else{e-=16;let a=e%36;r=Math.floor(e/36)/5,n=Math.floor(a/6)/5,i=a%6/5}let s=Math.max(r,n,i)*2;if(s===0)return 30;let o=30+(Math.round(i)<<2|Math.round(n)<<1|Math.round(r));return s===2&&(o+=60),o},enumerable:!1},rgbToAnsi:{value:(e,r,n)=>j.ansi256ToAnsi(j.rgbToAnsi256(e,r,n)),enumerable:!1},hexToAnsi:{value:e=>j.ansi256ToAnsi(j.hexToAnsi256(e)),enumerable:!1}}),j}var Jl=Kl(),oe=Jl;var Wt=Ee(require("node:process"),1),zi=Ee(require("node:os"),1),Zr=Ee(require("node:tty"),1);function re(t,e=globalThis.Deno?globalThis.Deno.args:Wt.default.argv){let r=t.startsWith("-")?"":t.length===1?"-":"--",n=e.indexOf(r+t),i=e.indexOf("--");return n!==-1&&(i===-1||n<i)}var{env:C}=Wt.default,Gt;re("no-color")||re("no-colors")||re("color=false")||re("color=never")?Gt=0:(re("color")||re("colors")||re("color=true")||re("color=always"))&&(Gt=1);function Zl(){if("FORCE_COLOR"in C)return C.FORCE_COLOR==="true"?1:C.FORCE_COLOR==="false"?0:C.FORCE_COLOR.length===0?1:Math.min(Number.parseInt(C.FORCE_COLOR,10),3)}function Ql(t){return t===0?!1:{level:t,hasBasic:!0,has256:t>=2,has16m:t>=3}}function Xl(t,{streamIsTTY:e,sniffFlags:r=!0}={}){let n=Zl();n!==void 0&&(Gt=n);let i=r?Gt:n;if(i===0)return 0;if(r){if(re("color=16m")||re("color=full")||re("color=truecolor"))return 3;if(re("color=256"))return 2}if("TF_BUILD"in C&&"AGENT_NAME"in C)return 1;if(t&&!e&&i===void 0)return 0;let s=i||0;if(C.TERM==="dumb")return s;if(Wt.default.platform==="win32"){let o=zi.default.release().split(".");return Number(o[0])>=10&&Number(o[2])>=10586?Number(o[2])>=14931?3:2:1}if("CI"in C)return["GITHUB_ACTIONS","GITEA_ACTIONS","CIRCLECI"].some(o=>o in C)?3:["TRAVIS","APPVEYOR","GITLAB_CI","BUILDKITE","DRONE"].some(o=>o in C)||C.CI_NAME==="codeship"?1:s;if("TEAMCITY_VERSION"in C)return/^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(C.TEAMCITY_VERSION)?1:0;if(C.COLORTERM==="truecolor"||C.TERM==="xterm-kitty"||C.TERM==="xterm-ghostty"||C.TERM==="wezterm")return 3;if("TERM_PROGRAM"in C){let o=Number.parseInt((C.TERM_PROGRAM_VERSION||"").split(".")[0],10);switch(C.TERM_PROGRAM){case"iTerm.app":return o>=3?3:2;case"Apple_Terminal":return 2}}return/-256(color)?$/i.test(C.TERM)?2:/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(C.TERM)||"COLORTERM"in C?1:s}function Yi(t,e={}){let r=Xl(t,{streamIsTTY:t&&t.isTTY,...e});return Ql(r)}var ec={stdout:Yi({isTTY:Zr.default.isatty(1)}),stderr:Yi({isTTY:Zr.default.isatty(2)})},Vi=ec;function Ki(t,e,r){let n=t.indexOf(e);if(n===-1)return t;let i=e.length,s=0,o="";do o+=t.slice(s,n)+e+r,s=n+i,n=t.indexOf(e,s);while(n!==-1);return o+=t.slice(s),o}function Ji(t,e,r,n){let i=0,s="";do{let o=t[n-1]==="\r";s+=t.slice(i,o?n-1:n)+e+(o?`\r
|
|
33
|
-
`:`
|
|
34
|
-
`)+r,i=n+1,n=t.indexOf(`
|
|
35
|
-
`,i)}while(n!==-1);return s+=t.slice(i),s}var{stdout:Zi,stderr:Qi}=Vi,Qr=Symbol("GENERATOR"),Ye=Symbol("STYLER"),ft=Symbol("IS_EMPTY"),Xi=["ansi","ansi","ansi256","ansi16m"],ze=Object.create(null),tc=(t,e={})=>{if(e.level&&!(Number.isInteger(e.level)&&e.level>=0&&e.level<=3))throw new Error("The `level` option should be an integer from 0 to 3");let r=Zi?Zi.level:0;t.level=e.level===void 0?r:e.level},Ut=class{constructor(e){return es(e)}},es=t=>{let e=(...r)=>r.join(" ");return tc(e,t),Object.setPrototypeOf(e,ht.prototype),e};function ht(t){return es(t)}Object.setPrototypeOf(ht.prototype,Function.prototype);for(let[t,e]of Object.entries(oe))ze[t]={get(){let r=Yt(this,en(e.open,e.close,this[Ye]),this[ft]);return Object.defineProperty(this,t,{value:r}),r}};ze.visible={get(){let t=Yt(this,this[Ye],!0);return Object.defineProperty(this,"visible",{value:t}),t}};var Xr=(t,e,r,...n)=>t==="rgb"?e==="ansi16m"?oe[r].ansi16m(...n):e==="ansi256"?oe[r].ansi256(oe.rgbToAnsi256(...n)):oe[r].ansi(oe.rgbToAnsi(...n)):t==="hex"?Xr("rgb",e,r,...oe.hexToRgb(...n)):oe[r][t](...n),rc=["rgb","hex","ansi256"];for(let t of rc){ze[t]={get(){let{level:r}=this;return function(...n){let i=en(Xr(t,Xi[r],"color",...n),oe.color.close,this[Ye]);return Yt(this,i,this[ft])}}};let e="bg"+t[0].toUpperCase()+t.slice(1);ze[e]={get(){let{level:r}=this;return function(...n){let i=en(Xr(t,Xi[r],"bgColor",...n),oe.bgColor.close,this[Ye]);return Yt(this,i,this[ft])}}}}var nc=Object.defineProperties(()=>{},{...ze,level:{enumerable:!0,get(){return this[Qr].level},set(t){this[Qr].level=t}}}),en=(t,e,r)=>{let n,i;return r===void 0?(n=t,i=e):(n=r.openAll+t,i=e+r.closeAll),{open:t,close:e,openAll:n,closeAll:i,parent:r}},Yt=(t,e,r)=>{let n=(...i)=>ic(n,i.length===1?""+i[0]:i.join(" "));return Object.setPrototypeOf(n,nc),n[Qr]=t,n[Ye]=e,n[ft]=r,n},ic=(t,e)=>{if(t.level<=0||!e)return t[ft]?"":e;let r=t[Ye];if(r===void 0)return e;let{openAll:n,closeAll:i}=r;if(e.includes("\x1B"))for(;r!==void 0;)e=Ki(e,r.close,r.open),r=r.parent;let s=e.indexOf(`
|
|
36
|
-
`);return s!==-1&&(e=Ji(e,i,n,s)),n+e+i};Object.defineProperties(ht.prototype,ze);var B0=ht(),H0=ht({level:Qi?Qi.level:0});var ce=Ee(Tl(),1);var ql=["error","warn","info","debug"],Kr={solidWhiteTerminal:"#ffffff",thunderbirdRedTerminal:"#d21313",funGreenTerminal:"#00801f",flushOrangeTerminal:"#ff8600"},Al={error:Kr.thunderbirdRedTerminal,warn:Kr.flushOrangeTerminal,info:Kr.funGreenTerminal,debug:Kr.solidWhiteTerminal};var S0=2,x0=new Ut({level:S0}),Ll="YYYY-MM-DD HH:mm:ss",ji=class{constructor(e){let r={},n={};for(let[u,l]of ql.entries())n[l]={level:u,color:e?e[l]:Al[l]},r[l]=u;let i=(u,l)=>x0.hex(n[u].color)(l),s=ce.default.format.combine(ce.default.format.errors({stack:!0}),ce.default.format.timestamp({format:Ll}),ce.default.format.printf(u=>{var l;return i(u.level,`${u.timestamp} ${u.level}: ${u.message} ${(l=u.stack)!==null&&l!==void 0?l:""}`)})),o=ce.default.format.combine(ce.default.format.errors({stack:!0}),ce.default.format.timestamp({format:Ll}),ce.default.format.printf(u=>{var l;return i(u.level,`${u.timestamp} ${u.level}: ${u.message} ${(l=u.stack)!==null&&l!==void 0?l:""}`)})),a=[new ce.default.transports.Console];this.instance=ce.default.createLogger({level:process.env.LOG_LEVEL||"info",levels:r,format:process.env.NODE_ENV==="production"?o:s,transports:a})}},we=new ji().instance;function Ci(t,e,r,n){let i=require.resolve("prettier/bin/prettier.cjs"),s=require.resolve("@mservices-tech/prettier-config"),o=["--parser",r??"typescript","--config",s];try{let a=(0,Nl.spawnSync)("node",[i,...o],{input:e,encoding:"utf-8",maxBuffer:5242880});if(a.error)throw we.error(a.error.message),new Error(a.error.message);if(a.status!==0){let u=a.stderr||"Unhandled error occured.";throw we.error(u),new Error(u)}(0,jl.writeFileSync)(t,a.stdout,n)}catch(a){let u=a.message;throw we.error(u),new Error(u)}}var O0=Ee(Pl(),1);var R0=require("prettier");var T0={"":!0,true:!0,yes:!0,false:!1,no:!1};function Pi(t){let e={};for(let r of t){let n=r.replaceAll(/=[^=]*/g,"");if(!n.startsWith("--"))continue;let i=r.replaceAll(/^--[^=]*=?/g,""),s=T0[i];s===void 0?e[n]=i:e[n]=s}return e}var Il=Ee(require("fs"),1);function Ii(t){let e=Il.default.readFileSync(t,"utf8"),r=/\(\[(\w{7}|#\d+)]\((https?:\/\/[\w#./=?-]+)\)\)/g,n=/\[(\d+\.\d+\.\d+)]\(https?:\/\/[\w#./=?-]+\)/g;return e.replaceAll(r,"").replaceAll(n,function(s,o){return o})}function A0(){we.info(`Usage:
|
|
37
|
-
./removeGitHashesFromMarkdownFile.js [--help] <--markdown-file=file_path>
|
|
38
|
-
Where:
|
|
39
|
-
help - show usage information and exit
|
|
40
|
-
markdown-file - Markdown file path
|
|
41
|
-
Description:
|
|
42
|
-
Removes all git hashes from a Markdown file.
|
|
43
|
-
Runs a snapshot test suite on the current templates
|
|
44
|
-
build against the last snapshot update.`)}function L0(t){t["--help"]&&(A0(),process.exit(0)),t["--markdown-file"]||(we.error("Provide a path to Markdown file, e.g.: ./removeGitHashesFromMarkdownFile.js --markdown-file=CHANGELOG.md"),process.exit(1));let e=t["--markdown-file"],r=Ii(e);Ci(e,r,"markdown")}L0(Pi(process.argv));
|
|
45
|
-
/*! Bundled license information:
|
|
46
|
-
|
|
47
|
-
safe-buffer/index.js:
|
|
48
|
-
(*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
49
|
-
*/
|