(self.webpackChunkhhgDiscoverV1=self.webpackChunkhhgDiscoverV1||[]).push([[8351],{haXk:function(t,e,n){var r;/*! decimal.js-light v2.5.1 https://github.com/MikeMcl/decimal.js-light/LICENCE */!function(i){"use strict";var o,s={precision:20,rounding:4,toExpNeg:-7,toExpPos:21,LN10:"2.302585092994045684017991454684364207601101488628772976033327900967572609677352480235997205089598298341967784042286"},c=!0,u="[DecimalError] ",h=u+"Invalid argument: ",f=u+"Exponent out of range: ",l=Math.floor,a=Math.pow,g=/^(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,d=l(1286742750677284.5),p={};function add(t,e){var n,r,i,o,s,u,h,f,l=t.constructor,a=l.precision;if(!t.s||!e.s)return e.s||(e=new l(t)),c?round(e,a):e;if(h=t.d,f=e.d,s=t.e,i=e.e,h=h.slice(),o=s-i){for(o<0?(r=h,o=-o,u=f.length):(r=f,i=s,u=h.length),o>(u=(s=Math.ceil(a/7))>u?s+1:u+1)&&(o=u,r.length=1),r.reverse();o--;)r.push(0);r.reverse()}for((u=h.length)-(o=f.length)<0&&(o=u,r=f,f=h,h=r),n=0;o;)n=(h[--o]=h[o]+f[o]+n)/1e7|0,h[o]%=1e7;for(n&&(h.unshift(n),++i),u=h.length;0==h[--u];)h.pop();return e.d=h,e.e=i,c?round(e,a):e}function checkInt32(t,e,n){if(t!==~~t||tn)throw Error(h+t)}function digitsToString(t){var e,n,r,i=t.length-1,o="",s=t[0];if(i>0){for(o+=s,e=1;et.e^this.s<0?1:-1;for(e=0,n=(r=this.d.length)<(i=t.d.length)?r:i;et.d[e]^this.s<0?1:-1;return r===i?0:r>i^this.s<0?1:-1},p.decimalPlaces=p.dp=function(){var t=this.d.length-1,e=(t-this.e)*7;if(t=this.d[t])for(;t%10==0;t/=10)e--;return e<0?0:e},p.dividedBy=p.div=function(t){return w(this,new this.constructor(t))},p.dividedToIntegerBy=p.idiv=function(t){var e=this.constructor;return round(w(this,new e(t),0,1),e.precision)},p.equals=p.eq=function(t){return!this.cmp(t)},p.exponent=function(){return getBase10Exponent(this)},p.greaterThan=p.gt=function(t){return this.cmp(t)>0},p.greaterThanOrEqualTo=p.gte=function(t){return this.cmp(t)>=0},p.isInteger=p.isint=function(){return this.e>this.d.length-2},p.isNegative=p.isneg=function(){return this.s<0},p.isPositive=p.ispos=function(){return this.s>0},p.isZero=function(){return 0===this.s},p.lessThan=p.lt=function(t){return 0>this.cmp(t)},p.lessThanOrEqualTo=p.lte=function(t){return 1>this.cmp(t)},p.logarithm=p.log=function(t){var e,n=this.constructor,r=n.precision,i=r+5;if(void 0===t)t=new n(10);else if((t=new n(t)).s<1||t.eq(o))throw Error(u+"NaN");if(this.s<1)throw Error(u+(this.s?"NaN":"-Infinity"));return this.eq(o)?new n(0):(c=!1,e=w(ln(this,i),ln(t,i),i),c=!0,round(e,r))},p.minus=p.sub=function(t){return t=new this.constructor(t),this.s==t.s?subtract(this,t):add(this,(t.s=-t.s,t))},p.modulo=p.mod=function(t){var e,n=this.constructor,r=n.precision;if(!(t=new n(t)).s)throw Error(u+"NaN");return this.s?(c=!1,e=w(this,t,0,1).times(t),c=!0,this.minus(e)):round(new n(this),r)},p.naturalExponential=p.exp=function(){return exp(this)},p.naturalLogarithm=p.ln=function(){return ln(this)},p.negated=p.neg=function(){var t=new this.constructor(this);return t.s=-t.s||0,t},p.plus=p.add=function(t){return t=new this.constructor(t),this.s==t.s?add(this,t):subtract(this,(t.s=-t.s,t))},p.precision=p.sd=function(t){var e,n,r;if(void 0!==t&&!!t!==t&&1!==t&&0!==t)throw Error(h+t);if(e=getBase10Exponent(this)+1,n=7*(r=this.d.length-1)+1,r=this.d[r]){for(;r%10==0;r/=10)n--;for(r=this.d[0];r>=10;r/=10)n++}return t&&e>n?e:n},p.squareRoot=p.sqrt=function(){var t,e,n,r,i,o,s,h=this.constructor;if(this.s<1){if(!this.s)return new h(0);throw Error(u+"NaN")}for(t=getBase10Exponent(this),c=!1,0==(i=Math.sqrt(+this))||i==1/0?(((e=digitsToString(this.d)).length+t)%2==0&&(e+="0"),i=Math.sqrt(e),t=l((t+1)/2)-(t<0||t%2),e=i==1/0?"5e"+t:(e=i.toExponential()).slice(0,e.indexOf("e")+1)+t,r=new h(e)):r=new h(i.toString()),i=s=(n=h.precision)+3;;)if(r=(o=r).plus(w(this,o,s+2)).times(.5),digitsToString(o.d).slice(0,s)===(e=digitsToString(r.d)).slice(0,s)){if(e=e.slice(s-3,s+1),i==s&&"4999"==e){if(round(o,n+1,0),o.times(o).eq(this)){r=o;break}}else if("9999"!=e)break;s+=4}return c=!0,round(r,n)},p.times=p.mul=function(t){var e,n,r,i,o,s,u,h,f,l=this.constructor,a=this.d,g=(t=new l(t)).d;if(!this.s||!t.s)return new l(0);for(t.s*=this.s,n=this.e+t.e,(h=a.length)<(f=g.length)&&(o=a,a=g,g=o,s=h,h=f,f=s),o=[],r=s=h+f;r--;)o.push(0);for(r=f;--r>=0;){for(e=0,i=h+r;i>r;)u=o[i]+g[r]*a[i-r-1]+e,o[i--]=u%1e7|0,e=u/1e7|0;o[i]=(o[i]+e)%1e7|0}for(;!o[--s];)o.pop();return e?++n:o.shift(),t.d=o,t.e=n,c?round(t,l.precision):t},p.toDecimalPlaces=p.todp=function(t,e){var n=this,r=n.constructor;return(n=new r(n),void 0===t)?n:(checkInt32(t,0,1e9),void 0===e?e=r.rounding:checkInt32(e,0,8),round(n,t+getBase10Exponent(n)+1,e))},p.toExponential=function(t,e){var n,r=this,i=r.constructor;return void 0===t?n=toString(r,!0):(checkInt32(t,0,1e9),void 0===e?e=i.rounding:checkInt32(e,0,8),n=toString(r=round(new i(r),t+1,e),!0,t+1)),n},p.toFixed=function(t,e){var n,r,i=this.constructor;return void 0===t?toString(this):(checkInt32(t,0,1e9),void 0===e?e=i.rounding:checkInt32(e,0,8),n=toString((r=round(new i(this),t+getBase10Exponent(this)+1,e)).abs(),!1,t+getBase10Exponent(r)+1),this.isneg()&&!this.isZero()?"-"+n:n)},p.toInteger=p.toint=function(){var t=this.constructor;return round(new t(this),getBase10Exponent(this)+1,t.rounding)},p.toNumber=function(){return+this},p.toPower=p.pow=function(t){var e,n,r,i,s,h,f=this,a=f.constructor,g=+(t=new a(t));if(!t.s)return new a(o);if(!(f=new a(f)).s){if(t.s<1)throw Error(u+"Infinity");return f}if(f.eq(o))return f;if(r=a.precision,t.eq(o))return round(f,r);if(h=(e=t.e)>=(n=t.d.length-1),s=f.s,h){if((n=g<0?-g:g)<=9007199254740991){for(i=new a(o),e=Math.ceil(r/7+4),c=!1;n%2&&truncate((i=i.times(f)).d,e),0!==(n=l(n/2));)truncate((f=f.times(f)).d,e);return c=!0,t.s<0?new a(o).div(i):round(i,r)}}else if(s<0)throw Error(u+"NaN");return s=s<0&&1&t.d[Math.max(e,n)]?-1:1,f.s=1,c=!1,i=t.times(ln(f,r+12)),c=!0,(i=exp(i)).s=s,i},p.toPrecision=function(t,e){var n,r,i=this,o=i.constructor;return void 0===t?(n=getBase10Exponent(i),r=toString(i,n<=o.toExpNeg||n>=o.toExpPos)):(checkInt32(t,1,1e9),void 0===e?e=o.rounding:checkInt32(e,0,8),n=getBase10Exponent(i=round(new o(i),t,e)),r=toString(i,t<=n||n<=o.toExpNeg,t)),r},p.toSignificantDigits=p.tosd=function(t,e){var n=this.constructor;return void 0===t?(t=n.precision,e=n.rounding):(checkInt32(t,1,1e9),void 0===e?e=n.rounding:checkInt32(e,0,8)),round(new n(this),t,e)},p.toString=p.valueOf=p.val=p.toJSON=function(){var t=getBase10Exponent(this),e=this.constructor;return toString(this,t<=e.toExpNeg||t>=e.toExpPos)};var w=function(){function multiplyInteger(t,e){var n,r=0,i=t.length;for(t=t.slice();i--;)n=t[i]*e+r,t[i]=n%1e7|0,r=n/1e7|0;return r&&t.unshift(r),t}function compare(t,e,n,r){var i,o;if(n!=r)o=n>r?1:-1;else for(i=o=0;ie[i]?1:-1;break}return o}function subtract(t,e,n){for(var r=0;n--;)t[n]-=r,r=t[n]1;)t.shift()}return function(t,e,n,r){var i,o,s,c,h,f,l,a,g,d,p,w,m,v,E,x,D,N,S=t.constructor,b=t.s==e.s?1:-1,I=t.d,B=e.d;if(!t.s)return new S(t);if(!e.s)throw Error(u+"Division by zero");for(s=0,o=t.e-e.e,D=B.length,E=I.length,a=(l=new S(b)).d=[];B[s]==(I[s]||0);)++s;if(B[s]>(I[s]||0)&&--o,(w=null==n?n=S.precision:r?n+(getBase10Exponent(t)-getBase10Exponent(e))+1:n)<0)return new S(0);if(w=w/7+2|0,s=0,1==D)for(c=0,B=B[0],w++;(s1&&(B=multiplyInteger(B,c),I=multiplyInteger(I,c),D=B.length,E=I.length),v=D,d=(g=I.slice(0,D)).length;d=1e7/2&&++x;do c=0,(i=compare(B,g,D,d))<0?(p=g[0],D!=d&&(p=1e7*p+(g[1]||0)),(c=p/x|0)>1?(c>=1e7&&(c=1e7-1),f=(h=multiplyInteger(B,c)).length,d=g.length,1==(i=compare(h,g,f,d))&&(c--,subtract(h,D16)throw Error(f+getBase10Exponent(t));if(!t.s)return new g(o);for(null==e?(c=!1,u=d):u=e,s=new g(.03125);t.abs().gte(.1);)t=t.times(s),l+=5;for(u+=Math.log(a(2,l))/Math.LN10*2+5|0,n=r=i=new g(o),g.precision=u;;){if(r=round(r.times(t),u),n=n.times(++h),digitsToString((s=i.plus(w(r,n,u))).d).slice(0,u)===digitsToString(i.d).slice(0,u)){for(;l--;)i=round(i.times(i),u);return g.precision=d,null==e?(c=!0,round(i,d)):i}i=s}}function getBase10Exponent(t){for(var e=7*t.e,n=t.d[0];n>=10;n/=10)e++;return e}function getLn10(t,e,n){if(e>t.LN10.sd())throw c=!0,n&&(t.precision=n),Error(u+"LN10 precision limit exceeded");return round(new t(t.LN10),e)}function getZeroString(t){for(var e="";t--;)e+="0";return e}function ln(t,e){var n,r,i,s,h,f,l,a,g,d=1,p=t,m=p.d,v=p.constructor,E=v.precision;if(p.s<1)throw Error(u+(p.s?"NaN":"-Infinity"));if(p.eq(o))return new v(0);if(null==e?(c=!1,a=E):a=e,p.eq(10))return null==e&&(c=!0),getLn10(v,a);if(a+=10,v.precision=a,r=(n=digitsToString(m)).charAt(0),!(15e14>Math.abs(s=getBase10Exponent(p))))return l=getLn10(v,a+2,E).times(s+""),p=ln(new v(r+"."+n.slice(1)),a-10).plus(l),v.precision=E,null==e?(c=!0,round(p,E)):p;for(;r<7&&1!=r||1==r&&n.charAt(1)>3;)r=(n=digitsToString((p=p.times(t)).d)).charAt(0),d++;for(s=getBase10Exponent(p),r>1?(p=new v("0."+n),s++):p=new v(r+"."+n.slice(1)),f=h=p=w(p.minus(o),p.plus(o),a),g=round(p.times(p),a),i=3;;){if(h=round(h.times(g),a),digitsToString((l=f.plus(w(h,new v(i),a))).d).slice(0,a)===digitsToString(f.d).slice(0,a))return f=f.times(2),0!==s&&(f=f.plus(getLn10(v,a+2,E).times(s+""))),f=w(f,new v(d),a),v.precision=E,null==e?(c=!0,round(f,E)):f;f=l,i+=2}}function parseDecimal(t,e){var n,r,i;for((n=e.indexOf("."))>-1&&(e=e.replace(".","")),(r=e.search(/e/i))>0?(n<0&&(n=r),n+=+e.slice(r+1),e=e.substring(0,r)):n<0&&(n=e.length),r=0;48===e.charCodeAt(r);)++r;for(i=e.length;48===e.charCodeAt(i-1);)--i;if(e=e.slice(r,i)){if(i-=r,n=n-r-1,t.e=l(n/7),t.d=[],r=(n+1)%7,n<0&&(r+=7),rd||t.e<-d))throw Error(f+n)}else t.s=0,t.e=0,t.d=[0];return t}function round(t,e,n){var r,i,o,s,u,h,g,p,w=t.d;for(s=1,o=w[0];o>=10;o/=10)s++;if((r=e-s)<0)r+=7,i=e,g=w[p=0];else{if((p=Math.ceil((r+1)/7))>=(o=w.length))return t;for(s=1,g=o=w[p];o>=10;o/=10)s++;r%=7,i=r-7+s}if(void 0!==n&&(u=g/(o=a(10,s-i-1))%10|0,h=e<0||void 0!==w[p+1]||g%o,h=n<4?(u||h)&&(0==n||n==(t.s<0?3:2)):u>5||5==u&&(4==n||h||6==n&&(r>0?i>0?g/a(10,s-i):0:w[p-1])%10&1||n==(t.s<0?8:7))),e<1||!w[0])return h?(o=getBase10Exponent(t),w.length=1,e=e-o-1,w[0]=a(10,(7-e%7)%7),t.e=l(-e/7)||0):(w.length=1,w[0]=t.e=t.s=0),t;if(0==r?(w.length=p,o=1,p--):(w.length=p+1,o=a(10,7-r),w[p]=i>0?(g/a(10,s-i)%a(10,i)|0)*o:0),h)for(;;){if(0==p){1e7==(w[0]+=o)&&(w[0]=1,++t.e);break}if(w[p]+=o,1e7!=w[p])break;w[p--]=0,o=1}for(r=w.length;0===w[--r];)w.pop();if(c&&(t.e>d||t.e<-d))throw Error(f+getBase10Exponent(t));return t}function subtract(t,e){var n,r,i,o,s,u,h,f,l,a,g=t.constructor,d=g.precision;if(!t.s||!e.s)return e.s?e.s=-e.s:e=new g(t),c?round(e,d):e;if(h=t.d,a=e.d,r=e.e,f=t.e,h=h.slice(),s=f-r){for((l=s<0)?(n=h,s=-s,u=a.length):(n=a,r=f,u=h.length),s>(i=Math.max(Math.ceil(d/7),u)+2)&&(s=i,n.length=1),n.reverse(),i=s;i--;)n.push(0);n.reverse()}else{for((l=(i=h.length)<(u=a.length))&&(u=i),i=0;i0;--i)h[u++]=0;for(i=a.length;i>s;){if(h[--i]0?o=o.charAt(0)+"."+o.slice(1)+getZeroString(r):s>1&&(o=o.charAt(0)+"."+o.slice(1)),o=o+(i<0?"e":"e+")+i):i<0?(o="0."+getZeroString(-i-1)+o,n&&(r=n-s)>0&&(o+=getZeroString(r))):i>=s?(o+=getZeroString(i+1-s),n&&(r=n-i-1)>0&&(o=o+"."+getZeroString(r))):((r=i+1)0&&(i+1===s&&(o+="."),o+=getZeroString(r))),t.s<0?"-"+o:o}function truncate(t,e){if(t.length>e)return t.length=e,!0}function config(t){if(!t||"object"!=typeof t)throw Error(u+"Object expected");var e,n,r,i=["precision",1,1e9,"rounding",0,8,"toExpNeg",-1/0,0,"toExpPos",0,1/0];for(e=0;e=i[e+1]&&r<=i[e+2])this[n]=r;else throw Error(h+n+": "+r)}if(void 0!==(r=t[n="LN10"])){if(r==Math.LN10)this[n]=new this(r);else throw Error(h+n+": "+r)}return this}(s=function clone(t){var e,n,r;function Decimal(t){if(!(this instanceof Decimal))return new Decimal(t);if(this.constructor=Decimal,t instanceof Decimal){this.s=t.s,this.e=t.e,this.d=(t=t.d)?t.slice():t;return}if("number"==typeof t){if(0*t!=0)throw Error(h+t);if(t>0)this.s=1;else if(t<0)t=-t,this.s=-1;else{this.s=0,this.e=0,this.d=[0];return}if(t===~~t&&t<1e7){this.e=0,this.d=[t];return}return parseDecimal(this,t.toString())}if("string"!=typeof t)throw Error(h+t);if(45===t.charCodeAt(0)?(t=t.slice(1),this.s=-1):this.s=1,g.test(t))parseDecimal(this,t);else throw Error(h+t)}if(Decimal.prototype=p,Decimal.ROUND_UP=0,Decimal.ROUND_DOWN=1,Decimal.ROUND_CEIL=2,Decimal.ROUND_FLOOR=3,Decimal.ROUND_HALF_UP=4,Decimal.ROUND_HALF_DOWN=5,Decimal.ROUND_HALF_EVEN=6,Decimal.ROUND_HALF_CEIL=7,Decimal.ROUND_HALF_FLOOR=8,Decimal.clone=clone,Decimal.config=Decimal.set=config,void 0===t&&(t={}),t)for(e=0,r=["precision","rounding","toExpNeg","toExpPos","LN10"];e