mathjs 13.0.3 → 13.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (213) hide show
  1. package/HISTORY.md +30 -1
  2. package/bin/cli.js +24 -10
  3. package/lib/browser/math.js +1 -1
  4. package/lib/browser/math.js.LICENSE.txt +2 -2
  5. package/lib/browser/math.js.map +1 -1
  6. package/lib/cjs/core/create.js +12 -9
  7. package/lib/cjs/core/function/typed.js +3 -4
  8. package/lib/cjs/entry/dependenciesAny/dependenciesFlatten.generated.js +0 -2
  9. package/lib/cjs/entry/dependenciesAny/dependenciesSqueeze.generated.js +0 -2
  10. package/lib/cjs/entry/impureFunctionsAny.generated.js +2 -2
  11. package/lib/cjs/entry/pureFunctionsAny.generated.js +6 -8
  12. package/lib/cjs/entry/typeChecks.js +18 -0
  13. package/lib/cjs/expression/embeddedDocs/embeddedDocs.js +2 -2
  14. package/lib/cjs/expression/embeddedDocs/function/arithmetic/hypot.js +1 -1
  15. package/lib/cjs/expression/embeddedDocs/function/matrix/diff.js +1 -1
  16. package/lib/cjs/expression/embeddedDocs/function/matrix/fft.js +1 -1
  17. package/lib/cjs/expression/embeddedDocs/function/matrix/ifft.js +1 -1
  18. package/lib/cjs/expression/embeddedDocs/function/matrix/kron.js +1 -1
  19. package/lib/cjs/expression/embeddedDocs/function/matrix/map.js +3 -3
  20. package/lib/cjs/expression/embeddedDocs/function/special/zeta.js +1 -1
  21. package/lib/cjs/expression/embeddedDocs/function/statistics/quantileSeq.js +1 -1
  22. package/lib/cjs/expression/embeddedDocs/function/trigonometry/acoth.js +1 -1
  23. package/lib/cjs/expression/embeddedDocs/function/trigonometry/acsch.js +1 -1
  24. package/lib/cjs/expression/embeddedDocs/function/utils/clone.js +1 -1
  25. package/lib/cjs/expression/function/evaluate.js +5 -0
  26. package/lib/cjs/expression/node/FunctionNode.js +10 -2
  27. package/lib/cjs/expression/transform/filter.transform.js +2 -2
  28. package/lib/cjs/expression/transform/map.transform.js +104 -37
  29. package/lib/cjs/expression/transform/utils/dimToZeroBase.js +23 -0
  30. package/lib/cjs/expression/transform/utils/lastDimToZeroBase.js +3 -4
  31. package/lib/cjs/function/arithmetic/hypot.js +3 -3
  32. package/lib/cjs/function/matrix/apply.js +1 -1
  33. package/lib/cjs/function/matrix/fft.js +3 -3
  34. package/lib/cjs/function/matrix/filter.js +2 -2
  35. package/lib/cjs/function/matrix/flatten.js +5 -6
  36. package/lib/cjs/function/matrix/ifft.js +2 -2
  37. package/lib/cjs/function/matrix/kron.js +4 -4
  38. package/lib/cjs/function/matrix/map.js +109 -18
  39. package/lib/cjs/function/matrix/size.js +7 -7
  40. package/lib/cjs/function/matrix/squeeze.js +3 -4
  41. package/lib/cjs/function/probability/random.js +1 -1
  42. package/lib/cjs/function/probability/randomInt.js +1 -1
  43. package/lib/cjs/function/statistics/cumsum.js +2 -2
  44. package/lib/cjs/function/trigonometry/acoth.js +2 -2
  45. package/lib/cjs/function/trigonometry/acsch.js +2 -2
  46. package/lib/cjs/header.js +2 -2
  47. package/lib/cjs/type/matrix/DenseMatrix.js +3 -28
  48. package/lib/cjs/type/matrix/SparseMatrix.js +5 -8
  49. package/lib/cjs/utils/array.js +27 -0
  50. package/lib/cjs/utils/collection.js +1 -1
  51. package/lib/cjs/utils/customs.js +5 -12
  52. package/lib/cjs/utils/function.js +0 -14
  53. package/lib/cjs/utils/is.js +27 -0
  54. package/lib/cjs/utils/map.js +7 -23
  55. package/lib/cjs/version.js +1 -1
  56. package/lib/esm/core/create.js +9 -6
  57. package/lib/esm/core/function/typed.js +2 -3
  58. package/lib/esm/entry/dependenciesAny/dependenciesFlatten.generated.js +0 -2
  59. package/lib/esm/entry/dependenciesAny/dependenciesSqueeze.generated.js +0 -2
  60. package/lib/esm/entry/impureFunctionsAny.generated.js +3 -3
  61. package/lib/esm/entry/pureFunctionsAny.generated.js +7 -9
  62. package/lib/esm/entry/typeChecks.js +1 -1
  63. package/lib/esm/expression/embeddedDocs/embeddedDocs.js +2 -2
  64. package/lib/esm/expression/embeddedDocs/function/arithmetic/hypot.js +1 -1
  65. package/lib/esm/expression/embeddedDocs/function/matrix/diff.js +1 -1
  66. package/lib/esm/expression/embeddedDocs/function/matrix/fft.js +1 -1
  67. package/lib/esm/expression/embeddedDocs/function/matrix/ifft.js +1 -1
  68. package/lib/esm/expression/embeddedDocs/function/matrix/kron.js +1 -1
  69. package/lib/esm/expression/embeddedDocs/function/matrix/map.js +3 -3
  70. package/lib/esm/expression/embeddedDocs/function/special/zeta.js +1 -1
  71. package/lib/esm/expression/embeddedDocs/function/statistics/quantileSeq.js +1 -1
  72. package/lib/esm/expression/embeddedDocs/function/trigonometry/acoth.js +1 -1
  73. package/lib/esm/expression/embeddedDocs/function/trigonometry/acsch.js +1 -1
  74. package/lib/esm/expression/embeddedDocs/function/utils/clone.js +1 -1
  75. package/lib/esm/expression/function/compile.js +1 -1
  76. package/lib/esm/expression/function/evaluate.js +8 -3
  77. package/lib/esm/expression/node/FunctionNode.js +10 -2
  78. package/lib/esm/expression/parse.js +2 -2
  79. package/lib/esm/expression/transform/filter.transform.js +4 -4
  80. package/lib/esm/expression/transform/forEach.transform.js +4 -4
  81. package/lib/esm/expression/transform/map.transform.js +104 -37
  82. package/lib/esm/expression/transform/print.transform.js +2 -2
  83. package/lib/esm/expression/transform/utils/dimToZeroBase.js +16 -0
  84. package/lib/esm/expression/transform/utils/lastDimToZeroBase.js +4 -6
  85. package/lib/esm/function/algebra/decomposition/slu.js +1 -1
  86. package/lib/esm/function/algebra/derivative.js +15 -15
  87. package/lib/esm/function/algebra/lyap.js +4 -4
  88. package/lib/esm/function/algebra/simplify/util.js +3 -3
  89. package/lib/esm/function/algebra/simplifyConstant.js +9 -9
  90. package/lib/esm/function/algebra/solver/lsolve.js +3 -3
  91. package/lib/esm/function/algebra/solver/lsolveAll.js +3 -3
  92. package/lib/esm/function/algebra/solver/lusolve.js +5 -5
  93. package/lib/esm/function/algebra/solver/usolve.js +3 -3
  94. package/lib/esm/function/algebra/solver/usolveAll.js +3 -3
  95. package/lib/esm/function/algebra/sylvester.js +7 -7
  96. package/lib/esm/function/arithmetic/addScalar.js +4 -4
  97. package/lib/esm/function/arithmetic/ceil.js +6 -6
  98. package/lib/esm/function/arithmetic/divide.js +5 -5
  99. package/lib/esm/function/arithmetic/divideScalar.js +5 -5
  100. package/lib/esm/function/arithmetic/fix.js +5 -5
  101. package/lib/esm/function/arithmetic/floor.js +6 -6
  102. package/lib/esm/function/arithmetic/hypot.js +3 -3
  103. package/lib/esm/function/arithmetic/mod.js +3 -3
  104. package/lib/esm/function/arithmetic/multiply.js +7 -7
  105. package/lib/esm/function/arithmetic/multiplyScalar.js +4 -4
  106. package/lib/esm/function/arithmetic/norm.js +2 -2
  107. package/lib/esm/function/arithmetic/pow.js +6 -6
  108. package/lib/esm/function/arithmetic/round.js +7 -7
  109. package/lib/esm/function/arithmetic/subtractScalar.js +4 -4
  110. package/lib/esm/function/arithmetic/xgcd.js +1 -1
  111. package/lib/esm/function/combinatorics/bellNumbers.js +1 -1
  112. package/lib/esm/function/combinatorics/catalan.js +1 -1
  113. package/lib/esm/function/combinatorics/composition.js +1 -1
  114. package/lib/esm/function/combinatorics/stirlingS2.js +1 -1
  115. package/lib/esm/function/geometry/distance.js +4 -4
  116. package/lib/esm/function/geometry/intersect.js +2 -2
  117. package/lib/esm/function/logical/and.js +2 -2
  118. package/lib/esm/function/logical/or.js +2 -2
  119. package/lib/esm/function/logical/xor.js +2 -2
  120. package/lib/esm/function/matrix/apply.js +2 -2
  121. package/lib/esm/function/matrix/column.js +1 -1
  122. package/lib/esm/function/matrix/concat.js +1 -1
  123. package/lib/esm/function/matrix/count.js +1 -1
  124. package/lib/esm/function/matrix/cross.js +3 -3
  125. package/lib/esm/function/matrix/diag.js +10 -10
  126. package/lib/esm/function/matrix/diff.js +2 -2
  127. package/lib/esm/function/matrix/eigs.js +3 -3
  128. package/lib/esm/function/matrix/fft.js +3 -3
  129. package/lib/esm/function/matrix/filter.js +4 -4
  130. package/lib/esm/function/matrix/flatten.js +5 -6
  131. package/lib/esm/function/matrix/forEach.js +4 -4
  132. package/lib/esm/function/matrix/identity.js +6 -6
  133. package/lib/esm/function/matrix/ifft.js +3 -3
  134. package/lib/esm/function/matrix/inv.js +1 -1
  135. package/lib/esm/function/matrix/kron.js +7 -7
  136. package/lib/esm/function/matrix/map.js +110 -19
  137. package/lib/esm/function/matrix/matrixFromFunction.js +6 -6
  138. package/lib/esm/function/matrix/ones.js +2 -2
  139. package/lib/esm/function/matrix/partitionSelect.js +2 -2
  140. package/lib/esm/function/matrix/pinv.js +1 -1
  141. package/lib/esm/function/matrix/range.js +10 -10
  142. package/lib/esm/function/matrix/reshape.js +2 -2
  143. package/lib/esm/function/matrix/rotate.js +4 -4
  144. package/lib/esm/function/matrix/rotationMatrix.js +6 -6
  145. package/lib/esm/function/matrix/row.js +1 -1
  146. package/lib/esm/function/matrix/size.js +8 -8
  147. package/lib/esm/function/matrix/sort.js +4 -4
  148. package/lib/esm/function/matrix/sqrtm.js +1 -1
  149. package/lib/esm/function/matrix/squeeze.js +3 -4
  150. package/lib/esm/function/matrix/subset.js +2 -2
  151. package/lib/esm/function/matrix/zeros.js +2 -2
  152. package/lib/esm/function/probability/combinations.js +1 -1
  153. package/lib/esm/function/probability/combinationsWithRep.js +2 -2
  154. package/lib/esm/function/probability/kldivergence.js +4 -4
  155. package/lib/esm/function/probability/multinomial.js +1 -1
  156. package/lib/esm/function/probability/permutations.js +2 -2
  157. package/lib/esm/function/probability/pickRandom.js +6 -6
  158. package/lib/esm/function/probability/random.js +1 -1
  159. package/lib/esm/function/probability/randomInt.js +1 -1
  160. package/lib/esm/function/relational/compare.js +6 -6
  161. package/lib/esm/function/relational/deepEqual.js +1 -1
  162. package/lib/esm/function/relational/equal.js +1 -1
  163. package/lib/esm/function/relational/equalScalar.js +7 -7
  164. package/lib/esm/function/relational/equalText.js +1 -1
  165. package/lib/esm/function/relational/larger.js +3 -3
  166. package/lib/esm/function/relational/largerEq.js +4 -4
  167. package/lib/esm/function/relational/smaller.js +3 -3
  168. package/lib/esm/function/relational/smallerEq.js +3 -3
  169. package/lib/esm/function/relational/unequal.js +1 -1
  170. package/lib/esm/function/set/setCartesian.js +1 -1
  171. package/lib/esm/function/set/setDifference.js +1 -1
  172. package/lib/esm/function/set/setDistinct.js +1 -1
  173. package/lib/esm/function/set/setIntersect.js +1 -1
  174. package/lib/esm/function/set/setIsSubset.js +1 -1
  175. package/lib/esm/function/set/setMultiplicity.js +1 -1
  176. package/lib/esm/function/set/setPowerset.js +1 -1
  177. package/lib/esm/function/set/setSize.js +2 -2
  178. package/lib/esm/function/set/setSymDifference.js +1 -1
  179. package/lib/esm/function/set/setUnion.js +1 -1
  180. package/lib/esm/function/signal/freqz.js +6 -6
  181. package/lib/esm/function/statistics/corr.js +2 -2
  182. package/lib/esm/function/statistics/cumsum.js +3 -3
  183. package/lib/esm/function/statistics/max.js +1 -1
  184. package/lib/esm/function/statistics/median.js +3 -3
  185. package/lib/esm/function/statistics/min.js +1 -1
  186. package/lib/esm/function/statistics/prod.js +1 -1
  187. package/lib/esm/function/statistics/variance.js +2 -2
  188. package/lib/esm/function/string/bin.js +2 -2
  189. package/lib/esm/function/string/hex.js +2 -2
  190. package/lib/esm/function/string/oct.js +2 -2
  191. package/lib/esm/function/trigonometry/acoth.js +2 -2
  192. package/lib/esm/function/trigonometry/acsch.js +2 -2
  193. package/lib/esm/type/bigint.js +1 -1
  194. package/lib/esm/type/complex/function/complex.js +2 -2
  195. package/lib/esm/type/fraction/function/fraction.js +1 -1
  196. package/lib/esm/type/matrix/DenseMatrix.js +13 -38
  197. package/lib/esm/type/matrix/SparseMatrix.js +5 -8
  198. package/lib/esm/type/matrix/function/index.js +1 -1
  199. package/lib/esm/type/matrix/function/matrix.js +1 -1
  200. package/lib/esm/type/matrix/function/sparse.js +2 -2
  201. package/lib/esm/type/number.js +1 -1
  202. package/lib/esm/type/unit/function/createUnit.js +3 -3
  203. package/lib/esm/type/unit/function/splitUnit.js +1 -1
  204. package/lib/esm/type/unit/function/unit.js +2 -2
  205. package/lib/esm/utils/array.js +26 -0
  206. package/lib/esm/utils/collection.js +1 -1
  207. package/lib/esm/utils/customs.js +5 -12
  208. package/lib/esm/utils/function.js +0 -13
  209. package/lib/esm/utils/is.js +24 -0
  210. package/lib/esm/utils/map.js +7 -22
  211. package/lib/esm/version.js +1 -1
  212. package/package.json +13 -13
  213. package/types/index.d.ts +57 -18
@@ -1,3 +1,3 @@
1
1
  /*! For license information please see math.js.LICENSE.txt */
2
- !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.math=t():e.math=t()}(this,(()=>(()=>{var e={5716:function(e,t){var r;!function(){"use strict";var n=Math.cosh||function(e){return Math.abs(e)<1e-9?1-e:.5*(Math.exp(e)+Math.exp(-e))},i=Math.sinh||function(e){return Math.abs(e)<1e-9?e:.5*(Math.exp(e)-Math.exp(-e))},o=function(){throw SyntaxError("Invalid Param")};function a(e,t){var r=Math.abs(e),n=Math.abs(t);return 0===e?Math.log(n):0===t?Math.log(r):r<3e3&&n<3e3?.5*Math.log(e*e+t*t):(e/=2,t/=2,.5*Math.log(e*e+t*t)+Math.LN2)}function s(e,t){if(!(this instanceof s))return new s(e,t);var r=function(e,t){var r={re:0,im:0};if(null==e)r.re=r.im=0;else if(void 0!==t)r.re=e,r.im=t;else switch(typeof e){case"object":if("im"in e&&"re"in e)r.re=e.re,r.im=e.im;else if("abs"in e&&"arg"in e){if(!Number.isFinite(e.abs)&&Number.isFinite(e.arg))return s.INFINITY;r.re=e.abs*Math.cos(e.arg),r.im=e.abs*Math.sin(e.arg)}else if("r"in e&&"phi"in e){if(!Number.isFinite(e.r)&&Number.isFinite(e.phi))return s.INFINITY;r.re=e.r*Math.cos(e.phi),r.im=e.r*Math.sin(e.phi)}else 2===e.length?(r.re=e[0],r.im=e[1]):o();break;case"string":r.im=r.re=0;var n=e.match(/\d+\.?\d*e[+-]?\d+|\d+\.?\d*|\.\d+|./g),i=1,a=0;null===n&&o();for(var u=0;u<n.length;u++){var c=n[u];" "===c||"\t"===c||"\n"===c||("+"===c?i++:"-"===c?a++:"i"===c||"I"===c?(i+a===0&&o()," "===n[u+1]||isNaN(n[u+1])?r.im+=parseFloat((a%2?"-":"")+"1"):(r.im+=parseFloat((a%2?"-":"")+n[u+1]),u++),i=a=0):((i+a===0||isNaN(c))&&o(),"i"===n[u+1]||"I"===n[u+1]?(r.im+=parseFloat((a%2?"-":"")+c),u++):r.re+=parseFloat((a%2?"-":"")+c),i=a=0))}i+a>0&&o();break;case"number":r.im=0,r.re=e;break;default:o()}return isNaN(r.re)||isNaN(r.im),r}(e,t);this.re=r.re,this.im=r.im}s.prototype={re:0,im:0,sign:function(){var e=this.abs();return new s(this.re/e,this.im/e)},add:function(e,t){var r=new s(e,t);return this.isInfinite()&&r.isInfinite()?s.NAN:this.isInfinite()||r.isInfinite()?s.INFINITY:new s(this.re+r.re,this.im+r.im)},sub:function(e,t){var r=new s(e,t);return this.isInfinite()&&r.isInfinite()?s.NAN:this.isInfinite()||r.isInfinite()?s.INFINITY:new s(this.re-r.re,this.im-r.im)},mul:function(e,t){var r=new s(e,t);return this.isInfinite()&&r.isZero()||this.isZero()&&r.isInfinite()?s.NAN:this.isInfinite()||r.isInfinite()?s.INFINITY:0===r.im&&0===this.im?new s(this.re*r.re,0):new s(this.re*r.re-this.im*r.im,this.re*r.im+this.im*r.re)},div:function(e,t){var r=new s(e,t);if(this.isZero()&&r.isZero()||this.isInfinite()&&r.isInfinite())return s.NAN;if(this.isInfinite()||r.isZero())return s.INFINITY;if(this.isZero()||r.isInfinite())return s.ZERO;e=this.re,t=this.im;var n,i,o=r.re,a=r.im;return 0===a?new s(e/o,t/o):Math.abs(o)<Math.abs(a)?new s((e*(i=o/a)+t)/(n=o*i+a),(t*i-e)/n):new s((e+t*(i=a/o))/(n=a*i+o),(t-e*i)/n)},pow:function(e,t){var r=new s(e,t);if(e=this.re,t=this.im,r.isZero())return s.ONE;if(0===r.im){if(0===t&&e>0)return new s(Math.pow(e,r.re),0);if(0===e)switch((r.re%4+4)%4){case 0:return new s(Math.pow(t,r.re),0);case 1:return new s(0,Math.pow(t,r.re));case 2:return new s(-Math.pow(t,r.re),0);case 3:return new s(0,-Math.pow(t,r.re))}}if(0===e&&0===t&&r.re>0&&r.im>=0)return s.ZERO;var n=Math.atan2(t,e),i=a(e,t);return e=Math.exp(r.re*i-r.im*n),t=r.im*i+r.re*n,new s(e*Math.cos(t),e*Math.sin(t))},sqrt:function(){var e,t,r=this.re,n=this.im,i=this.abs();if(r>=0){if(0===n)return new s(Math.sqrt(r),0);e=.5*Math.sqrt(2*(i+r))}else e=Math.abs(n)/Math.sqrt(2*(i-r));return t=r<=0?.5*Math.sqrt(2*(i-r)):Math.abs(n)/Math.sqrt(2*(i+r)),new s(e,n<0?-t:t)},exp:function(){var e=Math.exp(this.re);return this.im,new s(e*Math.cos(this.im),e*Math.sin(this.im))},expm1:function(){var e=this.re,t=this.im;return new s(Math.expm1(e)*Math.cos(t)+function(e){var t=Math.PI/4;if(-t>e||e>t)return Math.cos(e)-1;var r=e*e;return r*(r*(r*(r*(r*(r*(r*(r/20922789888e3-1/87178291200)+1/479001600)-1/3628800)+1/40320)-1/720)+1/24)-.5)}(t),Math.exp(e)*Math.sin(t))},log:function(){var e=this.re,t=this.im;return new s(a(e,t),Math.atan2(t,e))},abs:function(){return e=this.re,t=this.im,r=Math.abs(e),n=Math.abs(t),r<3e3&&n<3e3?Math.sqrt(r*r+n*n):(r<n?(r=n,n=e/t):n=t/e,r*Math.sqrt(1+n*n));var e,t,r,n},arg:function(){return Math.atan2(this.im,this.re)},sin:function(){var e=this.re,t=this.im;return new s(Math.sin(e)*n(t),Math.cos(e)*i(t))},cos:function(){var e=this.re,t=this.im;return new s(Math.cos(e)*n(t),-Math.sin(e)*i(t))},tan:function(){var e=2*this.re,t=2*this.im,r=Math.cos(e)+n(t);return new s(Math.sin(e)/r,i(t)/r)},cot:function(){var e=2*this.re,t=2*this.im,r=Math.cos(e)-n(t);return new s(-Math.sin(e)/r,i(t)/r)},sec:function(){var e=this.re,t=this.im,r=.5*n(2*t)+.5*Math.cos(2*e);return new s(Math.cos(e)*n(t)/r,Math.sin(e)*i(t)/r)},csc:function(){var e=this.re,t=this.im,r=.5*n(2*t)-.5*Math.cos(2*e);return new s(Math.sin(e)*n(t)/r,-Math.cos(e)*i(t)/r)},asin:function(){var e=this.re,t=this.im,r=new s(t*t-e*e+1,-2*e*t).sqrt(),n=new s(r.re-t,r.im+e).log();return new s(n.im,-n.re)},acos:function(){var e=this.re,t=this.im,r=new s(t*t-e*e+1,-2*e*t).sqrt(),n=new s(r.re-t,r.im+e).log();return new s(Math.PI/2-n.im,n.re)},atan:function(){var e=this.re,t=this.im;if(0===e){if(1===t)return new s(0,1/0);if(-1===t)return new s(0,-1/0)}var r=e*e+(1-t)*(1-t),n=new s((1-t*t-e*e)/r,-2*e/r).log();return new s(-.5*n.im,.5*n.re)},acot:function(){var e=this.re,t=this.im;if(0===t)return new s(Math.atan2(1,e),0);var r=e*e+t*t;return 0!==r?new s(e/r,-t/r).atan():new s(0!==e?e/0:0,0!==t?-t/0:0).atan()},asec:function(){var e=this.re,t=this.im;if(0===e&&0===t)return new s(0,1/0);var r=e*e+t*t;return 0!==r?new s(e/r,-t/r).acos():new s(0!==e?e/0:0,0!==t?-t/0:0).acos()},acsc:function(){var e=this.re,t=this.im;if(0===e&&0===t)return new s(Math.PI/2,1/0);var r=e*e+t*t;return 0!==r?new s(e/r,-t/r).asin():new s(0!==e?e/0:0,0!==t?-t/0:0).asin()},sinh:function(){var e=this.re,t=this.im;return new s(i(e)*Math.cos(t),n(e)*Math.sin(t))},cosh:function(){var e=this.re,t=this.im;return new s(n(e)*Math.cos(t),i(e)*Math.sin(t))},tanh:function(){var e=2*this.re,t=2*this.im,r=n(e)+Math.cos(t);return new s(i(e)/r,Math.sin(t)/r)},coth:function(){var e=2*this.re,t=2*this.im,r=n(e)-Math.cos(t);return new s(i(e)/r,-Math.sin(t)/r)},csch:function(){var e=this.re,t=this.im,r=Math.cos(2*t)-n(2*e);return new s(-2*i(e)*Math.cos(t)/r,2*n(e)*Math.sin(t)/r)},sech:function(){var e=this.re,t=this.im,r=Math.cos(2*t)+n(2*e);return new s(2*n(e)*Math.cos(t)/r,-2*i(e)*Math.sin(t)/r)},asinh:function(){var e=this.im;this.im=-this.re,this.re=e;var t=this.asin();return this.re=-this.im,this.im=e,e=t.re,t.re=-t.im,t.im=e,t},acosh:function(){var e=this.acos();if(e.im<=0){var t=e.re;e.re=-e.im,e.im=t}else t=e.im,e.im=-e.re,e.re=t;return e},atanh:function(){var e=this.re,t=this.im,r=e>1&&0===t,n=1-e,i=1+e,o=n*n+t*t,u=0!==o?new s((i*n-t*t)/o,(t*n+i*t)/o):new s(-1!==e?e/0:0,0!==t?t/0:0),c=u.re;return u.re=a(u.re,u.im)/2,u.im=Math.atan2(u.im,c)/2,r&&(u.im=-u.im),u},acoth:function(){var e=this.re,t=this.im;if(0===e&&0===t)return new s(0,Math.PI/2);var r=e*e+t*t;return 0!==r?new s(e/r,-t/r).atanh():new s(0!==e?e/0:0,0!==t?-t/0:0).atanh()},acsch:function(){var e=this.re,t=this.im;if(0===t)return new s(0!==e?Math.log(e+Math.sqrt(e*e+1)):1/0,0);var r=e*e+t*t;return 0!==r?new s(e/r,-t/r).asinh():new s(0!==e?e/0:0,0!==t?-t/0:0).asinh()},asech:function(){var e=this.re,t=this.im;if(this.isZero())return s.INFINITY;var r=e*e+t*t;return 0!==r?new s(e/r,-t/r).acosh():new s(0!==e?e/0:0,0!==t?-t/0:0).acosh()},inverse:function(){if(this.isZero())return s.INFINITY;if(this.isInfinite())return s.ZERO;var e=this.re,t=this.im,r=e*e+t*t;return new s(e/r,-t/r)},conjugate:function(){return new s(this.re,-this.im)},neg:function(){return new s(-this.re,-this.im)},ceil:function(e){return e=Math.pow(10,e||0),new s(Math.ceil(this.re*e)/e,Math.ceil(this.im*e)/e)},floor:function(e){return e=Math.pow(10,e||0),new s(Math.floor(this.re*e)/e,Math.floor(this.im*e)/e)},round:function(e){return e=Math.pow(10,e||0),new s(Math.round(this.re*e)/e,Math.round(this.im*e)/e)},equals:function(e,t){var r=new s(e,t);return Math.abs(r.re-this.re)<=s.EPSILON&&Math.abs(r.im-this.im)<=s.EPSILON},clone:function(){return new s(this.re,this.im)},toString:function(){var e=this.re,t=this.im,r="";return this.isNaN()?"NaN":this.isInfinite()?"Infinity":(Math.abs(e)<s.EPSILON&&(e=0),Math.abs(t)<s.EPSILON&&(t=0),0===t?r+e:(0!==e?(r+=e,r+=" ",t<0?(t=-t,r+="-"):r+="+",r+=" "):t<0&&(t=-t,r+="-"),1!==t&&(r+=t),r+"i"))},toVector:function(){return[this.re,this.im]},valueOf:function(){return 0===this.im?this.re:null},isNaN:function(){return isNaN(this.re)||isNaN(this.im)},isZero:function(){return 0===this.im&&0===this.re},isFinite:function(){return isFinite(this.re)&&isFinite(this.im)},isInfinite:function(){return!(this.isNaN()||this.isFinite())}},s.ZERO=new s(0,0),s.ONE=new s(1,0),s.I=new s(0,1),s.PI=new s(Math.PI,0),s.E=new s(Math.E,0),s.INFINITY=new s(1/0,1/0),s.NAN=new s(NaN,NaN),s.EPSILON=1e-15,void 0===(r=function(){return s}.apply(t,[]))||(e.exports=r)}()},3144:e=>{"use strict";var t=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},r={"{":"\\{","}":"\\}","\\":"\\textbackslash{}","#":"\\#",$:"\\$","%":"\\%","&":"\\&","^":"\\textasciicircum{}",_:"\\_","~":"\\textasciitilde{}"},n={"–":"\\--","—":"\\---"," ":"~","\t":"\\qquad{}","\r\n":"\\newline{}","\n":"\\newline{}"},i=function(e,r){return t({},e,r)};e.exports=function(e){for(var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=o.preserveFormatting,s=void 0!==a&&a,u=o.escapeMapFn,c=void 0===u?i:u,l=String(e),f="",p=c(t({},r),s?t({},n):{}),m=Object.keys(p),d=function(){var e=!1;m.forEach((function(t,r){e||l.length>=t.length&&l.slice(0,t.length)===t&&(f+=p[m[r]],l=l.slice(t.length,l.length),e=!0)})),e||(f+=l.slice(0,1),l=l.slice(1,l.length))};l;)d();return f}},1880:e=>{e.exports=function e(t,r){"use strict";var n,i,o=/(^([+\-]?(?:0|[1-9]\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?)?$|^0x[0-9a-f]+$|\d+)/gi,a=/(^[ ]*|[ ]*$)/g,s=/(^([\w ]+,?[\w ]+)?[\w ]+,?[\w ]+\d+:\d+(:\d+)?[\w ]?|^\d{1,4}[\/\-]\d{1,4}[\/\-]\d{1,4}|^\w+, \w+ \d+, \d{4})/,u=/^0x[0-9a-f]+$/i,c=/^0/,l=function(t){return e.insensitive&&(""+t).toLowerCase()||""+t},f=l(t).replace(a,"")||"",p=l(r).replace(a,"")||"",m=f.replace(o,"\0$1\0").replace(/\0$/,"").replace(/^\0/,"").split("\0"),d=p.replace(o,"\0$1\0").replace(/\0$/,"").replace(/^\0/,"").split("\0"),h=parseInt(f.match(u),16)||1!==m.length&&f.match(s)&&Date.parse(f),g=parseInt(p.match(u),16)||h&&p.match(s)&&Date.parse(p)||null;if(g){if(h<g)return-1;if(h>g)return 1}for(var y=0,x=Math.max(m.length,d.length);y<x;y++){if(n=!(m[y]||"").match(c)&&parseFloat(m[y])||m[y]||0,i=!(d[y]||"").match(c)&&parseFloat(d[y])||d[y]||0,isNaN(n)!==isNaN(i))return isNaN(n)?1:-1;if(typeof n!=typeof i&&(n+="",i+=""),n<i)return-1;if(n>i)return 1}return 0}},7391:(e,t,r)=>{var n=r(7180),i=r(3181),o=r(3031),a=r(9067),s=r(6833),u=r(6098),c=r(4801);c.alea=n,c.xor128=i,c.xorwow=o,c.xorshift7=a,c.xor4096=s,c.tychei=u,e.exports=c},7180:function(e,t,r){var n;!function(e,i){function o(e){var t,r=this,n=(t=4022871197,function(e){e=String(e);for(var r=0;r<e.length;r++){var n=.02519603282416938*(t+=e.charCodeAt(r));n-=t=n>>>0,t=(n*=t)>>>0,t+=4294967296*(n-=t)}return 2.3283064365386963e-10*(t>>>0)});r.next=function(){var e=2091639*r.s0+2.3283064365386963e-10*r.c;return r.s0=r.s1,r.s1=r.s2,r.s2=e-(r.c=0|e)},r.c=1,r.s0=n(" "),r.s1=n(" "),r.s2=n(" "),r.s0-=n(e),r.s0<0&&(r.s0+=1),r.s1-=n(e),r.s1<0&&(r.s1+=1),r.s2-=n(e),r.s2<0&&(r.s2+=1),n=null}function a(e,t){return t.c=e.c,t.s0=e.s0,t.s1=e.s1,t.s2=e.s2,t}function s(e,t){var r=new o(e),n=t&&t.state,i=r.next;return i.int32=function(){return 4294967296*r.next()|0},i.double=function(){return i()+11102230246251565e-32*(2097152*i()|0)},i.quick=i,n&&("object"==typeof n&&a(n,r),i.state=function(){return a(r,{})}),i}i&&i.exports?i.exports=s:r.amdD&&r.amdO?void 0===(n=function(){return s}.call(t,r,t,i))||(i.exports=n):this.alea=s}(0,e=r.nmd(e),r.amdD)},6098:function(e,t,r){var n;!function(e,i){function o(e){var t=this,r="";t.next=function(){var e=t.b,r=t.c,n=t.d,i=t.a;return e=e<<25^e>>>7^r,r=r-n|0,n=n<<24^n>>>8^i,i=i-e|0,t.b=e=e<<20^e>>>12^r,t.c=r=r-n|0,t.d=n<<16^r>>>16^i,t.a=i-e|0},t.a=0,t.b=0,t.c=-1640531527,t.d=1367130551,e===Math.floor(e)?(t.a=e/4294967296|0,t.b=0|e):r+=e;for(var n=0;n<r.length+20;n++)t.b^=0|r.charCodeAt(n),t.next()}function a(e,t){return t.a=e.a,t.b=e.b,t.c=e.c,t.d=e.d,t}function s(e,t){var r=new o(e),n=t&&t.state,i=function(){return(r.next()>>>0)/4294967296};return i.double=function(){do{var e=((r.next()>>>11)+(r.next()>>>0)/4294967296)/(1<<21)}while(0===e);return e},i.int32=r.next,i.quick=i,n&&("object"==typeof n&&a(n,r),i.state=function(){return a(r,{})}),i}i&&i.exports?i.exports=s:r.amdD&&r.amdO?void 0===(n=function(){return s}.call(t,r,t,i))||(i.exports=n):this.tychei=s}(0,e=r.nmd(e),r.amdD)},3181:function(e,t,r){var n;!function(e,i){function o(e){var t=this,r="";t.x=0,t.y=0,t.z=0,t.w=0,t.next=function(){var e=t.x^t.x<<11;return t.x=t.y,t.y=t.z,t.z=t.w,t.w^=t.w>>>19^e^e>>>8},e===(0|e)?t.x=e:r+=e;for(var n=0;n<r.length+64;n++)t.x^=0|r.charCodeAt(n),t.next()}function a(e,t){return t.x=e.x,t.y=e.y,t.z=e.z,t.w=e.w,t}function s(e,t){var r=new o(e),n=t&&t.state,i=function(){return(r.next()>>>0)/4294967296};return i.double=function(){do{var e=((r.next()>>>11)+(r.next()>>>0)/4294967296)/(1<<21)}while(0===e);return e},i.int32=r.next,i.quick=i,n&&("object"==typeof n&&a(n,r),i.state=function(){return a(r,{})}),i}i&&i.exports?i.exports=s:r.amdD&&r.amdO?void 0===(n=function(){return s}.call(t,r,t,i))||(i.exports=n):this.xor128=s}(0,e=r.nmd(e),r.amdD)},6833:function(e,t,r){var n;!function(e,i){function o(e){var t=this;t.next=function(){var e,r,n=t.w,i=t.X,o=t.i;return t.w=n=n+1640531527|0,r=i[o+34&127],e=i[o=o+1&127],r^=r<<13,e^=e<<17,r^=r>>>15,e^=e>>>12,r=i[o]=r^e,t.i=o,r+(n^n>>>16)|0},function(e,t){var r,n,i,o,a,s=[],u=128;for(t===(0|t)?(n=t,t=null):(t+="\0",n=0,u=Math.max(u,t.length)),i=0,o=-32;o<u;++o)t&&(n^=t.charCodeAt((o+32)%t.length)),0===o&&(a=n),n^=n<<10,n^=n>>>15,n^=n<<4,n^=n>>>13,o>=0&&(a=a+1640531527|0,i=0==(r=s[127&o]^=n+a)?i+1:0);for(i>=128&&(s[127&(t&&t.length||0)]=-1),i=127,o=512;o>0;--o)n=s[i+34&127],r=s[i=i+1&127],n^=n<<13,r^=r<<17,n^=n>>>15,r^=r>>>12,s[i]=n^r;e.w=a,e.X=s,e.i=i}(t,e)}function a(e,t){return t.i=e.i,t.w=e.w,t.X=e.X.slice(),t}function s(e,t){null==e&&(e=+new Date);var r=new o(e),n=t&&t.state,i=function(){return(r.next()>>>0)/4294967296};return i.double=function(){do{var e=((r.next()>>>11)+(r.next()>>>0)/4294967296)/(1<<21)}while(0===e);return e},i.int32=r.next,i.quick=i,n&&(n.X&&a(n,r),i.state=function(){return a(r,{})}),i}i&&i.exports?i.exports=s:r.amdD&&r.amdO?void 0===(n=function(){return s}.call(t,r,t,i))||(i.exports=n):this.xor4096=s}(0,e=r.nmd(e),r.amdD)},9067:function(e,t,r){var n;!function(e,i){function o(e){var t=this;t.next=function(){var e,r,n=t.x,i=t.i;return e=n[i],r=(e^=e>>>7)^e<<24,r^=(e=n[i+1&7])^e>>>10,r^=(e=n[i+3&7])^e>>>3,r^=(e=n[i+4&7])^e<<7,e=n[i+7&7],r^=(e^=e<<13)^e<<9,n[i]=r,t.i=i+1&7,r},function(e,t){var r,n=[];if(t===(0|t))n[0]=t;else for(t=""+t,r=0;r<t.length;++r)n[7&r]=n[7&r]<<15^t.charCodeAt(r)+n[r+1&7]<<13;for(;n.length<8;)n.push(0);for(r=0;r<8&&0===n[r];++r);for(8==r?n[7]=-1:n[r],e.x=n,e.i=0,r=256;r>0;--r)e.next()}(t,e)}function a(e,t){return t.x=e.x.slice(),t.i=e.i,t}function s(e,t){null==e&&(e=+new Date);var r=new o(e),n=t&&t.state,i=function(){return(r.next()>>>0)/4294967296};return i.double=function(){do{var e=((r.next()>>>11)+(r.next()>>>0)/4294967296)/(1<<21)}while(0===e);return e},i.int32=r.next,i.quick=i,n&&(n.x&&a(n,r),i.state=function(){return a(r,{})}),i}i&&i.exports?i.exports=s:r.amdD&&r.amdO?void 0===(n=function(){return s}.call(t,r,t,i))||(i.exports=n):this.xorshift7=s}(0,e=r.nmd(e),r.amdD)},3031:function(e,t,r){var n;!function(e,i){function o(e){var t=this,r="";t.next=function(){var e=t.x^t.x>>>2;return t.x=t.y,t.y=t.z,t.z=t.w,t.w=t.v,(t.d=t.d+362437|0)+(t.v=t.v^t.v<<4^e^e<<1)|0},t.x=0,t.y=0,t.z=0,t.w=0,t.v=0,e===(0|e)?t.x=e:r+=e;for(var n=0;n<r.length+64;n++)t.x^=0|r.charCodeAt(n),n==r.length&&(t.d=t.x<<10^t.x>>>4),t.next()}function a(e,t){return t.x=e.x,t.y=e.y,t.z=e.z,t.w=e.w,t.v=e.v,t.d=e.d,t}function s(e,t){var r=new o(e),n=t&&t.state,i=function(){return(r.next()>>>0)/4294967296};return i.double=function(){do{var e=((r.next()>>>11)+(r.next()>>>0)/4294967296)/(1<<21)}while(0===e);return e},i.int32=r.next,i.quick=i,n&&("object"==typeof n&&a(n,r),i.state=function(){return a(r,{})}),i}i&&i.exports?i.exports=s:r.amdD&&r.amdO?void 0===(n=function(){return s}.call(t,r,t,i))||(i.exports=n):this.xorwow=s}(0,e=r.nmd(e),r.amdD)},4801:function(e,t,r){var n;!function(i,o,a){var s,u=256,c=a.pow(u,6),l=a.pow(2,52),f=2*l,p=u-1;function m(e,t,r){var n=[],p=y(g((t=1==t?{entropy:!0}:t||{}).entropy?[e,x(o)]:null==e?function(){try{var e;return s&&(e=s.randomBytes)?e=e(u):(e=new Uint8Array(u),(i.crypto||i.msCrypto).getRandomValues(e)),x(e)}catch(e){var t=i.navigator,r=t&&t.plugins;return[+new Date,i,r,i.screen,x(o)]}}():e,3),n),m=new d(n),b=function(){for(var e=m.g(6),t=c,r=0;e<l;)e=(e+r)*u,t*=u,r=m.g(1);for(;e>=f;)e/=2,t/=2,r>>>=1;return(e+r)/t};return b.int32=function(){return 0|m.g(4)},b.quick=function(){return m.g(4)/4294967296},b.double=b,y(x(m.S),o),(t.pass||r||function(e,t,r,n){return n&&(n.S&&h(n,m),e.state=function(){return h(m,{})}),r?(a.random=e,t):e})(b,p,"global"in t?t.global:this==a,t.state)}function d(e){var t,r=e.length,n=this,i=0,o=n.i=n.j=0,a=n.S=[];for(r||(e=[r++]);i<u;)a[i]=i++;for(i=0;i<u;i++)a[i]=a[o=p&o+e[i%r]+(t=a[i])],a[o]=t;(n.g=function(e){for(var t,r=0,i=n.i,o=n.j,a=n.S;e--;)t=a[i=p&i+1],r=r*u+a[p&(a[i]=a[o=p&o+t])+(a[o]=t)];return n.i=i,n.j=o,r})(u)}function h(e,t){return t.i=e.i,t.j=e.j,t.S=e.S.slice(),t}function g(e,t){var r,n=[],i=typeof e;if(t&&"object"==i)for(r in e)try{n.push(g(e[r],t-1))}catch(e){}return n.length?n:"string"==i?e:e+"\0"}function y(e,t){for(var r,n=e+"",i=0;i<n.length;)t[p&i]=p&(r^=19*t[p&i])+n.charCodeAt(i++);return x(t)}function x(e){return String.fromCharCode.apply(0,e)}if(y(a.random(),o),e.exports){e.exports=m;try{s=r(1234)}catch(e){}}else void 0===(n=function(){return m}.call(t,r,t,e))||(e.exports=n)}("undefined"!=typeof self?self:this,[],Math)},1504:e=>{function t(){}t.prototype={on:function(e,t,r){var n=this.e||(this.e={});return(n[e]||(n[e]=[])).push({fn:t,ctx:r}),this},once:function(e,t,r){var n=this;function i(){n.off(e,i),t.apply(r,arguments)}return i._=t,this.on(e,i,r)},emit:function(e){for(var t=[].slice.call(arguments,1),r=((this.e||(this.e={}))[e]||[]).slice(),n=0,i=r.length;n<i;n++)r[n].fn.apply(r[n].ctx,t);return this},off:function(e,t){var r=this.e||(this.e={}),n=r[e],i=[];if(n&&t)for(var o=0,a=n.length;o<a;o++)n[o].fn!==t&&n[o].fn._!==t&&i.push(n[o]);return i.length?r[e]=i:delete r[e],this}},e.exports=t,e.exports.TinyEmitter=t},1234:()=>{},9306:(e,t,r)=>{"use strict";var n=r(4901),i=r(6823),o=TypeError;e.exports=function(e){if(n(e))return e;throw new o(i(e)+" is not a function")}},5548:(e,t,r)=>{"use strict";var n=r(3517),i=r(6823),o=TypeError;e.exports=function(e){if(n(e))return e;throw new o(i(e)+" is not a constructor")}},3506:(e,t,r)=>{"use strict";var n=r(3925),i=String,o=TypeError;e.exports=function(e){if(n(e))return e;throw new o("Can't set "+i(e)+" as a prototype")}},6469:(e,t,r)=>{"use strict";var n=r(8227),i=r(2360),o=r(4913).f,a=n("unscopables"),s=Array.prototype;void 0===s[a]&&o(s,a,{configurable:!0,value:i(null)}),e.exports=function(e){s[a][e]=!0}},7829:(e,t,r)=>{"use strict";var n=r(8183).charAt;e.exports=function(e,t,r){return t+(r?n(e,t).length:1)}},679:(e,t,r)=>{"use strict";var n=r(1625),i=TypeError;e.exports=function(e,t){if(n(t,e))return e;throw new i("Incorrect invocation")}},8551:(e,t,r)=>{"use strict";var n=r(34),i=String,o=TypeError;e.exports=function(e){if(n(e))return e;throw new o(i(e)+" is not an object")}},9617:(e,t,r)=>{"use strict";var n=r(5397),i=r(5610),o=r(6198),a=function(e){return function(t,r,a){var s=n(t),u=o(s);if(0===u)return!e&&-1;var c,l=i(a,u);if(e&&r!=r){for(;u>l;)if((c=s[l++])!=c)return!0}else for(;u>l;l++)if((e||l in s)&&s[l]===r)return e||l||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},4598:(e,t,r)=>{"use strict";var n=r(9039);e.exports=function(e,t){var r=[][e];return!!r&&n((function(){r.call(null,t||function(){return 1},1)}))}},926:(e,t,r)=>{"use strict";var n=r(9306),i=r(8981),o=r(7055),a=r(6198),s=TypeError,u="Reduce of empty array with no initial value",c=function(e){return function(t,r,c,l){var f=i(t),p=o(f),m=a(f);if(n(r),0===m&&c<2)throw new s(u);var d=e?m-1:0,h=e?-1:1;if(c<2)for(;;){if(d in p){l=p[d],d+=h;break}if(d+=h,e?d<0:m<=d)throw new s(u)}for(;e?d>=0:m>d;d+=h)d in p&&(l=r(l,p[d],d,f));return l}};e.exports={left:c(!1),right:c(!0)}},7680:(e,t,r)=>{"use strict";var n=r(9504);e.exports=n([].slice)},4488:(e,t,r)=>{"use strict";var n=r(7680),i=Math.floor,o=function(e,t){var r=e.length;if(r<8)for(var a,s,u=1;u<r;){for(s=u,a=e[u];s&&t(e[s-1],a)>0;)e[s]=e[--s];s!==u++&&(e[s]=a)}else for(var c=i(r/2),l=o(n(e,0,c),t),f=o(n(e,c),t),p=l.length,m=f.length,d=0,h=0;d<p||h<m;)e[d+h]=d<p&&h<m?t(l[d],f[h])<=0?l[d++]:f[h++]:d<p?l[d++]:f[h++];return e};e.exports=o},4428:(e,t,r)=>{"use strict";var n=r(8227)("iterator"),i=!1;try{var o=0,a={next:function(){return{done:!!o++}},return:function(){i=!0}};a[n]=function(){return this},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,t){try{if(!t&&!i)return!1}catch(e){return!1}var r=!1;try{var o={};o[n]=function(){return{next:function(){return{done:r=!0}}}},e(o)}catch(e){}return r}},4576:(e,t,r)=>{"use strict";var n=r(9504),i=n({}.toString),o=n("".slice);e.exports=function(e){return o(i(e),8,-1)}},6955:(e,t,r)=>{"use strict";var n=r(2140),i=r(4901),o=r(4576),a=r(8227)("toStringTag"),s=Object,u="Arguments"===o(function(){return arguments}());e.exports=n?o:function(e){var t,r,n;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(r=function(e,t){try{return e[t]}catch(e){}}(t=s(e),a))?r:u?o(t):"Object"===(n=o(t))&&i(t.callee)?"Arguments":n}},7740:(e,t,r)=>{"use strict";var n=r(9297),i=r(5031),o=r(7347),a=r(4913);e.exports=function(e,t,r){for(var s=i(t),u=a.f,c=o.f,l=0;l<s.length;l++){var f=s[l];n(e,f)||r&&n(r,f)||u(e,f,c(t,f))}}},6699:(e,t,r)=>{"use strict";var n=r(3724),i=r(4913),o=r(6980);e.exports=n?function(e,t,r){return i.f(e,t,o(1,r))}:function(e,t,r){return e[t]=r,e}},6980:e=>{"use strict";e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},2106:(e,t,r)=>{"use strict";var n=r(283),i=r(4913);e.exports=function(e,t,r){return r.get&&n(r.get,t,{getter:!0}),r.set&&n(r.set,t,{setter:!0}),i.f(e,t,r)}},6840:(e,t,r)=>{"use strict";var n=r(4901),i=r(4913),o=r(283),a=r(9433);e.exports=function(e,t,r,s){s||(s={});var u=s.enumerable,c=void 0!==s.name?s.name:t;if(n(r)&&o(r,c,s),s.global)u?e[t]=r:a(t,r);else{try{s.unsafe?e[t]&&(u=!0):delete e[t]}catch(e){}u?e[t]=r:i.f(e,t,{value:r,enumerable:!1,configurable:!s.nonConfigurable,writable:!s.nonWritable})}return e}},9433:(e,t,r)=>{"use strict";var n=r(4475),i=Object.defineProperty;e.exports=function(e,t){try{i(n,e,{value:t,configurable:!0,writable:!0})}catch(r){n[e]=t}return t}},4606:(e,t,r)=>{"use strict";var n=r(6823),i=TypeError;e.exports=function(e,t){if(!delete e[t])throw new i("Cannot delete property "+n(t)+" of "+n(e))}},3724:(e,t,r)=>{"use strict";var n=r(9039);e.exports=!n((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},4055:(e,t,r)=>{"use strict";var n=r(4475),i=r(34),o=n.document,a=i(o)&&i(o.createElement);e.exports=function(e){return a?o.createElement(e):{}}},8834:(e,t,r)=>{"use strict";var n=r(9392).match(/firefox\/(\d+)/i);e.exports=!!n&&+n[1]},7290:(e,t,r)=>{"use strict";var n=r(516),i=r(9088);e.exports=!n&&!i&&"object"==typeof window&&"object"==typeof document},516:e=>{"use strict";e.exports="object"==typeof Deno&&Deno&&"object"==typeof Deno.version},3202:(e,t,r)=>{"use strict";var n=r(9392);e.exports=/MSIE|Trident/.test(n)},28:(e,t,r)=>{"use strict";var n=r(9392);e.exports=/ipad|iphone|ipod/i.test(n)&&"undefined"!=typeof Pebble},8119:(e,t,r)=>{"use strict";var n=r(9392);e.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(n)},9088:(e,t,r)=>{"use strict";var n=r(4475),i=r(4576);e.exports="process"===i(n.process)},6765:(e,t,r)=>{"use strict";var n=r(9392);e.exports=/web0s(?!.*chrome)/i.test(n)},9392:e=>{"use strict";e.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},7388:(e,t,r)=>{"use strict";var n,i,o=r(4475),a=r(9392),s=o.process,u=o.Deno,c=s&&s.versions||u&&u.version,l=c&&c.v8;l&&(i=(n=l.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!i&&a&&(!(n=a.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=a.match(/Chrome\/(\d+)/))&&(i=+n[1]),e.exports=i},9160:(e,t,r)=>{"use strict";var n=r(9392).match(/AppleWebKit\/(\d+)\./);e.exports=!!n&&+n[1]},8727:e=>{"use strict";e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},6518:(e,t,r)=>{"use strict";var n=r(4475),i=r(7347).f,o=r(6699),a=r(6840),s=r(9433),u=r(7740),c=r(2796);e.exports=function(e,t){var r,l,f,p,m,d=e.target,h=e.global,g=e.stat;if(r=h?n:g?n[d]||s(d,{}):n[d]&&n[d].prototype)for(l in t){if(p=t[l],f=e.dontCallGetSet?(m=i(r,l))&&m.value:r[l],!c(h?l:d+(g?".":"#")+l,e.forced)&&void 0!==f){if(typeof p==typeof f)continue;u(p,f)}(e.sham||f&&f.sham)&&o(p,"sham",!0),a(r,l,p,e)}}},9039:e=>{"use strict";e.exports=function(e){try{return!!e()}catch(e){return!0}}},9228:(e,t,r)=>{"use strict";r(7495);var n=r(9565),i=r(6840),o=r(7323),a=r(9039),s=r(8227),u=r(6699),c=s("species"),l=RegExp.prototype;e.exports=function(e,t,r,f){var p=s(e),m=!a((function(){var t={};return t[p]=function(){return 7},7!==""[e](t)})),d=m&&!a((function(){var t=!1,r=/a/;return"split"===e&&((r={}).constructor={},r.constructor[c]=function(){return r},r.flags="",r[p]=/./[p]),r.exec=function(){return t=!0,null},r[p](""),!t}));if(!m||!d||r){var h=/./[p],g=t(p,""[e],(function(e,t,r,i,a){var s=t.exec;return s===o||s===l.exec?m&&!a?{done:!0,value:n(h,t,r,i)}:{done:!0,value:n(e,r,t,i)}:{done:!1}}));i(String.prototype,e,g[0]),i(l,p,g[1])}f&&u(l[p],"sham",!0)}},8745:(e,t,r)=>{"use strict";var n=r(616),i=Function.prototype,o=i.apply,a=i.call;e.exports="object"==typeof Reflect&&Reflect.apply||(n?a.bind(o):function(){return a.apply(o,arguments)})},6080:(e,t,r)=>{"use strict";var n=r(7476),i=r(9306),o=r(616),a=n(n.bind);e.exports=function(e,t){return i(e),void 0===t?e:o?a(e,t):function(){return e.apply(t,arguments)}}},616:(e,t,r)=>{"use strict";var n=r(9039);e.exports=!n((function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")}))},9565:(e,t,r)=>{"use strict";var n=r(616),i=Function.prototype.call;e.exports=n?i.bind(i):function(){return i.apply(i,arguments)}},350:(e,t,r)=>{"use strict";var n=r(3724),i=r(9297),o=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,s=i(o,"name"),u=s&&"something"===function(){}.name,c=s&&(!n||n&&a(o,"name").configurable);e.exports={EXISTS:s,PROPER:u,CONFIGURABLE:c}},6706:(e,t,r)=>{"use strict";var n=r(9504),i=r(9306);e.exports=function(e,t,r){try{return n(i(Object.getOwnPropertyDescriptor(e,t)[r]))}catch(e){}}},7476:(e,t,r)=>{"use strict";var n=r(4576),i=r(9504);e.exports=function(e){if("Function"===n(e))return i(e)}},9504:(e,t,r)=>{"use strict";var n=r(616),i=Function.prototype,o=i.call,a=n&&i.bind.bind(o,o);e.exports=n?a:function(e){return function(){return o.apply(e,arguments)}}},7751:(e,t,r)=>{"use strict";var n=r(4475),i=r(4901);e.exports=function(e,t){return arguments.length<2?(r=n[e],i(r)?r:void 0):n[e]&&n[e][t];var r}},851:(e,t,r)=>{"use strict";var n=r(6955),i=r(5966),o=r(4117),a=r(6269),s=r(8227)("iterator");e.exports=function(e){if(!o(e))return i(e,s)||i(e,"@@iterator")||a[n(e)]}},81:(e,t,r)=>{"use strict";var n=r(9565),i=r(9306),o=r(8551),a=r(6823),s=r(851),u=TypeError;e.exports=function(e,t){var r=arguments.length<2?s(e):t;if(i(r))return o(n(r,e));throw new u(a(e)+" is not iterable")}},6933:(e,t,r)=>{"use strict";var n=r(9504),i=r(4376),o=r(4901),a=r(4576),s=r(655),u=n([].push);e.exports=function(e){if(o(e))return e;if(i(e)){for(var t=e.length,r=[],n=0;n<t;n++){var c=e[n];"string"==typeof c?u(r,c):"number"!=typeof c&&"Number"!==a(c)&&"String"!==a(c)||u(r,s(c))}var l=r.length,f=!0;return function(e,t){if(f)return f=!1,t;if(i(this))return t;for(var n=0;n<l;n++)if(r[n]===e)return t}}}},5966:(e,t,r)=>{"use strict";var n=r(9306),i=r(4117);e.exports=function(e,t){var r=e[t];return i(r)?void 0:n(r)}},2478:(e,t,r)=>{"use strict";var n=r(9504),i=r(8981),o=Math.floor,a=n("".charAt),s=n("".replace),u=n("".slice),c=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,l=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,t,r,n,f,p){var m=r+e.length,d=n.length,h=l;return void 0!==f&&(f=i(f),h=c),s(p,h,(function(i,s){var c;switch(a(s,0)){case"$":return"$";case"&":return e;case"`":return u(t,0,r);case"'":return u(t,m);case"<":c=f[u(s,1,-1)];break;default:var l=+s;if(0===l)return i;if(l>d){var p=o(l/10);return 0===p?i:p<=d?void 0===n[p-1]?a(s,1):n[p-1]+a(s,1):i}c=n[l-1]}return void 0===c?"":c}))}},4475:function(e){"use strict";var t=function(e){return e&&e.Math===Math&&e};e.exports=t("object"==typeof globalThis&&globalThis)||t("object"==typeof window&&window)||t("object"==typeof self&&self)||t("object"==typeof global&&global)||t("object"==typeof this&&this)||function(){return this}()||Function("return this")()},9297:(e,t,r)=>{"use strict";var n=r(9504),i=r(8981),o=n({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return o(i(e),t)}},421:e=>{"use strict";e.exports={}},3138:e=>{"use strict";e.exports=function(e,t){try{1===arguments.length?console.error(e):console.error(e,t)}catch(e){}}},397:(e,t,r)=>{"use strict";var n=r(7751);e.exports=n("document","documentElement")},5917:(e,t,r)=>{"use strict";var n=r(3724),i=r(9039),o=r(4055);e.exports=!n&&!i((function(){return 7!==Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a}))},7055:(e,t,r)=>{"use strict";var n=r(9504),i=r(9039),o=r(4576),a=Object,s=n("".split);e.exports=i((function(){return!a("z").propertyIsEnumerable(0)}))?function(e){return"String"===o(e)?s(e,""):a(e)}:a},3167:(e,t,r)=>{"use strict";var n=r(4901),i=r(34),o=r(2967);e.exports=function(e,t,r){var a,s;return o&&n(a=t.constructor)&&a!==r&&i(s=a.prototype)&&s!==r.prototype&&o(e,s),e}},3706:(e,t,r)=>{"use strict";var n=r(9504),i=r(4901),o=r(7629),a=n(Function.toString);i(o.inspectSource)||(o.inspectSource=function(e){return a(e)}),e.exports=o.inspectSource},1181:(e,t,r)=>{"use strict";var n,i,o,a=r(8622),s=r(4475),u=r(34),c=r(6699),l=r(9297),f=r(7629),p=r(6119),m=r(421),d="Object already initialized",h=s.TypeError,g=s.WeakMap;if(a||f.state){var y=f.state||(f.state=new g);y.get=y.get,y.has=y.has,y.set=y.set,n=function(e,t){if(y.has(e))throw new h(d);return t.facade=e,y.set(e,t),t},i=function(e){return y.get(e)||{}},o=function(e){return y.has(e)}}else{var x=p("state");m[x]=!0,n=function(e,t){if(l(e,x))throw new h(d);return t.facade=e,c(e,x,t),t},i=function(e){return l(e,x)?e[x]:{}},o=function(e){return l(e,x)}}e.exports={set:n,get:i,has:o,enforce:function(e){return o(e)?i(e):n(e,{})},getterFor:function(e){return function(t){var r;if(!u(t)||(r=i(t)).type!==e)throw new h("Incompatible receiver, "+e+" required");return r}}}},4209:(e,t,r)=>{"use strict";var n=r(8227),i=r(6269),o=n("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(i.Array===e||a[o]===e)}},4376:(e,t,r)=>{"use strict";var n=r(4576);e.exports=Array.isArray||function(e){return"Array"===n(e)}},4901:e=>{"use strict";var t="object"==typeof document&&document.all;e.exports=void 0===t&&void 0!==t?function(e){return"function"==typeof e||e===t}:function(e){return"function"==typeof e}},3517:(e,t,r)=>{"use strict";var n=r(9504),i=r(9039),o=r(4901),a=r(6955),s=r(7751),u=r(3706),c=function(){},l=s("Reflect","construct"),f=/^\s*(?:class|function)\b/,p=n(f.exec),m=!f.test(c),d=function(e){if(!o(e))return!1;try{return l(c,[],e),!0}catch(e){return!1}},h=function(e){if(!o(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return m||!!p(f,u(e))}catch(e){return!0}};h.sham=!0,e.exports=!l||i((function(){var e;return d(d.call)||!d(Object)||!d((function(){e=!0}))||e}))?h:d},2796:(e,t,r)=>{"use strict";var n=r(9039),i=r(4901),o=/#|\.prototype\./,a=function(e,t){var r=u[s(e)];return r===l||r!==c&&(i(t)?n(t):!!t)},s=a.normalize=function(e){return String(e).replace(o,".").toLowerCase()},u=a.data={},c=a.NATIVE="N",l=a.POLYFILL="P";e.exports=a},4117:e=>{"use strict";e.exports=function(e){return null==e}},34:(e,t,r)=>{"use strict";var n=r(4901);e.exports=function(e){return"object"==typeof e?null!==e:n(e)}},3925:(e,t,r)=>{"use strict";var n=r(34);e.exports=function(e){return n(e)||null===e}},6395:e=>{"use strict";e.exports=!1},788:(e,t,r)=>{"use strict";var n=r(34),i=r(4576),o=r(8227)("match");e.exports=function(e){var t;return n(e)&&(void 0!==(t=e[o])?!!t:"RegExp"===i(e))}},757:(e,t,r)=>{"use strict";var n=r(7751),i=r(4901),o=r(1625),a=r(7040),s=Object;e.exports=a?function(e){return"symbol"==typeof e}:function(e){var t=n("Symbol");return i(t)&&o(t.prototype,s(e))}},2652:(e,t,r)=>{"use strict";var n=r(6080),i=r(9565),o=r(8551),a=r(6823),s=r(4209),u=r(6198),c=r(1625),l=r(81),f=r(851),p=r(9539),m=TypeError,d=function(e,t){this.stopped=e,this.result=t},h=d.prototype;e.exports=function(e,t,r){var g,y,x,b,v,w,N,E=r&&r.that,A=!(!r||!r.AS_ENTRIES),S=!(!r||!r.IS_RECORD),M=!(!r||!r.IS_ITERATOR),C=!(!r||!r.INTERRUPTED),T=n(t,E),D=function(e){return g&&p(g,"normal",e),new d(!0,e)},F=function(e){return A?(o(e),C?T(e[0],e[1],D):T(e[0],e[1])):C?T(e,D):T(e)};if(S)g=e.iterator;else if(M)g=e;else{if(!(y=f(e)))throw new m(a(e)+" is not iterable");if(s(y)){for(x=0,b=u(e);b>x;x++)if((v=F(e[x]))&&c(h,v))return v;return new d(!1)}g=l(e,y)}for(w=S?e.next:g.next;!(N=i(w,g)).done;){try{v=F(N.value)}catch(e){p(g,"throw",e)}if("object"==typeof v&&v&&c(h,v))return v}return new d(!1)}},9539:(e,t,r)=>{"use strict";var n=r(9565),i=r(8551),o=r(5966);e.exports=function(e,t,r){var a,s;i(e);try{if(!(a=o(e,"return"))){if("throw"===t)throw r;return r}a=n(a,e)}catch(e){s=!0,a=e}if("throw"===t)throw r;if(s)throw a;return i(a),r}},6269:e=>{"use strict";e.exports={}},6198:(e,t,r)=>{"use strict";var n=r(8014);e.exports=function(e){return n(e.length)}},283:(e,t,r)=>{"use strict";var n=r(9504),i=r(9039),o=r(4901),a=r(9297),s=r(3724),u=r(350).CONFIGURABLE,c=r(3706),l=r(1181),f=l.enforce,p=l.get,m=String,d=Object.defineProperty,h=n("".slice),g=n("".replace),y=n([].join),x=s&&!i((function(){return 8!==d((function(){}),"length",{value:8}).length})),b=String(String).split("String"),v=e.exports=function(e,t,r){"Symbol("===h(m(t),0,7)&&(t="["+g(m(t),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),r&&r.getter&&(t="get "+t),r&&r.setter&&(t="set "+t),(!a(e,"name")||u&&e.name!==t)&&(s?d(e,"name",{value:t,configurable:!0}):e.name=t),x&&r&&a(r,"arity")&&e.length!==r.arity&&d(e,"length",{value:r.arity});try{r&&a(r,"constructor")&&r.constructor?s&&d(e,"prototype",{writable:!1}):e.prototype&&(e.prototype=void 0)}catch(e){}var n=f(e);return a(n,"source")||(n.source=y(b,"string"==typeof t?t:"")),e};Function.prototype.toString=v((function(){return o(this)&&p(this).source||c(this)}),"toString")},741:e=>{"use strict";var t=Math.ceil,r=Math.floor;e.exports=Math.trunc||function(e){var n=+e;return(n>0?r:t)(n)}},1955:(e,t,r)=>{"use strict";var n,i,o,a,s,u=r(4475),c=r(3389),l=r(6080),f=r(9225).set,p=r(8265),m=r(8119),d=r(28),h=r(6765),g=r(9088),y=u.MutationObserver||u.WebKitMutationObserver,x=u.document,b=u.process,v=u.Promise,w=c("queueMicrotask");if(!w){var N=new p,E=function(){var e,t;for(g&&(e=b.domain)&&e.exit();t=N.get();)try{t()}catch(e){throw N.head&&n(),e}e&&e.enter()};m||g||h||!y||!x?!d&&v&&v.resolve?((a=v.resolve(void 0)).constructor=v,s=l(a.then,a),n=function(){s(E)}):g?n=function(){b.nextTick(E)}:(f=l(f,u),n=function(){f(E)}):(i=!0,o=x.createTextNode(""),new y(E).observe(o,{characterData:!0}),n=function(){o.data=i=!i}),w=function(e){N.head||n(),N.add(e)}}e.exports=w},6043:(e,t,r)=>{"use strict";var n=r(9306),i=TypeError,o=function(e){var t,r;this.promise=new e((function(e,n){if(void 0!==t||void 0!==r)throw new i("Bad Promise constructor");t=e,r=n})),this.resolve=n(t),this.reject=n(r)};e.exports.f=function(e){return new o(e)}},2360:(e,t,r)=>{"use strict";var n,i=r(8551),o=r(6801),a=r(8727),s=r(421),u=r(397),c=r(4055),l=r(6119),f="prototype",p="script",m=l("IE_PROTO"),d=function(){},h=function(e){return"<"+p+">"+e+"</"+p+">"},g=function(e){e.write(h("")),e.close();var t=e.parentWindow.Object;return e=null,t},y=function(){try{n=new ActiveXObject("htmlfile")}catch(e){}var e,t,r;y="undefined"!=typeof document?document.domain&&n?g(n):(t=c("iframe"),r="java"+p+":",t.style.display="none",u.appendChild(t),t.src=String(r),(e=t.contentWindow.document).open(),e.write(h("document.F=Object")),e.close(),e.F):g(n);for(var i=a.length;i--;)delete y[f][a[i]];return y()};s[m]=!0,e.exports=Object.create||function(e,t){var r;return null!==e?(d[f]=i(e),r=new d,d[f]=null,r[m]=e):r=y(),void 0===t?r:o.f(r,t)}},6801:(e,t,r)=>{"use strict";var n=r(3724),i=r(8686),o=r(4913),a=r(8551),s=r(5397),u=r(1072);t.f=n&&!i?Object.defineProperties:function(e,t){a(e);for(var r,n=s(t),i=u(t),c=i.length,l=0;c>l;)o.f(e,r=i[l++],n[r]);return e}},4913:(e,t,r)=>{"use strict";var n=r(3724),i=r(5917),o=r(8686),a=r(8551),s=r(6969),u=TypeError,c=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f="enumerable",p="configurable",m="writable";t.f=n?o?function(e,t,r){if(a(e),t=s(t),a(r),"function"==typeof e&&"prototype"===t&&"value"in r&&m in r&&!r[m]){var n=l(e,t);n&&n[m]&&(e[t]=r.value,r={configurable:p in r?r[p]:n[p],enumerable:f in r?r[f]:n[f],writable:!1})}return c(e,t,r)}:c:function(e,t,r){if(a(e),t=s(t),a(r),i)try{return c(e,t,r)}catch(e){}if("get"in r||"set"in r)throw new u("Accessors not supported");return"value"in r&&(e[t]=r.value),e}},7347:(e,t,r)=>{"use strict";var n=r(3724),i=r(9565),o=r(8773),a=r(6980),s=r(5397),u=r(6969),c=r(9297),l=r(5917),f=Object.getOwnPropertyDescriptor;t.f=n?f:function(e,t){if(e=s(e),t=u(t),l)try{return f(e,t)}catch(e){}if(c(e,t))return a(!i(o.f,e,t),e[t])}},8480:(e,t,r)=>{"use strict";var n=r(1828),i=r(8727).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return n(e,i)}},3717:(e,t)=>{"use strict";t.f=Object.getOwnPropertySymbols},1625:(e,t,r)=>{"use strict";var n=r(9504);e.exports=n({}.isPrototypeOf)},1828:(e,t,r)=>{"use strict";var n=r(9504),i=r(9297),o=r(5397),a=r(9617).indexOf,s=r(421),u=n([].push);e.exports=function(e,t){var r,n=o(e),c=0,l=[];for(r in n)!i(s,r)&&i(n,r)&&u(l,r);for(;t.length>c;)i(n,r=t[c++])&&(~a(l,r)||u(l,r));return l}},1072:(e,t,r)=>{"use strict";var n=r(1828),i=r(8727);e.exports=Object.keys||function(e){return n(e,i)}},8773:(e,t)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,i=n&&!r.call({1:2},1);t.f=i?function(e){var t=n(this,e);return!!t&&t.enumerable}:r},2967:(e,t,r)=>{"use strict";var n=r(6706),i=r(34),o=r(7750),a=r(3506);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,t=!1,r={};try{(e=n(Object.prototype,"__proto__","set"))(r,[]),t=r instanceof Array}catch(e){}return function(r,n){return o(r),a(n),i(r)?(t?e(r,n):r.__proto__=n,r):r}}():void 0)},4270:(e,t,r)=>{"use strict";var n=r(9565),i=r(4901),o=r(34),a=TypeError;e.exports=function(e,t){var r,s;if("string"===t&&i(r=e.toString)&&!o(s=n(r,e)))return s;if(i(r=e.valueOf)&&!o(s=n(r,e)))return s;if("string"!==t&&i(r=e.toString)&&!o(s=n(r,e)))return s;throw new a("Can't convert object to primitive value")}},5031:(e,t,r)=>{"use strict";var n=r(7751),i=r(9504),o=r(8480),a=r(3717),s=r(8551),u=i([].concat);e.exports=n("Reflect","ownKeys")||function(e){var t=o.f(s(e)),r=a.f;return r?u(t,r(e)):t}},1103:e=>{"use strict";e.exports=function(e){try{return{error:!1,value:e()}}catch(e){return{error:!0,value:e}}}},916:(e,t,r)=>{"use strict";var n=r(4475),i=r(550),o=r(4901),a=r(2796),s=r(3706),u=r(8227),c=r(7290),l=r(516),f=r(6395),p=r(7388),m=i&&i.prototype,d=u("species"),h=!1,g=o(n.PromiseRejectionEvent),y=a("Promise",(function(){var e=s(i),t=e!==String(i);if(!t&&66===p)return!0;if(f&&(!m.catch||!m.finally))return!0;if(!p||p<51||!/native code/.test(e)){var r=new i((function(e){e(1)})),n=function(e){e((function(){}),(function(){}))};if((r.constructor={})[d]=n,!(h=r.then((function(){}))instanceof n))return!0}return!t&&(c||l)&&!g}));e.exports={CONSTRUCTOR:y,REJECTION_EVENT:g,SUBCLASSING:h}},550:(e,t,r)=>{"use strict";var n=r(4475);e.exports=n.Promise},3438:(e,t,r)=>{"use strict";var n=r(8551),i=r(34),o=r(6043);e.exports=function(e,t){if(n(e),i(t)&&t.constructor===e)return t;var r=o.f(e);return(0,r.resolve)(t),r.promise}},537:(e,t,r)=>{"use strict";var n=r(550),i=r(4428),o=r(916).CONSTRUCTOR;e.exports=o||!i((function(e){n.all(e).then(void 0,(function(){}))}))},1056:(e,t,r)=>{"use strict";var n=r(4913).f;e.exports=function(e,t,r){r in e||n(e,r,{configurable:!0,get:function(){return t[r]},set:function(e){t[r]=e}})}},8265:e=>{"use strict";var t=function(){this.head=null,this.tail=null};t.prototype={add:function(e){var t={item:e,next:null},r=this.tail;r?r.next=t:this.head=t,this.tail=t},get:function(){var e=this.head;if(e)return null===(this.head=e.next)&&(this.tail=null),e.item}},e.exports=t},6682:(e,t,r)=>{"use strict";var n=r(9565),i=r(8551),o=r(4901),a=r(4576),s=r(7323),u=TypeError;e.exports=function(e,t){var r=e.exec;if(o(r)){var c=n(r,e,t);return null!==c&&i(c),c}if("RegExp"===a(e))return n(s,e,t);throw new u("RegExp#exec called on incompatible receiver")}},7323:(e,t,r)=>{"use strict";var n,i,o=r(9565),a=r(9504),s=r(655),u=r(7979),c=r(8429),l=r(5745),f=r(2360),p=r(1181).get,m=r(3635),d=r(8814),h=l("native-string-replace",String.prototype.replace),g=RegExp.prototype.exec,y=g,x=a("".charAt),b=a("".indexOf),v=a("".replace),w=a("".slice),N=(i=/b*/g,o(g,n=/a/,"a"),o(g,i,"a"),0!==n.lastIndex||0!==i.lastIndex),E=c.BROKEN_CARET,A=void 0!==/()??/.exec("")[1];(N||A||E||m||d)&&(y=function(e){var t,r,n,i,a,c,l,m=this,d=p(m),S=s(e),M=d.raw;if(M)return M.lastIndex=m.lastIndex,t=o(y,M,S),m.lastIndex=M.lastIndex,t;var C=d.groups,T=E&&m.sticky,D=o(u,m),F=m.source,B=0,O=S;if(T&&(D=v(D,"y",""),-1===b(D,"g")&&(D+="g"),O=w(S,m.lastIndex),m.lastIndex>0&&(!m.multiline||m.multiline&&"\n"!==x(S,m.lastIndex-1))&&(F="(?: "+F+")",O=" "+O,B++),r=new RegExp("^(?:"+F+")",D)),A&&(r=new RegExp("^"+F+"$(?!\\s)",D)),N&&(n=m.lastIndex),i=o(g,T?r:m,O),T?i?(i.input=w(i.input,B),i[0]=w(i[0],B),i.index=m.lastIndex,m.lastIndex+=i[0].length):m.lastIndex=0:N&&i&&(m.lastIndex=m.global?i.index+i[0].length:n),A&&i&&i.length>1&&o(h,i[0],r,(function(){for(a=1;a<arguments.length-2;a++)void 0===arguments[a]&&(i[a]=void 0)})),i&&C)for(i.groups=c=f(null),a=0;a<C.length;a++)c[(l=C[a])[0]]=i[l[1]];return i}),e.exports=y},7979:(e,t,r)=>{"use strict";var n=r(8551);e.exports=function(){var e=n(this),t="";return e.hasIndices&&(t+="d"),e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.dotAll&&(t+="s"),e.unicode&&(t+="u"),e.unicodeSets&&(t+="v"),e.sticky&&(t+="y"),t}},1034:(e,t,r)=>{"use strict";var n=r(9565),i=r(9297),o=r(1625),a=r(7979),s=RegExp.prototype;e.exports=function(e){var t=e.flags;return void 0!==t||"flags"in s||i(e,"flags")||!o(s,e)?t:n(a,e)}},8429:(e,t,r)=>{"use strict";var n=r(9039),i=r(4475).RegExp,o=n((function(){var e=i("a","y");return e.lastIndex=2,null!==e.exec("abcd")})),a=o||n((function(){return!i("a","y").sticky})),s=o||n((function(){var e=i("^r","gy");return e.lastIndex=2,null!==e.exec("str")}));e.exports={BROKEN_CARET:s,MISSED_STICKY:a,UNSUPPORTED_Y:o}},3635:(e,t,r)=>{"use strict";var n=r(9039),i=r(4475).RegExp;e.exports=n((function(){var e=i(".","s");return!(e.dotAll&&e.test("\n")&&"s"===e.flags)}))},8814:(e,t,r)=>{"use strict";var n=r(9039),i=r(4475).RegExp;e.exports=n((function(){var e=i("(?<a>b)","g");return"b"!==e.exec("b").groups.a||"bc"!=="b".replace(e,"$<a>c")}))},7750:(e,t,r)=>{"use strict";var n=r(4117),i=TypeError;e.exports=function(e){if(n(e))throw new i("Can't call method on "+e);return e}},3389:(e,t,r)=>{"use strict";var n=r(4475),i=r(3724),o=Object.getOwnPropertyDescriptor;e.exports=function(e){if(!i)return n[e];var t=o(n,e);return t&&t.value}},7633:(e,t,r)=>{"use strict";var n=r(7751),i=r(2106),o=r(8227),a=r(3724),s=o("species");e.exports=function(e){var t=n(e);a&&t&&!t[s]&&i(t,s,{configurable:!0,get:function(){return this}})}},687:(e,t,r)=>{"use strict";var n=r(4913).f,i=r(9297),o=r(8227)("toStringTag");e.exports=function(e,t,r){e&&!r&&(e=e.prototype),e&&!i(e,o)&&n(e,o,{configurable:!0,value:t})}},6119:(e,t,r)=>{"use strict";var n=r(5745),i=r(3392),o=n("keys");e.exports=function(e){return o[e]||(o[e]=i(e))}},7629:(e,t,r)=>{"use strict";var n=r(6395),i=r(4475),o=r(9433),a="__core-js_shared__",s=e.exports=i[a]||o(a,{});(s.versions||(s.versions=[])).push({version:"3.37.1",mode:n?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.37.1/LICENSE",source:"https://github.com/zloirock/core-js"})},5745:(e,t,r)=>{"use strict";var n=r(7629);e.exports=function(e,t){return n[e]||(n[e]=t||{})}},2293:(e,t,r)=>{"use strict";var n=r(8551),i=r(5548),o=r(4117),a=r(8227)("species");e.exports=function(e,t){var r,s=n(e).constructor;return void 0===s||o(r=n(s)[a])?t:i(r)}},8183:(e,t,r)=>{"use strict";var n=r(9504),i=r(1291),o=r(655),a=r(7750),s=n("".charAt),u=n("".charCodeAt),c=n("".slice),l=function(e){return function(t,r){var n,l,f=o(a(t)),p=i(r),m=f.length;return p<0||p>=m?e?"":void 0:(n=u(f,p))<55296||n>56319||p+1===m||(l=u(f,p+1))<56320||l>57343?e?s(f,p):n:e?c(f,p,p+2):l-56320+(n-55296<<10)+65536}};e.exports={codeAt:l(!1),charAt:l(!0)}},4495:(e,t,r)=>{"use strict";var n=r(7388),i=r(9039),o=r(4475).String;e.exports=!!Object.getOwnPropertySymbols&&!i((function(){var e=Symbol("symbol detection");return!o(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},9225:(e,t,r)=>{"use strict";var n,i,o,a,s=r(4475),u=r(8745),c=r(6080),l=r(4901),f=r(9297),p=r(9039),m=r(397),d=r(7680),h=r(4055),g=r(2812),y=r(8119),x=r(9088),b=s.setImmediate,v=s.clearImmediate,w=s.process,N=s.Dispatch,E=s.Function,A=s.MessageChannel,S=s.String,M=0,C={},T="onreadystatechange";p((function(){n=s.location}));var D=function(e){if(f(C,e)){var t=C[e];delete C[e],t()}},F=function(e){return function(){D(e)}},B=function(e){D(e.data)},O=function(e){s.postMessage(S(e),n.protocol+"//"+n.host)};b&&v||(b=function(e){g(arguments.length,1);var t=l(e)?e:E(e),r=d(arguments,1);return C[++M]=function(){u(t,void 0,r)},i(M),M},v=function(e){delete C[e]},x?i=function(e){w.nextTick(F(e))}:N&&N.now?i=function(e){N.now(F(e))}:A&&!y?(a=(o=new A).port2,o.port1.onmessage=B,i=c(a.postMessage,a)):s.addEventListener&&l(s.postMessage)&&!s.importScripts&&n&&"file:"!==n.protocol&&!p(O)?(i=O,s.addEventListener("message",B,!1)):i=T in h("script")?function(e){m.appendChild(h("script"))[T]=function(){m.removeChild(this),D(e)}}:function(e){setTimeout(F(e),0)}),e.exports={set:b,clear:v}},5610:(e,t,r)=>{"use strict";var n=r(1291),i=Math.max,o=Math.min;e.exports=function(e,t){var r=n(e);return r<0?i(r+t,0):o(r,t)}},5397:(e,t,r)=>{"use strict";var n=r(7055),i=r(7750);e.exports=function(e){return n(i(e))}},1291:(e,t,r)=>{"use strict";var n=r(741);e.exports=function(e){var t=+e;return t!=t||0===t?0:n(t)}},8014:(e,t,r)=>{"use strict";var n=r(1291),i=Math.min;e.exports=function(e){var t=n(e);return t>0?i(t,9007199254740991):0}},8981:(e,t,r)=>{"use strict";var n=r(7750),i=Object;e.exports=function(e){return i(n(e))}},2777:(e,t,r)=>{"use strict";var n=r(9565),i=r(34),o=r(757),a=r(5966),s=r(4270),u=r(8227),c=TypeError,l=u("toPrimitive");e.exports=function(e,t){if(!i(e)||o(e))return e;var r,u=a(e,l);if(u){if(void 0===t&&(t="default"),r=n(u,e,t),!i(r)||o(r))return r;throw new c("Can't convert object to primitive value")}return void 0===t&&(t="number"),s(e,t)}},6969:(e,t,r)=>{"use strict";var n=r(2777),i=r(757);e.exports=function(e){var t=n(e,"string");return i(t)?t:t+""}},2140:(e,t,r)=>{"use strict";var n={};n[r(8227)("toStringTag")]="z",e.exports="[object z]"===String(n)},655:(e,t,r)=>{"use strict";var n=r(6955),i=String;e.exports=function(e){if("Symbol"===n(e))throw new TypeError("Cannot convert a Symbol value to a string");return i(e)}},6823:e=>{"use strict";var t=String;e.exports=function(e){try{return t(e)}catch(e){return"Object"}}},3392:(e,t,r)=>{"use strict";var n=r(9504),i=0,o=Math.random(),a=n(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+a(++i+o,36)}},7040:(e,t,r)=>{"use strict";var n=r(4495);e.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},8686:(e,t,r)=>{"use strict";var n=r(3724),i=r(9039);e.exports=n&&i((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},2812:e=>{"use strict";var t=TypeError;e.exports=function(e,r){if(e<r)throw new t("Not enough arguments");return e}},8622:(e,t,r)=>{"use strict";var n=r(4475),i=r(4901),o=n.WeakMap;e.exports=i(o)&&/native code/.test(String(o))},8227:(e,t,r)=>{"use strict";var n=r(4475),i=r(5745),o=r(9297),a=r(3392),s=r(4495),u=r(7040),c=n.Symbol,l=i("wks"),f=u?c.for||c:c&&c.withoutSetter||a;e.exports=function(e){return o(l,e)||(l[e]=s&&o(c,e)?c[e]:f("Symbol."+e)),l[e]}},4423:(e,t,r)=>{"use strict";var n=r(6518),i=r(9617).includes,o=r(9039),a=r(6469);n({target:"Array",proto:!0,forced:o((function(){return!Array(1).includes()}))},{includes:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),a("includes")},2712:(e,t,r)=>{"use strict";var n=r(6518),i=r(926).left,o=r(4598),a=r(7388);n({target:"Array",proto:!0,forced:!r(9088)&&a>79&&a<83||!o("reduce")},{reduce:function(e){var t=arguments.length;return i(this,e,t,t>1?arguments[1]:void 0)}})},6910:(e,t,r)=>{"use strict";var n=r(6518),i=r(9504),o=r(9306),a=r(8981),s=r(6198),u=r(4606),c=r(655),l=r(9039),f=r(4488),p=r(4598),m=r(8834),d=r(3202),h=r(7388),g=r(9160),y=[],x=i(y.sort),b=i(y.push),v=l((function(){y.sort(void 0)})),w=l((function(){y.sort(null)})),N=p("sort"),E=!l((function(){if(h)return h<70;if(!(m&&m>3)){if(d)return!0;if(g)return g<603;var e,t,r,n,i="";for(e=65;e<76;e++){switch(t=String.fromCharCode(e),e){case 66:case 69:case 70:case 72:r=3;break;case 68:case 71:r=4;break;default:r=2}for(n=0;n<47;n++)y.push({k:t+n,v:r})}for(y.sort((function(e,t){return t.v-e.v})),n=0;n<y.length;n++)t=y[n].k.charAt(0),i.charAt(i.length-1)!==t&&(i+=t);return"DGBEFHACIJK"!==i}}));n({target:"Array",proto:!0,forced:v||!w||!N||!E},{sort:function(e){void 0!==e&&o(e);var t=a(this);if(E)return void 0===e?x(t):x(t,e);var r,n,i=[],l=s(t);for(n=0;n<l;n++)n in t&&b(i,t[n]);for(f(i,function(e){return function(t,r){return void 0===r?-1:void 0===t?1:void 0!==e?+e(t,r)||0:c(t)>c(r)?1:-1}}(e)),r=s(i),n=0;n<r;)t[n]=i[n++];for(;n<l;)u(t,n++);return t}})},3110:(e,t,r)=>{"use strict";var n=r(6518),i=r(7751),o=r(8745),a=r(9565),s=r(9504),u=r(9039),c=r(4901),l=r(757),f=r(7680),p=r(6933),m=r(4495),d=String,h=i("JSON","stringify"),g=s(/./.exec),y=s("".charAt),x=s("".charCodeAt),b=s("".replace),v=s(1..toString),w=/[\uD800-\uDFFF]/g,N=/^[\uD800-\uDBFF]$/,E=/^[\uDC00-\uDFFF]$/,A=!m||u((function(){var e=i("Symbol")("stringify detection");return"[null]"!==h([e])||"{}"!==h({a:e})||"{}"!==h(Object(e))})),S=u((function(){return'"\\udf06\\ud834"'!==h("\udf06\ud834")||'"\\udead"'!==h("\udead")})),M=function(e,t){var r=f(arguments),n=p(t);if(c(n)||void 0!==e&&!l(e))return r[1]=function(e,t){if(c(n)&&(t=a(n,this,d(e),t)),!l(t))return t},o(h,null,r)},C=function(e,t,r){var n=y(r,t-1),i=y(r,t+1);return g(N,e)&&!g(E,i)||g(E,e)&&!g(N,n)?"\\u"+v(x(e,0),16):e};h&&n({target:"JSON",stat:!0,arity:3,forced:A||S},{stringify:function(e,t,r){var n=f(arguments),i=o(A?M:h,null,n);return S&&"string"==typeof i?b(i,w,C):i}})},6499:(e,t,r)=>{"use strict";var n=r(6518),i=r(9565),o=r(9306),a=r(6043),s=r(1103),u=r(2652);n({target:"Promise",stat:!0,forced:r(537)},{all:function(e){var t=this,r=a.f(t),n=r.resolve,c=r.reject,l=s((function(){var r=o(t.resolve),a=[],s=0,l=1;u(e,(function(e){var o=s++,u=!1;l++,i(r,t,e).then((function(e){u||(u=!0,a[o]=e,--l||n(a))}),c)})),--l||n(a)}));return l.error&&c(l.value),r.promise}})},2003:(e,t,r)=>{"use strict";var n=r(6518),i=r(6395),o=r(916).CONSTRUCTOR,a=r(550),s=r(7751),u=r(4901),c=r(6840),l=a&&a.prototype;if(n({target:"Promise",proto:!0,forced:o,real:!0},{catch:function(e){return this.then(void 0,e)}}),!i&&u(a)){var f=s("Promise").prototype.catch;l.catch!==f&&c(l,"catch",f,{unsafe:!0})}},436:(e,t,r)=>{"use strict";var n,i,o,a=r(6518),s=r(6395),u=r(9088),c=r(4475),l=r(9565),f=r(6840),p=r(2967),m=r(687),d=r(7633),h=r(9306),g=r(4901),y=r(34),x=r(679),b=r(2293),v=r(9225).set,w=r(1955),N=r(3138),E=r(1103),A=r(8265),S=r(1181),M=r(550),C=r(916),T=r(6043),D="Promise",F=C.CONSTRUCTOR,B=C.REJECTION_EVENT,O=C.SUBCLASSING,_=S.getterFor(D),z=S.set,I=M&&M.prototype,k=M,q=I,R=c.TypeError,P=c.document,j=c.process,U=T.f,L=U,$=!!(P&&P.createEvent&&c.dispatchEvent),H="unhandledrejection",G=function(e){var t;return!(!y(e)||!g(t=e.then))&&t},Z=function(e,t){var r,n,i,o=t.value,a=1===t.state,s=a?e.ok:e.fail,u=e.resolve,c=e.reject,f=e.domain;try{s?(a||(2===t.rejection&&X(t),t.rejection=1),!0===s?r=o:(f&&f.enter(),r=s(o),f&&(f.exit(),i=!0)),r===e.promise?c(new R("Promise-chain cycle")):(n=G(r))?l(n,r,u,c):u(r)):c(o)}catch(e){f&&!i&&f.exit(),c(e)}},V=function(e,t){e.notified||(e.notified=!0,w((function(){for(var r,n=e.reactions;r=n.get();)Z(r,e);e.notified=!1,t&&!e.rejection&&Y(e)})))},W=function(e,t,r){var n,i;$?((n=P.createEvent("Event")).promise=t,n.reason=r,n.initEvent(e,!1,!0),c.dispatchEvent(n)):n={promise:t,reason:r},!B&&(i=c["on"+e])?i(n):e===H&&N("Unhandled promise rejection",r)},Y=function(e){l(v,c,(function(){var t,r=e.facade,n=e.value;if(J(e)&&(t=E((function(){u?j.emit("unhandledRejection",n,r):W(H,r,n)})),e.rejection=u||J(e)?2:1,t.error))throw t.value}))},J=function(e){return 1!==e.rejection&&!e.parent},X=function(e){l(v,c,(function(){var t=e.facade;u?j.emit("rejectionHandled",t):W("rejectionhandled",t,e.value)}))},Q=function(e,t,r){return function(n){e(t,n,r)}},K=function(e,t,r){e.done||(e.done=!0,r&&(e=r),e.value=t,e.state=2,V(e,!0))},ee=function(e,t,r){if(!e.done){e.done=!0,r&&(e=r);try{if(e.facade===t)throw new R("Promise can't be resolved itself");var n=G(t);n?w((function(){var r={done:!1};try{l(n,t,Q(ee,r,e),Q(K,r,e))}catch(t){K(r,t,e)}})):(e.value=t,e.state=1,V(e,!1))}catch(t){K({done:!1},t,e)}}};if(F&&(q=(k=function(e){x(this,q),h(e),l(n,this);var t=_(this);try{e(Q(ee,t),Q(K,t))}catch(e){K(t,e)}}).prototype,(n=function(e){z(this,{type:D,done:!1,notified:!1,parent:!1,reactions:new A,rejection:!1,state:0,value:void 0})}).prototype=f(q,"then",(function(e,t){var r=_(this),n=U(b(this,k));return r.parent=!0,n.ok=!g(e)||e,n.fail=g(t)&&t,n.domain=u?j.domain:void 0,0===r.state?r.reactions.add(n):w((function(){Z(n,r)})),n.promise})),i=function(){var e=new n,t=_(e);this.promise=e,this.resolve=Q(ee,t),this.reject=Q(K,t)},T.f=U=function(e){return e===k||void 0===e?new i(e):L(e)},!s&&g(M)&&I!==Object.prototype)){o=I.then,O||f(I,"then",(function(e,t){var r=this;return new k((function(e,t){l(o,r,e,t)})).then(e,t)}),{unsafe:!0});try{delete I.constructor}catch(e){}p&&p(I,q)}a({global:!0,constructor:!0,wrap:!0,forced:F},{Promise:k}),m(k,D,!1,!0),d(D)},3362:(e,t,r)=>{"use strict";r(436),r(6499),r(2003),r(7743),r(1481),r(280)},7743:(e,t,r)=>{"use strict";var n=r(6518),i=r(9565),o=r(9306),a=r(6043),s=r(1103),u=r(2652);n({target:"Promise",stat:!0,forced:r(537)},{race:function(e){var t=this,r=a.f(t),n=r.reject,c=s((function(){var a=o(t.resolve);u(e,(function(e){i(a,t,e).then(r.resolve,n)}))}));return c.error&&n(c.value),r.promise}})},1481:(e,t,r)=>{"use strict";var n=r(6518),i=r(6043);n({target:"Promise",stat:!0,forced:r(916).CONSTRUCTOR},{reject:function(e){var t=i.f(this);return(0,t.reject)(e),t.promise}})},280:(e,t,r)=>{"use strict";var n=r(6518),i=r(7751),o=r(6395),a=r(550),s=r(916).CONSTRUCTOR,u=r(3438),c=i("Promise"),l=o&&!s;n({target:"Promise",stat:!0,forced:o||s},{resolve:function(e){return u(l&&this===c?a:this,e)}})},4864:(e,t,r)=>{"use strict";var n=r(3724),i=r(4475),o=r(9504),a=r(2796),s=r(3167),u=r(6699),c=r(2360),l=r(8480).f,f=r(1625),p=r(788),m=r(655),d=r(1034),h=r(8429),g=r(1056),y=r(6840),x=r(9039),b=r(9297),v=r(1181).enforce,w=r(7633),N=r(8227),E=r(3635),A=r(8814),S=N("match"),M=i.RegExp,C=M.prototype,T=i.SyntaxError,D=o(C.exec),F=o("".charAt),B=o("".replace),O=o("".indexOf),_=o("".slice),z=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,I=/a/g,k=/a/g,q=new M(I)!==I,R=h.MISSED_STICKY,P=h.UNSUPPORTED_Y;if(a("RegExp",n&&(!q||R||E||A||x((function(){return k[S]=!1,M(I)!==I||M(k)===k||"/a/i"!==String(M(I,"i"))}))))){for(var j=function(e,t){var r,n,i,o,a,l,h=f(C,this),g=p(e),y=void 0===t,x=[],w=e;if(!h&&g&&y&&e.constructor===j)return e;if((g||f(C,e))&&(e=e.source,y&&(t=d(w))),e=void 0===e?"":m(e),t=void 0===t?"":m(t),w=e,E&&"dotAll"in I&&(n=!!t&&O(t,"s")>-1)&&(t=B(t,/s/g,"")),r=t,R&&"sticky"in I&&(i=!!t&&O(t,"y")>-1)&&P&&(t=B(t,/y/g,"")),A&&(o=function(e){for(var t,r=e.length,n=0,i="",o=[],a=c(null),s=!1,u=!1,l=0,f="";n<=r;n++){if("\\"===(t=F(e,n)))t+=F(e,++n);else if("]"===t)s=!1;else if(!s)switch(!0){case"["===t:s=!0;break;case"("===t:D(z,_(e,n+1))&&(n+=2,u=!0),i+=t,l++;continue;case">"===t&&u:if(""===f||b(a,f))throw new T("Invalid capture group name");a[f]=!0,o[o.length]=[f,l],u=!1,f="";continue}u?f+=t:i+=t}return[i,o]}(e),e=o[0],x=o[1]),a=s(M(e,t),h?this:C,j),(n||i||x.length)&&(l=v(a),n&&(l.dotAll=!0,l.raw=j(function(e){for(var t,r=e.length,n=0,i="",o=!1;n<=r;n++)"\\"!==(t=F(e,n))?o||"."!==t?("["===t?o=!0:"]"===t&&(o=!1),i+=t):i+="[\\s\\S]":i+=t+F(e,++n);return i}(e),r)),i&&(l.sticky=!0),x.length&&(l.groups=x)),e!==w)try{u(a,"source",""===w?"(?:)":w)}catch(e){}return a},U=l(M),L=0;U.length>L;)g(j,M,U[L++]);C.constructor=j,j.prototype=C,y(i,"RegExp",j,{constructor:!0})}w("RegExp")},7465:(e,t,r)=>{"use strict";var n=r(3724),i=r(3635),o=r(4576),a=r(2106),s=r(1181).get,u=RegExp.prototype,c=TypeError;n&&i&&a(u,"dotAll",{configurable:!0,get:function(){if(this!==u){if("RegExp"===o(this))return!!s(this).dotAll;throw new c("Incompatible receiver, RegExp required")}}})},7495:(e,t,r)=>{"use strict";var n=r(6518),i=r(7323);n({target:"RegExp",proto:!0,forced:/./.exec!==i},{exec:i})},5440:(e,t,r)=>{"use strict";var n=r(8745),i=r(9565),o=r(9504),a=r(9228),s=r(9039),u=r(8551),c=r(4901),l=r(4117),f=r(1291),p=r(8014),m=r(655),d=r(7750),h=r(7829),g=r(5966),y=r(2478),x=r(6682),b=r(8227)("replace"),v=Math.max,w=Math.min,N=o([].concat),E=o([].push),A=o("".indexOf),S=o("".slice),M="$0"==="a".replace(/./,"$0"),C=!!/./[b]&&""===/./[b]("a","$0");a("replace",(function(e,t,r){var o=C?"$":"$0";return[function(e,r){var n=d(this),o=l(e)?void 0:g(e,b);return o?i(o,e,n,r):i(t,m(n),e,r)},function(e,i){var a=u(this),s=m(e);if("string"==typeof i&&-1===A(i,o)&&-1===A(i,"$<")){var l=r(t,a,s,i);if(l.done)return l.value}var d=c(i);d||(i=m(i));var g,b=a.global;b&&(g=a.unicode,a.lastIndex=0);for(var M,C=[];null!==(M=x(a,s))&&(E(C,M),b);)""===m(M[0])&&(a.lastIndex=h(s,p(a.lastIndex),g));for(var T,D="",F=0,B=0;B<C.length;B++){for(var O,_=m((M=C[B])[0]),z=v(w(f(M.index),s.length),0),I=[],k=1;k<M.length;k++)E(I,void 0===(T=M[k])?T:String(T));var q=M.groups;if(d){var R=N([_],I,z,s);void 0!==q&&E(R,q),O=m(n(i,void 0,R))}else O=y(_,s,z,I,q,i);z>=F&&(D+=S(s,F,z)+O,F=z+_.length)}return D+S(s,F)}]}),!!s((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$<a>")}))||!M||C)},9463:(e,t,r)=>{"use strict";var n=r(6518),i=r(3724),o=r(4475),a=r(9504),s=r(9297),u=r(4901),c=r(1625),l=r(655),f=r(2106),p=r(7740),m=o.Symbol,d=m&&m.prototype;if(i&&u(m)&&(!("description"in d)||void 0!==m().description)){var h={},g=function(){var e=arguments.length<1||void 0===arguments[0]?void 0:l(arguments[0]),t=c(d,this)?new m(e):void 0===e?m():m(e);return""===e&&(h[t]=!0),t};p(g,m),g.prototype=d,d.constructor=g;var y="Symbol(description detection)"===String(m("description detection")),x=a(d.valueOf),b=a(d.toString),v=/^Symbol\((.*)\)[^)]+$/,w=a("".replace),N=a("".slice);f(d,"description",{configurable:!0,get:function(){var e=x(this);if(s(h,e))return"";var t=b(e),r=y?N(t,7,-1):w(t,v,"$1");return""===r?void 0:r}}),n({global:!0,constructor:!0,forced:!0},{Symbol:g})}},2369:function(e){e.exports=function(){"use strict";function e(){return!0}function t(){return!1}function r(){}const n="Argument is not a typed-function.";return function i(){function o(e){return"object"==typeof e&&null!==e&&e.constructor===Object}const a=[{name:"number",test:function(e){return"number"==typeof e}},{name:"string",test:function(e){return"string"==typeof e}},{name:"boolean",test:function(e){return"boolean"==typeof e}},{name:"Function",test:function(e){return"function"==typeof e}},{name:"Array",test:Array.isArray},{name:"Date",test:function(e){return e instanceof Date}},{name:"RegExp",test:function(e){return e instanceof RegExp}},{name:"Object",test:o},{name:"null",test:function(e){return null===e}},{name:"undefined",test:function(e){return void 0===e}}],s={name:"any",test:e,isAny:!0};let u,c,l=0,f={createCount:0};function p(e){const t=u.get(e);if(t)return t;let r='Unknown type "'+e+'"';const n=e.toLowerCase();let i;for(i of c)if(i.toLowerCase()===n){r+='. Did you mean "'+i+'" ?';break}throw new TypeError(r)}function m(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"any";const r=t?p(t).index:c.length,n=[];for(let t=0;t<e.length;++t){if(!e[t]||"string"!=typeof e[t].name||"function"!=typeof e[t].test)throw new TypeError("Object with properties {name: string, test: function} expected");const i=e[t].name;if(u.has(i))throw new TypeError('Duplicate type name "'+i+'"');n.push(i),u.set(i,{name:i,test:e[t].test,isAny:e[t].isAny,index:r+t,conversionsTo:[]})}const i=c.slice(r);c=c.slice(0,r).concat(n).concat(i);for(let e=r+n.length;e<c.length;++e)u.get(c[e]).index=e}function d(){u=new Map,c=[],l=0,m([s],!1)}function h(e){const t=c.filter((t=>{const r=u.get(t);return!r.isAny&&r.test(e)}));return t.length?t:["any"]}function g(e){return e&&"function"==typeof e&&"_typedFunctionData"in e}function y(e,t,r){if(!g(e))throw new TypeError(n);const i=r&&r.exact,o=N(Array.isArray(t)?t.join(","):t),a=x(o);if(!i||a in e.signatures){const t=e._typedFunctionData.signatureMap.get(a);if(t)return t}const s=o.length;let u,c;if(i){let t;for(t in u=[],e.signatures)u.push(e._typedFunctionData.signatureMap.get(t))}else u=e._typedFunctionData.signatures;for(let e=0;e<s;++e){const t=o[e],r=[];let n;for(n of u){const i=M(n.params,e);if(i&&(!t.restParam||i.restParam)){if(!i.hasAny){const e=w(i);if(t.types.some((t=>!e.has(t.name))))continue}r.push(n)}}if(u=r,0===u.length)break}for(c of u)if(c.params.length<=s)return c;throw new TypeError("Signature not found (signature: "+(e.name||"unnamed")+"("+x(o,", ")+"))")}function x(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:",";return e.map((e=>e.name)).join(t)}function b(e){const t=0===e.indexOf("..."),r=(t?e.length>3?e.slice(3):"any":e).split("|").map((e=>p(e.trim())));let n=!1,i=t?"...":"";return{types:r.map((function(e){return n=e.isAny||n,i+=e.name+"|",{name:e.name,typeIndex:e.index,test:e.test,isAny:e.isAny,conversion:null,conversionIndex:-1}})),name:i.slice(0,-1),hasAny:n,hasConversion:!1,restParam:t}}function v(e){const t=function(e){if(0===e.length)return[];const t=e.map(p);e.length>1&&t.sort(((e,t)=>e.index-t.index));let r=t[0].conversionsTo;if(1===e.length)return r;r=r.concat([]);const n=new Set(e);for(let e=1;e<t.length;++e){let i;for(i of t[e].conversionsTo)n.has(i.from)||(r.push(i),n.add(i.from))}return r}(e.types.map((e=>e.name)));let r=e.hasAny,n=e.name;const i=t.map((function(e){const t=p(e.from);return r=t.isAny||r,n+="|"+e.from,{name:e.from,typeIndex:t.index,test:t.test,isAny:t.isAny,conversion:e,conversionIndex:e.index}}));return{types:e.types.concat(i),name:n,hasAny:r,hasConversion:i.length>0,restParam:e.restParam}}function w(e){return e.typeSet||(e.typeSet=new Set,e.types.forEach((t=>e.typeSet.add(t.name)))),e.typeSet}function N(e){const t=[];if("string"!=typeof e)throw new TypeError("Signatures must be strings");const r=e.trim();if(""===r)return t;const n=r.split(",");for(let e=0;e<n.length;++e){const r=b(n[e].trim());if(r.restParam&&e!==n.length-1)throw new SyntaxError('Unexpected rest parameter "'+n[e]+'": only allowed for the last parameter');if(0===r.types.length)return null;t.push(r)}return t}function E(e){const t=H(e);return!!t&&t.restParam}function A(t){if(t&&0!==t.types.length){if(1===t.types.length)return p(t.types[0].name).test;if(2===t.types.length){const e=p(t.types[0].name).test,r=p(t.types[1].name).test;return function(t){return e(t)||r(t)}}{const e=t.types.map((function(e){return p(e.name).test}));return function(t){for(let r=0;r<e.length;r++)if(e[r](t))return!0;return!1}}}return e}function S(e){let t,r,n;if(E(e)){t=$(e).map(A);const r=t.length,n=A(H(e)),i=function(e){for(let t=r;t<e.length;t++)if(!n(e[t]))return!1;return!0};return function(e){for(let r=0;r<t.length;r++)if(!t[r](e[r]))return!1;return i(e)&&e.length>=r+1}}return 0===e.length?function(e){return 0===e.length}:1===e.length?(r=A(e[0]),function(e){return r(e[0])&&1===e.length}):2===e.length?(r=A(e[0]),n=A(e[1]),function(e){return r(e[0])&&n(e[1])&&2===e.length}):(t=e.map(A),function(e){for(let r=0;r<t.length;r++)if(!t[r](e[r]))return!1;return e.length===t.length})}function M(e,t){return t<e.length?e[t]:E(e)?H(e):null}function C(e,t){const r=M(e,t);return r?w(r):new Set}function T(e){return null===e.conversion||void 0===e.conversion}function D(e,t){const r=new Set;return e.forEach((e=>{const n=C(e.params,t);let i;for(i of n)r.add(i)})),r.has("any")?["any"]:Array.from(r)}function F(e,t,r){let n,i;const o=e||"unnamed";let a,s=r;for(a=0;a<t.length;a++){const e=[];if(s.forEach((r=>{const n=A(M(r.params,a));(a<r.params.length||E(r.params))&&n(t[a])&&e.push(r)})),0===e.length){if(i=D(s,a),i.length>0){const e=h(t[a]);return n=new TypeError("Unexpected type of argument in function "+o+" (expected: "+i.join(" or ")+", actual: "+e.join(" | ")+", index: "+a+")"),n.data={category:"wrongType",fn:o,index:a,actual:e,expected:i},n}}else s=e}const u=s.map((function(e){return E(e.params)?1/0:e.params.length}));if(t.length<Math.min.apply(null,u))return i=D(s,a),n=new TypeError("Too few arguments in function "+o+" (expected: "+i.join(" or ")+", index: "+t.length+")"),n.data={category:"tooFewArgs",fn:o,index:t.length,expected:i},n;const c=Math.max.apply(null,u);if(t.length>c)return n=new TypeError("Too many arguments in function "+o+" (expected: "+c+", actual: "+t.length+")"),n.data={category:"tooManyArgs",fn:o,index:t.length,expectedLength:c},n;const l=[];for(let e=0;e<t.length;++e)l.push(h(t[e]).join("|"));return n=new TypeError('Arguments of type "'+l.join(", ")+'" do not match any of the defined signatures of function '+o+"."),n.data={category:"mismatch",actual:l},n}function B(e){let t=c.length+1;for(let r=0;r<e.types.length;r++)T(e.types[r])&&(t=Math.min(t,e.types[r].typeIndex));return t}function O(e){let t=l+1;for(let r=0;r<e.types.length;r++)T(e.types[r])||(t=Math.min(t,e.types[r].conversionIndex));return t}function _(e,t){if(e.hasAny){if(!t.hasAny)return 1}else if(t.hasAny)return-1;if(e.restParam){if(!t.restParam)return 1}else if(t.restParam)return-1;if(e.hasConversion){if(!t.hasConversion)return 1}else if(t.hasConversion)return-1;const r=B(e)-B(t);if(r<0)return-1;if(r>0)return 1;const n=O(e)-O(t);return n<0?-1:n>0?1:0}function z(e,t){const r=e.params,n=t.params,i=H(r),o=H(n),a=E(r),s=E(n);if(a&&i.hasAny){if(!s||!o.hasAny)return 1}else if(s&&o.hasAny)return-1;let u,c=0,l=0;for(u of r)u.hasAny&&++c,u.hasConversion&&++l;let f=0,p=0;for(u of n)u.hasAny&&++f,u.hasConversion&&++p;if(c!==f)return c-f;if(a&&i.hasConversion){if(!s||!o.hasConversion)return 1}else if(s&&o.hasConversion)return-1;if(l!==p)return l-p;if(a){if(!s)return 1}else if(s)return-1;const m=(r.length-n.length)*(a?-1:1);if(0!==m)return m;const d=[];let h,g=0;for(let e=0;e<r.length;++e){const t=_(r[e],n[e]);d.push(t),g+=t}if(0!==g)return g;for(h of d)if(0!==h)return h;return 0}function I(e,t){let r=t;if(e.some((e=>e.hasConversion))){const n=E(e),i=e.map(k);r=function(){const e=[],r=n?arguments.length-1:arguments.length;for(let t=0;t<r;t++)e[t]=i[t](arguments[t]);return n&&(e[r]=arguments[r].map(i[r])),t.apply(this,e)}}let n=r;if(E(e)){const t=e.length-1;n=function(){return r.apply(this,G(arguments,0,t).concat([G(arguments,t)]))}}return n}function k(e){let t,r,n,i;const o=[],a=[];switch(e.types.forEach((function(e){e.conversion&&(o.push(p(e.conversion.from).test),a.push(e.conversion.convert))})),a.length){case 0:return function(e){return e};case 1:return t=o[0],n=a[0],function(e){return t(e)?n(e):e};case 2:return t=o[0],r=o[1],n=a[0],i=a[1],function(e){return t(e)?n(e):r(e)?i(e):e};default:return function(e){for(let t=0;t<a.length;t++)if(o[t](e))return a[t](e);return e}}}function q(e){return function e(t,r,n){if(r<t.length){const a=t[r];let s=[];if(a.restParam){const e=a.types.filter(T);e.length<a.types.length&&s.push({types:e,name:"..."+e.map((e=>e.name)).join("|"),hasAny:e.some((e=>e.isAny)),hasConversion:!1,restParam:!0}),s.push(a)}else s=a.types.map((function(e){return{types:[e],name:e.name,hasAny:e.isAny,hasConversion:e.conversion,restParam:!1}}));return i=s,o=function(i){return e(t,r+1,n.concat([i]))},Array.prototype.concat.apply([],i.map(o))}var i,o;return[n]}(e,0,[])}function R(e,t){const r=Math.max(e.length,t.length);for(let n=0;n<r;n++){const r=C(e,n),i=C(t,n);let o,a=!1;for(o of i)if(r.has(o)){a=!0;break}if(!a)return!1}const n=e.length,i=t.length,o=E(e),a=E(t);return o?a?n===i:i>=n:a?n>=i:n===i}function P(e,t,r){const n=[];let i;for(i of e){let e=r[i];if("number"!=typeof e)throw new TypeError('No definition for referenced signature "'+i+'"');if(e=t[e],"function"!=typeof e)return!1;n.push(e)}return n}function j(e,t,r){const n=function(e){return e.map((e=>Y(e)?V(e.referToSelf.callback):W(e)?Z(e.referTo.references,e.referTo.callback):e))}(e),i=new Array(n.length).fill(!1);let o=!0;for(;o;){o=!1;let e=!0;for(let a=0;a<n.length;++a){if(i[a])continue;const s=n[a];if(Y(s))n[a]=s.referToSelf.callback(r),n[a].referToSelf=s.referToSelf,i[a]=!0,e=!1;else if(W(s)){const r=P(s.referTo.references,n,t);r?(n[a]=s.referTo.callback.apply(this,r),n[a].referTo=s.referTo,i[a]=!0,e=!1):o=!0}}if(e&&o)throw new SyntaxError("Circular reference detected in resolving typed.referTo")}return n}function U(e,n){if(f.createCount++,0===Object.keys(n).length)throw new SyntaxError("No signatures provided");f.warnAgainstDeprecatedThis&&function(e){const t=/\bthis(\(|\.signatures\b)/;Object.keys(e).forEach((r=>{const n=e[r];if(t.test(n.toString()))throw new SyntaxError("Using `this` to self-reference a function is deprecated since typed-function@3. Use typed.referTo and typed.referToSelf instead.")}))}(n);const i=[],o=[],a={},s=[];let u;for(u in n){if(!Object.prototype.hasOwnProperty.call(n,u))continue;const e=N(u);if(!e)continue;i.forEach((function(t){if(R(t,e))throw new TypeError('Conflicting signatures "'+x(t)+'" and "'+x(e)+'".')})),i.push(e);const t=o.length;o.push(n[u]);const r=e.map(v);let c;for(c of q(r)){const e=x(c);s.push({params:c,name:e,fn:t}),c.every((e=>!e.hasConversion))&&(a[e]=t)}}s.sort(z);const c=j(o,a,se);let l;for(l in a)Object.prototype.hasOwnProperty.call(a,l)&&(a[l]=c[a[l]]);const p=[],m=new Map;for(l of s)m.has(l.name)||(l.fn=c[l.fn],p.push(l),m.set(l.name,l));const d=p[0]&&p[0].params.length<=2&&!E(p[0].params),h=p[1]&&p[1].params.length<=2&&!E(p[1].params),g=p[2]&&p[2].params.length<=2&&!E(p[2].params),y=p[3]&&p[3].params.length<=2&&!E(p[3].params),b=p[4]&&p[4].params.length<=2&&!E(p[4].params),w=p[5]&&p[5].params.length<=2&&!E(p[5].params),M=d&&h&&g&&y&&b&&w;for(let e=0;e<p.length;++e)p[e].test=S(p[e].params);const C=d?A(p[0].params[0]):t,T=h?A(p[1].params[0]):t,D=g?A(p[2].params[0]):t,F=y?A(p[3].params[0]):t,B=b?A(p[4].params[0]):t,O=w?A(p[5].params[0]):t,_=d?A(p[0].params[1]):t,k=h?A(p[1].params[1]):t,P=g?A(p[2].params[1]):t,U=y?A(p[3].params[1]):t,L=b?A(p[4].params[1]):t,$=w?A(p[5].params[1]):t;for(let e=0;e<p.length;++e)p[e].implementation=I(p[e].params,p[e].fn);const H=d?p[0].implementation:r,G=h?p[1].implementation:r,Z=g?p[2].implementation:r,V=y?p[3].implementation:r,W=b?p[4].implementation:r,Y=w?p[5].implementation:r,J=d?p[0].params.length:-1,X=h?p[1].params.length:-1,Q=g?p[2].params.length:-1,K=y?p[3].params.length:-1,ee=b?p[4].params.length:-1,te=w?p[5].params.length:-1,re=M?6:0,ne=p.length,ie=p.map((e=>e.test)),oe=p.map((e=>e.implementation)),ae=function(){for(let e=re;e<ne;e++)if(ie[e](arguments))return oe[e].apply(this,arguments);return f.onMismatch(e,arguments,p)};function se(e,t){return arguments.length===J&&C(e)&&_(t)?H.apply(this,arguments):arguments.length===X&&T(e)&&k(t)?G.apply(this,arguments):arguments.length===Q&&D(e)&&P(t)?Z.apply(this,arguments):arguments.length===K&&F(e)&&U(t)?V.apply(this,arguments):arguments.length===ee&&B(e)&&L(t)?W.apply(this,arguments):arguments.length===te&&O(e)&&$(t)?Y.apply(this,arguments):ae.apply(this,arguments)}try{Object.defineProperty(se,"name",{value:e})}catch(e){}return se.signatures=a,se._typedFunctionData={signatures:p,signatureMap:m},se}function L(e,t,r){throw F(e,t,r)}function $(e){return G(e,0,e.length-1)}function H(e){return e[e.length-1]}function G(e,t,r){return Array.prototype.slice.call(e,t,r)}function Z(e,t){return{referTo:{references:e,callback:t}}}function V(e){if("function"!=typeof e)throw new TypeError("Callback function expected as first argument");return{referToSelf:{callback:e}}}function W(e){return e&&"object"==typeof e.referTo&&Array.isArray(e.referTo.references)&&"function"==typeof e.referTo.callback}function Y(e){return e&&"object"==typeof e.referToSelf&&"function"==typeof e.referToSelf.callback}function J(e,t){if(!e)return t;if(t&&t!==e){const r=new Error("Function names do not match (expected: "+e+", actual: "+t+")");throw r.data={actual:t,expected:e},r}return e}function X(e){let t;for(const r in e)Object.prototype.hasOwnProperty.call(e,r)&&(g(e[r])||"string"==typeof e[r].signature)&&(t=J(t,e[r].name));return t}function Q(e,t){let r;for(r in t)if(Object.prototype.hasOwnProperty.call(t,r)){if(r in e&&t[r]!==e[r]){const n=new Error('Signature "'+r+'" is defined twice');throw n.data={signature:r,sourceFunction:t[r],destFunction:e[r]},n}e[r]=t[r]}}d(),m(a);const K=f;function ee(e){if(!e||"string"!=typeof e.from||"string"!=typeof e.to||"function"!=typeof e.convert)throw new TypeError("Object with properties {from: string, to: string, convert: function} expected");if(e.to===e.from)throw new SyntaxError('Illegal to define conversion from "'+e.from+'" to itself.')}return f=function(e){const t="string"==typeof e;let r=t?e:"";const n={};for(let e=t?1:0;e<arguments.length;++e){const i=arguments[e];let a,s={};if("function"==typeof i?(a=i.name,"string"==typeof i.signature?s[i.signature]=i:g(i)&&(s=i.signatures)):o(i)&&(s=i,t||(a=X(i))),0===Object.keys(s).length){const t=new TypeError("Argument to 'typed' at index "+e+" is not a (typed) function, nor an object with signatures as keys and functions as values.");throw t.data={index:e,argument:i},t}t||(r=J(r,a)),Q(n,s)}return U(r||"",n)},f.create=i,f.createCount=K.createCount,f.onMismatch=L,f.throwMismatchError=L,f.createError=F,f.clear=d,f.clearConversions=function(){let e;for(e of c)u.get(e).conversionsTo=[];l=0},f.addTypes=m,f._findType=p,f.referTo=function(){const e=$(arguments).map((e=>x(N(e)))),t=H(arguments);if("function"!=typeof t)throw new TypeError("Callback function expected as last argument");return Z(e,t)},f.referToSelf=V,f.convert=function(e,t){const r=p(t);if(r.test(e))return e;const n=r.conversionsTo;if(0===n.length)throw new Error("There are no conversions to "+t+" defined.");for(let t=0;t<n.length;t++)if(p(n[t].from).test(e))return n[t].convert(e);throw new Error("Cannot convert "+e+" to "+t)},f.findSignature=y,f.find=function(e,t,r){return y(e,t,r).implementation},f.isTypedFunction=g,f.warnAgainstDeprecatedThis=!0,f.addType=function(e,t){let r="any";!1!==t&&u.has("Object")&&(r="Object"),f.addTypes([e],r)},f.addConversion=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{override:!1};ee(e);const r=p(e.to),n=r.conversionsTo.find((t=>t.from===e.from));if(n){if(!t||!t.override)throw new Error('There is already a conversion from "'+e.from+'" to "'+r.name+'"');f.removeConversion({from:n.from,to:e.to,convert:n.convert})}r.conversionsTo.push({from:e.from,convert:e.convert,index:l++})},f.addConversions=function(e,t){e.forEach((e=>f.addConversion(e,t)))},f.removeConversion=function(e){ee(e);const t=p(e.to),r=function(e,t){for(let r=0;r<e.length;r++)if(t(e[r]))return e[r]}(t.conversionsTo,(t=>t.from===e.from));if(!r)throw new Error("Attempt to remove nonexistent conversion from "+e.from+" to "+e.to);if(r.convert!==e.convert)throw new Error("Conversion to remove does not match existing conversion");const n=t.conversionsTo.indexOf(r);t.conversionsTo.splice(n,1)},f.resolve=function(e,t){if(!g(e))throw new TypeError(n);const r=e._typedFunctionData.signatures;for(let e=0;e<r.length;++e)if(r[e].test(t))return r[e];return null},f}()}()}},t={};function r(n){var i=t[n];if(void 0!==i)return i.exports;var o=t[n]={id:n,loaded:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.loaded=!0,o.exports}r.amdD=function(){throw new Error("define cannot be used indirect")},r.amdO={},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nmd=e=>(e.paths=[],e.children||(e.children=[]),e);var n={};return(()=>{"use strict";r.d(n,{default:()=>ky});var e={};function t(e){return"number"==typeof e}function i(e){return!(!e||"object"!=typeof e||"function"!=typeof e.constructor)&&(!0===e.isBigNumber&&"object"==typeof e.constructor.prototype&&!0===e.constructor.prototype.isBigNumber||"function"==typeof e.constructor.isDecimal&&!0===e.constructor.isDecimal(e))}function o(e){return"bigint"==typeof e}function a(e){return e&&"object"==typeof e&&!0===Object.getPrototypeOf(e).isComplex||!1}function s(e){return e&&"object"==typeof e&&!0===Object.getPrototypeOf(e).isFraction||!1}function u(e){return e&&!0===e.constructor.prototype.isUnit||!1}function c(e){return"string"==typeof e}r.r(e),r.d(e,{createAbs:()=>lo,createAccessorNode:()=>pp,createAcos:()=>Sl,createAcosh:()=>Hl,createAcot:()=>Zl,createAcoth:()=>Wl,createAcsc:()=>Jl,createAcsch:()=>Ql,createAdd:()=>Jf,createAddScalar:()=>go,createAnd:()=>Ec,createAndTransform:()=>My,createApply:()=>po,createApplyTransform:()=>Qg,createArg:()=>Qa,createArrayNode:()=>dp,createAsec:()=>ef,createAsech:()=>rf,createAsin:()=>of,createAsinh:()=>af,createAssignmentNode:()=>wp,createAtan:()=>sf,createAtan2:()=>cf,createAtanh:()=>ff,createAtomicMass:()=>Dg,createAvogadro:()=>Fg,createBellNumbers:()=>ih,createBigNumberClass:()=>Br,createBigint:()=>wi,createBignumber:()=>Mi,createBin:()=>zu,createBitAnd:()=>Ha,createBitAndTransform:()=>Ty,createBitNot:()=>Za,createBitOr:()=>Wa,createBitOrTransform:()=>Dy,createBitXor:()=>Xa,createBlockNode:()=>Ep,createBohrMagneton:()=>cg,createBohrRadius:()=>hg,createBoltzmann:()=>Bg,createBoolean:()=>Si,createCatalan:()=>ah,createCbrt:()=>vo,createCeil:()=>Co,createChain:()=>km,createChainClass:()=>Dm,createClassicalElectronRadius:()=>gg,createClone:()=>Un,createColumn:()=>ds,createColumnTransform:()=>Kg,createCombinations:()=>wd,createCombinationsWithRep:()=>Ad,createCompare:()=>Sc,createCompareNatural:()=>Dc,createCompareText:()=>Oc,createCompile:()=>rm,createComplex:()=>Ci,createComplexClass:()=>_r,createComposition:()=>uh,createConcat:()=>ps,createConcatTransform:()=>dy,createConditionalNode:()=>Sp,createConductanceQuantum:()=>lg,createConj:()=>es,createConstantNode:()=>zp,createCorr:()=>yd,createCos:()=>mf,createCosh:()=>hf,createCot:()=>gf,createCoth:()=>xf,createCoulomb:()=>sg,createCount:()=>gs,createCreateUnit:()=>El,createCross:()=>xs,createCsc:()=>bf,createCsch:()=>wf,createCtranspose:()=>pu,createCube:()=>Do,createCumSum:()=>id,createCumSumTransform:()=>wy,createDeepEqual:()=>Xc,createDenseMatrixClass:()=>Pn,createDerivative:()=>Nh,createDet:()=>qm,createDeuteronMass:()=>Ng,createDiag:()=>vs,createDiff:()=>Rs,createDiffTransform:()=>gy,createDistance:()=>ed,createDivide:()=>Qm,createDivideScalar:()=>Zu,createDot:()=>tp,createDotDivide:()=>oc,createDotMultiply:()=>Ma,createDotPow:()=>nc,createE:()=>Uh,createEfimovFactor:()=>Tg,createEigs:()=>Um,createElectricConstant:()=>og,createElectronMass:()=>yg,createElementaryCharge:()=>ug,createEqual:()=>zc,createEqualScalar:()=>xi,createEqualText:()=>qc,createErf:()=>bu,createEvaluate:()=>im,createExp:()=>Fo,createExpm:()=>$m,createExpm1:()=>Oo,createFactorial:()=>qd,createFalse:()=>Ih,createFaraday:()=>Og,createFermiCoupling:()=>xg,createFft:()=>hu,createFibonacciHeapClass:()=>ll,createFilter:()=>Ns,createFilterTransform:()=>ty,createFineStructure:()=>bg,createFirstRadiation:()=>_g,createFix:()=>ko,createFlatten:()=>Ss,createFloor:()=>jo,createForEach:()=>Cs,createForEachTransform:()=>ny,createFormat:()=>_u,createFraction:()=>Ti,createFractionClass:()=>Hr,createFreqz:()=>Th,createFunctionAssignmentNode:()=>kp,createFunctionNode:()=>Qp,createGamma:()=>_d,createGasConstant:()=>Ig,createGcd:()=>ta,createGetMatrixDataType:()=>Fs,createGravitationConstant:()=>tg,createGravity:()=>Hg,createHartreeEnergy:()=>vg,createHasNumericValue:()=>si,createHelp:()=>zm,createHelpClass:()=>Tm,createHex:()=>ku,createHypot:()=>Qf,createI:()=>Yh,createIdentity:()=>Os,createIfft:()=>yu,createIm:()=>ts,createImmutableDenseMatrixClass:()=>sl,createIndex:()=>ip,createIndexClass:()=>ul,createIndexNode:()=>Rp,createIndexTransform:()=>iy,createInfinity:()=>qh,createIntersect:()=>td,createInv:()=>Rm,createInverseConductanceQuantum:()=>fg,createInvmod:()=>Ea,createIsInteger:()=>Jn,createIsNaN:()=>mi,createIsNegative:()=>ni,createIsNumeric:()=>oi,createIsPositive:()=>ci,createIsPrime:()=>$u,createIsZero:()=>fi,createKldivergence:()=>Pd,createKlitzing:()=>dg,createKron:()=>zs,createLN10:()=>Hh,createLN2:()=>$h,createLOG10E:()=>Zh,createLOG2E:()=>Gh,createLarger:()=>Gc,createLargerEq:()=>Wc,createLcm:()=>na,createLeafCount:()=>lh,createLeftShift:()=>xc,createLgamma:()=>Id,createLog:()=>Xu,createLog10:()=>oa,createLog1p:()=>Ku,createLog2:()=>sa,createLoschmidt:()=>zg,createLsolve:()=>uc,createLsolveAll:()=>pc,createLup:()=>um,createLusolve:()=>Sm,createLyap:()=>Xm,createMad:()=>cd,createMagneticConstant:()=>ig,createMagneticFluxQuantum:()=>pg,createMap:()=>Is,createMapTransform:()=>oy,createMatrix:()=>Fi,createMatrixClass:()=>Zr,createMatrixFromColumns:()=>ki,createMatrixFromFunction:()=>Oi,createMatrixFromRows:()=>zi,createMax:()=>ol,createMaxTransform:()=>uy,createMean:()=>ad,createMeanTransform:()=>cy,createMedian:()=>ud,createMin:()=>al,createMinTransform:()=>ly,createMod:()=>Vo,createMode:()=>Tu,createMolarMass:()=>Lg,createMolarMassC12:()=>$g,createMolarPlanckConstant:()=>kg,createMolarVolume:()=>qg,createMultinomial:()=>Ud,createMultiply:()=>la,createMultiplyScalar:()=>ua,createNaN:()=>Rh,createNeutronMass:()=>Eg,createNode:()=>ap,createNorm:()=>ep,createNot:()=>us,createNthRoot:()=>pa,createNthRoots:()=>tc,createNuclearMagneton:()=>mg,createNull:()=>kh,createNumber:()=>vi,createNumeric:()=>Hu,createObjectNode:()=>jp,createOct:()=>Iu,createOnes:()=>Ps,createOperatorNode:()=>$p,createOr:()=>cs,createOrTransform:()=>Cy,createParenthesisNode:()=>Gp,createParse:()=>em,createParser:()=>sm,createParserClass:()=>om,createPartitionSelect:()=>rl,createPermutations:()=>$d,createPhi:()=>Lh,createPi:()=>Ph,createPickRandom:()=>Yd,createPinv:()=>jm,createPlanckCharge:()=>Wg,createPlanckConstant:()=>rg,createPlanckLength:()=>Gg,createPlanckMass:()=>Zg,createPlanckTemperature:()=>Yg,createPlanckTime:()=>Vg,createPolynomialRoot:()=>Cm,createPow:()=>Vu,createPrint:()=>Pu,createPrintTransform:()=>Sy,createProd:()=>Bu,createProtonMass:()=>wg,createQr:()=>cm,createQuantileSeq:()=>dd,createQuantileSeqTransform:()=>by,createQuantumOfCirculation:()=>Ag,createRandom:()=>Qd,createRandomInt:()=>eh,createRange:()=>Hs,createRangeClass:()=>Gr,createRangeNode:()=>Vp,createRangeTransform:()=>fy,createRationalize:()=>Ah,createRe:()=>rs,createReducedPlanckConstant:()=>ng,createRelationalNode:()=>Yp,createReplacer:()=>Fh,createReshape:()=>Zs,createResize:()=>Vs,createResolve:()=>xh,createResultSet:()=>Ze,createReviver:()=>Dh,createRightArithShift:()=>vc,createRightLogShift:()=>Nc,createRotate:()=>Ys,createRotationMatrix:()=>Xs,createRound:()=>Ju,createRow:()=>Qs,createRowTransform:()=>py,createRydberg:()=>Sg,createSQRT1_2:()=>Vh,createSQRT2:()=>Wh,createSackurTetrode:()=>Rg,createSchur:()=>Ym,createSec:()=>Nf,createSech:()=>Af,createSecondRadiation:()=>Pg,createSetCartesian:()=>Bf,createSetDifference:()=>_f,createSetDistinct:()=>If,createSetIntersect:()=>qf,createSetIsSubset:()=>Pf,createSetMultiplicity:()=>Uf,createSetPowerset:()=>$f,createSetSize:()=>Gf,createSetSymDifference:()=>Vf,createSetUnion:()=>Yf,createSign:()=>da,createSimplify:()=>dh,createSimplifyConstant:()=>hh,createSimplifyCore:()=>yh,createSin:()=>Sf,createSinh:()=>Cf,createSize:()=>eu,createSlu:()=>Nm,createSmaller:()=>Pc,createSmallerEq:()=>Lc,createSolveODE:()=>xu,createSort:()=>il,createSpaClass:()=>fl,createSparse:()=>wl,createSparseMatrixClass:()=>bi,createSpeedOfLight:()=>eg,createSplitUnit:()=>Ri,createSqrt:()=>ha,createSqrtm:()=>Gm,createSquare:()=>ya,createSqueeze:()=>ru,createStd:()=>hd,createStdTransform:()=>yy,createStefanBoltzmann:()=>jg,createStirlingS2:()=>rh,createString:()=>Ei,createSubset:()=>iu,createSubsetTransform:()=>my,createSubtract:()=>ba,createSubtractScalar:()=>xo,createSum:()=>rd,createSumTransform:()=>xy,createSylvester:()=>Vm,createSymbolNode:()=>Jp,createSymbolicEqual:()=>vh,createTan:()=>Tf,createTanh:()=>Df,createTau:()=>jh,createThomsonCrossSection:()=>Mg,createTo:()=>Uu,createTrace:()=>rp,createTranspose:()=>lu,createTrue:()=>zh,createTypeOf:()=>hi,createTyped:()=>Le,createUnaryMinus:()=>so,createUnaryPlus:()=>co,createUnequal:()=>Kc,createUnitClass:()=>yl,createUnitFunction:()=>bl,createUppercaseE:()=>Xh,createUppercasePi:()=>Jh,createUsolve:()=>lc,createUsolveAll:()=>dc,createVacuumImpedance:()=>ag,createVariance:()=>pd,createVarianceTransform:()=>Ey,createVersion:()=>Qh,createWeakMixingAngle:()=>Cg,createWienDisplacement:()=>Ug,createXgcd:()=>wa,createXor:()=>ls,createZeros:()=>du,createZeta:()=>Mu,createZpk2tf:()=>Mh}),r(4423),r(7495),r(4864),r(7465);const l=Array.isArray;function f(e){return e&&!0===e.constructor.prototype.isMatrix||!1}function p(e){return Array.isArray(e)||f(e)}function m(e){return e&&e.isDenseMatrix&&!0===e.constructor.prototype.isMatrix||!1}function d(e){return e&&e.isSparseMatrix&&!0===e.constructor.prototype.isMatrix||!1}function h(e){return e&&!0===e.constructor.prototype.isRange||!1}function g(e){return e&&!0===e.constructor.prototype.isIndex||!1}function y(e){return"boolean"==typeof e}function x(e){return e&&!0===e.constructor.prototype.isResultSet||!1}function b(e){return e&&!0===e.constructor.prototype.isHelp||!1}function v(e){return"function"==typeof e}function w(e){return e instanceof Date}function N(e){return e instanceof RegExp}function E(e){return!(!e||"object"!=typeof e||e.constructor!==Object||a(e)||s(e))}function A(e){return null===e}function S(e){return void 0===e}function M(e){return e&&!0===e.isAccessorNode&&!0===e.constructor.prototype.isNode||!1}function C(e){return e&&!0===e.isArrayNode&&!0===e.constructor.prototype.isNode||!1}function T(e){return e&&!0===e.isAssignmentNode&&!0===e.constructor.prototype.isNode||!1}function D(e){return e&&!0===e.isBlockNode&&!0===e.constructor.prototype.isNode||!1}function F(e){return e&&!0===e.isConditionalNode&&!0===e.constructor.prototype.isNode||!1}function B(e){return e&&!0===e.isConstantNode&&!0===e.constructor.prototype.isNode||!1}function O(e){return B(e)||R(e)&&1===e.args.length&&B(e.args[0])&&"-+~".includes(e.op)}function _(e){return e&&!0===e.isFunctionAssignmentNode&&!0===e.constructor.prototype.isNode||!1}function z(e){return e&&!0===e.isFunctionNode&&!0===e.constructor.prototype.isNode||!1}function I(e){return e&&!0===e.isIndexNode&&!0===e.constructor.prototype.isNode||!1}function k(e){return e&&!0===e.isNode&&!0===e.constructor.prototype.isNode||!1}function q(e){return e&&!0===e.isObjectNode&&!0===e.constructor.prototype.isNode||!1}function R(e){return e&&!0===e.isOperatorNode&&!0===e.constructor.prototype.isNode||!1}function P(e){return e&&!0===e.isParenthesisNode&&!0===e.constructor.prototype.isNode||!1}function j(e){return e&&!0===e.isRangeNode&&!0===e.constructor.prototype.isNode||!1}function U(e){return e&&!0===e.isRelationalNode&&!0===e.constructor.prototype.isNode||!1}function L(e){return e&&!0===e.isSymbolNode&&!0===e.constructor.prototype.isNode||!1}function $(e){return e&&!0===e.constructor.prototype.isChain||!1}function H(e){const t=typeof e;return"object"===t?null===e?"null":i(e)?"BigNumber":e.constructor&&e.constructor.name?e.constructor.name:"Object":t}var G=r(2369);function Z(e){return"boolean"==typeof e||!!isFinite(e)&&e===Math.round(e)}function V(e,t){return"bigint"!==t.number||/^-?\d+$/.test(e)?t.number:t.numberFallback}r(5440);const W=Math.sign||function(e){return e>0?1:e<0?-1:0},Y=Math.log2||function(e){return Math.log(e)/Math.LN2},J=Math.log10||function(e){return Math.log(e)/Math.LN10},X=Math.log1p||function(e){return Math.log(e+1)},Q=Math.cbrt||function(e){if(0===e)return e;const t=e<0;let r;return t&&(e=-e),isFinite(e)?(r=Math.exp(Math.log(e)/3),r=(e/(r*r)+2*r)/3):r=e,t?-r:r},K=Math.expm1||function(e){return e>=2e-4||e<=-2e-4?Math.exp(e)-1:e+e*e/2+e*e*e/6};function ee(e,t,r){const n={2:"0b",8:"0o",16:"0x"}[t];let i="";if(r){if(r<1)throw new Error("size must be in greater than 0");if(!Z(r))throw new Error("size must be an integer");if(e>2**(r-1)-1||e<-(2**(r-1)))throw new Error(`Value must be in range [-2^${r-1}, 2^${r-1}-1]`);if(!Z(e))throw new Error("Value must be an integer");e<0&&(e+=2**r),i=`i${r}`}let o="";return e<0&&(e=-e,o="-"),`${o}${n}${e.toString(t)}${i}`}function te(e,r){if("function"==typeof r)return r(e);if(e===1/0)return"Infinity";if(e===-1/0)return"-Infinity";if(isNaN(e))return"NaN";const{notation:n,precision:i,wordSize:o}=re(r);switch(n){case"fixed":return ie(e,i);case"exponential":return oe(e,i);case"engineering":return function(e,r){if(isNaN(e)||!isFinite(e))return String(e);const n=ae(ne(e),r),i=n.exponent,o=n.coefficients,a=i%3==0?i:i<0?i-3-i%3:i-i%3;if(t(r))for(;r>o.length||i-a+1>o.length;)o.push(0);else{const e=Math.abs(i-a)-(o.length-1);for(let t=0;t<e;t++)o.push(0)}let s=Math.abs(i-a),u=1;for(;s>0;)u++,s--;const c=o.slice(u).join(""),l=t(r)&&c.length||c.match(/[1-9]/)?"."+c:"",f=o.slice(0,u).join("")+l+"e"+(i>=0?"+":"")+a.toString();return n.sign+f}(e,i);case"bin":return ee(e,2,o);case"oct":return ee(e,8,o);case"hex":return ee(e,16,o);case"auto":return function(e,t,r){if(isNaN(e)||!isFinite(e))return String(e);const n=ge(null==r?void 0:r.lowerExp,-3),i=ge(null==r?void 0:r.upperExp,5),o=ne(e),a=t?ae(o,t):o;if(a.exponent<n||a.exponent>=i)return oe(e,t);{let e=a.coefficients;const r=a.exponent;e.length<t&&(e=e.concat(se(t-e.length))),e=e.concat(se(r-e.length+1+(e.length<t?t-e.length:0))),e=se(-r).concat(e);const n=r>0?r:0;return n<e.length-1&&e.splice(n+1,0,"."),a.sign+e.join("")}}(e,i,r).replace(/((\.\d*?)(0+))($|e)/,(function(){const e=arguments[2],t=arguments[4];return"."!==e?e+t:t}));default:throw new Error('Unknown notation "'+n+'". Choose "auto", "exponential", "fixed", "bin", "oct", or "hex.')}}function re(e){let r,n,o="auto";if(void 0!==e)if(t(e))r=e;else if(i(e))r=e.toNumber();else{if(!E(e))throw new Error("Unsupported type of options, number, BigNumber, or object expected");void 0!==e.precision&&(r=he(e.precision,(()=>{throw new Error('Option "precision" must be a number or BigNumber')}))),void 0!==e.wordSize&&(n=he(e.wordSize,(()=>{throw new Error('Option "wordSize" must be a number or BigNumber')}))),e.notation&&(o=e.notation)}return{notation:o,precision:r,wordSize:n}}function ne(e){const t=String(e).toLowerCase().match(/^(-?)(\d+\.?\d*)(e([+-]?\d+))?$/);if(!t)throw new SyntaxError("Invalid number "+e);const r=t[1],n=t[2];let i=parseFloat(t[4]||"0");const o=n.indexOf(".");i+=-1!==o?o-1:n.length-1;const a=n.replace(".","").replace(/^0*/,(function(e){return i-=e.length,""})).replace(/0*$/,"").split("").map((function(e){return parseInt(e)}));return 0===a.length&&(a.push(0),i++),{sign:r,coefficients:a,exponent:i}}function ie(e,t){if(isNaN(e)||!isFinite(e))return String(e);const r=ne(e),n="number"==typeof t?ae(r,r.exponent+1+t):r;let i=n.coefficients,o=n.exponent+1;const a=o+(t||0);return i.length<a&&(i=i.concat(se(a-i.length))),o<0&&(i=se(1-o).concat(i),o=1),o<i.length&&i.splice(o,0,0===o?"0.":"."),n.sign+i.join("")}function oe(e,t){if(isNaN(e)||!isFinite(e))return String(e);const r=ne(e),n=t?ae(r,t):r;let i=n.coefficients;const o=n.exponent;i.length<t&&(i=i.concat(se(t-i.length)));const a=i.shift();return n.sign+a+(i.length>0?"."+i.join(""):"")+"e"+(o>=0?"+":"")+o}function ae(e,t){const r={sign:e.sign,coefficients:e.coefficients,exponent:e.exponent},n=r.coefficients;for(;t<=0;)n.unshift(0),r.exponent++,t++;if(n.length>t&&n.splice(t,n.length-t)[0]>=5){let e=t-1;for(n[e]++;10===n[e];)n.pop(),0===e&&(n.unshift(0),r.exponent++,e++),e--,n[e]++}return r}function se(e){const t=[];for(let r=0;r<e;r++)t.push(0);return t}function ue(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1e-8,n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;if(r<=0)throw new Error("Relative tolerance must be greater than 0");if(n<0)throw new Error("Absolute tolerance must be at least 0");return!isNaN(e)&&!isNaN(t)&&(isFinite(e)&&isFinite(t)?e===t||Math.abs(e-t)<=Math.max(r*Math.max(Math.abs(e),Math.abs(t)),n):e===t)}Number.EPSILON;const ce=Math.acosh||function(e){return Math.log(Math.sqrt(e*e-1)+e)},le=Math.asinh||function(e){return Math.log(Math.sqrt(e*e+1)+e)},fe=Math.atanh||function(e){return Math.log((1+e)/(1-e))/2},pe=Math.cosh||function(e){return(Math.exp(e)+Math.exp(-e))/2},me=Math.sinh||function(e){return(Math.exp(e)-Math.exp(-e))/2},de=Math.tanh||function(e){const t=Math.exp(2*e);return(t-1)/(t+1)};function he(e,r){return t(e)?e:i(e)?e.toNumber():void r()}function ge(e,r){return t(e)?e:i(e)?e.toNumber():r}function ye(e){const t=typeof e;if("number"===t||"bigint"===t||"string"===t||"boolean"===t||null==e)return e;if("function"==typeof e.clone)return e.clone();if(Array.isArray(e))return e.map((function(e){return ye(e)}));if(e instanceof Date)return new Date(e.valueOf());if(i(e))return e;if(E(e))return function(e,t){const r={};for(const n in e)Ae(e,n)&&(r[n]=t(e[n]));return r}(e,ye);throw new TypeError(`Cannot clone: unknown type of value (value: ${e})`)}function xe(e,t){for(const r in t)Ae(t,r)&&(e[r]=t[r]);return e}function be(e,t){if(Array.isArray(t))throw new TypeError("Arrays are not supported by deepExtend");for(const r in t)if(Ae(t,r)&&!(r in Object.prototype)&&!(r in Function.prototype))if(t[r]&&t[r].constructor===Object)void 0===e[r]&&(e[r]={}),e[r]&&e[r].constructor===Object?be(e[r],t[r]):e[r]=t[r];else{if(Array.isArray(t[r]))throw new TypeError("Arrays are not supported by deepExtend");e[r]=t[r]}return e}function ve(e,t){let r,n,i;if(Array.isArray(e)){if(!Array.isArray(t))return!1;if(e.length!==t.length)return!1;for(n=0,i=e.length;n<i;n++)if(!ve(e[n],t[n]))return!1;return!0}if("function"==typeof e)return e===t;if(e instanceof Object){if(Array.isArray(t)||!(t instanceof Object))return!1;for(r in e)if(!(r in t)||!ve(e[r],t[r]))return!1;for(r in t)if(!(r in e))return!1;return!0}return e===t}function we(e){const t={};return Ne(e,t),t}function Ne(e,t){for(const r in e)if(Ae(e,r)){const n=e[r];"object"==typeof n&&null!==n?Ne(n,t):t[r]=n}}function Ee(e,t,r){let n,i=!0;Object.defineProperty(e,t,{get:function(){return i&&(n=r(),i=!1),n},set:function(e){n=e,i=!1},configurable:!0,enumerable:!0})}function Ae(e,t){return e&&Object.hasOwnProperty.call(e,t)}function Se(e,t,r,n){function i(n){const i=function(e,t){const r={};for(let n=0;n<t.length;n++){const i=t[n],o=e[i];void 0!==o&&(r[i]=o)}return r}(n,t.map(Ce));return function(e,t,r){if(!t.filter((e=>!function(e){return e&&"?"===e[0]}(e))).every((e=>void 0!==r[e]))){const n=t.filter((e=>void 0===r[e]));throw new Error(`Cannot create function "${e}", some dependencies are missing: ${n.map((e=>`"${e}"`)).join(", ")}.`)}}(e,t,n),r(i)}return i.isFactory=!0,i.fn=e,i.dependencies=t.slice().sort(),n&&(i.meta=n),i}function Me(e){return"function"==typeof e&&"string"==typeof e.fn&&Array.isArray(e.dependencies)}function Ce(e){return e&&"?"===e[0]?e.slice(1):e}function Te(e,t){if(Oe(e)&&Fe(e,t))return e[t];if("function"==typeof e[t]&&Be(e,t))throw new Error('Cannot access method "'+t+'" as a property');throw new Error('No access to property "'+t+'"')}function De(e,t,r){if(Oe(e)&&Fe(e,t))return e[t]=r,r;throw new Error('No access to property "'+t+'"')}function Fe(e,t){return!(!e||"object"!=typeof e||!Ae(_e,t)&&(t in Object.prototype||t in Function.prototype))}function Be(e,t){return!(null==e||"function"!=typeof e[t]||Ae(e,t)&&Object.getPrototypeOf&&t in Object.getPrototypeOf(e)||!Ae(ze,t)&&(t in Object.prototype||t in Function.prototype))}function Oe(e){return"object"==typeof e&&e&&e.constructor===Object}r(6910);const _e={length:!0,name:!0},ze={toString:!0,valueOf:!0,toLocaleString:!0};class Ie{constructor(e){this.wrappedObject=e,this[Symbol.iterator]=this.entries}keys(){return Object.keys(this.wrappedObject).values()}get(e){return Te(this.wrappedObject,e)}set(e,t){return De(this.wrappedObject,e,t),this}has(e){return e in this.wrappedObject}entries(){return qe(this.keys(),(e=>[e,this.get(e)]))}forEach(e){for(const t of this.keys())e(this.get(t),t,this)}delete(e){delete this.wrappedObject[e]}clear(){for(const e of this.keys())this.delete(e)}get size(){return Object.keys(this.wrappedObject).length}}class ke{constructor(e,t,r){this.a=e,this.b=t,this.bKeys=r,this[Symbol.iterator]=this.entries}get(e){return this.bKeys.has(e)?this.b.get(e):this.a.get(e)}set(e,t){return this.bKeys.has(e)?this.b.set(e,t):this.a.set(e,t),this}has(e){return this.b.has(e)||this.a.has(e)}keys(){return new Set([...this.a.keys(),...this.b.keys()])[Symbol.iterator]()}entries(){return qe(this.keys(),(e=>[e,this.get(e)]))}forEach(e){for(const t of this.keys())e(this.get(t),t,this)}delete(e){return this.bKeys.has(e)?this.b.delete(e):this.a.delete(e)}clear(){this.a.clear(),this.b.clear()}get size(){return[...this.keys()].length}}function qe(e,t){return{next:()=>{const r=e.next();return r.done?r:{value:t(r.value),done:!1}}}}function Re(){return new Map}function Pe(e){if(!e)return Re();if(je(e))return e;if(E(e))return new Ie(e);throw new Error("createMap can create maps from objects or Maps")}function je(e){return!!e&&(e instanceof Map||e instanceof Ie||"function"==typeof e.set&&"function"==typeof e.get&&"function"==typeof e.keys&&"function"==typeof e.has)}let Ue=function(){return Ue=G.create,G};const Le=Se("typed",["?BigNumber","?Complex","?DenseMatrix","?Fraction"],(function(e){let{BigNumber:r,Complex:n,DenseMatrix:O,Fraction:H}=e;const G=Ue();return G.clear(),G.addTypes([{name:"number",test:t},{name:"Complex",test:a},{name:"BigNumber",test:i},{name:"bigint",test:o},{name:"Fraction",test:s},{name:"Unit",test:u},{name:"identifier",test:e=>c&&/^[A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{10300}-\u{1031F}\u{1032D}-\u{10340}\u{10342}-\u{10349}\u{10350}-\u{10375}\u{10380}-\u{1039D}\u{103A0}-\u{103C3}\u{103C8}-\u{103CF}\u{10400}-\u{1049D}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{10570}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10860}-\u{10876}\u{10880}-\u{1089E}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{10900}-\u{10915}\u{10920}-\u{10939}\u{10980}-\u{109B7}\u{109BE}\u{109BF}\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A60}-\u{10A7C}\u{10A80}-\u{10A9C}\u{10AC0}-\u{10AC7}\u{10AC9}-\u{10AE4}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B60}-\u{10B72}\u{10B80}-\u{10B91}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10D00}-\u{10D23}\u{10E80}-\u{10EA9}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F1C}\u{10F27}\u{10F30}-\u{10F45}\u{10F70}-\u{10F81}\u{10FB0}-\u{10FC4}\u{10FE0}-\u{10FF6}\u{11003}-\u{11037}\u{11071}\u{11072}\u{11075}\u{11083}-\u{110AF}\u{110D0}-\u{110E8}\u{11103}-\u{11126}\u{11144}\u{11147}\u{11150}-\u{11172}\u{11176}\u{11183}-\u{111B2}\u{111C1}-\u{111C4}\u{111DA}\u{111DC}\u{11200}-\u{11211}\u{11213}-\u{1122B}\u{1123F}\u{11240}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A8}\u{112B0}-\u{112DE}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133D}\u{11350}\u{1135D}-\u{11361}\u{11400}-\u{11434}\u{11447}-\u{1144A}\u{1145F}-\u{11461}\u{11480}-\u{114AF}\u{114C4}\u{114C5}\u{114C7}\u{11580}-\u{115AE}\u{115D8}-\u{115DB}\u{11600}-\u{1162F}\u{11644}\u{11680}-\u{116AA}\u{116B8}\u{11700}-\u{1171A}\u{11740}-\u{11746}\u{11800}-\u{1182B}\u{118A0}-\u{118DF}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{1192F}\u{1193F}\u{11941}\u{119A0}-\u{119A7}\u{119AA}-\u{119D0}\u{119E1}\u{119E3}\u{11A00}\u{11A0B}-\u{11A32}\u{11A3A}\u{11A50}\u{11A5C}-\u{11A89}\u{11A9D}\u{11AB0}-\u{11AF8}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C2E}\u{11C40}\u{11C72}-\u{11C8F}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D30}\u{11D46}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D89}\u{11D98}\u{11EE0}-\u{11EF2}\u{11F02}\u{11F04}-\u{11F10}\u{11F12}-\u{11F33}\u{11FB0}\u{12000}-\u{12399}\u{12480}-\u{12543}\u{12F90}-\u{12FF0}\u{13000}-\u{1342F}\u{13441}-\u{13446}\u{14400}-\u{14646}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A70}-\u{16ABE}\u{16AD0}-\u{16AED}\u{16B00}-\u{16B2F}\u{16B40}-\u{16B43}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16E40}-\u{16E7F}\u{16F00}-\u{16F4A}\u{16F50}\u{16F93}-\u{16F9F}\u{16FE0}\u{16FE1}\u{16FE3}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18D00}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B132}\u{1B150}-\u{1B152}\u{1B155}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D6C0}\u{1D6C2}-\u{1D6DA}\u{1D6DC}-\u{1D6FA}\u{1D6FC}-\u{1D714}\u{1D716}-\u{1D734}\u{1D736}-\u{1D74E}\u{1D750}-\u{1D76E}\u{1D770}-\u{1D788}\u{1D78A}-\u{1D7A8}\u{1D7AA}-\u{1D7C2}\u{1D7C4}-\u{1D7CB}\u{1DF00}-\u{1DF1E}\u{1DF25}-\u{1DF2A}\u{1E030}-\u{1E06D}\u{1E100}-\u{1E12C}\u{1E137}-\u{1E13D}\u{1E14E}\u{1E290}-\u{1E2AD}\u{1E2C0}-\u{1E2EB}\u{1E4D0}-\u{1E4EB}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1E800}-\u{1E8C4}\u{1E900}-\u{1E943}\u{1E94B}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B739}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2EBF0}-\u{2EE5D}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{31350}-\u{323AF}][0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{10300}-\u{1031F}\u{1032D}-\u{10340}\u{10342}-\u{10349}\u{10350}-\u{10375}\u{10380}-\u{1039D}\u{103A0}-\u{103C3}\u{103C8}-\u{103CF}\u{10400}-\u{1049D}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{10570}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10860}-\u{10876}\u{10880}-\u{1089E}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{10900}-\u{10915}\u{10920}-\u{10939}\u{10980}-\u{109B7}\u{109BE}\u{109BF}\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A60}-\u{10A7C}\u{10A80}-\u{10A9C}\u{10AC0}-\u{10AC7}\u{10AC9}-\u{10AE4}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B60}-\u{10B72}\u{10B80}-\u{10B91}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10D00}-\u{10D23}\u{10E80}-\u{10EA9}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F1C}\u{10F27}\u{10F30}-\u{10F45}\u{10F70}-\u{10F81}\u{10FB0}-\u{10FC4}\u{10FE0}-\u{10FF6}\u{11003}-\u{11037}\u{11071}\u{11072}\u{11075}\u{11083}-\u{110AF}\u{110D0}-\u{110E8}\u{11103}-\u{11126}\u{11144}\u{11147}\u{11150}-\u{11172}\u{11176}\u{11183}-\u{111B2}\u{111C1}-\u{111C4}\u{111DA}\u{111DC}\u{11200}-\u{11211}\u{11213}-\u{1122B}\u{1123F}\u{11240}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A8}\u{112B0}-\u{112DE}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133D}\u{11350}\u{1135D}-\u{11361}\u{11400}-\u{11434}\u{11447}-\u{1144A}\u{1145F}-\u{11461}\u{11480}-\u{114AF}\u{114C4}\u{114C5}\u{114C7}\u{11580}-\u{115AE}\u{115D8}-\u{115DB}\u{11600}-\u{1162F}\u{11644}\u{11680}-\u{116AA}\u{116B8}\u{11700}-\u{1171A}\u{11740}-\u{11746}\u{11800}-\u{1182B}\u{118A0}-\u{118DF}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{1192F}\u{1193F}\u{11941}\u{119A0}-\u{119A7}\u{119AA}-\u{119D0}\u{119E1}\u{119E3}\u{11A00}\u{11A0B}-\u{11A32}\u{11A3A}\u{11A50}\u{11A5C}-\u{11A89}\u{11A9D}\u{11AB0}-\u{11AF8}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C2E}\u{11C40}\u{11C72}-\u{11C8F}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D30}\u{11D46}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D89}\u{11D98}\u{11EE0}-\u{11EF2}\u{11F02}\u{11F04}-\u{11F10}\u{11F12}-\u{11F33}\u{11FB0}\u{12000}-\u{12399}\u{12480}-\u{12543}\u{12F90}-\u{12FF0}\u{13000}-\u{1342F}\u{13441}-\u{13446}\u{14400}-\u{14646}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A70}-\u{16ABE}\u{16AD0}-\u{16AED}\u{16B00}-\u{16B2F}\u{16B40}-\u{16B43}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16E40}-\u{16E7F}\u{16F00}-\u{16F4A}\u{16F50}\u{16F93}-\u{16F9F}\u{16FE0}\u{16FE1}\u{16FE3}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18D00}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B132}\u{1B150}-\u{1B152}\u{1B155}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D6C0}\u{1D6C2}-\u{1D6DA}\u{1D6DC}-\u{1D6FA}\u{1D6FC}-\u{1D714}\u{1D716}-\u{1D734}\u{1D736}-\u{1D74E}\u{1D750}-\u{1D76E}\u{1D770}-\u{1D788}\u{1D78A}-\u{1D7A8}\u{1D7AA}-\u{1D7C2}\u{1D7C4}-\u{1D7CB}\u{1DF00}-\u{1DF1E}\u{1DF25}-\u{1DF2A}\u{1E030}-\u{1E06D}\u{1E100}-\u{1E12C}\u{1E137}-\u{1E13D}\u{1E14E}\u{1E290}-\u{1E2AD}\u{1E2C0}-\u{1E2EB}\u{1E4D0}-\u{1E4EB}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1E800}-\u{1E8C4}\u{1E900}-\u{1E943}\u{1E94B}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B739}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2EBF0}-\u{2EE5D}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{31350}-\u{323AF}]*$/u.test(e)},{name:"string",test:c},{name:"Chain",test:$},{name:"Array",test:l},{name:"Matrix",test:f},{name:"DenseMatrix",test:m},{name:"SparseMatrix",test:d},{name:"Range",test:h},{name:"Index",test:g},{name:"boolean",test:y},{name:"ResultSet",test:x},{name:"Help",test:b},{name:"function",test:v},{name:"Date",test:w},{name:"RegExp",test:N},{name:"null",test:A},{name:"undefined",test:S},{name:"AccessorNode",test:M},{name:"ArrayNode",test:C},{name:"AssignmentNode",test:T},{name:"BlockNode",test:D},{name:"ConditionalNode",test:F},{name:"ConstantNode",test:B},{name:"FunctionNode",test:z},{name:"FunctionAssignmentNode",test:_},{name:"IndexNode",test:I},{name:"Node",test:k},{name:"ObjectNode",test:q},{name:"OperatorNode",test:R},{name:"ParenthesisNode",test:P},{name:"RangeNode",test:j},{name:"RelationalNode",test:U},{name:"SymbolNode",test:L},{name:"Map",test:je},{name:"Object",test:E}]),G.addConversions([{from:"number",to:"BigNumber",convert:function(e){if(r||$e(e),e.toExponential().replace(/e.*$/,"").replace(/^0\.?0*|\./,"").length>15)throw new TypeError("Cannot implicitly convert a number with >15 significant digits to BigNumber (value: "+e+"). Use function bignumber(x) to convert to BigNumber.");return new r(e)}},{from:"number",to:"Complex",convert:function(e){return n||He(e),new n(e,0)}},{from:"BigNumber",to:"Complex",convert:function(e){return n||He(e),new n(e.toNumber(),0)}},{from:"bigint",to:"number",convert:function(e){if(e>Number.MAX_SAFE_INTEGER)throw new TypeError("Cannot implicitly convert bigint to number: value exceeds the max safe integer value (value: "+e+")");return Number(e)}},{from:"bigint",to:"BigNumber",convert:function(e){return r||$e(e),new r(e.toString())}},{from:"bigint",to:"Fraction",convert:function(e){return H||Ge(e),new H(e.toString())}},{from:"Fraction",to:"BigNumber",convert:function(e){throw new TypeError("Cannot implicitly convert a Fraction to BigNumber or vice versa. Use function bignumber(x) to convert to BigNumber or fraction(x) to convert to Fraction.")}},{from:"Fraction",to:"Complex",convert:function(e){return n||He(e),new n(e.valueOf(),0)}},{from:"number",to:"Fraction",convert:function(e){H||Ge(e);const t=new H(e);if(t.valueOf()!==e)throw new TypeError("Cannot implicitly convert a number to a Fraction when there will be a loss of precision (value: "+e+"). Use function fraction(x) to convert to Fraction.");return t}},{from:"string",to:"number",convert:function(e){const t=Number(e);if(isNaN(t))throw new Error('Cannot convert "'+e+'" to a number');return t}},{from:"string",to:"BigNumber",convert:function(e){r||$e(e);try{return new r(e)}catch(t){throw new Error('Cannot convert "'+e+'" to BigNumber')}}},{from:"string",to:"bigint",convert:function(e){try{return BigInt(e)}catch(t){throw new Error('Cannot convert "'+e+'" to BigInt')}}},{from:"string",to:"Fraction",convert:function(e){H||Ge(e);try{return new H(e)}catch(t){throw new Error('Cannot convert "'+e+'" to Fraction')}}},{from:"string",to:"Complex",convert:function(e){n||He(e);try{return new n(e)}catch(t){throw new Error('Cannot convert "'+e+'" to Complex')}}},{from:"boolean",to:"number",convert:function(e){return+e}},{from:"boolean",to:"BigNumber",convert:function(e){return r||$e(e),new r(+e)}},{from:"boolean",to:"bigint",convert:function(e){return BigInt(+e)}},{from:"boolean",to:"Fraction",convert:function(e){return H||Ge(e),new H(+e)}},{from:"boolean",to:"string",convert:function(e){return String(e)}},{from:"Array",to:"Matrix",convert:function(e){return O||function(){throw new Error("Cannot convert array into a Matrix: no class 'DenseMatrix' provided")}(),new O(e)}},{from:"Matrix",to:"Array",convert:function(e){return e.valueOf()}}]),G.onMismatch=(e,t,r)=>{const n=G.createError(e,t,r);if(["wrongType","mismatch"].includes(n.data.category)&&1===t.length&&p(t[0])&&r.some((e=>!e.params.includes(",")))){const t=new TypeError(`Function '${e}' doesn't apply to matrices. To call it elementwise on a matrix 'M', try 'map(M, ${e})'.`);throw t.data=n.data,t}throw n},G.onMismatch=(e,t,r)=>{const n=G.createError(e,t,r);if(["wrongType","mismatch"].includes(n.data.category)&&1===t.length&&p(t[0])&&r.some((e=>!e.params.includes(",")))){const t=new TypeError(`Function '${e}' doesn't apply to matrices. To call it elementwise on a matrix 'M', try 'map(M, ${e})'.`);throw t.data=n.data,t}throw n},G}));function $e(e){throw new Error(`Cannot convert value ${e} into a BigNumber: no class 'BigNumber' provided`)}function He(e){throw new Error(`Cannot convert value ${e} into a Complex number: no class 'Complex' provided`)}function Ge(e){throw new Error(`Cannot convert value ${e} into a Fraction, no class 'Fraction' provided.`)}const Ze=Se("ResultSet",[],(()=>{function e(t){if(!(this instanceof e))throw new SyntaxError("Constructor must be called with the new operator");this.entries=t||[]}return e.prototype.type="ResultSet",e.prototype.isResultSet=!0,e.prototype.valueOf=function(){return this.entries},e.prototype.toString=function(){return"["+this.entries.join(", ")+"]"},e.prototype.toJSON=function(){return{mathjs:"ResultSet",entries:this.entries}},e.fromJSON=function(t){return new e(t.entries)},e}),{isClass:!0});var Ve,We,Ye=9e15,Je=1e9,Xe="0123456789abcdef",Qe="2.3025850929940456840179914546843642076011014886287729760333279009675726096773524802359972050895982983419677840422862486334095254650828067566662873690987816894829072083255546808437998948262331985283935053089653777326288461633662222876982198867465436674744042432743651550489343149393914796194044002221051017141748003688084012647080685567743216228355220114804663715659121373450747856947683463616792101806445070648000277502684916746550586856935673420670581136429224554405758925724208241314695689016758940256776311356919292033376587141660230105703089634572075440370847469940168269282808481184289314848524948644871927809676271275775397027668605952496716674183485704422507197965004714951050492214776567636938662976979522110718264549734772662425709429322582798502585509785265383207606726317164309505995087807523710333101197857547331541421808427543863591778117054309827482385045648019095610299291824318237525357709750539565187697510374970888692180205189339507238539205144634197265287286965110862571492198849978748873771345686209167058",Ke="3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201989380952572010654858632789",et={precision:20,rounding:4,modulo:1,toExpNeg:-7,toExpPos:21,minE:-Ye,maxE:Ye,crypto:!1},tt=!0,rt="[DecimalError] ",nt=rt+"Invalid argument: ",it=rt+"Precision limit exceeded",ot=rt+"crypto unavailable",at="[object Decimal]",st=Math.floor,ut=Math.pow,ct=/^0b([01]+(\.[01]*)?|\.[01]+)(p[+-]?\d+)?$/i,lt=/^0x([0-9a-f]+(\.[0-9a-f]*)?|\.[0-9a-f]+)(p[+-]?\d+)?$/i,ft=/^0o([0-7]+(\.[0-7]*)?|\.[0-7]+)(p[+-]?\d+)?$/i,pt=/^(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,mt=1e7,dt=7,ht=Qe.length-1,gt=Ke.length-1,yt={toStringTag:at};function xt(e){var t,r,n,i=e.length-1,o="",a=e[0];if(i>0){for(o+=a,t=1;t<i;t++)n=e[t]+"",(r=dt-n.length)&&(o+=Dt(r)),o+=n;a=e[t],(r=dt-(n=a+"").length)&&(o+=Dt(r))}else if(0===a)return"0";for(;a%10==0;)a/=10;return o+a}function bt(e,t,r){if(e!==~~e||e<t||e>r)throw Error(nt+e)}function vt(e,t,r,n){var i,o,a,s;for(o=e[0];o>=10;o/=10)--t;return--t<0?(t+=dt,i=0):(i=Math.ceil((t+1)/dt),t%=dt),o=ut(10,dt-t),s=e[i]%o|0,null==n?t<3?(0==t?s=s/100|0:1==t&&(s=s/10|0),a=r<4&&99999==s||r>3&&49999==s||5e4==s||0==s):a=(r<4&&s+1==o||r>3&&s+1==o/2)&&(e[i+1]/o/100|0)==ut(10,t-2)-1||(s==o/2||0==s)&&!(e[i+1]/o/100|0):t<4?(0==t?s=s/1e3|0:1==t?s=s/100|0:2==t&&(s=s/10|0),a=(n||r<4)&&9999==s||!n&&r>3&&4999==s):a=((n||r<4)&&s+1==o||!n&&r>3&&s+1==o/2)&&(e[i+1]/o/1e3|0)==ut(10,t-3)-1,a}function wt(e,t,r){for(var n,i,o=[0],a=0,s=e.length;a<s;){for(i=o.length;i--;)o[i]*=t;for(o[0]+=Xe.indexOf(e.charAt(a++)),n=0;n<o.length;n++)o[n]>r-1&&(void 0===o[n+1]&&(o[n+1]=0),o[n+1]+=o[n]/r|0,o[n]%=r)}return o.reverse()}yt.absoluteValue=yt.abs=function(){var e=new this.constructor(this);return e.s<0&&(e.s=1),Et(e)},yt.ceil=function(){return Et(new this.constructor(this),this.e+1,2)},yt.clampedTo=yt.clamp=function(e,t){var r=this,n=r.constructor;if(e=new n(e),t=new n(t),!e.s||!t.s)return new n(NaN);if(e.gt(t))throw Error(nt+t);return r.cmp(e)<0?e:r.cmp(t)>0?t:new n(r)},yt.comparedTo=yt.cmp=function(e){var t,r,n,i,o=this,a=o.d,s=(e=new o.constructor(e)).d,u=o.s,c=e.s;if(!a||!s)return u&&c?u!==c?u:a===s?0:!a^u<0?1:-1:NaN;if(!a[0]||!s[0])return a[0]?u:s[0]?-c:0;if(u!==c)return u;if(o.e!==e.e)return o.e>e.e^u<0?1:-1;for(t=0,r=(n=a.length)<(i=s.length)?n:i;t<r;++t)if(a[t]!==s[t])return a[t]>s[t]^u<0?1:-1;return n===i?0:n>i^u<0?1:-1},yt.cosine=yt.cos=function(){var e,t,r=this,n=r.constructor;return r.d?r.d[0]?(e=n.precision,t=n.rounding,n.precision=e+Math.max(r.e,r.sd())+dt,n.rounding=1,r=function(e,t){var r,n,i;if(t.isZero())return t;(n=t.d.length)<32?i=(1/Pt(4,r=Math.ceil(n/3))).toString():(r=16,i="2.3283064365386962890625e-10"),e.precision+=r,t=Rt(e,1,t.times(i),new e(1));for(var o=r;o--;){var a=t.times(t);t=a.times(a).minus(a).times(8).plus(1)}return e.precision-=r,t}(n,jt(n,r)),n.precision=e,n.rounding=t,Et(2==We||3==We?r.neg():r,e,t,!0)):new n(1):new n(NaN)},yt.cubeRoot=yt.cbrt=function(){var e,t,r,n,i,o,a,s,u,c,l=this,f=l.constructor;if(!l.isFinite()||l.isZero())return new f(l);for(tt=!1,(o=l.s*ut(l.s*l,1/3))&&Math.abs(o)!=1/0?n=new f(o.toString()):(r=xt(l.d),(o=((e=l.e)-r.length+1)%3)&&(r+=1==o||-2==o?"0":"00"),o=ut(r,1/3),e=st((e+1)/3)-(e%3==(e<0?-1:2)),(n=new f(r=o==1/0?"5e"+e:(r=o.toExponential()).slice(0,r.indexOf("e")+1)+e)).s=l.s),a=(e=f.precision)+3;;)if(c=(u=(s=n).times(s).times(s)).plus(l),n=Nt(c.plus(l).times(s),c.plus(u),a+2,1),xt(s.d).slice(0,a)===(r=xt(n.d)).slice(0,a)){if("9999"!=(r=r.slice(a-3,a+1))&&(i||"4999"!=r)){+r&&(+r.slice(1)||"5"!=r.charAt(0))||(Et(n,e+1,1),t=!n.times(n).times(n).eq(l));break}if(!i&&(Et(s,e+1,0),s.times(s).times(s).eq(l))){n=s;break}a+=4,i=1}return tt=!0,Et(n,e,f.rounding,t)},yt.decimalPlaces=yt.dp=function(){var e,t=this.d,r=NaN;if(t){if(r=((e=t.length-1)-st(this.e/dt))*dt,e=t[e])for(;e%10==0;e/=10)r--;r<0&&(r=0)}return r},yt.dividedBy=yt.div=function(e){return Nt(this,new this.constructor(e))},yt.dividedToIntegerBy=yt.divToInt=function(e){var t=this.constructor;return Et(Nt(this,new t(e),0,1,1),t.precision,t.rounding)},yt.equals=yt.eq=function(e){return 0===this.cmp(e)},yt.floor=function(){return Et(new this.constructor(this),this.e+1,3)},yt.greaterThan=yt.gt=function(e){return this.cmp(e)>0},yt.greaterThanOrEqualTo=yt.gte=function(e){var t=this.cmp(e);return 1==t||0===t},yt.hyperbolicCosine=yt.cosh=function(){var e,t,r,n,i,o=this,a=o.constructor,s=new a(1);if(!o.isFinite())return new a(o.s?1/0:NaN);if(o.isZero())return s;r=a.precision,n=a.rounding,a.precision=r+Math.max(o.e,o.sd())+4,a.rounding=1,(i=o.d.length)<32?t=(1/Pt(4,e=Math.ceil(i/3))).toString():(e=16,t="2.3283064365386962890625e-10"),o=Rt(a,1,o.times(t),new a(1),!0);for(var u,c=e,l=new a(8);c--;)u=o.times(o),o=s.minus(u.times(l.minus(u.times(l))));return Et(o,a.precision=r,a.rounding=n,!0)},yt.hyperbolicSine=yt.sinh=function(){var e,t,r,n,i=this,o=i.constructor;if(!i.isFinite()||i.isZero())return new o(i);if(t=o.precision,r=o.rounding,o.precision=t+Math.max(i.e,i.sd())+4,o.rounding=1,(n=i.d.length)<3)i=Rt(o,2,i,i,!0);else{e=(e=1.4*Math.sqrt(n))>16?16:0|e,i=Rt(o,2,i=i.times(1/Pt(5,e)),i,!0);for(var a,s=new o(5),u=new o(16),c=new o(20);e--;)a=i.times(i),i=i.times(s.plus(a.times(u.times(a).plus(c))))}return o.precision=t,o.rounding=r,Et(i,t,r,!0)},yt.hyperbolicTangent=yt.tanh=function(){var e,t,r=this,n=r.constructor;return r.isFinite()?r.isZero()?new n(r):(e=n.precision,t=n.rounding,n.precision=e+7,n.rounding=1,Nt(r.sinh(),r.cosh(),n.precision=e,n.rounding=t)):new n(r.s)},yt.inverseCosine=yt.acos=function(){var e,t=this,r=t.constructor,n=t.abs().cmp(1),i=r.precision,o=r.rounding;return-1!==n?0===n?t.isNeg()?Ct(r,i,o):new r(0):new r(NaN):t.isZero()?Ct(r,i+4,o).times(.5):(r.precision=i+6,r.rounding=1,t=t.asin(),e=Ct(r,i+4,o).times(.5),r.precision=i,r.rounding=o,e.minus(t))},yt.inverseHyperbolicCosine=yt.acosh=function(){var e,t,r=this,n=r.constructor;return r.lte(1)?new n(r.eq(1)?0:NaN):r.isFinite()?(e=n.precision,t=n.rounding,n.precision=e+Math.max(Math.abs(r.e),r.sd())+4,n.rounding=1,tt=!1,r=r.times(r).minus(1).sqrt().plus(r),tt=!0,n.precision=e,n.rounding=t,r.ln()):new n(r)},yt.inverseHyperbolicSine=yt.asinh=function(){var e,t,r=this,n=r.constructor;return!r.isFinite()||r.isZero()?new n(r):(e=n.precision,t=n.rounding,n.precision=e+2*Math.max(Math.abs(r.e),r.sd())+6,n.rounding=1,tt=!1,r=r.times(r).plus(1).sqrt().plus(r),tt=!0,n.precision=e,n.rounding=t,r.ln())},yt.inverseHyperbolicTangent=yt.atanh=function(){var e,t,r,n,i=this,o=i.constructor;return i.isFinite()?i.e>=0?new o(i.abs().eq(1)?i.s/0:i.isZero()?i:NaN):(e=o.precision,t=o.rounding,n=i.sd(),Math.max(n,e)<2*-i.e-1?Et(new o(i),e,t,!0):(o.precision=r=n-i.e,i=Nt(i.plus(1),new o(1).minus(i),r+e,1),o.precision=e+4,o.rounding=1,i=i.ln(),o.precision=e,o.rounding=t,i.times(.5))):new o(NaN)},yt.inverseSine=yt.asin=function(){var e,t,r,n,i=this,o=i.constructor;return i.isZero()?new o(i):(t=i.abs().cmp(1),r=o.precision,n=o.rounding,-1!==t?0===t?((e=Ct(o,r+4,n).times(.5)).s=i.s,e):new o(NaN):(o.precision=r+6,o.rounding=1,i=i.div(new o(1).minus(i.times(i)).sqrt().plus(1)).atan(),o.precision=r,o.rounding=n,i.times(2)))},yt.inverseTangent=yt.atan=function(){var e,t,r,n,i,o,a,s,u,c=this,l=c.constructor,f=l.precision,p=l.rounding;if(c.isFinite()){if(c.isZero())return new l(c);if(c.abs().eq(1)&&f+4<=gt)return(a=Ct(l,f+4,p).times(.25)).s=c.s,a}else{if(!c.s)return new l(NaN);if(f+4<=gt)return(a=Ct(l,f+4,p).times(.5)).s=c.s,a}for(l.precision=s=f+10,l.rounding=1,e=r=Math.min(28,s/dt+2|0);e;--e)c=c.div(c.times(c).plus(1).sqrt().plus(1));for(tt=!1,t=Math.ceil(s/dt),n=1,u=c.times(c),a=new l(c),i=c;-1!==e;)if(i=i.times(u),o=a.minus(i.div(n+=2)),i=i.times(u),void 0!==(a=o.plus(i.div(n+=2))).d[t])for(e=t;a.d[e]===o.d[e]&&e--;);return r&&(a=a.times(2<<r-1)),tt=!0,Et(a,l.precision=f,l.rounding=p,!0)},yt.isFinite=function(){return!!this.d},yt.isInteger=yt.isInt=function(){return!!this.d&&st(this.e/dt)>this.d.length-2},yt.isNaN=function(){return!this.s},yt.isNegative=yt.isNeg=function(){return this.s<0},yt.isPositive=yt.isPos=function(){return this.s>0},yt.isZero=function(){return!!this.d&&0===this.d[0]},yt.lessThan=yt.lt=function(e){return this.cmp(e)<0},yt.lessThanOrEqualTo=yt.lte=function(e){return this.cmp(e)<1},yt.logarithm=yt.log=function(e){var t,r,n,i,o,a,s,u,c=this,l=c.constructor,f=l.precision,p=l.rounding;if(null==e)e=new l(10),t=!0;else{if(r=(e=new l(e)).d,e.s<0||!r||!r[0]||e.eq(1))return new l(NaN);t=e.eq(10)}if(r=c.d,c.s<0||!r||!r[0]||c.eq(1))return new l(r&&!r[0]?-1/0:1!=c.s?NaN:r?0:1/0);if(t)if(r.length>1)o=!0;else{for(i=r[0];i%10==0;)i/=10;o=1!==i}if(tt=!1,a=zt(c,s=f+5),n=t?Mt(l,s+10):zt(e,s),vt((u=Nt(a,n,s,1)).d,i=f,p))do{if(a=zt(c,s+=10),n=t?Mt(l,s+10):zt(e,s),u=Nt(a,n,s,1),!o){+xt(u.d).slice(i+1,i+15)+1==1e14&&(u=Et(u,f+1,0));break}}while(vt(u.d,i+=10,p));return tt=!0,Et(u,f,p)},yt.minus=yt.sub=function(e){var t,r,n,i,o,a,s,u,c,l,f,p,m=this,d=m.constructor;if(e=new d(e),!m.d||!e.d)return m.s&&e.s?m.d?e.s=-e.s:e=new d(e.d||m.s!==e.s?m:NaN):e=new d(NaN),e;if(m.s!=e.s)return e.s=-e.s,m.plus(e);if(c=m.d,p=e.d,s=d.precision,u=d.rounding,!c[0]||!p[0]){if(p[0])e.s=-e.s;else{if(!c[0])return new d(3===u?-0:0);e=new d(m)}return tt?Et(e,s,u):e}if(r=st(e.e/dt),l=st(m.e/dt),c=c.slice(),o=l-r){for((f=o<0)?(t=c,o=-o,a=p.length):(t=p,r=l,a=c.length),o>(n=Math.max(Math.ceil(s/dt),a)+2)&&(o=n,t.length=1),t.reverse(),n=o;n--;)t.push(0);t.reverse()}else{for((f=(n=c.length)<(a=p.length))&&(a=n),n=0;n<a;n++)if(c[n]!=p[n]){f=c[n]<p[n];break}o=0}for(f&&(t=c,c=p,p=t,e.s=-e.s),a=c.length,n=p.length-a;n>0;--n)c[a++]=0;for(n=p.length;n>o;){if(c[--n]<p[n]){for(i=n;i&&0===c[--i];)c[i]=mt-1;--c[i],c[n]+=mt}c[n]-=p[n]}for(;0===c[--a];)c.pop();for(;0===c[0];c.shift())--r;return c[0]?(e.d=c,e.e=St(c,r),tt?Et(e,s,u):e):new d(3===u?-0:0)},yt.modulo=yt.mod=function(e){var t,r=this,n=r.constructor;return e=new n(e),!r.d||!e.s||e.d&&!e.d[0]?new n(NaN):!e.d||r.d&&!r.d[0]?Et(new n(r),n.precision,n.rounding):(tt=!1,9==n.modulo?(t=Nt(r,e.abs(),0,3,1)).s*=e.s:t=Nt(r,e,0,n.modulo,1),t=t.times(e),tt=!0,r.minus(t))},yt.naturalExponential=yt.exp=function(){return _t(this)},yt.naturalLogarithm=yt.ln=function(){return zt(this)},yt.negated=yt.neg=function(){var e=new this.constructor(this);return e.s=-e.s,Et(e)},yt.plus=yt.add=function(e){var t,r,n,i,o,a,s,u,c,l,f=this,p=f.constructor;if(e=new p(e),!f.d||!e.d)return f.s&&e.s?f.d||(e=new p(e.d||f.s===e.s?f:NaN)):e=new p(NaN),e;if(f.s!=e.s)return e.s=-e.s,f.minus(e);if(c=f.d,l=e.d,s=p.precision,u=p.rounding,!c[0]||!l[0])return l[0]||(e=new p(f)),tt?Et(e,s,u):e;if(o=st(f.e/dt),n=st(e.e/dt),c=c.slice(),i=o-n){for(i<0?(r=c,i=-i,a=l.length):(r=l,n=o,a=c.length),i>(a=(o=Math.ceil(s/dt))>a?o+1:a+1)&&(i=a,r.length=1),r.reverse();i--;)r.push(0);r.reverse()}for((a=c.length)-(i=l.length)<0&&(i=a,r=l,l=c,c=r),t=0;i;)t=(c[--i]=c[i]+l[i]+t)/mt|0,c[i]%=mt;for(t&&(c.unshift(t),++n),a=c.length;0==c[--a];)c.pop();return e.d=c,e.e=St(c,n),tt?Et(e,s,u):e},yt.precision=yt.sd=function(e){var t,r=this;if(void 0!==e&&e!==!!e&&1!==e&&0!==e)throw Error(nt+e);return r.d?(t=Tt(r.d),e&&r.e+1>t&&(t=r.e+1)):t=NaN,t},yt.round=function(){var e=this,t=e.constructor;return Et(new t(e),e.e+1,t.rounding)},yt.sine=yt.sin=function(){var e,t,r=this,n=r.constructor;return r.isFinite()?r.isZero()?new n(r):(e=n.precision,t=n.rounding,n.precision=e+Math.max(r.e,r.sd())+dt,n.rounding=1,r=function(e,t){var r,n=t.d.length;if(n<3)return t.isZero()?t:Rt(e,2,t,t);r=(r=1.4*Math.sqrt(n))>16?16:0|r,t=Rt(e,2,t=t.times(1/Pt(5,r)),t);for(var i,o=new e(5),a=new e(16),s=new e(20);r--;)i=t.times(t),t=t.times(o.plus(i.times(a.times(i).minus(s))));return t}(n,jt(n,r)),n.precision=e,n.rounding=t,Et(We>2?r.neg():r,e,t,!0)):new n(NaN)},yt.squareRoot=yt.sqrt=function(){var e,t,r,n,i,o,a=this,s=a.d,u=a.e,c=a.s,l=a.constructor;if(1!==c||!s||!s[0])return new l(!c||c<0&&(!s||s[0])?NaN:s?a:1/0);for(tt=!1,0==(c=Math.sqrt(+a))||c==1/0?(((t=xt(s)).length+u)%2==0&&(t+="0"),c=Math.sqrt(t),u=st((u+1)/2)-(u<0||u%2),n=new l(t=c==1/0?"5e"+u:(t=c.toExponential()).slice(0,t.indexOf("e")+1)+u)):n=new l(c.toString()),r=(u=l.precision)+3;;)if(n=(o=n).plus(Nt(a,o,r+2,1)).times(.5),xt(o.d).slice(0,r)===(t=xt(n.d)).slice(0,r)){if("9999"!=(t=t.slice(r-3,r+1))&&(i||"4999"!=t)){+t&&(+t.slice(1)||"5"!=t.charAt(0))||(Et(n,u+1,1),e=!n.times(n).eq(a));break}if(!i&&(Et(o,u+1,0),o.times(o).eq(a))){n=o;break}r+=4,i=1}return tt=!0,Et(n,u,l.rounding,e)},yt.tangent=yt.tan=function(){var e,t,r=this,n=r.constructor;return r.isFinite()?r.isZero()?new n(r):(e=n.precision,t=n.rounding,n.precision=e+10,n.rounding=1,(r=r.sin()).s=1,r=Nt(r,new n(1).minus(r.times(r)).sqrt(),e+10,0),n.precision=e,n.rounding=t,Et(2==We||4==We?r.neg():r,e,t,!0)):new n(NaN)},yt.times=yt.mul=function(e){var t,r,n,i,o,a,s,u,c,l=this,f=l.constructor,p=l.d,m=(e=new f(e)).d;if(e.s*=l.s,!(p&&p[0]&&m&&m[0]))return new f(!e.s||p&&!p[0]&&!m||m&&!m[0]&&!p?NaN:p&&m?0*e.s:e.s/0);for(r=st(l.e/dt)+st(e.e/dt),(u=p.length)<(c=m.length)&&(o=p,p=m,m=o,a=u,u=c,c=a),o=[],n=a=u+c;n--;)o.push(0);for(n=c;--n>=0;){for(t=0,i=u+n;i>n;)s=o[i]+m[n]*p[i-n-1]+t,o[i--]=s%mt|0,t=s/mt|0;o[i]=(o[i]+t)%mt|0}for(;!o[--a];)o.pop();return t?++r:o.shift(),e.d=o,e.e=St(o,r),tt?Et(e,f.precision,f.rounding):e},yt.toBinary=function(e,t){return Ut(this,2,e,t)},yt.toDecimalPlaces=yt.toDP=function(e,t){var r=this,n=r.constructor;return r=new n(r),void 0===e?r:(bt(e,0,Je),void 0===t?t=n.rounding:bt(t,0,8),Et(r,e+r.e+1,t))},yt.toExponential=function(e,t){var r,n=this,i=n.constructor;return void 0===e?r=At(n,!0):(bt(e,0,Je),void 0===t?t=i.rounding:bt(t,0,8),r=At(n=Et(new i(n),e+1,t),!0,e+1)),n.isNeg()&&!n.isZero()?"-"+r:r},yt.toFixed=function(e,t){var r,n,i=this,o=i.constructor;return void 0===e?r=At(i):(bt(e,0,Je),void 0===t?t=o.rounding:bt(t,0,8),r=At(n=Et(new o(i),e+i.e+1,t),!1,e+n.e+1)),i.isNeg()&&!i.isZero()?"-"+r:r},yt.toFraction=function(e){var t,r,n,i,o,a,s,u,c,l,f,p,m=this,d=m.d,h=m.constructor;if(!d)return new h(m);if(c=r=new h(1),n=u=new h(0),a=(o=(t=new h(n)).e=Tt(d)-m.e-1)%dt,t.d[0]=ut(10,a<0?dt+a:a),null==e)e=o>0?t:c;else{if(!(s=new h(e)).isInt()||s.lt(c))throw Error(nt+s);e=s.gt(t)?o>0?t:c:s}for(tt=!1,s=new h(xt(d)),l=h.precision,h.precision=o=d.length*dt*2;f=Nt(s,t,0,1,1),1!=(i=r.plus(f.times(n))).cmp(e);)r=n,n=i,i=c,c=u.plus(f.times(i)),u=i,i=t,t=s.minus(f.times(i)),s=i;return i=Nt(e.minus(r),n,0,1,1),u=u.plus(i.times(c)),r=r.plus(i.times(n)),u.s=c.s=m.s,p=Nt(c,n,o,1).minus(m).abs().cmp(Nt(u,r,o,1).minus(m).abs())<1?[c,n]:[u,r],h.precision=l,tt=!0,p},yt.toHexadecimal=yt.toHex=function(e,t){return Ut(this,16,e,t)},yt.toNearest=function(e,t){var r=this,n=r.constructor;if(r=new n(r),null==e){if(!r.d)return r;e=new n(1),t=n.rounding}else{if(e=new n(e),void 0===t?t=n.rounding:bt(t,0,8),!r.d)return e.s?r:e;if(!e.d)return e.s&&(e.s=r.s),e}return e.d[0]?(tt=!1,r=Nt(r,e,0,t,1).times(e),tt=!0,Et(r)):(e.s=r.s,r=e),r},yt.toNumber=function(){return+this},yt.toOctal=function(e,t){return Ut(this,8,e,t)},yt.toPower=yt.pow=function(e){var t,r,n,i,o,a,s=this,u=s.constructor,c=+(e=new u(e));if(!(s.d&&e.d&&s.d[0]&&e.d[0]))return new u(ut(+s,c));if((s=new u(s)).eq(1))return s;if(n=u.precision,o=u.rounding,e.eq(1))return Et(s,n,o);if((t=st(e.e/dt))>=e.d.length-1&&(r=c<0?-c:c)<=9007199254740991)return i=Ft(u,s,r,n),e.s<0?new u(1).div(i):Et(i,n,o);if((a=s.s)<0){if(t<e.d.length-1)return new u(NaN);if(1&e.d[t]||(a=1),0==s.e&&1==s.d[0]&&1==s.d.length)return s.s=a,s}return(t=0!=(r=ut(+s,c))&&isFinite(r)?new u(r+"").e:st(c*(Math.log("0."+xt(s.d))/Math.LN10+s.e+1)))>u.maxE+1||t<u.minE-1?new u(t>0?a/0:0):(tt=!1,u.rounding=s.s=1,r=Math.min(12,(t+"").length),(i=_t(e.times(zt(s,n+r)),n)).d&&vt((i=Et(i,n+5,1)).d,n,o)&&(t=n+10,+xt((i=Et(_t(e.times(zt(s,t+r)),t),t+5,1)).d).slice(n+1,n+15)+1==1e14&&(i=Et(i,n+1,0))),i.s=a,tt=!0,u.rounding=o,Et(i,n,o))},yt.toPrecision=function(e,t){var r,n=this,i=n.constructor;return void 0===e?r=At(n,n.e<=i.toExpNeg||n.e>=i.toExpPos):(bt(e,1,Je),void 0===t?t=i.rounding:bt(t,0,8),r=At(n=Et(new i(n),e,t),e<=n.e||n.e<=i.toExpNeg,e)),n.isNeg()&&!n.isZero()?"-"+r:r},yt.toSignificantDigits=yt.toSD=function(e,t){var r=this.constructor;return void 0===e?(e=r.precision,t=r.rounding):(bt(e,1,Je),void 0===t?t=r.rounding:bt(t,0,8)),Et(new r(this),e,t)},yt.toString=function(){var e=this,t=e.constructor,r=At(e,e.e<=t.toExpNeg||e.e>=t.toExpPos);return e.isNeg()&&!e.isZero()?"-"+r:r},yt.truncated=yt.trunc=function(){return Et(new this.constructor(this),this.e+1,1)},yt.valueOf=yt.toJSON=function(){var e=this,t=e.constructor,r=At(e,e.e<=t.toExpNeg||e.e>=t.toExpPos);return e.isNeg()?"-"+r:r};var Nt=function(){function e(e,t,r){var n,i=0,o=e.length;for(e=e.slice();o--;)n=e[o]*t+i,e[o]=n%r|0,i=n/r|0;return i&&e.unshift(i),e}function t(e,t,r,n){var i,o;if(r!=n)o=r>n?1:-1;else for(i=o=0;i<r;i++)if(e[i]!=t[i]){o=e[i]>t[i]?1:-1;break}return o}function r(e,t,r,n){for(var i=0;r--;)e[r]-=i,i=e[r]<t[r]?1:0,e[r]=i*n+e[r]-t[r];for(;!e[0]&&e.length>1;)e.shift()}return function(n,i,o,a,s,u){var c,l,f,p,m,d,h,g,y,x,b,v,w,N,E,A,S,M,C,T,D=n.constructor,F=n.s==i.s?1:-1,B=n.d,O=i.d;if(!(B&&B[0]&&O&&O[0]))return new D(n.s&&i.s&&(B?!O||B[0]!=O[0]:O)?B&&0==B[0]||!O?0*F:F/0:NaN);for(u?(m=1,l=n.e-i.e):(u=mt,m=dt,l=st(n.e/m)-st(i.e/m)),C=O.length,S=B.length,x=(y=new D(F)).d=[],f=0;O[f]==(B[f]||0);f++);if(O[f]>(B[f]||0)&&l--,null==o?(N=o=D.precision,a=D.rounding):N=s?o+(n.e-i.e)+1:o,N<0)x.push(1),d=!0;else{if(N=N/m+2|0,f=0,1==C){for(p=0,O=O[0],N++;(f<S||p)&&N--;f++)E=p*u+(B[f]||0),x[f]=E/O|0,p=E%O|0;d=p||f<S}else{for((p=u/(O[0]+1)|0)>1&&(O=e(O,p,u),B=e(B,p,u),C=O.length,S=B.length),A=C,v=(b=B.slice(0,C)).length;v<C;)b[v++]=0;(T=O.slice()).unshift(0),M=O[0],O[1]>=u/2&&++M;do{p=0,(c=t(O,b,C,v))<0?(w=b[0],C!=v&&(w=w*u+(b[1]||0)),(p=w/M|0)>1?(p>=u&&(p=u-1),1==(c=t(h=e(O,p,u),b,g=h.length,v=b.length))&&(p--,r(h,C<g?T:O,g,u))):(0==p&&(c=p=1),h=O.slice()),(g=h.length)<v&&h.unshift(0),r(b,h,v,u),-1==c&&(c=t(O,b,C,v=b.length))<1&&(p++,r(b,C<v?T:O,v,u)),v=b.length):0===c&&(p++,b=[0]),x[f++]=p,c&&b[0]?b[v++]=B[A]||0:(b=[B[A]],v=1)}while((A++<S||void 0!==b[0])&&N--);d=void 0!==b[0]}x[0]||x.shift()}if(1==m)y.e=l,Ve=d;else{for(f=1,p=x[0];p>=10;p/=10)f++;y.e=f+l*m-1,Et(y,s?o+y.e+1:o,a,d)}return y}}();function Et(e,t,r,n){var i,o,a,s,u,c,l,f,p,m=e.constructor;e:if(null!=t){if(!(f=e.d))return e;for(i=1,s=f[0];s>=10;s/=10)i++;if((o=t-i)<0)o+=dt,a=t,u=(l=f[p=0])/ut(10,i-a-1)%10|0;else if((p=Math.ceil((o+1)/dt))>=(s=f.length)){if(!n)break e;for(;s++<=p;)f.push(0);l=u=0,i=1,a=(o%=dt)-dt+1}else{for(l=s=f[p],i=1;s>=10;s/=10)i++;u=(a=(o%=dt)-dt+i)<0?0:l/ut(10,i-a-1)%10|0}if(n=n||t<0||void 0!==f[p+1]||(a<0?l:l%ut(10,i-a-1)),c=r<4?(u||n)&&(0==r||r==(e.s<0?3:2)):u>5||5==u&&(4==r||n||6==r&&(o>0?a>0?l/ut(10,i-a):0:f[p-1])%10&1||r==(e.s<0?8:7)),t<1||!f[0])return f.length=0,c?(t-=e.e+1,f[0]=ut(10,(dt-t%dt)%dt),e.e=-t||0):f[0]=e.e=0,e;if(0==o?(f.length=p,s=1,p--):(f.length=p+1,s=ut(10,dt-o),f[p]=a>0?(l/ut(10,i-a)%ut(10,a)|0)*s:0),c)for(;;){if(0==p){for(o=1,a=f[0];a>=10;a/=10)o++;for(a=f[0]+=s,s=1;a>=10;a/=10)s++;o!=s&&(e.e++,f[0]==mt&&(f[0]=1));break}if(f[p]+=s,f[p]!=mt)break;f[p--]=0,s=1}for(o=f.length;0===f[--o];)f.pop()}return tt&&(e.e>m.maxE?(e.d=null,e.e=NaN):e.e<m.minE&&(e.e=0,e.d=[0])),e}function At(e,t,r){if(!e.isFinite())return It(e);var n,i=e.e,o=xt(e.d),a=o.length;return t?(r&&(n=r-a)>0?o=o.charAt(0)+"."+o.slice(1)+Dt(n):a>1&&(o=o.charAt(0)+"."+o.slice(1)),o=o+(e.e<0?"e":"e+")+e.e):i<0?(o="0."+Dt(-i-1)+o,r&&(n=r-a)>0&&(o+=Dt(n))):i>=a?(o+=Dt(i+1-a),r&&(n=r-i-1)>0&&(o=o+"."+Dt(n))):((n=i+1)<a&&(o=o.slice(0,n)+"."+o.slice(n)),r&&(n=r-a)>0&&(i+1===a&&(o+="."),o+=Dt(n))),o}function St(e,t){var r=e[0];for(t*=dt;r>=10;r/=10)t++;return t}function Mt(e,t,r){if(t>ht)throw tt=!0,r&&(e.precision=r),Error(it);return Et(new e(Qe),t,1,!0)}function Ct(e,t,r){if(t>gt)throw Error(it);return Et(new e(Ke),t,r,!0)}function Tt(e){var t=e.length-1,r=t*dt+1;if(t=e[t]){for(;t%10==0;t/=10)r--;for(t=e[0];t>=10;t/=10)r++}return r}function Dt(e){for(var t="";e--;)t+="0";return t}function Ft(e,t,r,n){var i,o=new e(1),a=Math.ceil(n/dt+4);for(tt=!1;;){if(r%2&&Lt((o=o.times(t)).d,a)&&(i=!0),0===(r=st(r/2))){r=o.d.length-1,i&&0===o.d[r]&&++o.d[r];break}Lt((t=t.times(t)).d,a)}return tt=!0,o}function Bt(e){return 1&e.d[e.d.length-1]}function Ot(e,t,r){for(var n,i=new e(t[0]),o=0;++o<t.length;){if(!(n=new e(t[o])).s){i=n;break}i[r](n)&&(i=n)}return i}function _t(e,t){var r,n,i,o,a,s,u,c=0,l=0,f=0,p=e.constructor,m=p.rounding,d=p.precision;if(!e.d||!e.d[0]||e.e>17)return new p(e.d?e.d[0]?e.s<0?0:1/0:1:e.s?e.s<0?0:e:NaN);for(null==t?(tt=!1,u=d):u=t,s=new p(.03125);e.e>-2;)e=e.times(s),f+=5;for(u+=n=Math.log(ut(2,f))/Math.LN10*2+5|0,r=o=a=new p(1),p.precision=u;;){if(o=Et(o.times(e),u,1),r=r.times(++l),xt((s=a.plus(Nt(o,r,u,1))).d).slice(0,u)===xt(a.d).slice(0,u)){for(i=f;i--;)a=Et(a.times(a),u,1);if(null!=t)return p.precision=d,a;if(!(c<3&&vt(a.d,u-n,m,c)))return Et(a,p.precision=d,m,tt=!0);p.precision=u+=10,r=o=s=new p(1),l=0,c++}a=s}}function zt(e,t){var r,n,i,o,a,s,u,c,l,f,p,m=1,d=e,h=d.d,g=d.constructor,y=g.rounding,x=g.precision;if(d.s<0||!h||!h[0]||!d.e&&1==h[0]&&1==h.length)return new g(h&&!h[0]?-1/0:1!=d.s?NaN:h?0:d);if(null==t?(tt=!1,l=x):l=t,g.precision=l+=10,n=(r=xt(h)).charAt(0),!(Math.abs(o=d.e)<15e14))return c=Mt(g,l+2,x).times(o+""),d=zt(new g(n+"."+r.slice(1)),l-10).plus(c),g.precision=x,null==t?Et(d,x,y,tt=!0):d;for(;n<7&&1!=n||1==n&&r.charAt(1)>3;)n=(r=xt((d=d.times(e)).d)).charAt(0),m++;for(o=d.e,n>1?(d=new g("0."+r),o++):d=new g(n+"."+r.slice(1)),f=d,u=a=d=Nt(d.minus(1),d.plus(1),l,1),p=Et(d.times(d),l,1),i=3;;){if(a=Et(a.times(p),l,1),xt((c=u.plus(Nt(a,new g(i),l,1))).d).slice(0,l)===xt(u.d).slice(0,l)){if(u=u.times(2),0!==o&&(u=u.plus(Mt(g,l+2,x).times(o+""))),u=Nt(u,new g(m),l,1),null!=t)return g.precision=x,u;if(!vt(u.d,l-10,y,s))return Et(u,g.precision=x,y,tt=!0);g.precision=l+=10,c=a=d=Nt(f.minus(1),f.plus(1),l,1),p=Et(d.times(d),l,1),i=s=1}u=c,i+=2}}function It(e){return String(e.s*e.s/0)}function kt(e,t){var r,n,i;for((r=t.indexOf("."))>-1&&(t=t.replace(".","")),(n=t.search(/e/i))>0?(r<0&&(r=n),r+=+t.slice(n+1),t=t.substring(0,n)):r<0&&(r=t.length),n=0;48===t.charCodeAt(n);n++);for(i=t.length;48===t.charCodeAt(i-1);--i);if(t=t.slice(n,i)){if(i-=n,e.e=r=r-n-1,e.d=[],n=(r+1)%dt,r<0&&(n+=dt),n<i){for(n&&e.d.push(+t.slice(0,n)),i-=dt;n<i;)e.d.push(+t.slice(n,n+=dt));t=t.slice(n),n=dt-t.length}else n-=i;for(;n--;)t+="0";e.d.push(+t),tt&&(e.e>e.constructor.maxE?(e.d=null,e.e=NaN):e.e<e.constructor.minE&&(e.e=0,e.d=[0]))}else e.e=0,e.d=[0];return e}function qt(e,t){var r,n,i,o,a,s,u,c,l;if(t.indexOf("_")>-1){if(t=t.replace(/(\d)_(?=\d)/g,"$1"),pt.test(t))return kt(e,t)}else if("Infinity"===t||"NaN"===t)return+t||(e.s=NaN),e.e=NaN,e.d=null,e;if(lt.test(t))r=16,t=t.toLowerCase();else if(ct.test(t))r=2;else{if(!ft.test(t))throw Error(nt+t);r=8}for((o=t.search(/p/i))>0?(u=+t.slice(o+1),t=t.substring(2,o)):t=t.slice(2),a=(o=t.indexOf("."))>=0,n=e.constructor,a&&(o=(s=(t=t.replace(".","")).length)-o,i=Ft(n,new n(r),o,2*o)),o=l=(c=wt(t,r,mt)).length-1;0===c[o];--o)c.pop();return o<0?new n(0*e.s):(e.e=St(c,l),e.d=c,tt=!1,a&&(e=Nt(e,i,4*s)),u&&(e=e.times(Math.abs(u)<54?ut(2,u):Dr.pow(2,u))),tt=!0,e)}function Rt(e,t,r,n,i){var o,a,s,u,c=e.precision,l=Math.ceil(c/dt);for(tt=!1,u=r.times(r),s=new e(n);;){if(a=Nt(s.times(u),new e(t++*t++),c,1),s=i?n.plus(a):n.minus(a),n=Nt(a.times(u),new e(t++*t++),c,1),void 0!==(a=s.plus(n)).d[l]){for(o=l;a.d[o]===s.d[o]&&o--;);if(-1==o)break}o=s,s=n,n=a,a=o}return tt=!0,a.d.length=l+1,a}function Pt(e,t){for(var r=e;--t;)r*=e;return r}function jt(e,t){var r,n=t.s<0,i=Ct(e,e.precision,1),o=i.times(.5);if((t=t.abs()).lte(o))return We=n?4:1,t;if((r=t.divToInt(i)).isZero())We=n?3:2;else{if((t=t.minus(r.times(i))).lte(o))return We=Bt(r)?n?2:3:n?4:1,t;We=Bt(r)?n?1:4:n?3:2}return t.minus(i).abs()}function Ut(e,t,r,n){var i,o,a,s,u,c,l,f,p,m=e.constructor,d=void 0!==r;if(d?(bt(r,1,Je),void 0===n?n=m.rounding:bt(n,0,8)):(r=m.precision,n=m.rounding),e.isFinite()){for(d?(i=2,16==t?r=4*r-3:8==t&&(r=3*r-2)):i=t,(a=(l=At(e)).indexOf("."))>=0&&(l=l.replace(".",""),(p=new m(1)).e=l.length-a,p.d=wt(At(p),10,i),p.e=p.d.length),o=u=(f=wt(l,10,i)).length;0==f[--u];)f.pop();if(f[0]){if(a<0?o--:((e=new m(e)).d=f,e.e=o,f=(e=Nt(e,p,r,n,0,i)).d,o=e.e,c=Ve),a=f[r],s=i/2,c=c||void 0!==f[r+1],c=n<4?(void 0!==a||c)&&(0===n||n===(e.s<0?3:2)):a>s||a===s&&(4===n||c||6===n&&1&f[r-1]||n===(e.s<0?8:7)),f.length=r,c)for(;++f[--r]>i-1;)f[r]=0,r||(++o,f.unshift(1));for(u=f.length;!f[u-1];--u);for(a=0,l="";a<u;a++)l+=Xe.charAt(f[a]);if(d){if(u>1)if(16==t||8==t){for(a=16==t?4:3,--u;u%a;u++)l+="0";for(u=(f=wt(l,i,t)).length;!f[u-1];--u);for(a=1,l="1.";a<u;a++)l+=Xe.charAt(f[a])}else l=l.charAt(0)+"."+l.slice(1);l=l+(o<0?"p":"p+")+o}else if(o<0){for(;++o;)l="0"+l;l="0."+l}else if(++o>u)for(o-=u;o--;)l+="0";else o<u&&(l=l.slice(0,o)+"."+l.slice(o))}else l=d?"0p+0":"0";l=(16==t?"0x":2==t?"0b":8==t?"0o":"")+l}else l=It(e);return e.s<0?"-"+l:l}function Lt(e,t){if(e.length>t)return e.length=t,!0}function $t(e){return new this(e).abs()}function Ht(e){return new this(e).acos()}function Gt(e){return new this(e).acosh()}function Zt(e,t){return new this(e).plus(t)}function Vt(e){return new this(e).asin()}function Wt(e){return new this(e).asinh()}function Yt(e){return new this(e).atan()}function Jt(e){return new this(e).atanh()}function Xt(e,t){e=new this(e),t=new this(t);var r,n=this.precision,i=this.rounding,o=n+4;return e.s&&t.s?e.d||t.d?!t.d||e.isZero()?(r=t.s<0?Ct(this,n,i):new this(0)).s=e.s:!e.d||t.isZero()?(r=Ct(this,o,1).times(.5)).s=e.s:t.s<0?(this.precision=o,this.rounding=1,r=this.atan(Nt(e,t,o,1)),t=Ct(this,o,1),this.precision=n,this.rounding=i,r=e.s<0?r.minus(t):r.plus(t)):r=this.atan(Nt(e,t,o,1)):(r=Ct(this,o,1).times(t.s>0?.25:.75)).s=e.s:r=new this(NaN),r}function Qt(e){return new this(e).cbrt()}function Kt(e){return Et(e=new this(e),e.e+1,2)}function er(e,t,r){return new this(e).clamp(t,r)}function tr(e){if(!e||"object"!=typeof e)throw Error(rt+"Object expected");var t,r,n,i=!0===e.defaults,o=["precision",1,Je,"rounding",0,8,"toExpNeg",-Ye,0,"toExpPos",0,Ye,"maxE",0,Ye,"minE",-Ye,0,"modulo",0,9];for(t=0;t<o.length;t+=3)if(r=o[t],i&&(this[r]=et[r]),void 0!==(n=e[r])){if(!(st(n)===n&&n>=o[t+1]&&n<=o[t+2]))throw Error(nt+r+": "+n);this[r]=n}if(r="crypto",i&&(this[r]=et[r]),void 0!==(n=e[r])){if(!0!==n&&!1!==n&&0!==n&&1!==n)throw Error(nt+r+": "+n);if(n){if("undefined"==typeof crypto||!crypto||!crypto.getRandomValues&&!crypto.randomBytes)throw Error(ot);this[r]=!0}else this[r]=!1}return this}function rr(e){return new this(e).cos()}function nr(e){return new this(e).cosh()}function ir(e,t){return new this(e).div(t)}function or(e){return new this(e).exp()}function ar(e){return Et(e=new this(e),e.e+1,3)}function sr(){var e,t,r=new this(0);for(tt=!1,e=0;e<arguments.length;)if((t=new this(arguments[e++])).d)r.d&&(r=r.plus(t.times(t)));else{if(t.s)return tt=!0,new this(1/0);r=t}return tt=!0,r.sqrt()}function ur(e){return e instanceof Dr||e&&e.toStringTag===at||!1}function cr(e){return new this(e).ln()}function lr(e,t){return new this(e).log(t)}function fr(e){return new this(e).log(2)}function pr(e){return new this(e).log(10)}function mr(){return Ot(this,arguments,"lt")}function dr(){return Ot(this,arguments,"gt")}function hr(e,t){return new this(e).mod(t)}function gr(e,t){return new this(e).mul(t)}function yr(e,t){return new this(e).pow(t)}function xr(e){var t,r,n,i,o=0,a=new this(1),s=[];if(void 0===e?e=this.precision:bt(e,1,Je),n=Math.ceil(e/dt),this.crypto)if(crypto.getRandomValues)for(t=crypto.getRandomValues(new Uint32Array(n));o<n;)(i=t[o])>=429e7?t[o]=crypto.getRandomValues(new Uint32Array(1))[0]:s[o++]=i%1e7;else{if(!crypto.randomBytes)throw Error(ot);for(t=crypto.randomBytes(n*=4);o<n;)(i=t[o]+(t[o+1]<<8)+(t[o+2]<<16)+((127&t[o+3])<<24))>=214e7?crypto.randomBytes(4).copy(t,o):(s.push(i%1e7),o+=4);o=n/4}else for(;o<n;)s[o++]=1e7*Math.random()|0;for(n=s[--o],e%=dt,n&&e&&(i=ut(10,dt-e),s[o]=(n/i|0)*i);0===s[o];o--)s.pop();if(o<0)r=0,s=[0];else{for(r=-1;0===s[0];r-=dt)s.shift();for(n=1,i=s[0];i>=10;i/=10)n++;n<dt&&(r-=dt-n)}return a.e=r,a.d=s,a}function br(e){return Et(e=new this(e),e.e+1,this.rounding)}function vr(e){return(e=new this(e)).d?e.d[0]?e.s:0*e.s:e.s||NaN}function wr(e){return new this(e).sin()}function Nr(e){return new this(e).sinh()}function Er(e){return new this(e).sqrt()}function Ar(e,t){return new this(e).sub(t)}function Sr(){var e=0,t=arguments,r=new this(t[e]);for(tt=!1;r.s&&++e<t.length;)r=r.plus(t[e]);return tt=!0,Et(r,this.precision,this.rounding)}function Mr(e){return new this(e).tan()}function Cr(e){return new this(e).tanh()}function Tr(e){return Et(e=new this(e),e.e+1,1)}yt[Symbol.for("nodejs.util.inspect.custom")]=yt.toString,yt[Symbol.toStringTag]="Decimal";var Dr=yt.constructor=function e(t){var r,n,i;function o(e){var t,r,n,i=this;if(!(i instanceof o))return new o(e);if(i.constructor=o,ur(e))return i.s=e.s,void(tt?!e.d||e.e>o.maxE?(i.e=NaN,i.d=null):e.e<o.minE?(i.e=0,i.d=[0]):(i.e=e.e,i.d=e.d.slice()):(i.e=e.e,i.d=e.d?e.d.slice():e.d));if("number"==(n=typeof e)){if(0===e)return i.s=1/e<0?-1:1,i.e=0,void(i.d=[0]);if(e<0?(e=-e,i.s=-1):i.s=1,e===~~e&&e<1e7){for(t=0,r=e;r>=10;r/=10)t++;return void(tt?t>o.maxE?(i.e=NaN,i.d=null):t<o.minE?(i.e=0,i.d=[0]):(i.e=t,i.d=[e]):(i.e=t,i.d=[e]))}return 0*e!=0?(e||(i.s=NaN),i.e=NaN,void(i.d=null)):kt(i,e.toString())}if("string"!==n)throw Error(nt+e);return 45===(r=e.charCodeAt(0))?(e=e.slice(1),i.s=-1):(43===r&&(e=e.slice(1)),i.s=1),pt.test(e)?kt(i,e):qt(i,e)}if(o.prototype=yt,o.ROUND_UP=0,o.ROUND_DOWN=1,o.ROUND_CEIL=2,o.ROUND_FLOOR=3,o.ROUND_HALF_UP=4,o.ROUND_HALF_DOWN=5,o.ROUND_HALF_EVEN=6,o.ROUND_HALF_CEIL=7,o.ROUND_HALF_FLOOR=8,o.EUCLID=9,o.config=o.set=tr,o.clone=e,o.isDecimal=ur,o.abs=$t,o.acos=Ht,o.acosh=Gt,o.add=Zt,o.asin=Vt,o.asinh=Wt,o.atan=Yt,o.atanh=Jt,o.atan2=Xt,o.cbrt=Qt,o.ceil=Kt,o.clamp=er,o.cos=rr,o.cosh=nr,o.div=ir,o.exp=or,o.floor=ar,o.hypot=sr,o.ln=cr,o.log=lr,o.log10=pr,o.log2=fr,o.max=mr,o.min=dr,o.mod=hr,o.mul=gr,o.pow=yr,o.random=xr,o.round=br,o.sign=vr,o.sin=wr,o.sinh=Nr,o.sqrt=Er,o.sub=Ar,o.sum=Sr,o.tan=Mr,o.tanh=Cr,o.trunc=Tr,void 0===t&&(t={}),t&&!0!==t.defaults)for(i=["precision","rounding","toExpNeg","toExpPos","maxE","minE","modulo","crypto"],r=0;r<i.length;)t.hasOwnProperty(n=i[r++])||(t[n]=this[n]);return o.config(t),o}(et);Qe=new Dr(Qe),Ke=new Dr(Ke);const Fr=Dr,Br=Se("BigNumber",["?on","config"],(e=>{let{on:t,config:r}=e;const n=Fr.clone({precision:r.precision,modulo:Fr.EUCLID});return n.prototype=Object.create(n.prototype),n.prototype.type="BigNumber",n.prototype.isBigNumber=!0,n.prototype.toJSON=function(){return{mathjs:"BigNumber",value:this.toString()}},n.fromJSON=function(e){return new n(e.value)},t&&t("config",(function(e,t){e.precision!==t.precision&&n.config({precision:e.precision})})),n}),{isClass:!0});var Or=r(5716);const _r=Se("Complex",[],(()=>(Object.defineProperty(Or,"name",{value:"Complex"}),Or.prototype.constructor=Or,Or.prototype.type="Complex",Or.prototype.isComplex=!0,Or.prototype.toJSON=function(){return{mathjs:"Complex",re:this.re,im:this.im}},Or.prototype.toPolar=function(){return{r:this.abs(),phi:this.arg()}},Or.prototype.format=function(e){let r="",n=this.im,i=this.re;const o=te(this.re,e),a=te(this.im,e),s=t(e)?e:e?e.precision:null;if(null!==s){const e=Math.pow(10,-s);Math.abs(i/n)<e&&(i=0),Math.abs(n/i)<e&&(n=0)}return r=0===n?o:0===i?1===n?"i":-1===n?"-i":a+"i":n<0?-1===n?o+" - i":o+" - "+a.substring(1)+"i":1===n?o+" + i":o+" + "+a+"i",r},Or.fromPolar=function(e){switch(arguments.length){case 1:{const e=arguments[0];if("object"==typeof e)return Or(e);throw new TypeError("Input has to be an object with r and phi keys.")}case 2:{const e=arguments[0];let r=arguments[1];if(t(e)){if(u(r)&&r.hasBase("ANGLE")&&(r=r.toNumber("rad")),t(r))return new Or({r:e,phi:r});throw new TypeError("Phi is not a number nor an angle unit.")}throw new TypeError("Radius r is not a number.")}default:throw new SyntaxError("Wrong number of arguments in function fromPolar")}},Or.prototype.valueOf=Or.prototype.toString,Or.fromJSON=function(e){return new Or(e)},Or.compare=function(e,t){return e.re>t.re?1:e.re<t.re?-1:e.im>t.im?1:e.im<t.im?-1:0},Or)),{isClass:!0});var zr={s:1,n:0,d:1};function Ir(e,t){if(isNaN(e=parseInt(e,10)))throw Lr();return e*t}function kr(e,t){if(0===t)throw Ur();var r=Object.create(jr.prototype);r.s=e<0?-1:1;var n=Pr(e=e<0?-e:e,t);return r.n=e/n,r.d=t/n,r}function qr(e){for(var t={},r=e,n=2,i=4;i<=r;){for(;r%n==0;)r/=n,t[n]=(t[n]||0)+1;i+=1+2*n++}return r!==e?r>1&&(t[r]=(t[r]||0)+1):t[e]=(t[e]||0)+1,t}var Rr=function(e,t){var r,n=0,i=1,o=1,a=0,s=0,u=0,c=1,l=1,f=0,p=1,m=1,d=1,h=1e7;if(null==e);else if(void 0!==t){if(o=(n=e)*(i=t),n%1!=0||i%1!=0)throw $r()}else switch(typeof e){case"object":if("d"in e&&"n"in e)n=e.n,i=e.d,"s"in e&&(n*=e.s);else{if(!(0 in e))throw Lr();n=e[0],1 in e&&(i=e[1])}o=n*i;break;case"number":if(e<0&&(o=e,e=-e),e%1==0)n=e;else if(e>0){for(e>=1&&(e/=l=Math.pow(10,Math.floor(1+Math.log(e)/Math.LN10)));p<=h&&d<=h;){if(e===(r=(f+m)/(p+d))){p+d<=h?(n=f+m,i=p+d):d>p?(n=m,i=d):(n=f,i=p);break}e>r?(f+=m,p+=d):(m+=f,d+=p),p>h?(n=m,i=d):(n=f,i=p)}n*=l}else(isNaN(e)||isNaN(t))&&(i=n=NaN);break;case"string":if(null===(p=e.match(/\d+|./g)))throw Lr();if("-"===p[f]?(o=-1,f++):"+"===p[f]&&f++,p.length===f+1?s=Ir(p[f++],o):"."===p[f+1]||"."===p[f]?("."!==p[f]&&(a=Ir(p[f++],o)),(1+ ++f===p.length||"("===p[f+1]&&")"===p[f+3]||"'"===p[f+1]&&"'"===p[f+3])&&(s=Ir(p[f],o),c=Math.pow(10,p[f].length),f++),("("===p[f]&&")"===p[f+2]||"'"===p[f]&&"'"===p[f+2])&&(u=Ir(p[f+1],o),l=Math.pow(10,p[f+1].length)-1,f+=3)):"/"===p[f+1]||":"===p[f+1]?(s=Ir(p[f],o),c=Ir(p[f+2],1),f+=3):"/"===p[f+3]&&" "===p[f+1]&&(a=Ir(p[f],o),s=Ir(p[f+2],o),c=Ir(p[f+4],1),f+=5),p.length<=f){o=n=u+(i=c*l)*a+l*s;break}default:throw Lr()}if(0===i)throw Ur();zr.s=o<0?-1:1,zr.n=Math.abs(n),zr.d=Math.abs(i)};function Pr(e,t){if(!e)return t;if(!t)return e;for(;;){if(!(e%=t))return t;if(!(t%=e))return e}}function jr(e,t){if(Rr(e,t),!(this instanceof jr))return kr(zr.s*zr.n,zr.d);e=Pr(zr.d,zr.n),this.s=zr.s,this.n=zr.n/e,this.d=zr.d/e}var Ur=function(){return new Error("Division by Zero")},Lr=function(){return new Error("Invalid argument")},$r=function(){return new Error("Parameters must be integer")};jr.prototype={s:1,n:0,d:1,abs:function(){return kr(this.n,this.d)},neg:function(){return kr(-this.s*this.n,this.d)},add:function(e,t){return Rr(e,t),kr(this.s*this.n*zr.d+zr.s*this.d*zr.n,this.d*zr.d)},sub:function(e,t){return Rr(e,t),kr(this.s*this.n*zr.d-zr.s*this.d*zr.n,this.d*zr.d)},mul:function(e,t){return Rr(e,t),kr(this.s*zr.s*this.n*zr.n,this.d*zr.d)},div:function(e,t){return Rr(e,t),kr(this.s*zr.s*this.n*zr.d,this.d*zr.n)},clone:function(){return kr(this.s*this.n,this.d)},mod:function(e,t){if(isNaN(this.n)||isNaN(this.d))return new jr(NaN);if(void 0===e)return kr(this.s*this.n%this.d,1);if(Rr(e,t),0===zr.n&&0===this.d)throw Ur();return kr(this.s*(zr.d*this.n)%(zr.n*this.d),zr.d*this.d)},gcd:function(e,t){return Rr(e,t),kr(Pr(zr.n,this.n)*Pr(zr.d,this.d),zr.d*this.d)},lcm:function(e,t){return Rr(e,t),0===zr.n&&0===this.n?kr(0,1):kr(zr.n*this.n,Pr(zr.n,this.n)*Pr(zr.d,this.d))},ceil:function(e){return e=Math.pow(10,e||0),isNaN(this.n)||isNaN(this.d)?new jr(NaN):kr(Math.ceil(e*this.s*this.n/this.d),e)},floor:function(e){return e=Math.pow(10,e||0),isNaN(this.n)||isNaN(this.d)?new jr(NaN):kr(Math.floor(e*this.s*this.n/this.d),e)},round:function(e){return e=Math.pow(10,e||0),isNaN(this.n)||isNaN(this.d)?new jr(NaN):kr(Math.round(e*this.s*this.n/this.d),e)},roundTo:function(e,t){return Rr(e,t),kr(this.s*Math.round(this.n*zr.d/(this.d*zr.n))*zr.n,zr.d)},inverse:function(){return kr(this.s*this.d,this.n)},pow:function(e,t){if(Rr(e,t),1===zr.d)return zr.s<0?kr(Math.pow(this.s*this.d,zr.n),Math.pow(this.n,zr.n)):kr(Math.pow(this.s*this.n,zr.n),Math.pow(this.d,zr.n));if(this.s<0)return null;var r=qr(this.n),n=qr(this.d),i=1,o=1;for(var a in r)if("1"!==a){if("0"===a){i=0;break}if(r[a]*=zr.n,r[a]%zr.d!=0)return null;r[a]/=zr.d,i*=Math.pow(a,r[a])}for(var a in n)if("1"!==a){if(n[a]*=zr.n,n[a]%zr.d!=0)return null;n[a]/=zr.d,o*=Math.pow(a,n[a])}return zr.s<0?kr(o,i):kr(i,o)},equals:function(e,t){return Rr(e,t),this.s*this.n*zr.d==zr.s*zr.n*this.d},compare:function(e,t){Rr(e,t);var r=this.s*this.n*zr.d-zr.s*zr.n*this.d;return(0<r)-(r<0)},simplify:function(e){if(isNaN(this.n)||isNaN(this.d))return this;e=e||.001;for(var t=this.abs(),r=t.toContinued(),n=1;n<r.length;n++){for(var i=kr(r[n-1],1),o=n-2;o>=0;o--)i=i.inverse().add(r[o]);if(Math.abs(i.sub(t).valueOf())<e)return i.mul(this.s)}return this},divisible:function(e,t){return Rr(e,t),!(!(zr.n*this.d)||this.n*zr.d%(zr.n*this.d))},valueOf:function(){return this.s*this.n/this.d},toFraction:function(e){var t,r="",n=this.n,i=this.d;return this.s<0&&(r+="-"),1===i?r+=n:(e&&(t=Math.floor(n/i))>0&&(r+=t,r+=" ",n%=i),r+=n,r+="/",r+=i),r},toLatex:function(e){var t,r="",n=this.n,i=this.d;return this.s<0&&(r+="-"),1===i?r+=n:(e&&(t=Math.floor(n/i))>0&&(r+=t,n%=i),r+="\\frac{",r+=n,r+="}{",r+=i,r+="}"),r},toContinued:function(){var e,t=this.n,r=this.d,n=[];if(isNaN(t)||isNaN(r))return n;do{n.push(Math.floor(t/r)),e=t%r,t=r,r=e}while(1!==t);return n},toString:function(e){var t=this.n,r=this.d;if(isNaN(t)||isNaN(r))return"NaN";e=e||15;var n=function(e,t){for(;t%2==0;t/=2);for(;t%5==0;t/=5);if(1===t)return 0;for(var r=10%t,n=1;1!==r;n++)if(r=10*r%t,n>2e3)return 0;return n}(0,r),i=function(e,t,r){for(var n=1,i=function(e,t,r){for(var n=1;t>0;e=e*e%r,t>>=1)1&t&&(n=n*e%r);return n}(10,r,t),o=0;o<300;o++){if(n===i)return o;n=10*n%t,i=10*i%t}return 0}(0,r,n),o=this.s<0?"-":"";if(o+=t/r|0,t%=r,(t*=10)&&(o+="."),n){for(var a=i;a--;)o+=t/r|0,t%=r,t*=10;for(o+="(",a=n;a--;)o+=t/r|0,t%=r,t*=10;o+=")"}else for(a=e;t&&a--;)o+=t/r|0,t%=r,t*=10;return o}};const Hr=Se("Fraction",[],(()=>(Object.defineProperty(jr,"name",{value:"Fraction"}),jr.prototype.constructor=jr,jr.prototype.type="Fraction",jr.prototype.isFraction=!0,jr.prototype.toJSON=function(){return{mathjs:"Fraction",n:this.s*this.n,d:this.d}},jr.fromJSON=function(e){return new jr(e)},jr)),{isClass:!0});r(3362);const Gr=Se("Range",[],(()=>{function e(t,r,n){if(!(this instanceof e))throw new SyntaxError("Constructor must be called with the new operator");const o=null!=t,a=null!=r,s=null!=n;if(o)if(i(t))t=t.toNumber();else if("number"!=typeof t)throw new TypeError("Parameter start must be a number");if(a)if(i(r))r=r.toNumber();else if("number"!=typeof r)throw new TypeError("Parameter end must be a number");if(s)if(i(n))n=n.toNumber();else if("number"!=typeof n)throw new TypeError("Parameter step must be a number");this.start=o?parseFloat(t):0,this.end=a?parseFloat(r):0,this.step=s?parseFloat(n):1}return e.prototype.type="Range",e.prototype.isRange=!0,e.parse=function(t){if("string"!=typeof t)return null;const r=t.split(":").map((function(e){return parseFloat(e)}));if(r.some((function(e){return isNaN(e)})))return null;switch(r.length){case 2:return new e(r[0],r[1]);case 3:return new e(r[0],r[2],r[1]);default:return null}},e.prototype.clone=function(){return new e(this.start,this.end,this.step)},e.prototype.size=function(){let e=0;const t=this.start,r=this.step,n=this.end-t;return W(r)===W(n)?e=Math.ceil(n/r):0===n&&(e=0),isNaN(e)&&(e=0),[e]},e.prototype.min=function(){const e=this.size()[0];return e>0?this.step>0?this.start:this.start+(e-1)*this.step:void 0},e.prototype.max=function(){const e=this.size()[0];return e>0?this.step>0?this.start+(e-1)*this.step:this.start:void 0},e.prototype.forEach=function(e){let t=this.start;const r=this.step,n=this.end;let i=0;if(r>0)for(;t<n;)e(t,[i],this),t+=r,i++;else if(r<0)for(;t>n;)e(t,[i],this),t+=r,i++},e.prototype.map=function(e){const t=[];return this.forEach((function(r,n,i){t[n[0]]=e(r,n,i)})),t},e.prototype.toArray=function(){const e=[];return this.forEach((function(t,r){e[r[0]]=t})),e},e.prototype.valueOf=function(){return this.toArray()},e.prototype.format=function(e){let t=te(this.start,e);return 1!==this.step&&(t+=":"+te(this.step,e)),t+=":"+te(this.end,e),t},e.prototype.toString=function(){return this.format()},e.prototype.toJSON=function(){return{mathjs:"Range",start:this.start,end:this.end,step:this.step}},e.fromJSON=function(t){return new e(t.start,t.end,t.step)},e}),{isClass:!0}),Zr=Se("Matrix",[],(()=>{function e(){if(!(this instanceof e))throw new SyntaxError("Constructor must be called with the new operator")}return e.prototype.type="Matrix",e.prototype.isMatrix=!0,e.prototype.storage=function(){throw new Error("Cannot invoke storage on a Matrix interface")},e.prototype.datatype=function(){throw new Error("Cannot invoke datatype on a Matrix interface")},e.prototype.create=function(e,t){throw new Error("Cannot invoke create on a Matrix interface")},e.prototype.subset=function(e,t,r){throw new Error("Cannot invoke subset on a Matrix interface")},e.prototype.get=function(e){throw new Error("Cannot invoke get on a Matrix interface")},e.prototype.set=function(e,t,r){throw new Error("Cannot invoke set on a Matrix interface")},e.prototype.resize=function(e,t){throw new Error("Cannot invoke resize on a Matrix interface")},e.prototype.reshape=function(e,t){throw new Error("Cannot invoke reshape on a Matrix interface")},e.prototype.clone=function(){throw new Error("Cannot invoke clone on a Matrix interface")},e.prototype.size=function(){throw new Error("Cannot invoke size on a Matrix interface")},e.prototype.map=function(e,t){throw new Error("Cannot invoke map on a Matrix interface")},e.prototype.forEach=function(e){throw new Error("Cannot invoke forEach on a Matrix interface")},e.prototype[Symbol.iterator]=function(){throw new Error("Cannot iterate a Matrix interface")},e.prototype.toArray=function(){throw new Error("Cannot invoke toArray on a Matrix interface")},e.prototype.valueOf=function(){throw new Error("Cannot invoke valueOf on a Matrix interface")},e.prototype.format=function(e){throw new Error("Cannot invoke format on a Matrix interface")},e.prototype.toString=function(){throw new Error("Cannot invoke toString on a Matrix interface")},e}),{isClass:!0});function Vr(){return Vr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},Vr.apply(null,arguments)}function Wr(e,t,r){const n=new(0,e.constructor)(2);let i="";if(r){if(r<1)throw new Error("size must be in greater than 0");if(!Z(r))throw new Error("size must be an integer");if(e.greaterThan(n.pow(r-1).sub(1))||e.lessThan(n.pow(r-1).mul(-1)))throw new Error(`Value must be in range [-2^${r-1}, 2^${r-1}-1]`);if(!e.isInteger())throw new Error("Value must be an integer");e.lessThan(0)&&(e=e.add(n.pow(r))),i=`i${r}`}switch(t){case 2:return`${e.toBinary()}${i}`;case 8:return`${e.toOctal()}${i}`;case 16:return`${e.toHexadecimal()}${i}`;default:throw new Error(`Base ${t} not supported `)}}function Yr(e,t){return void 0!==t?e.toExponential(t-1):e.toExponential()}function Jr(e,r){return t(e)?e:i(e)?e.toNumber():r}function Xr(e,t){const r=e.length-t.length,n=e.length;return e.substring(r,n)===t}function Qr(e,t){const r=function(e,t){return"number"==typeof e?te(e,t):i(e)?function(e,t){if("function"==typeof t)return t(e);if(!e.isFinite())return e.isNaN()?"NaN":e.gt(0)?"Infinity":"-Infinity";const{notation:r,precision:n,wordSize:i}=re(t);switch(r){case"fixed":return function(e,t){return e.toFixed(t)}(e,n);case"exponential":return Yr(e,n);case"engineering":return function(e,t){const r=e.e,n=r%3==0?r:r<0?r-3-r%3:r-r%3;let i=e.mul(Math.pow(10,-n)).toPrecision(t);return i.includes("e")&&(i=new(0,e.constructor)(i).toFixed()),i+"e"+(r>=0?"+":"")+n.toString()}(e,n);case"bin":return Wr(e,2,i);case"oct":return Wr(e,8,i);case"hex":return Wr(e,16,i);case"auto":{const r=Jr(null==t?void 0:t.lowerExp,-3),i=Jr(null==t?void 0:t.upperExp,5);if(e.isZero())return"0";let o;const a=e.toSignificantDigits(n),s=a.e;return o=s>=r&&s<i?a.toFixed():Yr(e,n),o.replace(/((\.\d*?)(0+))($|e)/,(function(){const e=arguments[2],t=arguments[4];return"."!==e?e+t:t}))}default:throw new Error('Unknown notation "'+r+'". Choose "auto", "exponential", "fixed", "bin", "oct", or "hex.')}}(e,t):function(e){return e&&"object"==typeof e&&"number"==typeof e.s&&"number"==typeof e.n&&"number"==typeof e.d||!1}(e)?t&&"decimal"===t.fraction?e.toString():e.s*e.n+"/"+e.d:Array.isArray(e)?rn(e,t):c(e)?Kr(e):"function"==typeof e?e.syntax?String(e.syntax):"function":e&&"object"==typeof e?"function"==typeof e.format?e.format(t):e&&e.toString(t)!=={}.toString()?e.toString(t):"{"+Object.keys(e).map((r=>Kr(r)+": "+Qr(e[r],t))).join(", ")+"}":String(e)}(e,t);return t&&"object"==typeof t&&"truncate"in t&&r.length>t.truncate?r.substring(0,t.truncate-3)+"...":r}function Kr(e){const t=String(e);let r="",n=0;for(;n<t.length;){const e=t.charAt(n);r+=e in en?en[e]:e,n++}return'"'+r+'"'}r(2712);const en={'"':'\\"',"\\":"\\\\","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r","\t":"\\t"};function tn(e){let t=String(e);return t=t.replace(/&/g,"&amp;").replace(/"/g,"&quot;").replace(/'/g,"&#39;").replace(/</g,"&lt;").replace(/>/g,"&gt;"),t}function rn(e,t){if(Array.isArray(e)){let r="[";const n=e.length;for(let i=0;i<n;i++)0!==i&&(r+=", "),r+=rn(e[i],t);return r+="]",r}return Qr(e,t)}function nn(e,t){if(!c(e))throw new TypeError("Unexpected type of argument in function compareText (expected: string or Array or Matrix, actual: "+H(e)+", index: 0)");if(!c(t))throw new TypeError("Unexpected type of argument in function compareText (expected: string or Array or Matrix, actual: "+H(t)+", index: 1)");return e===t?0:e>t?1:-1}function on(e,t,r){if(!(this instanceof on))throw new SyntaxError("Constructor must be called with the new operator");this.actual=e,this.expected=t,this.relation=r,this.message="Dimension mismatch ("+(Array.isArray(e)?"["+e.join(", ")+"]":e)+" "+(this.relation||"!=")+" "+(Array.isArray(t)?"["+t.join(", ")+"]":t)+")",this.stack=(new Error).stack}function an(e,t,r){if(!(this instanceof an))throw new SyntaxError("Constructor must be called with the new operator");this.index=e,arguments.length<3?(this.min=0,this.max=t):(this.min=t,this.max=r),void 0!==this.min&&this.index<this.min?this.message="Index out of range ("+this.index+" < "+this.min+")":void 0!==this.max&&this.index>=this.max?this.message="Index out of range ("+this.index+" > "+(this.max-1)+")":this.message="Index out of range ("+this.index+")",this.stack=(new Error).stack}function sn(e){const t=[];for(;Array.isArray(e);)t.push(e.length),e=e[0];return t}function un(e,t,r){let n;const i=e.length;if(i!==t[r])throw new on(i,t[r]);if(r<t.length-1){const o=r+1;for(n=0;n<i;n++){const r=e[n];if(!Array.isArray(r))throw new on(t.length-1,t.length,"<");un(e[n],t,o)}}else for(n=0;n<i;n++)if(Array.isArray(e[n]))throw new on(t.length+1,t.length,">")}function cn(e,t){if(0===t.length){if(Array.isArray(e))throw new on(e.length,0)}else un(e,t,0)}function ln(e,t){const r=e.isMatrix?e._size:sn(e);t._sourceSize.forEach(((e,t)=>{if(null!==e&&e!==r[t])throw new on(e,r[t])}))}function fn(e,r){if(void 0!==e){if(!t(e)||!Z(e))throw new TypeError("Index must be an integer (value: "+e+")");if(e<0||"number"==typeof r&&e>=r)throw new an(e,r)}}function pn(e){for(let t=0;t<e._dimensions.length;++t){const r=e._dimensions[t];if(r._data&&l(r._data)){if(0===r._size[0])return!0}else if(r.isRange){if(r.start===r.end)return!0}else if(c(r)&&0===r.length)return!0}return!1}function mn(e,r,n){if(!Array.isArray(r))throw new TypeError("Array expected");if(0===r.length)throw new Error("Resizing to scalar is not supported");return r.forEach((function(e){if(!t(e)||!Z(e)||e<0)throw new TypeError("Invalid size, must contain positive integers (size: "+Qr(r)+")")})),(t(e)||i(e))&&(e=[e]),dn(e,r,0,void 0!==n?n:0),e}function dn(e,t,r,n){let i,o;const a=e.length,s=t[r],u=Math.min(a,s);if(e.length=s,r<t.length-1){const a=r+1;for(i=0;i<u;i++)o=e[i],Array.isArray(o)||(o=[o],e[i]=o),dn(o,t,a,n);for(i=u;i<s;i++)o=[],e[i]=o,dn(o,t,a,n)}else{for(i=0;i<u;i++)for(;Array.isArray(e[i]);)e[i]=e[i][0];for(i=u;i<s;i++)e[i]=n}}function hn(e,t){const r=Nn(e),n=r.length;if(!Array.isArray(e)||!Array.isArray(t))throw new TypeError("Array expected");if(0===t.length)throw new on(0,n,"!=");const i=yn(t=gn(t,n));if(n!==i)throw new on(i,n,"!=");try{return function(e,t){let r,n=e;for(let e=t.length-1;e>0;e--){const i=t[e];r=[];const o=n.length/i;for(let e=0;e<o;e++)r.push(n.slice(e*i,(e+1)*i));n=r}return n}(r,t)}catch(e){if(e instanceof on)throw new on(i,n,"!=");throw e}}function gn(e,t){const r=yn(e),n=e.slice(),i=e.indexOf(-1);if(e.indexOf(-1,i+1)>=0)throw new Error("More than one wildcard in sizes");if(i>=0){if(t%r!=0)throw new Error("Could not replace wildcard, since "+t+" is no multiple of "+-r);n[i]=-t/r}return n}function yn(e){return e.reduce(((e,t)=>e*t),1)}function xn(e,t){const r=t||sn(e);for(;Array.isArray(e)&&1===e.length;)e=e[0],r.shift();let n=r.length;for(;1===r[n-1];)n--;return n<r.length&&(e=bn(e,n,0),r.length=n),e}function bn(e,t,r){let n,i;if(r<t){const o=r+1;for(n=0,i=e.length;n<i;n++)e[n]=bn(e[n],t,o)}else for(;Array.isArray(e);)e=e[0];return e}function vn(e,t,r,n){const i=n||sn(e);if(r)for(let t=0;t<r;t++)e=[e],i.unshift(1);for(e=wn(e,t,0);i.length<t;)i.push(1);return e}function wn(e,t,r){let n,i;if(Array.isArray(e)){const o=r+1;for(n=0,i=e.length;n<i;n++)e[n]=wn(e[n],t,o)}else for(let n=r;n<t;n++)e=[e];return e}function Nn(e){if(!Array.isArray(e))return e;const t=[];return e.forEach((function e(r){Array.isArray(r)?r.forEach(e):t.push(r)})),t}function En(e,t){return Array.prototype.map.call(e,t)}function An(e,t){Array.prototype.forEach.call(e,t)}function Sn(e,t){if(1!==sn(e).length)throw new Error("Only one dimensional matrices supported");return Array.prototype.filter.call(e,t)}function Mn(e,t){if(1!==sn(e).length)throw new Error("Only one dimensional matrices supported");return Array.prototype.filter.call(e,(e=>t.test(e)))}function Cn(e,t){return Array.prototype.join.call(e,t)}function Tn(e){if(!Array.isArray(e))throw new TypeError("Array input expected");if(0===e.length)return e;const t=[];let r=0;t[0]={value:e[0],identifier:0};for(let n=1;n<e.length;n++)e[n]===e[n-1]?r++:r=0,t.push({value:e[n],identifier:r});return t}function Dn(e){if(!Array.isArray(e))throw new TypeError("Array input expected");if(0===e.length)return e;const t=[];for(let r=0;r<e.length;r++)t.push(e[r].value);return t}function Fn(e,t){let r,n=0;for(let i=0;i<e.length;i++){const o=e[i],a=Array.isArray(o);if(0===i&&a&&(n=o.length),a&&o.length!==n)return;const s=a?Fn(o,t):t(o);if(void 0===r)r=s;else if(r!==s)return"mixed"}return r}function Bn(e,t,r,n){if(n<r){if(e.length!==t.length)throw new on(e.length,t.length);const i=[];for(let o=0;o<e.length;o++)i[o]=Bn(e[o],t[o],r,n+1);return i}return e.concat(t)}function On(){const e=Array.prototype.slice.call(arguments,0,-1),t=Array.prototype.slice.call(arguments,-1);if(1===e.length)return e[0];if(e.length>1)return e.slice(1).reduce((function(e,r){return Bn(e,r,t,0)}),e[0]);throw new Error("Wrong number of arguments in function concat")}function _n(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];const n=t.map((e=>e.length)),i=Math.max(...n),o=new Array(i).fill(null);for(let e=0;e<t.length;e++){const r=t[e],a=n[e];for(let e=0;e<a;e++){const t=i-a+e;r[e]>o[t]&&(o[t]=r[e])}}for(let e=0;e<t.length;e++)zn(t[e],o);return o}function zn(e,t){const r=t.length,n=e.length;for(let i=0;i<n;i++){const o=r-n+i;if(e[i]<t[o]&&e[i]>1||e[i]>t[o])throw new Error(`shape missmatch: missmatch is found in arg with shape (${e}) not possible to broadcast dimension ${n} with size ${e[i]} to size ${t[o]}`)}}function In(e,t){let r=sn(e);if(ve(r,t))return e;zn(r,t);const n=_n(r,t),i=n.length,o=[...Array(i-r.length).fill(1),...r];let a=function(e){return Vr([],e)}(e);r.length<i&&(a=hn(a,o),r=sn(a));for(let e=0;e<i;e++)r[e]<n[e]&&(s=a,u=n[e],c=e,a=On(...Array(u).fill(s),c),r=sn(a));var s,u,c;return a}function kn(e){let t=0,r=1,n=Object.create(null),i=Object.create(null),o=0;const a=function(e){const a=i[e];if(a&&(delete n[a],delete i[e],--t,r===a)){if(!t)return o=0,void(r=1);for(;!Object.prototype.hasOwnProperty.call(n,++r););}};return e=Math.abs(e),{hit:function(s){const u=i[s],c=++o;if(n[c]=s,i[s]=c,!u){if(++t,t<=e)return;return s=n[r],a(s),s}if(delete n[u],r===u)for(;!Object.prototype.hasOwnProperty.call(n,++r););},delete:a,clear:function(){t=o=0,r=1,n=Object.create(null),i=Object.create(null)}}}function qn(e){let{hasher:t,limit:r}=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return r=null==r?Number.POSITIVE_INFINITY:r,t=null==t?JSON.stringify:t,function n(){"object"!=typeof n.cache&&(n.cache={values:new Map,lru:kn(r||Number.POSITIVE_INFINITY)});const i=[];for(let e=0;e<arguments.length;e++)i[e]=arguments[e];const o=t(i);if(n.cache.values.has(o))return n.cache.lru.hit(o),n.cache.values.get(o);const a=e.apply(e,i);return n.cache.values.set(o,a),n.cache.values.delete(n.cache.lru.hit(o)),a}}function Rn(e){return Object.keys(e.signatures||{}).reduce((function(e,t){const r=(t.match(/,/g)||[]).length+1;return Math.max(e,r)}),-1)}on.prototype=new RangeError,on.prototype.constructor=RangeError,on.prototype.name="DimensionError",on.prototype.isDimensionError=!0,an.prototype=new RangeError,an.prototype.constructor=RangeError,an.prototype.name="IndexError",an.prototype.isIndexError=!0,r(3110);const Pn=Se("DenseMatrix",["Matrix"],(e=>{let{Matrix:r}=e;function n(e,t){if(!(this instanceof n))throw new SyntaxError("Constructor must be called with the new operator");if(t&&!c(t))throw new Error("Invalid datatype: "+t);if(f(e))"DenseMatrix"===e.type?(this._data=ye(e._data),this._size=ye(e._size),this._datatype=t||e._datatype):(this._data=e.toArray(),this._size=e.size(),this._datatype=t||e._datatype);else if(e&&l(e.data)&&l(e.size))this._data=e.data,this._size=e.size,cn(this._data,this._size),this._datatype=t||e.datatype;else if(l(e))this._data=m(e),this._size=sn(this._data),cn(this._data,this._size),this._datatype=t;else{if(e)throw new TypeError("Unsupported type of data ("+H(e)+")");this._data=[],this._size=[0],this._datatype=t}}function o(e,t,r,n){const i=n===r-1,a=t.dimension(n);return i?a.map((function(t){return fn(t,e.length),e[t]})).valueOf():a.map((function(i){return fn(i,e.length),o(e[i],t,r,n+1)})).valueOf()}function a(e,t,r,n,i){const o=i===n-1,s=t.dimension(i);o?s.forEach((function(t,n){fn(t),e[t]=r[n[0]]})):s.forEach((function(o,s){fn(o),a(e[o],t,r[s[0]],n,i+1)}))}function s(e,t,r){if(0===t.length){let t=e._data;for(;l(t);)t=t[0];return t}return e._size=t.slice(0),e._data=mn(e._data,e._size,r),e}function u(e,t,r){const n=e._size.slice(0);let i=!1;for(;n.length<t.length;)n.push(0),i=!0;for(let e=0,r=t.length;e<r;e++)t[e]>n[e]&&(n[e]=t[e],i=!0);i&&s(e,n,r)}function m(e){return f(e)?m(e.valueOf()):l(e)?e.map(m):e}return n.prototype=new r,n.prototype.createDenseMatrix=function(e,t){return new n(e,t)},Object.defineProperty(n,"name",{value:"DenseMatrix"}),n.prototype.constructor=n,n.prototype.type="DenseMatrix",n.prototype.isDenseMatrix=!0,n.prototype.getDataType=function(){return Fn(this._data,H)},n.prototype.storage=function(){return"dense"},n.prototype.datatype=function(){return this._datatype},n.prototype.create=function(e,t){return new n(e,t)},n.prototype.subset=function(e,t,r){switch(arguments.length){case 1:return function(e,t){if(!g(t))throw new TypeError("Invalid index");if(t.isScalar())return e.get(t.min());{const r=t.size();if(r.length!==e._size.length)throw new on(r.length,e._size.length);const i=t.min(),a=t.max();for(let t=0,r=e._size.length;t<r;t++)fn(i[t],e._size[t]),fn(a[t],e._size[t]);return new n(o(e._data,t,r.length,0),e._datatype)}}(this,e);case 2:case 3:return function(e,t,r,n){if(!t||!0!==t.isIndex)throw new TypeError("Invalid index");const i=t.size(),o=t.isScalar();let s;if(f(r)?(s=r.size(),r=r.valueOf()):s=sn(r),o){if(0!==s.length)throw new TypeError("Scalar expected");e.set(t.min(),r,n)}else{if(!ve(s,i))try{s=sn(r=0===s.length?In([r],i):In(r,i))}catch(e){}if(i.length<e._size.length)throw new on(i.length,e._size.length,"<");if(s.length<i.length){let e=0,t=0;for(;1===i[e]&&1===s[e];)e++;for(;1===i[e];)t++,e++;r=vn(r,i.length,t,s)}if(!ve(i,s))throw new on(i,s,">");u(e,t.max().map((function(e){return e+1})),n);const o=i.length,c=0;a(e._data,t,r,o,c)}return e}(this,e,t,r);default:throw new SyntaxError("Wrong number of arguments")}},n.prototype.get=function(e){if(!l(e))throw new TypeError("Array expected");if(e.length!==this._size.length)throw new on(e.length,this._size.length);for(let t=0;t<e.length;t++)fn(e[t],this._size[t]);let t=this._data;for(let r=0,n=e.length;r<n;r++){const n=e[r];fn(n,t.length),t=t[n]}return t},n.prototype.set=function(e,t,r){if(!l(e))throw new TypeError("Array expected");if(e.length<this._size.length)throw new on(e.length,this._size.length,"<");let n,i,o;const a=e.map((function(e){return e+1}));u(this,a,r);let s=this._data;for(n=0,i=e.length-1;n<i;n++)o=e[n],fn(o,s.length),s=s[o];return o=e[e.length-1],fn(o,s.length),s[o]=t,this},n.prototype.resize=function(e,t,r){if(!p(e))throw new TypeError("Array or Matrix expected");const n=e.valueOf().map((e=>Array.isArray(e)&&1===e.length?e[0]:e));return s(r?this.clone():this,n,t)},n.prototype.reshape=function(e,t){const r=t?this.clone():this;r._data=hn(r._data,e);const n=r._size.reduce(((e,t)=>e*t));return r._size=gn(e,n),r},n.prototype.clone=function(){return new n({data:ye(this._data),size:ye(this._size),datatype:this._datatype})},n.prototype.size=function(){return this._size.slice(0)},n.prototype.map=function(e){const t=this,r=Rn(e),i=function(n,o){return l(n)?n.map((function(e,t){return i(e,o.concat(t))})):1===r?e(n):2===r?e(n,o):e(n,o,t)},o=i(this._data,[]);return new n(o,void 0!==this._datatype?Fn(o,H):void 0)},n.prototype.forEach=function(e){const t=this,r=function(n,i){l(n)?n.forEach((function(e,t){r(e,i.concat(t))})):e(n,i,t)};r(this._data,[])},n.prototype[Symbol.iterator]=function*(){const e=function*(t,r){if(l(t))for(let n=0;n<t.length;n++)yield*e(t[n],r.concat(n));else yield{value:t,index:r}};yield*e(this._data,[])},n.prototype.rows=function(){const e=[];if(2!==this.size().length)throw new TypeError("Rows can only be returned for a 2D matrix.");const t=this._data;for(const r of t)e.push(new n([r],this._datatype));return e},n.prototype.columns=function(){const e=[],t=this.size();if(2!==t.length)throw new TypeError("Rows can only be returned for a 2D matrix.");const r=this._data;for(let i=0;i<t[1];i++){const t=r.map((e=>[e[i]]));e.push(new n(t,this._datatype))}return e},n.prototype.toArray=function(){return ye(this._data)},n.prototype.valueOf=function(){return this._data},n.prototype.format=function(e){return Qr(this._data,e)},n.prototype.toString=function(){return Qr(this._data)},n.prototype.toJSON=function(){return{mathjs:"DenseMatrix",data:this._data,size:this._size,datatype:this._datatype}},n.prototype.diagonal=function(e){if(e){if(i(e)&&(e=e.toNumber()),!t(e)||!Z(e))throw new TypeError("The parameter k must be an integer number")}else e=0;const r=e>0?e:0,o=e<0?-e:0,a=this._size[0],s=this._size[1],u=Math.min(a-o,s-r),c=[];for(let e=0;e<u;e++)c[e]=this._data[e+o][e+r];return new n({data:c,size:[u],datatype:this._datatype})},n.diagonal=function(e,r,o,a){if(!l(e))throw new TypeError("Array expected, size parameter");if(2!==e.length)throw new Error("Only two dimensions matrix are supported");if(e=e.map((function(e){if(i(e)&&(e=e.toNumber()),!t(e)||!Z(e)||e<1)throw new Error("Size values must be positive integers");return e})),o){if(i(o)&&(o=o.toNumber()),!t(o)||!Z(o))throw new TypeError("The parameter k must be an integer number")}else o=0;const s=o>0?o:0,u=o<0?-o:0,c=e[0],p=e[1],m=Math.min(c-u,p-s);let d;if(l(r)){if(r.length!==m)throw new Error("Invalid value array length");d=function(e){return r[e]}}else if(f(r)){const e=r.size();if(1!==e.length||e[0]!==m)throw new Error("Invalid matrix length");d=function(e){return r.get([e])}}else d=function(){return r};a||(a=i(d(0))?d(0).mul(0):0);let h=[];if(e.length>0){h=mn(h,e,a);for(let e=0;e<m;e++)h[e+u][e+s]=d(e)}return new n({data:h,size:[c,p]})},n.fromJSON=function(e){return new n(e)},n.prototype.swapRows=function(e,r){if(!(t(e)&&Z(e)&&t(r)&&Z(r)))throw new Error("Row index must be positive integers");if(2!==this._size.length)throw new Error("Only two dimensional matrix is supported");return fn(e,this._size[0]),fn(r,this._size[0]),n._swapRows(e,r,this._data),this},n._swapRows=function(e,t,r){const n=r[e];r[e]=r[t],r[t]=n},n}),{isClass:!0}),jn="clone",Un=Se(jn,["typed"],(e=>{let{typed:t}=e;return t(jn,{any:ye})}));function Ln(e){const t=e.length,r=e[0].length;let n,i;const o=[];for(i=0;i<r;i++){const r=[];for(n=0;n<t;n++)r.push(e[n][i]);o.push(r)}return o}function $n(e){for(let t=0;t<e.length;t++)if(p(e[t]))return!0;return!1}function Hn(e,t){f(e)&&(e=e.valueOf());for(let r=0,n=e.length;r<n;r++){const n=e[r];Array.isArray(n)?Hn(n,t):t(n)}}function Gn(e,t,r){return e&&"function"==typeof e.map?e.map((function(e){return Gn(e,t,r)})):t(e)}function Zn(e,t,r){const n=Array.isArray(e)?sn(e):e.size();if(t<0||t>=n.length)throw new an(t,n.length);return f(e)?e.create(Vn(e.valueOf(),t,r)):Vn(e,t,r)}function Vn(e,t,r){let n,i,o,a;if(t<=0){if(Array.isArray(e[0])){for(a=Ln(e),i=[],n=0;n<a.length;n++)i[n]=Vn(a[n],t-1,r);return i}for(o=e[0],n=1;n<e.length;n++)o=r(o,e[n]);return o}for(i=[],n=0;n<e.length;n++)i[n]=Vn(e[n],t-1,r);return i}function Wn(e,t,r,n,i,o,a,s,u,c,l){const f=e._values,p=e._index,m=e._ptr;let d,h,g,y;if(n)for(h=m[t],g=m[t+1],d=h;d<g;d++)y=p[d],r[y]!==o?(r[y]=o,a.push(y),c?(n[y]=u?s(f[d],l):s(l,f[d]),i[y]=o):n[y]=f[d]):(n[y]=u?s(f[d],n[y]):s(n[y],f[d]),i[y]=o);else for(h=m[t],g=m[t+1],d=h;d<g;d++)y=p[d],r[y]!==o?(r[y]=o,a.push(y)):i[y]=o}const Yn="isInteger",Jn=Se(Yn,["typed"],(e=>{let{typed:t}=e;return t(Yn,{number:Z,BigNumber:function(e){return e.isInt()},bigint:function(e){return!0},Fraction:function(e){return 1===e.d&&isFinite(e.n)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Xn="number";function Qn(e){return e<0}function Kn(e){return e>0}function ei(e){return Number.isNaN(e)}function ti(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1e-9,n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;if(r<=0)throw new Error("Relative tolerance must be greater than 0");if(n<0)throw new Error("Absolute tolerance must be at least 0");return!e.isNaN()&&!t.isNaN()&&(e.isFinite()&&t.isFinite()?!!e.eq(t)||e.minus(t).abs().lte(e.constructor.max(e.constructor.max(e.abs(),t.abs()).mul(r),n)):e.eq(t))}Qn.signature=Xn,Kn.signature=Xn,ei.signature=Xn;const ri="isNegative",ni=Se(ri,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(ri,{number:e=>!ue(e,0,r.relTol,r.absTol)&&Qn(e),BigNumber:e=>!ti(e,new e.constructor(0),r.relTol,r.absTol)&&e.isNeg()&&!e.isZero()&&!e.isNaN(),bigint:e=>e<0n,Fraction:e=>e.s<0,Unit:t.referToSelf((e=>r=>t.find(e,r.valueType())(r.value))),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),ii="isNumeric",oi=Se(ii,["typed"],(e=>{let{typed:t}=e;return t(ii,{"number | BigNumber | bigint | Fraction | boolean":()=>!0,"Complex | Unit | string | null | undefined | Node":()=>!1,"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),ai="hasNumericValue",si=Se(ai,["typed","isNumeric"],(e=>{let{typed:t,isNumeric:r}=e;return t(ai,{boolean:()=>!0,string:function(e){return e.trim().length>0&&!isNaN(Number(e))},any:function(e){return r(e)}})})),ui="isPositive",ci=Se(ui,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(ui,{number:e=>!ue(e,0,r.relTol,r.absTol)&&Kn(e),BigNumber:e=>!(ti(e,new e.constructor(0),r.relTol,r.absTol)||e.isNeg()||e.isZero()||e.isNaN()),bigint:e=>e>0n,Fraction:e=>e.s>0&&e.n>0,Unit:t.referToSelf((e=>r=>t.find(e,r.valueType())(r.value))),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),li="isZero",fi=Se(li,["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return t(li,{"number | BigNumber | Complex | Fraction":e=>r(e,0),bigint:e=>0n===e,Unit:t.referToSelf((e=>r=>t.find(e,r.valueType())(r.value))),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),pi="isNaN",mi=Se(pi,["typed"],(e=>{let{typed:t}=e;return t(pi,{number:ei,BigNumber:function(e){return e.isNaN()},bigint:function(e){return!1},Fraction:function(e){return!1},Complex:function(e){return e.isNaN()},Unit:function(e){return Number.isNaN(e.value)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),di="typeOf",hi=Se(di,["typed"],(e=>{let{typed:t}=e;return t(di,{any:H})})),gi=Se("compareUnits",["typed"],(e=>{let{typed:t}=e;return{"Unit, Unit":t.referToSelf((e=>(r,n)=>{if(!r.equalBase(n))throw new Error("Cannot compare units with different base");return t.find(e,[r.valueType(),n.valueType()])(r.value,n.value)}))}})),yi="equalScalar",xi=Se(yi,["typed","config"],(e=>{let{typed:t,config:r}=e;const n=gi({typed:t});return t(yi,{"boolean, boolean":function(e,t){return e===t},"number, number":function(e,t){return ue(e,t,r.relTol,r.absTol)},"BigNumber, BigNumber":function(e,t){return e.eq(t)||ti(e,t,r.relTol,r.absTol)},"bigint, bigint":function(e,t){return e===t},"Fraction, Fraction":function(e,t){return e.equals(t)},"Complex, Complex":function(e,t){return function(e,t,r,n){return ue(e.re,t.re,r,n)&&ue(e.im,t.im,r,n)}(e,t,r.relTol,r.absTol)}},n)})),bi=(Se(yi,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(yi,{"number, number":function(e,t){return ue(e,t,r.relTol,r.absTol)}})})),Se("SparseMatrix",["typed","equalScalar","Matrix"],(e=>{let{typed:r,equalScalar:n,Matrix:o}=e;function a(e,t){if(!(this instanceof a))throw new SyntaxError("Constructor must be called with the new operator");if(t&&!c(t))throw new Error("Invalid datatype: "+t);if(f(e))!function(e,t,r){"SparseMatrix"===t.type?(e._values=t._values?ye(t._values):void 0,e._index=ye(t._index),e._ptr=ye(t._ptr),e._size=ye(t._size),e._datatype=r||t._datatype):s(e,t.valueOf(),r||t._datatype)}(this,e,t);else if(e&&l(e.index)&&l(e.ptr)&&l(e.size))this._values=e.values,this._index=e.index,this._ptr=e.ptr,this._size=e.size,this._datatype=t||e.datatype;else if(l(e))s(this,e,t);else{if(e)throw new TypeError("Unsupported type of data ("+H(e)+")");this._values=[],this._index=[],this._ptr=[0],this._size=[0,0],this._datatype=t}}function s(e,t,i){e._values=[],e._index=[],e._ptr=[],e._datatype=i;const o=t.length;let a=0,s=n,u=0;if(c(i)&&(s=r.find(n,[i,i])||n,u=r.convert(0,i)),o>0){let r=0;do{e._ptr.push(e._index.length);for(let n=0;n<o;n++){const i=t[n];if(l(i)){if(0===r&&a<i.length&&(a=i.length),r<i.length){const t=i[r];s(t,u)||(e._values.push(t),e._index.push(n))}}else 0===r&&a<1&&(a=1),s(i,u)||(e._values.push(i),e._index.push(n))}r++}while(r<a)}e._ptr.push(e._index.length),e._size=[o,a]}function u(e,t,r,n){if(r-t==0)return r;for(let i=t;i<r;i++)if(n[i]===e)return i;return t}function m(e,t,r,n,i,o,a){i.splice(e,0,n),o.splice(e,0,t);for(let e=r+1;e<a.length;e++)a[e]++}function d(e,t,i,o){let a=o||0,s=n,u=0;c(e._datatype)&&(s=r.find(n,[e._datatype,e._datatype])||n,u=r.convert(0,e._datatype),a=r.convert(a,e._datatype));const l=!s(a,u),f=e._size[0];let p,m,d,h=e._size[1];if(i>h){for(m=h;m<i;m++)if(e._ptr[m]=e._values.length,l)for(p=0;p<f;p++)e._values.push(a),e._index.push(p);e._ptr[i]=e._values.length}else i<h&&(e._ptr.splice(i+1,h-i),e._values.splice(e._ptr[i],e._values.length),e._index.splice(e._ptr[i],e._index.length));if(h=i,t>f){if(l){let r=0;for(m=0;m<h;m++){e._ptr[m]=e._ptr[m]+r,d=e._ptr[m+1]+r;let n=0;for(p=f;p<t;p++,n++)e._values.splice(d+n,0,a),e._index.splice(d+n,0,p),r++}e._ptr[h]=e._values.length}}else if(t<f){let r=0;for(m=0;m<h;m++){e._ptr[m]=e._ptr[m]-r;const n=e._ptr[m],i=e._ptr[m+1]-r;for(d=n;d<i;d++)p=e._index[d],p>t-1&&(e._values.splice(d,1),e._index.splice(d,1),r++)}e._ptr[m]=e._values.length}return e._size[0]=t,e._size[1]=i,e}function h(e,t,r,n,i){const o=n[0],a=n[1],s=[];let u,c;for(u=0;u<o;u++)for(s[u]=[],c=0;c<a;c++)s[u][c]=0;for(c=0;c<a;c++){const n=r[c],o=r[c+1];for(let r=n;r<o;r++)u=t[r],s[u][c]=e?i?ye(e[r]):e[r]:1}return s}return a.prototype=new o,a.prototype.createSparseMatrix=function(e,t){return new a(e,t)},Object.defineProperty(a,"name",{value:"SparseMatrix"}),a.prototype.constructor=a,a.prototype.type="SparseMatrix",a.prototype.isSparseMatrix=!0,a.prototype.getDataType=function(){return Fn(this._values,H)},a.prototype.storage=function(){return"sparse"},a.prototype.datatype=function(){return this._datatype},a.prototype.create=function(e,t){return new a(e,t)},a.prototype.density=function(){const e=this._size[0],t=this._size[1];return 0!==e&&0!==t?this._index.length/(e*t):0},a.prototype.subset=function(e,t,r){if(!this._values)throw new Error("Cannot invoke subset on a Pattern only matrix");switch(arguments.length){case 1:return function(e,t){if(!g(t))throw new TypeError("Invalid index");if(t.isScalar())return e.get(t.min());const r=t.size();if(r.length!==e._size.length)throw new on(r.length,e._size.length);let n,i,o,s;const u=t.min(),c=t.max();for(n=0,i=e._size.length;n<i;n++)fn(u[n],e._size[n]),fn(c[n],e._size[n]);const l=e._values,f=e._index,p=e._ptr,m=t.dimension(0),d=t.dimension(1),h=[],y=[];m.forEach((function(e,t){y[e]=t[0],h[e]=!0}));const x=l?[]:void 0,b=[],v=[];return d.forEach((function(e){for(v.push(b.length),o=p[e],s=p[e+1];o<s;o++)n=f[o],!0===h[n]&&(b.push(y[n]),x&&x.push(l[o]))})),v.push(b.length),new a({values:x,index:b,ptr:v,size:r,datatype:e._datatype})}(this,e);case 2:case 3:return function(e,t,r,n){if(!t||!0!==t.isIndex)throw new TypeError("Invalid index");const i=t.size(),o=t.isScalar();let a;if(f(r)?(a=r.size(),r=r.toArray()):a=sn(r),o){if(0!==a.length)throw new TypeError("Scalar expected");e.set(t.min(),r,n)}else{if(1!==i.length&&2!==i.length)throw new on(i.length,e._size.length,"<");if(a.length<i.length){let e=0,t=0;for(;1===i[e]&&1===a[e];)e++;for(;1===i[e];)t++,e++;r=vn(r,i.length,t,a)}if(!ve(i,a))throw new on(i,a,">");if(1===i.length)t.dimension(0).forEach((function(t,i){fn(t),e.set([t,0],r[i[0]],n)}));else{const i=t.dimension(0),o=t.dimension(1);i.forEach((function(t,i){fn(t),o.forEach((function(o,a){fn(o),e.set([t,o],r[i[0]][a[0]],n)}))}))}}return e}(this,e,t,r);default:throw new SyntaxError("Wrong number of arguments")}},a.prototype.get=function(e){if(!l(e))throw new TypeError("Array expected");if(e.length!==this._size.length)throw new on(e.length,this._size.length);if(!this._values)throw new Error("Cannot invoke get on a Pattern only matrix");const t=e[0],r=e[1];fn(t,this._size[0]),fn(r,this._size[1]);const n=u(t,this._ptr[r],this._ptr[r+1],this._index);return n<this._ptr[r+1]&&this._index[n]===t?this._values[n]:0},a.prototype.set=function(e,t,i){if(!l(e))throw new TypeError("Array expected");if(e.length!==this._size.length)throw new on(e.length,this._size.length);if(!this._values)throw new Error("Cannot invoke set on a Pattern only matrix");const o=e[0],a=e[1];let s=this._size[0],f=this._size[1],p=n,h=0;c(this._datatype)&&(p=r.find(n,[this._datatype,this._datatype])||n,h=r.convert(0,this._datatype)),(o>s-1||a>f-1)&&(d(this,Math.max(o+1,s),Math.max(a+1,f),i),s=this._size[0],f=this._size[1]),fn(o,s),fn(a,f);const g=u(o,this._ptr[a],this._ptr[a+1],this._index);return g<this._ptr[a+1]&&this._index[g]===o?p(t,h)?function(e,t,r,n,i){r.splice(e,1),n.splice(e,1);for(let e=t+1;e<i.length;e++)i[e]--}(g,a,this._values,this._index,this._ptr):this._values[g]=t:p(t,h)||m(g,o,a,t,this._values,this._index,this._ptr),this},a.prototype.resize=function(e,r,n){if(!p(e))throw new TypeError("Array or Matrix expected");const i=e.valueOf().map((e=>Array.isArray(e)&&1===e.length?e[0]:e));if(2!==i.length)throw new Error("Only two dimensions matrix are supported");return i.forEach((function(e){if(!t(e)||!Z(e)||e<0)throw new TypeError("Invalid size, must contain positive integers (size: "+Qr(i)+")")})),d(n?this.clone():this,i[0],i[1],r)},a.prototype.reshape=function(e,r){if(!l(e))throw new TypeError("Array expected");if(2!==e.length)throw new Error("Sparse matrices can only be reshaped in two dimensions");e.forEach((function(r){if(!t(r)||!Z(r)||r<=-2||0===r)throw new TypeError("Invalid size, must contain positive integers or -1 (size: "+Qr(e)+")")}));const n=this._size[0]*this._size[1];if(n!==(e=gn(e,n))[0]*e[1])throw new Error("Reshaping sparse matrix will result in the wrong number of elements");const i=r?this.clone():this;if(this._size[0]===e[0]&&this._size[1]===e[1])return i;const o=[];for(let e=0;e<i._ptr.length;e++)for(let t=0;t<i._ptr[e+1]-i._ptr[e];t++)o.push(e);const a=i._values.slice(),s=i._index.slice();for(let t=0;t<i._index.length;t++){const r=s[t],n=o[t],a=r*i._size[1]+n;o[t]=a%e[1],s[t]=Math.floor(a/e[1])}i._values.length=0,i._index.length=0,i._ptr.length=e[1]+1,i._size=e.slice();for(let e=0;e<i._ptr.length;e++)i._ptr[e]=0;for(let e=0;e<a.length;e++){const t=s[e],r=o[e],n=a[e];m(u(t,i._ptr[r],i._ptr[r+1],i._index),t,r,n,i._values,i._index,i._ptr)}return i},a.prototype.clone=function(){return new a({values:this._values?ye(this._values):void 0,index:ye(this._index),ptr:ye(this._ptr),size:ye(this._size),datatype:this._datatype})},a.prototype.size=function(){return this._size.slice(0)},a.prototype.map=function(e,t){if(!this._values)throw new Error("Cannot invoke map on a Pattern only matrix");const i=this,o=this._size[0],s=this._size[1],u=Rn(e);return function(e,t,i,o,s,u,l){const f=[],p=[],m=[];let d=n,h=0;c(e._datatype)&&(d=r.find(n,[e._datatype,e._datatype])||n,h=r.convert(0,e._datatype));const g=function(e,t,r){e=u(e,t,r),d(e,h)||(f.push(e),p.push(t))};for(let t=0;t<=s;t++){m.push(f.length);const r=e._ptr[t],n=e._ptr[t+1];if(l)for(let o=r;o<n;o++){const r=e._index[o];r>=0&&r<=i&&g(e._values[o],r-0,t-0)}else{const o={};for(let t=r;t<n;t++)o[e._index[t]]=e._values[t];for(let e=0;e<=i;e++)g(e in o?o[e]:0,e-0,t-0)}}return m.push(f.length),new a({values:f,index:p,ptr:m,size:[i-0+1,s-0+1]})}(this,0,o-1,0,s-1,(function(t,r,n){return 1===u?e(t):2===u?e(t,[r,n]):e(t,[r,n],i)}),t)},a.prototype.forEach=function(e,t){if(!this._values)throw new Error("Cannot invoke forEach on a Pattern only matrix");const r=this,n=this._size[0],i=this._size[1];for(let o=0;o<i;o++){const i=this._ptr[o],a=this._ptr[o+1];if(t)for(let t=i;t<a;t++){const n=this._index[t];e(this._values[t],[n,o],r)}else{const t={};for(let e=i;e<a;e++)t[this._index[e]]=this._values[e];for(let i=0;i<n;i++)e(i in t?t[i]:0,[i,o],r)}}},a.prototype[Symbol.iterator]=function*(){if(!this._values)throw new Error("Cannot iterate a Pattern only matrix");const e=this._size[1];for(let t=0;t<e;t++){const e=this._ptr[t],r=this._ptr[t+1];for(let n=e;n<r;n++){const e=this._index[n];yield{value:this._values[n],index:[e,t]}}}},a.prototype.toArray=function(){return h(this._values,this._index,this._ptr,this._size,!0)},a.prototype.valueOf=function(){return h(this._values,this._index,this._ptr,this._size,!1)},a.prototype.format=function(e){const t=this._size[0],r=this._size[1],n=this.density();let i="Sparse Matrix ["+Qr(t,e)+" x "+Qr(r,e)+"] density: "+Qr(n,e)+"\n";for(let t=0;t<r;t++){const r=this._ptr[t],n=this._ptr[t+1];for(let o=r;o<n;o++)i+="\n ("+Qr(this._index[o],e)+", "+Qr(t,e)+") ==> "+(this._values?Qr(this._values[o],e):"X")}return i},a.prototype.toString=function(){return Qr(this.toArray())},a.prototype.toJSON=function(){return{mathjs:"SparseMatrix",values:this._values,index:this._index,ptr:this._ptr,size:this._size,datatype:this._datatype}},a.prototype.diagonal=function(e){if(e){if(i(e)&&(e=e.toNumber()),!t(e)||!Z(e))throw new TypeError("The parameter k must be an integer number")}else e=0;const r=e>0?e:0,n=e<0?-e:0,o=this._size[0],s=this._size[1],u=Math.min(o-n,s-r),c=[],l=[],f=[];f[0]=0;for(let e=r;e<s&&c.length<u;e++){const t=this._ptr[e],i=this._ptr[e+1];for(let o=t;o<i;o++){const t=this._index[o];if(t===e-r+n){c.push(this._values[o]),l[c.length-1]=t-n;break}}}return f.push(c.length),new a({values:c,index:l,ptr:f,size:[u,1]})},a.fromJSON=function(e){return new a(e)},a.diagonal=function(e,o,s,u,p){if(!l(e))throw new TypeError("Array expected, size parameter");if(2!==e.length)throw new Error("Only two dimensions matrix are supported");if(e=e.map((function(e){if(i(e)&&(e=e.toNumber()),!t(e)||!Z(e)||e<1)throw new Error("Size values must be positive integers");return e})),s){if(i(s)&&(s=s.toNumber()),!t(s)||!Z(s))throw new TypeError("The parameter k must be an integer number")}else s=0;let m=n,d=0;c(p)&&(m=r.find(n,[p,p])||n,d=r.convert(0,p));const h=s>0?s:0,g=s<0?-s:0,y=e[0],x=e[1],b=Math.min(y-g,x-h);let v;if(l(o)){if(o.length!==b)throw new Error("Invalid value array length");v=function(e){return o[e]}}else if(f(o)){const e=o.size();if(1!==e.length||e[0]!==b)throw new Error("Invalid matrix length");v=function(e){return o.get([e])}}else v=function(){return o};const w=[],N=[],E=[];for(let e=0;e<x;e++){E.push(w.length);const t=e-h;if(t>=0&&t<b){const e=v(t);m(e,d)||(N.push(t+g),w.push(e))}}return E.push(w.length),new a({values:w,index:N,ptr:E,size:[y,x]})},a.prototype.swapRows=function(e,r){if(!(t(e)&&Z(e)&&t(r)&&Z(r)))throw new Error("Row index must be positive integers");if(2!==this._size.length)throw new Error("Only two dimensional matrix is supported");return fn(e,this._size[0]),fn(r,this._size[0]),a._swapRows(e,r,this._size[1],this._values,this._index,this._ptr),this},a._forEachRow=function(e,t,r,n,i){const o=n[e],a=n[e+1];for(let e=o;e<a;e++)i(r[e],t[e])},a._swapRows=function(e,t,r,n,i,o){for(let a=0;a<r;a++){const r=o[a],s=o[a+1],c=u(e,r,s,i),l=u(t,r,s,i);if(c<s&&l<s&&i[c]===e&&i[l]===t){if(n){const e=n[c];n[c]=n[l],n[l]=e}}else if(c<s&&i[c]===e&&(l>=s||i[l]!==t)){const e=n?n[c]:void 0;i.splice(l,0,t),n&&n.splice(l,0,e),i.splice(l<=c?c+1:c,1),n&&n.splice(l<=c?c+1:c,1)}else if(l<s&&i[l]===t&&(c>=s||i[c]!==e)){const t=n?n[l]:void 0;i.splice(c,0,e),n&&n.splice(c,0,t),i.splice(c<=l?l+1:l,1),n&&n.splice(c<=l?l+1:l,1)}}},a}),{isClass:!0})),vi=Se("number",["typed"],(e=>{let{typed:t}=e;const r=t("number",{"":function(){return 0},number:function(e){return e},string:function(e){if("NaN"===e)return NaN;const t=function(e){const t=e.match(/(0[box])([0-9a-fA-F]*)\.([0-9a-fA-F]*)/);return t?{input:e,radix:{"0b":2,"0o":8,"0x":16}[t[1]],integerPart:t[2],fractionalPart:t[3]}:null}(e);if(t)return function(e){const t=parseInt(e.integerPart,e.radix);let r=0;for(let t=0;t<e.fractionalPart.length;t++)r+=parseInt(e.fractionalPart[t],e.radix)/Math.pow(e.radix,t+1);const n=t+r;if(isNaN(n))throw new SyntaxError('String "'+e.input+'" is not a valid number');return n}(t);let r=0;const n=e.match(/(0[box][0-9a-fA-F]*)i([0-9]*)/);n&&(r=Number(n[2]),e=n[1]);let i=Number(e);if(isNaN(i))throw new SyntaxError('String "'+e+'" is not a valid number');if(n){if(i>2**r-1)throw new SyntaxError(`String "${e}" is out of range`);i>=2**(r-1)&&(i-=2**r)}return i},BigNumber:function(e){return e.toNumber()},bigint:function(e){return Number(e)},Fraction:function(e){return e.valueOf()},Unit:t.referToSelf((e=>t=>{const r=t.clone();return r.value=e(t.value),r})),null:function(e){return 0},"Unit, string | Unit":function(e,t){return e.toNumber(t)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))});return r.fromJSON=function(e){return parseFloat(e.value)},r})),wi=Se("bigint",["typed"],(e=>{let{typed:t}=e;const r=t("bigint",{"":function(){return 0n},bigint:function(e){return e},number:function(e){return BigInt(e.toFixed())},BigNumber:function(e){return BigInt(e.round().toString())},Fraction:function(e){return BigInt(e.valueOf().toFixed())},"string | boolean":function(e){return BigInt(e)},null:function(e){return 0n},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))});return r.fromJSON=function(e){return BigInt(e.value)},r})),Ni="string",Ei=Se(Ni,["typed"],(e=>{let{typed:t}=e;return t(Ni,{"":function(){return""},number:te,null:function(e){return"null"},boolean:function(e){return e+""},string:function(e){return e},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e))),any:function(e){return String(e)}})})),Ai="boolean",Si=Se(Ai,["typed"],(e=>{let{typed:t}=e;return t(Ai,{"":function(){return!1},boolean:function(e){return e},number:function(e){return!!e},null:function(e){return!1},BigNumber:function(e){return!e.isZero()},string:function(e){const t=e.toLowerCase();if("true"===t)return!0;if("false"===t)return!1;const r=Number(e);if(""!==e&&!isNaN(r))return!!r;throw new Error('Cannot convert "'+e+'" to a boolean')},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Mi=Se("bignumber",["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t("bignumber",{"":function(){return new r(0)},number:function(e){return new r(e+"")},string:function(e){const t=e.match(/(0[box][0-9a-fA-F]*)i([0-9]*)/);if(t){const n=t[2],i=r(t[1]),o=new r(2).pow(Number(n));if(i.gt(o.sub(1)))throw new SyntaxError(`String "${e}" is out of range`);const a=new r(2).pow(Number(n)-1);return i.gte(a)?i.sub(o):i}return new r(e)},BigNumber:function(e){return e},bigint:function(e){return new r(e.toString())},Unit:t.referToSelf((e=>t=>{const r=t.clone();return r.value=e(t.value),r})),Fraction:function(e){return new r(e.n).div(e.d).times(e.s)},null:function(e){return new r(0)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Ci=Se("complex",["typed","Complex"],(e=>{let{typed:t,Complex:r}=e;return t("complex",{"":function(){return r.ZERO},number:function(e){return new r(e,0)},"number, number":function(e,t){return new r(e,t)},"BigNumber, BigNumber":function(e,t){return new r(e.toNumber(),t.toNumber())},Fraction:function(e){return new r(e.valueOf(),0)},Complex:function(e){return e.clone()},string:function(e){return r(e)},null:function(e){return r(0)},Object:function(e){if("re"in e&&"im"in e)return new r(e.re,e.im);if("r"in e&&"phi"in e||"abs"in e&&"arg"in e)return new r(e);throw new Error("Expected object with properties (re and im) or (r and phi) or (abs and arg)")},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Ti=Se("fraction",["typed","Fraction"],(e=>{let{typed:t,Fraction:r}=e;return t("fraction",{number:function(e){if(!isFinite(e)||isNaN(e))throw new Error(e+" cannot be represented as a fraction");return new r(e)},string:function(e){return new r(e)},"number, number":function(e,t){return new r(e,t)},null:function(e){return new r(0)},BigNumber:function(e){return new r(e.toString())},bigint:function(e){return new r(e.toString())},Fraction:function(e){return e},Unit:t.referToSelf((e=>t=>{const r=t.clone();return r.value=e(t.value),r})),Object:function(e){return new r(e)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Di="matrix",Fi=Se(Di,["typed","Matrix","DenseMatrix","SparseMatrix"],(e=>{let{typed:t,Matrix:r,DenseMatrix:n,SparseMatrix:i}=e;return t(Di,{"":function(){return o([])},string:function(e){return o([],e)},"string, string":function(e,t){return o([],e,t)},Array:function(e){return o(e)},Matrix:function(e){return o(e,e.storage())},"Array | Matrix, string":o,"Array | Matrix, string, string":o});function o(e,t,r){if("dense"===t||"default"===t||void 0===t)return new n(e,r);if("sparse"===t)return new i(e,r);throw new TypeError("Unknown matrix type "+JSON.stringify(t)+".")}})),Bi="matrixFromFunction",Oi=Se(Bi,["typed","matrix","isZero"],(e=>{let{typed:t,matrix:r,isZero:n}=e;return t(Bi,{"Array | Matrix, function, string, string":function(e,t,r,n){return i(e,t,r,n)},"Array | Matrix, function, string":function(e,t,r){return i(e,t,r)},"Matrix, function":function(e,t){return i(e,t,"dense")},"Array, function":function(e,t){return i(e,t,"dense").toArray()},"Array | Matrix, string, function":function(e,t,r){return i(e,r,t)},"Array | Matrix, string, string, function":function(e,t,r,n){return i(e,n,t,r)}});function i(e,t,i,o){let a;return a=void 0!==o?r(i,o):r(i),a.resize(e),a.forEach((function(e,r){const i=t(r);n(i)||a.set(r,i)})),a}})),_i="matrixFromRows",zi=Se(_i,["typed","matrix","flatten","size"],(e=>{let{typed:t,matrix:r,flatten:n,size:i}=e;return t(_i,{"...Array":function(e){return o(e)},"...Matrix":function(e){return r(o(e.map((e=>e.toArray()))))}});function o(e){if(0===e.length)throw new TypeError("At least one row is needed to construct a matrix.");const t=a(e[0]),r=[];for(const i of e){const e=a(i);if(e!==t)throw new TypeError("The vectors had different length: "+(0|t)+" ≠ "+(0|e));r.push(n(i))}return r}function a(e){const t=i(e);if(1===t.length)return t[0];if(2===t.length){if(1===t[0])return t[1];if(1===t[1])return t[0];throw new TypeError("At least one of the arguments is not a vector.")}throw new TypeError("Only one- or two-dimensional vectors are supported.")}})),Ii="matrixFromColumns",ki=Se(Ii,["typed","matrix","flatten","size"],(e=>{let{typed:t,matrix:r,flatten:n,size:i}=e;return t(Ii,{"...Array":function(e){return o(e)},"...Matrix":function(e){return r(o(e.map((e=>e.toArray()))))}});function o(e){if(0===e.length)throw new TypeError("At least one column is needed to construct a matrix.");const t=a(e[0]),r=[];for(let e=0;e<t;e++)r[e]=[];for(const i of e){const e=a(i);if(e!==t)throw new TypeError("The vectors had different length: "+(0|t)+" ≠ "+(0|e));const o=n(i);for(let e=0;e<t;e++)r[e].push(o[e])}return r}function a(e){const t=i(e);if(1===t.length)return t[0];if(2===t.length){if(1===t[0])return t[1];if(1===t[1])return t[0];throw new TypeError("At least one of the arguments is not a vector.")}throw new TypeError("Only one- or two-dimensional vectors are supported.")}})),qi="splitUnit",Ri=Se(qi,["typed"],(e=>{let{typed:t}=e;return t(qi,{"Unit, Array":function(e,t){return e.splitUnit(t)}})})),Pi="number",ji="number, number";function Ui(e){return Math.abs(e)}function Li(e,t){return e+t}function $i(e,t){return e-t}function Hi(e,t){return e*t}function Gi(e){return-e}function Zi(e){return e}function Vi(e){return Q(e)}function Wi(e){return e*e*e}function Yi(e){return Math.exp(e)}function Ji(e){return K(e)}function Xi(e,t){if(!Z(e)||!Z(t))throw new Error("Parameters in function lcm must be integer numbers");if(0===e||0===t)return 0;let r;const n=e*t;for(;0!==t;)r=t,t=e%r,e=r;return Math.abs(n/e)}function Qi(e){return J(e)}function Ki(e){return Y(e)}function eo(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;const r=t<0;if(r&&(t=-t),0===t)throw new Error("Root must be non-zero");if(e<0&&Math.abs(t)%2!=1)throw new Error("Root must be odd when a is negative.");if(0===e)return r?1/0:0;if(!isFinite(e))return r?0:e;let n=Math.pow(Math.abs(e),1/t);return n=e<0?-n:n,r?1/n:n}function to(e){return W(e)}function ro(e){return e*e}function no(e,t){let r,n,i,o,a=0,s=1,u=1,c=0;if(!Z(e)||!Z(t))throw new Error("Parameters in function xgcd must be integer numbers");for(;t;)n=Math.floor(e/t),i=e-n*t,r=a,a=s-n*a,s=r,r=u,u=c-n*u,c=r,e=t,t=i;return o=e<0?[-e,-s,-c]:[e,e?s:0,c],o}function io(e,t){return e*e<1&&t===1/0||e*e>1&&t===-1/0?0:Math.pow(e,t)}function oo(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!Z(t)||t<0||t>15)throw new Error("Number of decimals in function round must be an integer from 0 to 15 inclusive");return parseFloat(ie(e,t))}Ui.signature=Pi,Li.signature=ji,$i.signature=ji,Hi.signature=ji,Gi.signature=Pi,Zi.signature=Pi,Vi.signature=Pi,Wi.signature=Pi,Yi.signature=Pi,Ji.signature=Pi,Xi.signature=ji,Qi.signature=Pi,Ki.signature=Pi,to.signature=Pi,ro.signature=Pi,no.signature=ji,io.signature=ji;const ao="unaryMinus",so=Se(ao,["typed"],(e=>{let{typed:t}=e;return t(ao,{number:Gi,"Complex | BigNumber | Fraction":e=>e.neg(),bigint:e=>-e,Unit:t.referToSelf((e=>r=>{const n=r.clone();return n.value=t.find(e,n.valueType())(r.value),n})),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0)))})})),uo="unaryPlus",co=Se(uo,["typed","config","numeric"],(e=>{let{typed:t,config:r,numeric:n}=e;return t(uo,{number:Zi,Complex:function(e){return e},BigNumber:function(e){return e},bigint:function(e){return e},Fraction:function(e){return e},Unit:function(e){return e.clone()},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0))),boolean:function(e){return n(e?1:0,r.number)},string:function(e){return n(e,V(e,r))}})})),lo=Se("abs",["typed"],(e=>{let{typed:t}=e;return t("abs",{number:Ui,"Complex | BigNumber | Fraction | Unit":e=>e.abs(),bigint:e=>e<0n?-e:e,"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0)))})})),fo="apply",po=Se(fo,["typed","isInteger"],(e=>{let{typed:t,isInteger:r}=e;return t(fo,{"Array | Matrix, number | BigNumber, function":function(e,t,n){if(!r(t))throw new TypeError("Integer number expected for dimension");const i=Array.isArray(e)?sn(e):e.size();if(t<0||t>=i.length)throw new an(t,i.length);return f(e)?e.create(mo(e.valueOf(),t,n)):mo(e,t,n)}})}));function mo(e,t,r){let n,i,o;if(t<=0){if(Array.isArray(e[0])){for(o=function(e){const t=e.length,r=e[0].length;let n,i;const o=[];for(i=0;i<r;i++){const r=[];for(n=0;n<t;n++)r.push(e[n][i]);o.push(r)}return o}(e),i=[],n=0;n<o.length;n++)i[n]=mo(o[n],t-1,r);return i}return r(e)}for(i=[],n=0;n<e.length;n++)i[n]=mo(e[n],t-1,r);return i}const ho="addScalar",go=Se(ho,["typed"],(e=>{let{typed:t}=e;return t(ho,{"number, number":Li,"Complex, Complex":function(e,t){return e.add(t)},"BigNumber, BigNumber":function(e,t){return e.plus(t)},"bigint, bigint":function(e,t){return e+t},"Fraction, Fraction":function(e,t){return e.add(t)},"Unit, Unit":t.referToSelf((e=>(r,n)=>{if(null===r.value||void 0===r.value)throw new Error("Parameter x contains a unit with undefined value");if(null===n.value||void 0===n.value)throw new Error("Parameter y contains a unit with undefined value");if(!r.equalBase(n))throw new Error("Units do not match");const i=r.clone();return i.value=t.find(e,[i.valueType(),n.valueType()])(i.value,n.value),i.fixPrefix=!1,i}))})})),yo="subtractScalar",xo=Se(yo,["typed"],(e=>{let{typed:t}=e;return t(yo,{"number, number":$i,"Complex, Complex":function(e,t){return e.sub(t)},"BigNumber, BigNumber":function(e,t){return e.minus(t)},"bigint, bigint":function(e,t){return e-t},"Fraction, Fraction":function(e,t){return e.sub(t)},"Unit, Unit":t.referToSelf((e=>(r,n)=>{if(null===r.value||void 0===r.value)throw new Error("Parameter x contains a unit with undefined value");if(null===n.value||void 0===n.value)throw new Error("Parameter y contains a unit with undefined value");if(!r.equalBase(n))throw new Error("Units do not match");const i=r.clone();return i.value=t.find(e,[i.valueType(),n.valueType()])(i.value,n.value),i.fixPrefix=!1,i}))})})),bo="cbrt",vo=Se(bo,["config","typed","isNegative","unaryMinus","matrix","Complex","BigNumber","Fraction"],(e=>{let{config:t,typed:r,isNegative:n,unaryMinus:o,matrix:u,Complex:c,BigNumber:l,Fraction:f}=e;return r(bo,{number:Vi,Complex:p,"Complex, boolean":p,BigNumber:function(e){return e.cbrt()},Unit:function(e){if(e.value&&a(e.value)){let t=e.clone();return t.value=1,t=t.pow(1/3),t.value=p(e.value),t}{const t=n(e.value);let r;t&&(e.value=o(e.value)),r=i(e.value)?new l(1).div(3):s(e.value)?new f(1,3):1/3;const a=e.pow(r);return t&&(a.value=o(a.value)),a}}});function p(e,r){const n=e.arg()/3,i=e.abs(),o=new c(Vi(i),0).mul(new c(0,n).exp());if(r){const e=[o,new c(Vi(i),0).mul(new c(0,n+2*Math.PI/3).exp()),new c(Vi(i),0).mul(new c(0,n-2*Math.PI/3).exp())];return"Array"===t.matrix?e:u(e)}return o}})),wo=Se("matAlgo11xS0s",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i,o){const a=e._values,s=e._index,u=e._ptr,c=e._size,l=e._datatype;if(!a)throw new Error("Cannot perform operation on Pattern Sparse Matrix and Scalar value");const f=c[0],p=c[1];let m,d=r,h=0,g=i;"string"==typeof l&&(m=l,d=t.find(r,[m,m]),h=t.convert(0,m),n=t.convert(n,m),g=t.find(i,[m,m]));const y=[],x=[],b=[];for(let e=0;e<p;e++){b[e]=x.length;for(let t=u[e],r=u[e+1],i=t;i<r;i++){const e=s[i],t=o?g(n,a[i]):g(a[i],n);d(t,h)||(x.push(e),y.push(t))}}return b[p]=x.length,e.createSparseMatrix({values:y,index:x,ptr:b,size:[f,p],datatype:m})}})),No=Se("matAlgo12xSfs",["typed","DenseMatrix"],(e=>{let{typed:t,DenseMatrix:r}=e;return function(e,n,i,o){const a=e._values,s=e._index,u=e._ptr,c=e._size,l=e._datatype;if(!a)throw new Error("Cannot perform operation on Pattern Sparse Matrix and Scalar value");const f=c[0],p=c[1];let m,d=i;"string"==typeof l&&(m=l,n=t.convert(n,m),d=t.find(i,[m,m]));const h=[],g=[],y=[];for(let e=0;e<p;e++){const t=e+1;for(let r=u[e],n=u[e+1],i=r;i<n;i++){const e=s[i];g[e]=a[i],y[e]=t}for(let r=0;r<f;r++)0===e&&(h[r]=[]),y[r]===t?h[r][e]=o?d(n,g[r]):d(g[r],n):h[r][e]=o?d(n,0):d(0,n)}return new r({data:h,size:[f,p],datatype:m})}})),Eo=Se("matAlgo14xDs",["typed"],(e=>{let{typed:t}=e;return function(e,n,i,o){const a=e._data,s=e._size,u=e._datatype;let c,l=i;"string"==typeof u&&(c=u,n=t.convert(n,c),l=t.find(i,[c,c]));const f=s.length>0?r(l,0,s,s[0],a,n,o):[];return e.createDenseMatrix({data:f,size:ye(s),datatype:c})};function r(e,t,n,i,o,a,s){const u=[];if(t===n.length-1)for(let t=0;t<i;t++)u[t]=s?e(a,o[t]):e(o[t],a);else for(let c=0;c<i;c++)u[c]=r(e,t+1,n,n[t+1],o[c],a,s);return u}})),Ao="ceil",So=["typed","config","round","matrix","equalScalar","zeros","DenseMatrix"],Mo=Se(Ao,["typed","config","round"],(e=>{let{typed:t,config:r,round:n}=e;return t(Ao,{number:function(e){return ue(e,n(e),r.relTol,r.absTol)?n(e):Math.ceil(e)},"number, number":function(e,t){if(ue(e,n(e,t),r.relTol,r.absTol))return n(e,t);{let[r,n]=`${e}e`.split("e");const i=Math.ceil(Number(`${r}e${Number(n)+t}`));return[r,n]=`${i}e`.split("e"),Number(`${r}e${Number(n)-t}`)}}})})),Co=Se(Ao,So,(e=>{let{typed:t,config:r,round:n,matrix:i,equalScalar:o,zeros:a,DenseMatrix:s}=e;const u=wo({typed:t,equalScalar:o}),c=No({typed:t,DenseMatrix:s}),l=Eo({typed:t}),f=Mo({typed:t,config:r,round:n});return t("ceil",{number:f.signatures.number,"number,number":f.signatures["number,number"],Complex:function(e){return e.ceil()},"Complex, number":function(e,t){return e.ceil(t)},"Complex, BigNumber":function(e,t){return e.ceil(t.toNumber())},BigNumber:function(e){return ti(e,n(e),r.relTol,r.absTol)?n(e):e.ceil()},"BigNumber, BigNumber":function(e,t){return ti(e,n(e,t),r.relTol,r.absTol)?n(e,t):e.toDecimalPlaces(t.toNumber(),Fr.ROUND_CEIL)},Fraction:function(e){return e.ceil()},"Fraction, number":function(e,t){return e.ceil(t)},"Fraction, BigNumber":function(e,t){return e.ceil(t.toNumber())},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0))),"Array, number | BigNumber":t.referToSelf((e=>(t,r)=>Gn(t,(t=>e(t,r)),!0))),"SparseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>u(t,r,e,!1))),"DenseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>l(t,r,e,!1))),"number | Complex | Fraction | BigNumber, Array":t.referToSelf((e=>(t,r)=>l(i(r),t,e,!0).valueOf())),"number | Complex | Fraction | BigNumber, Matrix":t.referToSelf((e=>(t,r)=>o(t,0)?a(r.size(),r.storage()):"dense"===r.storage()?l(r,t,e,!0):c(r,t,e,!0)))})})),To="cube",Do=Se(To,["typed"],(e=>{let{typed:t}=e;return t(To,{number:Wi,Complex:function(e){return e.mul(e).mul(e)},BigNumber:function(e){return e.times(e).times(e)},bigint:function(e){return e*e*e},Fraction:function(e){return e.pow(3)},Unit:function(e){return e.pow(3)}})})),Fo=Se("exp",["typed"],(e=>{let{typed:t}=e;return t("exp",{number:Yi,Complex:function(e){return e.exp()},BigNumber:function(e){return e.exp()}})})),Bo="expm1",Oo=Se(Bo,["typed","Complex"],(e=>{let{typed:t,Complex:r}=e;return t(Bo,{number:Ji,Complex:function(e){const t=Math.exp(e.re);return new r(t*Math.cos(e.im)-1,t*Math.sin(e.im))},BigNumber:function(e){return e.exp().minus(1)}})})),_o="fix",zo=["typed","Complex","matrix","ceil","floor","equalScalar","zeros","DenseMatrix"],Io=Se(_o,["typed","ceil","floor"],(e=>{let{typed:t,ceil:r,floor:n}=e;return t(_o,{number:function(e){return e>0?n(e):r(e)},"number, number":function(e,t){return e>0?n(e,t):r(e,t)}})})),ko=Se(_o,zo,(e=>{let{typed:t,Complex:r,matrix:n,ceil:i,floor:o,equalScalar:a,zeros:s,DenseMatrix:u}=e;const c=No({typed:t,DenseMatrix:u}),l=Eo({typed:t}),f=Io({typed:t,ceil:i,floor:o});return t("fix",{number:f.signatures.number,"number, number | BigNumber":f.signatures["number,number"],Complex:function(e){return new r(e.re>0?Math.floor(e.re):Math.ceil(e.re),e.im>0?Math.floor(e.im):Math.ceil(e.im))},"Complex, number":function(e,t){return new r(e.re>0?o(e.re,t):i(e.re,t),e.im>0?o(e.im,t):i(e.im,t))},"Complex, BigNumber":function(e,t){const n=t.toNumber();return new r(e.re>0?o(e.re,n):i(e.re,n),e.im>0?o(e.im,n):i(e.im,n))},BigNumber:function(e){return e.isNegative()?i(e):o(e)},"BigNumber, number | BigNumber":function(e,t){return e.isNegative()?i(e,t):o(e,t)},Fraction:function(e){return e.s<0?e.ceil():e.floor()},"Fraction, number | BigNumber":function(e,t){return e.s<0?i(e,t):o(e,t)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0))),"Array | Matrix, number | BigNumber":t.referToSelf((e=>(t,r)=>Gn(t,(t=>e(t,r)),!0))),"number | Complex | Fraction | BigNumber, Array":t.referToSelf((e=>(t,r)=>l(n(r),t,e,!0).valueOf())),"number | Complex | Fraction | BigNumber, Matrix":t.referToSelf((e=>(t,r)=>a(t,0)?s(r.size(),r.storage()):"dense"===r.storage()?l(r,t,e,!0):c(r,t,e,!0)))})})),qo="floor",Ro=["typed","config","round","matrix","equalScalar","zeros","DenseMatrix"],Po=Se(qo,["typed","config","round"],(e=>{let{typed:t,config:r,round:n}=e;return t(qo,{number:function(e){return ue(e,n(e),r.relTol,r.absTol)?n(e):Math.floor(e)},"number, number":function(e,t){if(ue(e,n(e,t),r.relTol,r.absTol))return n(e,t);{let[r,n]=`${e}e`.split("e");const i=Math.floor(Number(`${r}e${Number(n)+t}`));return[r,n]=`${i}e`.split("e"),Number(`${r}e${Number(n)-t}`)}}})})),jo=Se(qo,Ro,(e=>{let{typed:t,config:r,round:n,matrix:i,equalScalar:o,zeros:a,DenseMatrix:s}=e;const u=wo({typed:t,equalScalar:o}),c=No({typed:t,DenseMatrix:s}),l=Eo({typed:t}),f=Po({typed:t,config:r,round:n});return t("floor",{number:f.signatures.number,"number,number":f.signatures["number,number"],Complex:function(e){return e.floor()},"Complex, number":function(e,t){return e.floor(t)},"Complex, BigNumber":function(e,t){return e.floor(t.toNumber())},BigNumber:function(e){return ti(e,n(e),r.relTol,r.absTol)?n(e):e.floor()},"BigNumber, BigNumber":function(e,t){return ti(e,n(e,t),r.relTol,r.absTol)?n(e,t):e.toDecimalPlaces(t.toNumber(),Fr.ROUND_FLOOR)},Fraction:function(e){return e.floor()},"Fraction, number":function(e,t){return e.floor(t)},"Fraction, BigNumber":function(e,t){return e.floor(t.toNumber())},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0))),"Array, number | BigNumber":t.referToSelf((e=>(t,r)=>Gn(t,(t=>e(t,r)),!0))),"SparseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>u(t,r,e,!1))),"DenseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>l(t,r,e,!1))),"number | Complex | Fraction | BigNumber, Array":t.referToSelf((e=>(t,r)=>l(i(r),t,e,!0).valueOf())),"number | Complex | Fraction | BigNumber, Matrix":t.referToSelf((e=>(t,r)=>o(t,0)?a(r.size(),r.storage()):"dense"===r.storage()?l(r,t,e,!0):c(r,t,e,!0)))})})),Uo=Se("matAlgo02xDS0",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i,o){const a=e._data,s=e._size,u=e._datatype||e.getDataType(),c=n._values,l=n._index,f=n._ptr,p=n._size,m=n._datatype||void 0===n._data?n._datatype:n.getDataType();if(s.length!==p.length)throw new on(s.length,p.length);if(s[0]!==p[0]||s[1]!==p[1])throw new RangeError("Dimension mismatch. Matrix A ("+s+") must match Matrix B ("+p+")");if(!c)throw new Error("Cannot perform operation on Dense Matrix and Pattern Sparse Matrix");const d=s[0],h=s[1];let g,y=r,x=0,b=i;"string"==typeof u&&u===m&&"mixed"!==u&&(g=u,y=t.find(r,[g,g]),x=t.convert(0,g),b=t.find(i,[g,g]));const v=[],w=[],N=[];for(let e=0;e<h;e++){N[e]=w.length;for(let t=f[e],r=f[e+1],n=t;n<r;n++){const t=l[n],r=o?b(c[n],a[t][e]):b(a[t][e],c[n]);y(r,x)||(w.push(t),v.push(r))}}return N[h]=w.length,n.createSparseMatrix({values:v,index:w,ptr:N,size:[d,h],datatype:u===e._datatype&&m===n._datatype?g:void 0})}})),Lo=Se("matAlgo03xDSf",["typed"],(e=>{let{typed:t}=e;return function(e,r,n,i){const o=e._data,a=e._size,s=e._datatype||e.getDataType(),u=r._values,c=r._index,l=r._ptr,f=r._size,p=r._datatype||void 0===r._data?r._datatype:r.getDataType();if(a.length!==f.length)throw new on(a.length,f.length);if(a[0]!==f[0]||a[1]!==f[1])throw new RangeError("Dimension mismatch. Matrix A ("+a+") must match Matrix B ("+f+")");if(!u)throw new Error("Cannot perform operation on Dense Matrix and Pattern Sparse Matrix");const m=a[0],d=a[1];let h,g=0,y=n;"string"==typeof s&&s===p&&"mixed"!==s&&(h=s,g=t.convert(0,h),y=t.find(n,[h,h]));const x=[];for(let e=0;e<m;e++)x[e]=[];const b=[],v=[];for(let e=0;e<d;e++){const t=e+1;for(let r=l[e],n=l[e+1],a=r;a<n;a++){const r=c[a];b[r]=i?y(u[a],o[r][e]):y(o[r][e],u[a]),v[r]=t}for(let r=0;r<m;r++)v[r]===t?x[r][e]=b[r]:x[r][e]=i?y(g,o[r][e]):y(o[r][e],g)}return e.createDenseMatrix({data:x,size:[m,d],datatype:s===e._datatype&&p===r._datatype?h:void 0})}})),$o=Se("matAlgo05xSfSf",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i){const o=e._values,a=e._index,s=e._ptr,u=e._size,c=e._datatype||void 0===e._data?e._datatype:e.getDataType(),l=n._values,f=n._index,p=n._ptr,m=n._size,d=n._datatype||void 0===n._data?n._datatype:n.getDataType();if(u.length!==m.length)throw new on(u.length,m.length);if(u[0]!==m[0]||u[1]!==m[1])throw new RangeError("Dimension mismatch. Matrix A ("+u+") must match Matrix B ("+m+")");const h=u[0],g=u[1];let y,x=r,b=0,v=i;"string"==typeof c&&c===d&&"mixed"!==c&&(y=c,x=t.find(r,[y,y]),b=t.convert(0,y),v=t.find(i,[y,y]));const w=o&&l?[]:void 0,N=[],E=[],A=w?[]:void 0,S=w?[]:void 0,M=[],C=[];let T,D,F,B;for(D=0;D<g;D++){E[D]=N.length;const e=D+1;for(F=s[D],B=s[D+1];F<B;F++)T=a[F],N.push(T),M[T]=e,A&&(A[T]=o[F]);for(F=p[D],B=p[D+1];F<B;F++)T=f[F],M[T]!==e&&N.push(T),C[T]=e,S&&(S[T]=l[F]);if(w)for(F=E[D];F<N.length;){T=N[F];const t=M[T],r=C[T];if(t===e||r===e){const n=v(t===e?A[T]:b,r===e?S[T]:b);x(n,b)?N.splice(F,1):(w.push(n),F++)}}}return E[g]=N.length,e.createSparseMatrix({values:w,index:N,ptr:E,size:[h,g],datatype:c===e._datatype&&d===n._datatype?y:void 0})}})),Ho=Se("matAlgo13xDD",["typed"],(e=>{let{typed:t}=e;return function(e,n,i){const o=e._data,a=e._size,s=e._datatype,u=n._data,c=n._size,l=n._datatype,f=[];if(a.length!==c.length)throw new on(a.length,c.length);for(let e=0;e<a.length;e++){if(a[e]!==c[e])throw new RangeError("Dimension mismatch. Matrix A ("+a+") must match Matrix B ("+c+")");f[e]=a[e]}let p,m=i;"string"==typeof s&&s===l&&(p=s,m=t.find(i,[p,p]));const d=f.length>0?r(m,0,f,f[0],o,u):[];return e.createDenseMatrix({data:d,size:f,datatype:p})};function r(e,t,n,i,o,a){const s=[];if(t===n.length-1)for(let t=0;t<i;t++)s[t]=e(o[t],a[t]);else for(let u=0;u<i;u++)s[u]=r(e,t+1,n,n[t+1],o[u],a[u]);return s}}));function Go(e,t){if(ve(e.size(),t.size()))return[e,t];const r=_n(e.size(),t.size());return[e,t].map((e=>function(e,t){return ve(e.size(),t)?e:e.create(In(e.valueOf(),t),e.datatype())}(e,r)))}const Zo=Se("matrixAlgorithmSuite",["typed","matrix"],(e=>{let{typed:t,matrix:r}=e;const n=Ho({typed:t}),i=Eo({typed:t});return function(e){const o=e.elop,a=e.SD||e.DS;let s;o?(s={"DenseMatrix, DenseMatrix":(e,t)=>n(...Go(e,t),o),"Array, Array":(e,t)=>n(...Go(r(e),r(t)),o).valueOf(),"Array, DenseMatrix":(e,t)=>n(...Go(r(e),t),o),"DenseMatrix, Array":(e,t)=>n(...Go(e,r(t)),o)},e.SS&&(s["SparseMatrix, SparseMatrix"]=(t,r)=>e.SS(...Go(t,r),o,!1)),e.DS&&(s["DenseMatrix, SparseMatrix"]=(t,r)=>e.DS(...Go(t,r),o,!1),s["Array, SparseMatrix"]=(t,n)=>e.DS(...Go(r(t),n),o,!1)),a&&(s["SparseMatrix, DenseMatrix"]=(e,t)=>a(...Go(t,e),o,!0),s["SparseMatrix, Array"]=(e,t)=>a(...Go(r(t),e),o,!0))):(s={"DenseMatrix, DenseMatrix":t.referToSelf((e=>(t,r)=>n(...Go(t,r),e))),"Array, Array":t.referToSelf((e=>(t,i)=>n(...Go(r(t),r(i)),e).valueOf())),"Array, DenseMatrix":t.referToSelf((e=>(t,i)=>n(...Go(r(t),i),e))),"DenseMatrix, Array":t.referToSelf((e=>(t,i)=>n(...Go(t,r(i)),e)))},e.SS&&(s["SparseMatrix, SparseMatrix"]=t.referToSelf((t=>(r,n)=>e.SS(...Go(r,n),t,!1)))),e.DS&&(s["DenseMatrix, SparseMatrix"]=t.referToSelf((t=>(r,n)=>e.DS(...Go(r,n),t,!1))),s["Array, SparseMatrix"]=t.referToSelf((t=>(n,i)=>e.DS(...Go(r(n),i),t,!1)))),a&&(s["SparseMatrix, DenseMatrix"]=t.referToSelf((e=>(t,r)=>a(...Go(r,t),e,!0))),s["SparseMatrix, Array"]=t.referToSelf((e=>(t,n)=>a(...Go(r(n),t),e,!0)))));const u=e.scalar||"any";(e.Ds||e.Ss)&&(o?(s["DenseMatrix,"+u]=(e,t)=>i(e,t,o,!1),s[u+", DenseMatrix"]=(e,t)=>i(t,e,o,!0),s["Array,"+u]=(e,t)=>i(r(e),t,o,!1).valueOf(),s[u+", Array"]=(e,t)=>i(r(t),e,o,!0).valueOf()):(s["DenseMatrix,"+u]=t.referToSelf((e=>(t,r)=>i(t,r,e,!1))),s[u+", DenseMatrix"]=t.referToSelf((e=>(t,r)=>i(r,t,e,!0))),s["Array,"+u]=t.referToSelf((e=>(t,n)=>i(r(t),n,e,!1).valueOf())),s[u+", Array"]=t.referToSelf((e=>(t,n)=>i(r(n),t,e,!0).valueOf()))));const c=void 0!==e.sS?e.sS:e.Ss;return o?(e.Ss&&(s["SparseMatrix,"+u]=(t,r)=>e.Ss(t,r,o,!1)),c&&(s[u+", SparseMatrix"]=(e,t)=>c(t,e,o,!0))):(e.Ss&&(s["SparseMatrix,"+u]=t.referToSelf((t=>(r,n)=>e.Ss(r,n,t,!1)))),c&&(s[u+", SparseMatrix"]=t.referToSelf((e=>(t,r)=>c(r,t,e,!0))))),o&&o.signatures&&xe(s,o.signatures),s}})),Vo=Se("mod",["typed","config","round","matrix","equalScalar","zeros","DenseMatrix","concat"],(e=>{let{typed:t,config:r,round:n,matrix:i,equalScalar:o,zeros:a,DenseMatrix:s,concat:u}=e;const c=jo({typed:t,config:r,round:n,matrix:i,equalScalar:o,zeros:a,DenseMatrix:s}),l=Uo({typed:t,equalScalar:o}),f=Lo({typed:t}),p=$o({typed:t,equalScalar:o}),m=wo({typed:t,equalScalar:o}),d=No({typed:t,DenseMatrix:s});return t("mod",{"number, number":function(e,t){return 0===t?e:e-t*c(e/t)},"BigNumber, BigNumber":function(e,t){return t.isZero()?e:e.sub(t.mul(c(e.div(t))))},"bigint, bigint":function(e,t){if(0n===t)return e;if(e<0){const r=e%t;return 0n===r?r:r+t}return e%t},"Fraction, Fraction":function(e,t){return t.equals(0)?e:e.sub(t.mul(c(e.div(t))))}},Zo({typed:t,matrix:i,concat:u})({SS:p,DS:f,SD:l,Ss:m,sS:d}))})),Wo=Se("matAlgo01xDSid",["typed"],(e=>{let{typed:t}=e;return function(e,r,n,i){const o=e._data,a=e._size,s=e._datatype||e.getDataType(),u=r._values,c=r._index,l=r._ptr,f=r._size,p=r._datatype||void 0===r._data?r._datatype:r.getDataType();if(a.length!==f.length)throw new on(a.length,f.length);if(a[0]!==f[0]||a[1]!==f[1])throw new RangeError("Dimension mismatch. Matrix A ("+a+") must match Matrix B ("+f+")");if(!u)throw new Error("Cannot perform operation on Dense Matrix and Pattern Sparse Matrix");const m=a[0],d=a[1],h="string"==typeof s&&"mixed"!==s&&s===p?s:void 0,g=h?t.find(n,[h,h]):n;let y,x;const b=[];for(y=0;y<m;y++)b[y]=[];const v=[],w=[];for(x=0;x<d;x++){const e=x+1;for(let t=l[x],r=l[x+1],n=t;n<r;n++)y=c[n],v[y]=i?g(u[n],o[y][x]):g(o[y][x],u[n]),w[y]=e;for(y=0;y<m;y++)w[y]===e?b[y][x]=v[y]:b[y][x]=o[y][x]}return e.createDenseMatrix({data:b,size:[m,d],datatype:s===e._datatype&&p===r._datatype?h:void 0})}})),Yo=Se("matAlgo04xSidSid",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i){const o=e._values,a=e._index,s=e._ptr,u=e._size,c=e._datatype||void 0===e._data?e._datatype:e.getDataType(),l=n._values,f=n._index,p=n._ptr,m=n._size,d=n._datatype||void 0===n._data?n._datatype:n.getDataType();if(u.length!==m.length)throw new on(u.length,m.length);if(u[0]!==m[0]||u[1]!==m[1])throw new RangeError("Dimension mismatch. Matrix A ("+u+") must match Matrix B ("+m+")");const h=u[0],g=u[1];let y,x=r,b=0,v=i;"string"==typeof c&&c===d&&"mixed"!==c&&(y=c,x=t.find(r,[y,y]),b=t.convert(0,y),v=t.find(i,[y,y]));const w=o&&l?[]:void 0,N=[],E=[],A=o&&l?[]:void 0,S=o&&l?[]:void 0,M=[],C=[];let T,D,F,B,O;for(D=0;D<g;D++){E[D]=N.length;const e=D+1;for(B=s[D],O=s[D+1],F=B;F<O;F++)T=a[F],N.push(T),M[T]=e,A&&(A[T]=o[F]);for(B=p[D],O=p[D+1],F=B;F<O;F++)if(T=f[F],M[T]===e){if(A){const e=v(A[T],l[F]);x(e,b)?M[T]=null:A[T]=e}}else N.push(T),C[T]=e,S&&(S[T]=l[F]);if(A&&S)for(F=E[D];F<N.length;)T=N[F],M[T]===e?(w[F]=A[T],F++):C[T]===e?(w[F]=S[T],F++):N.splice(F,1)}return E[g]=N.length,e.createSparseMatrix({values:w,index:N,ptr:E,size:[h,g],datatype:c===e._datatype&&d===n._datatype?y:void 0})}})),Jo=Se("matAlgo10xSids",["typed","DenseMatrix"],(e=>{let{typed:t,DenseMatrix:r}=e;return function(e,n,i,o){const a=e._values,s=e._index,u=e._ptr,c=e._size,l=e._datatype;if(!a)throw new Error("Cannot perform operation on Pattern Sparse Matrix and Scalar value");const f=c[0],p=c[1];let m,d=i;"string"==typeof l&&(m=l,n=t.convert(n,m),d=t.find(i,[m,m]));const h=[],g=[],y=[];for(let e=0;e<p;e++){const t=e+1;for(let r=u[e],n=u[e+1],i=r;i<n;i++){const e=s[i];g[e]=a[i],y[e]=t}for(let r=0;r<f;r++)0===e&&(h[r]=[]),y[r]===t?h[r][e]=o?d(n,g[r]):d(g[r],n):h[r][e]=n}return new r({data:h,size:[f,p],datatype:m})}}));function Xo(e,t,r,n){if(!(this instanceof Xo))throw new SyntaxError("Constructor must be called with the new operator");this.fn=e,this.count=t,this.min=r,this.max=n,this.message="Wrong number of arguments in function "+e+" ("+t+" provided, "+r+(null!=n?"-"+n:"")+" expected)",this.stack=(new Error).stack}Xo.prototype=new Error,Xo.prototype.constructor=Error,Xo.prototype.name="ArgumentsError",Xo.prototype.isArgumentsError=!0;const Qo="number | BigNumber | Fraction | Matrix | Array",Ko=`${Qo}, ${Qo}, ...${Qo}`;function ea(e){return!e.some((e=>Array.isArray(e)))}const ta=Se("gcd",["typed","config","round","matrix","equalScalar","zeros","BigNumber","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,config:n,round:i,equalScalar:o,zeros:a,BigNumber:s,DenseMatrix:u,concat:c}=e;const l=Vo({typed:t,config:n,round:i,matrix:r,equalScalar:o,zeros:a,DenseMatrix:u,concat:c}),f=Wo({typed:t}),p=Yo({typed:t,equalScalar:o}),m=Jo({typed:t,DenseMatrix:u});return t("gcd",{"number, number":function(e,t){if(!Z(e)||!Z(t))throw new Error("Parameters in function gcd must be integer numbers");let r;for(;0!==t;)r=l(e,t),e=t,t=r;return e<0?-e:e},"BigNumber, BigNumber":function(e,t){if(!e.isInt()||!t.isInt())throw new Error("Parameters in function gcd must be integer numbers");const r=new s(0);for(;!t.isZero();){const r=l(e,t);e=t,t=r}return e.lt(r)?e.neg():e},"Fraction, Fraction":(e,t)=>e.gcd(t)},Zo({typed:t,matrix:r,concat:c})({SS:p,DS:f,Ss:m}),{[Ko]:t.referToSelf((e=>(t,r,n)=>{let i=e(t,r);for(let t=0;t<n.length;t++)i=e(i,n[t]);return i})),Array:t.referToSelf((e=>t=>{if(1===t.length&&Array.isArray(t[0])&&ea(t[0]))return e(...t[0]);if(ea(t))return e(...t);throw new Xo("gcd() supports only 1d matrices!")})),Matrix:t.referToSelf((e=>t=>e(t.toArray())))})})),ra=Se("matAlgo06xS0S0",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i){const o=e._values,a=e._size,s=e._datatype||void 0===e._data?e._datatype:e.getDataType(),u=n._values,c=n._size,l=n._datatype||void 0===n._data?n._datatype:n.getDataType();if(a.length!==c.length)throw new on(a.length,c.length);if(a[0]!==c[0]||a[1]!==c[1])throw new RangeError("Dimension mismatch. Matrix A ("+a+") must match Matrix B ("+c+")");const f=a[0],p=a[1];let m,d=r,h=0,g=i;"string"==typeof s&&s===l&&"mixed"!==s&&(m=s,d=t.find(r,[m,m]),h=t.convert(0,m),g=t.find(i,[m,m]));const y=o&&u?[]:void 0,x=[],b=[],v=y?[]:void 0,w=[],N=[];for(let t=0;t<p;t++){b[t]=x.length;const r=t+1;if(Wn(e,t,w,v,N,r,x,g),Wn(n,t,w,v,N,r,x,g),v){let e=b[t];for(;e<x.length;){const t=x[e];if(N[t]===r){const r=v[t];d(r,h)?x.splice(e,1):(y.push(r),e++)}else x.splice(e,1)}}else{let e=b[t];for(;e<x.length;)N[x[e]]!==r?x.splice(e,1):e++}}return b[p]=x.length,e.createSparseMatrix({values:y,index:x,ptr:b,size:[f,p],datatype:s===e._datatype&&l===n._datatype?m:void 0})}})),na=Se("lcm",["typed","matrix","equalScalar","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,concat:i}=e;const o=Uo({typed:t,equalScalar:n}),a=ra({typed:t,equalScalar:n}),s=wo({typed:t,equalScalar:n}),u=Zo({typed:t,matrix:r,concat:i}),c="number | BigNumber | Fraction | Matrix | Array",l={};return l[`${c}, ${c}, ...${c}`]=t.referToSelf((e=>(t,r,n)=>{let i=e(t,r);for(let t=0;t<n.length;t++)i=e(i,n[t]);return i})),t("lcm",{"number, number":Xi,"BigNumber, BigNumber":function(e,t){if(!e.isInt()||!t.isInt())throw new Error("Parameters in function lcm must be integer numbers");if(e.isZero())return e;if(t.isZero())return t;const r=e.times(t);for(;!t.isZero();){const r=t;t=e.mod(r),e=r}return r.div(e).abs()},"Fraction, Fraction":(e,t)=>e.lcm(t)},u({SS:a,DS:o,Ss:s}),l)})),ia="log10",oa=Se(ia,["typed","config","Complex"],(e=>{let{typed:t,config:r,Complex:n}=e;return t(ia,{number:function(e){return e>=0||r.predictable?Qi(e):new n(e,0).log().div(Math.LN10)},Complex:function(e){return new n(e).log().div(Math.LN10)},BigNumber:function(e){return!e.isNegative()||r.predictable?e.log():new n(e.toNumber(),0).log().div(Math.LN10)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),aa="log2",sa=Se(aa,["typed","config","Complex"],(e=>{let{typed:t,config:r,Complex:n}=e;return t(aa,{number:function(e){return e>=0||r.predictable?Ki(e):i(new n(e,0))},Complex:i,BigNumber:function(e){return!e.isNegative()||r.predictable?e.log(2):i(new n(e.toNumber(),0))},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))});function i(e){const t=Math.sqrt(e.re*e.re+e.im*e.im);return new n(Math.log2?Math.log2(t):Math.log(t)/Math.LN2,Math.atan2(e.im,e.re)/Math.LN2)}})),ua=Se("multiplyScalar",["typed"],(e=>{let{typed:t}=e;return t("multiplyScalar",{"number, number":Hi,"Complex, Complex":function(e,t){return e.mul(t)},"BigNumber, BigNumber":function(e,t){return e.times(t)},"bigint, bigint":function(e,t){return e*t},"Fraction, Fraction":function(e,t){return e.mul(t)},"number | Fraction | BigNumber | Complex, Unit":(e,t)=>t.multiply(e),"Unit, number | Fraction | BigNumber | Complex | Unit":(e,t)=>e.multiply(t)})})),ca="multiply",la=Se(ca,["typed","matrix","addScalar","multiplyScalar","equalScalar","dot"],(e=>{let{typed:t,matrix:r,addScalar:n,multiplyScalar:i,equalScalar:o,dot:a}=e;const s=wo({typed:t,equalScalar:o}),u=Eo({typed:t});function c(e,t){switch(e.length){case 1:switch(t.length){case 1:if(e[0]!==t[0])throw new RangeError("Dimension mismatch in multiplication. Vectors must have the same length");break;case 2:if(e[0]!==t[0])throw new RangeError("Dimension mismatch in multiplication. Vector length ("+e[0]+") must match Matrix rows ("+t[0]+")");break;default:throw new Error("Can only multiply a 1 or 2 dimensional matrix (Matrix B has "+t.length+" dimensions)")}break;case 2:switch(t.length){case 1:if(e[1]!==t[0])throw new RangeError("Dimension mismatch in multiplication. Matrix columns ("+e[1]+") must match Vector length ("+t[0]+")");break;case 2:if(e[1]!==t[0])throw new RangeError("Dimension mismatch in multiplication. Matrix A columns ("+e[1]+") must match Matrix B rows ("+t[0]+")");break;default:throw new Error("Can only multiply a 1 or 2 dimensional matrix (Matrix B has "+t.length+" dimensions)")}break;default:throw new Error("Can only multiply a 1 or 2 dimensional matrix (Matrix A has "+e.length+" dimensions)")}}const l=t("_multiplyMatrixVector",{"DenseMatrix, any":function(e,r){const o=e._data,a=e._size,s=e._datatype||e.getDataType(),u=r._data,c=r._datatype||r.getDataType(),l=a[0],f=a[1];let p,m=n,d=i;s&&c&&s===c&&"string"==typeof s&&"mixed"!==s&&(p=s,m=t.find(n,[p,p]),d=t.find(i,[p,p]));const h=[];for(let e=0;e<l;e++){const t=o[e];let r=d(t[0],u[0]);for(let e=1;e<f;e++)r=m(r,d(t[e],u[e]));h[e]=r}return e.createDenseMatrix({data:h,size:[l],datatype:s===e._datatype&&c===r._datatype?p:void 0})},"SparseMatrix, any":function(e,r){const a=e._values,s=e._index,u=e._ptr,c=e._datatype||void 0===e._data?e._datatype:e.getDataType();if(!a)throw new Error("Cannot multiply Pattern only Matrix times Dense Matrix");const l=r._data,f=r._datatype||r.getDataType(),p=e._size[0],m=r._size[0],d=[],h=[],g=[];let y,x=n,b=i,v=o,w=0;c&&f&&c===f&&"string"==typeof c&&"mixed"!==c&&(y=c,x=t.find(n,[y,y]),b=t.find(i,[y,y]),v=t.find(o,[y,y]),w=t.convert(0,y));const N=[],E=[];g[0]=0;for(let e=0;e<m;e++){const t=l[e];if(!v(t,w))for(let r=u[e],n=u[e+1],i=r;i<n;i++){const e=s[i];E[e]?N[e]=x(N[e],b(t,a[i])):(E[e]=!0,h.push(e),N[e]=b(t,a[i]))}}for(let e=h.length,t=0;t<e;t++){const e=h[t];d[t]=N[e]}return g[1]=h.length,e.createSparseMatrix({values:d,index:h,ptr:g,size:[p,1],datatype:c===e._datatype&&f===r._datatype?y:void 0})}}),p=t("_multiplyMatrixMatrix",{"DenseMatrix, DenseMatrix":function(e,r){const o=e._data,a=e._size,s=e._datatype||e.getDataType(),u=r._data,c=r._size,l=r._datatype||r.getDataType(),f=a[0],p=a[1],m=c[1];let d,h=n,g=i;s&&l&&s===l&&"string"==typeof s&&"mixed"!==s&&"mixed"!==s&&(d=s,h=t.find(n,[d,d]),g=t.find(i,[d,d]));const y=[];for(let e=0;e<f;e++){const t=o[e];y[e]=[];for(let r=0;r<m;r++){let n=g(t[0],u[0][r]);for(let e=1;e<p;e++)n=h(n,g(t[e],u[e][r]));y[e][r]=n}}return e.createDenseMatrix({data:y,size:[f,m],datatype:s===e._datatype&&l===r._datatype?d:void 0})},"DenseMatrix, SparseMatrix":function(e,r){const a=e._data,s=e._size,u=e._datatype||e.getDataType(),c=r._values,l=r._index,f=r._ptr,p=r._size,m=r._datatype||void 0===r._data?r._datatype:r.getDataType();if(!c)throw new Error("Cannot multiply Dense Matrix times Pattern only Matrix");const d=s[0],h=p[1];let g,y=n,x=i,b=o,v=0;u&&m&&u===m&&"string"==typeof u&&"mixed"!==u&&(g=u,y=t.find(n,[g,g]),x=t.find(i,[g,g]),b=t.find(o,[g,g]),v=t.convert(0,g));const w=[],N=[],E=[],A=r.createSparseMatrix({values:w,index:N,ptr:E,size:[d,h],datatype:u===e._datatype&&m===r._datatype?g:void 0});for(let e=0;e<h;e++){E[e]=N.length;const t=f[e],r=f[e+1];if(r>t){let e=0;for(let n=0;n<d;n++){const i=n+1;let o;for(let s=t;s<r;s++){const t=l[s];e!==i?(o=x(a[n][t],c[s]),e=i):o=y(o,x(a[n][t],c[s]))}e!==i||b(o,v)||(N.push(n),w.push(o))}}}return E[h]=N.length,A},"SparseMatrix, DenseMatrix":function(e,r){const a=e._values,s=e._index,u=e._ptr,c=e._datatype||void 0===e._data?e._datatype:e.getDataType();if(!a)throw new Error("Cannot multiply Pattern only Matrix times Dense Matrix");const l=r._data,f=r._datatype||r.getDataType(),p=e._size[0],m=r._size[0],d=r._size[1];let h,g=n,y=i,x=o,b=0;c&&f&&c===f&&"string"==typeof c&&"mixed"!==c&&(h=c,g=t.find(n,[h,h]),y=t.find(i,[h,h]),x=t.find(o,[h,h]),b=t.convert(0,h));const v=[],w=[],N=[],E=e.createSparseMatrix({values:v,index:w,ptr:N,size:[p,d],datatype:c===e._datatype&&f===r._datatype?h:void 0}),A=[],S=[];for(let e=0;e<d;e++){N[e]=w.length;const t=e+1;for(let r=0;r<m;r++){const n=l[r][e];if(!x(n,b))for(let e=u[r],i=u[r+1],o=e;o<i;o++){const e=s[o];S[e]!==t?(S[e]=t,w.push(e),A[e]=y(n,a[o])):A[e]=g(A[e],y(n,a[o]))}}for(let t=N[e],r=w.length,n=t;n<r;n++){const e=w[n];v[n]=A[e]}}return N[d]=w.length,E},"SparseMatrix, SparseMatrix":function(e,r){const o=e._values,a=e._index,s=e._ptr,u=e._datatype||void 0===e._data?e._datatype:e.getDataType(),c=r._values,l=r._index,f=r._ptr,p=r._datatype||void 0===r._data?r._datatype:r.getDataType(),m=e._size[0],d=r._size[1],h=o&&c;let g,y=n,x=i;u&&p&&u===p&&"string"==typeof u&&"mixed"!==u&&(g=u,y=t.find(n,[g,g]),x=t.find(i,[g,g]));const b=h?[]:void 0,v=[],w=[],N=e.createSparseMatrix({values:b,index:v,ptr:w,size:[m,d],datatype:u===e._datatype&&p===r._datatype?g:void 0}),E=h?[]:void 0,A=[];let S,M,C,T,D,F,B,O;for(let e=0;e<d;e++){w[e]=v.length;const t=e+1;for(D=f[e],F=f[e+1],T=D;T<F;T++)if(O=l[T],h)for(M=s[O],C=s[O+1],S=M;S<C;S++)B=a[S],A[B]!==t?(A[B]=t,v.push(B),E[B]=x(c[T],o[S])):E[B]=y(E[B],x(c[T],o[S]));else for(M=s[O],C=s[O+1],S=M;S<C;S++)B=a[S],A[B]!==t&&(A[B]=t,v.push(B));if(h)for(let t=w[e],r=v.length,n=t;n<r;n++){const e=v[n];b[n]=E[e]}}return w[d]=v.length,N}});return t(ca,i,{"Array, Array":t.referTo("Matrix, Matrix",(e=>(t,n)=>{c(sn(t),sn(n));const i=e(r(t),r(n));return f(i)?i.valueOf():i})),"Matrix, Matrix":function(e,r){const o=e.size(),s=r.size();return c(o,s),1===o.length?1===s.length?function(e,t,r){if(0===r)throw new Error("Cannot multiply two empty vectors");return a(e,t)}(e,r,o[0]):function(e,r){if("dense"!==r.storage())throw new Error("Support for SparseMatrix not implemented");return function(e,r){const o=e._data,a=e._size,s=e._datatype||e.getDataType(),u=r._data,c=r._size,l=r._datatype||r.getDataType(),f=a[0],p=c[1];let m,d=n,h=i;s&&l&&s===l&&"string"==typeof s&&"mixed"!==s&&(m=s,d=t.find(n,[m,m]),h=t.find(i,[m,m]));const g=[];for(let e=0;e<p;e++){let t=h(o[0],u[0][e]);for(let r=1;r<f;r++)t=d(t,h(o[r],u[r][e]));g[e]=t}return e.createDenseMatrix({data:g,size:[p],datatype:s===e._datatype&&l===r._datatype?m:void 0})}(e,r)}(e,r):1===s.length?l(e,r):p(e,r)},"Matrix, Array":t.referTo("Matrix,Matrix",(e=>(t,n)=>e(t,r(n)))),"Array, Matrix":t.referToSelf((e=>(t,n)=>e(r(t,n.storage()),n))),"SparseMatrix, any":function(e,t){return s(e,t,i,!1)},"DenseMatrix, any":function(e,t){return u(e,t,i,!1)},"any, SparseMatrix":function(e,t){return s(t,e,i,!0)},"any, DenseMatrix":function(e,t){return u(t,e,i,!0)},"Array, any":function(e,t){return u(r(e),t,i,!1).valueOf()},"any, Array":function(e,t){return u(r(t),e,i,!0).valueOf()},"any, any":i,"any, any, ...any":t.referToSelf((e=>(t,r,n)=>{let i=e(t,r);for(let t=0;t<n.length;t++)i=e(i,n[t]);return i}))})})),fa="nthRoot",pa=Se(fa,["typed","matrix","equalScalar","BigNumber","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,BigNumber:i,concat:o}=e;const a=Wo({typed:t}),s=Uo({typed:t,equalScalar:n}),u=ra({typed:t,equalScalar:n}),c=wo({typed:t,equalScalar:n}),l=Zo({typed:t,matrix:r,concat:o});function f(){throw new Error("Complex number not supported in function nthRoot. Use nthRoots instead.")}return t(fa,{number:eo,"number, number":eo,BigNumber:e=>p(e,new i(2)),"BigNumber, BigNumber":p,Complex:f,"Complex, number":f,Array:t.referTo("DenseMatrix,number",(e=>t=>e(r(t),2).valueOf())),DenseMatrix:t.referTo("DenseMatrix,number",(e=>t=>e(t,2))),SparseMatrix:t.referTo("SparseMatrix,number",(e=>t=>e(t,2))),"SparseMatrix, SparseMatrix":t.referToSelf((e=>(t,r)=>{if(1===r.density())return u(t,r,e);throw new Error("Root must be non-zero")})),"DenseMatrix, SparseMatrix":t.referToSelf((e=>(t,r)=>{if(1===r.density())return a(t,r,e,!1);throw new Error("Root must be non-zero")})),"Array, SparseMatrix":t.referTo("DenseMatrix,SparseMatrix",(e=>(t,n)=>e(r(t),n))),"number | BigNumber, SparseMatrix":t.referToSelf((e=>(t,r)=>{if(1===r.density())return c(r,t,e,!0);throw new Error("Root must be non-zero")}))},l({scalar:"number | BigNumber",SD:s,Ss:c,sS:!1}));function p(e,t){const r=i.precision,n=i.clone({precision:r+2}),o=new i(0),a=new n(1),s=t.isNegative();if(s&&(t=t.neg()),t.isZero())throw new Error("Root must be non-zero");if(e.isNegative()&&!t.abs().mod(2).equals(1))throw new Error("Root must be odd when a is negative.");if(e.isZero())return s?new n(1/0):0;if(!e.isFinite())return s?o:e;let u=e.abs().pow(a.div(t));return u=e.isNeg()?u.neg():u,new i((s?a.div(u):u).toPrecision(r))}})),ma="sign",da=Se(ma,["typed","BigNumber","Fraction","complex"],(e=>{let{typed:t,BigNumber:r,complex:n,Fraction:i}=e;return t(ma,{number:to,Complex:function(e){return 0===e.im?n(to(e.re)):e.sign()},BigNumber:function(e){return new r(e.cmp(0))},bigint:function(e){return e>0n?1n:e<0n?-1n:0n},Fraction:function(e){return new i(e.s,1)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0))),Unit:t.referToSelf((e=>r=>{if(!r._isDerived()&&0!==r.units[0].unit.offset)throw new TypeError("sign is ambiguous for units with offset");return t.find(e,r.valueType())(r.value)}))})})),ha=Se("sqrt",["config","typed","Complex"],(e=>{let{config:t,typed:r,Complex:n}=e;return r("sqrt",{number:i,Complex:function(e){return e.sqrt()},BigNumber:function(e){return!e.isNegative()||t.predictable?e.sqrt():i(e.toNumber())},Unit:function(e){return e.pow(.5)}});function i(e){return isNaN(e)?NaN:e>=0||t.predictable?Math.sqrt(e):new n(e,0).sqrt()}})),ga="square",ya=Se(ga,["typed"],(e=>{let{typed:t}=e;return t(ga,{number:ro,Complex:function(e){return e.mul(e)},BigNumber:function(e){return e.times(e)},bigint:function(e){return e*e},Fraction:function(e){return e.mul(e)},Unit:function(e){return e.pow(2)}})})),xa="subtract",ba=Se(xa,["typed","matrix","equalScalar","subtractScalar","unaryMinus","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,subtractScalar:i,unaryMinus:o,DenseMatrix:a,concat:s}=e;const u=Wo({typed:t}),c=Lo({typed:t}),l=$o({typed:t,equalScalar:n}),f=Jo({typed:t,DenseMatrix:a}),p=No({typed:t,DenseMatrix:a}),m=Zo({typed:t,matrix:r,concat:s});return t(xa,{"any, any":i},m({elop:i,SS:l,DS:u,SD:c,Ss:p,sS:f}))})),va="xgcd",wa=Se(va,["typed","config","matrix","BigNumber"],(e=>{let{typed:t,config:r,matrix:n,BigNumber:i}=e;return t(va,{"number, number":function(e,t){const i=no(e,t);return"Array"===r.matrix?i:n(i)},"BigNumber, BigNumber":function(e,t){let o,a,s;const u=new i(0),c=new i(1);let l,f=u,p=c,m=c,d=u;if(!e.isInt()||!t.isInt())throw new Error("Parameters in function xgcd must be integer numbers");for(;!t.isZero();)a=e.div(t).floor(),s=e.mod(t),o=f,f=p.minus(a.times(f)),p=o,o=m,m=d.minus(a.times(m)),d=o,e=t,t=s;return l=e.lt(u)?[e.neg(),p.neg(),d.neg()]:[e,e.isZero()?0:p,d],"Array"===r.matrix?l:n(l)}})})),Na="invmod",Ea=Se(Na,["typed","config","BigNumber","xgcd","equal","smaller","mod","add","isInteger"],(e=>{let{typed:t,config:r,BigNumber:n,xgcd:i,equal:o,smaller:a,mod:s,add:u,isInteger:c}=e;return t(Na,{"number, number":l,"BigNumber, BigNumber":l});function l(e,t){if(!c(e)||!c(t))throw new Error("Parameters in function invmod must be integer numbers");if(e=s(e,t),o(t,0))throw new Error("Divisor must be non zero");let r=i(e,t);r=r.valueOf();let[l,f]=r;return o(l,n(1))?(f=s(f,t),a(f,n(0))&&(f=u(f,t)),f):NaN}})),Aa=Se("matAlgo09xS0Sf",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i){const o=e._values,a=e._index,s=e._ptr,u=e._size,c=e._datatype||void 0===e._data?e._datatype:e.getDataType(),l=n._values,f=n._index,p=n._ptr,m=n._size,d=n._datatype||void 0===n._data?n._datatype:n.getDataType();if(u.length!==m.length)throw new on(u.length,m.length);if(u[0]!==m[0]||u[1]!==m[1])throw new RangeError("Dimension mismatch. Matrix A ("+u+") must match Matrix B ("+m+")");const h=u[0],g=u[1];let y,x=r,b=0,v=i;"string"==typeof c&&c===d&&"mixed"!==c&&(y=c,x=t.find(r,[y,y]),b=t.convert(0,y),v=t.find(i,[y,y]));const w=o&&l?[]:void 0,N=[],E=[],A=w?[]:void 0,S=[];let M,C,T,D,F;for(C=0;C<g;C++){E[C]=N.length;const e=C+1;if(A)for(D=p[C],F=p[C+1],T=D;T<F;T++)M=f[T],S[M]=e,A[M]=l[T];for(D=s[C],F=s[C+1],T=D;T<F;T++)if(M=a[T],A){const t=S[M]===e?A[M]:b,r=v(o[T],t);x(r,b)||(N.push(M),w.push(r))}else N.push(M)}return E[g]=N.length,e.createSparseMatrix({values:w,index:N,ptr:E,size:[h,g],datatype:c===e._datatype&&d===n._datatype?y:void 0})}})),Sa="dotMultiply",Ma=Se(Sa,["typed","matrix","equalScalar","multiplyScalar","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,multiplyScalar:i,concat:o}=e;const a=Uo({typed:t,equalScalar:n}),s=Aa({typed:t,equalScalar:n}),u=wo({typed:t,equalScalar:n}),c=Zo({typed:t,matrix:r,concat:o});return t(Sa,c({elop:i,SS:s,DS:a,Ss:u}))}));function Ca(e,t){if(e.isFinite()&&!e.isInteger()||t.isFinite()&&!t.isInteger())throw new Error("Integers expected in function bitAnd");const r=e.constructor;if(e.isNaN()||t.isNaN())return new r(NaN);if(e.isZero()||t.eq(-1)||e.eq(t))return e;if(t.isZero()||e.eq(-1))return t;if(!e.isFinite()||!t.isFinite()){if(!e.isFinite()&&!t.isFinite())return e.isNegative()===t.isNegative()?e:new r(0);if(!e.isFinite())return t.isNegative()?e:e.isNegative()?new r(0):t;if(!t.isFinite())return e.isNegative()?t:t.isNegative()?new r(0):e}return Fa(e,t,(function(e,t){return e&t}))}function Ta(e){if(e.isFinite()&&!e.isInteger())throw new Error("Integer expected in function bitNot");const t=e.constructor,r=t.precision;t.config({precision:1e9});const n=e.plus(new t(1));return n.s=-n.s||null,t.config({precision:r}),n}function Da(e,t){if(e.isFinite()&&!e.isInteger()||t.isFinite()&&!t.isInteger())throw new Error("Integers expected in function bitOr");const r=e.constructor;if(e.isNaN()||t.isNaN())return new r(NaN);const n=new r(-1);return e.isZero()||t.eq(n)||e.eq(t)?t:t.isZero()||e.eq(n)?e:e.isFinite()&&t.isFinite()?Fa(e,t,(function(e,t){return e|t})):!e.isFinite()&&!e.isNegative()&&t.isNegative()||e.isNegative()&&!t.isNegative()&&!t.isFinite()?n:e.isNegative()&&t.isNegative()?e.isFinite()?e:t:e.isFinite()?t:e}function Fa(e,t,r){const n=e.constructor;let i,o;const a=+(e.s<0),s=+(t.s<0);if(a){i=Ba(Ta(e));for(let e=0;e<i.length;++e)i[e]^=1}else i=Ba(e);if(s){o=Ba(Ta(t));for(let e=0;e<o.length;++e)o[e]^=1}else o=Ba(t);let u,c,l;i.length<=o.length?(u=i,c=o,l=a):(u=o,c=i,l=s);let f=u.length,p=c.length;const m=1^r(a,s);let d=new n(1^m),h=new n(1);const g=new n(2),y=n.precision;for(n.config({precision:1e9});f>0;)r(u[--f],c[--p])===m&&(d=d.plus(h)),h=h.times(g);for(;p>0;)r(l,c[--p])===m&&(d=d.plus(h)),h=h.times(g);return n.config({precision:y}),0===m&&(d.s=-d.s),d}function Ba(e){const t=e.d;let r=t[0]+"";for(let e=1;e<t.length;++e){let n=t[e]+"";for(let e=7-n.length;e--;)n="0"+n;r+=n}let n=r.length;for(;"0"===r.charAt(n);)n--;let i=e.e,o=r.slice(0,n+1||1);const a=o.length;if(i>0)if(++i>a)for(i-=a;i--;)o+="0";else i<a&&(o=o.slice(0,i)+"."+o.slice(i));const s=[0];for(let e=0;e<o.length;){let t=s.length;for(;t--;)s[t]*=10;s[0]+=parseInt(o.charAt(e++));for(let e=0;e<s.length;++e)s[e]>1&&(null!==s[e+1]&&void 0!==s[e+1]||(s[e+1]=0),s[e+1]+=s[e]>>1,s[e]&=1)}return s.reverse()}function Oa(e,t){if(e.isFinite()&&!e.isInteger()||t.isFinite()&&!t.isInteger())throw new Error("Integers expected in function bitXor");const r=e.constructor;if(e.isNaN()||t.isNaN())return new r(NaN);if(e.isZero())return t;if(t.isZero())return e;if(e.eq(t))return new r(0);const n=new r(-1);return e.eq(n)?Ta(t):t.eq(n)?Ta(e):e.isFinite()&&t.isFinite()?Fa(e,t,(function(e,t){return e^t})):e.isFinite()||t.isFinite()?new r(e.isNegative()===t.isNegative()?1/0:-1/0):n}function _a(e,t){if(e.isFinite()&&!e.isInteger()||t.isFinite()&&!t.isInteger())throw new Error("Integers expected in function leftShift");const r=e.constructor;return e.isNaN()||t.isNaN()||t.isNegative()&&!t.isZero()?new r(NaN):e.isZero()||t.isZero()?e:e.isFinite()||t.isFinite()?t.lt(55)?e.times(Math.pow(2,t.toNumber())+""):e.times(new r(2).pow(t)):new r(NaN)}function za(e,t){if(e.isFinite()&&!e.isInteger()||t.isFinite()&&!t.isInteger())throw new Error("Integers expected in function rightArithShift");const r=e.constructor;return e.isNaN()||t.isNaN()||t.isNegative()&&!t.isZero()?new r(NaN):e.isZero()||t.isZero()?e:t.isFinite()?t.lt(55)?e.div(Math.pow(2,t.toNumber())+"").floor():e.div(new r(2).pow(t)).floor():e.isNegative()?new r(-1):e.isFinite()?new r(0):new r(NaN)}const Ia="number, number";function ka(e,t){if(!Z(e)||!Z(t))throw new Error("Integers expected in function bitAnd");return e&t}function qa(e){if(!Z(e))throw new Error("Integer expected in function bitNot");return~e}function Ra(e,t){if(!Z(e)||!Z(t))throw new Error("Integers expected in function bitOr");return e|t}function Pa(e,t){if(!Z(e)||!Z(t))throw new Error("Integers expected in function bitXor");return e^t}function ja(e,t){if(!Z(e)||!Z(t))throw new Error("Integers expected in function leftShift");return e<<t}function Ua(e,t){if(!Z(e)||!Z(t))throw new Error("Integers expected in function rightArithShift");return e>>t}function La(e,t){if(!Z(e)||!Z(t))throw new Error("Integers expected in function rightLogShift");return e>>>t}ka.signature=Ia,qa.signature="number",Ra.signature=Ia,Pa.signature=Ia,ja.signature=Ia,Ua.signature=Ia,La.signature=Ia;const $a="bitAnd",Ha=Se($a,["typed","matrix","equalScalar","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,concat:i}=e;const o=Uo({typed:t,equalScalar:n}),a=ra({typed:t,equalScalar:n}),s=wo({typed:t,equalScalar:n}),u=Zo({typed:t,matrix:r,concat:i});return t($a,{"number, number":ka,"BigNumber, BigNumber":Ca,"bigint, bigint":(e,t)=>e&t},u({SS:a,DS:o,Ss:s}))})),Ga="bitNot",Za=Se(Ga,["typed"],(e=>{let{typed:t}=e;return t(Ga,{number:qa,BigNumber:Ta,bigint:e=>~e,"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Va="bitOr",Wa=Se(Va,["typed","matrix","equalScalar","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o}=e;const a=Wo({typed:t}),s=Yo({typed:t,equalScalar:n}),u=Jo({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:r,concat:o});return t(Va,{"number, number":Ra,"BigNumber, BigNumber":Da,"bigint, bigint":(e,t)=>e|t},c({SS:s,DS:a,Ss:u}))})),Ya=Se("matAlgo07xSSf",["typed","DenseMatrix"],(e=>{let{typed:t,DenseMatrix:r}=e;return function(e,i,o){const a=e._size,s=e._datatype||void 0===e._data?e._datatype:e.getDataType(),u=i._size,c=i._datatype||void 0===i._data?i._datatype:i.getDataType();if(a.length!==u.length)throw new on(a.length,u.length);if(a[0]!==u[0]||a[1]!==u[1])throw new RangeError("Dimension mismatch. Matrix A ("+a+") must match Matrix B ("+u+")");const l=a[0],f=a[1];let p,m,d,h=0,g=o;"string"==typeof s&&s===c&&"mixed"!==s&&(p=s,h=t.convert(0,p),g=t.find(o,[p,p]));const y=[];for(m=0;m<l;m++)y[m]=[];const x=[],b=[],v=[],w=[];for(d=0;d<f;d++){const t=d+1;for(n(e,d,v,x,t),n(i,d,w,b,t),m=0;m<l;m++){const e=v[m]===t?x[m]:h,r=w[m]===t?b[m]:h;y[m][d]=g(e,r)}}return new r({data:y,size:[l,f],datatype:s===e._datatype&&c===i._datatype?p:void 0})};function n(e,t,r,n,i){const o=e._values,a=e._index,s=e._ptr;for(let e=s[t],u=s[t+1];e<u;e++){const t=a[e];r[t]=i,n[t]=o[e]}}})),Ja="bitXor",Xa=Se(Ja,["typed","matrix","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,DenseMatrix:n,concat:i}=e;const o=Lo({typed:t}),a=Ya({typed:t,DenseMatrix:n}),s=No({typed:t,DenseMatrix:n}),u=Zo({typed:t,matrix:r,concat:i});return t(Ja,{"number, number":Pa,"BigNumber, BigNumber":Oa,"bigint, bigint":(e,t)=>e^t},u({SS:a,DS:o,Ss:s}))})),Qa=Se("arg",["typed"],(e=>{let{typed:t}=e;return t("arg",{number:function(e){return Math.atan2(0,e)},BigNumber:function(e){return e.constructor.atan2(0,e)},Complex:function(e){return e.arg()},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Ka="conj",es=Se(Ka,["typed"],(e=>{let{typed:t}=e;return t(Ka,{"number | BigNumber | Fraction":e=>e,Complex:e=>e.conjugate(),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),ts=Se("im",["typed"],(e=>{let{typed:t}=e;return t("im",{number:()=>0,"BigNumber | Fraction":e=>e.mul(0),Complex:e=>e.im,"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),rs=Se("re",["typed"],(e=>{let{typed:t}=e;return t("re",{"number | BigNumber | Fraction":e=>e,Complex:e=>e.re,"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),ns="number, number";function is(e){return!e}function os(e,t){return!(!e&&!t)}function as(e,t){return!!e!=!!t}function ss(e,t){return!(!e||!t)}is.signature="number",os.signature=ns,as.signature=ns,ss.signature=ns;const us=Se("not",["typed"],(e=>{let{typed:t}=e;return t("not",{"null | undefined":()=>!0,number:is,Complex:function(e){return 0===e.re&&0===e.im},BigNumber:function(e){return e.isZero()||e.isNaN()},bigint:e=>!e,Unit:t.referToSelf((e=>r=>t.find(e,r.valueType())(r.value))),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),cs=Se("or",["typed","matrix","equalScalar","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o}=e;const a=Lo({typed:t}),s=$o({typed:t,equalScalar:n}),u=No({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:r,concat:o});return t("or",{"number, number":os,"Complex, Complex":function(e,t){return 0!==e.re||0!==e.im||0!==t.re||0!==t.im},"BigNumber, BigNumber":function(e,t){return!e.isZero()&&!e.isNaN()||!t.isZero()&&!t.isNaN()},"bigint, bigint":os,"Unit, Unit":t.referToSelf((e=>(t,r)=>e(t.value||0,r.value||0)))},c({SS:s,DS:a,Ss:u}))})),ls=Se("xor",["typed","matrix","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,DenseMatrix:n,concat:i}=e;const o=Lo({typed:t}),a=Ya({typed:t,DenseMatrix:n}),s=No({typed:t,DenseMatrix:n}),u=Zo({typed:t,matrix:r,concat:i});return t("xor",{"number, number":as,"Complex, Complex":function(e,t){return(0!==e.re||0!==e.im)!=(0!==t.re||0!==t.im)},"bigint, bigint":as,"BigNumber, BigNumber":function(e,t){return(!e.isZero()&&!e.isNaN())!=(!t.isZero()&&!t.isNaN())},"Unit, Unit":t.referToSelf((e=>(t,r)=>e(t.value||0,r.value||0)))},u({SS:a,DS:o,Ss:s}))})),fs="concat",ps=Se(fs,["typed","matrix","isInteger"],(e=>{let{typed:r,matrix:n,isInteger:o}=e;return r(fs,{"...Array | Matrix | number | BigNumber":function(e){let r;const a=e.length;let s,u=-1,c=!1;const l=[];for(r=0;r<a;r++){const n=e[r];if(f(n)&&(c=!0),t(n)||i(n)){if(r!==a-1)throw new Error("Dimension must be specified as last argument");if(s=u,u=n.valueOf(),!o(u))throw new TypeError("Integer number expected for dimension");if(u<0||r>0&&u>s)throw new an(u,s+1)}else{const e=ye(n).valueOf(),t=sn(e);if(l[r]=e,s=u,u=t.length-1,r>0&&u!==s)throw new on(s+1,u+1)}}if(0===l.length)throw new SyntaxError("At least one matrix expected");let p=l.shift();for(;l.length;)p=On(p,l.shift(),u);return c?n(p):p},"...string":function(e){return e.join("")}})})),ms="column",ds=Se(ms,["typed","Index","matrix","range"],(e=>{let{typed:t,Index:r,matrix:n,range:i}=e;return t(ms,{"Matrix, number":o,"Array, number":function(e,t){return o(n(ye(e)),t).valueOf()}});function o(e,t){if(2!==e.size().length)throw new Error("Only two dimensional matrix is supported");fn(t,e.size()[1]);const o=i(0,e.size()[0]),a=new r(o,t),s=e.subset(a);return f(s)?s:n([[s]])}})),hs="count",gs=Se(hs,["typed","size","prod"],(e=>{let{typed:t,size:r,prod:n}=e;return t(hs,{string:function(e){return e.length},"Matrix | Array":function(e){return n(r(e))}})})),ys="cross",xs=Se(ys,["typed","matrix","subtract","multiply"],(e=>{let{typed:t,matrix:r,subtract:n,multiply:i}=e;return t(ys,{"Matrix, Matrix":function(e,t){return r(o(e.toArray(),t.toArray()))},"Matrix, Array":function(e,t){return r(o(e.toArray(),t))},"Array, Matrix":function(e,t){return r(o(e,t.toArray()))},"Array, Array":o});function o(e,t){const r=Math.max(sn(e).length,sn(t).length);e=xn(e),t=xn(t);const o=sn(e),a=sn(t);if(1!==o.length||1!==a.length||3!==o[0]||3!==a[0])throw new RangeError("Vectors with length 3 expected (Size A = ["+o.join(", ")+"], B = ["+a.join(", ")+"])");const s=[n(i(e[1],t[2]),i(e[2],t[1])),n(i(e[2],t[0]),i(e[0],t[2])),n(i(e[0],t[1]),i(e[1],t[0]))];return r>1?[s]:s}})),bs="diag",vs=Se(bs,["typed","matrix","DenseMatrix","SparseMatrix"],(e=>{let{typed:t,matrix:r,DenseMatrix:n,SparseMatrix:i}=e;return t(bs,{Array:function(e){return o(e,0,sn(e),null)},"Array, number":function(e,t){return o(e,t,sn(e),null)},"Array, BigNumber":function(e,t){return o(e,t.toNumber(),sn(e),null)},"Array, string":function(e,t){return o(e,0,sn(e),t)},"Array, number, string":function(e,t,r){return o(e,t,sn(e),r)},"Array, BigNumber, string":function(e,t,r){return o(e,t.toNumber(),sn(e),r)},Matrix:function(e){return o(e,0,e.size(),e.storage())},"Matrix, number":function(e,t){return o(e,t,e.size(),e.storage())},"Matrix, BigNumber":function(e,t){return o(e,t.toNumber(),e.size(),e.storage())},"Matrix, string":function(e,t){return o(e,0,e.size(),t)},"Matrix, number, string":function(e,t,r){return o(e,t,e.size(),r)},"Matrix, BigNumber, string":function(e,t,r){return o(e,t.toNumber(),e.size(),r)}});function o(e,t,o,a){if(!Z(t))throw new TypeError("Second parameter in function diag must be an integer");const s=t>0?t:0,u=t<0?-t:0;switch(o.length){case 1:return function(e,t,r,o,a,s){const u=[o+a,o+s];if(r&&"sparse"!==r&&"dense"!==r)throw new TypeError(`Unknown matrix type ${r}"`);const c="sparse"===r?i.diagonal(u,e,t):n.diagonal(u,e,t);return null!==r?c:c.valueOf()}(e,t,a,o[0],u,s);case 2:return function(e,t,n,i,o,a){if(f(e)){const i=e.diagonal(t);return null!==n?n!==i.storage()?r(i,n):i:i.valueOf()}const s=Math.min(i[0]-o,i[1]-a),u=[];for(let t=0;t<s;t++)u[t]=e[t+o][t+a];return null!==n?r(u):u}(e,t,a,o,u,s)}throw new RangeError("Matrix for function diag must be 2 dimensional")}}));function ws(e,t,r,n,i){if(G.isTypedFunction(e)){const i=[t,r,n],a=G.resolve(e,i);if(a)return o(a.implementation,i);const s=[t,r],u=G.resolve(e,s);if(u)return o(u.implementation,s);const c=[t],l=G.resolve(e,c);return l?o(l.implementation,c):o(e,i)}return e(t,r,n);function o(o,a){try{return o.apply(o,a)}catch(o){var s;if(o instanceof TypeError&&"wrongType"===(null===(s=o.data)||void 0===s?void 0:s.category)){const o=[];throw o.push(`value: ${H(t)}`),a.length>=2&&o.push(`index: ${H(r)}`),a.length>=3&&o.push(`array: ${H(n)}`),new TypeError(`Function ${i} cannot apply callback arguments ${e.name}(${o.join(", ")}) at index ${JSON.stringify(r)}`)}throw new TypeError(`Function ${i} cannot apply callback arguments to function ${e.name}: ${o.message}`)}}}const Ns=Se("filter",["typed"],(e=>{let{typed:t}=e;return t("filter",{"Array, function":Es,"Matrix, function":function(e,t){return e.create(Es(e.toArray(),t))},"Array, RegExp":Mn,"Matrix, RegExp":function(e,t){return e.create(Mn(e.toArray(),t))}})}));function Es(e,t){return Sn(e,(function(e,r,n){return ws(t,e,[r],n,"filter")}))}const As="flatten",Ss=Se(As,["typed","matrix"],(e=>{let{typed:t,matrix:r}=e;return t(As,{Array:function(e){return Nn(e)},Matrix:function(e){const t=Nn(e.toArray());return r(t)}})})),Ms="forEach",Cs=Se(Ms,["typed"],(e=>{let{typed:t}=e;return t(Ms,{"Array, function":Ts,"Matrix, function":function(e,t){e.forEach(t)}})}));function Ts(e,t){const r=function(n,i){if(!Array.isArray(n))return ws(t,n,i,e,"forEach");An(n,(function(e,t){r(e,i.concat(t))}))};r(e,[])}const Ds="getMatrixDataType",Fs=Se(Ds,["typed"],(e=>{let{typed:t}=e;return t(Ds,{Array:function(e){return Fn(e,H)},Matrix:function(e){return e.getDataType()}})})),Bs="identity",Os=Se(Bs,["typed","config","matrix","BigNumber","DenseMatrix","SparseMatrix"],(e=>{let{typed:t,config:r,matrix:n,BigNumber:o,DenseMatrix:a,SparseMatrix:s}=e;return t(Bs,{"":function(){return"Matrix"===r.matrix?n([]):[]},string:function(e){return n(e)},"number | BigNumber":function(e){return c(e,e,"Matrix"===r.matrix?"dense":void 0)},"number | BigNumber, string":function(e,t){return c(e,e,t)},"number | BigNumber, number | BigNumber":function(e,t){return c(e,t,"Matrix"===r.matrix?"dense":void 0)},"number | BigNumber, number | BigNumber, string":function(e,t,r){return c(e,t,r)},Array:function(e){return u(e)},"Array, string":function(e,t){return u(e,t)},Matrix:function(e){return u(e.valueOf(),e.storage())},"Matrix, string":function(e,t){return u(e.valueOf(),t)}});function u(e,t){switch(e.length){case 0:return t?n(t):[];case 1:return c(e[0],e[0],t);case 2:return c(e[0],e[1],t);default:throw new Error("Vector containing two values expected")}}function c(e,t,r){const n=i(e)||i(t)?o:null;if(i(e)&&(e=e.toNumber()),i(t)&&(t=t.toNumber()),!Z(e)||e<1)throw new Error("Parameters in function identity must be positive integers");if(!Z(t)||t<1)throw new Error("Parameters in function identity must be positive integers");const u=n?new o(1):1,c=n?new n(0):0,l=[e,t];if(r){if("sparse"===r)return s.diagonal(l,u,0,c);if("dense"===r)return a.diagonal(l,u,0,c);throw new TypeError(`Unknown matrix type "${r}"`)}const f=mn([],l,c),p=e<t?e:t;for(let e=0;e<p;e++)f[e][e]=u;return f}})),_s="kron",zs=Se(_s,["typed","matrix","multiplyScalar"],(e=>{let{typed:t,matrix:r,multiplyScalar:n}=e;return t(_s,{"Matrix, Matrix":function(e,t){return r(i(e.toArray(),t.toArray()))},"Matrix, Array":function(e,t){return r(i(e.toArray(),t))},"Array, Matrix":function(e,t){return r(i(e,t.toArray()))},"Array, Array":i});function i(e,t){if(1===sn(e).length&&(e=[e]),1===sn(t).length&&(t=[t]),sn(e).length>2||sn(t).length>2)throw new RangeError("Vectors with dimensions greater then 2 are not supported expected (Size x = "+JSON.stringify(e.length)+", y = "+JSON.stringify(t.length)+")");const r=[];let i=[];return e.map((function(e){return t.map((function(t){return i=[],r.push(i),e.map((function(e){return t.map((function(t){return i.push(n(e,t))}))}))}))}))&&r}})),Is=Se("map",["typed"],(e=>{let{typed:t}=e;return t("map",{"Array, function":ks,"Matrix, function":function(e,t){return e.map(t)}})}));function ks(e,t){const r=function(n,i){return Array.isArray(n)?n.map((function(e,t){return r(e,i.concat(t))})):ws(t,n,i,e,"map")};return r(e,[])}const qs="diff",Rs=Se(qs,["typed","matrix","subtract","number"],(e=>{let{typed:t,matrix:r,subtract:n,number:i}=e;return t(qs,{"Array | Matrix":function(e){return f(e)?r(a(e.toArray())):a(e)},"Array | Matrix, number":function(e,t){if(!Z(t))throw new RangeError("Dimension must be a whole number");return f(e)?r(o(e.toArray(),t)):o(e,t)},"Array, BigNumber":t.referTo("Array,number",(e=>(t,r)=>e(t,i(r)))),"Matrix, BigNumber":t.referTo("Matrix,number",(e=>(t,r)=>e(t,i(r))))});function o(e,t){if(f(e)&&(e=e.toArray()),!Array.isArray(e))throw RangeError("Array/Matrix does not have that many dimensions");if(t>0){const r=[];return e.forEach((e=>{r.push(o(e,t-1))})),r}if(0===t)return a(e);throw RangeError("Cannot have negative dimension")}function a(e){const t=[],r=e.length;for(let n=1;n<r;n++)t.push(s(e[n-1],e[n]));return t}function s(e,t){f(e)&&(e=e.toArray()),f(t)&&(t=t.toArray());const r=Array.isArray(e),i=Array.isArray(t);if(r&&i)return function(e,t){if(e.length!==t.length)throw RangeError("Not all sub-arrays have the same length");const r=[],n=e.length;for(let i=0;i<n;i++)r.push(s(e[i],t[i]));return r}(e,t);if(!r&&!i)return n(t,e);throw TypeError("Cannot calculate difference between 1 array and 1 non-array")}})),Ps=Se("ones",["typed","config","matrix","BigNumber"],(e=>{let{typed:t,config:r,matrix:n,BigNumber:o}=e;return t("ones",{"":function(){return"Array"===r.matrix?a([]):a([],"default")},"...number | BigNumber | string":function(e){if("string"==typeof e[e.length-1]){const t=e.pop();return a(e,t)}return"Array"===r.matrix?a(e):a(e,"default")},Array:a,Matrix:function(e){const t=e.storage();return a(e.valueOf(),t)},"Array | Matrix, string":function(e,t){return a(e.valueOf(),t)}});function a(e,t){const r=function(e){let t=!1;return e.forEach((function(e,r,n){i(e)&&(t=!0,n[r]=e.toNumber())})),t}(e),a=r?new o(1):1;if(function(e){e.forEach((function(e){if("number"!=typeof e||!Z(e)||e<0)throw new Error("Parameters in function ones must be positive integers")}))}(e),t){const r=n(t);return e.length>0?r.resize(e,a):r}{const t=[];return e.length>0?mn(t,e,a):t}}}));function js(){throw new Error('No "bignumber" implementation available')}function Us(){throw new Error('No "fraction" implementation available')}function Ls(){throw new Error('No "matrix" implementation available')}const $s="range",Hs=Se($s,["typed","config","?matrix","?bignumber","smaller","smallerEq","larger","largerEq","add","isPositive"],(e=>{let{typed:t,config:r,matrix:n,bignumber:i,smaller:o,smallerEq:a,larger:s,largerEq:u,add:c,isPositive:l}=e;return t($s,{string:p,"string, boolean":p,"number, number":function(e,t){return f(m(e,t,1,!1))},"number, number, number":function(e,t,r){return f(m(e,t,r,!1))},"number, number, boolean":function(e,t,r){return f(m(e,t,1,r))},"number, number, number, boolean":function(e,t,r,n){return f(m(e,t,r,n))},"BigNumber, BigNumber":function(e,t){return f(m(e,t,new(0,e.constructor)(1),!1))},"BigNumber, BigNumber, BigNumber":function(e,t,r){return f(m(e,t,r,!1))},"BigNumber, BigNumber, boolean":function(e,t,r){return f(m(e,t,new(0,e.constructor)(1),r))},"BigNumber, BigNumber, BigNumber, boolean":function(e,t,r,n){return f(m(e,t,r,n))},"Unit, Unit, Unit":function(e,t,r){return f(m(e,t,r,!1))},"Unit, Unit, Unit, boolean":function(e,t,r,n){return f(m(e,t,r,n))}});function f(e){return"Matrix"===r.matrix?n?n(e):Ls():e}function p(e,t){const n=function(e){const t=e.split(":").map((function(e){return Number(e)}));if(t.some((function(e){return isNaN(e)})))return null;switch(t.length){case 2:return{start:t[0],end:t[1],step:1};case 3:return{start:t[0],end:t[2],step:t[1]};default:return null}}(e);if(!n)throw new SyntaxError('String "'+e+'" is no valid range');return"BigNumber"===r.number?(void 0===i&&js(),f(m(i(n.start),i(n.end),i(n.step)))):f(m(n.start,n.end,n.step,t))}function m(e,t,r,n){const i=[],f=l(r)?n?a:o:n?u:s;let p=e;for(;f(p,t);)i.push(p),p=c(p,r);return i}})),Gs="reshape",Zs=Se(Gs,["typed","isInteger","matrix"],(e=>{let{typed:t,isInteger:r}=e;return t(Gs,{"Matrix, Array":function(e,t){return e.reshape(t,!0)},"Array, Array":function(e,t){return t.forEach((function(e){if(!r(e))throw new TypeError("Invalid size for dimension: "+e)})),hn(e,t)}})})),Vs=Se("resize",["config","matrix"],(e=>{let{config:t,matrix:r}=e;return function(e,n,o){if(2!==arguments.length&&3!==arguments.length)throw new Xo("resize",arguments.length,2,3);if(f(n)&&(n=n.valueOf()),i(n[0])&&(n=n.map((function(e){return i(e)?e.toNumber():e}))),f(e))return e.resize(n,o,!0);if("string"==typeof e)return function(e,t,r){if(void 0!==r){if("string"!=typeof r||1!==r.length)throw new TypeError("Single character expected as defaultValue")}else r=" ";if(1!==t.length)throw new on(t.length,1);const n=t[0];if("number"!=typeof n||!Z(n))throw new TypeError("Invalid size, must contain positive integers (size: "+Qr(t)+")");if(e.length>n)return e.substring(0,n);if(e.length<n){let t=e;for(let i=0,o=n-e.length;i<o;i++)t+=r;return t}return e}(e,n,o);const a=!Array.isArray(e)&&"Array"!==t.matrix;if(0===n.length){for(;Array.isArray(e);)e=e[0];return ye(e)}{Array.isArray(e)||(e=[e]);const t=mn(e=ye(e),n,o);return a?r(t):t}}})),Ws="rotate",Ys=Se(Ws,["typed","multiply","rotationMatrix"],(e=>{let{typed:t,multiply:r,rotationMatrix:n}=e;return t(Ws,{"Array , number | BigNumber | Complex | Unit":function(e,t){return i(e,2),r(n(t),e).toArray()},"Matrix , number | BigNumber | Complex | Unit":function(e,t){return i(e,2),r(n(t),e)},"Array, number | BigNumber | Complex | Unit, Array | Matrix":function(e,t,o){return i(e,3),r(n(t,o),e)},"Matrix, number | BigNumber | Complex | Unit, Array | Matrix":function(e,t,o){return i(e,3),r(n(t,o),e)}});function i(e,t){const r=Array.isArray(e)?sn(e):e.size();if(r.length>2)throw new RangeError(`Vector must be of dimensions 1x${t}`);if(2===r.length&&1!==r[1])throw new RangeError(`Vector must be of dimensions 1x${t}`);if(r[0]!==t)throw new RangeError(`Vector must be of dimensions 1x${t}`)}})),Js="rotationMatrix",Xs=Se(Js,["typed","config","multiplyScalar","addScalar","unaryMinus","norm","matrix","BigNumber","DenseMatrix","SparseMatrix","cos","sin"],(e=>{let{typed:t,config:r,multiplyScalar:n,addScalar:o,unaryMinus:a,norm:s,BigNumber:u,matrix:c,DenseMatrix:l,SparseMatrix:f,cos:p,sin:m}=e;return t(Js,{"":function(){return"Matrix"===r.matrix?c([]):[]},string:function(e){return c(e)},"number | BigNumber | Complex | Unit":function(e){return d(e,"Matrix"===r.matrix?"dense":void 0)},"number | BigNumber | Complex | Unit, string":function(e,t){return d(e,t)},"number | BigNumber | Complex | Unit, Array":function(e,t){const r=c(t);return h(r),x(e,r,void 0)},"number | BigNumber | Complex | Unit, Matrix":function(e,t){h(t);const n=t.storage()||("Matrix"===r.matrix?"dense":void 0);return x(e,t,n)},"number | BigNumber | Complex | Unit, Array, string":function(e,t,r){const n=c(t);return h(n),x(e,n,r)},"number | BigNumber | Complex | Unit, Matrix, string":function(e,t,r){return h(t),x(e,t,r)}});function d(e,t){const r=i(e)?new u(-1):-1,o=p(e),a=m(e);return y([[o,n(r,a)],[a,o]],t)}function h(e){const t=e.size();if(t.length<1||3!==t[0])throw new RangeError("Vector must be of dimensions 1x3")}function g(e){return e.reduce(((e,t)=>n(e,t)))}function y(e,t){if(t){if("sparse"===t)return new f(e);if("dense"===t)return new l(e);throw new TypeError(`Unknown matrix type "${t}"`)}return e}function x(e,t,r){const n=s(t);if(0===n)throw new RangeError("Rotation around zero vector");const c=i(e)?u:null,l=c?new c(1):1,f=c?new c(-1):-1,d=c?new c(t.get([0])/n):t.get([0])/n,h=c?new c(t.get([1])/n):t.get([1])/n,x=c?new c(t.get([2])/n):t.get([2])/n,b=p(e),v=o(l,a(b)),w=m(e);return y([[o(b,g([d,d,v])),o(g([d,h,v]),g([f,x,w])),o(g([d,x,v]),g([h,w]))],[o(g([d,h,v]),g([x,w])),o(b,g([h,h,v])),o(g([h,x,v]),g([f,d,w]))],[o(g([d,x,v]),g([f,h,w])),o(g([h,x,v]),g([d,w])),o(b,g([x,x,v]))]],r)}})),Qs=Se("row",["typed","Index","matrix","range"],(e=>{let{typed:t,Index:r,matrix:n,range:i}=e;return t("row",{"Matrix, number":o,"Array, number":function(e,t){return o(n(ye(e)),t).valueOf()}});function o(e,t){if(2!==e.size().length)throw new Error("Only two dimensional matrix is supported");fn(t,e.size()[0]);const o=i(0,e.size()[1]),a=new r(t,o),s=e.subset(a);return f(s)?s:n([[s]])}})),Ks="size",eu=Se(Ks,["typed","config","?matrix"],(e=>{let{typed:t,config:r,matrix:n}=e;return t(Ks,{Matrix:function(e){return e.create(e.size())},Array:sn,string:function(e){return"Array"===r.matrix?[e.length]:n([e.length])},"number | Complex | BigNumber | Unit | boolean | null":function(e){return"Array"===r.matrix?[]:n?n([]):Ls()}})})),tu="squeeze",ru=Se(tu,["typed","matrix"],(e=>{let{typed:t,matrix:r}=e;return t(tu,{Array:function(e){return xn(ye(e))},Matrix:function(e){const t=xn(e.toArray());return Array.isArray(t)?r(t):t},any:function(e){return ye(e)}})})),nu="subset",iu=Se(nu,["typed","matrix","zeros","add"],(e=>{let{typed:t,matrix:r,zeros:n,add:i}=e;return t(nu,{"Matrix, Index":function(e,t){return pn(t)?r():(ln(e,t),e.subset(t))},"Array, Index":t.referTo("Matrix, Index",(function(e){return function(t,n){const i=e(r(t),n);return n.isScalar()?i:i.valueOf()}})),"Object, Index":su,"string, Index":ou,"Matrix, Index, any, any":function(e,t,r,o){return pn(t)?e:(ln(e,t),e.clone().subset(t,function(e,t){if("string"==typeof e)throw new Error("can't boradcast a string");if(t._isScalar)return e;const r=t.size();if(!r.every((e=>e>0)))return e;try{return i(e,n(r))}catch(t){return e}}(r,t),o))},"Array, Index, any, any":t.referTo("Matrix, Index, any, any",(function(e){return function(t,n,i,o){const a=e(r(t),n,i,o);return a.isMatrix?a.valueOf():a}})),"Array, Index, any":t.referTo("Matrix, Index, any, any",(function(e){return function(t,n,i){return e(r(t),n,i,void 0).valueOf()}})),"Matrix, Index, any":t.referTo("Matrix, Index, any, any",(function(e){return function(t,r,n){return e(t,r,n,void 0)}})),"string, Index, string":au,"string, Index, string, string":au,"Object, Index, any":uu})}));function ou(e,t){if(!g(t))throw new TypeError("Index expected");if(pn(t))return"";if(ln(Array.from(e),t),1!==t.size().length)throw new on(t.size().length,1);const r=e.length;fn(t.min()[0],r),fn(t.max()[0],r);const n=t.dimension(0);let i="";return n.forEach((function(t){i+=e.charAt(t)})),i}function au(e,t,r,n){if(!t||!0!==t.isIndex)throw new TypeError("Index expected");if(pn(t))return e;if(ln(Array.from(e),t),1!==t.size().length)throw new on(t.size().length,1);if(void 0!==n){if("string"!=typeof n||1!==n.length)throw new TypeError("Single character expected as defaultValue")}else n=" ";const i=t.dimension(0);if(i.size()[0]!==r.length)throw new on(i.size()[0],r.length);const o=e.length;fn(t.min()[0]),fn(t.max()[0]);const a=[];for(let t=0;t<o;t++)a[t]=e.charAt(t);if(i.forEach((function(e,t){a[e]=r.charAt(t[0])})),a.length>o)for(let e=o-1,t=a.length;e<t;e++)a[e]||(a[e]=n);return a.join("")}function su(e,t){if(pn(t))return;if(1!==t.size().length)throw new on(t.size(),1);const r=t.dimension(0);if("string"!=typeof r)throw new TypeError("String expected as index to retrieve an object property");return Te(e,r)}function uu(e,t,r){if(pn(t))return e;if(1!==t.size().length)throw new on(t.size(),1);const n=t.dimension(0);if("string"!=typeof n)throw new TypeError("String expected as index to retrieve an object property");const i=ye(e);return De(i,n,r),i}const cu="transpose",lu=Se(cu,["typed","matrix"],(e=>{let{typed:t,matrix:r}=e;return t(cu,{Array:e=>n(r(e)).valueOf(),Matrix:n,any:ye});function n(e){const t=e.size();let r;switch(t.length){case 1:r=e.clone();break;case 2:{const n=t[0],i=t[1];if(0===i)throw new RangeError("Cannot transpose a 2D matrix with no columns (size: "+Qr(t)+")");switch(e.storage()){case"dense":r=function(e,t,r){const n=e._data,i=[];let o;for(let e=0;e<r;e++){o=i[e]=[];for(let r=0;r<t;r++)o[r]=ye(n[r][e])}return e.createDenseMatrix({data:i,size:[r,t],datatype:e._datatype})}(e,n,i);break;case"sparse":r=function(e,t,r){const n=e._values,i=e._index,o=e._ptr,a=n?[]:void 0,s=[],u=[],c=[];for(let e=0;e<t;e++)c[e]=0;let l,f,p;for(l=0,f=i.length;l<f;l++)c[i[l]]++;let m=0;for(let e=0;e<t;e++)u.push(m),m+=c[e],c[e]=u[e];for(u.push(m),p=0;p<r;p++)for(let e=o[p],t=o[p+1],r=e;r<t;r++){const e=c[i[r]]++;s[e]=p,n&&(a[e]=ye(n[r]))}return e.createSparseMatrix({values:a,index:s,ptr:u,size:[r,t],datatype:e._datatype})}(e,n,i)}}break;default:throw new RangeError("Matrix must be a vector or two dimensional (size: "+Qr(t)+")")}return r}})),fu="ctranspose",pu=Se(fu,["typed","transpose","conj"],(e=>{let{typed:t,transpose:r,conj:n}=e;return t(fu,{any:function(e){return n(r(e))}})})),mu="zeros",du=Se(mu,["typed","config","matrix","BigNumber"],(e=>{let{typed:t,config:r,matrix:n,BigNumber:o}=e;return t(mu,{"":function(){return"Array"===r.matrix?a([]):a([],"default")},"...number | BigNumber | string":function(e){if("string"==typeof e[e.length-1]){const t=e.pop();return a(e,t)}return"Array"===r.matrix?a(e):a(e,"default")},Array:a,Matrix:function(e){const t=e.storage();return a(e.valueOf(),t)},"Array | Matrix, string":function(e,t){return a(e.valueOf(),t)}});function a(e,t){const r=function(e){let t=!1;return e.forEach((function(e,r,n){i(e)&&(t=!0,n[r]=e.toNumber())})),t}(e),a=r?new o(0):0;if(function(e){e.forEach((function(e){if("number"!=typeof e||!Z(e)||e<0)throw new Error("Parameters in function zeros must be positive integers")}))}(e),t){const r=n(t);return e.length>0?r.resize(e,a):r}{const t=[];return e.length>0?mn(t,e,a):t}}})),hu=Se("fft",["typed","matrix","addScalar","multiplyScalar","divideScalar","exp","tau","i","dotDivide","conj","pow","ceil","log2"],(e=>{let{typed:t,matrix:r,addScalar:n,multiplyScalar:i,divideScalar:o,exp:a,tau:s,i:u,dotDivide:c,conj:l,pow:f,ceil:p,log2:m}=e;return t("fft",{Array:d,Matrix:function(e){return e.create(d(e.toArray()))}});function d(e){const t=sn(e);return 1===t.length?g(e,t[0]):h(e.map((e=>d(e,t.slice(1)))),0)}function h(e,t){const r=sn(e);if(0!==t)return new Array(r[0]).fill(0).map(((r,n)=>h(e[n],t-1)));if(1===r.length)return g(e);function n(e){const t=sn(e);return new Array(t[1]).fill(0).map(((r,n)=>new Array(t[0]).fill(0).map(((t,r)=>e[r][n]))))}return n(h(n(e),1))}function g(e){const t=e.length;if(1===t)return[e[0]];if(t%2==0){const r=[...g(e.filter(((e,t)=>t%2==0))),...g(e.filter(((e,t)=>t%2==1)))];for(let e=0;e<t/2;e++){const c=r[e],l=i(r[e+t/2],a(i(i(s,u),o(-e,t))));r[e]=n(c,l),r[e+t/2]=n(c,i(-1,l))}return r}return function(e){const t=e.length,r=a(o(i(-1,i(u,s)),t)),n=[];for(let e=1-t;e<t;e++)n.push(f(r,o(f(e,2),2)));const h=f(2,p(m(t+t-1))),y=[...new Array(t).fill(0).map(((r,o)=>i(e[o],n[t-1+o]))),...new Array(h-t).fill(0)],x=[...new Array(t+t-1).fill(0).map(((e,t)=>o(1,n[t]))),...new Array(h-(t+t-1)).fill(0)],b=g(y),v=g(x),w=new Array(h).fill(0).map(((e,t)=>i(b[t],v[t]))),N=c(l(d(l(w))),h),E=[];for(let e=t-1;e<t+t-1;e++)E.push(i(N[e],n[e]));return E}(e)}})),gu="ifft",yu=Se(gu,["typed","fft","dotDivide","conj"],(e=>{let{typed:t,fft:r,dotDivide:n,conj:i}=e;return t(gu,{"Array | Matrix":function(e){const t=f(e)?e.size():sn(e);return n(i(r(i(e))),t.reduce(((e,t)=>e*t),1))}})})),xu=Se("solveODE",["typed","add","subtract","multiply","divide","max","map","abs","isPositive","isNegative","larger","smaller","matrix","bignumber","unaryMinus"],(e=>{let{typed:r,add:n,subtract:o,multiply:a,divide:s,max:c,map:l,abs:f,isPositive:p,isNegative:m,larger:d,smaller:h,matrix:g,bignumber:y,unaryMinus:x}=e;function b(e){return function(t,r,g,b){if(2!==r.length||!r.every(E)&&!r.every(u))throw new Error('"tspan" must be an Array of two numeric values or two units [tStart, tEnd]');const v=r[0],w=r[1],N=d(w,v),A=b.firstStep;if(void 0!==A&&!p(A))throw new Error('"firstStep" must be positive');const S=b.maxStep;if(void 0!==S&&!p(S))throw new Error('"maxStep" must be positive');const M=b.minStep;if(M&&m(M))throw new Error('"minStep" must be positive or zero');const C=[v,w,A,M,S].filter((e=>void 0!==e));if(!C.every(E)&&!C.every(u))throw new Error('Inconsistent type of "t" dependant variables');const T=b.tol?b.tol:1e-4,D=b.minDelta?b.minDelta:.2,F=b.maxDelta?b.maxDelta:5,B=b.maxIter?b.maxIter:1e4,O=[v,w,...g,S,M].some(i),[_,z,I,k]=O?[y(e.a),y(e.c),y(e.b),y(e.bp)]:[e.a,e.c,e.b,e.bp];let q=A?N?A:x(A):s(o(w,v),1);const R=[v],P=[g],j=o(I,k);let U=0,L=0;const $=function(e){return e?h:d}(N),H=function(e){const t=e?d:h;return function(e,r,i){const a=n(e,i);return t(a,r)?o(r,e):i}}(N);for(;$(R[U],w);){const e=[];q=H(R[U],w,q),e.push(t(R[U],P[U]));for(let r=1;r<z.length;++r)e.push(t(n(R[U],a(z[r],q)),n(P[U],a(q,_[r],e))));const r=c(f(l(a(j,e),(e=>u(e)?e.value:e))));r<T&&T/r>1/4&&(R.push(n(R[U],q)),P.push(n(P[U],a(q,I,e))),U++);let i=.84*(T/r)**.2;if(h(i,D)?i=D:d(i,F)&&(i=F),i=O?y(i):i,q=a(q,i),S&&d(f(q),S)?q=N?S:x(S):M&&h(f(q),M)&&(q=N?M:x(M)),L++,L>B)throw new Error("Maximum number of iterations reached, try changing options")}return{t:R,y:P}}}function v(e,t,r,n){return b({a:[[],[.5],[0,3/4],[2/9,1/3,4/9]],c:[null,.5,3/4,1],b:[2/9,1/3,4/9,0],bp:[7/24,1/4,1/3,1/8]})(e,t,r,n)}function w(e,t,r,n){return b({a:[[],[.2],[3/40,9/40],[44/45,-56/15,32/9],[19372/6561,-25360/2187,64448/6561,-212/729],[9017/3168,-355/33,46732/5247,49/176,-5103/18656],[35/384,0,500/1113,125/192,-2187/6784,11/84]],c:[null,.2,.3,.8,8/9,1,1],b:[35/384,0,500/1113,125/192,-2187/6784,11/84,0],bp:[5179/57600,0,7571/16695,393/640,-92097/339200,187/2100,1/40]})(e,t,r,n)}function N(e,t,r,n){const i=n.method?n.method:"RK45",o={RK23:v,RK45:w};if(i.toUpperCase()in o){const a={...n};return delete a.method,o[i.toUpperCase()](e,t,r,a)}{const e=Object.keys(o).map((e=>`"${e}"`)),t=`${e.slice(0,-1).join(", ")} and ${e.slice(-1)}`;throw new Error(`Unavailable method "${i}". Available methods are ${t}`)}}function E(e){return i(e)||t(e)}function A(e,t,r,n){const i=N(e,t.toArray(),r.toArray(),n);return{t:g(i.t),y:g(i.y)}}return r("solveODE",{"function, Array, Array, Object":N,"function, Matrix, Matrix, Object":A,"function, Array, Array":(e,t,r)=>N(e,t,r,{}),"function, Matrix, Matrix":(e,t,r)=>A(e,t,r,{}),"function, Array, number | BigNumber | Unit":(e,t,r)=>{const n=N(e,t,[r],{});return{t:n.t,y:n.y.map((e=>e[0]))}},"function, Matrix, number | BigNumber | Unit":(e,t,r)=>{const n=N(e,t.toArray(),[r],{});return{t:g(n.t),y:g(n.y.map((e=>e[0])))}},"function, Array, number | BigNumber | Unit, Object":(e,t,r,n)=>{const i=N(e,t,[r],n);return{t:i.t,y:i.y.map((e=>e[0]))}},"function, Matrix, number | BigNumber | Unit, Object":(e,t,r,n)=>{const i=N(e,t.toArray(),[r],n);return{t:g(i.t),y:g(i.y.map((e=>e[0])))}}})})),bu=Se("erf",["typed"],(e=>{let{typed:t}=e;return t("name",{number:function(e){const t=Math.abs(e);return t>=Au?W(e):t<=vu?W(e)*function(e){const t=e*e;let r,n=Nu[0][4]*t,i=t;for(r=0;r<3;r+=1)n=(n+Nu[0][r])*t,i=(i+Eu[0][r])*t;return e*(n+Nu[0][3])/(i+Eu[0][3])}(t):t<=4?W(e)*(1-function(e){let t,r=Nu[1][8]*e,n=e;for(t=0;t<7;t+=1)r=(r+Nu[1][t])*e,n=(n+Eu[1][t])*e;const i=(r+Nu[1][7])/(n+Eu[1][7]),o=parseInt(16*e)/16,a=(e-o)*(e+o);return Math.exp(-o*o)*Math.exp(-a)*i}(t)):W(e)*(1-function(e){let t,r=1/(e*e),n=Nu[2][5]*r,i=r;for(t=0;t<4;t+=1)n=(n+Nu[2][t])*r,i=(i+Eu[2][t])*r;let o=r*(n+Nu[2][4])/(i+Eu[2][4]);o=(wu-o)/e,r=parseInt(16*e)/16;const a=(e-r)*(e+r);return Math.exp(-r*r)*Math.exp(-a)*o}(t))},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),vu=.46875,wu=.5641895835477563,Nu=[[3.1611237438705655,113.86415415105016,377.485237685302,3209.3775891384694,.18577770618460315],[.5641884969886701,8.883149794388377,66.11919063714163,298.6351381974001,881.952221241769,1712.0476126340707,2051.0783778260716,1230.3393547979972,2.1531153547440383e-8],[.30532663496123236,.36034489994980445,.12578172611122926,.016083785148742275,.0006587491615298378,.016315387137302097]],Eu=[[23.601290952344122,244.02463793444417,1282.6165260773723,2844.236833439171],[15.744926110709835,117.6939508913125,537.1811018620099,1621.3895745666903,3290.7992357334597,4362.619090143247,3439.3676741437216,1230.3393548037495],[2.568520192289822,1.8729528499234604,.5279051029514285,.06051834131244132,.0023352049762686918]],Au=Math.pow(2,53),Su="zeta",Mu=Se(Su,["typed","config","multiply","pow","divide","factorial","equal","smallerEq","isNegative","gamma","sin","subtract","add","?Complex","?BigNumber","pi"],(e=>{let{typed:t,config:r,multiply:n,pow:i,divide:o,factorial:a,equal:s,smallerEq:u,isNegative:c,gamma:l,sin:f,subtract:p,add:m,Complex:d,BigNumber:h,pi:g}=e;return t(Su,{number:e=>y(e,(e=>e),(()=>20)),BigNumber:e=>y(e,(e=>new h(e)),(()=>Math.abs(Math.log10(r.relTol)))),Complex:function(e){return 0===e.re&&0===e.im?new d(-.5):1===e.re?new d(NaN,NaN):e.re===1/0&&0===e.im?new d(1):e.im===1/0||e.re===-1/0?new d(NaN,NaN):x(e,(e=>e),(e=>Math.round(19.5+.9*Math.abs(e.im))),(e=>e.re))}});function y(e,t,r){return s(e,0)?t(-.5):s(e,1)?t(NaN):isFinite(e)?x(e,t,r,(e=>e)):c(e)?t(NaN):t(1)}function x(e,t,r,a){const s=r(e);if(a(e)>-(s-1)/2)return function(e,t,r){const a=o(1,n(b(r(0),t),p(1,i(2,p(1,e)))));let s=r(0);for(let a=r(1);u(a,t);a=m(a,1))s=m(s,o(n((-1)**(a-1),b(a,t)),i(a,e)));return n(a,s)}(e,t(s),t);{let s=n(i(2,e),i(t(g),p(e,1)));return s=n(s,f(n(o(t(g),2),e))),s=n(s,l(p(1,e))),n(s,x(p(1,e),t,r,a))}}function b(e,t){let r=e;for(let s=e;u(s,t);s=m(s,1)){const e=o(n(a(m(t,p(s,1))),i(4,s)),n(a(p(t,s)),a(n(2,s))));r=m(r,e)}return n(t,r)}})),Cu="mode",Tu=Se(Cu,["typed","isNaN","isNumeric"],(e=>{let{typed:t,isNaN:r,isNumeric:n}=e;return t(Cu,{"Array | Matrix":i,"...":function(e){return i(e)}});function i(e){if(0===(e=Nn(e.valueOf())).length)throw new Error("Cannot calculate mode of an empty array");const t={};let i=[],o=0;for(let a=0;a<e.length;a++){const s=e[a];if(n(s)&&r(s))throw new Error("Cannot calculate mode of an array containing NaN values");s in t||(t[s]=0),t[s]++,t[s]===o?i.push(s):t[s]>o&&(o=t[s],i=[s])}return i}}));function Du(e,t,r){let n;return String(e).includes("Unexpected type")?(n=arguments.length>2?" (type: "+H(r)+", value: "+JSON.stringify(r)+")":" (type: "+e.data.actual+")",new TypeError("Cannot calculate "+t+", unexpected type of argument"+n)):String(e).includes("complex numbers")?(n=arguments.length>2?" (type: "+H(r)+", value: "+JSON.stringify(r)+")":"",new TypeError("Cannot calculate "+t+", no ordering relation is defined for complex numbers"+n)):e}const Fu="prod",Bu=Se(Fu,["typed","config","multiplyScalar","numeric"],(e=>{let{typed:t,config:r,multiplyScalar:n,numeric:i}=e;return t(Fu,{"Array | Matrix":o,"Array | Matrix, number | BigNumber":function(e,t){throw new Error("prod(A, dim) is not yet supported")},"...":function(e){return o(e)}});function o(e){let t;if(Hn(e,(function(e){try{t=void 0===t?e:n(t,e)}catch(t){throw Du(t,"prod",e)}})),"string"==typeof t&&(t=i(t,V(t,r))),void 0===t)throw new Error("Cannot calculate prod of an empty array");return t}})),Ou="format",_u=Se(Ou,["typed"],(e=>{let{typed:t}=e;return t(Ou,{any:Qr,"any, Object | function | number | BigNumber":Qr})})),zu=Se("bin",["typed","format"],(e=>{let{typed:t,format:r}=e;return t("bin",{"number | BigNumber":function(e){return r(e,{notation:"bin"})},"number | BigNumber, number | BigNumber":function(e,t){return r(e,{notation:"bin",wordSize:t})}})})),Iu=Se("oct",["typed","format"],(e=>{let{typed:t,format:r}=e;return t("oct",{"number | BigNumber":function(e){return r(e,{notation:"oct"})},"number | BigNumber, number | BigNumber":function(e,t){return r(e,{notation:"oct",wordSize:t})}})})),ku=Se("hex",["typed","format"],(e=>{let{typed:t,format:r}=e;return t("hex",{"number | BigNumber":function(e){return r(e,{notation:"hex"})},"number | BigNumber, number | BigNumber":function(e,t){return r(e,{notation:"hex",wordSize:t})}})})),qu=/\$([\w.]+)/g,Ru="print",Pu=Se(Ru,["typed"],(e=>{let{typed:t}=e;return t(Ru,{"string, Object | Array":ju,"string, Object | Array, number | Object":ju})}));function ju(e,t,r){return e.replace(qu,(function(e,n){const i=n.split(".");let o=t[i.shift()];for(void 0!==o&&o.isMatrix&&(o=o.toArray());i.length&&void 0!==o;){const e=i.shift();o=e?o[e]:o+"."}return void 0!==o?c(o)?o:Qr(o,r):e}))}const Uu=Se("to",["typed","matrix","concat"],(e=>{let{typed:t,matrix:r,concat:n}=e;return t("to",{"Unit, Unit | string":(e,t)=>e.to(t)},Zo({typed:t,matrix:r,concat:n})({Ds:!0}))})),Lu="isPrime",$u=Se(Lu,["typed"],(e=>{let{typed:t}=e;return t(Lu,{number:function(e){if(e<=3)return e>1;if(e%2==0||e%3==0)return!1;for(let t=5;t*t<=e;t+=6)if(e%t==0||e%(t+2)==0)return!1;return!0},bigint:function(e){if(e<=3n)return e>1n;if(e%2n===0n||e%3n===0n)return!1;for(let t=5n;t*t<=e;t+=6n)if(e%t===0n||e%(t+2n)===0n)return!1;return!0},BigNumber:function(e){if(e.lte(3))return e.gt(1);if(e.mod(2).eq(0)||e.mod(3).eq(0))return!1;if(e.lt(Math.pow(2,32))){const t=e.toNumber();for(let e=5;e*e<=t;e+=6)if(t%e==0||t%(e+2)==0)return!1;return!0}function t(e,t,r){let n=1;for(;!t.eq(0);)t.mod(2).eq(0)?(t=t.div(2),e=e.mul(e).mod(r)):(t=t.sub(1),n=e.mul(n).mod(r));return n}const r=e.constructor.clone({precision:2*e.toFixed(0).length});let n=0,i=(e=new r(e)).sub(1);for(;i.mod(2).eq(0);)i=i.div(2),n+=1;let o=null;if(e.lt("3317044064679887385961981"))o=[2,3,5,7,11,13,17,19,23,29,31,37,41].filter((t=>t<e));else{const t=Math.min(e.toNumber()-2,Math.floor(2*Math.pow(e.toFixed(0).length*Math.log(10),2)));o=[];for(let e=2;e<=t;e+=1)o.push(t)}for(let r=0;r<o.length;r+=1){const a=o[r],s=t(e.sub(e).add(a),i,e);if(!s.eq(1))for(let t=0,r=s;!r.eq(e.sub(1));t+=1,r=r.mul(r).mod(e))if(t===n-1)return!1}return!0},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Hu=Se("numeric",["number","?bignumber","?fraction"],(e=>{let{number:t,bignumber:r,fraction:n}=e;const i={string:!0,number:!0,BigNumber:!0,Fraction:!0},o={number:e=>t(e),BigNumber:r?e=>r(e):js,bigint:e=>BigInt(e),Fraction:n?e=>n(e):Us};return function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"number";if(void 0!==(arguments.length>2?arguments[2]:void 0))throw new SyntaxError("numeric() takes one or two arguments");const r=H(e);if(!(r in i))throw new TypeError("Cannot convert "+e+' of type "'+r+'"; valid input types are '+Object.keys(i).join(", "));if(!(t in o))throw new TypeError("Cannot convert "+e+' to type "'+t+'"; valid output types are '+Object.keys(o).join(", "));return t===r?e:o[t](e)}})),Gu="divideScalar",Zu=Se(Gu,["typed","numeric"],(e=>{let{typed:t,numeric:r}=e;return t(Gu,{"number, number":function(e,t){return e/t},"Complex, Complex":function(e,t){return e.div(t)},"BigNumber, BigNumber":function(e,t){return e.div(t)},"bigint, bigint":function(e,t){return e/t},"Fraction, Fraction":function(e,t){return e.div(t)},"Unit, number | Complex | Fraction | BigNumber | Unit":(e,t)=>e.divide(t),"number | Fraction | Complex | BigNumber, Unit":(e,t)=>t.divideInto(e)})})),Vu=Se("pow",["typed","config","identity","multiply","matrix","inv","fraction","number","Complex"],(e=>{let{typed:t,config:r,identity:n,multiply:i,matrix:o,inv:a,number:s,fraction:u,Complex:c}=e;return t("pow",{"number, number":l,"Complex, Complex":function(e,t){return e.pow(t)},"BigNumber, BigNumber":function(e,t){return t.isInteger()||e>=0||r.predictable?e.pow(t):new c(e.toNumber(),0).pow(t.toNumber(),0)},"bigint, bigint":(e,t)=>e**t,"Fraction, Fraction":function(e,t){const n=e.pow(t);if(null!=n)return n;if(r.predictable)throw new Error("Result of pow is non-rational and cannot be expressed as a fraction");return l(e.valueOf(),t.valueOf())},"Array, number":f,"Array, BigNumber":function(e,t){return f(e,t.toNumber())},"Matrix, number":p,"Matrix, BigNumber":function(e,t){return p(e,t.toNumber())},"Unit, number | BigNumber":function(e,t){return e.pow(t)}});function l(e,t){if(r.predictable&&!Z(t)&&e<0)try{const r=u(t),n=s(r);if((t===n||Math.abs((t-n)/t)<1e-14)&&r.d%2==1)return(r.n%2==0?1:-1)*Math.pow(-e,t)}catch(e){}return r.predictable&&(e<-1&&t===1/0||e>-1&&e<0&&t===-1/0)?NaN:Z(t)||e>=0||r.predictable?io(e,t):e*e<1&&t===1/0||e*e>1&&t===-1/0?0:new c(e,0).pow(t,0)}function f(e,t){if(!Z(t))throw new TypeError("For A^b, b must be an integer (value is "+t+")");const r=sn(e);if(2!==r.length)throw new Error("For A^b, A must be 2 dimensional (A has "+r.length+" dimensions)");if(r[0]!==r[1])throw new Error("For A^b, A must be square (size is "+r[0]+"x"+r[1]+")");if(t<0)try{return f(a(e),-t)}catch(e){if("Cannot calculate inverse, determinant is zero"===e.message)throw new TypeError("For A^b, when A is not invertible, b must be a positive integer (value is "+t+")");throw e}let o=n(r[0]).valueOf(),s=e;for(;t>=1;)1&~t||(o=i(s,o)),t>>=1,s=i(s,s);return o}function p(e,t){return o(f(e.valueOf(),t))}})),Wu="Number of decimals in function round must be an integer",Yu="round",Ju=Se(Yu,["typed","config","matrix","equalScalar","zeros","BigNumber","DenseMatrix"],(e=>{let{typed:t,config:r,matrix:n,equalScalar:i,zeros:o,BigNumber:a,DenseMatrix:s}=e;const u=wo({typed:t,equalScalar:i}),c=No({typed:t,DenseMatrix:s}),l=Eo({typed:t});function f(e){return Math.abs(ne(e).exponent)}return t(Yu,{number:function(e){const t=oo(e,f(r.relTol));return oo(ue(e,t,r.relTol,r.absTol)?t:e)},"number, number":function(e,t){const n=f(r.relTol);if(t>=n)return oo(e,t);const i=oo(e,n);return oo(ue(e,i,r.relTol,r.absTol)?i:e,t)},"number, BigNumber":function(e,t){if(!t.isInteger())throw new TypeError(Wu);return new a(e).toDecimalPlaces(t.toNumber())},Complex:function(e){return e.round()},"Complex, number":function(e,t){if(t%1)throw new TypeError(Wu);return e.round(t)},"Complex, BigNumber":function(e,t){if(!t.isInteger())throw new TypeError(Wu);const r=t.toNumber();return e.round(r)},BigNumber:function(e){const t=new a(e).toDecimalPlaces(f(r.relTol));return(ti(e,t,r.relTol,r.absTol)?t:e).toDecimalPlaces(0)},"BigNumber, BigNumber":function(e,t){if(!t.isInteger())throw new TypeError(Wu);const n=f(r.relTol);if(t>=n)return e.toDecimalPlaces(t.toNumber());const i=e.toDecimalPlaces(n);return(ti(e,i,r.relTol,r.absTol)?i:e).toDecimalPlaces(t.toNumber())},Fraction:function(e){return e.round()},"Fraction, number":function(e,t){if(t%1)throw new TypeError(Wu);return e.round(t)},"Fraction, BigNumber":function(e,t){if(!t.isInteger())throw new TypeError(Wu);return e.round(t.toNumber())},"Unit, number, Unit":t.referToSelf((e=>function(t,r,n){const i=t.toNumeric(n);return n.multiply(e(i,r))})),"Unit, BigNumber, Unit":t.referToSelf((e=>(t,r,n)=>e(t,r.toNumber(),n))),"Unit, Unit":t.referToSelf((e=>(t,r)=>e(t,0,r))),"Array | Matrix, number, Unit":t.referToSelf((e=>(t,r,n)=>Gn(t,(t=>e(t,r,n)),!0))),"Array | Matrix, BigNumber, Unit":t.referToSelf((e=>(t,r,n)=>e(t,r.toNumber(),n))),"Array | Matrix, Unit":t.referToSelf((e=>(t,r)=>e(t,0,r))),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0))),"SparseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>u(t,r,e,!1))),"DenseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>l(t,r,e,!1))),"Array, number | BigNumber":t.referToSelf((e=>(t,r)=>l(n(t),r,e,!1).valueOf())),"number | Complex | BigNumber | Fraction, SparseMatrix":t.referToSelf((e=>(t,r)=>i(t,0)?o(r.size(),r.storage()):c(r,t,e,!0))),"number | Complex | BigNumber | Fraction, DenseMatrix":t.referToSelf((e=>(t,r)=>i(t,0)?o(r.size(),r.storage()):l(r,t,e,!0))),"number | Complex | BigNumber | Fraction, Array":t.referToSelf((e=>(t,r)=>l(n(r),t,e,!0).valueOf()))})})),Xu=Se("log",["config","typed","divideScalar","Complex"],(e=>{let{typed:t,config:r,divideScalar:n,Complex:i}=e;return t("log",{number:function(e){return e>=0||r.predictable?function(e){return Math.log(e)}(e):new i(e,0).log()},Complex:function(e){return e.log()},BigNumber:function(e){return!e.isNegative()||r.predictable?e.ln():new i(e.toNumber(),0).log()},"any, any":t.referToSelf((e=>(t,r)=>n(e(t),e(r))))})})),Qu="log1p",Ku=Se(Qu,["typed","config","divideScalar","log","Complex"],(e=>{let{typed:t,config:r,divideScalar:n,log:i,Complex:o}=e;return t(Qu,{number:function(e){return e>=-1||r.predictable?X(e):a(new o(e,0))},Complex:a,BigNumber:function(e){const t=e.plus(1);return!t.isNegative()||r.predictable?t.ln():a(new o(e.toNumber(),0))},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e))),"any, any":t.referToSelf((e=>(t,r)=>n(e(t),i(r))))});function a(e){const t=e.re+1;return new o(Math.log(Math.sqrt(t*t+e.im*e.im)),Math.atan2(e.im,t))}})),ec="nthRoots",tc=Se(ec,["config","typed","divideScalar","Complex"],(e=>{let{typed:t,config:r,divideScalar:n,Complex:i}=e;const o=[function(e){return new i(e,0)},function(e){return new i(0,e)},function(e){return new i(-e,0)},function(e){return new i(0,-e)}];function a(e,t){if(t<0)throw new Error("Root must be greater than zero");if(0===t)throw new Error("Root must be non-zero");if(t%1!=0)throw new Error("Root must be an integer");if(0===e||0===e.abs())return[new i(0,0)];const r="number"==typeof e;let n;(r||0===e.re||0===e.im)&&(n=r?2*+(e<0):0===e.im?2*+(e.re<0):2*+(e.im<0)+1);const a=e.arg(),s=e.abs(),u=[],c=Math.pow(s,1/t);for(let e=0;e<t;e++){const r=(n+4*e)/t;r!==Math.round(r)?u.push(new i({r:c,phi:(a+2*Math.PI*e)/t})):u.push(o[r%4](c))}return u}return t(ec,{Complex:function(e){return a(e,2)},"Complex, number":a})})),rc="dotPow",nc=Se(rc,["typed","equalScalar","matrix","pow","DenseMatrix","concat"],(e=>{let{typed:t,equalScalar:r,matrix:n,pow:i,DenseMatrix:o,concat:a}=e;const s=Lo({typed:t}),u=Ya({typed:t,DenseMatrix:o}),c=wo({typed:t,equalScalar:r}),l=No({typed:t,DenseMatrix:o}),f=Zo({typed:t,matrix:n,concat:a}),p={};for(const e in i.signatures)Object.prototype.hasOwnProperty.call(i.signatures,e)&&(e.includes("Matrix")||e.includes("Array")||(p[e]=i.signatures[e]));const m=t(p);return t(rc,f({elop:m,SS:u,DS:s,Ss:c,sS:l}))})),ic="dotDivide",oc=Se(ic,["typed","matrix","equalScalar","divideScalar","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,divideScalar:i,DenseMatrix:o,concat:a}=e;const s=Uo({typed:t,equalScalar:n}),u=Lo({typed:t}),c=Ya({typed:t,DenseMatrix:o}),l=wo({typed:t,equalScalar:n}),f=No({typed:t,DenseMatrix:o}),p=Zo({typed:t,matrix:r,concat:a});return t(ic,p({elop:i,SS:c,DS:u,SD:s,Ss:l,sS:f}))}));function ac(e){let{DenseMatrix:t}=e;return function(e,r,n){const i=e.size();if(2!==i.length)throw new RangeError("Matrix must be two dimensional (size: "+Qr(i)+")");const o=i[0];if(o!==i[1])throw new RangeError("Matrix must be square (size: "+Qr(i)+")");let a=[];if(f(r)){const e=r.size(),i=r._data;if(1===e.length){if(e[0]!==o)throw new RangeError("Dimension mismatch. Matrix columns must match vector length.");for(let e=0;e<o;e++)a[e]=[i[e]];return new t({data:a,size:[o,1],datatype:r._datatype})}if(2===e.length){if(e[0]!==o||1!==e[1])throw new RangeError("Dimension mismatch. Matrix columns must match vector length.");if(m(r)){if(n){a=[];for(let e=0;e<o;e++)a[e]=[i[e][0]];return new t({data:a,size:[o,1],datatype:r._datatype})}return r}if(d(r)){for(let e=0;e<o;e++)a[e]=[0];const e=r._values,n=r._index,i=r._ptr;for(let t=i[1],r=i[0];r<t;r++)a[n[r]][0]=e[r];return new t({data:a,size:[o,1],datatype:r._datatype})}}throw new RangeError("Dimension mismatch. The right side has to be either 1- or 2-dimensional vector.")}if(l(r)){const e=sn(r);if(1===e.length){if(e[0]!==o)throw new RangeError("Dimension mismatch. Matrix columns must match vector length.");for(let e=0;e<o;e++)a[e]=[r[e]];return new t({data:a,size:[o,1]})}if(2===e.length){if(e[0]!==o||1!==e[1])throw new RangeError("Dimension mismatch. Matrix columns must match vector length.");for(let e=0;e<o;e++)a[e]=[r[e][0]];return new t({data:a,size:[o,1]})}throw new RangeError("Dimension mismatch. The right side has to be either 1- or 2-dimensional vector.")}}}const sc="lsolve",uc=Se(sc,["typed","matrix","divideScalar","multiplyScalar","subtractScalar","equalScalar","DenseMatrix"],(e=>{let{typed:t,matrix:r,divideScalar:n,multiplyScalar:i,subtractScalar:o,equalScalar:a,DenseMatrix:s}=e;const u=ac({DenseMatrix:s});return t(sc,{"SparseMatrix, Array | Matrix":function(e,t){return function(e,t){const r=(t=u(e,t,!0))._data,c=e._size[0],l=e._size[1],f=e._values,p=e._index,m=e._ptr,d=[];for(let e=0;e<l;e++){const t=r[e][0]||0;if(a(t,0))d[e]=[0];else{let s=0;const u=[],c=[],l=m[e],h=m[e+1];for(let t=l;t<h;t++){const r=p[t];r===e?s=f[t]:r>e&&(u.push(f[t]),c.push(r))}if(a(s,0))throw new Error("Linear system cannot be solved since matrix is singular");const g=n(t,s);for(let e=0,t=c.length;e<t;e++){const t=c[e];r[t]=[o(r[t][0]||0,i(g,u[e]))]}d[e]=[g]}}return new s({data:d,size:[c,1]})}(e,t)},"DenseMatrix, Array | Matrix":function(e,t){return c(e,t)},"Array, Array | Matrix":function(e,t){return c(r(e),t).valueOf()}});function c(e,t){const r=(t=u(e,t,!0))._data,c=e._size[0],l=e._size[1],f=[],p=e._data;for(let e=0;e<l;e++){const t=r[e][0]||0;let s;if(a(t,0))s=0;else{const u=p[e][e];if(a(u,0))throw new Error("Linear system cannot be solved since matrix is singular");s=n(t,u);for(let t=e+1;t<c;t++)r[t]=[o(r[t][0]||0,i(s,p[t][e]))]}f[e]=[s]}return new s({data:f,size:[c,1]})}})),cc="usolve",lc=Se(cc,["typed","matrix","divideScalar","multiplyScalar","subtractScalar","equalScalar","DenseMatrix"],(e=>{let{typed:t,matrix:r,divideScalar:n,multiplyScalar:i,subtractScalar:o,equalScalar:a,DenseMatrix:s}=e;const u=ac({DenseMatrix:s});return t(cc,{"SparseMatrix, Array | Matrix":function(e,t){return function(e,t){const r=(t=u(e,t,!0))._data,c=e._size[0],l=e._size[1],f=e._values,p=e._index,m=e._ptr,d=[];for(let e=l-1;e>=0;e--){const t=r[e][0]||0;if(a(t,0))d[e]=[0];else{let s=0;const u=[],c=[],l=m[e];for(let t=m[e+1]-1;t>=l;t--){const r=p[t];r===e?s=f[t]:r<e&&(u.push(f[t]),c.push(r))}if(a(s,0))throw new Error("Linear system cannot be solved since matrix is singular");const h=n(t,s);for(let e=0,t=c.length;e<t;e++){const t=c[e];r[t]=[o(r[t][0],i(h,u[e]))]}d[e]=[h]}}return new s({data:d,size:[c,1]})}(e,t)},"DenseMatrix, Array | Matrix":function(e,t){return c(e,t)},"Array, Array | Matrix":function(e,t){return c(r(e),t).valueOf()}});function c(e,t){const r=(t=u(e,t,!0))._data,c=e._size[0],l=e._size[1],f=[],p=e._data;for(let e=l-1;e>=0;e--){const t=r[e][0]||0;let s;if(a(t,0))s=0;else{const u=p[e][e];if(a(u,0))throw new Error("Linear system cannot be solved since matrix is singular");s=n(t,u);for(let t=e-1;t>=0;t--)r[t]=[o(r[t][0]||0,i(s,p[t][e]))]}f[e]=[s]}return new s({data:f,size:[c,1]})}})),fc="lsolveAll",pc=Se(fc,["typed","matrix","divideScalar","multiplyScalar","subtractScalar","equalScalar","DenseMatrix"],(e=>{let{typed:t,matrix:r,divideScalar:n,multiplyScalar:i,subtractScalar:o,equalScalar:a,DenseMatrix:s}=e;const u=ac({DenseMatrix:s});return t(fc,{"SparseMatrix, Array | Matrix":function(e,t){return function(e,t){const r=[u(e,t,!0)._data.map((e=>e[0]))],c=e._size[0],l=e._size[1],f=e._values,p=e._index,m=e._ptr;for(let e=0;e<l;e++){let t=r.length;for(let s=0;s<t;s++){const u=r[s],c=[],l=[],d=m[e],h=m[e+1];let g=0;for(let t=d;t<h;t++){const r=p[t];r===e?g=f[t]:r>e&&(c.push(f[t]),l.push(r))}if(a(g,0))if(a(u[e],0)){if(0===s){const t=[...u];t[e]=1;for(let e=0,r=l.length;e<r;e++){const r=l[e];t[r]=o(t[r],c[e])}r.push(t)}}else{if(0===s)return[];r.splice(s,1),s-=1,t-=1}else{u[e]=n(u[e],g);for(let t=0,r=l.length;t<r;t++){const r=l[t];u[r]=o(u[r],i(u[e],c[t]))}}}}return r.map((e=>new s({data:e.map((e=>[e])),size:[c,1]})))}(e,t)},"DenseMatrix, Array | Matrix":function(e,t){return c(e,t)},"Array, Array | Matrix":function(e,t){return c(r(e),t).map((e=>e.valueOf()))}});function c(e,t){const r=[u(e,t,!0)._data.map((e=>e[0]))],c=e._data,l=e._size[0],f=e._size[1];for(let e=0;e<f;e++){let t=r.length;for(let s=0;s<t;s++){const u=r[s];if(a(c[e][e],0))if(a(u[e],0)){if(0===s){const t=[...u];t[e]=1;for(let r=e+1;r<f;r++)t[r]=o(t[r],c[r][e]);r.push(t)}}else{if(0===s)return[];r.splice(s,1),s-=1,t-=1}else{u[e]=n(u[e],c[e][e]);for(let t=e+1;t<f;t++)u[t]=o(u[t],i(u[e],c[t][e]))}}}return r.map((e=>new s({data:e.map((e=>[e])),size:[l,1]})))}})),mc="usolveAll",dc=Se(mc,["typed","matrix","divideScalar","multiplyScalar","subtractScalar","equalScalar","DenseMatrix"],(e=>{let{typed:t,matrix:r,divideScalar:n,multiplyScalar:i,subtractScalar:o,equalScalar:a,DenseMatrix:s}=e;const u=ac({DenseMatrix:s});return t(mc,{"SparseMatrix, Array | Matrix":function(e,t){return function(e,t){const r=[u(e,t,!0)._data.map((e=>e[0]))],c=e._size[0],l=e._size[1],f=e._values,p=e._index,m=e._ptr;for(let e=l-1;e>=0;e--){let t=r.length;for(let s=0;s<t;s++){const u=r[s],c=[],l=[],d=m[e];let h=0;for(let t=m[e+1]-1;t>=d;t--){const r=p[t];r===e?h=f[t]:r<e&&(c.push(f[t]),l.push(r))}if(a(h,0))if(a(u[e],0)){if(0===s){const t=[...u];t[e]=1;for(let e=0,r=l.length;e<r;e++){const r=l[e];t[r]=o(t[r],c[e])}r.push(t)}}else{if(0===s)return[];r.splice(s,1),s-=1,t-=1}else{u[e]=n(u[e],h);for(let t=0,r=l.length;t<r;t++){const r=l[t];u[r]=o(u[r],i(u[e],c[t]))}}}}return r.map((e=>new s({data:e.map((e=>[e])),size:[c,1]})))}(e,t)},"DenseMatrix, Array | Matrix":function(e,t){return c(e,t)},"Array, Array | Matrix":function(e,t){return c(r(e),t).map((e=>e.valueOf()))}});function c(e,t){const r=[u(e,t,!0)._data.map((e=>e[0]))],c=e._data,l=e._size[0];for(let t=e._size[1]-1;t>=0;t--){let e=r.length;for(let s=0;s<e;s++){const u=r[s];if(a(c[t][t],0))if(a(u[t],0)){if(0===s){const e=[...u];e[t]=1;for(let r=t-1;r>=0;r--)e[r]=o(e[r],c[r][t]);r.push(e)}}else{if(0===s)return[];r.splice(s,1),s-=1,e-=1}else{u[t]=n(u[t],c[t][t]);for(let e=t-1;e>=0;e--)u[e]=o(u[e],i(u[t],c[e][t]))}}}return r.map((e=>new s({data:e.map((e=>[e])),size:[l,1]})))}})),hc=Se("matAlgo08xS0Sid",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i){const o=e._values,a=e._index,s=e._ptr,u=e._size,c=e._datatype||void 0===e._data?e._datatype:e.getDataType(),l=n._values,f=n._index,p=n._ptr,m=n._size,d=n._datatype||void 0===n._data?n._datatype:n.getDataType();if(u.length!==m.length)throw new on(u.length,m.length);if(u[0]!==m[0]||u[1]!==m[1])throw new RangeError("Dimension mismatch. Matrix A ("+u+") must match Matrix B ("+m+")");if(!o||!l)throw new Error("Cannot perform operation on Pattern Sparse Matrices");const h=u[0],g=u[1];let y,x=r,b=0,v=i;"string"==typeof c&&c===d&&"mixed"!==c&&(y=c,x=t.find(r,[y,y]),b=t.convert(0,y),v=t.find(i,[y,y]));const w=[],N=[],E=[],A=[],S=[];let M,C,T,D;for(let e=0;e<g;e++){E[e]=N.length;const t=e+1;for(C=s[e],T=s[e+1],M=C;M<T;M++)D=a[M],S[D]=t,A[D]=o[M],N.push(D);for(C=p[e],T=p[e+1],M=C;M<T;M++)D=f[M],S[D]===t&&(A[D]=v(A[D],l[M]));for(M=E[e];M<N.length;){D=N[M];const e=A[D];x(e,b)?N.splice(M,1):(w.push(e),M++)}}return E[g]=N.length,e.createSparseMatrix({values:w,index:N,ptr:E,size:[h,g],datatype:c===e._datatype&&d===n._datatype?y:void 0})}})),gc=Se("useMatrixForArrayScalar",["typed","matrix"],(e=>{let{typed:t,matrix:r}=e;return{"Array, number":t.referTo("DenseMatrix, number",(e=>(t,n)=>e(r(t),n).valueOf())),"Array, BigNumber":t.referTo("DenseMatrix, BigNumber",(e=>(t,n)=>e(r(t),n).valueOf())),"number, Array":t.referTo("number, DenseMatrix",(e=>(t,n)=>e(t,r(n)).valueOf())),"BigNumber, Array":t.referTo("BigNumber, DenseMatrix",(e=>(t,n)=>e(t,r(n)).valueOf()))}})),yc="leftShift",xc=Se(yc,["typed","matrix","equalScalar","zeros","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,zeros:i,DenseMatrix:o,concat:a}=e;const s=Wo({typed:t}),u=Uo({typed:t,equalScalar:n}),c=hc({typed:t,equalScalar:n}),l=Jo({typed:t,DenseMatrix:o}),f=wo({typed:t,equalScalar:n}),p=Eo({typed:t}),m=Zo({typed:t,matrix:r,concat:a}),d=gc({typed:t,matrix:r});return t(yc,{"number, number":ja,"BigNumber, BigNumber":_a,"bigint, bigint":(e,t)=>e<<t,"SparseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>n(r,0)?t.clone():f(t,r,e,!1))),"DenseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>n(r,0)?t.clone():p(t,r,e,!1))),"number | BigNumber, SparseMatrix":t.referToSelf((e=>(t,r)=>n(t,0)?i(r.size(),r.storage()):l(r,t,e,!0))),"number | BigNumber, DenseMatrix":t.referToSelf((e=>(t,r)=>n(t,0)?i(r.size(),r.storage()):p(r,t,e,!0)))},d,m({SS:c,DS:s,SD:u}))})),bc="rightArithShift",vc=Se(bc,["typed","matrix","equalScalar","zeros","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,zeros:i,DenseMatrix:o,concat:a}=e;const s=Wo({typed:t}),u=Uo({typed:t,equalScalar:n}),c=hc({typed:t,equalScalar:n}),l=Jo({typed:t,DenseMatrix:o}),f=wo({typed:t,equalScalar:n}),p=Eo({typed:t}),m=Zo({typed:t,matrix:r,concat:a}),d=gc({typed:t,matrix:r});return t(bc,{"number, number":Ua,"BigNumber, BigNumber":za,"bigint, bigint":(e,t)=>e>>t,"SparseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>n(r,0)?t.clone():f(t,r,e,!1))),"DenseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>n(r,0)?t.clone():p(t,r,e,!1))),"number | BigNumber, SparseMatrix":t.referToSelf((e=>(t,r)=>n(t,0)?i(r.size(),r.storage()):l(r,t,e,!0))),"number | BigNumber, DenseMatrix":t.referToSelf((e=>(t,r)=>n(t,0)?i(r.size(),r.storage()):p(r,t,e,!0)))},d,m({SS:c,DS:s,SD:u}))})),wc="rightLogShift",Nc=Se(wc,["typed","matrix","equalScalar","zeros","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,zeros:i,DenseMatrix:o,concat:a}=e;const s=Wo({typed:t}),u=Uo({typed:t,equalScalar:n}),c=hc({typed:t,equalScalar:n}),l=Jo({typed:t,DenseMatrix:o}),f=wo({typed:t,equalScalar:n}),p=Eo({typed:t}),m=Zo({typed:t,matrix:r,concat:a}),d=gc({typed:t,matrix:r});return t(wc,{"number, number":La,"SparseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>n(r,0)?t.clone():f(t,r,e,!1))),"DenseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>n(r,0)?t.clone():p(t,r,e,!1))),"number | BigNumber, SparseMatrix":t.referToSelf((e=>(t,r)=>n(t,0)?i(r.size(),r.storage()):l(r,t,e,!0))),"number | BigNumber, DenseMatrix":t.referToSelf((e=>(t,r)=>n(t,0)?i(r.size(),r.storage()):p(r,t,e,!0)))},d,m({SS:c,DS:s,SD:u}))})),Ec=Se("and",["typed","matrix","equalScalar","zeros","not","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,zeros:i,not:o,concat:a}=e;const s=Uo({typed:t,equalScalar:n}),u=ra({typed:t,equalScalar:n}),c=wo({typed:t,equalScalar:n}),l=Eo({typed:t}),f=Zo({typed:t,matrix:r,concat:a});return t("and",{"number, number":ss,"Complex, Complex":function(e,t){return!(0===e.re&&0===e.im||0===t.re&&0===t.im)},"BigNumber, BigNumber":function(e,t){return!(e.isZero()||t.isZero()||e.isNaN()||t.isNaN())},"bigint, bigint":ss,"Unit, Unit":t.referToSelf((e=>(t,r)=>e(t.value||0,r.value||0))),"SparseMatrix, any":t.referToSelf((e=>(t,r)=>o(r)?i(t.size(),t.storage()):c(t,r,e,!1))),"DenseMatrix, any":t.referToSelf((e=>(t,r)=>o(r)?i(t.size(),t.storage()):l(t,r,e,!1))),"any, SparseMatrix":t.referToSelf((e=>(t,r)=>o(t)?i(t.size(),t.storage()):c(r,t,e,!0))),"any, DenseMatrix":t.referToSelf((e=>(t,r)=>o(t)?i(t.size(),t.storage()):l(r,t,e,!0))),"Array, any":t.referToSelf((e=>(t,n)=>e(r(t),n).valueOf())),"any, Array":t.referToSelf((e=>(t,n)=>e(t,r(n)).valueOf()))},f({SS:u,DS:s}))})),Ac="compare",Sc=Se(Ac,["typed","config","matrix","equalScalar","BigNumber","Fraction","DenseMatrix","concat"],(e=>{let{typed:t,config:r,equalScalar:n,matrix:i,BigNumber:o,Fraction:a,DenseMatrix:s,concat:u}=e;const c=Lo({typed:t}),l=$o({typed:t,equalScalar:n}),f=No({typed:t,DenseMatrix:s}),p=Zo({typed:t,matrix:i,concat:u}),m=gi({typed:t});return t(Ac,Mc({typed:t,config:r}),{"boolean, boolean":function(e,t){return e===t?0:e>t?1:-1},"BigNumber, BigNumber":function(e,t){return ti(e,t,r.relTol,r.absTol)?new o(0):new o(e.cmp(t))},"bigint, bigint":function(e,t){return e===t?0n:e>t?1n:-1n},"Fraction, Fraction":function(e,t){return new a(e.compare(t))},"Complex, Complex":function(){throw new TypeError("No ordering relation is defined for complex numbers")}},m,p({SS:l,DS:c,Ss:f}))})),Mc=Se(Ac,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(Ac,{"number, number":function(e,t){return ue(e,t,r.relTol,r.absTol)?0:e>t?1:-1}})}));var Cc=r(1880);const Tc="compareNatural",Dc=Se(Tc,["typed","compare"],(e=>{let{typed:t,compare:r}=e;const n=r.signatures["boolean,boolean"];return t(Tc,{"any, any":function e(t,a){const s=H(t),u=H(a);let c;if(!("number"!==s&&"BigNumber"!==s&&"Fraction"!==s||"number"!==u&&"BigNumber"!==u&&"Fraction"!==u))return c=r(t,a),"0"!==c.toString()?c>0?1:-1:Cc(s,u);const l=["Array","DenseMatrix","SparseMatrix"];if(l.includes(s)||l.includes(u))return c=i(e,t,a),0!==c?c:Cc(s,u);if(s!==u)return Cc(s,u);if("Complex"===s)return function(e,t){return e.re>t.re?1:e.re<t.re?-1:e.im>t.im?1:e.im<t.im?-1:0}(t,a);if("Unit"===s)return t.equalBase(a)?e(t.value,a.value):o(e,t.formatUnits(),a.formatUnits());if("boolean"===s)return n(t,a);if("string"===s)return Cc(t,a);if("Object"===s)return function(e,t,r){const n=Object.keys(t),i=Object.keys(r);n.sort(Cc),i.sort(Cc);const a=o(e,n,i);if(0!==a)return a;for(let o=0;o<n.length;o++){const a=e(t[n[o]],r[i[o]]);if(0!==a)return a}return 0}(e,t,a);if("null"===s)return 0;if("undefined"===s)return 0;throw new TypeError('Unsupported type of value "'+s+'"')}});function i(e,t,r){return d(t)&&d(r)?o(e,t.toJSON().values,r.toJSON().values):d(t)?i(e,t.toArray(),r):d(r)?i(e,t,r.toArray()):m(t)?i(e,t.toJSON().data,r):m(r)?i(e,t,r.toJSON().data):Array.isArray(t)?Array.isArray(r)?o(e,t,r):i(e,t,[r]):i(e,[t],r)}function o(e,t,r){for(let n=0,i=Math.min(t.length,r.length);n<i;n++){const i=e(t[n],r[n]);if(0!==i)return i}return t.length>r.length?1:t.length<r.length?-1:0}})),Fc="compareText",Bc=["typed","matrix","concat"];nn.signature="any, any";const Oc=Se(Fc,Bc,(e=>{let{typed:t,matrix:r,concat:n}=e;const i=Zo({typed:t,matrix:r,concat:n});return t(Fc,nn,i({elop:nn,Ds:!0}))})),_c="equal",zc=Se(_c,["typed","matrix","equalScalar","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o}=e;const a=Lo({typed:t}),s=Ya({typed:t,DenseMatrix:i}),u=No({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:r,concat:o});return t(_c,Ic({typed:t,equalScalar:n}),c({elop:n,SS:s,DS:a,Ss:u}))})),Ic=Se(_c,["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return t(_c,{"any, any":function(e,t){return null===e?null===t:null===t?null===e:void 0===e?void 0===t:void 0===t?void 0===e:r(e,t)}})})),kc="equalText",qc=Se(kc,["typed","compareText","isZero"],(e=>{let{typed:t,compareText:r,isZero:n}=e;return t(kc,{"any, any":function(e,t){return n(r(e,t))}})})),Rc="smaller",Pc=Se(Rc,["typed","config","matrix","DenseMatrix","concat"],(e=>{let{typed:t,config:r,matrix:n,DenseMatrix:i,concat:o}=e;const a=Lo({typed:t}),s=Ya({typed:t,DenseMatrix:i}),u=No({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:n,concat:o}),l=gi({typed:t});return t(Rc,jc({typed:t,config:r}),{"boolean, boolean":(e,t)=>e<t,"BigNumber, BigNumber":function(e,t){return e.lt(t)&&!ti(e,t,r.relTol,r.absTol)},"bigint, bigint":(e,t)=>e<t,"Fraction, Fraction":(e,t)=>-1===e.compare(t),"Complex, Complex":function(e,t){throw new TypeError("No ordering relation is defined for complex numbers")}},l,c({SS:s,DS:a,Ss:u}))})),jc=Se(Rc,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(Rc,{"number, number":function(e,t){return e<t&&!ue(e,t,r.relTol,r.absTol)}})})),Uc="smallerEq",Lc=Se(Uc,["typed","config","matrix","DenseMatrix","concat"],(e=>{let{typed:t,config:r,matrix:n,DenseMatrix:i,concat:o}=e;const a=Lo({typed:t}),s=Ya({typed:t,DenseMatrix:i}),u=No({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:n,concat:o}),l=gi({typed:t});return t(Uc,$c({typed:t,config:r}),{"boolean, boolean":(e,t)=>e<=t,"BigNumber, BigNumber":function(e,t){return e.lte(t)||ti(e,t,r.relTol,r.absTol)},"bigint, bigint":(e,t)=>e<=t,"Fraction, Fraction":(e,t)=>1!==e.compare(t),"Complex, Complex":function(){throw new TypeError("No ordering relation is defined for complex numbers")}},l,c({SS:s,DS:a,Ss:u}))})),$c=Se(Uc,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(Uc,{"number, number":function(e,t){return e<=t||ue(e,t,r.relTol,r.absTol)}})})),Hc="larger",Gc=Se(Hc,["typed","config","matrix","DenseMatrix","concat"],(e=>{let{typed:t,config:r,matrix:n,DenseMatrix:i,concat:o}=e;const a=Lo({typed:t}),s=Ya({typed:t,DenseMatrix:i}),u=No({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:n,concat:o}),l=gi({typed:t});return t(Hc,Zc({typed:t,config:r}),{"boolean, boolean":(e,t)=>e>t,"BigNumber, BigNumber":function(e,t){return e.gt(t)&&!ti(e,t,r.relTol,r.absTol)},"bigint, bigint":(e,t)=>e>t,"Fraction, Fraction":(e,t)=>1===e.compare(t),"Complex, Complex":function(){throw new TypeError("No ordering relation is defined for complex numbers")}},l,c({SS:s,DS:a,Ss:u}))})),Zc=Se(Hc,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(Hc,{"number, number":function(e,t){return e>t&&!ue(e,t,r.relTol,r.absTol)}})})),Vc="largerEq",Wc=Se(Vc,["typed","config","matrix","DenseMatrix","concat"],(e=>{let{typed:t,config:r,matrix:n,DenseMatrix:i,concat:o}=e;const a=Lo({typed:t}),s=Ya({typed:t,DenseMatrix:i}),u=No({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:n,concat:o}),l=gi({typed:t});return t(Vc,Yc({typed:t,config:r}),{"boolean, boolean":(e,t)=>e>=t,"BigNumber, BigNumber":function(e,t){return e.gte(t)||ti(e,t,r.relTol,r.absTol)},"bigint, bigint":function(e,t){return e>=t},"Fraction, Fraction":(e,t)=>-1!==e.compare(t),"Complex, Complex":function(){throw new TypeError("No ordering relation is defined for complex numbers")}},l,c({SS:s,DS:a,Ss:u}))})),Yc=Se(Vc,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(Vc,{"number, number":function(e,t){return e>=t||ue(e,t,r.relTol,r.absTol)}})})),Jc="deepEqual",Xc=Se(Jc,["typed","equal"],(e=>{let{typed:t,equal:r}=e;return t(Jc,{"any, any":function(e,t){return n(e.valueOf(),t.valueOf())}});function n(e,t){if(Array.isArray(e)){if(Array.isArray(t)){const r=e.length;if(r!==t.length)return!1;for(let i=0;i<r;i++)if(!n(e[i],t[i]))return!1;return!0}return!1}return!Array.isArray(t)&&r(e,t)}})),Qc="unequal",Kc=Se(Qc,["typed","config","equalScalar","matrix","DenseMatrix","concat"],(e=>{let{typed:t,config:r,equalScalar:n,matrix:i,DenseMatrix:o,concat:a}=e;const s=Lo({typed:t}),u=Ya({typed:t,DenseMatrix:o}),c=No({typed:t,DenseMatrix:o}),l=Zo({typed:t,matrix:i,concat:a});return t(Qc,el({typed:t,equalScalar:n}),l({elop:function(e,t){return!n(e,t)},SS:u,DS:s,Ss:c}))})),el=Se(Qc,["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return t(Qc,{"any, any":function(e,t){return null===e?null!==t:null===t?null!==e:void 0===e?void 0!==t:void 0===t?void 0!==e:!r(e,t)}})})),tl="partitionSelect",rl=Se(tl,["typed","isNumeric","isNaN","compare"],(e=>{let{typed:t,isNumeric:r,isNaN:n,compare:i}=e;const o=i,a=(e,t)=>-i(e,t);return t(tl,{"Array | Matrix, number":function(e,t){return s(e,t,o)},"Array | Matrix, number, string":function(e,t,r){if("asc"===r)return s(e,t,o);if("desc"===r)return s(e,t,a);throw new Error('Compare string must be "asc" or "desc"')},"Array | Matrix, number, function":s});function s(e,t,r){if(!Z(t)||t<0)throw new Error("k must be a non-negative integer");if(f(e)){if(e.size().length>1)throw new Error("Only one dimensional matrices supported");return u(e.valueOf(),t,r)}if(Array.isArray(e))return u(e,t,r)}function u(e,t,i){if(t>=e.length)throw new Error("k out of bounds");for(let t=0;t<e.length;t++)if(r(e[t])&&n(e[t]))return e[t];let o=0,a=e.length-1;for(;o<a;){let r=o,n=a;const s=e[Math.floor(Math.random()*(a-o+1))+o];for(;r<n;)if(i(e[r],s)>=0){const t=e[n];e[n]=e[r],e[r]=t,--n}else++r;i(e[r],s)>0&&--r,t<=r?a=r:o=r+1}return e[t]}})),nl="sort",il=Se(nl,["typed","matrix","compare","compareNatural"],(e=>{let{typed:t,matrix:r,compare:n,compareNatural:i}=e;const o=n,a=(e,t)=>-n(e,t);return t(nl,{Array:function(e){return u(e),e.sort(o)},Matrix:function(e){return c(e),r(e.toArray().sort(o),e.storage())},"Array, function":function(e,t){return u(e),e.sort(t)},"Matrix, function":function(e,t){return c(e),r(e.toArray().sort(t),e.storage())},"Array, string":function(e,t){return u(e),e.sort(s(t))},"Matrix, string":function(e,t){return c(e),r(e.toArray().sort(s(t)),e.storage())}});function s(e){if("asc"===e)return o;if("desc"===e)return a;if("natural"===e)return i;throw new Error('String "asc", "desc", or "natural" expected')}function u(e){if(1!==sn(e).length)throw new Error("One dimensional array expected")}function c(e){if(1!==e.size().length)throw new Error("One dimensional matrix expected")}})),ol=Se("max",["typed","config","numeric","larger"],(e=>{let{typed:t,config:r,numeric:n,larger:i}=e;return t("max",{"Array | Matrix":a,"Array | Matrix, number | BigNumber":function(e,t){return Zn(e,t.valueOf(),o)},"...":function(e){if($n(e))throw new TypeError("Scalar values expected in function max");return a(e)}});function o(e,t){try{return i(e,t)?e:t}catch(e){throw Du(e,"max",t)}}function a(e){let t;if(Hn(e,(function(e){try{isNaN(e)&&"number"==typeof e?t=NaN:(void 0===t||i(e,t))&&(t=e)}catch(t){throw Du(t,"max",e)}})),void 0===t)throw new Error("Cannot calculate max of an empty array");return"string"==typeof t&&(t=n(t,V(t,r))),t}})),al=Se("min",["typed","config","numeric","smaller"],(e=>{let{typed:t,config:r,numeric:n,smaller:i}=e;return t("min",{"Array | Matrix":a,"Array | Matrix, number | BigNumber":function(e,t){return Zn(e,t.valueOf(),o)},"...":function(e){if($n(e))throw new TypeError("Scalar values expected in function min");return a(e)}});function o(e,t){try{return i(e,t)?e:t}catch(e){throw Du(e,"min",t)}}function a(e){let t;if(Hn(e,(function(e){try{isNaN(e)&&"number"==typeof e?t=NaN:(void 0===t||i(e,t))&&(t=e)}catch(t){throw Du(t,"min",e)}})),void 0===t)throw new Error("Cannot calculate min of an empty array");return"string"==typeof t&&(t=n(t,V(t,r))),t}})),sl=Se("ImmutableDenseMatrix",["smaller","DenseMatrix"],(e=>{let{smaller:t,DenseMatrix:r}=e;function n(e,t){if(!(this instanceof n))throw new SyntaxError("Constructor must be called with the new operator");if(t&&!c(t))throw new Error("Invalid datatype: "+t);if(f(e)||l(e)){const n=new r(e,t);this._data=n._data,this._size=n._size,this._datatype=n._datatype,this._min=null,this._max=null}else if(e&&l(e.data)&&l(e.size))this._data=e.data,this._size=e.size,this._datatype=e.datatype,this._min=void 0!==e.min?e.min:null,this._max=void 0!==e.max?e.max:null;else{if(e)throw new TypeError("Unsupported type of data ("+H(e)+")");this._data=[],this._size=[0],this._datatype=t,this._min=null,this._max=null}}return n.prototype=new r,n.prototype.type="ImmutableDenseMatrix",n.prototype.isImmutableDenseMatrix=!0,n.prototype.subset=function(e){switch(arguments.length){case 1:{const t=r.prototype.subset.call(this,e);return f(t)?new n({data:t._data,size:t._size,datatype:t._datatype}):t}case 2:case 3:throw new Error("Cannot invoke set subset on an Immutable Matrix instance");default:throw new SyntaxError("Wrong number of arguments")}},n.prototype.set=function(){throw new Error("Cannot invoke set on an Immutable Matrix instance")},n.prototype.resize=function(){throw new Error("Cannot invoke resize on an Immutable Matrix instance")},n.prototype.reshape=function(){throw new Error("Cannot invoke reshape on an Immutable Matrix instance")},n.prototype.clone=function(){return new n({data:ye(this._data),size:ye(this._size),datatype:this._datatype})},n.prototype.toJSON=function(){return{mathjs:"ImmutableDenseMatrix",data:this._data,size:this._size,datatype:this._datatype}},n.fromJSON=function(e){return new n(e)},n.prototype.swapRows=function(){throw new Error("Cannot invoke swapRows on an Immutable Matrix instance")},n.prototype.min=function(){if(null===this._min){let e=null;this.forEach((function(r){(null===e||t(r,e))&&(e=r)})),this._min=null!==e?e:void 0}return this._min},n.prototype.max=function(){if(null===this._max){let e=null;this.forEach((function(r){(null===e||t(e,r))&&(e=r)})),this._max=null!==e?e:void 0}return this._max},n}),{isClass:!0}),ul=Se("Index",["ImmutableDenseMatrix","getMatrixDataType"],(e=>{let{ImmutableDenseMatrix:t,getMatrixDataType:r}=e;function n(e){if(!(this instanceof n))throw new SyntaxError("Constructor must be called with the new operator");this._dimensions=[],this._sourceSize=[],this._isScalar=!0;for(let e=0,t=arguments.length;e<t;e++){const t=arguments[e],n=l(t),o=f(t);let a=null;if(h(t))this._dimensions.push(t),this._isScalar=!1;else if(n||o){let e;"boolean"===r(t)?(n&&(e=i(cl(t).valueOf())),o&&(e=i(cl(t._data).valueOf())),a=t.valueOf().length):e=i(t.valueOf()),this._dimensions.push(e);const s=e.size();1===s.length&&1===s[0]&&null===a||(this._isScalar=!1)}else if("number"==typeof t)this._dimensions.push(i([t]));else{if("string"!=typeof t)throw new TypeError("Dimension must be an Array, Matrix, number, string, or Range");this._dimensions.push(t)}this._sourceSize.push(a)}}function i(e){for(let t=0,r=e.length;t<r;t++)if("number"!=typeof e[t]||!Z(e[t]))throw new TypeError("Index parameters must be positive integer numbers");return new t(e)}return n.prototype.type="Index",n.prototype.isIndex=!0,n.prototype.clone=function(){const e=new n;return e._dimensions=ye(this._dimensions),e._isScalar=this._isScalar,e._sourceSize=this._sourceSize,e},n.create=function(e){const t=new n;return n.apply(t,e),t},n.prototype.size=function(){const e=[];for(let t=0,r=this._dimensions.length;t<r;t++){const r=this._dimensions[t];e[t]="string"==typeof r?1:r.size()[0]}return e},n.prototype.max=function(){const e=[];for(let t=0,r=this._dimensions.length;t<r;t++){const r=this._dimensions[t];e[t]="string"==typeof r?r:r.max()}return e},n.prototype.min=function(){const e=[];for(let t=0,r=this._dimensions.length;t<r;t++){const r=this._dimensions[t];e[t]="string"==typeof r?r:r.min()}return e},n.prototype.forEach=function(e){for(let t=0,r=this._dimensions.length;t<r;t++)e(this._dimensions[t],t,this)},n.prototype.dimension=function(e){return this._dimensions[e]||null},n.prototype.isObjectProperty=function(){return 1===this._dimensions.length&&"string"==typeof this._dimensions[0]},n.prototype.getObjectProperty=function(){return this.isObjectProperty()?this._dimensions[0]:null},n.prototype.isScalar=function(){return this._isScalar},n.prototype.toArray=function(){const e=[];for(let t=0,r=this._dimensions.length;t<r;t++){const r=this._dimensions[t];e.push("string"==typeof r?r:r.toArray())}return e},n.prototype.valueOf=n.prototype.toArray,n.prototype.toString=function(){const e=[];for(let t=0,r=this._dimensions.length;t<r;t++){const r=this._dimensions[t];"string"==typeof r?e.push(JSON.stringify(r)):e.push(r.toString())}return"["+e.join(", ")+"]"},n.prototype.toJSON=function(){return{mathjs:"Index",dimensions:this._dimensions}},n.fromJSON=function(e){return n.create(e.dimensions)},n}),{isClass:!0});function cl(e){const t=[];return e.forEach(((e,r)=>{e&&t.push(r)})),t}const ll=Se("FibonacciHeap",["smaller","larger"],(e=>{let{smaller:t,larger:r}=e;const n=1/Math.log((1+Math.sqrt(5))/2);function i(){if(!(this instanceof i))throw new SyntaxError("Constructor must be called with the new operator");this._minimum=null,this._size=0}function o(e,t,r){t.left.right=t.right,t.right.left=t.left,r.degree--,r.child===t&&(r.child=t.right),0===r.degree&&(r.child=null),t.left=e,t.right=e.right,e.right=t,t.right.left=t,t.parent=null,t.mark=!1}function a(e,t){const r=t.parent;r&&(t.mark?(o(e,t,r),a(r)):t.mark=!0)}i.prototype.type="FibonacciHeap",i.prototype.isFibonacciHeap=!0,i.prototype.insert=function(e,r){const n={key:e,value:r,degree:0};if(this._minimum){const r=this._minimum;n.left=r,n.right=r.right,r.right=n,n.right.left=n,t(e,r.key)&&(this._minimum=n)}else n.left=n,n.right=n,this._minimum=n;return this._size++,n},i.prototype.size=function(){return this._size},i.prototype.clear=function(){this._minimum=null,this._size=0},i.prototype.isEmpty=function(){return 0===this._size},i.prototype.extractMinimum=function(){const e=this._minimum;if(null===e)return e;let i=this._minimum,o=e.degree,a=e.child;for(;o>0;){const e=a.right;a.left.right=a.right,a.right.left=a.left,a.left=i,a.right=i.right,i.right=a,a.right.left=a,a.parent=null,a=e,o--}return e.left.right=e.right,e.right.left=e.left,e===e.right?i=null:(i=e.right,i=function(e,i){const o=Math.floor(Math.log(i)*n)+1,a=new Array(o);let u,c=0,l=e;if(l)for(c++,l=l.right;l!==e;)c++,l=l.right;for(;c>0;){let e=l.degree;const t=l.right;for(;u=a[e],u;){if(r(l.key,u.key)){const e=u;u=l,l=e}s(u,l),a[e]=null,e++}a[e]=l,l=t,c--}e=null;for(let r=0;r<o;r++)u=a[r],u&&(e?(u.left.right=u.right,u.right.left=u.left,u.left=e,u.right=e.right,e.right=u,u.right.left=u,t(u.key,e.key)&&(e=u)):e=u);return e}(i,this._size)),this._size--,this._minimum=i,e},i.prototype.remove=function(e){this._minimum=function(e,r){r.key=-1;const n=r.parent;return n&&t(r.key,n.key)&&(o(e,r,n),a(e,n)),t(r.key,e.key)&&(e=r),e}(this._minimum,e),this.extractMinimum()};const s=function(e,t){e.left.right=e.right,e.right.left=e.left,e.parent=t,t.child?(e.left=t.child,e.right=t.child.right,t.child.right=e,e.right.left=e):(t.child=e,e.right=e,e.left=e),t.degree++,e.mark=!1};return i}),{isClass:!0}),fl=Se("Spa",["addScalar","equalScalar","FibonacciHeap"],(e=>{let{addScalar:t,equalScalar:r,FibonacciHeap:n}=e;function i(){if(!(this instanceof i))throw new SyntaxError("Constructor must be called with the new operator");this._values=[],this._heap=new n}return i.prototype.type="Spa",i.prototype.isSpa=!0,i.prototype.set=function(e,t){if(this._values[e])this._values[e].value=t;else{const r=this._heap.insert(e,t);this._values[e]=r}},i.prototype.get=function(e){const t=this._values[e];return t?t.value:0},i.prototype.accumulate=function(e,r){let n=this._values[e];n?n.value=t(n.value,r):(n=this._heap.insert(e,r),this._values[e]=n)},i.prototype.forEach=function(e,t,n){const i=this._heap,o=this._values,a=[];let s=i.extractMinimum();for(s&&a.push(s);s&&s.key<=t;)s.key>=e&&(r(s.value,0)||n(s.key,s.value,this)),s=i.extractMinimum(),s&&a.push(s);for(let e=0;e<a.length;e++){const t=a[e];s=i.insert(t.key,t.value),o[s.key]=s}},i.prototype.swap=function(e,t){let r=this._values[e],n=this._values[t];if(!r&&n)r=this._heap.insert(e,n.value),this._heap.remove(n),this._values[e]=r,this._values[t]=void 0;else if(r&&!n)n=this._heap.insert(t,r.value),this._heap.remove(r),this._values[t]=n,this._values[e]=void 0;else if(r&&n){const e=r.value;r.value=n.value,n.value=e}},i}),{isClass:!0}),pl=qn((function(e){return new e(1).exp()}),{hasher:gl}),ml=qn((function(e){return new e(1).plus(new e(5).sqrt()).div(2)}),{hasher:gl}),dl=qn((function(e){return e.acos(-1)}),{hasher:gl}),hl=qn((function(e){return dl(e).times(2)}),{hasher:gl});function gl(e){return e[0].precision}const yl=Se("Unit",["?on","config","addScalar","subtractScalar","multiplyScalar","divideScalar","pow","abs","fix","round","equal","isNumeric","format","number","Complex","BigNumber","Fraction"],(e=>{let{on:t,config:r,addScalar:n,subtractScalar:i,multiplyScalar:o,divideScalar:s,pow:c,abs:l,fix:f,round:p,equal:m,isNumeric:d,format:h,number:g,Complex:y,BigNumber:x,Fraction:b}=e;const v=g;function w(e,t){if(!(this instanceof w))throw new Error("Constructor must be called with the new operator");if(null!=e&&!d(e)&&!a(e))throw new TypeError("First parameter in Unit constructor must be number, BigNumber, Fraction, Complex, or undefined");if(this.fixPrefix=!1,this.skipAutomaticSimplification=!0,void 0===t)this.units=[],this.dimensions=I.map((e=>0));else if("string"==typeof t){const e=w.parse(t);this.units=e.units,this.dimensions=e.dimensions}else{if(!u(t)||null!==t.value)throw new TypeError("Second parameter in Unit constructor must be a string or valueless Unit");this.fixPrefix=t.fixPrefix,this.skipAutomaticSimplification=t.skipAutomaticSimplification,this.dimensions=t.dimensions.slice(0),this.units=t.units.map((e=>Vr({},e)))}this.value=this._normalize(e)}let N,E,A;function S(){for(;" "===A||"\t"===A;)C()}function M(e){return e>="0"&&e<="9"}function C(){E++,A=N.charAt(E)}function T(e){E=e,A=N.charAt(E)}function D(){let e="";const t=E;if("+"===A?C():"-"===A&&(e+=A,C()),!function(e){return e>="0"&&e<="9"||"."===e}(A))return T(t),null;if("."===A){if(e+=A,C(),!M(A))return T(t),null}else{for(;M(A);)e+=A,C();"."===A&&(e+=A,C())}for(;M(A);)e+=A,C();if("E"===A||"e"===A){let t="";const r=E;if(t+=A,C(),"+"!==A&&"-"!==A||(t+=A,C()),!M(A))return T(r),e;for(e+=t;M(A);)e+=A,C()}return e}function F(){let e="";for(;M(A)||w.isValidAlpha(A);)e+=A,C();const t=e.charAt(0);return w.isValidAlpha(t)?e:null}function B(e){return A===e?(C(),e):null}Object.defineProperty(w,"name",{value:"Unit"}),w.prototype.constructor=w,w.prototype.type="Unit",w.prototype.isUnit=!0,w.parse=function(e,t){if(t=t||{},N=e,E=-1,A="","string"!=typeof N)throw new TypeError("Invalid argument in Unit.parse, string expected");const n=new w;n.units=[];let i=1,o=!1;C(),S();const a=D();let s=null;if(a){if("BigNumber"===r.number)s=new x(a);else if("Fraction"===r.number)try{s=new b(a)}catch(e){s=parseFloat(a)}else s=parseFloat(a);S(),B("*")?(i=1,o=!0):B("/")&&(i=-1,o=!0)}const u=[];let c=1;for(;;){for(S();"("===A;)u.push(i),c*=i,i=1,C(),S();let t;if(!A)break;{const e=A;if(t=F(),null===t)throw new SyntaxError('Unexpected "'+e+'" in "'+N+'" at index '+E.toString())}const r=O(t);if(null===r)throw new SyntaxError('Unit "'+t+'" not found.');let a=i*c;if(S(),B("^")){S();const t=D();if(null===t)throw new SyntaxError('In "'+e+'", "^" must be followed by a floating-point number');a*=t}n.units.push({unit:r.unit,prefix:r.prefix,power:a});for(let e=0;e<I.length;e++)n.dimensions[e]+=(r.unit.dimensions[e]||0)*a;for(S();")"===A;){if(0===u.length)throw new SyntaxError('Unmatched ")" in "'+N+'" at index '+E.toString());c/=u.pop(),C(),S()}if(o=!1,B("*")?(i=1,o=!0):B("/")?(i=-1,o=!0):i=1,r.unit.base){const e=r.unit.base.key;U.auto[e]={unit:r.unit,prefix:r.prefix}}}if(S(),A)throw new SyntaxError('Could not parse: "'+e+'"');if(o)throw new SyntaxError('Trailing characters: "'+e+'"');if(0!==u.length)throw new SyntaxError('Unmatched "(" in "'+N+'"');if(0===n.units.length&&!t.allowNoUnits)throw new SyntaxError('"'+e+'" contains no units');return n.value=void 0!==s?n._normalize(s):null,n},w.prototype.clone=function(){const e=new w;e.fixPrefix=this.fixPrefix,e.skipAutomaticSimplification=this.skipAutomaticSimplification,e.value=ye(this.value),e.dimensions=this.dimensions.slice(0),e.units=[];for(let t=0;t<this.units.length;t++){e.units[t]={};for(const r in this.units[t])Ae(this.units[t],r)&&(e.units[t][r]=this.units[t][r])}return e},w.prototype.valueType=function(){return H(this.value)},w.prototype._isDerived=function(){return 0!==this.units.length&&(this.units.length>1||Math.abs(this.units[0].power-1)>1e-15)},w.prototype._normalize=function(e){if(null==e||0===this.units.length)return e;let t=e;const r=w._getNumberConverter(H(e));for(let e=0;e<this.units.length;e++){const n=r(this.units[e].unit.value),i=r(this.units[e].prefix.value),a=r(this.units[e].power);t=o(t,c(o(n,i),a))}return t},w.prototype._denormalize=function(e,t){if(null==e||0===this.units.length)return e;let r=e;const n=w._getNumberConverter(H(e));for(let e=0;e<this.units.length;e++){const t=n(this.units[e].unit.value),i=n(this.units[e].prefix.value),a=n(this.units[e].power);r=s(r,c(o(t,i),a))}return r};const O=qn((e=>{if(Ae(R,e)){const t=R[e];return{unit:t,prefix:t.prefixes[""]}}for(const t in R)if(Ae(R,t)&&Xr(e,t)){const r=R[t],n=e.length-t.length,i=e.substring(0,n),o=Ae(r.prefixes,i)?r.prefixes[i]:void 0;if(void 0!==o)return{unit:r,prefix:o}}return null}),{hasher:e=>e[0],limit:100});function _(e){return e.equalBase(k.NONE)&&null!==e.value&&!r.predictable?e.value:e}w.isValuelessUnit=function(e){return null!==O(e)},w.prototype.hasBase=function(e){if("string"==typeof e&&(e=k[e]),!e)return!1;for(let t=0;t<I.length;t++)if(Math.abs((this.dimensions[t]||0)-(e.dimensions[t]||0))>1e-12)return!1;return!0},w.prototype.equalBase=function(e){for(let t=0;t<I.length;t++)if(Math.abs((this.dimensions[t]||0)-(e.dimensions[t]||0))>1e-12)return!1;return!0},w.prototype.equals=function(e){return this.equalBase(e)&&m(this.value,e.value)},w.prototype.multiply=function(e){const t=this.clone(),r=u(e)?e:new w(e);for(let e=0;e<I.length;e++)t.dimensions[e]=(this.dimensions[e]||0)+(r.dimensions[e]||0);for(let e=0;e<r.units.length;e++){const n={...r.units[e]};t.units.push(n)}if(null!==this.value||null!==r.value){const e=null===this.value?this._normalize(1):this.value,n=null===r.value?r._normalize(1):r.value;t.value=o(e,n)}else t.value=null;return u(e)&&(t.skipAutomaticSimplification=!1),_(t)},w.prototype.divideInto=function(e){return new w(e).divide(this)},w.prototype.divide=function(e){const t=this.clone(),r=u(e)?e:new w(e);for(let e=0;e<I.length;e++)t.dimensions[e]=(this.dimensions[e]||0)-(r.dimensions[e]||0);for(let e=0;e<r.units.length;e++){const n={...r.units[e],power:-r.units[e].power};t.units.push(n)}if(null!==this.value||null!==r.value){const e=null===this.value?this._normalize(1):this.value,n=null===r.value?r._normalize(1):r.value;t.value=s(e,n)}else t.value=null;return u(e)&&(t.skipAutomaticSimplification=!1),_(t)},w.prototype.pow=function(e){const t=this.clone();for(let r=0;r<I.length;r++)t.dimensions[r]=(this.dimensions[r]||0)*e;for(let r=0;r<t.units.length;r++)t.units[r].power*=e;return null!==t.value?t.value=c(t.value,e):t.value=null,t.skipAutomaticSimplification=!1,_(t)},w.prototype.abs=function(){const e=this.clone();if(null!==e.value)if(e._isDerived()||0===e.units.length||0===e.units[0].unit.offset)e.value=l(e.value);else{const t=e._numberConverter(),r=t(e.units[0].unit.value),a=t(e.units[0].unit.offset),s=o(r,a);e.value=i(l(n(e.value,s)),s)}for(const t in e.units)"VA"!==e.units[t].unit.name&&"VAR"!==e.units[t].unit.name||(e.units[t].unit=R.W);return e},w.prototype.to=function(e){const t=null===this.value?this._normalize(1):this.value;let r;if("string"==typeof e)r=w.parse(e);else{if(!u(e))throw new Error("String or Unit expected as parameter");r=e.clone()}if(!this.equalBase(r))throw new Error(`Units do not match ('${r.toString()}' != '${this.toString()}')`);if(null!==r.value)throw new Error("Cannot convert to a unit with a value");if(null===this.value||this._isDerived()||0===this.units.length||0===r.units.length||this.units[0].unit.offset===r.units[0].unit.offset)r.value=ye(t);else{const e=w._getNumberConverter(H(t)),a=this.units[0].unit.value,s=this.units[0].unit.offset,u=o(a,s),c=r.units[0].unit.value,l=r.units[0].unit.offset,f=o(c,l);r.value=n(t,e(i(u,f)))}return r.fixPrefix=!0,r.skipAutomaticSimplification=!0,r},w.prototype.toNumber=function(e){return v(this.toNumeric(e))},w.prototype.toNumeric=function(e){let t;return t=e?this.to(e):this.clone(),t._isDerived()||0===t.units.length?t._denormalize(t.value):t._denormalize(t.value,t.units[0].prefix.value)},w.prototype.toString=function(){return this.format()},w.prototype.toJSON=function(){return{mathjs:"Unit",value:this._denormalize(this.value),unit:this.units.length>0?this.formatUnits():null,fixPrefix:this.fixPrefix}},w.fromJSON=function(e){var t;const r=new w(e.value,null!==(t=e.unit)&&void 0!==t?t:void 0);return r.fixPrefix=e.fixPrefix||!1,r},w.prototype.valueOf=w.prototype.toString,w.prototype.simplify=function(){const e=this.clone(),t=[];let r;for(const t in L)if(Ae(L,t)&&e.hasBase(k[t])){r=t;break}if("NONE"===r)e.units=[];else{let n;if(r&&Ae(L,r)&&(n=L[r]),n)e.units=[{unit:n.unit,prefix:n.prefix,power:1}];else{let r=!1;for(let n=0;n<I.length;n++){const i=I[n];Math.abs(e.dimensions[n]||0)>1e-12&&(Ae(L,i)?t.push({unit:L[i].unit,prefix:L[i].prefix,power:e.dimensions[n]||0}):r=!0)}t.length<e.units.length&&!r&&(e.units=t)}}return e},w.prototype.toSI=function(){const e=this.clone(),t=[];for(let r=0;r<I.length;r++){const n=I[r];if(Math.abs(e.dimensions[r]||0)>1e-12){if(!Ae(U.si,n))throw new Error("Cannot express custom unit "+n+" in SI units");t.push({unit:U.si[n].unit,prefix:U.si[n].prefix,power:e.dimensions[r]||0})}}return e.units=t,e.fixPrefix=!0,e.skipAutomaticSimplification=!0,null!==this.value?(e.value=null,this.to(e)):e},w.prototype.formatUnits=function(){let e="",t="",r=0,n=0;for(let t=0;t<this.units.length;t++)this.units[t].power>0?(r++,e+=" "+this.units[t].prefix.name+this.units[t].unit.name,Math.abs(this.units[t].power-1)>1e-15&&(e+="^"+this.units[t].power)):this.units[t].power<0&&n++;if(n>0)for(let e=0;e<this.units.length;e++)this.units[e].power<0&&(r>0?(t+=" "+this.units[e].prefix.name+this.units[e].unit.name,Math.abs(this.units[e].power+1)>1e-15&&(t+="^"+-this.units[e].power)):(t+=" "+this.units[e].prefix.name+this.units[e].unit.name,t+="^"+this.units[e].power));e=e.substr(1),t=t.substr(1),r>1&&n>0&&(e="("+e+")"),n>1&&r>0&&(t="("+t+")");let i=e;return r>0&&n>0&&(i+=" / "),i+=t,i},w.prototype.format=function(e){const t=this.skipAutomaticSimplification||null===this.value?this.clone():this.simplify();let r=!1;void 0!==t.value&&null!==t.value&&a(t.value)&&(r=Math.abs(t.value.re)<1e-14);for(const e in t.units)Ae(t.units,e)&&t.units[e].unit&&("VA"===t.units[e].unit.name&&r?t.units[e].unit=R.VAR:"VAR"!==t.units[e].unit.name||r||(t.units[e].unit=R.VA));1!==t.units.length||t.fixPrefix||Math.abs(t.units[0].power-Math.round(t.units[0].power))<1e-14&&(t.units[0].prefix=t._bestPrefix());const n=t._denormalize(t.value);let i=null!==t.value?h(n,e||{}):"";const o=t.formatUnits();return t.value&&a(t.value)&&(i="("+i+")"),o.length>0&&i.length>0&&(i+=" "),i+=o,i},w.prototype._bestPrefix=function(){if(1!==this.units.length)throw new Error("Can only compute the best prefix for single units with integer powers, like kg, s^2, N^-1, and so forth!");if(Math.abs(this.units[0].power-Math.round(this.units[0].power))>=1e-14)throw new Error("Can only compute the best prefix for single units with integer powers, like kg, s^2, N^-1, and so forth!");const e=null!==this.value?l(this.value):0,t=l(this.units[0].unit.value);let r=this.units[0].prefix;if(0===e)return r;const n=this.units[0].power;let i=Math.log(e/Math.pow(r.value*t,n))/Math.LN10-1.2;if(i>-2.200001&&i<1.800001)return r;i=Math.abs(i);const o=this.units[0].unit.prefixes;for(const a in o)if(Ae(o,a)){const s=o[a];if(s.scientific){const o=Math.abs(Math.log(e/Math.pow(s.value*t,n))/Math.LN10-1.2);(o<i||o===i&&s.name.length<r.name.length)&&(r=s,i=o)}}return r},w.prototype.splitUnit=function(e){let t=this.clone();const r=[];for(let n=0;n<e.length&&(t=t.to(e[n]),n!==e.length-1);n++){const o=t.toNumeric(),a=p(o);let s;s=m(a,o)?a:f(t.toNumeric());const u=new w(s,e[n].toString());r.push(u),t=i(t,u)}let o=0;for(let e=0;e<r.length;e++)o=n(o,r[e].value);return m(o,this.value)&&(t.value=0),r.push(t),r};const z={NONE:{"":{name:"",value:1,scientific:!0}},SHORT:{"":{name:"",value:1,scientific:!0},da:{name:"da",value:10,scientific:!1},h:{name:"h",value:100,scientific:!1},k:{name:"k",value:1e3,scientific:!0},M:{name:"M",value:1e6,scientific:!0},G:{name:"G",value:1e9,scientific:!0},T:{name:"T",value:1e12,scientific:!0},P:{name:"P",value:1e15,scientific:!0},E:{name:"E",value:1e18,scientific:!0},Z:{name:"Z",value:1e21,scientific:!0},Y:{name:"Y",value:1e24,scientific:!0},R:{name:"R",value:1e27,scientific:!0},Q:{name:"Q",value:1e30,scientific:!0},d:{name:"d",value:.1,scientific:!1},c:{name:"c",value:.01,scientific:!1},m:{name:"m",value:.001,scientific:!0},u:{name:"u",value:1e-6,scientific:!0},n:{name:"n",value:1e-9,scientific:!0},p:{name:"p",value:1e-12,scientific:!0},f:{name:"f",value:1e-15,scientific:!0},a:{name:"a",value:1e-18,scientific:!0},z:{name:"z",value:1e-21,scientific:!0},y:{name:"y",value:1e-24,scientific:!0},r:{name:"r",value:1e-27,scientific:!0},q:{name:"q",value:1e-30,scientific:!0}},LONG:{"":{name:"",value:1,scientific:!0},deca:{name:"deca",value:10,scientific:!1},hecto:{name:"hecto",value:100,scientific:!1},kilo:{name:"kilo",value:1e3,scientific:!0},mega:{name:"mega",value:1e6,scientific:!0},giga:{name:"giga",value:1e9,scientific:!0},tera:{name:"tera",value:1e12,scientific:!0},peta:{name:"peta",value:1e15,scientific:!0},exa:{name:"exa",value:1e18,scientific:!0},zetta:{name:"zetta",value:1e21,scientific:!0},yotta:{name:"yotta",value:1e24,scientific:!0},ronna:{name:"ronna",value:1e27,scientific:!0},quetta:{name:"quetta",value:1e30,scientific:!0},deci:{name:"deci",value:.1,scientific:!1},centi:{name:"centi",value:.01,scientific:!1},milli:{name:"milli",value:.001,scientific:!0},micro:{name:"micro",value:1e-6,scientific:!0},nano:{name:"nano",value:1e-9,scientific:!0},pico:{name:"pico",value:1e-12,scientific:!0},femto:{name:"femto",value:1e-15,scientific:!0},atto:{name:"atto",value:1e-18,scientific:!0},zepto:{name:"zepto",value:1e-21,scientific:!0},yocto:{name:"yocto",value:1e-24,scientific:!0},ronto:{name:"ronto",value:1e-27,scientific:!0},quecto:{name:"quecto",value:1e-30,scientific:!0}},SQUARED:{"":{name:"",value:1,scientific:!0},da:{name:"da",value:100,scientific:!1},h:{name:"h",value:1e4,scientific:!1},k:{name:"k",value:1e6,scientific:!0},M:{name:"M",value:1e12,scientific:!0},G:{name:"G",value:1e18,scientific:!0},T:{name:"T",value:1e24,scientific:!0},P:{name:"P",value:1e30,scientific:!0},E:{name:"E",value:1e36,scientific:!0},Z:{name:"Z",value:1e42,scientific:!0},Y:{name:"Y",value:1e48,scientific:!0},R:{name:"R",value:1e54,scientific:!0},Q:{name:"Q",value:1e60,scientific:!0},d:{name:"d",value:.01,scientific:!1},c:{name:"c",value:1e-4,scientific:!1},m:{name:"m",value:1e-6,scientific:!0},u:{name:"u",value:1e-12,scientific:!0},n:{name:"n",value:1e-18,scientific:!0},p:{name:"p",value:1e-24,scientific:!0},f:{name:"f",value:1e-30,scientific:!0},a:{name:"a",value:1e-36,scientific:!0},z:{name:"z",value:1e-42,scientific:!0},y:{name:"y",value:1e-48,scientific:!0},r:{name:"r",value:1e-54,scientific:!0},q:{name:"q",value:1e-60,scientific:!0}},CUBIC:{"":{name:"",value:1,scientific:!0},da:{name:"da",value:1e3,scientific:!1},h:{name:"h",value:1e6,scientific:!1},k:{name:"k",value:1e9,scientific:!0},M:{name:"M",value:1e18,scientific:!0},G:{name:"G",value:1e27,scientific:!0},T:{name:"T",value:1e36,scientific:!0},P:{name:"P",value:1e45,scientific:!0},E:{name:"E",value:1e54,scientific:!0},Z:{name:"Z",value:1e63,scientific:!0},Y:{name:"Y",value:1e72,scientific:!0},R:{name:"R",value:1e81,scientific:!0},Q:{name:"Q",value:1e90,scientific:!0},d:{name:"d",value:.001,scientific:!1},c:{name:"c",value:1e-6,scientific:!1},m:{name:"m",value:1e-9,scientific:!0},u:{name:"u",value:1e-18,scientific:!0},n:{name:"n",value:1e-27,scientific:!0},p:{name:"p",value:1e-36,scientific:!0},f:{name:"f",value:1e-45,scientific:!0},a:{name:"a",value:1e-54,scientific:!0},z:{name:"z",value:1e-63,scientific:!0},y:{name:"y",value:1e-72,scientific:!0},r:{name:"r",value:1e-81,scientific:!0},q:{name:"q",value:1e-90,scientific:!0}},BINARY_SHORT_SI:{"":{name:"",value:1,scientific:!0},k:{name:"k",value:1e3,scientific:!0},M:{name:"M",value:1e6,scientific:!0},G:{name:"G",value:1e9,scientific:!0},T:{name:"T",value:1e12,scientific:!0},P:{name:"P",value:1e15,scientific:!0},E:{name:"E",value:1e18,scientific:!0},Z:{name:"Z",value:1e21,scientific:!0},Y:{name:"Y",value:1e24,scientific:!0}},BINARY_SHORT_IEC:{"":{name:"",value:1,scientific:!0},Ki:{name:"Ki",value:1024,scientific:!0},Mi:{name:"Mi",value:Math.pow(1024,2),scientific:!0},Gi:{name:"Gi",value:Math.pow(1024,3),scientific:!0},Ti:{name:"Ti",value:Math.pow(1024,4),scientific:!0},Pi:{name:"Pi",value:Math.pow(1024,5),scientific:!0},Ei:{name:"Ei",value:Math.pow(1024,6),scientific:!0},Zi:{name:"Zi",value:Math.pow(1024,7),scientific:!0},Yi:{name:"Yi",value:Math.pow(1024,8),scientific:!0}},BINARY_LONG_SI:{"":{name:"",value:1,scientific:!0},kilo:{name:"kilo",value:1e3,scientific:!0},mega:{name:"mega",value:1e6,scientific:!0},giga:{name:"giga",value:1e9,scientific:!0},tera:{name:"tera",value:1e12,scientific:!0},peta:{name:"peta",value:1e15,scientific:!0},exa:{name:"exa",value:1e18,scientific:!0},zetta:{name:"zetta",value:1e21,scientific:!0},yotta:{name:"yotta",value:1e24,scientific:!0}},BINARY_LONG_IEC:{"":{name:"",value:1,scientific:!0},kibi:{name:"kibi",value:1024,scientific:!0},mebi:{name:"mebi",value:Math.pow(1024,2),scientific:!0},gibi:{name:"gibi",value:Math.pow(1024,3),scientific:!0},tebi:{name:"tebi",value:Math.pow(1024,4),scientific:!0},pebi:{name:"pebi",value:Math.pow(1024,5),scientific:!0},exi:{name:"exi",value:Math.pow(1024,6),scientific:!0},zebi:{name:"zebi",value:Math.pow(1024,7),scientific:!0},yobi:{name:"yobi",value:Math.pow(1024,8),scientific:!0}},BTU:{"":{name:"",value:1,scientific:!0},MM:{name:"MM",value:1e6,scientific:!0}}};z.SHORTLONG=Vr({},z.SHORT,z.LONG),z.BINARY_SHORT=Vr({},z.BINARY_SHORT_SI,z.BINARY_SHORT_IEC),z.BINARY_LONG=Vr({},z.BINARY_LONG_SI,z.BINARY_LONG_IEC);const I=["MASS","LENGTH","TIME","CURRENT","TEMPERATURE","LUMINOUS_INTENSITY","AMOUNT_OF_SUBSTANCE","ANGLE","BIT"],k={NONE:{dimensions:[0,0,0,0,0,0,0,0,0]},MASS:{dimensions:[1,0,0,0,0,0,0,0,0]},LENGTH:{dimensions:[0,1,0,0,0,0,0,0,0]},TIME:{dimensions:[0,0,1,0,0,0,0,0,0]},CURRENT:{dimensions:[0,0,0,1,0,0,0,0,0]},TEMPERATURE:{dimensions:[0,0,0,0,1,0,0,0,0]},LUMINOUS_INTENSITY:{dimensions:[0,0,0,0,0,1,0,0,0]},AMOUNT_OF_SUBSTANCE:{dimensions:[0,0,0,0,0,0,1,0,0]},FORCE:{dimensions:[1,1,-2,0,0,0,0,0,0]},SURFACE:{dimensions:[0,2,0,0,0,0,0,0,0]},VOLUME:{dimensions:[0,3,0,0,0,0,0,0,0]},ENERGY:{dimensions:[1,2,-2,0,0,0,0,0,0]},POWER:{dimensions:[1,2,-3,0,0,0,0,0,0]},PRESSURE:{dimensions:[1,-1,-2,0,0,0,0,0,0]},ELECTRIC_CHARGE:{dimensions:[0,0,1,1,0,0,0,0,0]},ELECTRIC_CAPACITANCE:{dimensions:[-1,-2,4,2,0,0,0,0,0]},ELECTRIC_POTENTIAL:{dimensions:[1,2,-3,-1,0,0,0,0,0]},ELECTRIC_RESISTANCE:{dimensions:[1,2,-3,-2,0,0,0,0,0]},ELECTRIC_INDUCTANCE:{dimensions:[1,2,-2,-2,0,0,0,0,0]},ELECTRIC_CONDUCTANCE:{dimensions:[-1,-2,3,2,0,0,0,0,0]},MAGNETIC_FLUX:{dimensions:[1,2,-2,-1,0,0,0,0,0]},MAGNETIC_FLUX_DENSITY:{dimensions:[1,0,-2,-1,0,0,0,0,0]},FREQUENCY:{dimensions:[0,0,-1,0,0,0,0,0,0]},ANGLE:{dimensions:[0,0,0,0,0,0,0,1,0]},BIT:{dimensions:[0,0,0,0,0,0,0,0,1]}};for(const e in k)Ae(k,e)&&(k[e].key=e);const q={name:"",base:{},value:1,offset:0,dimensions:I.map((e=>0))},R={meter:{name:"meter",base:k.LENGTH,prefixes:z.LONG,value:1,offset:0},inch:{name:"inch",base:k.LENGTH,prefixes:z.NONE,value:.0254,offset:0},foot:{name:"foot",base:k.LENGTH,prefixes:z.NONE,value:.3048,offset:0},yard:{name:"yard",base:k.LENGTH,prefixes:z.NONE,value:.9144,offset:0},mile:{name:"mile",base:k.LENGTH,prefixes:z.NONE,value:1609.344,offset:0},link:{name:"link",base:k.LENGTH,prefixes:z.NONE,value:.201168,offset:0},rod:{name:"rod",base:k.LENGTH,prefixes:z.NONE,value:5.0292,offset:0},chain:{name:"chain",base:k.LENGTH,prefixes:z.NONE,value:20.1168,offset:0},angstrom:{name:"angstrom",base:k.LENGTH,prefixes:z.NONE,value:1e-10,offset:0},m:{name:"m",base:k.LENGTH,prefixes:z.SHORT,value:1,offset:0},in:{name:"in",base:k.LENGTH,prefixes:z.NONE,value:.0254,offset:0},ft:{name:"ft",base:k.LENGTH,prefixes:z.NONE,value:.3048,offset:0},yd:{name:"yd",base:k.LENGTH,prefixes:z.NONE,value:.9144,offset:0},mi:{name:"mi",base:k.LENGTH,prefixes:z.NONE,value:1609.344,offset:0},li:{name:"li",base:k.LENGTH,prefixes:z.NONE,value:.201168,offset:0},rd:{name:"rd",base:k.LENGTH,prefixes:z.NONE,value:5.02921,offset:0},ch:{name:"ch",base:k.LENGTH,prefixes:z.NONE,value:20.1168,offset:0},mil:{name:"mil",base:k.LENGTH,prefixes:z.NONE,value:254e-7,offset:0},m2:{name:"m2",base:k.SURFACE,prefixes:z.SQUARED,value:1,offset:0},sqin:{name:"sqin",base:k.SURFACE,prefixes:z.NONE,value:64516e-8,offset:0},sqft:{name:"sqft",base:k.SURFACE,prefixes:z.NONE,value:.09290304,offset:0},sqyd:{name:"sqyd",base:k.SURFACE,prefixes:z.NONE,value:.83612736,offset:0},sqmi:{name:"sqmi",base:k.SURFACE,prefixes:z.NONE,value:2589988.110336,offset:0},sqrd:{name:"sqrd",base:k.SURFACE,prefixes:z.NONE,value:25.29295,offset:0},sqch:{name:"sqch",base:k.SURFACE,prefixes:z.NONE,value:404.6873,offset:0},sqmil:{name:"sqmil",base:k.SURFACE,prefixes:z.NONE,value:6.4516e-10,offset:0},acre:{name:"acre",base:k.SURFACE,prefixes:z.NONE,value:4046.86,offset:0},hectare:{name:"hectare",base:k.SURFACE,prefixes:z.NONE,value:1e4,offset:0},m3:{name:"m3",base:k.VOLUME,prefixes:z.CUBIC,value:1,offset:0},L:{name:"L",base:k.VOLUME,prefixes:z.SHORT,value:.001,offset:0},l:{name:"l",base:k.VOLUME,prefixes:z.SHORT,value:.001,offset:0},litre:{name:"litre",base:k.VOLUME,prefixes:z.LONG,value:.001,offset:0},cuin:{name:"cuin",base:k.VOLUME,prefixes:z.NONE,value:16387064e-12,offset:0},cuft:{name:"cuft",base:k.VOLUME,prefixes:z.NONE,value:.028316846592,offset:0},cuyd:{name:"cuyd",base:k.VOLUME,prefixes:z.NONE,value:.764554857984,offset:0},teaspoon:{name:"teaspoon",base:k.VOLUME,prefixes:z.NONE,value:5e-6,offset:0},tablespoon:{name:"tablespoon",base:k.VOLUME,prefixes:z.NONE,value:15e-6,offset:0},drop:{name:"drop",base:k.VOLUME,prefixes:z.NONE,value:5e-8,offset:0},gtt:{name:"gtt",base:k.VOLUME,prefixes:z.NONE,value:5e-8,offset:0},minim:{name:"minim",base:k.VOLUME,prefixes:z.NONE,value:6.1611519921875e-8,offset:0},fluiddram:{name:"fluiddram",base:k.VOLUME,prefixes:z.NONE,value:36966911953125e-19,offset:0},fluidounce:{name:"fluidounce",base:k.VOLUME,prefixes:z.NONE,value:295735295625e-16,offset:0},gill:{name:"gill",base:k.VOLUME,prefixes:z.NONE,value:.00011829411825,offset:0},cc:{name:"cc",base:k.VOLUME,prefixes:z.NONE,value:1e-6,offset:0},cup:{name:"cup",base:k.VOLUME,prefixes:z.NONE,value:.0002365882365,offset:0},pint:{name:"pint",base:k.VOLUME,prefixes:z.NONE,value:.000473176473,offset:0},quart:{name:"quart",base:k.VOLUME,prefixes:z.NONE,value:.000946352946,offset:0},gallon:{name:"gallon",base:k.VOLUME,prefixes:z.NONE,value:.003785411784,offset:0},beerbarrel:{name:"beerbarrel",base:k.VOLUME,prefixes:z.NONE,value:.117347765304,offset:0},oilbarrel:{name:"oilbarrel",base:k.VOLUME,prefixes:z.NONE,value:.158987294928,offset:0},hogshead:{name:"hogshead",base:k.VOLUME,prefixes:z.NONE,value:.238480942392,offset:0},g:{name:"g",base:k.MASS,prefixes:z.SHORT,value:.001,offset:0},gram:{name:"gram",base:k.MASS,prefixes:z.LONG,value:.001,offset:0},ton:{name:"ton",base:k.MASS,prefixes:z.SHORT,value:907.18474,offset:0},t:{name:"t",base:k.MASS,prefixes:z.SHORT,value:1e3,offset:0},tonne:{name:"tonne",base:k.MASS,prefixes:z.LONG,value:1e3,offset:0},grain:{name:"grain",base:k.MASS,prefixes:z.NONE,value:6479891e-11,offset:0},dram:{name:"dram",base:k.MASS,prefixes:z.NONE,value:.0017718451953125,offset:0},ounce:{name:"ounce",base:k.MASS,prefixes:z.NONE,value:.028349523125,offset:0},poundmass:{name:"poundmass",base:k.MASS,prefixes:z.NONE,value:.45359237,offset:0},hundredweight:{name:"hundredweight",base:k.MASS,prefixes:z.NONE,value:45.359237,offset:0},stick:{name:"stick",base:k.MASS,prefixes:z.NONE,value:.115,offset:0},stone:{name:"stone",base:k.MASS,prefixes:z.NONE,value:6.35029318,offset:0},gr:{name:"gr",base:k.MASS,prefixes:z.NONE,value:6479891e-11,offset:0},dr:{name:"dr",base:k.MASS,prefixes:z.NONE,value:.0017718451953125,offset:0},oz:{name:"oz",base:k.MASS,prefixes:z.NONE,value:.028349523125,offset:0},lbm:{name:"lbm",base:k.MASS,prefixes:z.NONE,value:.45359237,offset:0},cwt:{name:"cwt",base:k.MASS,prefixes:z.NONE,value:45.359237,offset:0},s:{name:"s",base:k.TIME,prefixes:z.SHORT,value:1,offset:0},min:{name:"min",base:k.TIME,prefixes:z.NONE,value:60,offset:0},h:{name:"h",base:k.TIME,prefixes:z.NONE,value:3600,offset:0},second:{name:"second",base:k.TIME,prefixes:z.LONG,value:1,offset:0},sec:{name:"sec",base:k.TIME,prefixes:z.LONG,value:1,offset:0},minute:{name:"minute",base:k.TIME,prefixes:z.NONE,value:60,offset:0},hour:{name:"hour",base:k.TIME,prefixes:z.NONE,value:3600,offset:0},day:{name:"day",base:k.TIME,prefixes:z.NONE,value:86400,offset:0},week:{name:"week",base:k.TIME,prefixes:z.NONE,value:604800,offset:0},month:{name:"month",base:k.TIME,prefixes:z.NONE,value:2629800,offset:0},year:{name:"year",base:k.TIME,prefixes:z.NONE,value:31557600,offset:0},decade:{name:"decade",base:k.TIME,prefixes:z.NONE,value:315576e3,offset:0},century:{name:"century",base:k.TIME,prefixes:z.NONE,value:315576e4,offset:0},millennium:{name:"millennium",base:k.TIME,prefixes:z.NONE,value:315576e5,offset:0},hertz:{name:"Hertz",base:k.FREQUENCY,prefixes:z.LONG,value:1,offset:0,reciprocal:!0},Hz:{name:"Hz",base:k.FREQUENCY,prefixes:z.SHORT,value:1,offset:0,reciprocal:!0},rad:{name:"rad",base:k.ANGLE,prefixes:z.SHORT,value:1,offset:0},radian:{name:"radian",base:k.ANGLE,prefixes:z.LONG,value:1,offset:0},deg:{name:"deg",base:k.ANGLE,prefixes:z.SHORT,value:null,offset:0},degree:{name:"degree",base:k.ANGLE,prefixes:z.LONG,value:null,offset:0},grad:{name:"grad",base:k.ANGLE,prefixes:z.SHORT,value:null,offset:0},gradian:{name:"gradian",base:k.ANGLE,prefixes:z.LONG,value:null,offset:0},cycle:{name:"cycle",base:k.ANGLE,prefixes:z.NONE,value:null,offset:0},arcsec:{name:"arcsec",base:k.ANGLE,prefixes:z.NONE,value:null,offset:0},arcmin:{name:"arcmin",base:k.ANGLE,prefixes:z.NONE,value:null,offset:0},A:{name:"A",base:k.CURRENT,prefixes:z.SHORT,value:1,offset:0},ampere:{name:"ampere",base:k.CURRENT,prefixes:z.LONG,value:1,offset:0},K:{name:"K",base:k.TEMPERATURE,prefixes:z.SHORT,value:1,offset:0},degC:{name:"degC",base:k.TEMPERATURE,prefixes:z.SHORT,value:1,offset:273.15},degF:{name:"degF",base:k.TEMPERATURE,prefixes:z.SHORT,value:new b(5,9),offset:459.67},degR:{name:"degR",base:k.TEMPERATURE,prefixes:z.SHORT,value:new b(5,9),offset:0},kelvin:{name:"kelvin",base:k.TEMPERATURE,prefixes:z.LONG,value:1,offset:0},celsius:{name:"celsius",base:k.TEMPERATURE,prefixes:z.LONG,value:1,offset:273.15},fahrenheit:{name:"fahrenheit",base:k.TEMPERATURE,prefixes:z.LONG,value:new b(5,9),offset:459.67},rankine:{name:"rankine",base:k.TEMPERATURE,prefixes:z.LONG,value:new b(5,9),offset:0},mol:{name:"mol",base:k.AMOUNT_OF_SUBSTANCE,prefixes:z.SHORT,value:1,offset:0},mole:{name:"mole",base:k.AMOUNT_OF_SUBSTANCE,prefixes:z.LONG,value:1,offset:0},cd:{name:"cd",base:k.LUMINOUS_INTENSITY,prefixes:z.SHORT,value:1,offset:0},candela:{name:"candela",base:k.LUMINOUS_INTENSITY,prefixes:z.LONG,value:1,offset:0},N:{name:"N",base:k.FORCE,prefixes:z.SHORT,value:1,offset:0},newton:{name:"newton",base:k.FORCE,prefixes:z.LONG,value:1,offset:0},dyn:{name:"dyn",base:k.FORCE,prefixes:z.SHORT,value:1e-5,offset:0},dyne:{name:"dyne",base:k.FORCE,prefixes:z.LONG,value:1e-5,offset:0},lbf:{name:"lbf",base:k.FORCE,prefixes:z.NONE,value:4.4482216152605,offset:0},poundforce:{name:"poundforce",base:k.FORCE,prefixes:z.NONE,value:4.4482216152605,offset:0},kip:{name:"kip",base:k.FORCE,prefixes:z.LONG,value:4448.2216,offset:0},kilogramforce:{name:"kilogramforce",base:k.FORCE,prefixes:z.NONE,value:9.80665,offset:0},J:{name:"J",base:k.ENERGY,prefixes:z.SHORT,value:1,offset:0},joule:{name:"joule",base:k.ENERGY,prefixes:z.LONG,value:1,offset:0},erg:{name:"erg",base:k.ENERGY,prefixes:z.SHORTLONG,value:1e-7,offset:0},Wh:{name:"Wh",base:k.ENERGY,prefixes:z.SHORT,value:3600,offset:0},BTU:{name:"BTU",base:k.ENERGY,prefixes:z.BTU,value:1055.05585262,offset:0},eV:{name:"eV",base:k.ENERGY,prefixes:z.SHORT,value:1602176565e-28,offset:0},electronvolt:{name:"electronvolt",base:k.ENERGY,prefixes:z.LONG,value:1602176565e-28,offset:0},W:{name:"W",base:k.POWER,prefixes:z.SHORT,value:1,offset:0},watt:{name:"watt",base:k.POWER,prefixes:z.LONG,value:1,offset:0},hp:{name:"hp",base:k.POWER,prefixes:z.NONE,value:745.6998715386,offset:0},VAR:{name:"VAR",base:k.POWER,prefixes:z.SHORT,value:y.I,offset:0},VA:{name:"VA",base:k.POWER,prefixes:z.SHORT,value:1,offset:0},Pa:{name:"Pa",base:k.PRESSURE,prefixes:z.SHORT,value:1,offset:0},psi:{name:"psi",base:k.PRESSURE,prefixes:z.NONE,value:6894.75729276459,offset:0},atm:{name:"atm",base:k.PRESSURE,prefixes:z.NONE,value:101325,offset:0},bar:{name:"bar",base:k.PRESSURE,prefixes:z.SHORTLONG,value:1e5,offset:0},torr:{name:"torr",base:k.PRESSURE,prefixes:z.NONE,value:133.322,offset:0},mmHg:{name:"mmHg",base:k.PRESSURE,prefixes:z.NONE,value:133.322,offset:0},mmH2O:{name:"mmH2O",base:k.PRESSURE,prefixes:z.NONE,value:9.80665,offset:0},cmH2O:{name:"cmH2O",base:k.PRESSURE,prefixes:z.NONE,value:98.0665,offset:0},coulomb:{name:"coulomb",base:k.ELECTRIC_CHARGE,prefixes:z.LONG,value:1,offset:0},C:{name:"C",base:k.ELECTRIC_CHARGE,prefixes:z.SHORT,value:1,offset:0},farad:{name:"farad",base:k.ELECTRIC_CAPACITANCE,prefixes:z.LONG,value:1,offset:0},F:{name:"F",base:k.ELECTRIC_CAPACITANCE,prefixes:z.SHORT,value:1,offset:0},volt:{name:"volt",base:k.ELECTRIC_POTENTIAL,prefixes:z.LONG,value:1,offset:0},V:{name:"V",base:k.ELECTRIC_POTENTIAL,prefixes:z.SHORT,value:1,offset:0},ohm:{name:"ohm",base:k.ELECTRIC_RESISTANCE,prefixes:z.SHORTLONG,value:1,offset:0},henry:{name:"henry",base:k.ELECTRIC_INDUCTANCE,prefixes:z.LONG,value:1,offset:0},H:{name:"H",base:k.ELECTRIC_INDUCTANCE,prefixes:z.SHORT,value:1,offset:0},siemens:{name:"siemens",base:k.ELECTRIC_CONDUCTANCE,prefixes:z.LONG,value:1,offset:0},S:{name:"S",base:k.ELECTRIC_CONDUCTANCE,prefixes:z.SHORT,value:1,offset:0},weber:{name:"weber",base:k.MAGNETIC_FLUX,prefixes:z.LONG,value:1,offset:0},Wb:{name:"Wb",base:k.MAGNETIC_FLUX,prefixes:z.SHORT,value:1,offset:0},tesla:{name:"tesla",base:k.MAGNETIC_FLUX_DENSITY,prefixes:z.LONG,value:1,offset:0},T:{name:"T",base:k.MAGNETIC_FLUX_DENSITY,prefixes:z.SHORT,value:1,offset:0},b:{name:"b",base:k.BIT,prefixes:z.BINARY_SHORT,value:1,offset:0},bits:{name:"bits",base:k.BIT,prefixes:z.BINARY_LONG,value:1,offset:0},B:{name:"B",base:k.BIT,prefixes:z.BINARY_SHORT,value:8,offset:0},bytes:{name:"bytes",base:k.BIT,prefixes:z.BINARY_LONG,value:8,offset:0}},P={meters:"meter",inches:"inch",feet:"foot",yards:"yard",miles:"mile",links:"link",rods:"rod",chains:"chain",angstroms:"angstrom",lt:"l",litres:"litre",liter:"litre",liters:"litre",teaspoons:"teaspoon",tablespoons:"tablespoon",minims:"minim",fldr:"fluiddram",fluiddrams:"fluiddram",floz:"fluidounce",fluidounces:"fluidounce",gi:"gill",gills:"gill",cp:"cup",cups:"cup",pt:"pint",pints:"pint",qt:"quart",quarts:"quart",gal:"gallon",gallons:"gallon",bbl:"beerbarrel",beerbarrels:"beerbarrel",obl:"oilbarrel",oilbarrels:"oilbarrel",hogsheads:"hogshead",gtts:"gtt",grams:"gram",tons:"ton",tonnes:"tonne",grains:"grain",drams:"dram",ounces:"ounce",poundmasses:"poundmass",hundredweights:"hundredweight",sticks:"stick",lb:"lbm",lbs:"lbm",kips:"kip",kgf:"kilogramforce",acres:"acre",hectares:"hectare",sqfeet:"sqft",sqyard:"sqyd",sqmile:"sqmi",sqmiles:"sqmi",mmhg:"mmHg",mmh2o:"mmH2O",cmh2o:"cmH2O",seconds:"second",secs:"second",minutes:"minute",mins:"minute",hours:"hour",hr:"hour",hrs:"hour",days:"day",weeks:"week",months:"month",years:"year",decades:"decade",centuries:"century",millennia:"millennium",hertz:"hertz",radians:"radian",degrees:"degree",gradians:"gradian",cycles:"cycle",arcsecond:"arcsec",arcseconds:"arcsec",arcminute:"arcmin",arcminutes:"arcmin",BTUs:"BTU",watts:"watt",joules:"joule",amperes:"ampere",amps:"ampere",amp:"ampere",coulombs:"coulomb",volts:"volt",ohms:"ohm",farads:"farad",webers:"weber",teslas:"tesla",electronvolts:"electronvolt",moles:"mole",bit:"bits",byte:"bytes"};function j(e){if("BigNumber"===e.number){const e=dl(x);R.rad.value=new x(1),R.deg.value=e.div(180),R.grad.value=e.div(200),R.cycle.value=e.times(2),R.arcsec.value=e.div(648e3),R.arcmin.value=e.div(10800)}else R.rad.value=1,R.deg.value=Math.PI/180,R.grad.value=Math.PI/200,R.cycle.value=2*Math.PI,R.arcsec.value=Math.PI/648e3,R.arcmin.value=Math.PI/10800;R.radian.value=R.rad.value,R.degree.value=R.deg.value,R.gradian.value=R.grad.value}j(r),t&&t("config",(function(e,t){e.number!==t.number&&j(e)}));const U={si:{NONE:{unit:q,prefix:z.NONE[""]},LENGTH:{unit:R.m,prefix:z.SHORT[""]},MASS:{unit:R.g,prefix:z.SHORT.k},TIME:{unit:R.s,prefix:z.SHORT[""]},CURRENT:{unit:R.A,prefix:z.SHORT[""]},TEMPERATURE:{unit:R.K,prefix:z.SHORT[""]},LUMINOUS_INTENSITY:{unit:R.cd,prefix:z.SHORT[""]},AMOUNT_OF_SUBSTANCE:{unit:R.mol,prefix:z.SHORT[""]},ANGLE:{unit:R.rad,prefix:z.SHORT[""]},BIT:{unit:R.bits,prefix:z.SHORT[""]},FORCE:{unit:R.N,prefix:z.SHORT[""]},ENERGY:{unit:R.J,prefix:z.SHORT[""]},POWER:{unit:R.W,prefix:z.SHORT[""]},PRESSURE:{unit:R.Pa,prefix:z.SHORT[""]},ELECTRIC_CHARGE:{unit:R.C,prefix:z.SHORT[""]},ELECTRIC_CAPACITANCE:{unit:R.F,prefix:z.SHORT[""]},ELECTRIC_POTENTIAL:{unit:R.V,prefix:z.SHORT[""]},ELECTRIC_RESISTANCE:{unit:R.ohm,prefix:z.SHORT[""]},ELECTRIC_INDUCTANCE:{unit:R.H,prefix:z.SHORT[""]},ELECTRIC_CONDUCTANCE:{unit:R.S,prefix:z.SHORT[""]},MAGNETIC_FLUX:{unit:R.Wb,prefix:z.SHORT[""]},MAGNETIC_FLUX_DENSITY:{unit:R.T,prefix:z.SHORT[""]},FREQUENCY:{unit:R.Hz,prefix:z.SHORT[""]}}};U.cgs=JSON.parse(JSON.stringify(U.si)),U.cgs.LENGTH={unit:R.m,prefix:z.SHORT.c},U.cgs.MASS={unit:R.g,prefix:z.SHORT[""]},U.cgs.FORCE={unit:R.dyn,prefix:z.SHORT[""]},U.cgs.ENERGY={unit:R.erg,prefix:z.NONE[""]},U.us=JSON.parse(JSON.stringify(U.si)),U.us.LENGTH={unit:R.ft,prefix:z.NONE[""]},U.us.MASS={unit:R.lbm,prefix:z.NONE[""]},U.us.TEMPERATURE={unit:R.degF,prefix:z.NONE[""]},U.us.FORCE={unit:R.lbf,prefix:z.NONE[""]},U.us.ENERGY={unit:R.BTU,prefix:z.BTU[""]},U.us.POWER={unit:R.hp,prefix:z.NONE[""]},U.us.PRESSURE={unit:R.psi,prefix:z.NONE[""]},U.auto=JSON.parse(JSON.stringify(U.si));let L=U.auto;w.setUnitSystem=function(e){if(!Ae(U,e))throw new Error("Unit system "+e+" does not exist. Choices are: "+Object.keys(U).join(", "));L=U[e]},w.getUnitSystem=function(){for(const e in U)if(Ae(U,e)&&U[e]===L)return e},w.typeConverters={BigNumber:function(e){return null!=e&&e.isFraction?new x(e.n).div(e.d).times(e.s):new x(e+"")},Fraction:function(e){return new b(e)},Complex:function(e){return e},number:function(e){return null!=e&&e.isFraction?g(e):e}},w.prototype._numberConverter=function(){const e=w.typeConverters[this.valueType()];if(e)return e;throw new TypeError('Unsupported Unit value type "'+this.valueType()+'"')},w._getNumberConverter=function(e){if(!w.typeConverters[e])throw new TypeError('Unsupported type "'+e+'"');return w.typeConverters[e]};for(const e in R)if(Ae(R,e)){const t=R[e];t.dimensions=t.base.dimensions}for(const e in P)if(Ae(P,e)){const t=R[P[e]],r={};for(const e in t)Ae(t,e)&&(r[e]=t[e]);r.name=e,R[e]=r}return w.isValidAlpha=function(e){return/^[a-zA-Z]$/.test(e)},w.createUnit=function(e,t){if("object"!=typeof e)throw new TypeError("createUnit expects first parameter to be of type 'Object'");if(t&&t.override)for(const t in e)if(Ae(e,t)&&w.deleteUnit(t),e[t].aliases)for(let r=0;r<e[t].aliases.length;r++)w.deleteUnit(e[t].aliases[r]);let r;for(const t in e)Ae(e,t)&&(r=w.createUnitSingle(t,e[t]));return r},w.createUnitSingle=function(e,t){if(null==t&&(t={}),"string"!=typeof e)throw new TypeError("createUnitSingle expects first parameter to be of type 'string'");if(Ae(R,e))throw new Error('Cannot create unit "'+e+'": a unit with that name already exists');!function(e){for(let t=0;t<e.length;t++){if(A=e.charAt(t),0===t&&!w.isValidAlpha(A))throw new Error('Invalid unit name (must begin with alpha character): "'+e+'"');if(t>0&&!w.isValidAlpha(A)&&!M(A))throw new Error('Invalid unit name (only alphanumeric characters are allowed): "'+e+'"')}}(e);let r,n,i,o=null,a=[],s=0;if(t&&"Unit"===t.type)o=t.clone();else if("string"==typeof t)""!==t&&(r=t);else{if("object"!=typeof t)throw new TypeError('Cannot create unit "'+e+'" from "'+t.toString()+'": expecting "string" or "Unit" or "Object"');r=t.definition,n=t.prefixes,s=t.offset,i=t.baseName,t.aliases&&(a=t.aliases.valueOf())}if(a)for(let e=0;e<a.length;e++)if(Ae(R,a[e]))throw new Error('Cannot create alias "'+a[e]+'": a unit with that name already exists');if(r&&"string"==typeof r&&!o)try{o=w.parse(r,{allowNoUnits:!0})}catch(t){throw t.message='Could not create unit "'+e+'" from "'+r+'": '+t.message,t}else r&&"Unit"===r.type&&(o=r.clone());a=a||[],s=s||0,n=n&&n.toUpperCase&&z[n.toUpperCase()]||z.NONE;let u={};if(o){u={name:e,value:o.value,dimensions:o.dimensions.slice(0),prefixes:n,offset:s};let t=!1;for(const e in k)if(Ae(k,e)){let r=!0;for(let t=0;t<I.length;t++)if(Math.abs((u.dimensions[t]||0)-(k[e].dimensions[t]||0))>1e-12){r=!1;break}if(r){t=!0,u.base=k[e];break}}if(!t){i=i||e+"_STUFF";const t={dimensions:o.dimensions.slice(0)};t.key=i,k[i]=t,L[i]={unit:u,prefix:z.NONE[""]},u.base=k[i]}}else{if(i=i||e+"_STUFF",I.indexOf(i)>=0)throw new Error('Cannot create new base unit "'+e+'": a base unit with that name already exists (and cannot be overridden)');I.push(i);for(const e in k)Ae(k,e)&&(k[e].dimensions[I.length-1]=0);const t={dimensions:[]};for(let e=0;e<I.length;e++)t.dimensions[e]=0;t.dimensions[I.length-1]=1,t.key=i,k[i]=t,u={name:e,value:1,dimensions:k[i].dimensions.slice(0),prefixes:n,offset:s,base:k[i]},L[i]={unit:u,prefix:z.NONE[""]}}w.UNITS[e]=u;for(let e=0;e<a.length;e++){const t=a[e],r={};for(const e in u)Ae(u,e)&&(r[e]=u[e]);r.name=t,w.UNITS[t]=r}return delete O.cache,new w(null,e)},w.deleteUnit=function(e){delete w.UNITS[e],delete O.cache},w.PREFIXES=z,w.BASE_DIMENSIONS=I,w.BASE_UNITS=k,w.UNIT_SYSTEMS=U,w.UNITS=R,w}),{isClass:!0}),xl="unit",bl=Se(xl,["typed","Unit"],(e=>{let{typed:t,Unit:r}=e;return t(xl,{Unit:function(e){return e.clone()},string:function(e){return r.isValuelessUnit(e)?new r(null,e):r.parse(e,{allowNoUnits:!0})},"number | BigNumber | Fraction | Complex, string | Unit":function(e,t){return new r(e,t)},"number | BigNumber | Fraction":function(e){return new r(e)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),vl="sparse",wl=Se(vl,["typed","SparseMatrix"],(e=>{let{typed:t,SparseMatrix:r}=e;return t(vl,{"":function(){return new r([])},string:function(e){return new r([],e)},"Array | Matrix":function(e){return new r(e)},"Array | Matrix, string":function(e,t){return new r(e,t)}})})),Nl="createUnit",El=Se(Nl,["typed","Unit"],(e=>{let{typed:t,Unit:r}=e;return t(Nl,{"Object, Object":function(e,t){return r.createUnit(e,t)},Object:function(e){return r.createUnit(e,{})},"string, Unit | string | Object, Object":function(e,t,n){const i={};return i[e]=t,r.createUnit(i,n)},"string, Unit | string | Object":function(e,t){const n={};return n[e]=t,r.createUnit(n,{})},string:function(e){const t={};return t[e]={},r.createUnit(t,{})}})})),Al="acos",Sl=Se(Al,["typed","config","Complex"],(e=>{let{typed:t,config:r,Complex:n}=e;return t(Al,{number:function(e){return e>=-1&&e<=1||r.predictable?Math.acos(e):new n(e,0).acos()},Complex:function(e){return e.acos()},BigNumber:function(e){return e.acos()}})})),Ml="number";function Cl(e){return ce(e)}function Tl(e){return Math.atan(1/e)}function Dl(e){return isFinite(e)?(Math.log((e+1)/e)+Math.log(e/(e-1)))/2:0}function Fl(e){return Math.asin(1/e)}function Bl(e){const t=1/e;return Math.log(t+Math.sqrt(t*t+1))}function Ol(e){return Math.acos(1/e)}function _l(e){const t=1/e,r=Math.sqrt(t*t-1);return Math.log(r+t)}function zl(e){return le(e)}function Il(e){return fe(e)}function kl(e){return 1/Math.tan(e)}function ql(e){const t=Math.exp(2*e);return(t+1)/(t-1)}function Rl(e){return 1/Math.sin(e)}function Pl(e){return 0===e?Number.POSITIVE_INFINITY:Math.abs(2/(Math.exp(e)-Math.exp(-e)))*W(e)}function jl(e){return 1/Math.cos(e)}function Ul(e){return 2/(Math.exp(e)+Math.exp(-e))}function Ll(e){return me(e)}Cl.signature=Ml,Tl.signature=Ml,Dl.signature=Ml,Fl.signature=Ml,Bl.signature=Ml,Ol.signature=Ml,_l.signature=Ml,zl.signature=Ml,Il.signature=Ml,kl.signature=Ml,ql.signature=Ml,Rl.signature=Ml,Pl.signature=Ml,jl.signature=Ml,Ul.signature=Ml,Ll.signature=Ml;const $l="acosh",Hl=Se($l,["typed","config","Complex"],(e=>{let{typed:t,config:r,Complex:n}=e;return t($l,{number:function(e){return e>=1||r.predictable?Cl(e):e<=-1?new n(Math.log(Math.sqrt(e*e-1)-e),Math.PI):new n(e,0).acosh()},Complex:function(e){return e.acosh()},BigNumber:function(e){return e.acosh()}})})),Gl="acot",Zl=Se(Gl,["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t(Gl,{number:Tl,Complex:function(e){return e.acot()},BigNumber:function(e){return new r(1).div(e).atan()}})})),Vl="acoth",Wl=Se(Vl,["typed","config","Complex","BigNumber"],(e=>{let{typed:t,config:r,Complex:n,BigNumber:i}=e;return t(Vl,{number:function(e){return e>=1||e<=-1||r.predictable?Dl(e):new n(e,0).acoth()},Complex:function(e){return e.acoth()},BigNumber:function(e){return new i(1).div(e).atanh()}})})),Yl="acsc",Jl=Se(Yl,["typed","config","Complex","BigNumber"],(e=>{let{typed:t,config:r,Complex:n,BigNumber:i}=e;return t(Yl,{number:function(e){return e<=-1||e>=1||r.predictable?Fl(e):new n(e,0).acsc()},Complex:function(e){return e.acsc()},BigNumber:function(e){return new i(1).div(e).asin()}})})),Xl="acsch",Ql=Se(Xl,["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t(Xl,{number:Bl,Complex:function(e){return e.acsch()},BigNumber:function(e){return new r(1).div(e).asinh()}})})),Kl="asec",ef=Se(Kl,["typed","config","Complex","BigNumber"],(e=>{let{typed:t,config:r,Complex:n,BigNumber:i}=e;return t(Kl,{number:function(e){return e<=-1||e>=1||r.predictable?Ol(e):new n(e,0).asec()},Complex:function(e){return e.asec()},BigNumber:function(e){return new i(1).div(e).acos()}})})),tf="asech",rf=Se(tf,["typed","config","Complex","BigNumber"],(e=>{let{typed:t,config:r,Complex:n,BigNumber:i}=e;return t(tf,{number:function(e){if(e<=1&&e>=-1||r.predictable){const t=1/e;if(t>0||r.predictable)return _l(e);const i=Math.sqrt(t*t-1);return new n(Math.log(i-t),Math.PI)}return new n(e,0).asech()},Complex:function(e){return e.asech()},BigNumber:function(e){return new i(1).div(e).acosh()}})})),nf="asin",of=Se(nf,["typed","config","Complex"],(e=>{let{typed:t,config:r,Complex:n}=e;return t(nf,{number:function(e){return e>=-1&&e<=1||r.predictable?Math.asin(e):new n(e,0).asin()},Complex:function(e){return e.asin()},BigNumber:function(e){return e.asin()}})})),af=Se("asinh",["typed"],(e=>{let{typed:t}=e;return t("asinh",{number:zl,Complex:function(e){return e.asinh()},BigNumber:function(e){return e.asinh()}})})),sf=Se("atan",["typed"],(e=>{let{typed:t}=e;return t("atan",{number:function(e){return Math.atan(e)},Complex:function(e){return e.atan()},BigNumber:function(e){return e.atan()}})})),uf="atan2",cf=Se(uf,["typed","matrix","equalScalar","BigNumber","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,BigNumber:i,DenseMatrix:o,concat:a}=e;const s=Uo({typed:t,equalScalar:n}),u=Lo({typed:t}),c=Aa({typed:t,equalScalar:n}),l=wo({typed:t,equalScalar:n}),f=No({typed:t,DenseMatrix:o}),p=Zo({typed:t,matrix:r,concat:a});return t(uf,{"number, number":Math.atan2,"BigNumber, BigNumber":(e,t)=>i.atan2(e,t)},p({scalar:"number | BigNumber",SS:c,DS:u,SD:s,Ss:l,sS:f}))})),lf="atanh",ff=Se(lf,["typed","config","Complex"],(e=>{let{typed:t,config:r,Complex:n}=e;return t(lf,{number:function(e){return e<=1&&e>=-1||r.predictable?Il(e):new n(e,0).atanh()},Complex:function(e){return e.atanh()},BigNumber:function(e){return e.atanh()}})})),pf=Se("trigUnit",["typed"],(e=>{let{typed:t}=e;return{Unit:t.referToSelf((e=>r=>{if(!r.hasBase(r.constructor.BASE_UNITS.ANGLE))throw new TypeError("Unit in function cot is no angle");return t.find(e,r.valueType())(r.value)}))}})),mf=Se("cos",["typed"],(e=>{let{typed:t}=e;const r=pf({typed:t});return t("cos",{number:Math.cos,"Complex | BigNumber":e=>e.cos()},r)})),df="cosh",hf=Se(df,["typed"],(e=>{let{typed:t}=e;return t(df,{number:pe,"Complex | BigNumber":e=>e.cosh()})})),gf=Se("cot",["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t("cot",{number:kl,Complex:e=>e.cot(),BigNumber:e=>new r(1).div(e.tan())},pf({typed:t}))})),yf="coth",xf=Se(yf,["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t(yf,{number:ql,Complex:e=>e.coth(),BigNumber:e=>new r(1).div(e.tanh())})})),bf=Se("csc",["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t("csc",{number:Rl,Complex:e=>e.csc(),BigNumber:e=>new r(1).div(e.sin())},pf({typed:t}))})),vf="csch",wf=Se(vf,["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t(vf,{number:Pl,Complex:e=>e.csch(),BigNumber:e=>new r(1).div(e.sinh())})})),Nf=Se("sec",["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t("sec",{number:jl,Complex:e=>e.sec(),BigNumber:e=>new r(1).div(e.cos())},pf({typed:t}))})),Ef="sech",Af=Se(Ef,["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t(Ef,{number:Ul,Complex:e=>e.sech(),BigNumber:e=>new r(1).div(e.cosh())})})),Sf=Se("sin",["typed"],(e=>{let{typed:t}=e;const r=pf({typed:t});return t("sin",{number:Math.sin,"Complex | BigNumber":e=>e.sin()},r)})),Mf="sinh",Cf=Se(Mf,["typed"],(e=>{let{typed:t}=e;return t(Mf,{number:Ll,"Complex | BigNumber":e=>e.sinh()})})),Tf=Se("tan",["typed"],(e=>{let{typed:t}=e;const r=pf({typed:t});return t("tan",{number:Math.tan,"Complex | BigNumber":e=>e.tan()},r)})),Df=Se("tanh",["typed"],(e=>{let{typed:t}=e;return t("tanh",{number:de,"Complex | BigNumber":e=>e.tanh()})})),Ff="setCartesian",Bf=Se(Ff,["typed","size","subset","compareNatural","Index","DenseMatrix"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o,DenseMatrix:a}=e;return t(Ff,{"Array | Matrix, Array | Matrix":function(e,t){let s=[];if(0!==n(r(e),new o(0))&&0!==n(r(t),new o(0))){const r=Nn(Array.isArray(e)?e:e.toArray()).sort(i),n=Nn(Array.isArray(t)?t:t.toArray()).sort(i);s=[];for(let e=0;e<r.length;e++)for(let t=0;t<n.length;t++)s.push([r[e],n[t]])}return Array.isArray(e)&&Array.isArray(t)?s:new a(s)}})})),Of="setDifference",_f=Se(Of,["typed","size","subset","compareNatural","Index","DenseMatrix"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o,DenseMatrix:a}=e;return t(Of,{"Array | Matrix, Array | Matrix":function(e,t){let s;if(0===n(r(e),new o(0)))s=[];else{if(0===n(r(t),new o(0)))return Nn(e.toArray());{const r=Tn(Nn(Array.isArray(e)?e:e.toArray()).sort(i)),n=Tn(Nn(Array.isArray(t)?t:t.toArray()).sort(i));let o;s=[];for(let e=0;e<r.length;e++){o=!1;for(let t=0;t<n.length;t++)if(0===i(r[e].value,n[t].value)&&r[e].identifier===n[t].identifier){o=!0;break}o||s.push(r[e])}}}return Array.isArray(e)&&Array.isArray(t)?Dn(s):new a(Dn(s))}})})),zf="setDistinct",If=Se(zf,["typed","size","subset","compareNatural","Index","DenseMatrix"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o,DenseMatrix:a}=e;return t(zf,{"Array | Matrix":function(e){let t;if(0===n(r(e),new o(0)))t=[];else{const r=Nn(Array.isArray(e)?e:e.toArray()).sort(i);t=[],t.push(r[0]);for(let e=1;e<r.length;e++)0!==i(r[e],r[e-1])&&t.push(r[e])}return Array.isArray(e)?t:new a(t)}})})),kf="setIntersect",qf=Se(kf,["typed","size","subset","compareNatural","Index","DenseMatrix"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o,DenseMatrix:a}=e;return t(kf,{"Array | Matrix, Array | Matrix":function(e,t){let s;if(0===n(r(e),new o(0))||0===n(r(t),new o(0)))s=[];else{const r=Tn(Nn(Array.isArray(e)?e:e.toArray()).sort(i)),n=Tn(Nn(Array.isArray(t)?t:t.toArray()).sort(i));s=[];for(let e=0;e<r.length;e++)for(let t=0;t<n.length;t++)if(0===i(r[e].value,n[t].value)&&r[e].identifier===n[t].identifier){s.push(r[e]);break}}return Array.isArray(e)&&Array.isArray(t)?Dn(s):new a(Dn(s))}})})),Rf="setIsSubset",Pf=Se(Rf,["typed","size","subset","compareNatural","Index"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o}=e;return t(Rf,{"Array | Matrix, Array | Matrix":function(e,t){if(0===n(r(e),new o(0)))return!0;if(0===n(r(t),new o(0)))return!1;const a=Tn(Nn(Array.isArray(e)?e:e.toArray()).sort(i)),s=Tn(Nn(Array.isArray(t)?t:t.toArray()).sort(i));let u;for(let e=0;e<a.length;e++){u=!1;for(let t=0;t<s.length;t++)if(0===i(a[e].value,s[t].value)&&a[e].identifier===s[t].identifier){u=!0;break}if(!1===u)return!1}return!0}})})),jf="setMultiplicity",Uf=Se(jf,["typed","size","subset","compareNatural","Index"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o}=e;return t(jf,{"number | BigNumber | Fraction | Complex, Array | Matrix":function(e,t){if(0===n(r(t),new o(0)))return 0;const a=Nn(Array.isArray(t)?t:t.toArray());let s=0;for(let t=0;t<a.length;t++)0===i(a[t],e)&&s++;return s}})})),Lf="setPowerset",$f=Se(Lf,["typed","size","subset","compareNatural","Index"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o}=e;return t(Lf,{"Array | Matrix":function(e){if(0===n(r(e),new o(0)))return[];const t=Nn(Array.isArray(e)?e:e.toArray()).sort(i),s=[];let u=0;for(;u.toString(2).length<=t.length;)s.push(a(t,u.toString(2).split("").reverse())),u++;return function(e){let t=[];for(let r=e.length-1;r>0;r--)for(let n=0;n<r;n++)e[n].length>e[n+1].length&&(t=e[n],e[n]=e[n+1],e[n+1]=t);return e}(s)}});function a(e,t){const r=[];for(let n=0;n<t.length;n++)"1"===t[n]&&r.push(e[n]);return r}})),Hf="setSize",Gf=Se(Hf,["typed","compareNatural"],(e=>{let{typed:t,compareNatural:r}=e;return t(Hf,{"Array | Matrix":function(e){return Array.isArray(e)?Nn(e).length:Nn(e.toArray()).length},"Array | Matrix, boolean":function(e,t){if(!1===t||0===e.length)return Array.isArray(e)?Nn(e).length:Nn(e.toArray()).length;{const t=Nn(Array.isArray(e)?e:e.toArray()).sort(r);let n=1;for(let e=1;e<t.length;e++)0!==r(t[e],t[e-1])&&n++;return n}}})})),Zf="setSymDifference",Vf=Se(Zf,["typed","size","concat","subset","setDifference","Index"],(e=>{let{typed:t,size:r,concat:n,subset:i,setDifference:o,Index:a}=e;return t(Zf,{"Array | Matrix, Array | Matrix":function(e,t){if(0===i(r(e),new a(0)))return Nn(t);if(0===i(r(t),new a(0)))return Nn(e);const s=Nn(e),u=Nn(t);return n(o(s,u),o(u,s))}})})),Wf="setUnion",Yf=Se(Wf,["typed","size","concat","subset","setIntersect","setSymDifference","Index"],(e=>{let{typed:t,size:r,concat:n,subset:i,setIntersect:o,setSymDifference:a,Index:s}=e;return t(Wf,{"Array | Matrix, Array | Matrix":function(e,t){if(0===i(r(e),new s(0)))return Nn(t);if(0===i(r(t),new s(0)))return Nn(e);const u=Nn(e),c=Nn(t);return n(a(u,c),o(u,c))}})})),Jf=Se("add",["typed","matrix","addScalar","equalScalar","DenseMatrix","SparseMatrix","concat"],(e=>{let{typed:t,matrix:r,addScalar:n,equalScalar:i,DenseMatrix:o,SparseMatrix:a,concat:s}=e;const u=Wo({typed:t}),c=Yo({typed:t,equalScalar:i}),l=Jo({typed:t,DenseMatrix:o}),f=Zo({typed:t,matrix:r,concat:s});return t("add",{"any, any":n,"any, any, ...any":t.referToSelf((e=>(t,r,n)=>{let i=e(t,r);for(let t=0;t<n.length;t++)i=e(i,n[t]);return i}))},f({elop:n,DS:u,SS:c,Ss:l}))})),Xf="hypot",Qf=Se(Xf,["typed","abs","addScalar","divideScalar","multiplyScalar","sqrt","smaller","isPositive"],(e=>{let{typed:t,abs:r,addScalar:n,divideScalar:i,multiplyScalar:o,sqrt:s,smaller:u,isPositive:c}=e;return t(Xf,{"... number | BigNumber":l,Array:l,Matrix:e=>l(Nn(e.toArray()))});function l(e){let t=0,l=0;for(let s=0;s<e.length;s++){if(a(e[s]))throw new TypeError("Unexpected type of argument to hypot");const f=r(e[s]);u(l,f)?(t=o(t,o(i(l,f),i(l,f))),t=n(t,1),l=f):t=n(t,c(f)?o(i(f,l),i(f,l)):f)}return o(l,s(t))}})),Kf="norm",ep=Se(Kf,["typed","abs","add","pow","conj","sqrt","multiply","equalScalar","larger","smaller","matrix","ctranspose","eigs"],(e=>{let{typed:t,abs:r,add:n,pow:i,conj:o,sqrt:a,multiply:s,equalScalar:u,larger:c,smaller:l,matrix:f,ctranspose:p,eigs:m}=e;return t(Kf,{number:Math.abs,Complex:function(e){return e.abs()},BigNumber:function(e){return e.abs()},boolean:function(e){return Math.abs(e)},Array:function(e){return d(f(e),2)},Matrix:function(e){return d(e,2)},"Array, number | BigNumber | string":function(e,t){return d(f(e),t)},"Matrix, number | BigNumber | string":function(e,t){return d(e,t)}});function d(e,t){const f=e.size();if(1===f.length)return function(e,t){if(t===Number.POSITIVE_INFINITY||"inf"===t)return function(e){let t=0;return e.forEach((function(e){const n=r(e);c(n,t)&&(t=n)}),!0),t}(e);if(t===Number.NEGATIVE_INFINITY||"-inf"===t)return function(e){let t;return e.forEach((function(e){const n=r(e);t&&!l(n,t)||(t=n)}),!0),t||0}(e);if("fro"===t)return d(e,2);if("number"==typeof t&&!isNaN(t)){if(!u(t,0)){let o=0;return e.forEach((function(e){o=n(i(r(e),t),o)}),!0),i(o,1/t)}return Number.POSITIVE_INFINITY}throw new Error("Unsupported parameter value")}(e,t);if(2===f.length){if(f[0]&&f[1])return function(e,t){if(1===t)return function(e){const t=[];let i=0;return e.forEach((function(e,o){const a=o[1],s=n(t[a]||0,r(e));c(s,i)&&(i=s),t[a]=s}),!0),i}(e);if(t===Number.POSITIVE_INFINITY||"inf"===t)return function(e){const t=[];let i=0;return e.forEach((function(e,o){const a=o[0],s=n(t[a]||0,r(e));c(s,i)&&(i=s),t[a]=s}),!0),i}(e);if("fro"===t)return function(e){let t=0;return e.forEach((function(e,r){t=n(t,s(e,o(e)))})),r(a(t))}(e);if(2===t)return function(e){const t=e.size();if(t[0]!==t[1])throw new RangeError("Invalid matrix dimensions");const n=p(e),i=s(n,e),o=m(i).values.toArray(),u=o[o.length-1];return r(a(u))}(e);throw new Error("Unsupported parameter value "+t)}(e,t);throw new RangeError("Invalid matrix dimensions")}}})),tp=Se("dot",["typed","addScalar","multiplyScalar","conj","size"],(e=>{let{typed:t,addScalar:r,multiplyScalar:n,conj:i,size:o}=e;return t("dot",{"Array | DenseMatrix, Array | DenseMatrix":function(e,o){const u=a(e,o),c=f(e)?e._data:e,l=f(e)?e._datatype||e.getDataType():void 0,p=f(o)?o._data:o,m=f(o)?o._datatype||o.getDataType():void 0,d=2===s(e).length,h=2===s(o).length;let g=r,y=n;if(l&&m&&l===m&&"string"==typeof l&&"mixed"!==l){const e=l;g=t.find(r,[e,e]),y=t.find(n,[e,e])}if(!d&&!h){let e=y(i(c[0]),p[0]);for(let t=1;t<u;t++)e=g(e,y(i(c[t]),p[t]));return e}if(!d&&h){let e=y(i(c[0]),p[0][0]);for(let t=1;t<u;t++)e=g(e,y(i(c[t]),p[t][0]));return e}if(d&&!h){let e=y(i(c[0][0]),p[0]);for(let t=1;t<u;t++)e=g(e,y(i(c[t][0]),p[t]));return e}if(d&&h){let e=y(i(c[0][0]),p[0][0]);for(let t=1;t<u;t++)e=g(e,y(i(c[t][0]),p[t][0]));return e}},"SparseMatrix, SparseMatrix":function(e,t){a(e,t);const i=e._index,o=e._values,s=t._index,u=t._values;let c=0;const l=r,f=n;let p=0,m=0;for(;p<i.length&&m<s.length;){const e=i[p],t=s[m];e<t?p++:e>t?m++:e===t&&(c=l(c,f(o[p],u[m])),p++,m++)}return c}});function a(e,t){const r=s(e),n=s(t);let i,o;if(1===r.length)i=r[0];else{if(2!==r.length||1!==r[1])throw new RangeError("Expected a column vector, instead got a matrix of size ("+r.join(", ")+")");i=r[0]}if(1===n.length)o=n[0];else{if(2!==n.length||1!==n[1])throw new RangeError("Expected a column vector, instead got a matrix of size ("+n.join(", ")+")");o=n[0]}if(i!==o)throw new RangeError("Vectors must have equal length ("+i+" != "+o+")");if(0===i)throw new RangeError("Cannot calculate the dot product of empty vectors");return i}function s(e){return f(e)?e.size():o(e)}})),rp=Se("trace",["typed","matrix","add"],(e=>{let{typed:t,matrix:r,add:n}=e;return t("trace",{Array:function(e){return i(r(e))},SparseMatrix:function(e){const t=e._values,r=e._index,i=e._ptr,o=e._size,a=o[0],s=o[1];if(a===s){let e=0;if(t.length>0)for(let o=0;o<s;o++){const a=i[o],s=i[o+1];for(let i=a;i<s;i++){const a=r[i];if(a===o){e=n(e,t[i]);break}if(a>o)break}}return e}throw new RangeError("Matrix must be square (size: "+Qr(o)+")")},DenseMatrix:i,any:ye});function i(e){const t=e._size,r=e._data;switch(t.length){case 1:if(1===t[0])return ye(r[0]);throw new RangeError("Matrix must be square (size: "+Qr(t)+")");case 2:{const e=t[0];if(e===t[1]){let t=0;for(let i=0;i<e;i++)t=n(t,r[i][i]);return t}throw new RangeError("Matrix must be square (size: "+Qr(t)+")")}default:throw new RangeError("Matrix must be two dimensional (size: "+Qr(t)+")")}}})),np="index",ip=Se(np,["typed","Index"],(e=>{let{typed:t,Index:r}=e;return t(np,{"...number | string | BigNumber | Range | Array | Matrix":function(e){const t=e.map((function(e){return i(e)?e.toNumber():l(e)||f(e)?e.map((function(e){return i(e)?e.toNumber():e})):e})),n=new r;return r.apply(n,t),n}})})),op=new Set(["end"]),ap=Se("Node",["mathWithTransform"],(e=>{let{mathWithTransform:t}=e;return class{get type(){return"Node"}get isNode(){return!0}evaluate(e){return this.compile().evaluate(e)}compile(){const e=this._compile(t,{}),r={};return{evaluate:function(t){const n=Pe(t);return function(e){for(const t of[...op])if(e.has(t))throw new Error('Scope contains an illegal symbol, "'+t+'" is a reserved keyword')}(n),e(n,r,null)}}}_compile(e,t){throw new Error("Method _compile must be implemented by type "+this.type)}forEach(e){throw new Error("Cannot run forEach on a Node interface")}map(e){throw new Error("Cannot run map on a Node interface")}_ifNode(e){if(!k(e))throw new TypeError("Callback function must return a Node");return e}traverse(e){e(this,null,null),function e(t,r){t.forEach((function(t,n,i){r(t,n,i),e(t,r)}))}(this,e)}transform(e){return function t(r,n,i){const o=e(r,n,i);return o!==r?o:r.map(t)}(this,null,null)}filter(e){const t=[];return this.traverse((function(r,n,i){e(r,n,i)&&t.push(r)})),t}clone(){throw new Error("Cannot clone a Node interface")}cloneDeep(){return this.map((function(e){return e.cloneDeep()}))}equals(e){return!!e&&this.type===e.type&&ve(this,e)}toString(e){const t=this._getCustomString(e);return void 0!==t?t:this._toString(e)}_toString(){throw new Error("_toString not implemented for "+this.type)}toJSON(){throw new Error("Cannot serialize object: toJSON not implemented by "+this.type)}toHTML(e){const t=this._getCustomString(e);return void 0!==t?t:this._toHTML(e)}_toHTML(){throw new Error("_toHTML not implemented for "+this.type)}toTex(e){const t=this._getCustomString(e);return void 0!==t?t:this._toTex(e)}_toTex(e){throw new Error("_toTex not implemented for "+this.type)}_getCustomString(e){if(e&&"object"==typeof e)switch(typeof e.handler){case"object":case"undefined":return;case"function":return e.handler(this,e);default:throw new TypeError("Object or function expected as callback")}}getIdentifier(){return this.type}getContent(){return this}}}),{isClass:!0,isNode:!0});function sp(e){return sp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},sp(e)}function up(e,t,r){return(t=function(e){var t=function(e){if("object"!=sp(e)||!e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var r=t.call(e,"string");if("object"!=sp(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==sp(t)?t:t+""}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function cp(e){return e&&e.isIndexError?new an(e.index+1,e.min+1,void 0!==e.max?e.max+1:void 0):e}function lp(e){let{subset:t}=e;return function(e,r){try{if(Array.isArray(e))return t(e,r);if(e&&"function"==typeof e.subset)return e.subset(r);if("string"==typeof e)return t(e,r);if("object"==typeof e){if(!r.isObjectProperty())throw new TypeError("Cannot apply a numeric index as object property");return Te(e,r.getObjectProperty())}throw new TypeError("Cannot apply index: unsupported type of object")}catch(e){throw cp(e)}}}const fp="AccessorNode",pp=Se(fp,["subset","Node"],(e=>{let{subset:t,Node:r}=e;const n=lp({subset:t});function i(e){return!(M(e)||C(e)||B(e)||z(e)||q(e)||P(e)||L(e))}class o extends r{constructor(e,t){if(super(),!k(e))throw new TypeError('Node expected for parameter "object"');if(!I(t))throw new TypeError('IndexNode expected for parameter "index"');this.object=e,this.index=t}get name(){return this.index?this.index.isObjectProperty()?this.index.getObjectProperty():"":this.object.name||""}get type(){return fp}get isAccessorNode(){return!0}_compile(e,t){const r=this.object._compile(e,t),i=this.index._compile(e,t);if(this.index.isObjectProperty()){const e=this.index.getObjectProperty();return function(t,n,i){return Te(r(t,n,i),e)}}return function(e,t,o){const a=r(e,t,o),s=i(e,t,a);return n(a,s)}}forEach(e){e(this.object,"object",this),e(this.index,"index",this)}map(e){return new o(this._ifNode(e(this.object,"object",this)),this._ifNode(e(this.index,"index",this)))}clone(){return new o(this.object,this.index)}_toString(e){let t=this.object.toString(e);return i(this.object)&&(t="("+t+")"),t+this.index.toString(e)}_toHTML(e){let t=this.object.toHTML(e);return i(this.object)&&(t='<span class="math-parenthesis math-round-parenthesis">(</span>'+t+'<span class="math-parenthesis math-round-parenthesis">)</span>'),t+this.index.toHTML(e)}_toTex(e){let t=this.object.toTex(e);return i(this.object)&&(t="\\left(' + object + '\\right)"),t+this.index.toTex(e)}toJSON(){return{mathjs:fp,object:this.object,index:this.index}}static fromJSON(e){return new o(e.object,e.index)}}return up(o,"name",fp),o}),{isClass:!0,isNode:!0}),mp="ArrayNode",dp=Se(mp,["Node"],(e=>{let{Node:t}=e;class r extends t{constructor(e){if(super(),this.items=e||[],!Array.isArray(this.items)||!this.items.every(k))throw new TypeError("Array containing Nodes expected")}get type(){return mp}get isArrayNode(){return!0}_compile(e,t){const r=En(this.items,(function(r){return r._compile(e,t)}));if("Array"!==e.config.matrix){const t=e.matrix;return function(e,n,i){return t(En(r,(function(t){return t(e,n,i)})))}}return function(e,t,n){return En(r,(function(r){return r(e,t,n)}))}}forEach(e){for(let t=0;t<this.items.length;t++)e(this.items[t],"items["+t+"]",this)}map(e){const t=[];for(let r=0;r<this.items.length;r++)t[r]=this._ifNode(e(this.items[r],"items["+r+"]",this));return new r(t)}clone(){return new r(this.items.slice(0))}_toString(e){return"["+this.items.map((function(t){return t.toString(e)})).join(", ")+"]"}toJSON(){return{mathjs:mp,items:this.items}}static fromJSON(e){return new r(e.items)}_toHTML(e){return'<span class="math-parenthesis math-square-parenthesis">[</span>'+this.items.map((function(t){return t.toHTML(e)})).join('<span class="math-separator">,</span>')+'<span class="math-parenthesis math-square-parenthesis">]</span>'}_toTex(e){return function t(r,n){const i=r.some(C)&&!r.every(C),o=n||i,a=o?"&":"\\\\",s=r.map((function(r){return r.items?t(r.items,!n):r.toTex(e)})).join(a);return i||!o||o&&!n?"\\begin{bmatrix}"+s+"\\end{bmatrix}":s}(this.items,!1)}}return up(r,"name",mp),r}),{isClass:!0,isNode:!0}),hp=[{AssignmentNode:{},FunctionAssignmentNode:{}},{ConditionalNode:{latexLeftParens:!1,latexRightParens:!1,latexParens:!1}},{"OperatorNode:or":{op:"or",associativity:"left",associativeWith:[]}},{"OperatorNode:xor":{op:"xor",associativity:"left",associativeWith:[]}},{"OperatorNode:and":{op:"and",associativity:"left",associativeWith:[]}},{"OperatorNode:bitOr":{op:"|",associativity:"left",associativeWith:[]}},{"OperatorNode:bitXor":{op:"^|",associativity:"left",associativeWith:[]}},{"OperatorNode:bitAnd":{op:"&",associativity:"left",associativeWith:[]}},{"OperatorNode:equal":{op:"==",associativity:"left",associativeWith:[]},"OperatorNode:unequal":{op:"!=",associativity:"left",associativeWith:[]},"OperatorNode:smaller":{op:"<",associativity:"left",associativeWith:[]},"OperatorNode:larger":{op:">",associativity:"left",associativeWith:[]},"OperatorNode:smallerEq":{op:"<=",associativity:"left",associativeWith:[]},"OperatorNode:largerEq":{op:">=",associativity:"left",associativeWith:[]},RelationalNode:{associativity:"left",associativeWith:[]}},{"OperatorNode:leftShift":{op:"<<",associativity:"left",associativeWith:[]},"OperatorNode:rightArithShift":{op:">>",associativity:"left",associativeWith:[]},"OperatorNode:rightLogShift":{op:">>>",associativity:"left",associativeWith:[]}},{"OperatorNode:to":{op:"to",associativity:"left",associativeWith:[]}},{RangeNode:{}},{"OperatorNode:add":{op:"+",associativity:"left",associativeWith:["OperatorNode:add","OperatorNode:subtract"]},"OperatorNode:subtract":{op:"-",associativity:"left",associativeWith:[]}},{"OperatorNode:multiply":{op:"*",associativity:"left",associativeWith:["OperatorNode:multiply","OperatorNode:divide","Operator:dotMultiply","Operator:dotDivide"]},"OperatorNode:divide":{op:"/",associativity:"left",associativeWith:[],latexLeftParens:!1,latexRightParens:!1,latexParens:!1},"OperatorNode:dotMultiply":{op:".*",associativity:"left",associativeWith:["OperatorNode:multiply","OperatorNode:divide","OperatorNode:dotMultiply","OperatorNode:doDivide"]},"OperatorNode:dotDivide":{op:"./",associativity:"left",associativeWith:[]},"OperatorNode:mod":{op:"mod",associativity:"left",associativeWith:[]}},{"OperatorNode:multiply":{associativity:"left",associativeWith:["OperatorNode:multiply","OperatorNode:divide","Operator:dotMultiply","Operator:dotDivide"]}},{"OperatorNode:unaryPlus":{op:"+",associativity:"right"},"OperatorNode:unaryMinus":{op:"-",associativity:"right"},"OperatorNode:bitNot":{op:"~",associativity:"right"},"OperatorNode:not":{op:"not",associativity:"right"}},{"OperatorNode:pow":{op:"^",associativity:"right",associativeWith:[],latexRightParens:!1},"OperatorNode:dotPow":{op:".^",associativity:"right",associativeWith:[]}},{"OperatorNode:factorial":{op:"!",associativity:"left"}},{"OperatorNode:ctranspose":{op:"'",associativity:"left"}}];function gp(e,t){if(!t||"auto"!==t)return e;let r=e;for(;P(r);)r=r.content;return r}function yp(e,t,r,n){let i=e;"keep"!==t&&(i=e.getContent());const o=i.getIdentifier();let a=null;for(let e=0;e<hp.length;e++)if(o in hp[e]){a=e;break}if("OperatorNode:multiply"===o&&i.implicit&&"show"!==r){const e=gp(i.args[0],t);B(e)&&n&&"OperatorNode:divide"===n.getIdentifier()&&O(gp(n.args[0],t))||"OperatorNode:divide"===e.getIdentifier()&&O(gp(e.args[0],t))&&B(gp(e.args[1]))||(a+=1)}return a}function xp(e,t){let r=e;"keep"!==t&&(r=e.getContent());const n=r.getIdentifier(),i=yp(r,t);if(null===i)return null;const o=hp[i][n];if(Ae(o,"associativity")){if("left"===o.associativity)return"left";if("right"===o.associativity)return"right";throw Error("'"+n+"' has the invalid associativity '"+o.associativity+"'.")}return null}function bp(e,t,r){const n="keep"!==r?e.getContent():e,i="keep"!==r?e.getContent():t,o=n.getIdentifier(),a=i.getIdentifier(),s=yp(n,r);if(null===s)return null;const u=hp[s][o];if(Ae(u,"associativeWith")&&u.associativeWith instanceof Array){for(let e=0;e<u.associativeWith.length;e++)if(u.associativeWith[e]===a)return!0;return!1}return null}const vp="AssignmentNode",wp=Se(vp,["subset","?matrix","Node"],(e=>{let{subset:t,matrix:r,Node:n}=e;const i=lp({subset:t}),o=function(e){let{subset:t,matrix:r}=e;return function(e,n,i){try{if(Array.isArray(e))return r(e).subset(n,i).valueOf().forEach(((t,r)=>{e[r]=t})),e;if(e&&"function"==typeof e.subset)return e.subset(n,i);if("string"==typeof e)return t(e,n,i);if("object"==typeof e){if(!n.isObjectProperty())throw TypeError("Cannot apply a numeric index as object property");return De(e,n.getObjectProperty(),i),e}throw new TypeError("Cannot apply index: unsupported type of object")}catch(e){throw cp(e)}}}({subset:t,matrix:r});function a(e,t,r){t||(t="keep");const n=yp(e,t,r),i=yp(e.value,t,r);return"all"===t||null!==i&&i<=n}class s extends n{constructor(e,t,r){if(super(),this.object=e,this.index=r?t:null,this.value=r||t,!L(e)&&!M(e))throw new TypeError('SymbolNode or AccessorNode expected as "object"');if(L(e)&&"end"===e.name)throw new Error('Cannot assign to symbol "end"');if(this.index&&!I(this.index))throw new TypeError('IndexNode expected as "index"');if(!k(this.value))throw new TypeError('Node expected as "value"')}get name(){return this.index?this.index.isObjectProperty()?this.index.getObjectProperty():"":this.object.name||""}get type(){return vp}get isAssignmentNode(){return!0}_compile(e,t){const r=this.object._compile(e,t),n=this.index?this.index._compile(e,t):null,a=this.value._compile(e,t),s=this.object.name;if(this.index){if(this.index.isObjectProperty()){const e=this.index.getObjectProperty();return function(t,n,i){const o=r(t,n,i),s=a(t,n,i);return De(o,e,s),s}}if(L(this.object))return function(e,t,i){const u=r(e,t,i),c=a(e,t,i),l=n(e,t,u);return e.set(s,o(u,l,c)),c};{const r=this.object.object._compile(e,t);if(this.object.index.isObjectProperty()){const e=this.object.index.getObjectProperty();return function(t,i,s){const u=r(t,i,s),c=Te(u,e),l=n(t,i,c),f=a(t,i,s);return De(u,e,o(c,l,f)),f}}{const s=this.object.index._compile(e,t);return function(e,t,u){const c=r(e,t,u),l=s(e,t,c),f=i(c,l),p=n(e,t,f),m=a(e,t,u);return o(c,l,o(f,p,m)),m}}}}if(!L(this.object))throw new TypeError("SymbolNode expected as object");return function(e,t,r){const n=a(e,t,r);return e.set(s,n),n}}forEach(e){e(this.object,"object",this),this.index&&e(this.index,"index",this),e(this.value,"value",this)}map(e){const t=this._ifNode(e(this.object,"object",this)),r=this.index?this._ifNode(e(this.index,"index",this)):null,n=this._ifNode(e(this.value,"value",this));return new s(t,r,n)}clone(){return new s(this.object,this.index,this.value)}_toString(e){const t=this.object.toString(e),r=this.index?this.index.toString(e):"";let n=this.value.toString(e);return a(this,e&&e.parenthesis,e&&e.implicit)&&(n="("+n+")"),t+r+" = "+n}toJSON(){return{mathjs:vp,object:this.object,index:this.index,value:this.value}}static fromJSON(e){return new s(e.object,e.index,e.value)}_toHTML(e){const t=this.object.toHTML(e),r=this.index?this.index.toHTML(e):"";let n=this.value.toHTML(e);return a(this,e&&e.parenthesis,e&&e.implicit)&&(n='<span class="math-paranthesis math-round-parenthesis">(</span>'+n+'<span class="math-paranthesis math-round-parenthesis">)</span>'),t+r+'<span class="math-operator math-assignment-operator math-variable-assignment-operator math-binary-operator">=</span>'+n}_toTex(e){const t=this.object.toTex(e),r=this.index?this.index.toTex(e):"";let n=this.value.toTex(e);return a(this,e&&e.parenthesis,e&&e.implicit)&&(n=`\\left(${n}\\right)`),t+r+"="+n}}return up(s,"name",vp),s}),{isClass:!0,isNode:!0}),Np="BlockNode",Ep=Se(Np,["ResultSet","Node"],(e=>{let{ResultSet:t,Node:r}=e;class n extends r{constructor(e){if(super(),!Array.isArray(e))throw new Error("Array expected");this.blocks=e.map((function(e){const t=e&&e.node,r=!e||void 0===e.visible||e.visible;if(!k(t))throw new TypeError('Property "node" must be a Node');if("boolean"!=typeof r)throw new TypeError('Property "visible" must be a boolean');return{node:t,visible:r}}))}get type(){return Np}get isBlockNode(){return!0}_compile(e,r){const n=En(this.blocks,(function(t){return{evaluate:t.node._compile(e,r),visible:t.visible}}));return function(e,r,i){const o=[];return An(n,(function(t){const n=t.evaluate(e,r,i);t.visible&&o.push(n)})),new t(o)}}forEach(e){for(let t=0;t<this.blocks.length;t++)e(this.blocks[t].node,"blocks["+t+"].node",this)}map(e){const t=[];for(let r=0;r<this.blocks.length;r++){const n=this.blocks[r],i=this._ifNode(e(n.node,"blocks["+r+"].node",this));t[r]={node:i,visible:n.visible}}return new n(t)}clone(){const e=this.blocks.map((function(e){return{node:e.node,visible:e.visible}}));return new n(e)}_toString(e){return this.blocks.map((function(t){return t.node.toString(e)+(t.visible?"":";")})).join("\n")}toJSON(){return{mathjs:Np,blocks:this.blocks}}static fromJSON(e){return new n(e.blocks)}_toHTML(e){return this.blocks.map((function(t){return t.node.toHTML(e)+(t.visible?"":'<span class="math-separator">;</span>')})).join('<span class="math-separator"><br /></span>')}_toTex(e){return this.blocks.map((function(t){return t.node.toTex(e)+(t.visible?"":";")})).join("\\;\\;\n")}}return up(n,"name",Np),n}),{isClass:!0,isNode:!0}),Ap="ConditionalNode",Sp=Se(Ap,["Node"],(e=>{let{Node:t}=e;class r extends t{constructor(e,t,r){if(super(),!k(e))throw new TypeError("Parameter condition must be a Node");if(!k(t))throw new TypeError("Parameter trueExpr must be a Node");if(!k(r))throw new TypeError("Parameter falseExpr must be a Node");this.condition=e,this.trueExpr=t,this.falseExpr=r}get type(){return Ap}get isConditionalNode(){return!0}_compile(e,t){const r=this.condition._compile(e,t),n=this.trueExpr._compile(e,t),o=this.falseExpr._compile(e,t);return function(e,t,s){return function(e){if("number"==typeof e||"boolean"==typeof e||"string"==typeof e)return!!e;if(e){if(i(e))return!e.isZero();if(a(e))return!(!e.re&&!e.im);if(u(e))return!!e.value}if(null==e)return!1;throw new TypeError('Unsupported type of condition "'+H(e)+'"')}(r(e,t,s))?n(e,t,s):o(e,t,s)}}forEach(e){e(this.condition,"condition",this),e(this.trueExpr,"trueExpr",this),e(this.falseExpr,"falseExpr",this)}map(e){return new r(this._ifNode(e(this.condition,"condition",this)),this._ifNode(e(this.trueExpr,"trueExpr",this)),this._ifNode(e(this.falseExpr,"falseExpr",this)))}clone(){return new r(this.condition,this.trueExpr,this.falseExpr)}_toString(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=yp(this,t,e&&e.implicit);let n=this.condition.toString(e);const i=yp(this.condition,t,e&&e.implicit);("all"===t||"OperatorNode"===this.condition.type||null!==i&&i<=r)&&(n="("+n+")");let o=this.trueExpr.toString(e);const a=yp(this.trueExpr,t,e&&e.implicit);("all"===t||"OperatorNode"===this.trueExpr.type||null!==a&&a<=r)&&(o="("+o+")");let s=this.falseExpr.toString(e);const u=yp(this.falseExpr,t,e&&e.implicit);return("all"===t||"OperatorNode"===this.falseExpr.type||null!==u&&u<=r)&&(s="("+s+")"),n+" ? "+o+" : "+s}toJSON(){return{mathjs:Ap,condition:this.condition,trueExpr:this.trueExpr,falseExpr:this.falseExpr}}static fromJSON(e){return new r(e.condition,e.trueExpr,e.falseExpr)}_toHTML(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=yp(this,t,e&&e.implicit);let n=this.condition.toHTML(e);const i=yp(this.condition,t,e&&e.implicit);("all"===t||"OperatorNode"===this.condition.type||null!==i&&i<=r)&&(n='<span class="math-parenthesis math-round-parenthesis">(</span>'+n+'<span class="math-parenthesis math-round-parenthesis">)</span>');let o=this.trueExpr.toHTML(e);const a=yp(this.trueExpr,t,e&&e.implicit);("all"===t||"OperatorNode"===this.trueExpr.type||null!==a&&a<=r)&&(o='<span class="math-parenthesis math-round-parenthesis">(</span>'+o+'<span class="math-parenthesis math-round-parenthesis">)</span>');let s=this.falseExpr.toHTML(e);const u=yp(this.falseExpr,t,e&&e.implicit);return("all"===t||"OperatorNode"===this.falseExpr.type||null!==u&&u<=r)&&(s='<span class="math-parenthesis math-round-parenthesis">(</span>'+s+'<span class="math-parenthesis math-round-parenthesis">)</span>'),n+'<span class="math-operator math-conditional-operator">?</span>'+o+'<span class="math-operator math-conditional-operator">:</span>'+s}_toTex(e){return"\\begin{cases} {"+this.trueExpr.toTex(e)+"}, &\\quad{\\text{if }\\;"+this.condition.toTex(e)+"}\\\\{"+this.falseExpr.toTex(e)+"}, &\\quad{\\text{otherwise}}\\end{cases}"}}return up(r,"name",Ap),r}),{isClass:!0,isNode:!0});var Mp=r(3144);const Cp={Alpha:"A",alpha:"\\alpha",Beta:"B",beta:"\\beta",Gamma:"\\Gamma",gamma:"\\gamma",Delta:"\\Delta",delta:"\\delta",Epsilon:"E",epsilon:"\\epsilon",varepsilon:"\\varepsilon",Zeta:"Z",zeta:"\\zeta",Eta:"H",eta:"\\eta",Theta:"\\Theta",theta:"\\theta",vartheta:"\\vartheta",Iota:"I",iota:"\\iota",Kappa:"K",kappa:"\\kappa",varkappa:"\\varkappa",Lambda:"\\Lambda",lambda:"\\lambda",Mu:"M",mu:"\\mu",Nu:"N",nu:"\\nu",Xi:"\\Xi",xi:"\\xi",Omicron:"O",omicron:"o",Pi:"\\Pi",pi:"\\pi",varpi:"\\varpi",Rho:"P",rho:"\\rho",varrho:"\\varrho",Sigma:"\\Sigma",sigma:"\\sigma",varsigma:"\\varsigma",Tau:"T",tau:"\\tau",Upsilon:"\\Upsilon",upsilon:"\\upsilon",Phi:"\\Phi",phi:"\\phi",varphi:"\\varphi",Chi:"X",chi:"\\chi",Psi:"\\Psi",psi:"\\psi",Omega:"\\Omega",omega:"\\omega",true:"\\mathrm{True}",false:"\\mathrm{False}",i:"i",inf:"\\infty",Inf:"\\infty",infinity:"\\infty",Infinity:"\\infty",oo:"\\infty",lim:"\\lim",undefined:"\\mathbf{?}"},Tp={transpose:"^\\top",ctranspose:"^H",factorial:"!",pow:"^",dotPow:".^\\wedge",unaryPlus:"+",unaryMinus:"-",bitNot:"\\~",not:"\\neg",multiply:"\\cdot",divide:"\\frac",dotMultiply:".\\cdot",dotDivide:".:",mod:"\\mod",add:"+",subtract:"-",to:"\\rightarrow",leftShift:"<<",rightArithShift:">>",rightLogShift:">>>",equal:"=",unequal:"\\neq",smaller:"<",larger:">",smallerEq:"\\leq",largerEq:"\\geq",bitAnd:"\\&",bitXor:"\\underline{|}",bitOr:"|",and:"\\wedge",xor:"\\veebar",or:"\\vee"},Dp={abs:{1:"\\left|${args[0]}\\right|"},add:{2:`\\left(\${args[0]}${Tp.add}\${args[1]}\\right)`},cbrt:{1:"\\sqrt[3]{${args[0]}}"},ceil:{1:"\\left\\lceil${args[0]}\\right\\rceil"},cube:{1:"\\left(${args[0]}\\right)^3"},divide:{2:"\\frac{${args[0]}}{${args[1]}}"},dotDivide:{2:`\\left(\${args[0]}${Tp.dotDivide}\${args[1]}\\right)`},dotMultiply:{2:`\\left(\${args[0]}${Tp.dotMultiply}\${args[1]}\\right)`},dotPow:{2:`\\left(\${args[0]}${Tp.dotPow}\${args[1]}\\right)`},exp:{1:"\\exp\\left(${args[0]}\\right)"},expm1:`\\left(e${Tp.pow}{\${args[0]}}-1\\right)`,fix:{1:"\\mathrm{${name}}\\left(${args[0]}\\right)"},floor:{1:"\\left\\lfloor${args[0]}\\right\\rfloor"},gcd:"\\gcd\\left(${args}\\right)",hypot:"\\hypot\\left(${args}\\right)",log:{1:"\\ln\\left(${args[0]}\\right)",2:"\\log_{${args[1]}}\\left(${args[0]}\\right)"},log10:{1:"\\log_{10}\\left(${args[0]}\\right)"},log1p:{1:"\\ln\\left(${args[0]}+1\\right)",2:"\\log_{${args[1]}}\\left(${args[0]}+1\\right)"},log2:"\\log_{2}\\left(${args[0]}\\right)",mod:{2:`\\left(\${args[0]}${Tp.mod}\${args[1]}\\right)`},multiply:{2:`\\left(\${args[0]}${Tp.multiply}\${args[1]}\\right)`},norm:{1:"\\left\\|${args[0]}\\right\\|",2:void 0},nthRoot:{2:"\\sqrt[${args[1]}]{${args[0]}}"},nthRoots:{2:"\\{y : $y^{args[1]} = {${args[0]}}\\}"},pow:{2:`\\left(\${args[0]}\\right)${Tp.pow}{\${args[1]}}`},round:{1:"\\left\\lfloor${args[0]}\\right\\rceil",2:void 0},sign:{1:"\\mathrm{${name}}\\left(${args[0]}\\right)"},sqrt:{1:"\\sqrt{${args[0]}}"},square:{1:"\\left(${args[0]}\\right)^2"},subtract:{2:`\\left(\${args[0]}${Tp.subtract}\${args[1]}\\right)`},unaryMinus:{1:`${Tp.unaryMinus}\\left(\${args[0]}\\right)`},unaryPlus:{1:`${Tp.unaryPlus}\\left(\${args[0]}\\right)`},bitAnd:{2:`\\left(\${args[0]}${Tp.bitAnd}\${args[1]}\\right)`},bitNot:{1:Tp.bitNot+"\\left(${args[0]}\\right)"},bitOr:{2:`\\left(\${args[0]}${Tp.bitOr}\${args[1]}\\right)`},bitXor:{2:`\\left(\${args[0]}${Tp.bitXor}\${args[1]}\\right)`},leftShift:{2:`\\left(\${args[0]}${Tp.leftShift}\${args[1]}\\right)`},rightArithShift:{2:`\\left(\${args[0]}${Tp.rightArithShift}\${args[1]}\\right)`},rightLogShift:{2:`\\left(\${args[0]}${Tp.rightLogShift}\${args[1]}\\right)`},bellNumbers:{1:"\\mathrm{B}_{${args[0]}}"},catalan:{1:"\\mathrm{C}_{${args[0]}}"},stirlingS2:{2:"\\mathrm{S}\\left(${args}\\right)"},arg:{1:"\\arg\\left(${args[0]}\\right)"},conj:{1:"\\left(${args[0]}\\right)^*"},im:{1:"\\Im\\left\\lbrace${args[0]}\\right\\rbrace"},re:{1:"\\Re\\left\\lbrace${args[0]}\\right\\rbrace"},and:{2:`\\left(\${args[0]}${Tp.and}\${args[1]}\\right)`},not:{1:Tp.not+"\\left(${args[0]}\\right)"},or:{2:`\\left(\${args[0]}${Tp.or}\${args[1]}\\right)`},xor:{2:`\\left(\${args[0]}${Tp.xor}\${args[1]}\\right)`},cross:{2:"\\left(${args[0]}\\right)\\times\\left(${args[1]}\\right)"},ctranspose:{1:`\\left(\${args[0]}\\right)${Tp.ctranspose}`},det:{1:"\\det\\left(${args[0]}\\right)"},dot:{2:"\\left(${args[0]}\\cdot${args[1]}\\right)"},expm:{1:"\\exp\\left(${args[0]}\\right)"},inv:{1:"\\left(${args[0]}\\right)^{-1}"},pinv:{1:"\\left(${args[0]}\\right)^{+}"},sqrtm:{1:`{\${args[0]}}${Tp.pow}{\\frac{1}{2}}`},trace:{1:"\\mathrm{tr}\\left(${args[0]}\\right)"},transpose:{1:`\\left(\${args[0]}\\right)${Tp.transpose}`},combinations:{2:"\\binom{${args[0]}}{${args[1]}}"},combinationsWithRep:{2:"\\left(\\!\\!{\\binom{${args[0]}}{${args[1]}}}\\!\\!\\right)"},factorial:{1:`\\left(\${args[0]}\\right)${Tp.factorial}`},gamma:{1:"\\Gamma\\left(${args[0]}\\right)"},lgamma:{1:"\\ln\\Gamma\\left(${args[0]}\\right)"},equal:{2:`\\left(\${args[0]}${Tp.equal}\${args[1]}\\right)`},larger:{2:`\\left(\${args[0]}${Tp.larger}\${args[1]}\\right)`},largerEq:{2:`\\left(\${args[0]}${Tp.largerEq}\${args[1]}\\right)`},smaller:{2:`\\left(\${args[0]}${Tp.smaller}\${args[1]}\\right)`},smallerEq:{2:`\\left(\${args[0]}${Tp.smallerEq}\${args[1]}\\right)`},unequal:{2:`\\left(\${args[0]}${Tp.unequal}\${args[1]}\\right)`},erf:{1:"erf\\left(${args[0]}\\right)"},max:"\\max\\left(${args}\\right)",min:"\\min\\left(${args}\\right)",variance:"\\mathrm{Var}\\left(${args}\\right)",acos:{1:"\\cos^{-1}\\left(${args[0]}\\right)"},acosh:{1:"\\cosh^{-1}\\left(${args[0]}\\right)"},acot:{1:"\\cot^{-1}\\left(${args[0]}\\right)"},acoth:{1:"\\coth^{-1}\\left(${args[0]}\\right)"},acsc:{1:"\\csc^{-1}\\left(${args[0]}\\right)"},acsch:{1:"\\mathrm{csch}^{-1}\\left(${args[0]}\\right)"},asec:{1:"\\sec^{-1}\\left(${args[0]}\\right)"},asech:{1:"\\mathrm{sech}^{-1}\\left(${args[0]}\\right)"},asin:{1:"\\sin^{-1}\\left(${args[0]}\\right)"},asinh:{1:"\\sinh^{-1}\\left(${args[0]}\\right)"},atan:{1:"\\tan^{-1}\\left(${args[0]}\\right)"},atan2:{2:"\\mathrm{atan2}\\left(${args}\\right)"},atanh:{1:"\\tanh^{-1}\\left(${args[0]}\\right)"},cos:{1:"\\cos\\left(${args[0]}\\right)"},cosh:{1:"\\cosh\\left(${args[0]}\\right)"},cot:{1:"\\cot\\left(${args[0]}\\right)"},coth:{1:"\\coth\\left(${args[0]}\\right)"},csc:{1:"\\csc\\left(${args[0]}\\right)"},csch:{1:"\\mathrm{csch}\\left(${args[0]}\\right)"},sec:{1:"\\sec\\left(${args[0]}\\right)"},sech:{1:"\\mathrm{sech}\\left(${args[0]}\\right)"},sin:{1:"\\sin\\left(${args[0]}\\right)"},sinh:{1:"\\sinh\\left(${args[0]}\\right)"},tan:{1:"\\tan\\left(${args[0]}\\right)"},tanh:{1:"\\tanh\\left(${args[0]}\\right)"},to:{2:`\\left(\${args[0]}${Tp.to}\${args[1]}\\right)`},numeric:function(e,t){return e.args[0].toTex()},number:{0:"0",1:"\\left(${args[0]}\\right)",2:"\\left(\\left(${args[0]}\\right)${args[1]}\\right)"},string:{0:'\\mathtt{""}',1:"\\mathrm{string}\\left(${args[0]}\\right)"},bignumber:{0:"0",1:"\\left(${args[0]}\\right)"},bigint:{0:"0",1:"\\left(${args[0]}\\right)"},complex:{0:"0",1:"\\left(${args[0]}\\right)",2:`\\left(\\left(\${args[0]}\\right)+${Cp.i}\\cdot\\left(\${args[1]}\\right)\\right)`},matrix:{0:"\\begin{bmatrix}\\end{bmatrix}",1:"\\left(${args[0]}\\right)",2:"\\left(${args[0]}\\right)"},sparse:{0:"\\begin{bsparse}\\end{bsparse}",1:"\\left(${args[0]}\\right)"},unit:{1:"\\left(${args[0]}\\right)",2:"\\left(\\left(${args[0]}\\right)${args[1]}\\right)"}},Fp={deg:"^\\circ"};function Bp(e){return Mp(e,{preserveFormatting:!0})}function Op(e,t){return(t=void 0!==t&&t)?Ae(Fp,e)?Fp[e]:"\\mathrm{"+Bp(e)+"}":Ae(Cp,e)?Cp[e]:Bp(e)}const _p="ConstantNode",zp=Se(_p,["Node"],(e=>{let{Node:t}=e;class r extends t{constructor(e){super(),this.value=e}get type(){return _p}get isConstantNode(){return!0}_compile(e,t){const r=this.value;return function(){return r}}forEach(e){}map(e){return this.clone()}clone(){return new r(this.value)}_toString(e){return Qr(this.value,e)}_toHTML(e){const t=this._toString(e);switch(H(this.value)){case"number":case"bigint":case"BigNumber":case"Fraction":return'<span class="math-number">'+t+"</span>";case"string":return'<span class="math-string">'+t+"</span>";case"boolean":return'<span class="math-boolean">'+t+"</span>";case"null":return'<span class="math-null-symbol">'+t+"</span>";case"undefined":return'<span class="math-undefined">'+t+"</span>";default:return'<span class="math-symbol">'+t+"</span>"}}toJSON(){return{mathjs:_p,value:this.value}}static fromJSON(e){return new r(e.value)}_toTex(e){const t=this._toString(e),r=H(this.value);switch(r){case"string":return"\\mathtt{"+Bp(t)+"}";case"number":case"BigNumber":{if(!("BigNumber"===r?this.value.isFinite():isFinite(this.value)))return this.value.valueOf()<0?"-\\infty":"\\infty";const e=t.toLowerCase().indexOf("e");return-1!==e?t.substring(0,e)+"\\cdot10^{"+t.substring(e+1)+"}":t}case"bigint":return t.toString();case"Fraction":return this.value.toLatex();default:return t}}}return up(r,"name",_p),r}),{isClass:!0,isNode:!0}),Ip="FunctionAssignmentNode",kp=Se(Ip,["typed","Node"],(e=>{let{typed:t,Node:r}=e;function n(e,t,r){const n=yp(e,t,r),i=yp(e.expr,t,r);return"all"===t||null!==i&&i<=n}class i extends r{constructor(e,t,r){if(super(),"string"!=typeof e)throw new TypeError('String expected for parameter "name"');if(!Array.isArray(t))throw new TypeError('Array containing strings or objects expected for parameter "params"');if(!k(r))throw new TypeError('Node expected for parameter "expr"');if(op.has(e))throw new Error('Illegal function name, "'+e+'" is a reserved keyword');const n=new Set;for(const e of t){const t="string"==typeof e?e:e.name;if(n.has(t))throw new Error(`Duplicate parameter name "${t}"`);n.add(t)}this.name=e,this.params=t.map((function(e){return e&&e.name||e})),this.types=t.map((function(e){return e&&e.type||"any"})),this.expr=r}get type(){return Ip}get isFunctionAssignmentNode(){return!0}_compile(e,r){const n=Object.create(r);An(this.params,(function(e){n[e]=!0}));const i=this.expr._compile(e,n),o=this.name,a=this.params,s=Cn(this.types,","),u=o+"("+Cn(this.params,", ")+")";return function(e,r,n){const c={};c[s]=function(){const t=Object.create(r);for(let e=0;e<a.length;e++)t[a[e]]=arguments[e];return i(e,t,n)};const l=t(o,c);return l.syntax=u,e.set(o,l),l}}forEach(e){e(this.expr,"expr",this)}map(e){const t=this._ifNode(e(this.expr,"expr",this));return new i(this.name,this.params.slice(0),t)}clone(){return new i(this.name,this.params.slice(0),this.expr)}_toString(e){const t=e&&e.parenthesis?e.parenthesis:"keep";let r=this.expr.toString(e);return n(this,t,e&&e.implicit)&&(r="("+r+")"),this.name+"("+this.params.join(", ")+") = "+r}toJSON(){const e=this.types;return{mathjs:Ip,name:this.name,params:this.params.map((function(t,r){return{name:t,type:e[r]}})),expr:this.expr}}static fromJSON(e){return new i(e.name,e.params,e.expr)}_toHTML(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=[];for(let e=0;e<this.params.length;e++)r.push('<span class="math-symbol math-parameter">'+tn(this.params[e])+"</span>");let i=this.expr.toHTML(e);return n(this,t,e&&e.implicit)&&(i='<span class="math-parenthesis math-round-parenthesis">(</span>'+i+'<span class="math-parenthesis math-round-parenthesis">)</span>'),'<span class="math-function">'+tn(this.name)+'</span><span class="math-parenthesis math-round-parenthesis">(</span>'+r.join('<span class="math-separator">,</span>')+'<span class="math-parenthesis math-round-parenthesis">)</span><span class="math-operator math-assignment-operator math-variable-assignment-operator math-binary-operator">=</span>'+i}_toTex(e){const t=e&&e.parenthesis?e.parenthesis:"keep";let r=this.expr.toTex(e);return n(this,t,e&&e.implicit)&&(r=`\\left(${r}\\right)`),"\\mathrm{"+this.name+"}\\left("+this.params.map(Op).join(",")+"\\right)="+r}}return up(i,"name",Ip),i}),{isClass:!0,isNode:!0}),qp="IndexNode",Rp=Se(qp,["Node","size"],(e=>{let{Node:t,size:r}=e;class n extends t{constructor(e,t){if(super(),this.dimensions=e,this.dotNotation=t||!1,!Array.isArray(e)||!e.every(k))throw new TypeError('Array containing Nodes expected for parameter "dimensions"');if(this.dotNotation&&!this.isObjectProperty())throw new Error("dotNotation only applicable for object properties")}get type(){return qp}get isIndexNode(){return!0}_compile(e,t){const n=En(this.dimensions,(function(n,i){if(n.filter((e=>e.isSymbolNode&&"end"===e.name)).length>0){const o=Object.create(t);o.end=!0;const a=n._compile(e,o);return function(e,t,n){if(!f(n)&&!l(n)&&!c(n))throw new TypeError('Cannot resolve "end": context must be a Matrix, Array, or string but is '+H(n));const o=r(n).valueOf(),s=Object.create(t);return s.end=o[i],a(e,s,n)}}return n._compile(e,t)})),i=Te(e,"index");return function(e,t,r){const o=En(n,(function(n){return n(e,t,r)}));return i(...o)}}forEach(e){for(let t=0;t<this.dimensions.length;t++)e(this.dimensions[t],"dimensions["+t+"]",this)}map(e){const t=[];for(let r=0;r<this.dimensions.length;r++)t[r]=this._ifNode(e(this.dimensions[r],"dimensions["+r+"]",this));return new n(t,this.dotNotation)}clone(){return new n(this.dimensions.slice(0),this.dotNotation)}isObjectProperty(){return 1===this.dimensions.length&&B(this.dimensions[0])&&"string"==typeof this.dimensions[0].value}getObjectProperty(){return this.isObjectProperty()?this.dimensions[0].value:null}_toString(e){return this.dotNotation?"."+this.getObjectProperty():"["+this.dimensions.join(", ")+"]"}toJSON(){return{mathjs:qp,dimensions:this.dimensions,dotNotation:this.dotNotation}}static fromJSON(e){return new n(e.dimensions,e.dotNotation)}_toHTML(e){const t=[];for(let e=0;e<this.dimensions.length;e++)t[e]=this.dimensions[e].toHTML();return this.dotNotation?'<span class="math-operator math-accessor-operator">.</span><span class="math-symbol math-property">'+tn(this.getObjectProperty())+"</span>":'<span class="math-parenthesis math-square-parenthesis">[</span>'+t.join('<span class="math-separator">,</span>')+'<span class="math-parenthesis math-square-parenthesis">]</span>'}_toTex(e){const t=this.dimensions.map((function(t){return t.toTex(e)}));return this.dotNotation?"."+this.getObjectProperty():"_{"+t.join(",")+"}"}}return up(n,"name",qp),n}),{isClass:!0,isNode:!0}),Pp="ObjectNode",jp=Se(Pp,["Node"],(e=>{let{Node:t}=e;class r extends t{constructor(e){if(super(),this.properties=e||{},e&&("object"!=typeof e||!Object.keys(e).every((function(t){return k(e[t])}))))throw new TypeError("Object containing Nodes expected")}get type(){return Pp}get isObjectNode(){return!0}_compile(e,t){const r={};for(const n in this.properties)if(Ae(this.properties,n)){const i=Kr(n),o=JSON.parse(i),a=Te(this.properties,n);r[o]=a._compile(e,t)}return function(e,t,n){const i={};for(const o in r)Ae(r,o)&&(i[o]=r[o](e,t,n));return i}}forEach(e){for(const t in this.properties)Ae(this.properties,t)&&e(this.properties[t],"properties["+Kr(t)+"]",this)}map(e){const t={};for(const r in this.properties)Ae(this.properties,r)&&(t[r]=this._ifNode(e(this.properties[r],"properties["+Kr(r)+"]",this)));return new r(t)}clone(){const e={};for(const t in this.properties)Ae(this.properties,t)&&(e[t]=this.properties[t]);return new r(e)}_toString(e){const t=[];for(const r in this.properties)Ae(this.properties,r)&&t.push(Kr(r)+": "+this.properties[r].toString(e));return"{"+t.join(", ")+"}"}toJSON(){return{mathjs:Pp,properties:this.properties}}static fromJSON(e){return new r(e.properties)}_toHTML(e){const t=[];for(const r in this.properties)Ae(this.properties,r)&&t.push('<span class="math-symbol math-property">'+tn(r)+'</span><span class="math-operator math-assignment-operator math-property-assignment-operator math-binary-operator">:</span>'+this.properties[r].toHTML(e));return'<span class="math-parenthesis math-curly-parenthesis">{</span>'+t.join('<span class="math-separator">,</span>')+'<span class="math-parenthesis math-curly-parenthesis">}</span>'}_toTex(e){const t=[];for(const r in this.properties)Ae(this.properties,r)&&t.push("\\mathbf{"+r+":} & "+this.properties[r].toTex(e)+"\\\\");return"\\left\\{\\begin{array}{ll}"+t.join("\n")+"\\end{array}\\right\\}"}}return up(r,"name",Pp),r}),{isClass:!0,isNode:!0});function Up(e,t){return new ke(e,new Ie(t),new Set(Object.keys(t)))}const Lp="OperatorNode",$p=Se(Lp,["Node"],(e=>{let{Node:t}=e;function r(e,t){let n=e;if("auto"===t)for(;P(n);)n=n.content;return!!B(n)||!!R(n)&&r(n.args[0],t)}function n(e,t,n,i,o){const a=yp(e,t,n),s=xp(e,t);if("all"===t||i.length>2&&"OperatorNode:add"!==e.getIdentifier()&&"OperatorNode:multiply"!==e.getIdentifier())return i.map((function(e){switch(e.getContent().type){case"ArrayNode":case"ConstantNode":case"SymbolNode":case"ParenthesisNode":return!1;default:return!0}}));let u;switch(i.length){case 0:u=[];break;case 1:{const r=yp(i[0],t,n,e);if(o&&null!==r){let n,o;if("keep"===t?(n=i[0].getIdentifier(),o=e.getIdentifier()):(n=i[0].getContent().getIdentifier(),o=e.getContent().getIdentifier()),!1===hp[a][o].latexLeftParens){u=[!1];break}if(!1===hp[r][n].latexParens){u=[!1];break}}if(null===r){u=[!1];break}if(r<=a){u=[!0];break}u=[!1]}break;case 2:{let r;const c=yp(i[0],t,n,e),l=bp(e,i[0],t);let f;r=null!==c&&(c===a&&"right"===s&&!l||c<a);const p=yp(i[1],t,n,e),m=bp(e,i[1],t);if(f=null!==p&&(p===a&&"left"===s&&!m||p<a),o){let n,i,o;"keep"===t?(n=e.getIdentifier(),i=e.args[0].getIdentifier(),o=e.args[1].getIdentifier()):(n=e.getContent().getIdentifier(),i=e.args[0].getContent().getIdentifier(),o=e.args[1].getContent().getIdentifier()),null!==c&&(!1===hp[a][n].latexLeftParens&&(r=!1),!1===hp[c][i].latexParens&&(r=!1)),null!==p&&(!1===hp[a][n].latexRightParens&&(f=!1),!1===hp[p][o].latexParens&&(f=!1))}u=[r,f]}break;default:"OperatorNode:add"!==e.getIdentifier()&&"OperatorNode:multiply"!==e.getIdentifier()||(u=i.map((function(r){const i=yp(r,t,n,e),o=bp(e,r,t),u=xp(r,t);return null!==i&&(a===i&&s===u&&!o||i<a)})))}if(i.length>=2&&"OperatorNode:multiply"===e.getIdentifier()&&e.implicit&&"all"!==t&&"hide"===n)for(let e=1;e<u.length;++e)!r(i[e],t)||u[e-1]||"keep"===t&&P(i[e-1])||(u[e]=!0);return u}class i extends t{constructor(e,t,r,n,i){if(super(),"string"!=typeof e)throw new TypeError('string expected for parameter "op"');if("string"!=typeof t)throw new TypeError('string expected for parameter "fn"');if(!Array.isArray(r)||!r.every(k))throw new TypeError('Array containing Nodes expected for parameter "args"');this.implicit=!0===n,this.isPercentage=!0===i,this.op=e,this.fn=t,this.args=r||[]}get type(){return Lp}get isOperatorNode(){return!0}_compile(e,t){if("string"!=typeof this.fn||!Be(e,this.fn))throw e[this.fn]?new Error('No access to function "'+this.fn+'"'):new Error("Function "+this.fn+' missing in provided namespace "math"');const r=Te(e,this.fn),n=En(this.args,(function(r){return r._compile(e,t)}));if("function"==typeof r&&!0===r.rawArgs){const t=this.args;return function(n,i,o){return r(t,e,Up(n,i))}}if(1===n.length){const e=n[0];return function(t,n,i){return r(e(t,n,i))}}if(2===n.length){const e=n[0],t=n[1];return function(n,i,o){return r(e(n,i,o),t(n,i,o))}}return function(e,t,i){return r.apply(null,En(n,(function(r){return r(e,t,i)})))}}forEach(e){for(let t=0;t<this.args.length;t++)e(this.args[t],"args["+t+"]",this)}map(e){const t=[];for(let r=0;r<this.args.length;r++)t[r]=this._ifNode(e(this.args[r],"args["+r+"]",this));return new i(this.op,this.fn,t,this.implicit,this.isPercentage)}clone(){return new i(this.op,this.fn,this.args.slice(0),this.implicit,this.isPercentage)}isUnary(){return 1===this.args.length}isBinary(){return 2===this.args.length}_toString(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=e&&e.implicit?e.implicit:"hide",i=this.args,o=n(this,t,r,i,!1);if(1===i.length){const r=xp(this,t);let n=i[0].toString(e);o[0]&&(n="("+n+")");const a=/[a-zA-Z]+/.test(this.op);return"right"===r?this.op+(a?" ":"")+n:"left"===r?n+(a?" ":"")+this.op:n+this.op}if(2===i.length){let t=i[0].toString(e),n=i[1].toString(e);return o[0]&&(t="("+t+")"),o[1]&&(n="("+n+")"),this.implicit&&"OperatorNode:multiply"===this.getIdentifier()&&"hide"===r?t+" "+n:t+" "+this.op+" "+n}if(i.length>2&&("OperatorNode:add"===this.getIdentifier()||"OperatorNode:multiply"===this.getIdentifier())){const t=i.map((function(t,r){return t=t.toString(e),o[r]&&(t="("+t+")"),t}));return this.implicit&&"OperatorNode:multiply"===this.getIdentifier()&&"hide"===r?t.join(" "):t.join(" "+this.op+" ")}return this.fn+"("+this.args.join(", ")+")"}toJSON(){return{mathjs:Lp,op:this.op,fn:this.fn,args:this.args,implicit:this.implicit,isPercentage:this.isPercentage}}static fromJSON(e){return new i(e.op,e.fn,e.args,e.implicit,e.isPercentage)}_toHTML(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=e&&e.implicit?e.implicit:"hide",i=this.args,o=n(this,t,r,i,!1);if(1===i.length){const r=xp(this,t);let n=i[0].toHTML(e);return o[0]&&(n='<span class="math-parenthesis math-round-parenthesis">(</span>'+n+'<span class="math-parenthesis math-round-parenthesis">)</span>'),"right"===r?'<span class="math-operator math-unary-operator math-lefthand-unary-operator">'+tn(this.op)+"</span>"+n:n+'<span class="math-operator math-unary-operator math-righthand-unary-operator">'+tn(this.op)+"</span>"}if(2===i.length){let t=i[0].toHTML(e),n=i[1].toHTML(e);return o[0]&&(t='<span class="math-parenthesis math-round-parenthesis">(</span>'+t+'<span class="math-parenthesis math-round-parenthesis">)</span>'),o[1]&&(n='<span class="math-parenthesis math-round-parenthesis">(</span>'+n+'<span class="math-parenthesis math-round-parenthesis">)</span>'),this.implicit&&"OperatorNode:multiply"===this.getIdentifier()&&"hide"===r?t+'<span class="math-operator math-binary-operator math-implicit-binary-operator"></span>'+n:t+'<span class="math-operator math-binary-operator math-explicit-binary-operator">'+tn(this.op)+"</span>"+n}{const t=i.map((function(t,r){return t=t.toHTML(e),o[r]&&(t='<span class="math-parenthesis math-round-parenthesis">(</span>'+t+'<span class="math-parenthesis math-round-parenthesis">)</span>'),t}));return i.length>2&&("OperatorNode:add"===this.getIdentifier()||"OperatorNode:multiply"===this.getIdentifier())?this.implicit&&"OperatorNode:multiply"===this.getIdentifier()&&"hide"===r?t.join('<span class="math-operator math-binary-operator math-implicit-binary-operator"></span>'):t.join('<span class="math-operator math-binary-operator math-explicit-binary-operator">'+tn(this.op)+"</span>"):'<span class="math-function">'+tn(this.fn)+'</span><span class="math-paranthesis math-round-parenthesis">(</span>'+t.join('<span class="math-separator">,</span>')+'<span class="math-paranthesis math-round-parenthesis">)</span>'}}_toTex(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=e&&e.implicit?e.implicit:"hide",i=this.args,o=n(this,t,r,i,!0);let a=Tp[this.fn];if(a=void 0===a?this.op:a,1===i.length){const r=xp(this,t);let n=i[0].toTex(e);return o[0]&&(n=`\\left(${n}\\right)`),"right"===r?a+n:n+a}if(2===i.length){const n=i[0];let s=n.toTex(e);o[0]&&(s=`\\left(${s}\\right)`);let u,c=i[1].toTex(e);switch(o[1]&&(c=`\\left(${c}\\right)`),u="keep"===t?n.getIdentifier():n.getContent().getIdentifier(),this.getIdentifier()){case"OperatorNode:divide":return a+"{"+s+"}{"+c+"}";case"OperatorNode:pow":switch(s="{"+s+"}",c="{"+c+"}",u){case"ConditionalNode":case"OperatorNode:divide":s=`\\left(${s}\\right)`}break;case"OperatorNode:multiply":if(this.implicit&&"hide"===r)return s+"~"+c}return s+a+c}if(i.length>2&&("OperatorNode:add"===this.getIdentifier()||"OperatorNode:multiply"===this.getIdentifier())){const t=i.map((function(t,r){return t=t.toTex(e),o[r]&&(t=`\\left(${t}\\right)`),t}));return"OperatorNode:multiply"===this.getIdentifier()&&this.implicit&&"hide"===r?t.join("~"):t.join(a)}return"\\mathrm{"+this.fn+"}\\left("+i.map((function(t){return t.toTex(e)})).join(",")+"\\right)"}getIdentifier(){return this.type+":"+this.fn}}return up(i,"name",Lp),i}),{isClass:!0,isNode:!0}),Hp="ParenthesisNode",Gp=Se(Hp,["Node"],(e=>{let{Node:t}=e;class r extends t{constructor(e){if(super(),!k(e))throw new TypeError('Node expected for parameter "content"');this.content=e}get type(){return Hp}get isParenthesisNode(){return!0}_compile(e,t){return this.content._compile(e,t)}getContent(){return this.content.getContent()}forEach(e){e(this.content,"content",this)}map(e){const t=e(this.content,"content",this);return new r(t)}clone(){return new r(this.content)}_toString(e){return!e||e&&!e.parenthesis||e&&"keep"===e.parenthesis?"("+this.content.toString(e)+")":this.content.toString(e)}toJSON(){return{mathjs:Hp,content:this.content}}static fromJSON(e){return new r(e.content)}_toHTML(e){return!e||e&&!e.parenthesis||e&&"keep"===e.parenthesis?'<span class="math-parenthesis math-round-parenthesis">(</span>'+this.content.toHTML(e)+'<span class="math-parenthesis math-round-parenthesis">)</span>':this.content.toHTML(e)}_toTex(e){return!e||e&&!e.parenthesis||e&&"keep"===e.parenthesis?`\\left(${this.content.toTex(e)}\\right)`:this.content.toTex(e)}}return up(r,"name",Hp),r}),{isClass:!0,isNode:!0}),Zp="RangeNode",Vp=Se(Zp,["Node"],(e=>{let{Node:t}=e;function r(e,t,r){const n=yp(e,t,r),i={},o=yp(e.start,t,r);if(i.start=null!==o&&o<=n||"all"===t,e.step){const o=yp(e.step,t,r);i.step=null!==o&&o<=n||"all"===t}const a=yp(e.end,t,r);return i.end=null!==a&&a<=n||"all"===t,i}class n extends t{constructor(e,t,r){if(super(),!k(e))throw new TypeError("Node expected");if(!k(t))throw new TypeError("Node expected");if(r&&!k(r))throw new TypeError("Node expected");if(arguments.length>3)throw new Error("Too many arguments");this.start=e,this.end=t,this.step=r||null}get type(){return Zp}get isRangeNode(){return!0}needsEnd(){return this.filter((function(e){return L(e)&&"end"===e.name})).length>0}_compile(e,t){const r=e.range,n=this.start._compile(e,t),i=this.end._compile(e,t);if(this.step){const o=this.step._compile(e,t);return function(e,t,a){return r(n(e,t,a),i(e,t,a),o(e,t,a))}}return function(e,t,o){return r(n(e,t,o),i(e,t,o))}}forEach(e){e(this.start,"start",this),e(this.end,"end",this),this.step&&e(this.step,"step",this)}map(e){return new n(this._ifNode(e(this.start,"start",this)),this._ifNode(e(this.end,"end",this)),this.step&&this._ifNode(e(this.step,"step",this)))}clone(){return new n(this.start,this.end,this.step&&this.step)}_toString(e){const t=r(this,e&&e.parenthesis?e.parenthesis:"keep",e&&e.implicit);let n,i=this.start.toString(e);if(t.start&&(i="("+i+")"),n=i,this.step){let r=this.step.toString(e);t.step&&(r="("+r+")"),n+=":"+r}let o=this.end.toString(e);return t.end&&(o="("+o+")"),n+=":"+o,n}toJSON(){return{mathjs:Zp,start:this.start,end:this.end,step:this.step}}static fromJSON(e){return new n(e.start,e.end,e.step)}_toHTML(e){const t=r(this,e&&e.parenthesis?e.parenthesis:"keep",e&&e.implicit);let n,i=this.start.toHTML(e);if(t.start&&(i='<span class="math-parenthesis math-round-parenthesis">(</span>'+i+'<span class="math-parenthesis math-round-parenthesis">)</span>'),n=i,this.step){let r=this.step.toHTML(e);t.step&&(r='<span class="math-parenthesis math-round-parenthesis">(</span>'+r+'<span class="math-parenthesis math-round-parenthesis">)</span>'),n+='<span class="math-operator math-range-operator">:</span>'+r}let o=this.end.toHTML(e);return t.end&&(o='<span class="math-parenthesis math-round-parenthesis">(</span>'+o+'<span class="math-parenthesis math-round-parenthesis">)</span>'),n+='<span class="math-operator math-range-operator">:</span>'+o,n}_toTex(e){const t=r(this,e&&e.parenthesis?e.parenthesis:"keep",e&&e.implicit);let n=this.start.toTex(e);if(t.start&&(n=`\\left(${n}\\right)`),this.step){let r=this.step.toTex(e);t.step&&(r=`\\left(${r}\\right)`),n+=":"+r}let i=this.end.toTex(e);return t.end&&(i=`\\left(${i}\\right)`),n+=":"+i,n}}return up(n,"name",Zp),n}),{isClass:!0,isNode:!0}),Wp="RelationalNode",Yp=Se(Wp,["Node"],(e=>{let{Node:t}=e;const r={equal:"==",unequal:"!=",smaller:"<",larger:">",smallerEq:"<=",largerEq:">="};class n extends t{constructor(e,t){if(super(),!Array.isArray(e))throw new TypeError("Parameter conditionals must be an array");if(!Array.isArray(t))throw new TypeError("Parameter params must be an array");if(e.length!==t.length-1)throw new TypeError("Parameter params must contain exactly one more element than parameter conditionals");this.conditionals=e,this.params=t}get type(){return Wp}get isRelationalNode(){return!0}_compile(e,t){const r=this,n=this.params.map((r=>r._compile(e,t)));return function(t,i,o){let a,s=n[0](t,i,o);for(let u=0;u<r.conditionals.length;u++)if(a=s,s=n[u+1](t,i,o),!Te(e,r.conditionals[u])(a,s))return!1;return!0}}forEach(e){this.params.forEach(((t,r)=>e(t,"params["+r+"]",this)),this)}map(e){return new n(this.conditionals.slice(),this.params.map(((t,r)=>this._ifNode(e(t,"params["+r+"]",this))),this))}clone(){return new n(this.conditionals,this.params)}_toString(e){const t=e&&e.parenthesis?e.parenthesis:"keep",n=yp(this,t,e&&e.implicit),i=this.params.map((function(r,i){const o=yp(r,t,e&&e.implicit);return"all"===t||null!==o&&o<=n?"("+r.toString(e)+")":r.toString(e)}));let o=i[0];for(let e=0;e<this.conditionals.length;e++)o+=" "+r[this.conditionals[e]],o+=" "+i[e+1];return o}toJSON(){return{mathjs:Wp,conditionals:this.conditionals,params:this.params}}static fromJSON(e){return new n(e.conditionals,e.params)}_toHTML(e){const t=e&&e.parenthesis?e.parenthesis:"keep",n=yp(this,t,e&&e.implicit),i=this.params.map((function(r,i){const o=yp(r,t,e&&e.implicit);return"all"===t||null!==o&&o<=n?'<span class="math-parenthesis math-round-parenthesis">(</span>'+r.toHTML(e)+'<span class="math-parenthesis math-round-parenthesis">)</span>':r.toHTML(e)}));let o=i[0];for(let e=0;e<this.conditionals.length;e++)o+='<span class="math-operator math-binary-operator math-explicit-binary-operator">'+tn(r[this.conditionals[e]])+"</span>"+i[e+1];return o}_toTex(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=yp(this,t,e&&e.implicit),n=this.params.map((function(n,i){const o=yp(n,t,e&&e.implicit);return"all"===t||null!==o&&o<=r?"\\left("+n.toTex(e)+"\right)":n.toTex(e)}));let i=n[0];for(let e=0;e<this.conditionals.length;e++)i+=Tp[this.conditionals[e]]+n[e+1];return i}}return up(n,"name",Wp),n}),{isClass:!0,isNode:!0}),Jp=Se("SymbolNode",["math","?Unit","Node"],(e=>{let{math:t,Unit:r,Node:n}=e;function i(e){return!!r&&r.isValuelessUnit(e)}class o extends n{constructor(e){if(super(),"string"!=typeof e)throw new TypeError('String expected for parameter "name"');this.name=e}get type(){return"SymbolNode"}get isSymbolNode(){return!0}_compile(e,t){const n=this.name;if(!0===t[n])return function(e,t,r){return Te(t,n)};if(n in e)return function(t,r,i){return t.has(n)?t.get(n):Te(e,n)};{const e=i(n);return function(t,i,a){return t.has(n)?t.get(n):e?new r(null,n):o.onUndefinedSymbol(n)}}}forEach(e){}map(e){return this.clone()}static onUndefinedSymbol(e){throw new Error("Undefined symbol "+e)}clone(){return new o(this.name)}_toString(e){return this.name}_toHTML(e){const t=tn(this.name);return"true"===t||"false"===t?'<span class="math-symbol math-boolean">'+t+"</span>":"i"===t?'<span class="math-symbol math-imaginary-symbol">'+t+"</span>":"Infinity"===t?'<span class="math-symbol math-infinity-symbol">'+t+"</span>":"NaN"===t?'<span class="math-symbol math-nan-symbol">'+t+"</span>":"null"===t?'<span class="math-symbol math-null-symbol">'+t+"</span>":"undefined"===t?'<span class="math-symbol math-undefined-symbol">'+t+"</span>":'<span class="math-symbol">'+t+"</span>"}toJSON(){return{mathjs:"SymbolNode",name:this.name}}static fromJSON(e){return new o(e.name)}_toTex(e){let r=!1;void 0===t[this.name]&&i(this.name)&&(r=!0);const n=Op(this.name,r);return"\\"===n[0]?n:" "+n}}return o}),{isClass:!0,isNode:!0}),Xp="FunctionNode",Qp=Se(Xp,["math","Node","SymbolNode"],(e=>{var t;let{math:r,Node:n,SymbolNode:i}=e;const o=e=>Qr(e,{truncate:78});function a(e,t,r){let n="";const i=/\$(?:\{([a-z_][a-z_0-9]*)(?:\[([0-9]+)\])?\}|\$)/gi;let o,a=0;for(;null!==(o=i.exec(e));)if(n+=e.substring(a,o.index),a=o.index,"$$"===o[0])n+="$",a++;else{a+=o[0].length;const e=t[o[1]];if(!e)throw new ReferenceError("Template: Property "+o[1]+" does not exist.");if(void 0===o[2])switch(typeof e){case"string":n+=e;break;case"object":if(k(e))n+=e.toTex(r);else{if(!Array.isArray(e))throw new TypeError("Template: "+o[1]+" has to be a Node, String or array of Nodes");n+=e.map((function(e,t){if(k(e))return e.toTex(r);throw new TypeError("Template: "+o[1]+"["+t+"] is not a Node.")})).join(",")}break;default:throw new TypeError("Template: "+o[1]+" has to be a Node, String or array of Nodes")}else{if(!k(e[o[2]]&&e[o[2]]))throw new TypeError("Template: "+o[1]+"["+o[2]+"] is not a Node.");n+=e[o[2]].toTex(r)}}return n+=e.slice(a),n}class s extends n{constructor(e,t){if(super(),"string"==typeof e&&(e=new i(e)),!k(e))throw new TypeError('Node expected as parameter "fn"');if(!Array.isArray(t)||!t.every(k))throw new TypeError('Array containing Nodes expected for parameter "args"');this.fn=e,this.args=t||[]}get name(){return this.fn.name||""}get type(){return Xp}get isFunctionNode(){return!0}_compile(e,t){const r=this.args.map((r=>r._compile(e,t)));if(!L(this.fn)){if(M(this.fn)&&I(this.fn.index)&&this.fn.index.isObjectProperty()){const n=this.fn.object._compile(e,t),i=this.fn.index.getObjectProperty(),o=this.args;return function(t,a,s){const u=n(t,a,s),c=function(e,t){if(!Be(e,t))throw new Error('No access to method "'+t+'"');return e[t]}(u,i);if(null!=c&&c.rawArgs)return c(o,e,Up(t,a));{const e=r.map((e=>e(t,a,s)));return c.apply(u,e)}}}{const n=this.fn.toString(),i=this.fn._compile(e,t),a=this.args;return function(t,s,u){const c=i(t,s,u);if("function"!=typeof c)throw new TypeError(`Expression '${n}' did not evaluate to a function; value is:\n ${o(c)}`);if(c.rawArgs)return c(a,e,Up(t,s));{const e=r.map((e=>e(t,s,u)));return c.apply(c,e)}}}}{const n=this.fn.name;if(t[n]){const t=this.args;return function(i,a,s){const u=Te(a,n);if("function"!=typeof u)throw new TypeError(`Argument '${n}' was not a function; received: ${o(u)}`);if(u.rawArgs)return u(t,e,Up(i,a));{const e=r.map((e=>e(i,a,s)));return u.apply(u,e)}}}{const t=n in e?Te(e,n):void 0,i="function"==typeof t&&!0===t.rawArgs,a=t=>{let r;if(t.has(n))r=t.get(n);else{if(!(n in e))return s.onUndefinedFunction(n);r=Te(e,n)}if("function"==typeof r)return r;throw new TypeError(`'${n}' is not a function; its value is:\n ${o(r)}`)};if(i){const t=this.args;return function(r,n,i){return a(r)(t,e,Up(r,n))}}switch(r.length){case 0:return function(e,t,r){return a(e)()};case 1:return function(e,t,n){return a(e)((0,r[0])(e,t,n))};case 2:return function(e,t,n){const i=a(e),o=r[0],s=r[1];return i(o(e,t,n),s(e,t,n))};default:return function(e,t,n){return a(e)(...r.map((r=>r(e,t,n))))}}}}}forEach(e){e(this.fn,"fn",this);for(let t=0;t<this.args.length;t++)e(this.args[t],"args["+t+"]",this)}map(e){const t=this._ifNode(e(this.fn,"fn",this)),r=[];for(let t=0;t<this.args.length;t++)r[t]=this._ifNode(e(this.args[t],"args["+t+"]",this));return new s(t,r)}clone(){return new s(this.fn,this.args.slice(0))}toString(e){let t;const r=this.fn.toString(e);return e&&"object"==typeof e.handler&&Ae(e.handler,r)&&(t=e.handler[r](this,e)),void 0!==t?t:super.toString(e)}_toString(e){const t=this.args.map((function(t){return t.toString(e)}));return(_(this.fn)?"("+this.fn.toString(e)+")":this.fn.toString(e))+"("+t.join(", ")+")"}toJSON(){return{mathjs:Xp,fn:this.fn,args:this.args}}_toHTML(e){const t=this.args.map((function(t){return t.toHTML(e)}));return'<span class="math-function">'+tn(this.fn)+'</span><span class="math-paranthesis math-round-parenthesis">(</span>'+t.join('<span class="math-separator">,</span>')+'<span class="math-paranthesis math-round-parenthesis">)</span>'}toTex(e){let t;return e&&"object"==typeof e.handler&&Ae(e.handler,this.name)&&(t=e.handler[this.name](this,e)),void 0!==t?t:super.toTex(e)}_toTex(e){const t=this.args.map((function(t){return t.toTex(e)}));let n,i;switch(Dp[this.name]&&(n=Dp[this.name]),!r[this.name]||"function"!=typeof r[this.name].toTex&&"object"!=typeof r[this.name].toTex&&"string"!=typeof r[this.name].toTex||(n=r[this.name].toTex),typeof n){case"function":i=n(this,e);break;case"string":i=a(n,this,e);break;case"object":switch(typeof n[t.length]){case"function":i=n[t.length](this,e);break;case"string":i=a(n[t.length],this,e)}}return void 0!==i?i:a("\\mathrm{${name}}\\left(${args}\\right)",this,e)}getIdentifier(){return this.type+":"+this.name}}return t=s,up(s,"name",Xp),up(s,"onUndefinedFunction",(function(e){throw new Error("Undefined function "+e)})),up(s,"fromJSON",(function(e){return new t(e.fn,e.args)})),s}),{isClass:!0,isNode:!0}),Kp="parse",em=Se(Kp,["typed","numeric","config","AccessorNode","ArrayNode","AssignmentNode","BlockNode","ConditionalNode","ConstantNode","FunctionAssignmentNode","FunctionNode","IndexNode","ObjectNode","OperatorNode","ParenthesisNode","RangeNode","RelationalNode","SymbolNode"],(e=>{let{typed:t,numeric:r,config:n,AccessorNode:i,ArrayNode:o,AssignmentNode:a,BlockNode:s,ConditionalNode:u,ConstantNode:c,FunctionAssignmentNode:l,FunctionNode:f,IndexNode:p,ObjectNode:m,OperatorNode:d,ParenthesisNode:h,RangeNode:g,RelationalNode:y,SymbolNode:x}=e;const b=t(Kp,{string:function(e){return U(e,{})},"Array | Matrix":function(e){return v(e,{})},"string, Object":function(e,t){return U(e,void 0!==t.nodes?t.nodes:{})},"Array | Matrix, Object":v});function v(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const r=void 0!==t.nodes?t.nodes:{};return Gn(e,(function(e){if("string"!=typeof e)throw new TypeError("String expected");return U(e,r)}))}const w={NULL:0,DELIMITER:1,NUMBER:2,SYMBOL:3,UNKNOWN:4},N={",":!0,"(":!0,")":!0,"[":!0,"]":!0,"{":!0,"}":!0,'"':!0,"'":!0,";":!0,"+":!0,"-":!0,"*":!0,".*":!0,"/":!0,"./":!0,"%":!0,"^":!0,".^":!0,"~":!0,"!":!0,"&":!0,"|":!0,"^|":!0,"=":!0,":":!0,"?":!0,"==":!0,"!=":!0,"<":!0,">":!0,"<=":!0,">=":!0,"<<":!0,">>":!0,">>>":!0},E={mod:!0,to:!0,in:!0,and:!0,xor:!0,or:!0,not:!0},A={true:!0,false:!1,null:null,undefined:void 0},S=["NaN","Infinity"],C={'"':'"',"'":"'","\\":"\\","/":"/",b:"\b",f:"\f",n:"\n",r:"\r",t:"\t"};function T(e,t){return e.expression.substr(e.index,t)}function D(e){return T(e,1)}function F(e){e.index++}function _(e){return e.expression.charAt(e.index-1)}function I(e){return e.expression.charAt(e.index+1)}function k(e){for(e.tokenType=w.NULL,e.token="",e.comment="";;){if("#"===D(e))for(;"\n"!==D(e)&&""!==D(e);)e.comment+=D(e),F(e);if(!b.isWhitespace(D(e),e.nestingLevel))break;F(e)}if(""===D(e))return void(e.tokenType=w.DELIMITER);if("\n"===D(e)&&!e.nestingLevel)return e.tokenType=w.DELIMITER,e.token=D(e),void F(e);const t=D(e),r=T(e,2),n=T(e,3);if(3===n.length&&N[n])return e.tokenType=w.DELIMITER,e.token=n,F(e),F(e),void F(e);if(2===r.length&&N[r])return e.tokenType=w.DELIMITER,e.token=r,F(e),void F(e);if(N[t])return e.tokenType=w.DELIMITER,e.token=t,void F(e);if(b.isDigitDot(t)){e.tokenType=w.NUMBER;const t=T(e,2);if("0b"===t||"0o"===t||"0x"===t){for(e.token+=D(e),F(e),e.token+=D(e),F(e);b.isHexDigit(D(e));)e.token+=D(e),F(e);if("."===D(e))for(e.token+=".",F(e);b.isHexDigit(D(e));)e.token+=D(e),F(e);else if("i"===D(e))for(e.token+="i",F(e);b.isDigit(D(e));)e.token+=D(e),F(e);return}if("."===D(e)){if(e.token+=D(e),F(e),!b.isDigit(D(e)))return void(e.tokenType=w.DELIMITER)}else{for(;b.isDigit(D(e));)e.token+=D(e),F(e);b.isDecimalMark(D(e),I(e))&&(e.token+=D(e),F(e))}for(;b.isDigit(D(e));)e.token+=D(e),F(e);if("E"===D(e)||"e"===D(e))if(b.isDigit(I(e))||"-"===I(e)||"+"===I(e)){if(e.token+=D(e),F(e),"+"!==D(e)&&"-"!==D(e)||(e.token+=D(e),F(e)),!b.isDigit(D(e)))throw le(e,'Digit expected, got "'+D(e)+'"');for(;b.isDigit(D(e));)e.token+=D(e),F(e);if(b.isDecimalMark(D(e),I(e)))throw le(e,'Digit expected, got "'+D(e)+'"')}else if("."===I(e))throw F(e),le(e,'Digit expected, got "'+D(e)+'"')}else{if(!b.isAlpha(D(e),_(e),I(e))){for(e.tokenType=w.UNKNOWN;""!==D(e);)e.token+=D(e),F(e);throw le(e,'Syntax error in part "'+e.token+'"')}for(;b.isAlpha(D(e),_(e),I(e))||b.isDigit(D(e));)e.token+=D(e),F(e);Ae(E,e.token)?e.tokenType=w.DELIMITER:e.tokenType=w.SYMBOL}}function q(e){do{k(e)}while("\n"===e.token)}function P(e){e.nestingLevel++}function j(e){e.nestingLevel--}function U(e,t){const r={extraNodes:{},expression:"",comment:"",index:0,token:"",tokenType:w.NULL,nestingLevel:0,conditionalLevel:null};Vr(r,{expression:e,extraNodes:t}),k(r);const n=function(e){let t;const r=[];let n;for(""!==e.token&&"\n"!==e.token&&";"!==e.token&&(t=$(e),e.comment&&(t.comment=e.comment));"\n"===e.token||";"===e.token;)0===r.length&&t&&(n=";"!==e.token,r.push({node:t,visible:n})),k(e),"\n"!==e.token&&";"!==e.token&&""!==e.token&&(t=$(e),e.comment&&(t.comment=e.comment),n=";"!==e.token,r.push({node:t,visible:n}));return r.length>0?new s(r):(t||(t=new c(void 0),e.comment&&(t.comment=e.comment)),t)}(r);if(""!==r.token)throw r.tokenType===w.DELIMITER?fe(r,"Unexpected operator "+r.token):le(r,'Unexpected part "'+r.token+'"');return n}function $(e){let t,r,n,i;const o=function(e){let t=function(e){let t=H(e);for(;"or"===e.token;)q(e),t=new d("or","or",[t,H(e)]);return t}(e);for(;"?"===e.token;){const r=e.conditionalLevel;e.conditionalLevel=e.nestingLevel,q(e);const n=t,i=$(e);if(":"!==e.token)throw le(e,"False part of conditional expression expected");e.conditionalLevel=null,q(e);const o=$(e);t=new u(n,i,o),e.conditionalLevel=r}return t}(e);if("="===e.token){if(L(o))return t=o.name,q(e),n=$(e),new a(new x(t),n);if(M(o))return q(e),n=$(e),new a(o.object,o.index,n);if(z(o)&&L(o.fn)&&(i=!0,r=[],t=o.name,o.args.forEach((function(e,t){L(e)?r[t]=e.name:i=!1})),i))return q(e),n=$(e),new l(t,r,n);throw le(e,"Invalid left hand side of assignment operator =")}return o}function H(e){let t=G(e);for(;"xor"===e.token;)q(e),t=new d("xor","xor",[t,G(e)]);return t}function G(e){let t=Z(e);for(;"and"===e.token;)q(e),t=new d("and","and",[t,Z(e)]);return t}function Z(e){let t=W(e);for(;"|"===e.token;)q(e),t=new d("|","bitOr",[t,W(e)]);return t}function W(e){let t=Y(e);for(;"^|"===e.token;)q(e),t=new d("^|","bitXor",[t,Y(e)]);return t}function Y(e){let t=J(e);for(;"&"===e.token;)q(e),t=new d("&","bitAnd",[t,J(e)]);return t}function J(e){const t=[X(e)],r=[],n={"==":"equal","!=":"unequal","<":"smaller",">":"larger","<=":"smallerEq",">=":"largerEq"};for(;Ae(n,e.token);){const i={name:e.token,fn:n[e.token]};r.push(i),q(e),t.push(X(e))}return 1===t.length?t[0]:2===t.length?new d(r[0].name,r[0].fn,t):new y(r.map((e=>e.fn)),t)}function X(e){let t,r,n,i;t=Q(e);const o={"<<":"leftShift",">>":"rightArithShift",">>>":"rightLogShift"};for(;Ae(o,e.token);)r=e.token,n=o[r],q(e),i=[t,Q(e)],t=new d(r,n,i);return t}function Q(e){let t,r,n,i;t=K(e);const o={to:"to",in:"to"};for(;Ae(o,e.token);)r=e.token,n=o[r],q(e),"in"===r&&""===e.token?t=new d("*","multiply",[t,new x("in")],!0):(i=[t,K(e)],t=new d(r,n,i));return t}function K(e){let t;const r=[];if(t=":"===e.token?new c(1):ee(e),":"===e.token&&e.conditionalLevel!==e.nestingLevel){for(r.push(t);":"===e.token&&r.length<3;)q(e),")"===e.token||"]"===e.token||","===e.token||""===e.token?r.push(new x("end")):r.push(ee(e));t=3===r.length?new g(r[0],r[2],r[1]):new g(r[0],r[1])}return t}function ee(e){let t,r,n,i;t=te(e);const o={"+":"add","-":"subtract"};for(;Ae(o,e.token);){r=e.token,n=o[r],q(e);const a=te(e);i=a.isPercentage?[t,new d("*","multiply",[t,a])]:[t,a],t=new d(r,n,i)}return t}function te(e){let t,r,n,i;t=re(e),r=t;const o={"*":"multiply",".*":"dotMultiply","/":"divide","./":"dotDivide"};for(;Ae(o,e.token);)n=e.token,i=o[n],q(e),r=re(e),t=new d(n,i,[t,r]);return t}function re(e){let t,r;for(t=ne(e),r=t;e.tokenType===w.SYMBOL||"in"===e.token&&B(t)||!(e.tokenType!==w.NUMBER||B(r)||R(r)&&"!"!==r.op)||"("===e.token;)r=ne(e),t=new d("*","multiply",[t,r],!0);return t}function ne(e){let t=ie(e),r=t;const n=[];for(;"/"===e.token&&O(r);){if(n.push(Vr({},e)),q(e),e.tokenType!==w.NUMBER){Vr(e,n.pop());break}if(n.push(Vr({},e)),q(e),e.tokenType!==w.SYMBOL&&"("!==e.token){n.pop(),Vr(e,n.pop());break}Vr(e,n.pop()),n.pop(),r=ie(e),t=new d("/","divide",[t,r])}return t}function ie(e){let t,r,n,i;t=oe(e);const o={"%":"mod",mod:"mod"};for(;Ae(o,e.token);)r=e.token,n=o[r],q(e),"%"===r&&e.tokenType===w.DELIMITER&&"("!==e.token?t=new d("/","divide",[t,new c(100)],!1,!0):(i=[t,oe(e)],t=new d(r,n,i));return t}function oe(e){let t,i,a;const s={"-":"unaryMinus","+":"unaryPlus","~":"bitNot",not:"not"};return Ae(s,e.token)?(a=s[e.token],t=e.token,q(e),i=[oe(e)],new d(t,a,i)):function(e){let t,i,a,s;return t=function(e){let t,i,a,s;t=function(e){let t=[];if(e.tokenType===w.SYMBOL&&Ae(e.extraNodes,e.token)){const r=e.extraNodes[e.token];if(k(e),"("===e.token){if(t=[],P(e),k(e),")"!==e.token)for(t.push($(e));","===e.token;)k(e),t.push($(e));if(")"!==e.token)throw le(e,"Parenthesis ) expected");j(e),k(e)}return new r(t)}return function(e){let t,i;return e.tokenType===w.SYMBOL||e.tokenType===w.DELIMITER&&e.token in E?(i=e.token,k(e),t=Ae(A,i)?new c(A[i]):S.includes(i)?new c(r(i,"number")):new x(i),t=ae(e,t),t):function(e){let t,i;return'"'===e.token||"'"===e.token?(i=se(e,e.token),t=new c(i),t=ae(e,t),t):function(e){let t,i,a,s;if("["===e.token){if(P(e),k(e),"]"!==e.token){const r=ue(e);if(";"===e.token){for(a=1,i=[r];";"===e.token;)k(e),"]"!==e.token&&(i[a]=ue(e),a++);if("]"!==e.token)throw le(e,"End of matrix ] expected");j(e),k(e),s=i[0].items.length;for(let t=1;t<a;t++)if(i[t].items.length!==s)throw fe(e,"Column dimensions mismatch ("+i[t].items.length+" !== "+s+")");t=new o(i)}else{if("]"!==e.token)throw le(e,"End of matrix ] expected");j(e),k(e),t=r}}else j(e),k(e),t=new o([]);return ae(e,t)}return function(e){if("{"===e.token){let t;P(e);const r={};do{if(k(e),"}"!==e.token){if('"'===e.token||"'"===e.token)t=se(e,e.token);else{if(!(e.tokenType===w.SYMBOL||e.tokenType===w.DELIMITER&&e.token in E))throw le(e,"Symbol or string expected as object key");t=e.token,k(e)}if(":"!==e.token)throw le(e,"Colon : expected after object key");k(e),r[t]=$(e)}}while(","===e.token);if("}"!==e.token)throw le(e,"Comma , or bracket } expected after object value");j(e),k(e);let n=new m(r);return n=ae(e,n),n}return function(e){let t;if(e.tokenType===w.NUMBER){t=e.token,k(e);const i=V(t,n),o=r(t,i);return new c(o)}return function(e){let t;if("("===e.token){if(P(e),k(e),t=$(e),")"!==e.token)throw le(e,"Parenthesis ) expected");return j(e),k(e),t=new h(t),t=ae(e,t),t}return function(e){throw""===e.token?le(e,"Unexpected end of expression"):le(e,"Value expected")}(e)}(e)}(e)}(e)}(e)}(e)}(e)}(e);const u={"!":"factorial","'":"ctranspose"};for(;Ae(u,e.token);)i=e.token,a=u[i],k(e),s=[t],t=new d(i,a,s),t=ae(e,t);return t}(e),("^"===e.token||".^"===e.token)&&(i=e.token,a="^"===i?"pow":"dotPow",q(e),s=[t,oe(e)],t=new d(i,a,s)),t}(e)}function ae(e,t,r){let n;for(;("("===e.token||"["===e.token||"."===e.token)&&(!r||r.includes(e.token));)if(n=[],"("===e.token){if(!L(t)&&!M(t))return t;if(P(e),k(e),")"!==e.token)for(n.push($(e));","===e.token;)k(e),n.push($(e));if(")"!==e.token)throw le(e,"Parenthesis ) expected");j(e),k(e),t=new f(t,n)}else if("["===e.token){if(P(e),k(e),"]"!==e.token)for(n.push($(e));","===e.token;)k(e),n.push($(e));if("]"!==e.token)throw le(e,"Parenthesis ] expected");j(e),k(e),t=new i(t,new p(n))}else{if(k(e),!(e.tokenType===w.SYMBOL||e.tokenType===w.DELIMITER&&e.token in E))throw le(e,"Property name expected after dot");n.push(new c(e.token)),k(e),t=new i(t,new p(n,!0))}return t}function se(e,t){let r="";for(;""!==D(e)&&D(e)!==t;)if("\\"===D(e)){F(e);const t=D(e),n=C[t];if(void 0!==n)r+=n,e.index+=1;else{if("u"!==t)throw le(e,`Bad escape character \\${t}`);{const t=e.expression.slice(e.index+1,e.index+5);if(!/^[0-9A-Fa-f]{4}$/.test(t))throw le(e,`Invalid unicode character \\u${t}`);r+=String.fromCharCode(parseInt(t,16)),e.index+=5}}}else r+=D(e),F(e);if(k(e),e.token!==t)throw le(e,`End of string ${t} expected`);return k(e),r}function ue(e){const t=[$(e)];let r=1;for(;","===e.token;)k(e),"]"!==e.token&&";"!==e.token&&(t[r]=$(e),r++);return new o(t)}function ce(e){return e.index-e.token.length+1}function le(e,t){const r=ce(e),n=new SyntaxError(t+" (char "+r+")");return n.char=r,n}function fe(e,t){const r=ce(e),n=new SyntaxError(t+" (char "+r+")");return n.char=r,n}return b.isAlpha=function(e,t,r){return b.isValidLatinOrGreek(e)||b.isValidMathSymbol(e,r)||b.isValidMathSymbol(t,e)},b.isValidLatinOrGreek=function(e){return/^[a-zA-Z_$\u00C0-\u02AF\u0370-\u03FF\u2100-\u214F]$/.test(e)},b.isValidMathSymbol=function(e,t){return/^[\uD835]$/.test(e)&&/^[\uDC00-\uDFFF]$/.test(t)&&/^[^\uDC55\uDC9D\uDCA0\uDCA1\uDCA3\uDCA4\uDCA7\uDCA8\uDCAD\uDCBA\uDCBC\uDCC4\uDD06\uDD0B\uDD0C\uDD15\uDD1D\uDD3A\uDD3F\uDD45\uDD47-\uDD49\uDD51\uDEA6\uDEA7\uDFCC\uDFCD]$/.test(t)},b.isWhitespace=function(e,t){return" "===e||"\t"===e||"\n"===e&&t>0},b.isDecimalMark=function(e,t){return"."===e&&"/"!==t&&"*"!==t&&"^"!==t},b.isDigitDot=function(e){return e>="0"&&e<="9"||"."===e},b.isDigit=function(e){return e>="0"&&e<="9"},b.isHexDigit=function(e){return e>="0"&&e<="9"||e>="a"&&e<="f"||e>="A"&&e<="F"},t.addConversion({from:"string",to:"Node",convert:b}),b})),tm="compile",rm=Se(tm,["typed","parse"],(e=>{let{typed:t,parse:r}=e;return t(tm,{string:function(e){return r(e).compile()},"Array | Matrix":function(e){return Gn(e,(function(e){return r(e).compile()}))}})})),nm="evaluate",im=Se(nm,["typed","parse"],(e=>{let{typed:t,parse:r}=e;return t(nm,{string:function(e){const t=Re();return r(e).compile().evaluate(t)},"string, Map | Object":function(e,t){return r(e).compile().evaluate(t)},"Array | Matrix":function(e){const t=Re();return Gn(e,(function(e){return r(e).compile().evaluate(t)}))},"Array | Matrix, Map | Object":function(e,t){return Gn(e,(function(e){return r(e).compile().evaluate(t)}))}})})),om=Se("Parser",["evaluate"],(e=>{let{evaluate:t}=e;function r(){if(!(this instanceof r))throw new SyntaxError("Constructor must be called with the new operator");Object.defineProperty(this,"scope",{value:Re(),writable:!1})}return r.prototype.type="Parser",r.prototype.isParser=!0,r.prototype.evaluate=function(e){return t(e,this.scope)},r.prototype.get=function(e){if(this.scope.has(e))return this.scope.get(e)},r.prototype.getAll=function(){return function(e){if(e instanceof Ie)return e.wrappedObject;const t={};for(const r of e.keys())De(t,r,e.get(r));return t}(this.scope)},r.prototype.getAllAsMap=function(){return this.scope},r.prototype.set=function(e,t){return this.scope.set(e,t),t},r.prototype.remove=function(e){this.scope.delete(e)},r.prototype.clear=function(){this.scope.clear()},r}),{isClass:!0}),am="parser",sm=Se(am,["typed","Parser"],(e=>{let{typed:t,Parser:r}=e;return t(am,{"":function(){return new r}})})),um=Se("lup",["typed","matrix","abs","addScalar","divideScalar","multiplyScalar","subtractScalar","larger","equalScalar","unaryMinus","DenseMatrix","SparseMatrix","Spa"],(e=>{let{typed:t,matrix:r,abs:n,addScalar:i,divideScalar:o,multiplyScalar:a,subtractScalar:s,larger:u,equalScalar:c,unaryMinus:l,DenseMatrix:f,SparseMatrix:p,Spa:m}=e;return t("lup",{DenseMatrix:function(e){return d(e)},SparseMatrix:function(e){return function(e){const t=e._size[0],r=e._size[1],i=Math.min(t,r),s=e._values,f=e._index,d=e._ptr,h=[],g=[],y=[],x=[t,i],b=[],v=[],w=[],N=[i,r];let E,A,S;const M=[],C=[];for(E=0;E<t;E++)M[E]=E,C[E]=E;const T=function(e,t){const r=C[e],n=C[t];M[r]=t,M[n]=e,C[e]=n,C[t]=r};for(A=0;A<r;A++){const e=new m;A<t&&(y.push(h.length),h.push(1),g.push(A)),w.push(b.length);const r=d[A],i=d[A+1];for(S=r;S<i;S++)E=f[S],e.set(M[E],s[S]);A>0&&e.forEach(0,A-1,(function(t,r){p._forEachRow(t,h,g,y,(function(n,i){n>t&&e.accumulate(n,l(a(i,r)))}))}));let C=A,D=e.get(A),F=n(D);e.forEach(A+1,t-1,(function(e,t){const r=n(t);u(r,F)&&(C=e,F=r,D=t)})),A!==C&&(p._swapRows(A,C,x[1],h,g,y),p._swapRows(A,C,N[1],b,v,w),e.swap(A,C),T(A,C)),e.forEach(0,t-1,(function(e,t){e<=A?(b.push(t),v.push(e)):(t=o(t,D),c(t,0)||(h.push(t),g.push(e)))}))}return w.push(b.length),y.push(h.length),{L:new p({values:h,index:g,ptr:y,size:x}),U:new p({values:b,index:v,ptr:w,size:N}),p:M,toString:function(){return"L: "+this.L.toString()+"\nU: "+this.U.toString()+"\nP: "+this.p}}}(e)},Array:function(e){const t=d(r(e));return{L:t.L.valueOf(),U:t.U.valueOf(),p:t.p}}});function d(e){const t=e._size[0],r=e._size[1];let l=Math.min(t,r);const p=ye(e._data),m=[],d=[t,l],h=[],g=[l,r];let y,x,b;const v=[];for(y=0;y<t;y++)v[y]=y;for(x=0;x<r;x++){if(x>0)for(y=0;y<t;y++){const e=Math.min(y,x);let t=0;for(b=0;b<e;b++)t=i(t,a(p[y][b],p[b][x]));p[y][x]=s(p[y][x],t)}let e=x,r=0,l=0;for(y=x;y<t;y++){const t=p[y][x],i=n(t);u(i,r)&&(e=y,r=i,l=t)}if(x!==e&&(v[x]=[v[e],v[e]=v[x]][0],f._swapRows(x,e,p)),x<t)for(y=x+1;y<t;y++){const e=p[y][x];c(e,0)||(p[y][x]=o(p[y][x],l))}}for(x=0;x<r;x++)for(y=0;y<t;y++)0===x&&(y<r&&(h[y]=[]),m[y]=[]),y<x?(y<r&&(h[y][x]=p[y][x]),x<t&&(m[y][x]=0)):y!==x?(y<r&&(h[y][x]=0),x<t&&(m[y][x]=p[y][x])):(y<r&&(h[y][x]=p[y][x]),x<t&&(m[y][x]=1));const w=new f({data:m,size:d}),N=new f({data:h,size:g}),E=[];for(y=0,l=v.length;y<l;y++)E[v[y]]=y;return{L:w,U:N,p:E,toString:function(){return"L: "+this.L.toString()+"\nU: "+this.U.toString()+"\nP: "+this.p}}}})),cm=Se("qr",["typed","matrix","zeros","identity","isZero","equal","sign","sqrt","conj","unaryMinus","addScalar","divideScalar","multiplyScalar","subtractScalar","complex"],(e=>{let{typed:t,matrix:r,zeros:n,identity:i,isZero:o,equal:a,sign:s,sqrt:u,conj:c,unaryMinus:l,addScalar:f,divideScalar:p,multiplyScalar:m,subtractScalar:d,complex:h}=e;return Vr(t("qr",{DenseMatrix:function(e){return y(e)},SparseMatrix:function(e){return function(){throw new Error("qr not implemented for sparse matrices yet")}()},Array:function(e){const t=y(r(e));return{Q:t.Q.valueOf(),R:t.R.valueOf()}}}),{_denseQRimpl:g});function g(e){const t=e._size[0],r=e._size[1],h=i([t],"dense"),g=h._data,y=e.clone(),x=y._data;let b,v,w;const N=n([t],"");for(w=0;w<Math.min(r,t);++w){const e=x[w][w],n=l(a(e,0)?1:s(e)),i=c(n);let h=0;for(b=w;b<t;b++)h=f(h,m(x[b][w],c(x[b][w])));const y=m(n,u(h));if(!o(y)){const n=d(e,y);for(N[w]=1,b=w+1;b<t;b++)N[b]=p(x[b][w],n);const o=l(c(p(n,y)));let a;for(v=w;v<r;v++){for(a=0,b=w;b<t;b++)a=f(a,m(c(N[b]),x[b][v]));for(a=m(a,o),b=w;b<t;b++)x[b][v]=m(d(x[b][v],m(N[b],a)),i)}for(b=0;b<t;b++){for(a=0,v=w;v<t;v++)a=f(a,m(g[b][v],N[v]));for(a=m(a,o),v=w;v<t;++v)g[b][v]=p(d(g[b][v],m(a,c(N[v]))),i)}}}return{Q:h,R:y,toString:function(){return"Q: "+this.Q.toString()+"\nR: "+this.R.toString()}}}function y(e){const t=g(e),r=t.R._data;if(e._data.length>0){const e="Complex"===r[0][0].type?h(0):0;for(let t=0;t<r.length;++t)for(let n=0;n<t&&n<(r[0]||[]).length;++n)r[t][n]=e}return t}}));function lm(e,t,r,n,i,o,a){let s=0;for(r[a]=e;s>=0;){const e=r[a+s],u=r[n+e];-1===u?(s--,o[t++]=e):(r[n+e]=r[i+u],++s,r[a+s]=u)}return t}function fm(e){return-e-2}const pm=Se("csAmd",["add","multiply","transpose"],(e=>{let{add:t,multiply:r,transpose:n}=e;return function(e,a){if(!a||e<=0||e>3)return null;const s=a._size,u=s[0],c=s[1];let l=0,f=Math.max(16,10*Math.sqrt(c));f=Math.min(c-2,f);const p=function(e,i,o,a,s){const u=n(i);if(1===e&&a===o)return t(i,u);if(2===e){const e=u._index,t=u._ptr;let a=0;for(let r=0;r<o;r++){let n=t[r];if(t[r]=a,!(t[r+1]-n>s))for(const i=t[r+1];n<i;n++)e[a++]=e[n]}return t[o]=a,i=n(u),r(u,i)}return r(u,i)}(e,a,u,c,f);!function(e,t){const r=e._values,n=e._index,i=e._ptr,o=e._size[1];let a=0;for(let e=0;e<o;e++){let o=i[e];for(i[e]=a;o<i[e+1];o++)t(n[o],e,r?r[o]:1,null)&&(n[a]=n[o],r&&(r[a]=r[o]),a++)}i[o]=a,n.splice(a,n.length-a),r&&r.splice(a,r.length-a)}(p,o);const m=p._index,d=p._ptr;let h=d[c];const g=[],y=[],x=c+1,b=2*(c+1),v=3*(c+1),w=4*(c+1),N=5*(c+1),E=6*(c+1),A=7*(c+1),S=g;let M,C,T,D,F,B,O,_,z,I,k,q,R,P,j,U,L=function(e,t,r,n,o,a,s,u,c,l,f,p){for(let n=0;n<e;n++)r[0+n]=t[n+1]-t[n];r[0+e]=0;for(let t=0;t<=e;t++)r[o+t]=-1,a[t]=-1,r[s+t]=-1,r[u+t]=-1,r[c+t]=1,r[l+t]=1,r[f+t]=0,r[p+t]=r[0+t];const m=i(0,0,r,l,e);return r[f+e]=-2,t[e]=-1,r[l+e]=0,m}(c,d,y,0,v,S,b,A,x,E,w,N),$=function(e,t,r,n,i,o,a,s,u,c,l){let f=0;for(let p=0;p<e;p++){const m=r[n+p];if(0===m)r[i+p]=-2,f++,t[p]=-1,r[o+p]=0;else if(m>a)r[s+p]=0,r[i+p]=-1,f++,t[p]=fm(e),r[s+e]++;else{const e=r[u+m];-1!==e&&(c[e]=p),r[l+p]=r[u+m],r[u+m]=p}}return f}(c,d,y,N,w,E,f,x,v,S,b),H=0;for(;$<c;){for(T=-1;H<c&&-1===(T=y[v+H]);H++);-1!==y[b+T]&&(S[y[b+T]]=-1),y[v+H]=y[b+T];const e=y[w+T];let t=y[x+T];$+=t;let r=0;y[x+T]=-t;let n=d[T];const o=0===e?n:h;let a=o;for(D=1;D<=e+1;D++){for(D>e?(B=T,O=n,_=y[0+T]-e):(B=m[n++],O=d[B],_=y[0+B]),F=1;F<=_;F++)M=m[O++],(z=y[x+M])<=0||(r+=z,y[x+M]=-z,m[a++]=M,-1!==y[b+M]&&(S[y[b+M]]=S[M]),-1!==S[M]?y[b+S[M]]=y[b+M]:y[v+y[N+M]]=y[b+M]);B!==T&&(d[B]=fm(T),y[E+B]=0)}for(0!==e&&(h=a),y[N+T]=r,d[T]=o,y[0+T]=a-o,y[w+T]=-2,L=i(L,l,y,E,c),I=o;I<a;I++){if(M=m[I],(k=y[w+M])<=0)continue;z=-y[x+M];const e=L-z;for(n=d[M],q=d[M]+k-1;n<=q;n++)B=m[n],y[E+B]>=L?y[E+B]-=z:0!==y[E+B]&&(y[E+B]=y[N+B]+e)}for(I=o;I<a;I++){for(M=m[I],q=d[M],R=q+y[w+M]-1,P=q,j=0,U=0,n=q;n<=R;n++)if(B=m[n],0!==y[E+B]){const e=y[E+B]-L;e>0?(U+=e,m[P++]=B,j+=B):(d[B]=fm(T),y[E+B]=0)}y[w+M]=P-q+1;const e=P,i=q+y[0+M];for(n=R+1;n<i;n++){C=m[n];const e=y[x+C];e<=0||(U+=e,m[P++]=C,j+=C)}0===U?(d[M]=fm(T),z=-y[x+M],r-=z,t+=z,$+=z,y[x+M]=0,y[w+M]=-1):(y[N+M]=Math.min(y[N+M],U),m[P]=m[e],m[e]=m[q],m[q]=T,y[0+M]=P-q+1,j=(j<0?-j:j)%c,y[b+M]=y[A+j],y[A+j]=M,S[M]=j)}for(y[N+T]=r,l=Math.max(l,r),L=i(L+l,l,y,E,c),I=o;I<a;I++)if(M=m[I],!(y[x+M]>=0))for(j=S[M],M=y[A+j],y[A+j]=-1;-1!==M&&-1!==y[b+M];M=y[b+M],L++){for(_=y[0+M],k=y[w+M],n=d[M]+1;n<=d[M]+_-1;n++)y[E+m[n]]=L;let e=M;for(C=y[b+M];-1!==C;){let t=y[0+C]===_&&y[w+C]===k;for(n=d[C]+1;t&&n<=d[C]+_-1;n++)y[E+m[n]]!==L&&(t=0);t?(d[C]=fm(M),y[x+M]+=y[x+C],y[x+C]=0,y[w+C]=-1,C=y[b+C],y[b+e]=C):(e=C,C=y[b+C])}}for(n=o,I=o;I<a;I++)M=m[I],(z=-y[x+M])<=0||(y[x+M]=z,U=y[N+M]+r-z,U=Math.min(U,c-$-z),-1!==y[v+U]&&(S[y[v+U]]=M),y[b+M]=y[v+U],S[M]=-1,y[v+U]=M,H=Math.min(H,U),y[N+M]=U,m[n++]=M);y[x+T]=t,0==(y[0+T]=n-o)&&(d[T]=-1,y[E+T]=0),0!==e&&(h=n)}for(M=0;M<c;M++)d[M]=fm(d[M]);for(C=0;C<=c;C++)y[v+C]=-1;for(C=c;C>=0;C--)y[x+C]>0||(y[b+C]=y[v+d[C]],y[v+d[C]]=C);for(B=c;B>=0;B--)y[x+B]<=0||-1!==d[B]&&(y[b+B]=y[v+d[B]],y[v+d[B]]=B);for(T=0,M=0;M<=c;M++)-1===d[M]&&(T=lm(M,T,y,v,b,g,E));return g.splice(g.length-1,1),g};function i(e,t,r,n,i){if(e<2||e+t<0){for(let e=0;e<i;e++)0!==r[n+e]&&(r[n+e]=1);e=2}return e}function o(e,t){return e!==t}}));function mm(e,t,r,n,i,o,a){let s,u,c,l=0;if(e<=t||r[n+t]<=r[i+e])return-1;r[i+e]=r[n+t];const f=r[o+e];if(r[o+e]=t,-1===f)l=1,c=e;else{for(l=2,c=f;c!==r[a+c];c=r[a+c]);for(s=f;s!==c;s=u)u=r[a+s],r[a+s]=c}return{jleaf:l,q:c}}const dm=Se("csCounts",["transpose"],(e=>{let{transpose:t}=e;return function(e,r,n,i){if(!e||!r||!n)return null;const o=e._size,a=o[0],s=o[1];let u,c,l,f,p,m,d;const h=4*s+(i?s+a+1:0),g=[],y=s,x=2*s,b=3*s,v=4*s,w=5*s+1;for(l=0;l<h;l++)g[l]=-1;const N=[],E=t(e),A=E._index,S=E._ptr;for(l=0;l<s;l++)for(c=n[l],N[c]=-1===g[b+c]?1:0;-1!==c&&-1===g[b+c];c=r[c])g[b+c]=l;if(i){for(l=0;l<s;l++)g[n[l]]=l;for(u=0;u<a;u++){for(l=s,m=S[u],d=S[u+1],p=m;p<d;p++)l=Math.min(l,g[A[p]]);g[w+u]=g[v+l],g[v+l]=u}}for(u=0;u<s;u++)g[0+u]=u;for(l=0;l<s;l++){for(c=n[l],-1!==r[c]&&N[r[c]]--,f=i?g[v+l]:c;-1!==f;f=i?g[w+f]:-1)for(p=S[f];p<S[f+1];p++){u=A[p];const e=mm(u,c,g,b,y,x,0);e.jleaf>=1&&N[c]++,2===e.jleaf&&N[e.q]--}-1!==r[c]&&(g[0+c]=r[c])}for(c=0;c<s;c++)-1!==r[c]&&(N[r[c]]+=N[c]);return N}})),hm=Se("csSqr",["add","multiply","transpose"],(e=>{let{add:t,multiply:r,transpose:n}=e;const i=pm({add:t,multiply:r,transpose:n}),o=dm({transpose:n});return function(e,t,r){const n=t._ptr,a=t._size[1];let s;const u={};if(u.q=i(e,t),e&&!u.q)return null;if(r){const r=e?function(e,t,r){const n=e._values,i=e._index,o=e._ptr,a=e._size,s=e._datatype,u=a[0],c=a[1],l=null,f=[],p=[];let m=0;for(let e=0;e<c;e++){p[e]=m;const t=r?r[e]:e;for(let e=o[t],r=o[t+1],a=e;a<r;a++){const e=i[a];f[m]=e,l&&(l[m]=n[a]),m++}}return p[c]=m,e.createSparseMatrix({values:l,index:f,ptr:p,size:[u,c],datatype:s})}(t,0,u.q):t;u.parent=function(e){if(!e)return null;const t=e._index,r=e._ptr,n=e._size,i=n[0],o=n[1],a=[],s=[],u=o;let c,l;for(c=0;c<i;c++)s[u+c]=-1;for(let e=0;e<o;e++){a[e]=-1,s[0+e]=-1;for(let n=r[e],i=r[e+1],o=n;o<i;o++){const r=t[o];for(c=s[u+r];-1!==c&&c<e;c=l)l=s[0+c],s[0+c]=e,-1===l&&(a[c]=e);s[u+r]=e}}return a}(r);const n=function(e,t){if(!e)return null;let r,n=0;const i=[],o=[],a=t,s=2*t;for(r=0;r<t;r++)o[0+r]=-1;for(r=t-1;r>=0;r--)-1!==e[r]&&(o[a+r]=o[0+e[r]],o[0+e[r]]=r);for(r=0;r<t;r++)-1===e[r]&&(n=lm(r,n,o,0,a,i,s));return i}(u.parent,a);if(u.cp=o(r,u.parent,n,1),r&&u.parent&&u.cp&&function(e,t){const r=e._ptr,n=e._index,i=e._size,o=i[0],a=i[1];t.pinv=[],t.leftmost=[];const s=t.parent,u=t.pinv,c=t.leftmost,l=[],f=o,p=o+a,m=o+2*a;let d,h,g,y,x;for(h=0;h<a;h++)l[f+h]=-1,l[p+h]=-1,l[m+h]=0;for(d=0;d<o;d++)c[d]=-1;for(h=a-1;h>=0;h--)for(y=r[h],x=r[h+1],g=y;g<x;g++)c[n[g]]=h;for(d=o-1;d>=0;d--)u[d]=-1,h=c[d],-1!==h&&(0==l[m+h]++&&(l[p+h]=d),l[0+d]=l[f+h],l[f+h]=d);for(t.lnz=0,t.m2=o,h=0;h<a;h++){if(d=l[f+h],t.lnz++,d<0&&(d=t.m2++),u[d]=h,--m[h]<=0)continue;t.lnz+=l[m+h];const e=s[h];-1!==e&&(0===l[m+e]&&(l[p+e]=l[p+h]),l[0+l[p+h]]=l[f+e],l[f+e]=l[0+d],l[m+e]+=l[m+h])}for(d=0;d<o;d++)u[d]<0&&(u[d]=h++);return!0}(r,u))for(u.unz=0,s=0;s<a;s++)u.unz+=u.cp[s]}else u.unz=4*n[a]+a,u.lnz=u.unz;return u}}));function gm(e,t){return e[t]<0}function ym(e,t){e[t]=fm(e[t])}function xm(e){return e<0?fm(e):e}function bm(e,t,r,n,i){const o=t._index,a=t._ptr,s=t._size[1];let u,c,l,f=0;for(n[0]=e;f>=0;){e=n[f];const t=i?i[e]:e;gm(a,e)||(ym(a,e),n[s+f]=t<0?0:xm(a[t]));let p=1;for(c=n[s+f],l=t<0?0:xm(a[t+1]);c<l;c++)if(u=o[c],!gm(a,u)){n[s+f]=c,n[++f]=u,p=0;break}p&&(f--,n[--r]=e)}return r}const vm=Se("csSpsolve",["divideScalar","multiply","subtract"],(e=>{let{divideScalar:t,multiply:r,subtract:n}=e;return function(e,i,o,a,s,u,c){const l=e._values,f=e._index,p=e._ptr,m=e._size[1],d=i._values,h=i._index,g=i._ptr;let y,x,b,v;const w=function(e,t,r,n,i){const o=e._ptr,a=e._size,s=t._index,u=t._ptr,c=a[1];let l,f,p,m=c;for(f=u[r],p=u[r+1],l=f;l<p;l++){const t=s[l];gm(o,t)||(m=bm(t,e,m,n,i))}for(l=m;l<c;l++)ym(o,n[l]);return m}(e,i,o,a,u);for(y=w;y<m;y++)s[a[y]]=0;for(x=g[o],b=g[o+1],y=x;y<b;y++)s[h[y]]=d[y];for(let e=w;e<m;e++){const i=a[e],o=u?u[i]:i;if(!(o<0))for(x=p[o],b=p[o+1],s[i]=t(s[i],l[c?x:b-1]),y=c?x+1:x,v=c?b:b-1;y<v;y++){const e=f[y];s[e]=n(s[e],r(l[y],s[i]))}}return w}})),wm=Se("csLu",["abs","divideScalar","multiply","subtract","larger","largerEq","SparseMatrix"],(e=>{let{abs:t,divideScalar:r,multiply:n,subtract:i,larger:o,largerEq:a,SparseMatrix:s}=e;const u=vm({divideScalar:r,multiply:n,subtract:i});return function(e,i,c){if(!e)return null;const l=e._size[1];let f,p=100,m=100;i&&(f=i.q,p=i.lnz||p,m=i.unz||m);const d=[],h=[],g=[],y=new s({values:d,index:h,ptr:g,size:[l,l]}),x=[],b=[],v=[],w=new s({values:x,index:b,ptr:v,size:[l,l]}),N=[];let E,A;const S=[],M=[];for(E=0;E<l;E++)S[E]=0,N[E]=-1,g[E+1]=0;p=0,m=0;for(let i=0;i<l;i++){g[i]=p,v[i]=m;const s=f?f[i]:i,w=u(y,e,s,M,S,N,1);let C=-1,T=-1;for(A=w;A<l;A++)if(E=M[A],N[E]<0){const e=t(S[E]);o(e,T)&&(T=e,C=E)}else b[m]=N[E],x[m++]=S[E];if(-1===C||T<=0)return null;N[s]<0&&a(t(S[s]),n(T,c))&&(C=s);const D=S[C];for(b[m]=i,x[m++]=D,N[C]=i,h[p]=C,d[p++]=1,A=w;A<l;A++)E=M[A],N[E]<0&&(h[p]=E,d[p++]=r(S[E],D)),S[E]=0}for(g[l]=p,v[l]=m,A=0;A<p;A++)h[A]=N[h[A]];return d.splice(p,d.length-p),h.splice(p,h.length-p),x.splice(m,x.length-m),b.splice(m,b.length-m),{L:y,U:w,pinv:N}}})),Nm=Se("slu",["typed","abs","add","multiply","transpose","divideScalar","subtract","larger","largerEq","SparseMatrix"],(e=>{let{typed:t,abs:r,add:n,multiply:i,transpose:o,divideScalar:a,subtract:s,larger:u,largerEq:c,SparseMatrix:l}=e;const f=hm({add:n,multiply:i,transpose:o}),p=wm({abs:r,divideScalar:a,multiply:i,subtract:s,larger:u,largerEq:c,SparseMatrix:l});return t("slu",{"SparseMatrix, number, number":function(e,t,r){if(!Z(t)||t<0||t>3)throw new Error("Symbolic Ordering and Analysis order must be an integer number in the interval [0, 3]");if(r<0||r>1)throw new Error("Partial pivoting threshold must be a number from 0 to 1");const n=f(t,e,!1),i=p(e,n,r);return{L:i.L,U:i.U,p:i.pinv,q:n.q,toString:function(){return"L: "+this.L.toString()+"\nU: "+this.U.toString()+"\np: "+this.p.toString()+(this.q?"\nq: "+this.q.toString():"")+"\n"}}}})}));function Em(e,t){let r;const n=t.length,i=[];if(e)for(r=0;r<n;r++)i[e[r]]=t[r];else for(r=0;r<n;r++)i[r]=t[r];return i}const Am="lusolve",Sm=Se(Am,["typed","matrix","lup","slu","usolve","lsolve","DenseMatrix"],(e=>{let{typed:t,matrix:r,lup:n,slu:i,usolve:o,lsolve:a,DenseMatrix:s}=e;const u=ac({DenseMatrix:s});return t(Am,{"Array, Array | Matrix":function(e,t){e=r(e);const i=n(e);return p(i.L,i.U,i.p,null,t).valueOf()},"DenseMatrix, Array | Matrix":function(e,t){const r=n(e);return p(r.L,r.U,r.p,null,t)},"SparseMatrix, Array | Matrix":function(e,t){const r=n(e);return p(r.L,r.U,r.p,null,t)},"SparseMatrix, Array | Matrix, number, number":function(e,t,r,n){const o=i(e,r,n);return p(o.L,o.U,o.p,o.q,t)},"Object, Array | Matrix":function(e,t){return p(e.L,e.U,e.p,e.q,t)}});function c(e){if(f(e))return e;if(l(e))return r(e);throw new TypeError("Invalid Matrix LU decomposition")}function p(e,t,r,n,i){e=c(e),t=c(t),r&&((i=u(e,i,!0))._data=Em(r,i._data));const s=a(e,i),l=o(t,s);return n&&(l._data=Em(n,l._data)),l}})),Mm="polynomialRoot",Cm=Se(Mm,["typed","isZero","equalScalar","add","subtract","multiply","divide","sqrt","unaryMinus","cbrt","typeOf","im","re"],(e=>{let{typed:t,isZero:r,equalScalar:n,add:i,subtract:o,multiply:a,divide:s,sqrt:u,unaryMinus:c,cbrt:l,typeOf:f,im:p,re:m}=e;return t(Mm,{"number|Complex, ...number|Complex":(e,t)=>{const d=[e,...t];for(;d.length>0&&r(d[d.length-1]);)d.pop();if(d.length<2)throw new RangeError(`Polynomial [${e}, ${t}] must have a non-zero non-constant coefficient`);switch(d.length){case 2:return[c(s(d[0],d[1]))];case 3:{const[e,t,r]=d,i=a(2,r),l=a(t,t),f=a(4,r,e);if(n(l,f))return[s(c(t),i)];const p=u(o(l,f));return[s(o(p,t),i),s(o(c(p),t),i)]}case 4:{const[e,t,r,h]=d,g=c(a(3,h)),y=a(r,r),x=a(3,h,t),b=i(a(2,r,r,r),a(27,h,h,e)),v=a(9,h,r,t);if(n(y,x)&&n(b,v))return[s(r,g)];const w=o(y,x),N=o(b,v),E=i(a(18,h,r,t,e),a(r,r,t,t)),A=i(a(4,r,r,r,e),a(4,h,t,t,t),a(27,h,h,e,e));if(n(E,A))return[s(o(a(4,h,r,t),i(a(9,h,h,e),a(r,r,r))),a(h,w)),s(o(a(9,h,e),a(r,t)),a(2,w))];let S;return S=n(y,x)?N:s(i(N,u(o(a(N,N),a(4,w,w,w)))),2),l(S,!0).toArray().map((e=>s(i(r,e,s(w,e)),g))).map((e=>"Complex"===f(e)&&n(m(e),m(e)+p(e))?m(e):e))}default:throw new RangeError(`only implemented for cubic or lower-order polynomials, not ${d}`)}}})}));r(9463);const Tm=Se("Help",["evaluate"],(e=>{let{evaluate:t}=e;function r(e){if(!(this instanceof r))throw new SyntaxError("Constructor must be called with the new operator");if(!e)throw new Error('Argument "doc" missing');this.doc=e}return r.prototype.type="Help",r.prototype.isHelp=!0,r.prototype.toString=function(){const e=this.doc||{};let r="\n";if(e.name&&(r+="Name: "+e.name+"\n\n"),e.category&&(r+="Category: "+e.category+"\n\n"),e.description&&(r+="Description:\n "+e.description+"\n\n"),e.syntax&&(r+="Syntax:\n "+e.syntax.join("\n ")+"\n\n"),e.examples){r+="Examples:\n";let n=!1;const i=t("config()"),o={config:e=>(n=!0,t("config(newConfig)",{newConfig:e}))};for(let n=0;n<e.examples.length;n++){const i=e.examples[n];let a;r+=" "+i+"\n";try{a=t(i,o)}catch(e){a=e}void 0===a||b(a)||(r+=" "+Qr(a,{precision:14})+"\n")}r+="\n",n&&t("config(originalConfig)",{originalConfig:i})}return e.mayThrow&&e.mayThrow.length&&(r+="Throws: "+e.mayThrow.join(", ")+"\n\n"),e.seealso&&e.seealso.length&&(r+="See also: "+e.seealso.join(", ")+"\n"),r},r.prototype.toJSON=function(){const e=ye(this.doc);return e.mathjs="Help",e},r.fromJSON=function(e){const t={};return Object.keys(e).filter((e=>"mathjs"!==e)).forEach((r=>{t[r]=e[r]})),new r(t)},r.prototype.valueOf=r.prototype.toString,r}),{isClass:!0}),Dm=Se("Chain",["?on","math","typed"],(e=>{let{on:t,math:r,typed:n}=e;function i(e){if(!(this instanceof i))throw new SyntaxError("Constructor must be called with the new operator");$(e)?this.value=e.value:this.value=e}function o(e,t){Ee(i.prototype,e,(function(){const e=t();if("function"==typeof e)return a(e)}))}function a(e){return function(){if(0===arguments.length)return new i(e(this.value));const t=[this.value];for(let e=0;e<arguments.length;e++)t[e+1]=arguments[e];if(n.isTypedFunction(e)){const r=n.resolve(e,t);if(1===r.params.length)throw new Error("chain function "+e.name+" cannot match rest parameter between chain value and additional arguments.");return new i(r.implementation.apply(e,t))}return new i(e.apply(e,t))}}i.prototype.type="Chain",i.prototype.isChain=!0,i.prototype.done=function(){return this.value},i.prototype.valueOf=function(){return this.value},i.prototype.toString=function(){return Qr(this.value)},i.prototype.toJSON=function(){return{mathjs:"Chain",value:this.value}},i.fromJSON=function(e){return new i(e.value)},i.createProxy=function(e,t){if("string"==typeof e)r=e,"function"==typeof(n=t)&&(i.prototype[r]=a(n));else for(const t in e)Ae(e,t)&&void 0===s[t]&&o(t,(()=>e[t]));var r,n};const s={expression:!0,docs:!0,type:!0,classes:!0,json:!0,error:!0,isChain:!0};return i.createProxy(r),t&&t("import",(function(e,t,r){r||o(e,t)})),i}),{isClass:!0}),Fm={name:"e",category:"Constants",syntax:["e"],description:"Euler's number, the base of the natural logarithm. Approximately equal to 2.71828",examples:["e","e ^ 2","exp(2)","log(e)"],seealso:["exp"]},Bm={name:"pi",category:"Constants",syntax:["pi"],description:"The number pi is a mathematical constant that is the ratio of a circle's circumference to its diameter, and is approximately equal to 3.14159",examples:["pi","sin(pi/2)"],seealso:["tau"]},Om={bignumber:{name:"bignumber",category:"Construction",syntax:["bignumber(x)"],description:"Create a big number from a number or string.",examples:["0.1 + 0.2","bignumber(0.1) + bignumber(0.2)",'bignumber("7.2")','bignumber("7.2e500")',"bignumber([0.1, 0.2, 0.3])"],seealso:["boolean","bigint","complex","fraction","index","matrix","string","unit"]},bigint:{name:"bigint",category:"Construction",syntax:["bigint(x)"],description:"Create a bigint, an integer with an arbitrary number of digits, from a number or string.",examples:["123123123123123123 # a large number will lose digits",'bigint("123123123123123123")','bignumber(["1", "3", "5"])'],seealso:["boolean","bignumber","number","complex","fraction","index","matrix","string","unit"]},boolean:{name:"boolean",category:"Construction",syntax:["x","boolean(x)"],description:"Convert a string or number into a boolean.",examples:["boolean(0)","boolean(1)","boolean(3)",'boolean("true")','boolean("false")',"boolean([1, 0, 1, 1])"],seealso:["bignumber","complex","index","matrix","number","string","unit"]},complex:{name:"complex",category:"Construction",syntax:["complex()","complex(re, im)","complex(string)"],description:"Create a complex number.",examples:["complex()","complex(2, 3)",'complex("7 - 2i")'],seealso:["bignumber","boolean","index","matrix","number","string","unit"]},createUnit:{name:"createUnit",category:"Construction",syntax:["createUnit(definitions)","createUnit(name, definition)"],description:"Create a user-defined unit and register it with the Unit type.",examples:['createUnit("foo")','createUnit("knot", {definition: "0.514444444 m/s", aliases: ["knots", "kt", "kts"]})','createUnit("mph", "1 mile/hour")'],seealso:["unit","splitUnit"]},fraction:{name:"fraction",category:"Construction",syntax:["fraction(num)","fraction(matrix)","fraction(num,den)","fraction({n: num, d: den})"],description:"Create a fraction from a number or from integer numerator and denominator.",examples:["fraction(0.125)","fraction(1, 3) + fraction(2, 5)","fraction({n: 333, d: 53})","fraction([sqrt(9), sqrt(10), sqrt(11)])"],seealso:["bignumber","boolean","complex","index","matrix","string","unit"]},index:{name:"index",category:"Construction",syntax:["[start]","[start:end]","[start:step:end]","[start1, start 2, ...]","[start1:end1, start2:end2, ...]","[start1:step1:end1, start2:step2:end2, ...]"],description:"Create an index to get or replace a subset of a matrix",examples:["A = [1, 2, 3; 4, 5, 6]","A[1, :]","A[1, 2] = 50","A[1:2, 1:2] = 1","B = [1, 2, 3]","B[B>1 and B<3]"],seealso:["bignumber","boolean","complex","matrix,","number","range","string","unit"]},matrix:{name:"matrix",category:"Construction",syntax:["[]","[a1, b1, ...; a2, b2, ...]","matrix()",'matrix("dense")',"matrix([...])"],description:"Create a matrix.",examples:["[]","[1, 2, 3]","[1, 2, 3; 4, 5, 6]","matrix()","matrix([3, 4])",'matrix([3, 4; 5, 6], "sparse")','matrix([3, 4; 5, 6], "sparse", "number")'],seealso:["bignumber","boolean","complex","index","number","string","unit","sparse"]},number:{name:"number",category:"Construction",syntax:["x","number(x)","number(unit, valuelessUnit)"],description:"Create a number or convert a string or boolean into a number.",examples:["2","2e3","4.05","number(2)",'number("7.2")',"number(true)","number([true, false, true, true])",'number(unit("52cm"), "m")'],seealso:["bignumber","bigint","boolean","complex","fraction","index","matrix","string","unit"]},sparse:{name:"sparse",category:"Construction",syntax:["sparse()","sparse([a1, b1, ...; a1, b2, ...])",'sparse([a1, b1, ...; a1, b2, ...], "number")'],description:"Create a sparse matrix.",examples:["sparse()","sparse([3, 4; 5, 6])",'sparse([3, 0; 5, 0], "number")'],seealso:["bignumber","boolean","complex","index","number","string","unit","matrix"]},splitUnit:{name:"splitUnit",category:"Construction",syntax:["splitUnit(unit: Unit, parts: Unit[])"],description:"Split a unit in an array of units whose sum is equal to the original unit.",examples:['splitUnit(1 m, ["feet", "inch"])'],seealso:["unit","createUnit"]},string:{name:"string",category:"Construction",syntax:['"text"',"string(x)"],description:"Create a string or convert a value to a string",examples:['"Hello World!"',"string(4.2)","string(3 + 2i)"],seealso:["bignumber","boolean","complex","index","matrix","number","unit"]},unit:{name:"unit",category:"Construction",syntax:["value unit","unit(value, unit)","unit(string)"],description:"Create a unit.",examples:["5.5 mm","3 inch",'unit(7.1, "kilogram")','unit("23 deg")'],seealso:["bignumber","boolean","complex","index","matrix","number","string"]},e:Fm,E:Fm,false:{name:"false",category:"Constants",syntax:["false"],description:"Boolean value false",examples:["false"],seealso:["true"]},i:{name:"i",category:"Constants",syntax:["i"],description:"Imaginary unit, defined as i*i=-1. A complex number is described as a + b*i, where a is the real part, and b is the imaginary part.",examples:["i","i * i","sqrt(-1)"],seealso:[]},Infinity:{name:"Infinity",category:"Constants",syntax:["Infinity"],description:"Infinity, a number which is larger than the maximum number that can be handled by a floating point number.",examples:["Infinity","1 / 0"],seealso:[]},LN2:{name:"LN2",category:"Constants",syntax:["LN2"],description:"Returns the natural logarithm of 2, approximately equal to 0.693",examples:["LN2","log(2)"],seealso:[]},LN10:{name:"LN10",category:"Constants",syntax:["LN10"],description:"Returns the natural logarithm of 10, approximately equal to 2.302",examples:["LN10","log(10)"],seealso:[]},LOG2E:{name:"LOG2E",category:"Constants",syntax:["LOG2E"],description:"Returns the base-2 logarithm of E, approximately equal to 1.442",examples:["LOG2E","log(e, 2)"],seealso:[]},LOG10E:{name:"LOG10E",category:"Constants",syntax:["LOG10E"],description:"Returns the base-10 logarithm of E, approximately equal to 0.434",examples:["LOG10E","log(e, 10)"],seealso:[]},NaN:{name:"NaN",category:"Constants",syntax:["NaN"],description:"Not a number",examples:["NaN","0 / 0"],seealso:[]},null:{name:"null",category:"Constants",syntax:["null"],description:"Value null",examples:["null"],seealso:["true","false"]},pi:Bm,PI:Bm,phi:{name:"phi",category:"Constants",syntax:["phi"],description:"Phi is the golden ratio. Two quantities are in the golden ratio if their ratio is the same as the ratio of their sum to the larger of the two quantities. Phi is defined as `(1 + sqrt(5)) / 2` and is approximately 1.618034...",examples:["phi"],seealso:[]},SQRT1_2:{name:"SQRT1_2",category:"Constants",syntax:["SQRT1_2"],description:"Returns the square root of 1/2, approximately equal to 0.707",examples:["SQRT1_2","sqrt(1/2)"],seealso:[]},SQRT2:{name:"SQRT2",category:"Constants",syntax:["SQRT2"],description:"Returns the square root of 2, approximately equal to 1.414",examples:["SQRT2","sqrt(2)"],seealso:[]},tau:{name:"tau",category:"Constants",syntax:["tau"],description:"Tau is the ratio constant of a circle's circumference to radius, equal to 2 * pi, approximately 6.2832.",examples:["tau","2 * pi"],seealso:["pi"]},true:{name:"true",category:"Constants",syntax:["true"],description:"Boolean value true",examples:["true"],seealso:["false"]},version:{name:"version",category:"Constants",syntax:["version"],description:"A string with the version number of math.js",examples:["version"],seealso:[]},speedOfLight:{description:"Speed of light in vacuum",examples:["speedOfLight"]},gravitationConstant:{description:"Newtonian constant of gravitation",examples:["gravitationConstant"]},planckConstant:{description:"Planck constant",examples:["planckConstant"]},reducedPlanckConstant:{description:"Reduced Planck constant",examples:["reducedPlanckConstant"]},magneticConstant:{description:"Magnetic constant (vacuum permeability)",examples:["magneticConstant"]},electricConstant:{description:"Electric constant (vacuum permeability)",examples:["electricConstant"]},vacuumImpedance:{description:"Characteristic impedance of vacuum",examples:["vacuumImpedance"]},coulomb:{description:"Coulomb's constant",examples:["coulomb"]},elementaryCharge:{description:"Elementary charge",examples:["elementaryCharge"]},bohrMagneton:{description:"Borh magneton",examples:["bohrMagneton"]},conductanceQuantum:{description:"Conductance quantum",examples:["conductanceQuantum"]},inverseConductanceQuantum:{description:"Inverse conductance quantum",examples:["inverseConductanceQuantum"]},magneticFluxQuantum:{description:"Magnetic flux quantum",examples:["magneticFluxQuantum"]},nuclearMagneton:{description:"Nuclear magneton",examples:["nuclearMagneton"]},klitzing:{description:"Von Klitzing constant",examples:["klitzing"]},bohrRadius:{description:"Borh radius",examples:["bohrRadius"]},classicalElectronRadius:{description:"Classical electron radius",examples:["classicalElectronRadius"]},electronMass:{description:"Electron mass",examples:["electronMass"]},fermiCoupling:{description:"Fermi coupling constant",examples:["fermiCoupling"]},fineStructure:{description:"Fine-structure constant",examples:["fineStructure"]},hartreeEnergy:{description:"Hartree energy",examples:["hartreeEnergy"]},protonMass:{description:"Proton mass",examples:["protonMass"]},deuteronMass:{description:"Deuteron Mass",examples:["deuteronMass"]},neutronMass:{description:"Neutron mass",examples:["neutronMass"]},quantumOfCirculation:{description:"Quantum of circulation",examples:["quantumOfCirculation"]},rydberg:{description:"Rydberg constant",examples:["rydberg"]},thomsonCrossSection:{description:"Thomson cross section",examples:["thomsonCrossSection"]},weakMixingAngle:{description:"Weak mixing angle",examples:["weakMixingAngle"]},efimovFactor:{description:"Efimov factor",examples:["efimovFactor"]},atomicMass:{description:"Atomic mass constant",examples:["atomicMass"]},avogadro:{description:"Avogadro's number",examples:["avogadro"]},boltzmann:{description:"Boltzmann constant",examples:["boltzmann"]},faraday:{description:"Faraday constant",examples:["faraday"]},firstRadiation:{description:"First radiation constant",examples:["firstRadiation"]},loschmidt:{description:"Loschmidt constant at T=273.15 K and p=101.325 kPa",examples:["loschmidt"]},gasConstant:{description:"Gas constant",examples:["gasConstant"]},molarPlanckConstant:{description:"Molar Planck constant",examples:["molarPlanckConstant"]},molarVolume:{description:"Molar volume of an ideal gas at T=273.15 K and p=101.325 kPa",examples:["molarVolume"]},sackurTetrode:{description:"Sackur-Tetrode constant at T=1 K and p=101.325 kPa",examples:["sackurTetrode"]},secondRadiation:{description:"Second radiation constant",examples:["secondRadiation"]},stefanBoltzmann:{description:"Stefan-Boltzmann constant",examples:["stefanBoltzmann"]},wienDisplacement:{description:"Wien displacement law constant",examples:["wienDisplacement"]},molarMass:{description:"Molar mass constant",examples:["molarMass"]},molarMassC12:{description:"Molar mass constant of carbon-12",examples:["molarMassC12"]},gravity:{description:"Standard acceleration of gravity (standard acceleration of free-fall on Earth)",examples:["gravity"]},planckLength:{description:"Planck length",examples:["planckLength"]},planckMass:{description:"Planck mass",examples:["planckMass"]},planckTime:{description:"Planck time",examples:["planckTime"]},planckCharge:{description:"Planck charge",examples:["planckCharge"]},planckTemperature:{description:"Planck temperature",examples:["planckTemperature"]},derivative:{name:"derivative",category:"Algebra",syntax:["derivative(expr, variable)","derivative(expr, variable, {simplify: boolean})"],description:"Takes the derivative of an expression expressed in parser Nodes. The derivative will be taken over the supplied variable in the second parameter. If there are multiple variables in the expression, it will return a partial derivative.",examples:['derivative("2x^3", "x")','derivative("2x^3", "x", {simplify: false})','derivative("2x^2 + 3x + 4", "x")','derivative("sin(2x)", "x")','f = parse("x^2 + x")','x = parse("x")',"df = derivative(f, x)","df.evaluate({x: 3})"],seealso:["simplify","parse","evaluate"]},lsolve:{name:"lsolve",category:"Algebra",syntax:["x=lsolve(L, b)"],description:"Finds one solution of the linear system L * x = b where L is an [n x n] lower triangular matrix and b is a [n] column vector.",examples:["a = [-2, 3; 2, 1]","b = [11, 9]","x = lsolve(a, b)"],seealso:["lsolveAll","lup","lusolve","usolve","matrix","sparse"]},lsolveAll:{name:"lsolveAll",category:"Algebra",syntax:["x=lsolveAll(L, b)"],description:"Finds all solutions of the linear system L * x = b where L is an [n x n] lower triangular matrix and b is a [n] column vector.",examples:["a = [-2, 3; 2, 1]","b = [11, 9]","x = lsolve(a, b)"],seealso:["lsolve","lup","lusolve","usolve","matrix","sparse"]},lup:{name:"lup",category:"Algebra",syntax:["lup(m)"],description:"Calculate the Matrix LU decomposition with partial pivoting. Matrix A is decomposed in three matrices (L, U, P) where P * A = L * U",examples:["lup([[2, 1], [1, 4]])","lup(matrix([[2, 1], [1, 4]]))","lup(sparse([[2, 1], [1, 4]]))"],seealso:["lusolve","lsolve","usolve","matrix","sparse","slu","qr"]},lusolve:{name:"lusolve",category:"Algebra",syntax:["x=lusolve(A, b)","x=lusolve(lu, b)"],description:"Solves the linear system A * x = b where A is an [n x n] matrix and b is a [n] column vector.",examples:["a = [-2, 3; 2, 1]","b = [11, 9]","x = lusolve(a, b)"],seealso:["lup","slu","lsolve","usolve","matrix","sparse"]},leafCount:{name:"leafCount",category:"Algebra",syntax:["leafCount(expr)"],description:"Computes the number of leaves in the parse tree of the given expression",examples:['leafCount("e^(i*pi)-1")','leafCount(parse("{a: 22/7, b: 10^(1/2)}"))'],seealso:["simplify"]},polynomialRoot:{name:"polynomialRoot",category:"Algebra",syntax:["x=polynomialRoot(-6, 3)","x=polynomialRoot(4, -4, 1)","x=polynomialRoot(-8, 12, -6, 1)"],description:"Finds the roots of a univariate polynomial given by its coefficients starting from constant, linear, and so on, increasing in degree.",examples:["a = polynomialRoot(-6, 11, -6, 1)"],seealso:["cbrt","sqrt"]},resolve:{name:"resolve",category:"Algebra",syntax:["resolve(node, scope)"],description:"Recursively substitute variables in an expression tree.",examples:['resolve(parse("1 + x"), { x: 7 })','resolve(parse("size(text)"), { text: "Hello World" })','resolve(parse("x + y"), { x: parse("3z") })','resolve(parse("3x"), { x: parse("y+z"), z: parse("w^y") })'],seealso:["simplify","evaluate"],mayThrow:["ReferenceError"]},simplify:{name:"simplify",category:"Algebra",syntax:["simplify(expr)","simplify(expr, rules)"],description:"Simplify an expression tree.",examples:['simplify("3 + 2 / 4")','simplify("2x + x")','f = parse("x * (x + 2 + x)")',"simplified = simplify(f)","simplified.evaluate({x: 2})"],seealso:["simplifyCore","derivative","evaluate","parse","rationalize","resolve"]},simplifyConstant:{name:"simplifyConstant",category:"Algebra",syntax:["simplifyConstant(expr)","simplifyConstant(expr, options)"],description:"Replace constant subexpressions of node with their values.",examples:['simplifyConstant("(3-3)*x")','simplifyConstant(parse("z-cos(tau/8)"))'],seealso:["simplify","simplifyCore","evaluate"]},simplifyCore:{name:"simplifyCore",category:"Algebra",syntax:["simplifyCore(node)"],description:"Perform simple one-pass simplifications on an expression tree.",examples:['simplifyCore(parse("0*x"))','simplifyCore(parse("(x+0)*2"))'],seealso:["simplify","simplifyConstant","evaluate"]},symbolicEqual:{name:"symbolicEqual",category:"Algebra",syntax:["symbolicEqual(expr1, expr2)","symbolicEqual(expr1, expr2, options)"],description:"Returns true if the difference of the expressions simplifies to 0",examples:['symbolicEqual("x*y","y*x")','symbolicEqual("abs(x^2)", "x^2")','symbolicEqual("abs(x)", "x", {context: {abs: {trivial: true}}})'],seealso:["simplify","evaluate"]},rationalize:{name:"rationalize",category:"Algebra",syntax:["rationalize(expr)","rationalize(expr, scope)","rationalize(expr, scope, detailed)"],description:"Transform a rationalizable expression in a rational fraction. If rational fraction is one variable polynomial then converts the numerator and denominator in canonical form, with decreasing exponents, returning the coefficients of numerator.",examples:['rationalize("2x/y - y/(x+1)")','rationalize("2x/y - y/(x+1)", true)'],seealso:["simplify"]},slu:{name:"slu",category:"Algebra",syntax:["slu(A, order, threshold)"],description:"Calculate the Matrix LU decomposition with full pivoting. Matrix A is decomposed in two matrices (L, U) and two permutation vectors (pinv, q) where P * A * Q = L * U",examples:["slu(sparse([4.5, 0, 3.2, 0; 3.1, 2.9, 0, 0.9; 0, 1.7, 3, 0; 3.5, 0.4, 0, 1]), 1, 0.001)"],seealso:["lusolve","lsolve","usolve","matrix","sparse","lup","qr"]},usolve:{name:"usolve",category:"Algebra",syntax:["x=usolve(U, b)"],description:"Finds one solution of the linear system U * x = b where U is an [n x n] upper triangular matrix and b is a [n] column vector.",examples:["x=usolve(sparse([1, 1, 1, 1; 0, 1, 1, 1; 0, 0, 1, 1; 0, 0, 0, 1]), [1; 2; 3; 4])"],seealso:["usolveAll","lup","lusolve","lsolve","matrix","sparse"]},usolveAll:{name:"usolveAll",category:"Algebra",syntax:["x=usolve(U, b)"],description:"Finds all solutions of the linear system U * x = b where U is an [n x n] upper triangular matrix and b is a [n] column vector.",examples:["x=usolve(sparse([1, 1, 1, 1; 0, 1, 1, 1; 0, 0, 1, 1; 0, 0, 0, 1]), [1; 2; 3; 4])"],seealso:["usolve","lup","lusolve","lsolve","matrix","sparse"]},qr:{name:"qr",category:"Algebra",syntax:["qr(A)"],description:"Calculates the Matrix QR decomposition. Matrix `A` is decomposed in two matrices (`Q`, `R`) where `Q` is an orthogonal matrix and `R` is an upper triangular matrix.",examples:["qr([[1, -1, 4], [1, 4, -2], [1, 4, 2], [1, -1, 0]])"],seealso:["lup","slu","matrix"]},abs:{name:"abs",category:"Arithmetic",syntax:["abs(x)"],description:"Compute the absolute value.",examples:["abs(3.5)","abs(-4.2)"],seealso:["sign"]},add:{name:"add",category:"Operators",syntax:["x + y","add(x, y)"],description:"Add two values.",examples:["a = 2.1 + 3.6","a - 3.6","3 + 2i","3 cm + 2 inch",'"2.3" + "4"'],seealso:["subtract"]},cbrt:{name:"cbrt",category:"Arithmetic",syntax:["cbrt(x)","cbrt(x, allRoots)"],description:"Compute the cubic root value. If x = y * y * y, then y is the cubic root of x. When `x` is a number or complex number, an optional second argument `allRoots` can be provided to return all three cubic roots. If not provided, the principal root is returned",examples:["cbrt(64)","cube(4)","cbrt(-8)","cbrt(2 + 3i)","cbrt(8i)","cbrt(8i, true)","cbrt(27 m^3)"],seealso:["square","sqrt","cube","multiply"]},ceil:{name:"ceil",category:"Arithmetic",syntax:["ceil(x)"],description:"Round a value towards plus infinity. If x is complex, both real and imaginary part are rounded towards plus infinity.",examples:["ceil(3.2)","ceil(3.8)","ceil(-4.2)"],seealso:["floor","fix","round"]},cube:{name:"cube",category:"Arithmetic",syntax:["cube(x)"],description:"Compute the cube of a value. The cube of x is x * x * x.",examples:["cube(2)","2^3","2 * 2 * 2"],seealso:["multiply","square","pow"]},divide:{name:"divide",category:"Operators",syntax:["x / y","divide(x, y)"],description:"Divide two values.",examples:["a = 2 / 3","a * 3","4.5 / 2","3 + 4 / 2","(3 + 4) / 2","18 km / 4.5"],seealso:["multiply"]},dotDivide:{name:"dotDivide",category:"Operators",syntax:["x ./ y","dotDivide(x, y)"],description:"Divide two values element wise.",examples:["a = [1, 2, 3; 4, 5, 6]","b = [2, 1, 1; 3, 2, 5]","a ./ b"],seealso:["multiply","dotMultiply","divide"]},dotMultiply:{name:"dotMultiply",category:"Operators",syntax:["x .* y","dotMultiply(x, y)"],description:"Multiply two values element wise.",examples:["a = [1, 2, 3; 4, 5, 6]","b = [2, 1, 1; 3, 2, 5]","a .* b"],seealso:["multiply","divide","dotDivide"]},dotPow:{name:"dotPow",category:"Operators",syntax:["x .^ y","dotPow(x, y)"],description:"Calculates the power of x to y element wise.",examples:["a = [1, 2, 3; 4, 5, 6]","a .^ 2"],seealso:["pow"]},exp:{name:"exp",category:"Arithmetic",syntax:["exp(x)"],description:"Calculate the exponent of a value.",examples:["exp(1.3)","e ^ 1.3","log(exp(1.3))","x = 2.4","(exp(i*x) == cos(x) + i*sin(x)) # Euler's formula"],seealso:["expm","expm1","pow","log"]},expm:{name:"expm",category:"Arithmetic",syntax:["exp(x)"],description:"Compute the matrix exponential, expm(A) = e^A. The matrix must be square. Not to be confused with exp(a), which performs element-wise exponentiation.",examples:["expm([[0,2],[0,0]])"],seealso:["exp"]},expm1:{name:"expm1",category:"Arithmetic",syntax:["expm1(x)"],description:"Calculate the value of subtracting 1 from the exponential value.",examples:["expm1(2)","pow(e, 2) - 1","log(expm1(2) + 1)"],seealso:["exp","pow","log"]},fix:{name:"fix",category:"Arithmetic",syntax:["fix(x)"],description:"Round a value towards zero. If x is complex, both real and imaginary part are rounded towards zero.",examples:["fix(3.2)","fix(3.8)","fix(-4.2)","fix(-4.8)"],seealso:["ceil","floor","round"]},floor:{name:"floor",category:"Arithmetic",syntax:["floor(x)"],description:"Round a value towards minus infinity.If x is complex, both real and imaginary part are rounded towards minus infinity.",examples:["floor(3.2)","floor(3.8)","floor(-4.2)"],seealso:["ceil","fix","round"]},gcd:{name:"gcd",category:"Arithmetic",syntax:["gcd(a, b)","gcd(a, b, c, ...)"],description:"Compute the greatest common divisor.",examples:["gcd(8, 12)","gcd(-4, 6)","gcd(25, 15, -10)"],seealso:["lcm","xgcd"]},hypot:{name:"hypot",category:"Arithmetic",syntax:["hypot(a, b, c, ...)","hypot([a, b, c, ...])"],description:"Calculate the hypotenusa of a list with values. ",examples:["hypot(3, 4)","sqrt(3^2 + 4^2)","hypot(-2)","hypot([3, 4, 5])"],seealso:["abs","norm"]},lcm:{name:"lcm",category:"Arithmetic",syntax:["lcm(x, y)"],description:"Compute the least common multiple.",examples:["lcm(4, 6)","lcm(6, 21)","lcm(6, 21, 5)"],seealso:["gcd"]},log:{name:"log",category:"Arithmetic",syntax:["log(x)","log(x, base)"],description:"Compute the logarithm of a value. If no base is provided, the natural logarithm of x is calculated. If base if provided, the logarithm is calculated for the specified base. log(x, base) is defined as log(x) / log(base).",examples:["log(3.5)","a = log(2.4)","exp(a)","10 ^ 4","log(10000, 10)","log(10000) / log(10)","b = log(1024, 2)","2 ^ b"],seealso:["exp","log1p","log2","log10"]},log2:{name:"log2",category:"Arithmetic",syntax:["log2(x)"],description:"Calculate the 2-base of a value. This is the same as calculating `log(x, 2)`.",examples:["log2(0.03125)","log2(16)","log2(16) / log2(2)","pow(2, 4)"],seealso:["exp","log1p","log","log10"]},log1p:{name:"log1p",category:"Arithmetic",syntax:["log1p(x)","log1p(x, base)"],description:"Calculate the logarithm of a `value+1`",examples:["log1p(2.5)","exp(log1p(1.4))","pow(10, 4)","log1p(9999, 10)","log1p(9999) / log(10)"],seealso:["exp","log","log2","log10"]},log10:{name:"log10",category:"Arithmetic",syntax:["log10(x)"],description:"Compute the 10-base logarithm of a value.",examples:["log10(0.00001)","log10(10000)","10 ^ 4","log(10000) / log(10)","log(10000, 10)"],seealso:["exp","log"]},mod:{name:"mod",category:"Operators",syntax:["x % y","x mod y","mod(x, y)"],description:"Calculates the modulus, the remainder of an integer division.",examples:["7 % 3","11 % 2","10 mod 4","isOdd(x) = x % 2","isOdd(2)","isOdd(3)"],seealso:["divide"]},multiply:{name:"multiply",category:"Operators",syntax:["x * y","multiply(x, y)"],description:"multiply two values.",examples:["a = 2.1 * 3.4","a / 3.4","2 * 3 + 4","2 * (3 + 4)","3 * 2.1 km"],seealso:["divide"]},norm:{name:"norm",category:"Arithmetic",syntax:["norm(x)","norm(x, p)"],description:"Calculate the norm of a number, vector or matrix.",examples:["abs(-3.5)","norm(-3.5)","norm(3 - 4i)","norm([1, 2, -3], Infinity)","norm([1, 2, -3], -Infinity)","norm([3, 4], 2)","norm([[1, 2], [3, 4]], 1)",'norm([[1, 2], [3, 4]], "inf")','norm([[1, 2], [3, 4]], "fro")']},nthRoot:{name:"nthRoot",category:"Arithmetic",syntax:["nthRoot(a)","nthRoot(a, root)"],description:'Calculate the nth root of a value. The principal nth root of a positive real number A, is the positive real solution of the equation "x^root = A".',examples:["4 ^ 3","nthRoot(64, 3)","nthRoot(9, 2)","sqrt(9)"],seealso:["nthRoots","pow","sqrt"]},nthRoots:{name:"nthRoots",category:"Arithmetic",syntax:["nthRoots(A)","nthRoots(A, root)"],description:'Calculate the nth roots of a value. An nth root of a positive real number A, is a positive real solution of the equation "x^root = A". This function returns an array of complex values.',examples:["nthRoots(1)","nthRoots(1, 3)"],seealso:["sqrt","pow","nthRoot"]},pow:{name:"pow",category:"Operators",syntax:["x ^ y","pow(x, y)"],description:"Calculates the power of x to y, x^y.",examples:["2^3","2*2*2","1 + e ^ (pi * i)","pow([[1, 2], [4, 3]], 2)","pow([[1, 2], [4, 3]], -1)"],seealso:["multiply","nthRoot","nthRoots","sqrt"]},round:{name:"round",category:"Arithmetic",syntax:["round(x)","round(x, n)","round(unit, valuelessUnit)","round(unit, n, valuelessUnit)"],description:"round a value towards the nearest integer.If x is complex, both real and imaginary part are rounded towards the nearest integer. When n is specified, the value is rounded to n decimals.",examples:["round(3.2)","round(3.8)","round(-4.2)","round(-4.8)","round(pi, 3)","round(123.45678, 2)","round(3.241cm, 2, cm)","round([3.2, 3.8, -4.7])"],seealso:["ceil","floor","fix"]},sign:{name:"sign",category:"Arithmetic",syntax:["sign(x)"],description:"Compute the sign of a value. The sign of a value x is 1 when x>1, -1 when x<0, and 0 when x=0.",examples:["sign(3.5)","sign(-4.2)","sign(0)"],seealso:["abs"]},sqrt:{name:"sqrt",category:"Arithmetic",syntax:["sqrt(x)"],description:"Compute the square root value. If x = y * y, then y is the square root of x.",examples:["sqrt(25)","5 * 5","sqrt(-1)"],seealso:["square","sqrtm","multiply","nthRoot","nthRoots","pow"]},sqrtm:{name:"sqrtm",category:"Arithmetic",syntax:["sqrtm(x)"],description:"Calculate the principal square root of a square matrix. The principal square root matrix `X` of another matrix `A` is such that `X * X = A`.",examples:["sqrtm([[33, 24], [48, 57]])"],seealso:["sqrt","abs","square","multiply"]},square:{name:"square",category:"Arithmetic",syntax:["square(x)"],description:"Compute the square of a value. The square of x is x * x.",examples:["square(3)","sqrt(9)","3^2","3 * 3"],seealso:["multiply","pow","sqrt","cube"]},subtract:{name:"subtract",category:"Operators",syntax:["x - y","subtract(x, y)"],description:"subtract two values.",examples:["a = 5.3 - 2","a + 2","2/3 - 1/6","2 * 3 - 3","2.1 km - 500m"],seealso:["add"]},unaryMinus:{name:"unaryMinus",category:"Operators",syntax:["-x","unaryMinus(x)"],description:"Inverse the sign of a value. Converts booleans and strings to numbers.",examples:["-4.5","-(-5.6)",'-"22"'],seealso:["add","subtract","unaryPlus"]},unaryPlus:{name:"unaryPlus",category:"Operators",syntax:["+x","unaryPlus(x)"],description:"Converts booleans and strings to numbers.",examples:["+true",'+"2"'],seealso:["add","subtract","unaryMinus"]},xgcd:{name:"xgcd",category:"Arithmetic",syntax:["xgcd(a, b)"],description:"Calculate the extended greatest common divisor for two values. The result is an array [d, x, y] with 3 entries, where d is the greatest common divisor, and d = x * a + y * b.",examples:["xgcd(8, 12)","gcd(8, 12)","xgcd(36163, 21199)"],seealso:["gcd","lcm"]},invmod:{name:"invmod",category:"Arithmetic",syntax:["invmod(a, b)"],description:"Calculate the (modular) multiplicative inverse of a modulo b. Solution to the equation ax ≣ 1 (mod b)",examples:["invmod(8, 12)","invmod(7, 13)","invmod(15151, 15122)"],seealso:["gcd","xgcd"]},bitAnd:{name:"bitAnd",category:"Bitwise",syntax:["x & y","bitAnd(x, y)"],description:"Bitwise AND operation. Performs the logical AND operation on each pair of the corresponding bits of the two given values by multiplying them. If both bits in the compared position are 1, the bit in the resulting binary representation is 1, otherwise, the result is 0",examples:["5 & 3","bitAnd(53, 131)","[1, 12, 31] & 42"],seealso:["bitNot","bitOr","bitXor","leftShift","rightArithShift","rightLogShift"]},bitNot:{name:"bitNot",category:"Bitwise",syntax:["~x","bitNot(x)"],description:"Bitwise NOT operation. Performs a logical negation on each bit of the given value. Bits that are 0 become 1, and those that are 1 become 0.",examples:["~1","~2","bitNot([2, -3, 4])"],seealso:["bitAnd","bitOr","bitXor","leftShift","rightArithShift","rightLogShift"]},bitOr:{name:"bitOr",category:"Bitwise",syntax:["x | y","bitOr(x, y)"],description:"Bitwise OR operation. Performs the logical inclusive OR operation on each pair of corresponding bits of the two given values. The result in each position is 1 if the first bit is 1 or the second bit is 1 or both bits are 1, otherwise, the result is 0.",examples:["5 | 3","bitOr([1, 2, 3], 4)"],seealso:["bitAnd","bitNot","bitXor","leftShift","rightArithShift","rightLogShift"]},bitXor:{name:"bitXor",category:"Bitwise",syntax:["bitXor(x, y)"],description:"Bitwise XOR operation, exclusive OR. Performs the logical exclusive OR operation on each pair of corresponding bits of the two given values. The result in each position is 1 if only the first bit is 1 or only the second bit is 1, but will be 0 if both are 0 or both are 1.",examples:["bitOr(1, 2)","bitXor([2, 3, 4], 4)"],seealso:["bitAnd","bitNot","bitOr","leftShift","rightArithShift","rightLogShift"]},leftShift:{name:"leftShift",category:"Bitwise",syntax:["x << y","leftShift(x, y)"],description:"Bitwise left logical shift of a value x by y number of bits.",examples:["4 << 1","8 >> 1"],seealso:["bitAnd","bitNot","bitOr","bitXor","rightArithShift","rightLogShift"]},rightArithShift:{name:"rightArithShift",category:"Bitwise",syntax:["x >> y","rightArithShift(x, y)"],description:"Bitwise right arithmetic shift of a value x by y number of bits.",examples:["8 >> 1","4 << 1","-12 >> 2"],seealso:["bitAnd","bitNot","bitOr","bitXor","leftShift","rightLogShift"]},rightLogShift:{name:"rightLogShift",category:"Bitwise",syntax:["x >>> y","rightLogShift(x, y)"],description:"Bitwise right logical shift of a value x by y number of bits.",examples:["8 >>> 1","4 << 1","-12 >>> 2"],seealso:["bitAnd","bitNot","bitOr","bitXor","leftShift","rightArithShift"]},bellNumbers:{name:"bellNumbers",category:"Combinatorics",syntax:["bellNumbers(n)"],description:"The Bell Numbers count the number of partitions of a set. A partition is a pairwise disjoint subset of S whose union is S. `bellNumbers` only takes integer arguments. The following condition must be enforced: n >= 0.",examples:["bellNumbers(3)","bellNumbers(8)"],seealso:["stirlingS2"]},catalan:{name:"catalan",category:"Combinatorics",syntax:["catalan(n)"],description:"The Catalan Numbers enumerate combinatorial structures of many different types. catalan only takes integer arguments. The following condition must be enforced: n >= 0.",examples:["catalan(3)","catalan(8)"],seealso:["bellNumbers"]},composition:{name:"composition",category:"Combinatorics",syntax:["composition(n, k)"],description:"The composition counts of n into k parts. composition only takes integer arguments. The following condition must be enforced: k <= n.",examples:["composition(5, 3)"],seealso:["combinations"]},stirlingS2:{name:"stirlingS2",category:"Combinatorics",syntax:["stirlingS2(n, k)"],description:"he Stirling numbers of the second kind, counts the number of ways to partition a set of n labelled objects into k nonempty unlabelled subsets. `stirlingS2` only takes integer arguments. The following condition must be enforced: k <= n. If n = k or k = 1, then s(n,k) = 1.",examples:["stirlingS2(5, 3)"],seealso:["bellNumbers"]},config:{name:"config",category:"Core",syntax:["config()","config(options)"],description:"Get configuration or change configuration.",examples:["config()","1/3 + 1/4",'config({number: "Fraction"})',"1/3 + 1/4"],seealso:[]},import:{name:"import",category:"Core",syntax:["import(functions)","import(functions, options)"],description:"Import functions or constants from an object.",examples:["import({myFn: f(x)=x^2, myConstant: 32 })","myFn(2)","myConstant"],seealso:[]},typed:{name:"typed",category:"Core",syntax:["typed(signatures)","typed(name, signatures)"],description:"Create a typed function.",examples:['double = typed({ "number": f(x)=x+x, "string": f(x)=concat(x,x) })',"double(2)",'double("hello")'],seealso:[]},arg:{name:"arg",category:"Complex",syntax:["arg(x)"],description:"Compute the argument of a complex value. If x = a+bi, the argument is computed as atan2(b, a).",examples:["arg(2 + 2i)","atan2(3, 2)","arg(2 + 3i)"],seealso:["re","im","conj","abs"]},conj:{name:"conj",category:"Complex",syntax:["conj(x)"],description:"Compute the complex conjugate of a complex value. If x = a+bi, the complex conjugate is a-bi.",examples:["conj(2 + 3i)","conj(2 - 3i)","conj(-5.2i)"],seealso:["re","im","abs","arg"]},re:{name:"re",category:"Complex",syntax:["re(x)"],description:"Get the real part of a complex number.",examples:["re(2 + 3i)","im(2 + 3i)","re(-5.2i)","re(2.4)"],seealso:["im","conj","abs","arg"]},im:{name:"im",category:"Complex",syntax:["im(x)"],description:"Get the imaginary part of a complex number.",examples:["im(2 + 3i)","re(2 + 3i)","im(-5.2i)","im(2.4)"],seealso:["re","conj","abs","arg"]},evaluate:{name:"evaluate",category:"Expression",syntax:["evaluate(expression)","evaluate(expression, scope)","evaluate([expr1, expr2, expr3, ...])","evaluate([expr1, expr2, expr3, ...], scope)"],description:"Evaluate an expression or an array with expressions.",examples:['evaluate("2 + 3")','evaluate("sqrt(16)")','evaluate("2 inch to cm")','evaluate("sin(x * pi)", { "x": 1/2 })','evaluate(["width=2", "height=4","width*height"])'],seealso:[]},help:{name:"help",category:"Expression",syntax:["help(object)","help(string)"],description:"Display documentation on a function or data type.",examples:["help(sqrt)",'help("complex")'],seealso:[]},distance:{name:"distance",category:"Geometry",syntax:["distance([x1, y1], [x2, y2])","distance([[x1, y1], [x2, y2]])"],description:"Calculates the Euclidean distance between two points.",examples:["distance([0,0], [4,4])","distance([[0,0], [4,4]])"],seealso:[]},intersect:{name:"intersect",category:"Geometry",syntax:["intersect(expr1, expr2, expr3, expr4)","intersect(expr1, expr2, expr3)"],description:"Computes the intersection point of lines and/or planes.",examples:["intersect([0, 0], [10, 10], [10, 0], [0, 10])","intersect([1, 0, 1], [4, -2, 2], [1, 1, 1, 6])"],seealso:[]},and:{name:"and",category:"Logical",syntax:["x and y","and(x, y)"],description:"Logical and. Test whether two values are both defined with a nonzero/nonempty value.",examples:["true and false","true and true","2 and 4"],seealso:["not","or","xor"]},not:{name:"not",category:"Logical",syntax:["not x","not(x)"],description:"Logical not. Flips the boolean value of given argument.",examples:["not true","not false","not 2","not 0"],seealso:["and","or","xor"]},or:{name:"or",category:"Logical",syntax:["x or y","or(x, y)"],description:"Logical or. Test if at least one value is defined with a nonzero/nonempty value.",examples:["true or false","false or false","0 or 4"],seealso:["not","and","xor"]},xor:{name:"xor",category:"Logical",syntax:["x xor y","xor(x, y)"],description:"Logical exclusive or, xor. Test whether one and only one value is defined with a nonzero/nonempty value.",examples:["true xor false","false xor false","true xor true","0 xor 4"],seealso:["not","and","or"]},concat:{name:"concat",category:"Matrix",syntax:["concat(A, B, C, ...)","concat(A, B, C, ..., dim)"],description:"Concatenate matrices. By default, the matrices are concatenated by the last dimension. The dimension on which to concatenate can be provided as last argument.",examples:["A = [1, 2; 5, 6]","B = [3, 4; 7, 8]","concat(A, B)","concat(A, B, 1)","concat(A, B, 2)"],seealso:["det","diag","identity","inv","ones","range","size","squeeze","subset","trace","transpose","zeros"]},count:{name:"count",category:"Matrix",syntax:["count(x)"],description:"Count the number of elements of a matrix, array or string.",examples:["a = [1, 2; 3, 4; 5, 6]","count(a)","size(a)",'count("hello world")'],seealso:["size"]},cross:{name:"cross",category:"Matrix",syntax:["cross(A, B)"],description:"Calculate the cross product for two vectors in three dimensional space.",examples:["cross([1, 1, 0], [0, 1, 1])","cross([3, -3, 1], [4, 9, 2])","cross([2, 3, 4], [5, 6, 7])"],seealso:["multiply","dot"]},column:{name:"column",category:"Matrix",syntax:["column(x, index)"],description:"Return a column from a matrix or array.",examples:["A = [[1, 2], [3, 4]]","column(A, 1)","column(A, 2)"],seealso:["row","matrixFromColumns"]},ctranspose:{name:"ctranspose",category:"Matrix",syntax:["x'","ctranspose(x)"],description:"Complex Conjugate and Transpose a matrix",examples:["a = [1, 2, 3; 4, 5, 6]","a'","ctranspose(a)"],seealso:["concat","det","diag","identity","inv","ones","range","size","squeeze","subset","trace","zeros"]},det:{name:"det",category:"Matrix",syntax:["det(x)"],description:"Calculate the determinant of a matrix",examples:["det([1, 2; 3, 4])","det([-2, 2, 3; -1, 1, 3; 2, 0, -1])"],seealso:["concat","diag","identity","inv","ones","range","size","squeeze","subset","trace","transpose","zeros"]},diag:{name:"diag",category:"Matrix",syntax:["diag(x)","diag(x, k)"],description:"Create a diagonal matrix or retrieve the diagonal of a matrix. When x is a vector, a matrix with the vector values on the diagonal will be returned. When x is a matrix, a vector with the diagonal values of the matrix is returned. When k is provided, the k-th diagonal will be filled in or retrieved, if k is positive, the values are placed on the super diagonal. When k is negative, the values are placed on the sub diagonal.",examples:["diag(1:3)","diag(1:3, 1)","a = [1, 2, 3; 4, 5, 6; 7, 8, 9]","diag(a)"],seealso:["concat","det","identity","inv","ones","range","size","squeeze","subset","trace","transpose","zeros"]},diff:{name:"diff",category:"Matrix",syntax:["diff(arr)","diff(arr, dim)"],description:["Create a new matrix or array with the difference of the passed matrix or array.","Dim parameter is optional and used to indicant the dimension of the array/matrix to apply the difference","If no dimension parameter is passed it is assumed as dimension 0","Dimension is zero-based in javascript and one-based in the parser","Arrays must be 'rectangular' meaning arrays like [1, 2]","If something is passed as a matrix it will be returned as a matrix but other than that all matrices are converted to arrays"],examples:["A = [1, 2, 4, 7, 0]","diff(A)","diff(A, 1)","B = [[1, 2], [3, 4]]","diff(B)","diff(B, 1)","diff(B, 2)","diff(B, bignumber(2))","diff([[1, 2], matrix([3, 4])], 2)"],seealso:["subtract","partitionSelect"]},dot:{name:"dot",category:"Matrix",syntax:["dot(A, B)","A * B"],description:"Calculate the dot product of two vectors. The dot product of A = [a1, a2, a3, ..., an] and B = [b1, b2, b3, ..., bn] is defined as dot(A, B) = a1 * b1 + a2 * b2 + a3 * b3 + ... + an * bn",examples:["dot([2, 4, 1], [2, 2, 3])","[2, 4, 1] * [2, 2, 3]"],seealso:["multiply","cross"]},getMatrixDataType:{name:"getMatrixDataType",category:"Matrix",syntax:["getMatrixDataType(x)"],description:'Find the data type of all elements in a matrix or array, for example "number" if all items are a number and "Complex" if all values are complex numbers. If a matrix contains more than one data type, it will return "mixed".',examples:["getMatrixDataType([1, 2, 3])","getMatrixDataType([[5 cm], [2 inch]])",'getMatrixDataType([1, "text"])',"getMatrixDataType([1, bignumber(4)])"],seealso:["matrix","sparse","typeOf"]},identity:{name:"identity",category:"Matrix",syntax:["identity(n)","identity(m, n)","identity([m, n])"],description:"Returns the identity matrix with size m-by-n. The matrix has ones on the diagonal and zeros elsewhere.",examples:["identity(3)","identity(3, 5)","a = [1, 2, 3; 4, 5, 6]","identity(size(a))"],seealso:["concat","det","diag","inv","ones","range","size","squeeze","subset","trace","transpose","zeros"]},filter:{name:"filter",category:"Matrix",syntax:["filter(x, test)"],description:"Filter items in a matrix.",examples:["isPositive(x) = x > 0","filter([6, -2, -1, 4, 3], isPositive)","filter([6, -2, 0, 1, 0], x != 0)"],seealso:["sort","map","forEach"]},flatten:{name:"flatten",category:"Matrix",syntax:["flatten(x)"],description:"Flatten a multi dimensional matrix into a single dimensional matrix.",examples:["a = [1, 2, 3; 4, 5, 6]","size(a)","b = flatten(a)","size(b)"],seealso:["concat","resize","size","squeeze"]},forEach:{name:"forEach",category:"Matrix",syntax:["forEach(x, callback)"],description:"Iterates over all elements of a matrix/array, and executes the given callback function.",examples:["numberOfPets = {}","addPet(n) = numberOfPets[n] = (numberOfPets[n] ? numberOfPets[n]:0 ) + 1;",'forEach(["Dog","Cat","Cat"], addPet)',"numberOfPets"],seealso:["map","sort","filter"]},inv:{name:"inv",category:"Matrix",syntax:["inv(x)"],description:"Calculate the inverse of a matrix",examples:["inv([1, 2; 3, 4])","inv(4)","1 / 4"],seealso:["concat","det","diag","identity","ones","range","size","squeeze","subset","trace","transpose","zeros"]},pinv:{name:"pinv",category:"Matrix",syntax:["pinv(x)"],description:"Calculate the Moore–Penrose inverse of a matrix",examples:["pinv([1, 2; 3, 4])","pinv([[1, 0], [0, 1], [0, 1]])","pinv(4)"],seealso:["inv"]},eigs:{name:"eigs",category:"Matrix",syntax:["eigs(x)"],description:"Calculate the eigenvalues and optionally eigenvectors of a square matrix",examples:["eigs([[5, 2.3], [2.3, 1]])","eigs([[1, 2, 3], [4, 5, 6], [7, 8, 9]], { precision: 1e-6, eigenvectors: false })"],seealso:["inv"]},kron:{name:"kron",category:"Matrix",syntax:["kron(x, y)"],description:"Calculates the kronecker product of 2 matrices or vectors.",examples:["kron([[1, 0], [0, 1]], [[1, 2], [3, 4]])","kron([1,1], [2,3,4])"],seealso:["multiply","dot","cross"]},matrixFromFunction:{name:"matrixFromFunction",category:"Matrix",syntax:["matrixFromFunction(size, fn)","matrixFromFunction(size, fn, format)","matrixFromFunction(size, fn, format, datatype)","matrixFromFunction(size, format, fn)","matrixFromFunction(size, format, datatype, fn)"],description:"Create a matrix by evaluating a generating function at each index.",examples:["f(I) = I[1] - I[2]","matrixFromFunction([3,3], f)","g(I) = I[1] - I[2] == 1 ? 4 : 0",'matrixFromFunction([100, 100], "sparse", g)',"matrixFromFunction([5], random)"],seealso:["matrix","matrixFromRows","matrixFromColumns","zeros"]},matrixFromRows:{name:"matrixFromRows",category:"Matrix",syntax:["matrixFromRows(...arr)","matrixFromRows(row1, row2)","matrixFromRows(row1, row2, row3)"],description:"Create a dense matrix from vectors as individual rows.",examples:["matrixFromRows([1, 2, 3], [[4],[5],[6]])"],seealso:["matrix","matrixFromColumns","matrixFromFunction","zeros"]},matrixFromColumns:{name:"matrixFromColumns",category:"Matrix",syntax:["matrixFromColumns(...arr)","matrixFromColumns(row1, row2)","matrixFromColumns(row1, row2, row3)"],description:"Create a dense matrix from vectors as individual columns.",examples:["matrixFromColumns([1, 2, 3], [[4],[5],[6]])"],seealso:["matrix","matrixFromRows","matrixFromFunction","zeros"]},map:{name:"map",category:"Matrix",syntax:["map(x, callback)"],description:"Create a new matrix or array with the results of the callback function executed on each entry of the matrix/array.",examples:["map([1, 2, 3], square)"],seealso:["filter","forEach"]},ones:{name:"ones",category:"Matrix",syntax:["ones(m)","ones(m, n)","ones(m, n, p, ...)","ones([m])","ones([m, n])","ones([m, n, p, ...])"],description:"Create a matrix containing ones.",examples:["ones(3)","ones(3, 5)","ones([2,3]) * 4.5","a = [1, 2, 3; 4, 5, 6]","ones(size(a))"],seealso:["concat","det","diag","identity","inv","range","size","squeeze","subset","trace","transpose","zeros"]},partitionSelect:{name:"partitionSelect",category:"Matrix",syntax:["partitionSelect(x, k)","partitionSelect(x, k, compare)"],description:"Partition-based selection of an array or 1D matrix. Will find the kth smallest value, and mutates the input array. Uses Quickselect.",examples:["partitionSelect([5, 10, 1], 2)",'partitionSelect(["C", "B", "A", "D"], 1, compareText)',"arr = [5, 2, 1]","partitionSelect(arr, 0) # returns 1, arr is now: [1, 2, 5]","arr","partitionSelect(arr, 1, 'desc') # returns 2, arr is now: [5, 2, 1]","arr"],seealso:["sort"]},range:{name:"range",category:"Type",syntax:["start:end","start:step:end","range(start, end)","range(start, end, step)","range(string)"],description:"Create a range. Lower bound of the range is included, upper bound is excluded.",examples:["1:5","3:-1:-3","range(3, 7)","range(0, 12, 2)",'range("4:10")',"range(1m, 1m, 3m)","a = [1, 2, 3, 4; 5, 6, 7, 8]","a[1:2, 1:2]"],seealso:["concat","det","diag","identity","inv","ones","size","squeeze","subset","trace","transpose","zeros"]},resize:{name:"resize",category:"Matrix",syntax:["resize(x, size)","resize(x, size, defaultValue)"],description:"Resize a matrix.",examples:["resize([1,2,3,4,5], [3])","resize([1,2,3], [5])","resize([1,2,3], [5], -1)","resize(2, [2, 3])",'resize("hello", [8], "!")'],seealso:["size","subset","squeeze","reshape"]},reshape:{name:"reshape",category:"Matrix",syntax:["reshape(x, sizes)"],description:"Reshape a multi dimensional array to fit the specified dimensions.",examples:["reshape([1, 2, 3, 4, 5, 6], [2, 3])","reshape([[1, 2], [3, 4]], [1, 4])","reshape([[1, 2], [3, 4]], [4])","reshape([1, 2, 3, 4], [-1, 2])"],seealso:["size","squeeze","resize"]},rotate:{name:"rotate",category:"Matrix",syntax:["rotate(w, theta)","rotate(w, theta, v)"],description:"Returns a 2-D rotation matrix (2x2) for a given angle (in radians). Returns a 2-D rotation matrix (3x3) of a given angle (in radians) around given axis.",examples:["rotate([1, 0], pi / 2)",'rotate(matrix([1, 0]), unit("35deg"))','rotate([1, 0, 0], unit("90deg"), [0, 0, 1])','rotate(matrix([1, 0, 0]), unit("90deg"), matrix([0, 0, 1]))'],seealso:["matrix","rotationMatrix"]},rotationMatrix:{name:"rotationMatrix",category:"Matrix",syntax:["rotationMatrix(theta)","rotationMatrix(theta, v)","rotationMatrix(theta, v, format)"],description:"Returns a 2-D rotation matrix (2x2) for a given angle (in radians). Returns a 2-D rotation matrix (3x3) of a given angle (in radians) around given axis.",examples:["rotationMatrix(pi / 2)",'rotationMatrix(unit("45deg"), [0, 0, 1])','rotationMatrix(1, matrix([0, 0, 1]), "sparse")'],seealso:["cos","sin"]},row:{name:"row",category:"Matrix",syntax:["row(x, index)"],description:"Return a row from a matrix or array.",examples:["A = [[1, 2], [3, 4]]","row(A, 1)","row(A, 2)"],seealso:["column","matrixFromRows"]},size:{name:"size",category:"Matrix",syntax:["size(x)"],description:"Calculate the size of a matrix.",examples:["size(2.3)",'size("hello world")',"a = [1, 2; 3, 4; 5, 6]","size(a)","size(1:6)"],seealso:["concat","count","det","diag","identity","inv","ones","range","squeeze","subset","trace","transpose","zeros"]},sort:{name:"sort",category:"Matrix",syntax:["sort(x)","sort(x, compare)"],description:'Sort the items in a matrix. Compare can be a string "asc", "desc", "natural", or a custom sort function.',examples:["sort([5, 10, 1])",'sort(["C", "B", "A", "D"], "natural")',"sortByLength(a, b) = size(a)[1] - size(b)[1]",'sort(["Langdon", "Tom", "Sara"], sortByLength)','sort(["10", "1", "2"], "natural")'],seealso:["map","filter","forEach"]},squeeze:{name:"squeeze",category:"Matrix",syntax:["squeeze(x)"],description:"Remove inner and outer singleton dimensions from a matrix.",examples:["a = zeros(3,2,1)","size(squeeze(a))","b = zeros(1,1,3)","size(squeeze(b))"],seealso:["concat","det","diag","identity","inv","ones","range","size","subset","trace","transpose","zeros"]},subset:{name:"subset",category:"Matrix",syntax:["value(index)","value(index) = replacement","subset(value, [index])","subset(value, [index], replacement)"],description:"Get or set a subset of the entries of a matrix or characters of a string. Indexes are one-based. There should be one index specification for each dimension of the target. Each specification can be a single index, a list of indices, or a range in colon notation `l:u`. In a range, both the lower bound l and upper bound u are included; and if a bound is omitted it defaults to the most extreme valid value. The cartesian product of the indices specified in each dimension determines the target of the operation.",examples:["d = [1, 2; 3, 4]","e = []","e[1, 1:2] = [5, 6]","e[2, :] = [7, 8]","f = d * e","f[2, 1]","f[:, 1]","f[[1,2], [1,3]] = [9, 10; 11, 12]","f"],seealso:["concat","det","diag","identity","inv","ones","range","size","squeeze","trace","transpose","zeros"]},trace:{name:"trace",category:"Matrix",syntax:["trace(A)"],description:"Calculate the trace of a matrix: the sum of the elements on the main diagonal of a square matrix.",examples:["A = [1, 2, 3; -1, 2, 3; 2, 0, 3]","trace(A)"],seealso:["concat","det","diag","identity","inv","ones","range","size","squeeze","subset","transpose","zeros"]},transpose:{name:"transpose",category:"Matrix",syntax:["x'","transpose(x)"],description:"Transpose a matrix",examples:["a = [1, 2, 3; 4, 5, 6]","a'","transpose(a)"],seealso:["concat","det","diag","identity","inv","ones","range","size","squeeze","subset","trace","zeros"]},zeros:{name:"zeros",category:"Matrix",syntax:["zeros(m)","zeros(m, n)","zeros(m, n, p, ...)","zeros([m])","zeros([m, n])","zeros([m, n, p, ...])"],description:"Create a matrix containing zeros.",examples:["zeros(3)","zeros(3, 5)","a = [1, 2, 3; 4, 5, 6]","zeros(size(a))"],seealso:["concat","det","diag","identity","inv","ones","range","size","squeeze","subset","trace","transpose"]},fft:{name:"fft",category:"Matrix",syntax:["fft(x)"],description:"Calculate N-dimensional fourier transform",examples:["fft([[1, 0], [1, 0]])"],seealso:["ifft"]},ifft:{name:"ifft",category:"Matrix",syntax:["ifft(x)"],description:"Calculate N-dimensional inverse fourier transform",examples:["ifft([[2, 2], [0, 0]])"],seealso:["fft"]},sylvester:{name:"sylvester",category:"Algebra",syntax:["sylvester(A,B,C)"],description:"Solves the real-valued Sylvester equation AX+XB=C for X",examples:["sylvester([[-1, -2], [1, 1]], [[-2, 1], [-1, 2]], [[-3, 2], [3, 0]])","A = [[-1, -2], [1, 1]]; B = [[2, -1], [1, -2]]; C = [[-3, 2], [3, 0]]","sylvester(A, B, C)"],seealso:["schur","lyap"]},schur:{name:"schur",category:"Algebra",syntax:["schur(A)"],description:"Performs a real Schur decomposition of the real matrix A = UTU'",examples:["schur([[1, 0], [-4, 3]])","A = [[1, 0], [-4, 3]]","schur(A)"],seealso:["lyap","sylvester"]},lyap:{name:"lyap",category:"Algebra",syntax:["lyap(A,Q)"],description:"Solves the Continuous-time Lyapunov equation AP+PA'+Q=0 for P",examples:["lyap([[-2, 0], [1, -4]], [[3, 1], [1, 3]])","A = [[-2, 0], [1, -4]]","Q = [[3, 1], [1, 3]]","lyap(A,Q)"],seealso:["schur","sylvester"]},solveODE:{name:"solveODE",category:"Numeric",syntax:["solveODE(func, tspan, y0)","solveODE(func, tspan, y0, options)"],description:"Numerical Integration of Ordinary Differential Equations.",examples:["f(t,y) = y","tspan = [0, 4]","solveODE(f, tspan, 1)","solveODE(f, tspan, [1, 2])",'solveODE(f, tspan, 1, { method:"RK23", maxStep:0.1 })'],seealso:["derivative","simplifyCore"]},combinations:{name:"combinations",category:"Probability",syntax:["combinations(n, k)"],description:"Compute the number of combinations of n items taken k at a time",examples:["combinations(7, 5)"],seealso:["combinationsWithRep","permutations","factorial"]},combinationsWithRep:{name:"combinationsWithRep",category:"Probability",syntax:["combinationsWithRep(n, k)"],description:"Compute the number of combinations of n items taken k at a time with replacements.",examples:["combinationsWithRep(7, 5)"],seealso:["combinations","permutations","factorial"]},factorial:{name:"factorial",category:"Probability",syntax:["n!","factorial(n)"],description:"Compute the factorial of a value",examples:["5!","5 * 4 * 3 * 2 * 1","3!"],seealso:["combinations","combinationsWithRep","permutations","gamma"]},gamma:{name:"gamma",category:"Probability",syntax:["gamma(n)"],description:"Compute the gamma function. For small values, the Lanczos approximation is used, and for large values the extended Stirling approximation.",examples:["gamma(4)","3!","gamma(1/2)","sqrt(pi)"],seealso:["factorial"]},kldivergence:{name:"kldivergence",category:"Probability",syntax:["kldivergence(x, y)"],description:"Calculate the Kullback-Leibler (KL) divergence between two distributions.",examples:["kldivergence([0.7,0.5,0.4], [0.2,0.9,0.5])"],seealso:[]},lgamma:{name:"lgamma",category:"Probability",syntax:["lgamma(n)"],description:"Logarithm of the gamma function for real, positive numbers and complex numbers, using Lanczos approximation for numbers and Stirling series for complex numbers.",examples:["lgamma(4)","lgamma(1/2)","lgamma(i)","lgamma(complex(1.1, 2))"],seealso:["gamma"]},multinomial:{name:"multinomial",category:"Probability",syntax:["multinomial(A)"],description:"Multinomial Coefficients compute the number of ways of picking a1, a2, ..., ai unordered outcomes from `n` possibilities. multinomial takes one array of integers as an argument. The following condition must be enforced: every ai > 0.",examples:["multinomial([1, 2, 1])"],seealso:["combinations","factorial"]},permutations:{name:"permutations",category:"Probability",syntax:["permutations(n)","permutations(n, k)"],description:"Compute the number of permutations of n items taken k at a time",examples:["permutations(5)","permutations(5, 3)"],seealso:["combinations","combinationsWithRep","factorial"]},pickRandom:{name:"pickRandom",category:"Probability",syntax:["pickRandom(array)","pickRandom(array, number)","pickRandom(array, weights)","pickRandom(array, number, weights)","pickRandom(array, weights, number)"],description:"Pick a random entry from a given array.",examples:["pickRandom(0:10)","pickRandom([1, 3, 1, 6])","pickRandom([1, 3, 1, 6], 2)","pickRandom([1, 3, 1, 6], [2, 3, 2, 1])","pickRandom([1, 3, 1, 6], 2, [2, 3, 2, 1])","pickRandom([1, 3, 1, 6], [2, 3, 2, 1], 2)"],seealso:["random","randomInt"]},random:{name:"random",category:"Probability",syntax:["random()","random(max)","random(min, max)","random(size)","random(size, max)","random(size, min, max)"],description:"Return a random number.",examples:["random()","random(10, 20)","random([2, 3])"],seealso:["pickRandom","randomInt"]},randomInt:{name:"randomInt",category:"Probability",syntax:["randomInt(max)","randomInt(min, max)","randomInt(size)","randomInt(size, max)","randomInt(size, min, max)"],description:"Return a random integer number",examples:["randomInt(10, 20)","randomInt([2, 3], 10)"],seealso:["pickRandom","random"]},compare:{name:"compare",category:"Relational",syntax:["compare(x, y)"],description:"Compare two values. Returns 1 when x > y, -1 when x < y, and 0 when x == y.",examples:["compare(2, 3)","compare(3, 2)","compare(2, 2)","compare(5cm, 40mm)","compare(2, [1, 2, 3])"],seealso:["equal","unequal","smaller","smallerEq","largerEq","compareNatural","compareText"]},compareNatural:{name:"compareNatural",category:"Relational",syntax:["compareNatural(x, y)"],description:"Compare two values of any type in a deterministic, natural way. Returns 1 when x > y, -1 when x < y, and 0 when x == y.",examples:["compareNatural(2, 3)","compareNatural(3, 2)","compareNatural(2, 2)","compareNatural(5cm, 40mm)",'compareNatural("2", "10")',"compareNatural(2 + 3i, 2 + 4i)","compareNatural([1, 2, 4], [1, 2, 3])","compareNatural([1, 5], [1, 2, 3])","compareNatural([1, 2], [1, 2])","compareNatural({a: 2}, {a: 4})"],seealso:["equal","unequal","smaller","smallerEq","largerEq","compare","compareText"]},compareText:{name:"compareText",category:"Relational",syntax:["compareText(x, y)"],description:"Compare two strings lexically. Comparison is case sensitive. Returns 1 when x > y, -1 when x < y, and 0 when x == y.",examples:['compareText("B", "A")','compareText("A", "B")','compareText("A", "A")','compareText("2", "10")','compare("2", "10")',"compare(2, 10)",'compareNatural("2", "10")','compareText("B", ["A", "B", "C"])'],seealso:["compare","compareNatural"]},deepEqual:{name:"deepEqual",category:"Relational",syntax:["deepEqual(x, y)"],description:"Check equality of two matrices element wise. Returns true if the size of both matrices is equal and when and each of the elements are equal.",examples:["deepEqual([1,3,4], [1,3,4])","deepEqual([1,3,4], [1,3])"],seealso:["equal","unequal","smaller","larger","smallerEq","largerEq","compare"]},equal:{name:"equal",category:"Relational",syntax:["x == y","equal(x, y)"],description:"Check equality of two values. Returns true if the values are equal, and false if not.",examples:["2+2 == 3","2+2 == 4","a = 3.2","b = 6-2.8","a == b","50cm == 0.5m"],seealso:["unequal","smaller","larger","smallerEq","largerEq","compare","deepEqual","equalText"]},equalText:{name:"equalText",category:"Relational",syntax:["equalText(x, y)"],description:"Check equality of two strings. Comparison is case sensitive. Returns true if the values are equal, and false if not.",examples:['equalText("Hello", "Hello")','equalText("a", "A")','equal("2e3", "2000")','equalText("2e3", "2000")','equalText("B", ["A", "B", "C"])'],seealso:["compare","compareNatural","compareText","equal"]},larger:{name:"larger",category:"Relational",syntax:["x > y","larger(x, y)"],description:"Check if value x is larger than y. Returns true if x is larger than y, and false if not.",examples:["2 > 3","5 > 2*2","a = 3.3","b = 6-2.8","(a > b)","(b < a)","5 cm > 2 inch"],seealso:["equal","unequal","smaller","smallerEq","largerEq","compare"]},largerEq:{name:"largerEq",category:"Relational",syntax:["x >= y","largerEq(x, y)"],description:"Check if value x is larger or equal to y. Returns true if x is larger or equal to y, and false if not.",examples:["2 >= 1+1","2 > 1+1","a = 3.2","b = 6-2.8","(a >= b)"],seealso:["equal","unequal","smallerEq","smaller","compare"]},smaller:{name:"smaller",category:"Relational",syntax:["x < y","smaller(x, y)"],description:"Check if value x is smaller than value y. Returns true if x is smaller than y, and false if not.",examples:["2 < 3","5 < 2*2","a = 3.3","b = 6-2.8","(a < b)","5 cm < 2 inch"],seealso:["equal","unequal","larger","smallerEq","largerEq","compare"]},smallerEq:{name:"smallerEq",category:"Relational",syntax:["x <= y","smallerEq(x, y)"],description:"Check if value x is smaller or equal to value y. Returns true if x is smaller than y, and false if not.",examples:["2 <= 1+1","2 < 1+1","a = 3.2","b = 6-2.8","(a <= b)"],seealso:["equal","unequal","larger","smaller","largerEq","compare"]},unequal:{name:"unequal",category:"Relational",syntax:["x != y","unequal(x, y)"],description:"Check unequality of two values. Returns true if the values are unequal, and false if they are equal.",examples:["2+2 != 3","2+2 != 4","a = 3.2","b = 6-2.8","a != b","50cm != 0.5m","5 cm != 2 inch"],seealso:["equal","smaller","larger","smallerEq","largerEq","compare","deepEqual"]},setCartesian:{name:"setCartesian",category:"Set",syntax:["setCartesian(set1, set2)"],description:"Create the cartesian product of two (multi)sets. Multi-dimension arrays will be converted to single-dimension arrays and the values will be sorted in ascending order before the operation.",examples:["setCartesian([1, 2], [3, 4])"],seealso:["setUnion","setIntersect","setDifference","setPowerset"]},setDifference:{name:"setDifference",category:"Set",syntax:["setDifference(set1, set2)"],description:"Create the difference of two (multi)sets: every element of set1, that is not the element of set2. Multi-dimension arrays will be converted to single-dimension arrays before the operation.",examples:["setDifference([1, 2, 3, 4], [3, 4, 5, 6])","setDifference([[1, 2], [3, 4]], [[3, 4], [5, 6]])"],seealso:["setUnion","setIntersect","setSymDifference"]},setDistinct:{name:"setDistinct",category:"Set",syntax:["setDistinct(set)"],description:"Collect the distinct elements of a multiset. A multi-dimension array will be converted to a single-dimension array before the operation.",examples:["setDistinct([1, 1, 1, 2, 2, 3])"],seealso:["setMultiplicity"]},setIntersect:{name:"setIntersect",category:"Set",syntax:["setIntersect(set1, set2)"],description:"Create the intersection of two (multi)sets. Multi-dimension arrays will be converted to single-dimension arrays before the operation.",examples:["setIntersect([1, 2, 3, 4], [3, 4, 5, 6])","setIntersect([[1, 2], [3, 4]], [[3, 4], [5, 6]])"],seealso:["setUnion","setDifference"]},setIsSubset:{name:"setIsSubset",category:"Set",syntax:["setIsSubset(set1, set2)"],description:"Check whether a (multi)set is a subset of another (multi)set: every element of set1 is the element of set2. Multi-dimension arrays will be converted to single-dimension arrays before the operation.",examples:["setIsSubset([1, 2], [3, 4, 5, 6])","setIsSubset([3, 4], [3, 4, 5, 6])"],seealso:["setUnion","setIntersect","setDifference"]},setMultiplicity:{name:"setMultiplicity",category:"Set",syntax:["setMultiplicity(element, set)"],description:"Count the multiplicity of an element in a multiset. A multi-dimension array will be converted to a single-dimension array before the operation.",examples:["setMultiplicity(1, [1, 2, 2, 4])","setMultiplicity(2, [1, 2, 2, 4])"],seealso:["setDistinct","setSize"]},setPowerset:{name:"setPowerset",category:"Set",syntax:["setPowerset(set)"],description:"Create the powerset of a (multi)set: the powerset contains very possible subsets of a (multi)set. A multi-dimension array will be converted to a single-dimension array before the operation.",examples:["setPowerset([1, 2, 3])"],seealso:["setCartesian"]},setSize:{name:"setSize",category:"Set",syntax:["setSize(set)","setSize(set, unique)"],description:'Count the number of elements of a (multi)set. When the second parameter "unique" is true, count only the unique values. A multi-dimension array will be converted to a single-dimension array before the operation.',examples:["setSize([1, 2, 2, 4])","setSize([1, 2, 2, 4], true)"],seealso:["setUnion","setIntersect","setDifference"]},setSymDifference:{name:"setSymDifference",category:"Set",syntax:["setSymDifference(set1, set2)"],description:"Create the symmetric difference of two (multi)sets. Multi-dimension arrays will be converted to single-dimension arrays before the operation.",examples:["setSymDifference([1, 2, 3, 4], [3, 4, 5, 6])","setSymDifference([[1, 2], [3, 4]], [[3, 4], [5, 6]])"],seealso:["setUnion","setIntersect","setDifference"]},setUnion:{name:"setUnion",category:"Set",syntax:["setUnion(set1, set2)"],description:"Create the union of two (multi)sets. Multi-dimension arrays will be converted to single-dimension arrays before the operation.",examples:["setUnion([1, 2, 3, 4], [3, 4, 5, 6])","setUnion([[1, 2], [3, 4]], [[3, 4], [5, 6]])"],seealso:["setIntersect","setDifference"]},zpk2tf:{name:"zpk2tf",category:"Signal",syntax:["zpk2tf(z, p, k)"],description:"Compute the transfer function of a zero-pole-gain model.",examples:["zpk2tf([1, 2], [-1, -2], 1)","zpk2tf([1, 2], [-1, -2])","zpk2tf([1 - 3i, 2 + 2i], [-1, -2])"],seealso:[]},freqz:{name:"freqz",category:"Signal",syntax:["freqz(b, a)","freqz(b, a, w)"],description:"Calculates the frequency response of a filter given its numerator and denominator coefficients.",examples:["freqz([1, 2], [1, 2, 3])","freqz([1, 2], [1, 2, 3], [0, 1])","freqz([1, 2], [1, 2, 3], 512)"],seealso:[]},erf:{name:"erf",category:"Special",syntax:["erf(x)"],description:"Compute the erf function of a value using a rational Chebyshev approximations for different intervals of x",examples:["erf(0.2)","erf(-0.5)","erf(4)"],seealso:[]},zeta:{name:"zeta",category:"Special",syntax:["zeta(s)"],description:"Compute the Riemann Zeta Function using an infinite series and Riemanns Functional Equation for the entire complex plane",examples:["zeta(0.2)","zeta(-0.5)","zeta(4)"],seealso:[]},cumsum:{name:"cumsum",category:"Statistics",syntax:["cumsum(a, b, c, ...)","cumsum(A)"],description:"Compute the cumulative sum of all values.",examples:["cumsum(2, 3, 4, 1)","cumsum([2, 3, 4, 1])","cumsum([1, 2; 3, 4])","cumsum([1, 2; 3, 4], 1)","cumsum([1, 2; 3, 4], 2)"],seealso:["max","mean","median","min","prod","std","sum","variance"]},mad:{name:"mad",category:"Statistics",syntax:["mad(a, b, c, ...)","mad(A)"],description:"Compute the median absolute deviation of a matrix or a list with values. The median absolute deviation is defined as the median of the absolute deviations from the median.",examples:["mad(10, 20, 30)","mad([1, 2, 3])"],seealso:["mean","median","std","abs"]},max:{name:"max",category:"Statistics",syntax:["max(a, b, c, ...)","max(A)","max(A, dimension)"],description:"Compute the maximum value of a list of values.",examples:["max(2, 3, 4, 1)","max([2, 3, 4, 1])","max([2, 5; 4, 3])","max([2, 5; 4, 3], 1)","max([2, 5; 4, 3], 2)","max(2.7, 7.1, -4.5, 2.0, 4.1)","min(2.7, 7.1, -4.5, 2.0, 4.1)"],seealso:["mean","median","min","prod","std","sum","variance"]},mean:{name:"mean",category:"Statistics",syntax:["mean(a, b, c, ...)","mean(A)","mean(A, dimension)"],description:"Compute the arithmetic mean of a list of values.",examples:["mean(2, 3, 4, 1)","mean([2, 3, 4, 1])","mean([2, 5; 4, 3])","mean([2, 5; 4, 3], 1)","mean([2, 5; 4, 3], 2)","mean([1.0, 2.7, 3.2, 4.0])"],seealso:["max","median","min","prod","std","sum","variance"]},median:{name:"median",category:"Statistics",syntax:["median(a, b, c, ...)","median(A)"],description:"Compute the median of all values. The values are sorted and the middle value is returned. In case of an even number of values, the average of the two middle values is returned.",examples:["median(5, 2, 7)","median([3, -1, 5, 7])"],seealso:["max","mean","min","prod","std","sum","variance","quantileSeq"]},min:{name:"min",category:"Statistics",syntax:["min(a, b, c, ...)","min(A)","min(A, dimension)"],description:"Compute the minimum value of a list of values.",examples:["min(2, 3, 4, 1)","min([2, 3, 4, 1])","min([2, 5; 4, 3])","min([2, 5; 4, 3], 1)","min([2, 5; 4, 3], 2)","min(2.7, 7.1, -4.5, 2.0, 4.1)","max(2.7, 7.1, -4.5, 2.0, 4.1)"],seealso:["max","mean","median","prod","std","sum","variance"]},mode:{name:"mode",category:"Statistics",syntax:["mode(a, b, c, ...)","mode(A)","mode(A, a, b, B, c, ...)"],description:"Computes the mode of all values as an array. In case mode being more than one, multiple values are returned in an array.",examples:["mode(2, 1, 4, 3, 1)","mode([1, 2.7, 3.2, 4, 2.7])","mode(1, 4, 6, 1, 6)"],seealso:["max","mean","min","median","prod","std","sum","variance"]},prod:{name:"prod",category:"Statistics",syntax:["prod(a, b, c, ...)","prod(A)"],description:"Compute the product of all values.",examples:["prod(2, 3, 4)","prod([2, 3, 4])","prod([2, 5; 4, 3])"],seealso:["max","mean","min","median","min","std","sum","variance"]},quantileSeq:{name:"quantileSeq",category:"Statistics",syntax:["quantileSeq(A, prob[, sorted])","quantileSeq(A, [prob1, prob2, ...][, sorted])","quantileSeq(A, N[, sorted])"],description:"Compute the prob order quantile of a matrix or a list with values. The sequence is sorted and the middle value is returned. Supported types of sequence values are: Number, BigNumber, Unit Supported types of probablity are: Number, BigNumber. \n\nIn case of a (multi dimensional) array or matrix, the prob order quantile of all elements will be calculated.",examples:["quantileSeq([3, -1, 5, 7], 0.5)","quantileSeq([3, -1, 5, 7], [1/3, 2/3])","quantileSeq([3, -1, 5, 7], 2)","quantileSeq([-1, 3, 5, 7], 0.5, true)"],seealso:["mean","median","min","max","prod","std","sum","variance"]},std:{name:"std",category:"Statistics",syntax:["std(a, b, c, ...)","std(A)","std(A, dimension)","std(A, normalization)","std(A, dimension, normalization)"],description:'Compute the standard deviation of all values, defined as std(A) = sqrt(variance(A)). Optional parameter normalization can be "unbiased" (default), "uncorrected", or "biased".',examples:["std(2, 4, 6)","std([2, 4, 6, 8])",'std([2, 4, 6, 8], "uncorrected")','std([2, 4, 6, 8], "biased")',"std([1, 2, 3; 4, 5, 6])"],seealso:["max","mean","min","median","prod","sum","variance"]},sum:{name:"sum",category:"Statistics",syntax:["sum(a, b, c, ...)","sum(A)","sum(A, dimension)"],description:"Compute the sum of all values.",examples:["sum(2, 3, 4, 1)","sum([2, 3, 4, 1])","sum([2, 5; 4, 3])"],seealso:["max","mean","median","min","prod","std","sum","variance"]},variance:{name:"variance",category:"Statistics",syntax:["variance(a, b, c, ...)","variance(A)","variance(A, dimension)","variance(A, normalization)","variance(A, dimension, normalization)"],description:'Compute the variance of all values. Optional parameter normalization can be "unbiased" (default), "uncorrected", or "biased".',examples:["variance(2, 4, 6)","variance([2, 4, 6, 8])",'variance([2, 4, 6, 8], "uncorrected")','variance([2, 4, 6, 8], "biased")',"variance([1, 2, 3; 4, 5, 6])"],seealso:["max","mean","min","median","min","prod","std","sum"]},corr:{name:"corr",category:"Statistics",syntax:["corr(A,B)"],description:"Compute the correlation coefficient of a two list with values, For matrices, the matrix correlation coefficient is calculated.",examples:["corr([2, 4, 6, 8],[1, 2, 3, 6])","corr(matrix([[1, 2.2, 3, 4.8, 5], [1, 2, 3, 4, 5]]), matrix([[4, 5.3, 6.6, 7, 8], [1, 2, 3, 4, 5]]))"],seealso:["max","mean","min","median","min","prod","std","sum"]},acos:{name:"acos",category:"Trigonometry",syntax:["acos(x)"],description:"Compute the inverse cosine of a value in radians.",examples:["acos(0.5)","acos(cos(2.3))"],seealso:["cos","atan","asin"]},acosh:{name:"acosh",category:"Trigonometry",syntax:["acosh(x)"],description:"Calculate the hyperbolic arccos of a value, defined as `acosh(x) = ln(sqrt(x^2 - 1) + x)`.",examples:["acosh(1.5)"],seealso:["cosh","asinh","atanh"]},acot:{name:"acot",category:"Trigonometry",syntax:["acot(x)"],description:"Calculate the inverse cotangent of a value.",examples:["acot(0.5)","acot(cot(0.5))","acot(2)"],seealso:["cot","atan"]},acoth:{name:"acoth",category:"Trigonometry",syntax:["acoth(x)"],description:"Calculate the hyperbolic arccotangent of a value, defined as `acoth(x) = (ln((x+1)/x) + ln(x/(x-1))) / 2`.",examples:["acoth(2)","acoth(0.5)"],seealso:["acsch","asech"]},acsc:{name:"acsc",category:"Trigonometry",syntax:["acsc(x)"],description:"Calculate the inverse cotangent of a value.",examples:["acsc(2)","acsc(csc(0.5))","acsc(0.5)"],seealso:["csc","asin","asec"]},acsch:{name:"acsch",category:"Trigonometry",syntax:["acsch(x)"],description:"Calculate the hyperbolic arccosecant of a value, defined as `acsch(x) = ln(1/x + sqrt(1/x^2 + 1))`.",examples:["acsch(0.5)"],seealso:["asech","acoth"]},asec:{name:"asec",category:"Trigonometry",syntax:["asec(x)"],description:"Calculate the inverse secant of a value.",examples:["asec(0.5)","asec(sec(0.5))","asec(2)"],seealso:["acos","acot","acsc"]},asech:{name:"asech",category:"Trigonometry",syntax:["asech(x)"],description:"Calculate the inverse secant of a value.",examples:["asech(0.5)"],seealso:["acsch","acoth"]},asin:{name:"asin",category:"Trigonometry",syntax:["asin(x)"],description:"Compute the inverse sine of a value in radians.",examples:["asin(0.5)","asin(sin(0.5))"],seealso:["sin","acos","atan"]},asinh:{name:"asinh",category:"Trigonometry",syntax:["asinh(x)"],description:"Calculate the hyperbolic arcsine of a value, defined as `asinh(x) = ln(x + sqrt(x^2 + 1))`.",examples:["asinh(0.5)"],seealso:["acosh","atanh"]},atan:{name:"atan",category:"Trigonometry",syntax:["atan(x)"],description:"Compute the inverse tangent of a value in radians.",examples:["atan(0.5)","atan(tan(0.5))"],seealso:["tan","acos","asin"]},atanh:{name:"atanh",category:"Trigonometry",syntax:["atanh(x)"],description:"Calculate the hyperbolic arctangent of a value, defined as `atanh(x) = ln((1 + x)/(1 - x)) / 2`.",examples:["atanh(0.5)"],seealso:["acosh","asinh"]},atan2:{name:"atan2",category:"Trigonometry",syntax:["atan2(y, x)"],description:"Computes the principal value of the arc tangent of y/x in radians.",examples:["atan2(2, 2) / pi","angle = 60 deg in rad","x = cos(angle)","y = sin(angle)","atan2(y, x)"],seealso:["sin","cos","tan"]},cos:{name:"cos",category:"Trigonometry",syntax:["cos(x)"],description:"Compute the cosine of x in radians.",examples:["cos(2)","cos(pi / 4) ^ 2","cos(180 deg)","cos(60 deg)","sin(0.2)^2 + cos(0.2)^2"],seealso:["acos","sin","tan"]},cosh:{name:"cosh",category:"Trigonometry",syntax:["cosh(x)"],description:"Compute the hyperbolic cosine of x in radians.",examples:["cosh(0.5)"],seealso:["sinh","tanh","coth"]},cot:{name:"cot",category:"Trigonometry",syntax:["cot(x)"],description:"Compute the cotangent of x in radians. Defined as 1/tan(x)",examples:["cot(2)","1 / tan(2)"],seealso:["sec","csc","tan"]},coth:{name:"coth",category:"Trigonometry",syntax:["coth(x)"],description:"Compute the hyperbolic cotangent of x in radians.",examples:["coth(2)","1 / tanh(2)"],seealso:["sech","csch","tanh"]},csc:{name:"csc",category:"Trigonometry",syntax:["csc(x)"],description:"Compute the cosecant of x in radians. Defined as 1/sin(x)",examples:["csc(2)","1 / sin(2)"],seealso:["sec","cot","sin"]},csch:{name:"csch",category:"Trigonometry",syntax:["csch(x)"],description:"Compute the hyperbolic cosecant of x in radians. Defined as 1/sinh(x)",examples:["csch(2)","1 / sinh(2)"],seealso:["sech","coth","sinh"]},sec:{name:"sec",category:"Trigonometry",syntax:["sec(x)"],description:"Compute the secant of x in radians. Defined as 1/cos(x)",examples:["sec(2)","1 / cos(2)"],seealso:["cot","csc","cos"]},sech:{name:"sech",category:"Trigonometry",syntax:["sech(x)"],description:"Compute the hyperbolic secant of x in radians. Defined as 1/cosh(x)",examples:["sech(2)","1 / cosh(2)"],seealso:["coth","csch","cosh"]},sin:{name:"sin",category:"Trigonometry",syntax:["sin(x)"],description:"Compute the sine of x in radians.",examples:["sin(2)","sin(pi / 4) ^ 2","sin(90 deg)","sin(30 deg)","sin(0.2)^2 + cos(0.2)^2"],seealso:["asin","cos","tan"]},sinh:{name:"sinh",category:"Trigonometry",syntax:["sinh(x)"],description:"Compute the hyperbolic sine of x in radians.",examples:["sinh(0.5)"],seealso:["cosh","tanh"]},tan:{name:"tan",category:"Trigonometry",syntax:["tan(x)"],description:"Compute the tangent of x in radians.",examples:["tan(0.5)","sin(0.5) / cos(0.5)","tan(pi / 4)","tan(45 deg)"],seealso:["atan","sin","cos"]},tanh:{name:"tanh",category:"Trigonometry",syntax:["tanh(x)"],description:"Compute the hyperbolic tangent of x in radians.",examples:["tanh(0.5)","sinh(0.5) / cosh(0.5)"],seealso:["sinh","cosh"]},to:{name:"to",category:"Units",syntax:["x to unit","to(x, unit)"],description:"Change the unit of a value.",examples:["5 inch to cm","3.2kg to g","16 bytes in bits"],seealso:[]},clone:{name:"clone",category:"Utils",syntax:["clone(x)"],description:"Clone a variable. Creates a copy of primitive variables,and a deep copy of matrices",examples:["clone(3.5)","clone(2 - 4i)","clone(45 deg)","clone([1, 2; 3, 4])",'clone("hello world")'],seealso:[]},format:{name:"format",category:"Utils",syntax:["format(value)","format(value, precision)"],description:"Format a value of any type as string.",examples:["format(2.3)","format(3 - 4i)","format([])","format(pi, 3)"],seealso:["print"]},bin:{name:"bin",category:"Utils",syntax:["bin(value)"],description:"Format a number as binary",examples:["bin(2)"],seealso:["oct","hex"]},oct:{name:"oct",category:"Utils",syntax:["oct(value)"],description:"Format a number as octal",examples:["oct(56)"],seealso:["bin","hex"]},hex:{name:"hex",category:"Utils",syntax:["hex(value)"],description:"Format a number as hexadecimal",examples:["hex(240)"],seealso:["bin","oct"]},isNaN:{name:"isNaN",category:"Utils",syntax:["isNaN(x)"],description:"Test whether a value is NaN (not a number)",examples:["isNaN(2)","isNaN(0 / 0)","isNaN(NaN)","isNaN(Infinity)"],seealso:["isNegative","isNumeric","isPositive","isZero"]},isInteger:{name:"isInteger",category:"Utils",syntax:["isInteger(x)"],description:"Test whether a value is an integer number.",examples:["isInteger(2)","isInteger(3.5)","isInteger([3, 0.5, -2])"],seealso:["isNegative","isNumeric","isPositive","isZero"]},isNegative:{name:"isNegative",category:"Utils",syntax:["isNegative(x)"],description:"Test whether a value is negative: smaller than zero.",examples:["isNegative(2)","isNegative(0)","isNegative(-4)","isNegative([3, 0.5, -2])"],seealso:["isInteger","isNumeric","isPositive","isZero"]},isNumeric:{name:"isNumeric",category:"Utils",syntax:["isNumeric(x)"],description:"Test whether a value is a numeric value. Returns true when the input is a number, BigNumber, Fraction, or boolean.",examples:["isNumeric(2)",'isNumeric("2")','hasNumericValue("2")',"isNumeric(0)","isNumeric(bignumber(500))","isNumeric(fraction(0.125))","isNumeric(2 + 3i)",'isNumeric([2.3, "foo", false])'],seealso:["isInteger","isZero","isNegative","isPositive","isNaN","hasNumericValue"]},hasNumericValue:{name:"hasNumericValue",category:"Utils",syntax:["hasNumericValue(x)"],description:"Test whether a value is an numeric value. In case of a string, true is returned if the string contains a numeric value.",examples:["hasNumericValue(2)",'hasNumericValue("2")','isNumeric("2")',"hasNumericValue(0)","hasNumericValue(bignumber(500))","hasNumericValue(fraction(0.125))","hasNumericValue(2 + 3i)",'hasNumericValue([2.3, "foo", false])'],seealso:["isInteger","isZero","isNegative","isPositive","isNaN","isNumeric"]},isPositive:{name:"isPositive",category:"Utils",syntax:["isPositive(x)"],description:"Test whether a value is positive: larger than zero.",examples:["isPositive(2)","isPositive(0)","isPositive(-4)","isPositive([3, 0.5, -2])"],seealso:["isInteger","isNumeric","isNegative","isZero"]},isPrime:{name:"isPrime",category:"Utils",syntax:["isPrime(x)"],description:"Test whether a value is prime: has no divisors other than itself and one.",examples:["isPrime(3)","isPrime(-2)","isPrime([2, 17, 100])"],seealso:["isInteger","isNumeric","isNegative","isZero"]},isZero:{name:"isZero",category:"Utils",syntax:["isZero(x)"],description:"Test whether a value is zero.",examples:["isZero(2)","isZero(0)","isZero(-4)","isZero([3, 0, -2, 0])"],seealso:["isInteger","isNumeric","isNegative","isPositive"]},print:{name:"print",category:"Utils",syntax:["print(template, values)","print(template, values, precision)"],description:"Interpolate values into a string template.",examples:['print("Lucy is $age years old", {age: 5})','print("The value of pi is $pi", {pi: pi}, 3)','print("Hello, $user.name!", {user: {name: "John"}})','print("Values: $1, $2, $3", [6, 9, 4])'],seealso:["format"]},typeOf:{name:"typeOf",category:"Utils",syntax:["typeOf(x)"],description:"Get the type of a variable.",examples:["typeOf(3.5)","typeOf(2 - 4i)","typeOf(45 deg)",'typeOf("hello world")'],seealso:["getMatrixDataType"]},numeric:{name:"numeric",category:"Utils",syntax:["numeric(x)"],description:"Convert a numeric input to a specific numeric type: number, BigNumber, bigint, or Fraction.",examples:['numeric("4")','numeric("4", "number")','numeric("4", "bigint")','numeric("4", "BigNumber")','numeric("4", "Fraction")','numeric(4, "Fraction")','numeric(fraction(2, 5), "number")'],seealso:["number","bigint","fraction","bignumber","string","format"]}},_m="help",zm=Se(_m,["typed","mathWithTransform","Help"],(e=>{let{typed:t,mathWithTransform:r,Help:n}=e;return t(_m,{any:function(e){let t,i=e;if("string"!=typeof e)for(t in r)if(Ae(r,t)&&e===r[t]){i=t;break}const o=Te(Om,i);if(!o){const e="function"==typeof i?i.name:i;throw new Error('No documentation found on "'+e+'"')}return new n(o)}})})),Im="chain",km=Se(Im,["typed","Chain"],(e=>{let{typed:t,Chain:r}=e;return t(Im,{"":function(){return new r},any:function(e){return new r(e)}})})),qm=Se("det",["typed","matrix","subtractScalar","multiply","divideScalar","isZero","unaryMinus"],(e=>{let{typed:t,matrix:r,subtractScalar:n,multiply:i,divideScalar:o,isZero:a,unaryMinus:s}=e;return t("det",{any:function(e){return ye(e)},"Array | Matrix":function(e){let t;switch(t=f(e)?e.size():Array.isArray(e)?(e=r(e)).size():[],t.length){case 0:return ye(e);case 1:if(1===t[0])return ye(e.valueOf()[0]);if(0===t[0])return 1;throw new RangeError("Matrix must be square (size: "+Qr(t)+")");case 2:{const r=t[0],u=t[1];if(r===u)return function(e,t){if(1===t)return ye(e[0][0]);if(2===t)return n(i(e[0][0],e[1][1]),i(e[1][0],e[0][1]));{let r=!1;const u=new Array(t).fill(0).map(((e,t)=>t));for(let s=0;s<t;s++){let c=u[s];if(a(e[c][s])){let n;for(n=s+1;n<t;n++)if(!a(e[u[n]][s])){c=u[n],u[n]=u[s],u[s]=c,r=!r;break}if(n===t)return e[c][s]}const l=e[c][s],f=0===s?1:e[u[s-1]][s-1];for(let r=s+1;r<t;r++){const a=u[r];for(let r=s+1;r<t;r++)e[a][r]=o(n(i(e[a][r],l),i(e[a][s],e[c][r])),f)}}const c=e[u[t-1]][t-1];return r?s(c):c}}(e.clone().valueOf(),r);if(0===u)return 1;throw new RangeError("Matrix must be square (size: "+Qr(t)+")")}default:throw new RangeError("Matrix must be two dimensional (size: "+Qr(t)+")")}}})})),Rm=Se("inv",["typed","matrix","divideScalar","addScalar","multiply","unaryMinus","det","identity","abs"],(e=>{let{typed:t,matrix:r,divideScalar:n,addScalar:i,multiply:o,unaryMinus:a,det:s,identity:u,abs:c}=e;return t("inv",{"Array | Matrix":function(e){const t=f(e)?e.size():sn(e);switch(t.length){case 1:if(1===t[0])return f(e)?r([n(1,e.valueOf()[0])]):[n(1,e[0])];throw new RangeError("Matrix must be square (size: "+Qr(t)+")");case 2:{const n=t[0],i=t[1];if(n===i)return f(e)?r(l(e.valueOf(),n,i),e.storage()):l(e,n,i);throw new RangeError("Matrix must be square (size: "+Qr(t)+")")}default:throw new RangeError("Matrix must be two dimensional (size: "+Qr(t)+")")}},any:function(e){return n(1,e)}});function l(e,t,r){let l,f,p,m,d;if(1===t){if(m=e[0][0],0===m)throw Error("Cannot calculate inverse, determinant is zero");return[[n(1,m)]]}if(2===t){const t=s(e);if(0===t)throw Error("Cannot calculate inverse, determinant is zero");return[[n(e[1][1],t),n(a(e[0][1]),t)],[n(a(e[1][0]),t),n(e[0][0],t)]]}{const s=e.concat();for(l=0;l<t;l++)s[l]=s[l].concat();const m=u(t).valueOf();for(let e=0;e<r;e++){let u=c(s[e][e]),h=e;for(l=e+1;l<t;)c(s[l][e])>u&&(u=c(s[l][e]),h=l),l++;if(0===u)throw Error("Cannot calculate inverse, determinant is zero");l=h,l!==e&&(d=s[e],s[e]=s[l],s[l]=d,d=m[e],m[e]=m[l],m[l]=d);const g=s[e],y=m[e];for(l=0;l<t;l++){const t=s[l],u=m[l];if(l!==e){if(0!==t[e]){for(p=n(a(t[e]),g[e]),f=e;f<r;f++)t[f]=i(t[f],o(p,g[f]));for(f=0;f<r;f++)u[f]=i(u[f],o(p,y[f]))}}else{for(p=g[e],f=e;f<r;f++)t[f]=n(t[f],p);for(f=0;f<r;f++)u[f]=n(u[f],p)}}}return m}}})),Pm="pinv",jm=Se(Pm,["typed","matrix","inv","deepEqual","equal","dotDivide","dot","ctranspose","divideScalar","multiply","add","Complex"],(e=>{let{typed:t,matrix:r,inv:n,deepEqual:i,equal:o,dotDivide:a,dot:s,ctranspose:u,divideScalar:c,multiply:l,add:p,Complex:m}=e;return t(Pm,{"Array | Matrix":function(e){const t=f(e)?e.size():sn(e);switch(t.length){case 1:return g(e)?u(e):1===t[0]?n(e):a(u(e),s(e,e));case 2:{if(g(e))return u(e);const i=t[0],o=t[1];if(i===o)try{return n(e)}catch(e){if(!(e instanceof Error&&e.message.match(/Cannot calculate inverse, determinant is zero/)))throw e}return f(e)?r(d(e.valueOf(),i,o),e.storage()):d(e,i,o)}default:throw new RangeError("Matrix must be two dimensional (size: "+Qr(t)+")")}},any:function(e){return o(e,0)?ye(e):c(1,e)}});function d(e,t,r){const{C:i,F:o}=function(e,t,r){const n=function(e,t,r){const n=ye(e);let i=0;for(let e=0;e<t;e++){if(r<=i)return n;let o=e;for(;h(n[o][i]);)if(o++,t===o&&(o=e,i++,r===i))return n;[n[o],n[e]]=[n[e],n[o]];let s=n[e][i];for(let t=0;t<r;t++)n[e][t]=a(n[e][t],s);for(let o=0;o<t;o++)if(o!==e){s=n[o][i];for(let t=0;t<r;t++)n[o][t]=p(n[o][t],l(-1,l(s,n[e][t])))}i++}return n}(e,t,r);return{C:e.map(((e,r)=>e.filter(((e,r)=>r<t&&!h(s(n[r],n[r])))))),F:n.filter(((e,t)=>!h(s(n[t],n[t]))))}}(e,t,r),c=l(n(l(u(i),i)),u(i)),f=l(u(o),n(l(o,u(o))));return l(f,c)}function h(e){return o(p(e,m(1,1)),p(0,m(1,1)))}function g(e){return i(p(e,m(1,1)),p(l(e,0),m(1,1)))}}));const Um=Se("eigs",["config","typed","matrix","addScalar","equal","subtract","abs","atan","cos","sin","multiplyScalar","divideScalar","inv","bignumber","multiply","add","larger","column","flatten","number","complex","sqrt","diag","size","reshape","qr","usolve","usolveAll","im","re","smaller","matrixFromColumns","dot"],(e=>{let{config:r,typed:n,matrix:o,addScalar:u,subtract:c,equal:l,abs:f,atan:p,cos:m,sin:d,multiplyScalar:h,divideScalar:g,inv:y,bignumber:x,multiply:b,add:v,larger:w,column:N,flatten:E,number:A,complex:S,sqrt:M,diag:C,size:T,reshape:D,qr:F,usolve:B,usolveAll:O,im:_,re:z,smaller:I,matrixFromColumns:k,dot:q}=e;const R=function(e){let{config:t,addScalar:r,subtract:n,abs:i,atan:o,cos:a,sin:s,multiplyScalar:u,inv:c,bignumber:l,multiply:f,add:p}=e;function m(e,r,n){const i=r-e;return Math.abs(i)<=t.relTol?Math.PI/4:.5*Math.atan(2*n/(r-e))}function d(e,r,a){const s=n(r,e);return i(s)<=t.relTol?l(-1).acos().div(4):u(.5,o(f(2,a,c(s))))}function h(e,t,r,n){const i=e.length,o=Math.cos(t),a=Math.sin(t),s=Array(i).fill(0),u=Array(i).fill(0);for(let t=0;t<i;t++)s[t]=o*e[t][r]-a*e[t][n],u[t]=a*e[t][r]+o*e[t][n];for(let t=0;t<i;t++)e[t][r]=s[t],e[t][n]=u[t];return e}function g(e,t,i,o){const c=e.length,f=a(t),p=s(t),m=Array(c).fill(l(0)),d=Array(c).fill(l(0));for(let t=0;t<c;t++)m[t]=n(u(f,e[t][i]),u(p,e[t][o])),d[t]=r(u(p,e[t][i]),u(f,e[t][o]));for(let t=0;t<c;t++)e[t][i]=m[t],e[t][o]=d[t];return e}function y(e,t,i,o){const c=e.length,m=l(a(t)),d=l(s(t)),h=u(m,m),g=u(d,d),y=Array(c).fill(l(0)),x=Array(c).fill(l(0)),b=f(l(2),m,d,e[i][o]),v=r(n(u(h,e[i][i]),b),u(g,e[o][o])),w=p(u(g,e[i][i]),b,u(h,e[o][o]));for(let t=0;t<c;t++)y[t]=n(u(m,e[i][t]),u(d,e[o][t])),x[t]=r(u(d,e[i][t]),u(m,e[o][t]));e[i][i]=v,e[o][o]=w,e[i][o]=l(0),e[o][i]=l(0);for(let t=0;t<c;t++)t!==i&&t!==o&&(e[i][t]=y[t],e[t][i]=y[t],e[o][t]=x[t],e[t][o]=x[t]);return e}function x(e,t,r,n){const i=e.length,o=Math.cos(t),a=Math.sin(t),s=o*o,u=a*a,c=Array(i).fill(0),l=Array(i).fill(0),f=s*e[r][r]-2*o*a*e[r][n]+u*e[n][n],p=u*e[r][r]+2*o*a*e[r][n]+s*e[n][n];for(let t=0;t<i;t++)c[t]=o*e[r][t]-a*e[n][t],l[t]=a*e[r][t]+o*e[n][t];e[r][r]=f,e[n][n]=p,e[r][n]=0,e[n][r]=0;for(let t=0;t<i;t++)t!==r&&t!==n&&(e[r][t]=c[t],e[t][r]=c[t],e[n][t]=l[t],e[t][n]=l[t]);return e}function b(e){const t=e.length;let r=0,n=[0,1];for(let i=0;i<t;i++)for(let o=i+1;o<t;o++)Math.abs(r)<Math.abs(e[i][o])&&(r=Math.abs(e[i][o]),n=[i,o]);return[n,r]}function v(e){const t=e.length;let r=0,n=[0,1];for(let o=0;o<t;o++)for(let a=o+1;a<t;a++)i(r)<i(e[o][a])&&(r=i(e[o][a]),n=[o,a]);return[n,r]}function w(e,t,r){const n=e.length,o=Array(n);let a;if(r){a=Array(n);for(let e=0;e<n;e++)a[e]=Array(n)}for(let s=0;s<n;s++){let u=0,c=e[0];for(let t=0;t<e.length;t++)i(e[t])<i(c)&&(u=t,c=e[u]);if(o[s]=e.splice(u,1)[0],r)for(let e=0;e<n;e++)a[s][e]=t[e][u],t[e].splice(u,1)}if(!r)return{values:o};const s=a.map(((e,t)=>({value:o[t],vector:e})));return{values:o,eigenvectors:s}}return function(e,r){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t.relTol,o=arguments.length>3?arguments[3]:void 0,a=arguments.length>4?arguments[4]:void 0;if("number"===o)return function(e,t,r){const n=e.length,i=Math.abs(t/n);let o,a;if(r){a=new Array(n);for(let e=0;e<n;e++)a[e]=Array(n).fill(0),a[e][e]=1}let s=b(e);for(;Math.abs(s[1])>=Math.abs(i);){const t=s[0][0],n=s[0][1];o=m(e[t][t],e[n][n],e[t][n]),e=x(e,o,t,n),r&&(a=h(a,o,t,n)),s=b(e)}const u=Array(n).fill(0);for(let t=0;t<n;t++)u[t]=e[t][t];return w(ye(u),a,r)}(e,n,a);if("BigNumber"===o)return function(e,t,r){const n=e.length,o=i(t/n);let a,s;if(r){s=new Array(n);for(let e=0;e<n;e++)s[e]=Array(n).fill(0),s[e][e]=1}let u=v(e);for(;i(u[1])>=i(o);){const t=u[0][0],n=u[0][1];a=d(e[t][t],e[n][n],e[t][n]),e=y(e,a,t,n),r&&(s=g(s,a,t,n)),u=v(e)}const c=Array(n).fill(0);for(let t=0;t<n;t++)c[t]=e[t][t];return w(ye(c),s,r)}(e,n,a);throw TypeError("Unsupported data type: "+o)}}({config:r,addScalar:u,subtract:c,column:N,flatten:E,equal:l,abs:f,atan:p,cos:m,sin:d,multiplyScalar:h,inv:y,bignumber:x,complex:S,multiply:b,add:v}),P=function(e){let{addScalar:t,subtract:r,flatten:n,multiply:i,multiplyScalar:o,divideScalar:a,sqrt:s,abs:u,bignumber:c,diag:l,size:f,reshape:p,inv:m,qr:d,usolve:h,usolveAll:g,equal:y,complex:x,larger:b,smaller:v,matrixFromColumns:w,dot:N}=e;function E(e,n,i,a){const u=t(e,a),c=r(o(e,a),o(n,i)),l=o(u,.5),f=o(s(r(o(u,u),o(4,c))),.5);return[t(l,f),r(l,f)]}function A(e,t,n,i,o,a,s,l){const f="BigNumber"===l,p="Complex"===l,m=f?c(0):p?x(0):0,d=f?c(1):p?x(1):1;if(v(u(n),s))return[[d,m],[m,d]];if(b(u(r(o,a)),s))return[[r(o,i),r(a,i)],[n,n]];const h=r(e,o),g=r(i,o);return v(u(t),s)&&v(u(g),s)?[[h,d],[n,m]]:[[t,m],[g,d]]}function S(e,t){for(let r=0;r<e.length;r++)e[r].push(...Array(t-e[r].length).fill(0));for(let r=e.length;r<t;r++)e.push(Array(t).fill(0)),e[r][r]=1;return e}function M(e,t,r){for(let n=0;n<e.length;n++)if(r(e[n],t))return n;return-1}function C(e,t,r,n,i){const o="BigNumber"===i?c(1e3):1e3;let a,s=0;for(;s<5;++s){a=T(t,r,i);try{a=h(e,a)}catch(e){continue}if(b(F(a),o))break}if(s>=5)return null;for(s=0;;){const t=h(e,a);if(v(F(D(a,[t])),n))break;if(++s>=10)return null;a=B(t)}return a}function T(e,t,r){const n="BigNumber"===r,i="Complex"===r;let o=Array(e).fill(0).map((e=>2*Math.random()-1));return n&&(o=o.map((e=>c(e)))),i&&(o=o.map((e=>x(e)))),o=D(o,t),B(o,r)}function D(e,t){const n=f(e);for(let o of t)o=p(o,n),e=r(e,i(a(N(o,e),N(o,o)),o));return e}function F(e){return u(s(N(e,e)))}function B(e,t){const r="Complex"===t,n="BigNumber"===t?c(1):r?x(1):1;return i(a(n,F(e)),e)}return function(e,s,f,p){let h=!(arguments.length>4&&void 0!==arguments[4])||arguments[4];const w=function(e,r,n,i,s){const f="BigNumber"===i,p="Complex"===i,m=f?c(0):0,d=f?c(1):p?x(1):1,h=f?c(1):1,g=f?c(10):2,w=o(g,g);let N;s&&(N=Array(r).fill(d));let E=!1;for(;!E;){E=!0;for(let n=0;n<r;n++){let i=m,c=m;for(let o=0;o<r;o++)n!==o&&(i=t(i,u(e[o][n])),c=t(c,u(e[n][o])));if(!y(i,0)&&!y(c,0)){let u=h,l=i;const f=a(c,g),p=o(c,g);for(;v(l,f);)l=o(l,w),u=o(u,g);for(;b(l,p);)l=a(l,w),u=a(u,g);if(v(a(t(l,c),u),o(t(i,c),.95))){E=!1;const t=a(1,u);for(let i=0;i<r;i++)n!==i&&(e[n][i]=o(e[n][i],t),e[i][n]=o(e[i][n],u));s&&(N[n]=o(N[n],t))}}}}return s?l(N):null}(e,s,0,p,h);!function(e,n,i,s,l,f){const p="BigNumber"===s,m="Complex"===s,d=p?c(0):m?x(0):0;p&&(i=c(i));for(let s=0;s<n-2;s++){let c=0,p=d;for(let t=s+1;t<n;t++){const r=e[t][s];v(u(p),u(r))&&(p=r,c=t)}if(!v(u(p),i)){if(c!==s+1){const t=e[c];e[c]=e[s+1],e[s+1]=t;for(let t=0;t<n;t++){const r=e[t][c];e[t][c]=e[t][s+1],e[t][s+1]=r}if(l){const e=f[c];f[c]=f[s+1],f[s+1]=e}}for(let i=s+2;i<n;i++){const u=a(e[i][s],p);if(0!==u){for(let t=0;t<n;t++)e[i][t]=r(e[i][t],o(u,e[s+1][t]));for(let r=0;r<n;r++)e[r][s+1]=t(e[r][s+1],o(u,e[r][i]));if(l)for(let e=0;e<n;e++)f[i][e]=r(f[i][e],o(u,f[s+1][e]))}}}}}(e,s,f,p,h,w);const{values:N,C:T}=function(e,n,o,a,s){const f="BigNumber"===a,p="Complex"===a,m=f?c(1):p?x(1):1;f&&(o=c(o));let h=ye(e);const g=[];let y=n;const b=[];let w=s?l(Array(n).fill(m)):void 0,N=s?l(Array(y).fill(m)):void 0,M=0;for(;M<=100;){M+=1;const e=h[y-1][y-1];for(let t=0;t<y;t++)h[t][t]=r(h[t][t],e);const{Q:c,R:f}=d(h);h=i(f,c);for(let r=0;r<y;r++)h[r][r]=t(h[r][r],e);if(s&&(N=i(N,c)),1===y||v(u(h[y-1][y-2]),o)){M=0,g.push(h[y-1][y-1]),s&&(b.unshift([[1]]),S(N,n),w=i(w,N),y>1&&(N=l(Array(y-1).fill(m)))),y-=1,h.pop();for(let e=0;e<y;e++)h[e].pop()}else if(2===y||v(u(h[y-2][y-3]),o)){M=0;const e=E(h[y-2][y-2],h[y-2][y-1],h[y-1][y-2],h[y-1][y-1]);g.push(...e),s&&(b.unshift(A(h[y-2][y-2],h[y-2][y-1],h[y-1][y-2],h[y-1][y-1],e[0],e[1],o,a)),S(N,n),w=i(w,N),y>2&&(N=l(Array(y-2).fill(m)))),y-=2,h.pop(),h.pop();for(let e=0;e<y;e++)h[e].pop(),h[e].pop()}if(0===y)break}if(g.sort(((e,t)=>+r(u(e),u(t)))),M>100){const e=Error("The eigenvalues failed to converge. Only found these eigenvalues: "+g.join(", "));throw e.values=g,e.vectors=[],e}const C=s?i(w,function(e,t){const r=[];for(let e=0;e<t;e++)r[e]=Array(t).fill(0);let n=0;for(const t of e){const e=t.length;for(let i=0;i<e;i++)for(let o=0;o<e;o++)r[n+i][n+o]=t[i][o];n+=e}return r}(b,n)):void 0;return{values:g,C}}(e,s,f,p,h);if(h){const t=function(e,t,o,a,s,u,f){const p=m(o),d=i(p,e,o),h="BigNumber"===f,b="Complex"===f,v=h?c(0):b?x(0):0,w=h?c(1):b?x(1):1,N=[],E=[];for(const e of s){const t=M(N,e,y);-1===t?(N.push(e),E.push(1)):E[t]+=1}const A=[],S=N.length,T=Array(t).fill(v),D=l(Array(t).fill(w));for(let e=0;e<S;e++){const s=N[e],c=r(d,i(s,D));let l=g(c,T);for(l.shift();l.length<E[e];){const e=C(c,t,l,u,f);if(null===e)break;l.push(e)}const p=i(m(a),o);l=l.map((e=>i(p,e))),A.push(...l.map((e=>({value:s,vector:n(e)}))))}return A}(e,s,T,w,N,f,p);return{values:N,eigenvectors:t}}return{values:N}}}({config:r,addScalar:u,subtract:c,multiply:b,multiplyScalar:h,flatten:E,divideScalar:g,sqrt:M,abs:f,bignumber:x,diag:C,size:T,reshape:D,qr:F,inv:y,usolve:B,usolveAll:O,equal:l,complex:S,larger:w,smaller:I,matrixFromColumns:k,dot:q});return n("eigs",{Array:function(e){return j(o(e))},"Array, number|BigNumber":function(e,t){return j(o(e),{precision:t})},"Array, Object":(e,t)=>j(o(e),t),Matrix:function(e){return j(e,{matricize:!0})},"Matrix, number|BigNumber":function(e,t){return j(e,{precision:t,matricize:!0})},"Matrix, Object":function(e,t){const r={matricize:!0};return Vr(r,t),j(e,r)}});function j(e){var t;let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const i=!("eigenvectors"in n)||n.eigenvectors,a=function(e,t,r){const n=e.toArray(),i=e.size();if(2!==i.length||i[0]!==i[1])throw new RangeError(`Matrix must be square (size: ${Qr(i)})`);const o=i[0];if(function(e,t,r){for(let n=0;n<t;n++)for(let i=0;i<t;i++)if(w(x(f(_(e[n][i]))),r))return!1;return!0}(n,o,t)&&(function(e,t){for(let r=0;r<t;r++)for(let n=0;n<t;n++)e[r][n]=z(e[r][n])}(n,o),function(e,t,r){for(let n=0;n<t;n++)for(let i=n;i<t;i++)if(w(x(f(c(e[n][i],e[i][n]))),r))return!1;return!0}(n,o,t))){const i=U(e,n,o);return R(n,o,t,i,r)}const a=U(e,n,o);return P(n,o,t,a,r)}(e,null!==(t=n.precision)&&void 0!==t?t:r.relTol,i);return n.matricize&&(a.values=o(a.values),i&&(a.eigenvectors=a.eigenvectors.map((e=>{let{value:t,vector:r}=e;return{value:t,vector:o(r)}})))),i&&Object.defineProperty(a,"vectors",{enumerable:!1,get:()=>{throw new Error("eigs(M).vectors replaced with eigs(M).eigenvectors")}}),a}function U(e,r,n){const o=e.datatype();if("number"===o||"BigNumber"===o||"Complex"===o)return o;let u=!1,c=!1,l=!1;for(let e=0;e<n;e++)for(let o=0;o<n;o++){const n=r[e][o];if(t(n)||s(n))u=!0;else if(i(n))c=!0;else{if(!a(n))throw TypeError("Unsupported type in Matrix: "+H(n));l=!0}}if(c&&l&&console.warn("Complex BigNumbers not supported, this operation will lose precission."),l){for(let e=0;e<n;e++)for(let t=0;t<n;t++)r[e][t]=S(r[e][t]);return"Complex"}if(c){for(let e=0;e<n;e++)for(let t=0;t<n;t++)r[e][t]=x(r[e][t]);return"BigNumber"}if(u){for(let e=0;e<n;e++)for(let t=0;t<n;t++)r[e][t]=A(r[e][t]);return"number"}throw TypeError("Matrix contains unsupported types only.")}})),Lm="expm",$m=Se(Lm,["typed","abs","add","identity","inv","multiply"],(e=>{let{typed:t,abs:r,add:n,identity:i,inv:o,multiply:a}=e;return t(Lm,{Matrix:function(e){const t=e.size();if(2!==t.length||t[0]!==t[1])throw new RangeError("Matrix must be square (size: "+Qr(t)+")");const u=t[0],c=function(e){const t=e.size()[0];let n=0;for(let i=0;i<t;i++){let o=0;for(let n=0;n<t;n++)o+=r(e.get([i,n]));n=Math.max(o,n)}return n}(e),l=function(e){for(let t=0;t<30;t++)for(let r=0;r<=t;r++){const n=t-r;if(s(e,r,n)<1e-15)return{q:r,j:n}}throw new Error("Could not find acceptable parameters to compute the matrix exponential (try increasing maxSearchSize in expm.js)")}(c),f=l.q,p=l.j,m=a(e,Math.pow(2,-p));let h=i(u),g=i(u),y=1,x=m,b=-1;for(let e=1;e<=f;e++)e>1&&(x=a(x,m),b=-b),y=y*(f-e+1)/((2*f-e+1)*e),h=n(h,a(y,x)),g=n(g,a(y*b,x));let v=a(o(g),h);for(let e=0;e<p;e++)v=a(v,v);return d(e)?e.createSparseMatrix(v):v}});function s(e,t,r){let n=1;for(let e=2;e<=t;e++)n*=e;let i=n;for(let e=t+1;e<=2*t;e++)i*=e;const o=i*(2*t+1);return 8*Math.pow(e/Math.pow(2,r),2*t)*n*n/(i*o)}})),Hm="sqrtm",Gm=Se(Hm,["typed","abs","add","multiply","map","sqrt","subtract","inv","size","max","identity"],(e=>{let{typed:t,abs:r,add:n,multiply:i,map:o,sqrt:a,subtract:s,inv:u,size:c,max:l,identity:p}=e;const m=1e-6;function d(e){let t,o=0,a=e,f=p(c(e));do{const e=a;if(a=i(.5,n(e,u(f))),f=i(.5,n(f,u(e))),t=l(r(s(a,e))),t>m&&++o>1e3)throw new Error("computing square root of matrix: iterative method could not converge")}while(t>m);return a}return t(Hm,{"Array | Matrix":function(e){const t=f(e)?e.size():sn(e);switch(t.length){case 1:if(1===t[0])return o(e,a);throw new RangeError("Matrix must be square (size: "+Qr(t)+")");case 2:if(t[0]===t[1])return d(e);throw new RangeError("Matrix must be square (size: "+Qr(t)+")");default:throw new RangeError("Matrix must be at most two dimensional (size: "+Qr(t)+")")}}})})),Zm="sylvester",Vm=Se(Zm,["typed","schur","matrixFromColumns","matrix","multiply","range","concat","transpose","index","subset","add","subtract","identity","lusolve","abs"],(e=>{let{typed:t,schur:r,matrixFromColumns:n,matrix:i,multiply:o,range:a,concat:s,transpose:u,index:c,subset:l,add:f,subtract:p,identity:m,lusolve:d,abs:h}=e;return t(Zm,{"Matrix, Matrix, Matrix":g,"Array, Matrix, Matrix":function(e,t,r){return g(i(e),t,r)},"Array, Array, Matrix":function(e,t,r){return g(i(e),i(t),r)},"Array, Matrix, Array":function(e,t,r){return g(i(e),t,i(r))},"Matrix, Array, Matrix":function(e,t,r){return g(e,i(t),r)},"Matrix, Array, Array":function(e,t,r){return g(e,i(t),i(r))},"Matrix, Matrix, Array":function(e,t,r){return g(e,t,i(r))},"Array, Array, Array":function(e,t,r){return g(i(e),i(t),i(r)).toArray()}});function g(e,t,g){const y=t.size()[0],x=e.size()[0],b=r(e),v=b.T,w=b.U,N=r(o(-1,t)),E=N.T,A=N.U,S=o(o(u(w),g),A),M=a(0,x),C=[],T=(e,t)=>s(e,t,1),D=(e,t)=>s(e,t,0);for(let e=0;e<y;e++)if(e<y-1&&h(l(E,c(e+1,e)))>1e-5){let t=D(l(S,c(M,e)),l(S,c(M,e+1)));for(let r=0;r<e;r++)t=f(t,D(o(C[r],l(E,c(r,e))),o(C[r],l(E,c(r,e+1)))));const r=o(m(x),o(-1,l(E,c(e,e)))),n=o(m(x),o(-1,l(E,c(e+1,e)))),i=o(m(x),o(-1,l(E,c(e,e+1)))),s=o(m(x),o(-1,l(E,c(e+1,e+1)))),u=D(T(f(v,r),n),T(i,f(v,s))),p=d(u,t);C[e]=p.subset(c(a(0,x),0)),C[e+1]=p.subset(c(a(x,2*x),0)),e++}else{let t=l(S,c(M,e));for(let r=0;r<e;r++)t=f(t,o(C[r],l(E,c(r,e))));const r=l(E,c(e,e)),n=p(v,o(r,m(x)));C[e]=d(n,t)}const F=i(n(...C));return o(w,o(F,u(A)))}})),Wm="schur",Ym=Se(Wm,["typed","matrix","identity","multiply","qr","norm","subtract"],(e=>{let{typed:t,matrix:r,identity:n,multiply:i,qr:o,norm:a,subtract:s}=e;return t(Wm,{Array:function(e){const t=u(r(e));return{U:t.U.valueOf(),T:t.T.valueOf()}},Matrix:function(e){return u(e)}});function u(e){const t=e.size()[0];let r,u=e,c=n(t),l=0;do{r=u;const e=o(u),t=e.Q,n=e.R;if(u=i(n,t),c=i(c,t),l++>100)break}while(a(s(u,r))>1e-4);return{U:c,T:u}}})),Jm="lyap",Xm=Se(Jm,["typed","matrix","sylvester","multiply","transpose"],(e=>{let{typed:t,matrix:r,sylvester:n,multiply:i,transpose:o}=e;return t(Jm,{"Matrix, Matrix":function(e,t){return n(e,o(e),i(-1,t))},"Array, Matrix":function(e,t){return n(r(e),o(r(e)),i(-1,t))},"Matrix, Array":function(e,t){return n(e,o(r(e)),r(i(-1,t)))},"Array, Array":function(e,t){return n(r(e),o(r(e)),r(i(-1,t))).toArray()}})})),Qm=Se("divide",["typed","matrix","multiply","equalScalar","divideScalar","inv"],(e=>{let{typed:t,matrix:r,multiply:n,equalScalar:i,divideScalar:o,inv:a}=e;const s=wo({typed:t,equalScalar:i}),u=Eo({typed:t});return t("divide",xe({"Array | Matrix, Array | Matrix":function(e,t){return n(e,a(t))},"DenseMatrix, any":function(e,t){return u(e,t,o,!1)},"SparseMatrix, any":function(e,t){return s(e,t,o,!1)},"Array, any":function(e,t){return u(r(e),t,o,!1).valueOf()},"any, Array | Matrix":function(e,t){return n(e,a(t))}},o.signatures))})),Km="distance",ed=Se(Km,["typed","addScalar","subtractScalar","divideScalar","multiplyScalar","deepEqual","sqrt","abs"],(e=>{let{typed:t,addScalar:r,subtractScalar:n,multiplyScalar:o,divideScalar:a,deepEqual:s,sqrt:u,abs:c}=e;return t(Km,{"Array, Array, Array":function(e,t,r){if(2===e.length&&2===t.length&&2===r.length){if(!f(e))throw new TypeError("Array with 2 numbers or BigNumbers expected for first argument");if(!f(t))throw new TypeError("Array with 2 numbers or BigNumbers expected for second argument");if(!f(r))throw new TypeError("Array with 2 numbers or BigNumbers expected for third argument");if(s(t,r))throw new TypeError("LinePoint1 should not be same with LinePoint2");const i=n(r[1],t[1]),a=n(t[0],r[0]),u=n(o(r[0],t[1]),o(t[0],r[1]));return g(e[0],e[1],i,a,u)}throw new TypeError("Invalid Arguments: Try again")},"Object, Object, Object":function(e,t,r){if(2===Object.keys(e).length&&2===Object.keys(t).length&&2===Object.keys(r).length){if(!f(e))throw new TypeError("Values of pointX and pointY should be numbers or BigNumbers");if(!f(t))throw new TypeError("Values of lineOnePtX and lineOnePtY should be numbers or BigNumbers");if(!f(r))throw new TypeError("Values of lineTwoPtX and lineTwoPtY should be numbers or BigNumbers");if(s(h(t),h(r)))throw new TypeError("LinePoint1 should not be same with LinePoint2");if("pointX"in e&&"pointY"in e&&"lineOnePtX"in t&&"lineOnePtY"in t&&"lineTwoPtX"in r&&"lineTwoPtY"in r){const i=n(r.lineTwoPtY,t.lineOnePtY),a=n(t.lineOnePtX,r.lineTwoPtX),s=n(o(r.lineTwoPtX,t.lineOnePtY),o(t.lineOnePtX,r.lineTwoPtY));return g(e.pointX,e.pointY,i,a,s)}throw new TypeError("Key names do not match")}throw new TypeError("Invalid Arguments: Try again")},"Array, Array":function(e,t){if(2===e.length&&3===t.length){if(!f(e))throw new TypeError("Array with 2 numbers or BigNumbers expected for first argument");if(!p(t))throw new TypeError("Array with 3 numbers or BigNumbers expected for second argument");return g(e[0],e[1],t[0],t[1],t[2])}if(3===e.length&&6===t.length){if(!p(e))throw new TypeError("Array with 3 numbers or BigNumbers expected for first argument");if(!d(t))throw new TypeError("Array with 6 numbers or BigNumbers expected for second argument");return y(e[0],e[1],e[2],t[0],t[1],t[2],t[3],t[4],t[5])}if(e.length===t.length&&e.length>0){if(!m(e))throw new TypeError("All values of an array should be numbers or BigNumbers");if(!m(t))throw new TypeError("All values of an array should be numbers or BigNumbers");return x(e,t)}throw new TypeError("Invalid Arguments: Try again")},"Object, Object":function(e,t){if(2===Object.keys(e).length&&3===Object.keys(t).length){if(!f(e))throw new TypeError("Values of pointX and pointY should be numbers or BigNumbers");if(!p(t))throw new TypeError("Values of xCoeffLine, yCoeffLine and constant should be numbers or BigNumbers");if("pointX"in e&&"pointY"in e&&"xCoeffLine"in t&&"yCoeffLine"in t&&"constant"in t)return g(e.pointX,e.pointY,t.xCoeffLine,t.yCoeffLine,t.constant);throw new TypeError("Key names do not match")}if(3===Object.keys(e).length&&6===Object.keys(t).length){if(!p(e))throw new TypeError("Values of pointX, pointY and pointZ should be numbers or BigNumbers");if(!d(t))throw new TypeError("Values of x0, y0, z0, a, b and c should be numbers or BigNumbers");if("pointX"in e&&"pointY"in e&&"x0"in t&&"y0"in t&&"z0"in t&&"a"in t&&"b"in t&&"c"in t)return y(e.pointX,e.pointY,e.pointZ,t.x0,t.y0,t.z0,t.a,t.b,t.c);throw new TypeError("Key names do not match")}if(2===Object.keys(e).length&&2===Object.keys(t).length){if(!f(e))throw new TypeError("Values of pointOneX and pointOneY should be numbers or BigNumbers");if(!f(t))throw new TypeError("Values of pointTwoX and pointTwoY should be numbers or BigNumbers");if("pointOneX"in e&&"pointOneY"in e&&"pointTwoX"in t&&"pointTwoY"in t)return x([e.pointOneX,e.pointOneY],[t.pointTwoX,t.pointTwoY]);throw new TypeError("Key names do not match")}if(3===Object.keys(e).length&&3===Object.keys(t).length){if(!p(e))throw new TypeError("Values of pointOneX, pointOneY and pointOneZ should be numbers or BigNumbers");if(!p(t))throw new TypeError("Values of pointTwoX, pointTwoY and pointTwoZ should be numbers or BigNumbers");if("pointOneX"in e&&"pointOneY"in e&&"pointOneZ"in e&&"pointTwoX"in t&&"pointTwoY"in t&&"pointTwoZ"in t)return x([e.pointOneX,e.pointOneY,e.pointOneZ],[t.pointTwoX,t.pointTwoY,t.pointTwoZ]);throw new TypeError("Key names do not match")}throw new TypeError("Invalid Arguments: Try again")},Array:function(e){if(!function(e){if(2===e[0].length&&l(e[0][0])&&l(e[0][1])){if(e.some((e=>2!==e.length||!l(e[0])||!l(e[1]))))return!1}else{if(!(3===e[0].length&&l(e[0][0])&&l(e[0][1])&&l(e[0][2])))return!1;if(e.some((e=>3!==e.length||!l(e[0])||!l(e[1])||!l(e[2]))))return!1}return!0}(e))throw new TypeError("Incorrect array format entered for pairwise distance calculation");return function(e){const t=[];let r=[],n=[];for(let i=0;i<e.length-1;i++)for(let o=i+1;o<e.length;o++)2===e[0].length?(r=[e[i][0],e[i][1]],n=[e[o][0],e[o][1]]):3===e[0].length&&(r=[e[i][0],e[i][1],e[i][2]],n=[e[o][0],e[o][1],e[o][2]]),t.push(x(r,n));return t}(e)}});function l(e){return"number"==typeof e||i(e)}function f(e){return e.constructor!==Array&&(e=h(e)),l(e[0])&&l(e[1])}function p(e){return e.constructor!==Array&&(e=h(e)),l(e[0])&&l(e[1])&&l(e[2])}function m(e){return Array.isArray(e)||(e=h(e)),e.every(l)}function d(e){return e.constructor!==Array&&(e=h(e)),l(e[0])&&l(e[1])&&l(e[2])&&l(e[3])&&l(e[4])&&l(e[5])}function h(e){const t=Object.keys(e),r=[];for(let n=0;n<t.length;n++)r.push(e[t[n]]);return r}function g(e,t,n,i,s){const l=c(r(r(o(n,e),o(i,t)),s)),f=u(r(o(n,n),o(i,i)));return a(l,f)}function y(e,t,i,s,c,l,f,p,m){let d=[n(o(n(c,t),m),o(n(l,i),p)),n(o(n(l,i),f),o(n(s,e),m)),n(o(n(s,e),p),o(n(c,t),f))];d=u(r(r(o(d[0],d[0]),o(d[1],d[1])),o(d[2],d[2])));const h=u(r(r(o(f,f),o(p,p)),o(m,m)));return a(d,h)}function x(e,t){const i=e.length;let a=0,s=0;for(let u=0;u<i;u++)s=n(e[u],t[u]),a=r(o(s,s),a);return u(a)}})),td=Se("intersect",["typed","config","abs","add","addScalar","matrix","multiply","multiplyScalar","divideScalar","subtract","smaller","equalScalar","flatten","isZero","isNumeric"],(e=>{let{typed:t,config:r,abs:n,add:i,addScalar:o,matrix:a,multiply:s,multiplyScalar:u,divideScalar:c,subtract:l,smaller:f,equalScalar:p,flatten:m,isZero:d,isNumeric:h}=e;return t("intersect",{"Array, Array, Array":g,"Array, Array, Array, Array":y,"Matrix, Matrix, Matrix":function(e,t,r){const n=g(e.valueOf(),t.valueOf(),r.valueOf());return null===n?null:a(n)},"Matrix, Matrix, Matrix, Matrix":function(e,t,r,n){const i=y(e.valueOf(),t.valueOf(),r.valueOf(),n.valueOf());return null===i?null:a(i)}});function g(e,t,r){if(e=x(e),t=x(t),r=x(r),!v(e))throw new TypeError("Array with 3 numbers or BigNumbers expected for first argument");if(!v(t))throw new TypeError("Array with 3 numbers or BigNumbers expected for second argument");if(!function(e){return 4===e.length&&h(e[0])&&h(e[1])&&h(e[2])&&h(e[3])}(r))throw new TypeError("Array with 4 numbers expected as third argument");return function(e,t,r,n,i,a,s,f,p,m){const d=u(e,s),h=u(n,s),g=u(t,f),y=u(i,f),x=u(r,p),b=u(a,p),v=l(l(l(m,d),g),x),w=l(l(l(o(o(h,y),b),d),g),x),N=c(v,w);return[o(e,u(N,l(n,e))),o(t,u(N,l(i,t))),o(r,u(N,l(a,r)))]}(e[0],e[1],e[2],t[0],t[1],t[2],r[0],r[1],r[2],r[3])}function y(e,t,a,m){if(e=x(e),t=x(t),a=x(a),m=x(m),2===e.length){if(!b(e))throw new TypeError("Array with 2 numbers or BigNumbers expected for first argument");if(!b(t))throw new TypeError("Array with 2 numbers or BigNumbers expected for second argument");if(!b(a))throw new TypeError("Array with 2 numbers or BigNumbers expected for third argument");if(!b(m))throw new TypeError("Array with 2 numbers or BigNumbers expected for fourth argument");return function(e,t,a,p){const m=e,h=a,g=l(m,t),y=l(h,p),x=l(u(g[0],y[1]),u(y[0],g[1]));if(d(x))return null;if(f(n(x),r.relTol))return null;const b=u(y[0],m[1]),v=u(y[1],m[0]),w=u(y[0],h[1]),N=u(y[1],h[0]),E=c(o(l(l(b,v),w),N),x);return i(s(g,E),m)}(e,t,a,m)}if(3===e.length){if(!v(e))throw new TypeError("Array with 3 numbers or BigNumbers expected for first argument");if(!v(t))throw new TypeError("Array with 3 numbers or BigNumbers expected for second argument");if(!v(a))throw new TypeError("Array with 3 numbers or BigNumbers expected for third argument");if(!v(m))throw new TypeError("Array with 3 numbers or BigNumbers expected for fourth argument");return function(e,t,r,n,i,a,s,f,m,h,g,y){const x=w(e,s,h,s,t,f,g,f,r,m,y,m),b=w(h,s,n,e,g,f,i,t,y,m,a,r),v=w(e,s,n,e,t,f,i,t,r,m,a,r),N=w(h,s,h,s,g,f,g,f,y,m,y,m),E=w(n,e,n,e,i,t,i,t,a,r,a,r),A=l(u(x,b),u(v,N)),S=l(u(E,N),u(b,b));if(d(S))return null;const M=c(A,S),C=c(o(x,u(M,b)),N),T=o(e,u(M,l(n,e))),D=o(t,u(M,l(i,t))),F=o(r,u(M,l(a,r))),B=o(s,u(C,l(h,s))),O=o(f,u(C,l(g,f))),_=o(m,u(C,l(y,m)));return p(T,B)&&p(D,O)&&p(F,_)?[T,D,F]:null}(e[0],e[1],e[2],t[0],t[1],t[2],a[0],a[1],a[2],m[0],m[1],m[2])}throw new TypeError("Arrays with two or thee dimensional points expected")}function x(e){return 1===e.length?e[0]:e.length>1&&Array.isArray(e[0])&&e.every((e=>Array.isArray(e)&&1===e.length))?m(e):e}function b(e){return 2===e.length&&h(e[0])&&h(e[1])}function v(e){return 3===e.length&&h(e[0])&&h(e[1])&&h(e[2])}function w(e,t,r,n,i,a,s,c,f,p,m,d){const h=u(l(e,t),l(r,n)),g=u(l(i,a),l(s,c)),y=u(l(f,p),l(m,d));return o(o(h,g),y)}})),rd=Se("sum",["typed","config","add","numeric"],(e=>{let{typed:t,config:r,add:n,numeric:i}=e;return t("sum",{"Array | Matrix":o,"Array | Matrix, number | BigNumber":function(e,t){try{return Zn(e,t,n)}catch(e){throw Du(e,"sum")}},"...":function(e){if($n(e))throw new TypeError("Scalar values expected in function sum");return o(e)}});function o(e){let t;return Hn(e,(function(e){try{t=void 0===t?e:n(t,e)}catch(t){throw Du(t,"sum",e)}})),void 0===t&&(t=i(0,r.number)),"string"==typeof t&&(t=i(t,V(t,r))),t}})),nd="cumsum",id=Se(nd,["typed","add","unaryPlus"],(e=>{let{typed:t,add:r,unaryPlus:n}=e;return t(nd,{Array:i,Matrix:function(e){return e.create(i(e.valueOf()))},"Array, number | BigNumber":a,"Matrix, number | BigNumber":function(e,t){return e.create(a(e.valueOf(),t))},"...":function(e){if($n(e))throw new TypeError("All values expected to be scalar in function cumsum");return i(e)}});function i(e){try{return o(e)}catch(e){throw Du(e,nd)}}function o(e){if(0===e.length)return[];const t=[n(e[0])];for(let n=1;n<e.length;++n)t.push(r(t[n-1],e[n]));return t}function a(e,t){const r=sn(e);if(t<0||t>=r.length)throw new an(t,r.length);try{return s(e,t)}catch(e){throw Du(e,nd)}}function s(e,t){let r,n,i;if(t<=0){const a=e[0][0];if(Array.isArray(a)){for(i=Ln(e),n=[],r=0;r<i.length;r++)n[r]=s(i[r],t-1);return n}return o(e)}for(n=[],r=0;r<e.length;r++)n[r]=s(e[r],t-1);return n}})),od="mean",ad=Se(od,["typed","add","divide"],(e=>{let{typed:t,add:r,divide:n}=e;return t(od,{"Array | Matrix":i,"Array | Matrix, number | BigNumber":function(e,t){try{const i=Zn(e,t,r),o=Array.isArray(e)?sn(e):e.size();return n(i,o[t])}catch(e){throw Du(e,"mean")}},"...":function(e){if($n(e))throw new TypeError("Scalar values expected in function mean");return i(e)}});function i(e){let t,i=0;if(Hn(e,(function(e){try{t=void 0===t?e:r(t,e),i++}catch(t){throw Du(t,"mean",e)}})),0===i)throw new Error("Cannot calculate the mean of an empty array");return n(t,i)}})),sd="median",ud=Se(sd,["typed","add","divide","compare","partitionSelect"],(e=>{let{typed:t,add:r,divide:n,compare:i,partitionSelect:o}=e;function a(e){try{const t=(e=Nn(e.valueOf())).length;if(0===t)throw new Error("Cannot calculate median of an empty array");if(t%2==0){const r=t/2-1,n=o(e,r+1);let a=e[r];for(let t=0;t<r;++t)i(e[t],a)>0&&(a=e[t]);return u(a,n)}{const r=o(e,(t-1)/2);return s(r)}}catch(e){throw Du(e,"median")}}const s=t({"number | BigNumber | Complex | Unit":function(e){return e}}),u=t({"number | BigNumber | Complex | Unit, number | BigNumber | Complex | Unit":function(e,t){return n(r(e,t),2)}});return t(sd,{"Array | Matrix":a,"Array | Matrix, number | BigNumber":function(e,t){throw new Error("median(A, dim) is not yet supported")},"...":function(e){if($n(e))throw new TypeError("Scalar values expected in function median");return a(e)}})})),cd=Se("mad",["typed","abs","map","median","subtract"],(e=>{let{typed:t,abs:r,map:n,median:i,subtract:o}=e;return t("mad",{"Array | Matrix":a,"...":function(e){return a(e)}});function a(e){if(0===(e=Nn(e.valueOf())).length)throw new Error("Cannot calculate median absolute deviation (mad) of an empty array");try{const t=i(e);return i(n(e,(function(e){return r(o(e,t))})))}catch(e){throw e instanceof TypeError&&e.message.includes("median")?new TypeError(e.message.replace("median","mad")):Du(e,"mad")}}})),ld="unbiased",fd="variance",pd=Se(fd,["typed","add","subtract","multiply","divide","apply","isNaN"],(e=>{let{typed:t,add:r,subtract:n,multiply:o,divide:a,apply:s,isNaN:u}=e;return t(fd,{"Array | Matrix":function(e){return c(e,ld)},"Array | Matrix, string":c,"Array | Matrix, number | BigNumber":function(e,t){return l(e,t,ld)},"Array | Matrix, number | BigNumber, string":l,"...":function(e){return c(e,ld)}});function c(e,t){let s,c=0;if(0===e.length)throw new SyntaxError("Function variance requires one or more parameters (0 provided)");if(Hn(e,(function(e){try{s=void 0===s?e:r(s,e),c++}catch(t){throw Du(t,"variance",e)}})),0===c)throw new Error("Cannot calculate variance of an empty array");const l=a(s,c);if(s=void 0,Hn(e,(function(e){const t=n(e,l);s=void 0===s?o(t,t):r(s,o(t,t))})),u(s))return s;switch(t){case"uncorrected":return a(s,c);case"biased":return a(s,c+1);case"unbiased":{const e=i(s)?s.mul(0):0;return 1===c?e:a(s,c-1)}default:throw new Error('Unknown normalization "'+t+'". Choose "unbiased" (default), "uncorrected", or "biased".')}}function l(e,t,r){try{if(0===e.length)throw new SyntaxError("Function variance requires one or more parameters (0 provided)");return s(e,t,(e=>c(e,r)))}catch(e){throw Du(e,"variance")}}})),md="quantileSeq",dd=Se(md,["typed","?bignumber","add","subtract","divide","multiply","partitionSelect","compare","isInteger","smaller","smallerEq","larger"],(e=>{let{typed:r,bignumber:n,add:i,subtract:o,divide:a,multiply:s,partitionSelect:u,compare:c,isInteger:l,smaller:f,smallerEq:p,larger:m}=e;const d=po({typed:r,isInteger:l});return r(md,{"Array | Matrix, number | BigNumber":(e,t)=>g(e,t,!1),"Array | Matrix, number | BigNumber, number":(e,t,r)=>h(e,t,!1,r,g),"Array | Matrix, number | BigNumber, boolean":g,"Array | Matrix, number | BigNumber, boolean, number":(e,t,r,n)=>h(e,t,r,n,g),"Array | Matrix, Array | Matrix":(e,t)=>y(e,t,!1),"Array | Matrix, Array | Matrix, number":(e,t,r)=>h(e,t,!1,r,y),"Array | Matrix, Array | Matrix, boolean":y,"Array | Matrix, Array | Matrix, boolean, number":(e,t,r,n)=>h(e,t,r,n,y)});function h(e,t,r,n,i){return d(e,n,(e=>i(e,t,r)))}function g(e,r,o){let s;const u=e.valueOf();if(f(r,0))throw new Error("N/prob must be non-negative");if(p(r,1))return t(r)?x(u,r,o):n(x(u,r,o));if(m(r,1)){if(!l(r))throw new Error("N must be a positive integer");if(m(r,4294967295))throw new Error("N must be less than or equal to 2^32-1, as that is the maximum length of an Array");const e=i(r,1);s=[];for(let t=0;f(t,r);t++){const r=a(t+1,e);s.push(x(u,r,o))}return t(r)?s:n(s)}}function y(e,t,r){const n=e.valueOf(),i=t.valueOf(),o=[];for(let e=0;e<i.length;++e)o.push(x(n,i[e],r));return o}function x(e,r,n){const a=Nn(e),f=a.length;if(0===f)throw new Error("Cannot calculate quantile of an empty sequence");const p=t(r)?r*(f-1):r.times(f-1),m=t(r)?Math.floor(p):p.floor().toNumber(),d=t(r)?p%1:p.minus(m);if(l(p))return n?a[p]:u(a,t(r)?p:p.valueOf());let h,g;if(n)h=a[m],g=a[m+1];else{g=u(a,m+1),h=a[m];for(let e=0;e<m;++e)c(a[e],h)>0&&(h=a[e])}return i(s(h,o(1,d)),s(g,d))}})),hd=Se("std",["typed","map","sqrt","variance"],(e=>{let{typed:t,map:r,sqrt:n,variance:i}=e;return t("std",{"Array | Matrix":o,"Array | Matrix, string":o,"Array | Matrix, number | BigNumber":o,"Array | Matrix, number | BigNumber, string":o,"...":function(e){return o(e)}});function o(e,t){if(0===e.length)throw new SyntaxError("Function std requires one or more parameters (0 provided)");try{const e=i.apply(null,arguments);return p(e)?r(e,n):n(e)}catch(e){throw e instanceof TypeError&&e.message.includes(" variance")?new TypeError(e.message.replace(" variance"," std")):e}}})),gd="corr",yd=Se(gd,["typed","matrix","mean","sqrt","sum","add","subtract","multiply","pow","divide"],(e=>{let{typed:t,matrix:r,sqrt:n,sum:i,add:o,subtract:a,multiply:s,pow:u,divide:c}=e;return t(gd,{"Array, Array":function(e,t){return l(e,t)},"Matrix, Matrix":function(e,t){const n=l(e.toArray(),t.toArray());return Array.isArray(n)?r(n):n}});function l(e,t){const r=[];if(Array.isArray(e[0])&&Array.isArray(t[0])){if(e.length!==t.length)throw new SyntaxError("Dimension mismatch. Array A and B must have the same length.");for(let n=0;n<e.length;n++){if(e[n].length!==t[n].length)throw new SyntaxError("Dimension mismatch. Array A and B must have the same number of elements.");r.push(f(e[n],t[n]))}return r}if(e.length!==t.length)throw new SyntaxError("Dimension mismatch. Array A and B must have the same number of elements.");return f(e,t)}function f(e,t){const r=e.length,l=i(e),f=i(t),p=e.reduce(((e,r,n)=>o(e,s(r,t[n]))),0),m=i(e.map((e=>u(e,2)))),d=i(t.map((e=>u(e,2)))),h=a(s(r,p),s(l,f)),g=n(s(a(s(r,m),u(l,2)),a(s(r,d),u(f,2))));return c(h,g)}}));function xd(e,t){if(t<e)return 1;if(t===e)return t;const r=t+e>>1;return xd(e,r)*xd(r+1,t)}function bd(e,t){if(!Z(e)||e<0)throw new TypeError("Positive integer value expected in function combinations");if(!Z(t)||t<0)throw new TypeError("Positive integer value expected in function combinations");if(t>e)throw new TypeError("k must be less than or equal to n");const r=e-t;let n=1,i=2;const o=t<r?t:r;for(let a=t<r?r+1:t+1;a<=e;++a)for(n*=a;i<=o&&n%i==0;)n/=i,++i;return i<=o&&(n/=xd(i,o)),n}bd.signature="number, number";const vd="combinations",wd=Se(vd,["typed"],(e=>{let{typed:t}=e;return t(vd,{"number, number":bd,"BigNumber, BigNumber":function(e,t){const r=e.constructor;let n,i;const o=e.minus(t),a=new r(1);if(!Nd(e)||!Nd(t))throw new TypeError("Positive integer value expected in function combinations");if(t.gt(e))throw new TypeError("k must be less than n in function combinations");if(n=a,t.lt(o))for(i=a;i.lte(o);i=i.plus(a))n=n.times(t.plus(i)).dividedBy(i);else for(i=a;i.lte(t);i=i.plus(a))n=n.times(o.plus(i)).dividedBy(i);return n}})}));function Nd(e){return e.isInteger()&&e.gte(0)}const Ed="combinationsWithRep",Ad=Se(Ed,["typed"],(e=>{let{typed:t}=e;return t(Ed,{"number, number":function(e,t){if(!Z(e)||e<0)throw new TypeError("Positive integer value expected in function combinationsWithRep");if(!Z(t)||t<0)throw new TypeError("Positive integer value expected in function combinationsWithRep");if(e<1)throw new TypeError("k must be less than or equal to n + k - 1");return t<e-1?xd(e,e+t-1)/xd(1,t):xd(t+1,e+t-1)/xd(1,e-1)},"BigNumber, BigNumber":function(e,t){let r,n;const i=new(0,e.constructor)(1),o=e.minus(i);if(!Sd(e)||!Sd(t))throw new TypeError("Positive integer value expected in function combinationsWithRep");if(e.lt(i))throw new TypeError("k must be less than or equal to n + k - 1 in function combinationsWithRep");if(r=i,t.lt(o))for(n=i;n.lte(o);n=n.plus(i))r=r.times(t.plus(n)).dividedBy(n);else for(n=i;n.lte(t);n=n.plus(i))r=r.times(o.plus(n)).dividedBy(n);return r}})}));function Sd(e){return e.isInteger()&&e.gte(0)}function Md(e){let t;if(Z(e))return e<=0?isFinite(e)?1/0:NaN:e>171?1/0:xd(1,e-1);if(e<.5)return Math.PI/(Math.sin(Math.PI*e)*Md(1-e));if(e>=171.35)return 1/0;if(e>85){const t=e*e,r=t*e,n=r*e,i=n*e;return Math.sqrt(2*Math.PI/e)*Math.pow(e/Math.E,e)*(1+1/(12*e)+1/(288*t)-139/(51840*r)-571/(2488320*n)+163879/(209018880*i)+5246819/(75246796800*i*e))}--e,t=Td[0];for(let r=1;r<Td.length;++r)t+=Td[r]/(e+r);const r=e+Cd+.5;return Math.sqrt(2*Math.PI)*Math.pow(r,e+.5)*Math.exp(-r)*t}Md.signature="number";const Cd=4.7421875,Td=[.9999999999999971,57.15623566586292,-59.59796035547549,14.136097974741746,-.4919138160976202,3399464998481189e-20,4652362892704858e-20,-9837447530487956e-20,.0001580887032249125,-.00021026444172410488,.00021743961811521265,-.0001643181065367639,8441822398385275e-20,-26190838401581408e-21,36899182659531625e-22],Dd=.9189385332046728,Fd=[1.000000000190015,76.18009172947146,-86.50532032941678,24.01409824083091,-1.231739572450155,.001208650973866179,-5395239384953e-18];function Bd(e){if(e<0)return NaN;if(0===e)return 1/0;if(!isFinite(e))return e;if(e<.5)return Math.log(Math.PI/Math.sin(Math.PI*e))-Bd(1-e);const t=5+(e-=1)+.5;let r=Fd[0];for(let t=6;t>=1;t--)r+=Fd[t]/(e+t);return Dd+(e+.5)*Math.log(t)-t+Math.log(r)}Bd.signature="number";const Od="gamma",_d=Se(Od,["typed","config","multiplyScalar","pow","BigNumber","Complex"],(e=>{let{typed:t,config:r,multiplyScalar:n,pow:i,BigNumber:o,Complex:a}=e;return t(Od,{number:Md,Complex:function e(t){if(0===t.im)return Md(t.re);if(t.re<.5){const r=new a(1-t.re,-t.im),n=new a(Math.PI*t.re,Math.PI*t.im);return new a(Math.PI).div(n.sin()).div(e(r))}t=new a(t.re-1,t.im);let r=new a(Td[0],0);for(let e=1;e<Td.length;++e){const n=new a(Td[e],0);r=r.add(n.div(t.add(e)))}const n=new a(t.re+Cd+.5,t.im),i=Math.sqrt(2*Math.PI),o=n.pow(t.add(.5)),s=n.neg().exp();return r.mul(i).mul(o).mul(s)},BigNumber:function(e){if(e.isInteger())return e.isNegative()||e.isZero()?new o(1/0):s(e.minus(1));if(!e.isFinite())return new o(e.isNegative()?NaN:1/0);throw new Error("Integer BigNumber expected")}});function s(e){if(e<8)return new o([1,1,2,6,24,120,720,5040][e]);const t=r.precision+(0|Math.log(e.toNumber())),n=o.clone({precision:t});if(e%2==1)return e.times(s(new o(e-1)));let i=e,a=new n(e),u=e.toNumber();for(;i>2;)i-=2,u+=i,a=a.times(u);return new o(a.toPrecision(o.precision))}})),zd="lgamma",Id=Se(zd,["Complex","typed"],(e=>{let{Complex:t,typed:r}=e;const n=[-.029550653594771242,.00641025641025641,-.0019175269175269176,.0008417508417508417,-.0005952380952380953,.0007936507936507937,-.002777777777777778,.08333333333333333];return r(zd,{number:Bd,Complex:function e(r){if(r.isNaN())return new t(NaN,NaN);if(0===r.im)return new t(Bd(r.re),0);if(r.re>=7||Math.abs(r.im)>=7)return i(r);if(r.re<=.1){const i=(n=6.283185307179586,(!0^((a=r.im)>0||!(a<0)&&1/a==1/0)?-n:n)*Math.floor(.5*r.re+.25)),o=r.mul(Math.PI).sin().log(),s=e(new t(1-r.re,-r.im));return new t(1.1447298858494002,i).sub(o).sub(s)}return r.im>=0?o(r):o(r.conjugate()).conjugate();var n,a},BigNumber:function(){throw new Error("mathjs doesn't yet provide an implementation of the algorithm lgamma for BigNumber")}});function i(e){const r=e.sub(.5).mul(e.log()).sub(e).add(Dd),i=new t(1,0).div(e),o=i.div(e);let a=n[0],s=n[1];const u=2*o.re,c=o.re*o.re+o.im*o.im;for(let e=2;e<8;e++){const t=s;s=-c*a+n[e],a=u*a+t}const l=i.mul(o.mul(a).add(s));return r.add(l)}function o(e){let r=0,n=0,o=e;for(e=e.add(1);e.re<=7;){o=o.mul(e);const t=o.im<0?1:0;0!==t&&0===n&&r++,n=t,e=e.add(1)}return i(e).sub(o.log()).sub(new t(0,2*r*Math.PI*1))}})),kd="factorial",qd=Se(kd,["typed","gamma"],(e=>{let{typed:t,gamma:r}=e;return t(kd,{number:function(e){if(e<0)throw new Error("Value must be non-negative");return r(e+1)},BigNumber:function(e){if(e.isNegative())throw new Error("Value must be non-negative");return r(e.plus(1))},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Rd="kldivergence",Pd=Se(Rd,["typed","matrix","divide","sum","multiply","map","dotDivide","log","isNumeric"],(e=>{let{typed:t,matrix:r,divide:n,sum:i,multiply:o,map:a,dotDivide:s,log:u,isNumeric:c}=e;return t(Rd,{"Array, Array":function(e,t){return l(r(e),r(t))},"Matrix, Array":function(e,t){return l(e,r(t))},"Array, Matrix":function(e,t){return l(r(e),t)},"Matrix, Matrix":function(e,t){return l(e,t)}});function l(e,t){const r=t.size().length,l=e.size().length;if(r>1)throw new Error("first object must be one dimensional");if(l>1)throw new Error("second object must be one dimensional");if(r!==l)throw new Error("Length of two vectors must be equal");if(0===i(e))throw new Error("Sum of elements in first object must be non zero");if(0===i(t))throw new Error("Sum of elements in second object must be non zero");const f=n(e,i(e)),p=n(t,i(t)),m=i(o(f,a(s(f,p),(e=>u(e)))));return c(m)?m:Number.NaN}})),jd="multinomial",Ud=Se(jd,["typed","add","divide","multiply","factorial","isInteger","isPositive"],(e=>{let{typed:t,add:r,divide:n,multiply:i,factorial:o,isInteger:a,isPositive:s}=e;return t(jd,{"Array | Matrix":function(e){let t=0,u=1;return Hn(e,(function(e){if(!a(e)||!s(e))throw new TypeError("Positive integer value expected in function multinomial");t=r(t,e),u=i(u,o(e))})),n(o(t),u)}})})),Ld="permutations",$d=Se(Ld,["typed","factorial"],(e=>{let{typed:t,factorial:r}=e;return t(Ld,{"number | BigNumber":r,"number, number":function(e,t){if(!Z(e)||e<0)throw new TypeError("Positive integer value expected in function permutations");if(!Z(t)||t<0)throw new TypeError("Positive integer value expected in function permutations");if(t>e)throw new TypeError("second argument k must be less than or equal to first argument n");return xd(e-t+1,e)},"BigNumber, BigNumber":function(e,t){let r,n;if(!Hd(e)||!Hd(t))throw new TypeError("Positive integer value expected in function permutations");if(t.gt(e))throw new TypeError("second argument k must be less than or equal to first argument n");for(r=e.mul(0).add(1),n=e.minus(t).plus(1);n.lte(e);n=n.plus(1))r=r.times(n);return r}})}));function Hd(e){return e.isInteger()&&e.gte(0)}var Gd=r(7391);const Zd=Gd(Date.now());function Vd(e){let t;var r;return t=null===(r=e)?Zd:Gd(String(r)),function(){return t()}}const Wd="pickRandom",Yd=Se(Wd,["typed","config","?on"],(e=>{let{typed:r,config:n,on:i}=e,o=Vd(n.randomSeed);return i&&i("config",(function(e,t){e.randomSeed!==t.randomSeed&&(o=Vd(e.randomSeed))})),r(Wd,{"Array | Matrix":function(e){return a(e,{})},"Array | Matrix, Object":function(e,t){return a(e,t)},"Array | Matrix, number":function(e,t){return a(e,{number:t})},"Array | Matrix, Array | Matrix":function(e,t){return a(e,{weights:t})},"Array | Matrix, Array | Matrix, number":function(e,t,r){return a(e,{number:r,weights:t})},"Array | Matrix, number, Array | Matrix":function(e,t,r){return a(e,{number:t,weights:r})}});function a(e,r){let{number:n,weights:i,elementWise:a=!0}=r;const s=void 0===n;s&&(n=1);const u=f(e)?e.create:f(i)?i.create:null;e=e.valueOf(),i&&(i=i.valueOf()),!0===a&&(e=Nn(e),i=Nn(i));let c=0;if(void 0!==i){if(i.length!==e.length)throw new Error("Weights must have the same length as possibles");for(let e=0,r=i.length;e<r;e++){if(!t(i[e])||i[e]<0)throw new Error("Weights must be an array of positive numbers");c+=i[e]}}const l=e.length,p=[];let m;for(;p.length<n;){if(void 0===i)m=e[Math.floor(o()*l)];else{let t=o()*c;for(let r=0,n=e.length;r<n;r++)if(t-=i[r],t<0){m=e[r];break}}p.push(m)}return s?p[0]:u?u(p):p}}));function Jd(e,t){const r=[];if((e=e.slice(0)).length>1)for(let n=0,i=e.shift();n<i;n++)r.push(Jd(e,t));else for(let n=0,i=e.shift();n<i;n++)r.push(t());return r}const Xd="random",Qd=Se(Xd,["typed","config","?on"],(e=>{let{typed:t,config:r,on:n}=e,i=Vd(r.randomSeed);return n&&n("config",(function(e,t){e.randomSeed!==t.randomSeed&&(i=Vd(e.randomSeed))})),t(Xd,{"":()=>a(0,1),number:e=>a(0,e),"number, number":(e,t)=>a(e,t),"Array | Matrix":e=>o(e,0,1),"Array | Matrix, number":(e,t)=>o(e,0,t),"Array | Matrix, number, number":(e,t,r)=>o(e,t,r)});function o(e,t,r){const n=Jd(e.valueOf(),(()=>a(t,r)));return f(e)?e.create(n):n}function a(e,t){return e+i()*(t-e)}})),Kd="randomInt",eh=Se(Kd,["typed","config","?on"],(e=>{let{typed:t,config:r,on:n}=e,i=Vd(r.randomSeed);return n&&n("config",(function(e,t){e.randomSeed!==t.randomSeed&&(i=Vd(e.randomSeed))})),t(Kd,{"":()=>a(0,1),number:e=>a(0,e),"number, number":(e,t)=>a(e,t),"Array | Matrix":e=>o(e,0,1),"Array | Matrix, number":(e,t)=>o(e,0,t),"Array | Matrix, number, number":(e,t,r)=>o(e,t,r)});function o(e,t,r){const n=Jd(e.valueOf(),(()=>a(t,r)));return f(e)?e.create(n):n}function a(e,t){return Math.floor(e+i()*(t-e))}})),th="stirlingS2",rh=Se(th,["typed","addScalar","subtractScalar","multiplyScalar","divideScalar","pow","factorial","combinations","isNegative","isInteger","number","?bignumber","larger"],(e=>{let{typed:r,addScalar:n,subtractScalar:i,multiplyScalar:o,divideScalar:a,pow:s,factorial:u,combinations:c,isNegative:l,isInteger:f,number:p,bignumber:m,larger:d}=e;const h=[],g=[];return r(th,{"number | BigNumber, number | BigNumber":function(e,r){if(!f(e)||l(e)||!f(r)||l(r))throw new TypeError("Non-negative integer value expected in function stirlingS2");if(d(r,e))throw new TypeError("k must be less than or equal to n in function stirlingS2");const i=!(t(e)&&t(r)),a=i?g:h,s=i?m:p,u=p(e),c=p(r);if(a[u]&&a[u].length>c)return a[u][c];for(let e=0;e<=u;++e){if(a[e]||(a[e]=[s(0===e?1:0)]),0===e)continue;const t=a[e],r=a[e-1];for(let i=t.length;i<=e&&i<=c;++i)t[i]=i===e?1:n(o(s(i),r[i]),r[i-1])}return a[u][c]}})})),nh="bellNumbers",ih=Se(nh,["typed","addScalar","isNegative","isInteger","stirlingS2"],(e=>{let{typed:t,addScalar:r,isNegative:n,isInteger:i,stirlingS2:o}=e;return t(nh,{"number | BigNumber":function(e){if(!i(e)||n(e))throw new TypeError("Non-negative integer value expected in function bellNumbers");let t=0;for(let n=0;n<=e;n++)t=r(t,o(e,n));return t}})})),oh="catalan",ah=Se(oh,["typed","addScalar","divideScalar","multiplyScalar","combinations","isNegative","isInteger"],(e=>{let{typed:t,addScalar:r,divideScalar:n,multiplyScalar:i,combinations:o,isNegative:a,isInteger:s}=e;return t(oh,{"number | BigNumber":function(e){if(!s(e)||a(e))throw new TypeError("Non-negative integer value expected in function catalan");return n(o(i(e,2),e),r(e,1))}})})),sh="composition",uh=Se(sh,["typed","addScalar","combinations","isNegative","isPositive","isInteger","larger"],(e=>{let{typed:t,addScalar:r,combinations:n,isPositive:i,isNegative:o,isInteger:a,larger:s}=e;return t(sh,{"number | BigNumber, number | BigNumber":function(e,t){if(!(a(e)&&i(e)&&a(t)&&i(t)))throw new TypeError("Positive integer value expected in function composition");if(s(t,e))throw new TypeError("k must be less than or equal to n in function composition");return n(r(e,-1),r(t,-1))}})})),ch="leafCount",lh=Se(ch,["parse","typed"],(e=>{let{parse:t,typed:r}=e;function n(e){let t=0;return e.forEach((e=>{t+=n(e)})),t||1}return r(ch,{Node:function(e){return n(e)}})}));function fh(e){return B(e)||R(e)&&e.isUnary()&&B(e.args[0])}function ph(e){return!!B(e)||!(!z(e)&&!R(e)||!e.args.every(ph))||!(!P(e)||!ph(e.content))}const mh=Se("simplifyUtil",["FunctionNode","OperatorNode","SymbolNode"],(e=>{let{FunctionNode:t,OperatorNode:r,SymbolNode:n}=e;const i=!0,o=!1,a="defaultF",s={add:{trivial:i,total:i,commutative:i,associative:i},unaryPlus:{trivial:i,total:i,commutative:i,associative:i},subtract:{trivial:o,total:i,commutative:o,associative:o},multiply:{trivial:i,total:i,commutative:i,associative:i},divide:{trivial:o,total:i,commutative:o,associative:o},paren:{trivial:i,total:i,commutative:i,associative:o},defaultF:{trivial:o,total:i,commutative:o,associative:o}};function u(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:s,n=a;if("string"==typeof e?n=e:R(e)?n=e.fn.toString():z(e)?n=e.name:P(e)&&(n="paren"),Ae(r,n)){const e=r[n];if(Ae(e,t))return e[t];if(Ae(s,n))return s[n][t]}if(Ae(r,a)){const e=r[a];return Ae(e,t)?e[t]:s[a][t]}if(Ae(s,n)){const e=s[n];if(Ae(e,t))return e[t]}return s[a][t]}function c(e){return u(e,"associative",arguments.length>1&&void 0!==arguments[1]?arguments[1]:s)}function l(e,t){let r;const n=[],i=function(e){for(let t=0;t<e.args.length;t++){const o=e.args[t];R(o)&&r===o.op?i(o):n.push(o)}};return c(e,t)?(r=e.op,i(e),n):e.args}function f(e){return R(e)?function(t){try{return new r(e.op,e.fn,t,e.implicit)}catch(e){return console.error(e),[]}}:function(r){return new t(new n(e.name),r)}}return{createMakeNodeFunction:f,hasProperty:u,isCommutative:function(e){return u(e,"commutative",arguments.length>1&&void 0!==arguments[1]?arguments[1]:s)},isAssociative:c,mergeContext:function(e,t){const r={...e};for(const n in t)Ae(e,n)?r[n]={...t[n],...e[n]}:r[n]=t[n];return r},flatten:function e(t,r){if(!t.args||0===t.args.length)return t;t.args=l(t,r);for(let n=0;n<t.args.length;n++)e(t.args[n],r)},allChildren:l,unflattenr:function e(t,r){if(!t.args||0===t.args.length)return;const n=f(t),i=t.args.length;for(let n=0;n<i;n++)e(t.args[n],r);if(i>2&&c(t,r)){let e=t.args.pop();for(;t.args.length>0;)e=n([t.args.pop(),e]);t.args=e.args}},unflattenl:function e(t,r){if(!t.args||0===t.args.length)return;const n=f(t),i=t.args.length;for(let n=0;n<i;n++)e(t.args[n],r);if(i>2&&c(t,r)){let e=t.args.shift();for(;t.args.length>0;)e=n([e,t.args.shift()]);t.args=e.args}},defaultContext:s,realContext:{divide:{total:o},log:{total:o}},positiveContext:{subtract:{total:o},abs:{trivial:i},log:{total:i}}}})),dh=Se("simplify",["config","typed","parse","add","subtract","multiply","divide","pow","isZero","equal","resolve","simplifyConstant","simplifyCore","?fraction","?bignumber","mathWithTransform","matrix","AccessorNode","ArrayNode","ConstantNode","FunctionNode","IndexNode","ObjectNode","OperatorNode","ParenthesisNode","SymbolNode"],(e=>{let{config:t,typed:r,parse:n,add:i,subtract:o,multiply:a,divide:s,pow:u,isZero:c,equal:l,resolve:f,simplifyConstant:p,simplifyCore:m,fraction:d,bignumber:h,mathWithTransform:g,matrix:y,AccessorNode:x,ArrayNode:b,ConstantNode:v,FunctionNode:w,IndexNode:N,ObjectNode:E,OperatorNode:A,ParenthesisNode:S,SymbolNode:M}=e;const{hasProperty:C,isCommutative:T,isAssociative:D,mergeContext:F,flatten:O,unflattenr:_,unflattenl:z,createMakeNodeFunction:I,defaultContext:k,realContext:q,positiveContext:R}=mh({FunctionNode:w,OperatorNode:A,SymbolNode:M});r.addConversion({from:"Object",to:"Map",convert:Pe});const j=r("simplify",{Node:V,"Node, Map":(e,t)=>V(e,!1,t),"Node, Map, Object":(e,t,r)=>V(e,!1,t,r),"Node, Array":V,"Node, Array, Map":V,"Node, Array, Map, Object":V});function U(e){return e.transform((function(e,t,r){return P(e)?U(e.content):e}))}r.removeConversion({from:"Object",to:"Map",convert:Pe}),j.defaultContext=k,j.realContext=q,j.positiveContext=R;const $={true:!0,false:!0,e:!0,i:!0,Infinity:!0,LN2:!0,LN10:!0,LOG2E:!0,LOG10E:!0,NaN:!0,phi:!0,pi:!0,SQRT1_2:!0,SQRT2:!0,tau:!0};function H(e,t){const r={};if(e.s){const t=e.s.split("->");if(2!==t.length)throw SyntaxError("Could not parse rule: "+e.s);r.l=t[0],r.r=t[1]}else r.l=e.l,r.r=e.r;r.l=U(n(r.l)),r.r=U(n(r.r));for(const t of["imposeContext","repeat","assuming"])t in e&&(r[t]=e[t]);if(e.evaluate&&(r.evaluate=n(e.evaluate)),D(r.l,t)){const e=!T(r.l,t);let n;e&&(n=Z());const i=I(r.l),o=Z();r.expanded={},r.expanded.l=i([r.l,o]),O(r.expanded.l,t),_(r.expanded.l,t),r.expanded.r=i([r.r,o]),e&&(r.expandedNC1={},r.expandedNC1.l=i([n,r.l]),r.expandedNC1.r=i([n,r.r]),r.expandedNC2={},r.expandedNC2.l=i([n,r.expanded.l]),r.expandedNC2.r=i([n,r.expanded.r]))}return r}j.rules=[m,{l:"log(e)",r:"1"},{s:"n-n1 -> n+-n1",assuming:{subtract:{total:!0}}},{s:"n-n -> 0",assuming:{subtract:{total:!1}}},{s:"-(cl*v) -> v * (-cl)",assuming:{multiply:{commutative:!0},subtract:{total:!0}}},{s:"-(cl*v) -> (-cl) * v",assuming:{multiply:{commutative:!1},subtract:{total:!0}}},{s:"-(v*cl) -> v * (-cl)",assuming:{multiply:{commutative:!1},subtract:{total:!0}}},{l:"-(n1/n2)",r:"-n1/n2"},{l:"-v",r:"v * (-1)"},{l:"(n1 + n2)*(-1)",r:"n1*(-1) + n2*(-1)",repeat:!0},{l:"n/n1^n2",r:"n*n1^-n2"},{l:"n/n1",r:"n*n1^-1"},{s:"(n1*n2)^n3 -> n1^n3 * n2^n3",assuming:{multiply:{commutative:!0}}},{s:"(n1*n2)^(-1) -> n2^(-1) * n1^(-1)",assuming:{multiply:{commutative:!1}}},{s:"(n ^ n1) ^ n2 -> n ^ (n1 * n2)",assuming:{divide:{total:!0}}},{l:" vd * ( vd * n1 + n2)",r:"vd^2 * n1 + vd * n2"},{s:" vd * (vd^n4 * n1 + n2) -> vd^(1+n4) * n1 + vd * n2",assuming:{divide:{total:!0}}},{s:"vd^n3 * ( vd * n1 + n2) -> vd^(n3+1) * n1 + vd^n3 * n2",assuming:{divide:{total:!0}}},{s:"vd^n3 * (vd^n4 * n1 + n2) -> vd^(n3+n4) * n1 + vd^n3 * n2",assuming:{divide:{total:!0}}},{l:"n*n",r:"n^2"},{s:"n * n^n1 -> n^(n1+1)",assuming:{divide:{total:!0}}},{s:"n^n1 * n^n2 -> n^(n1+n2)",assuming:{divide:{total:!0}}},p,{s:"n+n -> 2*n",assuming:{add:{total:!0}}},{l:"n+-n",r:"0"},{l:"vd*n + vd",r:"vd*(n+1)"},{l:"n3*n1 + n3*n2",r:"n3*(n1+n2)"},{l:"n3^(-n4)*n1 + n3 * n2",r:"n3^(-n4)*(n1 + n3^(n4+1) *n2)"},{l:"n3^(-n4)*n1 + n3^n5 * n2",r:"n3^(-n4)*(n1 + n3^(n4+n5)*n2)"},{s:"n*vd + vd -> (n+1)*vd",assuming:{multiply:{commutative:!1}}},{s:"vd + n*vd -> (1+n)*vd",assuming:{multiply:{commutative:!1}}},{s:"n1*n3 + n2*n3 -> (n1+n2)*n3",assuming:{multiply:{commutative:!1}}},{s:"n^n1 * n -> n^(n1+1)",assuming:{divide:{total:!0},multiply:{commutative:!1}}},{s:"n1*n3^(-n4) + n2 * n3 -> (n1 + n2*n3^(n4 + 1))*n3^(-n4)",assuming:{multiply:{commutative:!1}}},{s:"n1*n3^(-n4) + n2 * n3^n5 -> (n1 + n2*n3^(n4 + n5))*n3^(-n4)",assuming:{multiply:{commutative:!1}}},{l:"n*cd + cd",r:"(n+1)*cd"},{s:"cd*n + cd -> cd*(n+1)",assuming:{multiply:{commutative:!1}}},{s:"cd + cd*n -> cd*(1+n)",assuming:{multiply:{commutative:!1}}},p,{s:"(-n)*n1 -> -(n*n1)",assuming:{subtract:{total:!0}}},{s:"n1*(-n) -> -(n1*n)",assuming:{subtract:{total:!0},multiply:{commutative:!1}}},{s:"ce+ve -> ve+ce",assuming:{add:{commutative:!0}},imposeContext:{add:{commutative:!1}}},{s:"vd*cd -> cd*vd",assuming:{multiply:{commutative:!0}},imposeContext:{multiply:{commutative:!1}}},{l:"n+-n1",r:"n-n1"},{l:"n+-(n1)",r:"n-(n1)"},{s:"n*(n1^-1) -> n/n1",assuming:{multiply:{commutative:!0}}},{s:"n*n1^-n2 -> n/n1^n2",assuming:{multiply:{commutative:!0}}},{s:"n^-1 -> 1/n",assuming:{multiply:{commutative:!0}}},{l:"n^1",r:"n"},{s:"n*(n1/n2) -> (n*n1)/n2",assuming:{multiply:{associative:!0}}},{s:"n-(n1+n2) -> n-n1-n2",assuming:{addition:{associative:!0,commutative:!0}}},{l:"1*n",r:"n",imposeContext:{multiply:{commutative:!0}}},{s:"n1/(n2/n3) -> (n1*n3)/n2",assuming:{multiply:{associative:!0}}},{l:"n1/(-n2)",r:"-n1/n2"}];let G=0;function Z(){return new M("_p"+G++)}function V(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Re(),n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};const i=n.consoleDebug;t=function(e,t){const r=[];for(let n=0;n<e.length;n++){let i,o=e[n];const a=typeof o;switch(a){case"string":o={s:o};case"object":i=H(o,t);break;case"function":i=o;break;default:throw TypeError("Unsupported type of rule: "+a)}r.push(i)}return r}(t||j.rules,n.context);let o=f(e,r);o=U(o);const a={};let s=o.toString({parenthesis:"all"});for(;!a[s];){a[s]=!0,G=0;let e=s;i&&console.log("Working on: ",s);for(let r=0;r<t.length;r++){let a="";if("function"==typeof t[r]?(o=t[r](o,n),i&&(a=t[r].name)):(O(o,n.context),o=Y(o,t[r],n.context),i&&(a=`${t[r].l.toString()} -> ${t[r].r.toString()}`)),i){const t=o.toString({parenthesis:"all"});t!==e&&(console.log("Applying",a,"produced",t),e=t)}z(o,n.context)}s=o.toString({parenthesis:"all"})}return o}function W(e,t,r){let n=e;if(e)for(let i=0;i<e.length;++i){const o=Y(e[i],t,r);o!==e[i]&&(n===e&&(n=e.slice()),n[i]=o)}return n}function Y(e,t,r){if(t.assuming)for(const n in t.assuming)for(const i in t.assuming[n])if(C(n,i,r)!==t.assuming[n][i])return e;const n=F(t.imposeContext,r);let i=e;if(i instanceof A||i instanceof w){const e=W(i.args,t,r);e!==i.args&&(i=i.clone(),i.args=e)}else if(i instanceof S){if(i.content){const e=Y(i.content,t,r);e!==i.content&&(i=new S(e))}}else if(i instanceof b){const e=W(i.items,t,r);e!==i.items&&(i=new b(e))}else if(i instanceof x){let e=i.object;i.object&&(e=Y(i.object,t,r));let n=i.index;i.index&&(n=Y(i.index,t,r)),e===i.object&&n===i.index||(i=new x(e,n))}else if(i instanceof N){const e=W(i.dimensions,t,r);e!==i.dimensions&&(i=new N(e))}else if(i instanceof E){let e=!1;const n={};for(const o in i.properties)n[o]=Y(i.properties[o],t,r),n[o]!==i.properties[o]&&(e=!0);e&&(i=new E(n))}let o=t.r,a=Q(t.l,i,n)[0];if(!a&&t.expanded&&(o=t.expanded.r,a=Q(t.expanded.l,i,n)[0]),!a&&t.expandedNC1&&(o=t.expandedNC1.r,a=Q(t.expandedNC1.l,i,n)[0],a||(o=t.expandedNC2.r,a=Q(t.expandedNC2.l,i,n)[0])),a){const e=i.implicit;i=o.clone(),e&&"implicit"in o&&(i.implicit=!0),i=i.transform((function(e){return e.isSymbolNode&&Ae(a.placeholders,e.name)?a.placeholders[e.name].clone():e}))}return t.repeat&&i!==e&&(i=Y(i,t,r)),i}function J(e,t){const r={placeholders:{}};if(!e.placeholders&&!t.placeholders)return r;if(!e.placeholders)return t;if(!t.placeholders)return e;for(const n in e.placeholders)if(Ae(e.placeholders,n)&&(r.placeholders[n]=e.placeholders[n],Ae(t.placeholders,n)&&!K(e.placeholders[n],t.placeholders[n])))return null;for(const e in t.placeholders)Ae(t.placeholders,e)&&(r.placeholders[e]=t.placeholders[e]);return r}function X(e,t){const r=[];if(0===e.length||0===t.length)return r;let n;for(let i=0;i<e.length;i++)for(let o=0;o<t.length;o++)n=J(e[i],t[o]),n&&r.push(n);return r}function Q(e,t,r,n){let i=[{placeholders:{}}];if(e instanceof A&&t instanceof A||e instanceof w&&t instanceof w){if(e instanceof A){if(e.op!==t.op||e.fn!==t.fn)return[]}else if(e instanceof w&&e.name!==t.name)return[];if(!(1===t.args.length&&1===e.args.length||!D(t,r)&&t.args.length===e.args.length||n)){if(t.args.length>=2&&2===e.args.length){const n=function(e,t){const r=[];let n,i;const o=I(e);if(T(e,t))for(let t=0;t<e.args.length;t++)i=e.args.slice(0),i.splice(t,1),n=1===i.length?i[0]:o(i),r.push(o([e.args[t],n]));else for(let t=1;t<e.args.length;t++){let a=e.args[0];t>1&&(a=o(e.args.slice(0,t))),i=e.args.slice(t),n=1===i.length?i[0]:o(i),r.push(o([a,n]))}return r}(t,r);let i=[];for(let t=0;t<n.length;t++){const o=Q(e,n[t],r,!0);i=i.concat(o)}return i}if(e.args.length>2)throw Error("Unexpected non-binary associative function: "+e.toString());return[]}{let n=[];for(let i=0;i<e.args.length;i++){const o=Q(e.args[i],t.args[i],r);if(0===o.length)break;n.push(o)}if(n.length!==e.args.length){if(!T(t,r)||1===e.args.length)return[];if(e.args.length>2)throw new Error("permuting >2 commutative non-associative rule arguments not yet implemented");const i=Q(e.args[0],t.args[1],r);if(0===i.length)return[];const o=Q(e.args[1],t.args[0],r);if(0===o.length)return[];n=[i,o]}i=function(e){if(0===e.length)return e;const t=e.reduce(X),r=[],n={};for(let e=0;e<t.length;e++){const i=JSON.stringify(t[e]);n[i]||(n[i]=!0,r.push(t[e]))}return r}(n)}}else if(e instanceof M){if(0===e.name.length)throw new Error("Symbol in rule has 0 length...!?");if($[e.name]){if(e.name!==t.name)return[]}else switch(e.name[1]>="a"&&e.name[1]<="z"?e.name.substring(0,2):e.name[0]){case"n":case"_p":i[0].placeholders[e.name]=t;break;case"c":case"cl":if(!B(t))return[];i[0].placeholders[e.name]=t;break;case"v":if(B(t))return[];i[0].placeholders[e.name]=t;break;case"vl":if(!L(t))return[];i[0].placeholders[e.name]=t;break;case"cd":if(!fh(t))return[];i[0].placeholders[e.name]=t;break;case"vd":if(fh(t))return[];i[0].placeholders[e.name]=t;break;case"ce":if(!ph(t))return[];i[0].placeholders[e.name]=t;break;case"ve":if(ph(t))return[];i[0].placeholders[e.name]=t;break;default:throw new Error("Invalid symbol in rule: "+e.name)}}else{if(!(e instanceof v))return[];if(!l(e.value,t.value))return[]}return i}function K(e,t){if(e instanceof v&&t instanceof v){if(!l(e.value,t.value))return!1}else if(e instanceof M&&t instanceof M){if(e.name!==t.name)return!1}else{if(!(e instanceof A&&t instanceof A||e instanceof w&&t instanceof w))return!1;if(e instanceof A){if(e.op!==t.op||e.fn!==t.fn)return!1}else if(e instanceof w&&e.name!==t.name)return!1;if(e.args.length!==t.args.length)return!1;for(let r=0;r<e.args.length;r++)if(!K(e.args[r],t.args[r]))return!1}return!0}return j})),hh=Se("simplifyConstant",["typed","config","mathWithTransform","matrix","?fraction","?bignumber","AccessorNode","ArrayNode","ConstantNode","FunctionNode","IndexNode","ObjectNode","OperatorNode","SymbolNode"],(e=>{let{typed:t,config:r,mathWithTransform:n,matrix:i,fraction:o,bignumber:a,AccessorNode:u,ArrayNode:c,ConstantNode:l,FunctionNode:p,IndexNode:m,ObjectNode:d,OperatorNode:h,SymbolNode:g}=e;const{isCommutative:y,isAssociative:x,allChildren:b,createMakeNodeFunction:v}=mh({FunctionNode:p,OperatorNode:h,SymbolNode:g}),w=t("simplifyConstant",{Node:e=>S(O(e,{})),"Node, Object":function(e,t){return S(O(e,t))}});function N(e){return s(e)?e.valueOf():e instanceof Array?e.map(N):f(e)?i(N(e.valueOf())):e}function E(e,t,r){try{return n[e].apply(null,t)}catch(i){return t=t.map(N),T(n[e].apply(null,t),r)}}const A=t({Fraction:function(e){let t;const r=e.s*e.n;return t=r<0?new h("-","unaryMinus",[new l(-r)]):new l(r),1===e.d?t:new h("/","divide",[t,new l(e.d)])},number:function(e){return e<0?D(new l(-e)):new l(e)},BigNumber:function(e){return e<0?D(new l(-e)):new l(e)},bigint:function(e){return e<0n?D(new l(-e)):new l(e)},Complex:function(e){throw new Error("Cannot convert Complex number to Node")},string:function(e){return new l(e)},Matrix:function(e){return new c(e.valueOf().map((e=>A(e))))}});function S(e){return k(e)?e:A(e)}function M(e,t){if(t&&!1!==t.exactFractions&&isFinite(e)&&o){const r=o(e),n=t&&"number"==typeof t.fractionsLimit?t.fractionsLimit:1/0;if(r.valueOf()===e&&r.n<n&&r.d<n)return r}return e}const T=t({"string, Object":function(e,t){const n=V(e,r);return"BigNumber"===n?(void 0===a&&js(),a(e)):"bigint"===n?BigInt(e):"Fraction"===n?(void 0===o&&Us(),o(e)):M(parseFloat(e),t)},"Fraction, Object":function(e,t){return e},"BigNumber, Object":function(e,t){return e},"number, Object":function(e,t){return M(e,t)},"bigint, Object":function(e,t){return e},"Complex, Object":function(e,t){return 0!==e.im?e:M(e.re,t)},"Matrix, Object":function(e,t){return i(M(e.valueOf()))},"Array, Object":function(e,t){return e.map(M)}});function D(e){return new h("-","unaryMinus",[e])}function F(e,t,r,n){const i=t.shift(),o=t.reduce(((t,i)=>{if(!k(i)){const r=t.pop();if(k(r))return[r,i];try{return t.push(E(e,[r,i],n)),t}catch(e){t.push(r)}}t.push(S(t.pop()));const o=1===t.length?t[0]:r(t);return[r([o,S(i)])]}),[i]);return 1===o.length?o[0]:r([o[0],A(o[1])])}function O(e,t){switch(e.type){case"SymbolNode":return e;case"ConstantNode":switch(typeof e.value){case"number":case"bigint":return T(e.value,t);case"string":return e.value;default:if(!isNaN(e.value))return T(e.value,t)}return e;case"FunctionNode":if(n[e.name]&&n[e.name].rawArgs)return e;if(!["add","multiply"].includes(e.name)){const r=e.args.map((e=>O(e,t)));if(!r.some(k))try{return E(e.name,r,t)}catch(e){}if("size"===e.name&&1===r.length&&C(r[0])){const e=[];let t=r[0];for(;C(t);)e.push(t.items.length),t=t.items[0];return i(e)}return new p(e.name,r.map(S))}case"OperatorNode":{const r=e.fn.toString();let n,i;const o=v(e);if(R(e)&&e.isUnary())n=[O(e.args[0],t)],i=k(n[0])?o(n):E(r,n,t);else if(x(e,t.context))if(n=b(e,t.context),n=n.map((e=>O(e,t))),y(r,t.context)){const e=[],a=[];for(let t=0;t<n.length;t++)k(n[t])?a.push(n[t]):e.push(n[t]);e.length>1?(i=F(r,e,o,t),a.unshift(i),i=F(r,a,o,t)):i=F(r,n,o,t)}else i=F(r,n,o,t);else n=e.args.map((e=>O(e,t))),i=F(r,n,o,t);return i}case"ParenthesisNode":return O(e.content,t);case"AccessorNode":return function(e,t,r){if(!I(t))return new u(S(e),S(t));if(C(e)||f(e)){const n=Array.from(t.dimensions);for(;n.length>0;)if(B(n[0])&&"string"!=typeof n[0].value){const t=T(n.shift().value,r);C(e)?e=e.items[t-1]:(e=e.valueOf()[t-1])instanceof Array&&(e=i(e))}else{if(!(n.length>1&&B(n[1])&&"string"!=typeof n[1].value))break;{const t=T(n[1].value,r),o=[],a=C(e)?e.items:e.valueOf();for(const r of a)if(C(r))o.push(r.items[t-1]);else{if(!f(e))break;o.push(r[t-1])}if(o.length!==a.length)break;e=C(e)?new c(o):i(o),n.splice(1,1)}}return n.length===t.dimensions.length?new u(S(e),t):n.length>0?(t=new m(n),new u(S(e),t)):e}if(q(e)&&1===t.dimensions.length&&B(t.dimensions[0])){const r=t.dimensions[0].value;return r in e.properties?e.properties[r]:new l}return new u(S(e),t)}(O(e.object,t),O(e.index,t),t);case"ArrayNode":{const r=e.items.map((e=>O(e,t)));return r.some(k)?new c(r.map(S)):i(r)}case"IndexNode":return new m(e.dimensions.map((e=>w(e,t))));case"ObjectNode":{const r={};for(const n in e.properties)r[n]=w(e.properties[n],t);return new d(r)}default:throw new Error(`Unimplemented node type in simplifyConstant: ${e.type}`)}}return w})),gh="simplifyCore",yh=Se(gh,["typed","parse","equal","isZero","add","subtract","multiply","divide","pow","AccessorNode","ArrayNode","ConstantNode","FunctionNode","IndexNode","ObjectNode","OperatorNode","ParenthesisNode","SymbolNode"],(e=>{let{typed:t,parse:r,equal:n,isZero:i,add:o,subtract:a,multiply:s,divide:u,pow:c,AccessorNode:l,ArrayNode:f,ConstantNode:p,FunctionNode:m,IndexNode:d,ObjectNode:h,OperatorNode:g,ParenthesisNode:y,SymbolNode:x}=e;const b=new p(0),v=new p(1),w=new p(!0),N=new p(!1);function E(e){return R(e)&&["and","not","or"].includes(e.op)}const{hasProperty:A,isCommutative:S}=mh({FunctionNode:m,OperatorNode:g,SymbolNode:x});function T(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const r=t?t.context:void 0;if(A(e,"trivial",r)){if(z(e)&&1===e.args.length)return T(e.args[0],t);let r=!1,n=0;if(e.forEach((e=>{++n,1===n&&(r=T(e,t))})),1===n)return r}let o=e;if(z(o)){const e=function(e){const t="OperatorNode:"+e;for(const e of hp)if(t in e)return e[t].op;return null}(o.name);if(!e)return new m(T(o.fn),o.args.map((e=>T(e,t))));if(o.args.length>2&&A(o,"associative",r))for(;o.args.length>2;){const t=o.args.pop(),r=o.args.pop();o.args.push(new g(e,o.name,[t,r]))}o=new g(e,o.name,o.args)}if(R(o)&&o.isUnary()){const e=T(o.args[0],t);if("~"===o.op&&R(e)&&e.isUnary()&&"~"===e.op)return e.args[0];if("not"===o.op&&R(e)&&e.isUnary()&&"not"===e.op&&E(e.args[0]))return e.args[0];let r=!0;if("-"===o.op&&R(e)&&(e.isBinary()&&"subtract"===e.fn&&(o=new g("-","subtract",[e.args[1],e.args[0]]),r=!1),e.isUnary()&&"-"===e.op))return e.args[0];if(r)return new g(o.op,o.fn,[e])}if(R(o)&&o.isBinary()){const e=T(o.args[0],t);let a=T(o.args[1],t);if("+"===o.op){if(B(e)&&i(e.value))return a;if(B(a)&&i(a.value))return e;R(a)&&a.isUnary()&&"-"===a.op&&(a=a.args[0],o=new g("-","subtract",[e,a]))}if("-"===o.op)return R(a)&&a.isUnary()&&"-"===a.op?T(new g("+","add",[e,a.args[0]]),t):B(e)&&i(e.value)?T(new g("-","unaryMinus",[a])):B(a)&&i(a.value)?e:new g(o.op,o.fn,[e,a]);if("*"===o.op){if(B(e)){if(i(e.value))return b;if(n(e.value,1))return a}if(B(a)){if(i(a.value))return b;if(n(a.value,1))return e;if(S(o,r))return new g(o.op,o.fn,[a,e],o.implicit)}return new g(o.op,o.fn,[e,a],o.implicit)}if("/"===o.op)return B(e)&&i(e.value)?b:B(a)&&n(a.value,1)?e:new g(o.op,o.fn,[e,a]);if("^"===o.op&&B(a)){if(i(a.value))return v;if(n(a.value,1))return e}if("and"===o.op){if(B(e)){if(!e.value)return N;if(E(a))return a;if(B(a))return a.value?w:N}if(B(a)){if(!a.value)return N;if(E(e))return e}}if("or"===o.op){if(B(e)){if(e.value)return w;if(E(a))return a}if(B(a)){if(a.value)return w;if(E(e))return e}}return new g(o.op,o.fn,[e,a])}if(R(o))return new g(o.op,o.fn,o.args.map((e=>T(e,t))));if(C(o))return new f(o.items.map((e=>T(e,t))));if(M(o))return new l(T(o.object,t),T(o.index,t));if(I(o))return new d(o.dimensions.map((e=>T(e,t))));if(q(o)){const e={};for(const r in o.properties)e[r]=T(o.properties[r],t);return new h(e)}return o}return t(gh,{Node:T,"Node,Object":T})})),xh=Se("resolve",["typed","parse","ConstantNode","FunctionNode","OperatorNode","ParenthesisNode"],(e=>{let{typed:t,parse:r,ConstantNode:n,FunctionNode:i,OperatorNode:o,ParenthesisNode:a}=e;function s(e,t){let u=arguments.length>2&&void 0!==arguments[2]?arguments[2]:new Set;if(!t)return e;if(L(e)){if(u.has(e.name)){const e=Array.from(u).join(", ");throw new ReferenceError(`recursive loop of variable definitions among {${e}}`)}const i=t.get(e.name);if(k(i)){const r=new Set(u);return r.add(e.name),s(i,t,r)}return"number"==typeof i?r(String(i)):void 0!==i?new n(i):e}if(R(e)){const r=e.args.map((function(e){return s(e,t,u)}));return new o(e.op,e.fn,r,e.implicit)}if(P(e))return new a(s(e.content,t,u));if(z(e)){const r=e.args.map((function(e){return s(e,t,u)}));return new i(e.name,r)}return e.map((e=>s(e,t,u)))}return t("resolve",{Node:s,"Node, Map | null | undefined":s,"Node, Object":(e,t)=>s(e,Pe(t)),"Array | Matrix":t.referToSelf((e=>t=>t.map((t=>e(t))))),"Array | Matrix, null | undefined":t.referToSelf((e=>t=>t.map((t=>e(t))))),"Array, Object":t.referTo("Array,Map",(e=>(t,r)=>e(t,Pe(r)))),"Matrix, Object":t.referTo("Matrix,Map",(e=>(t,r)=>e(t,Pe(r)))),"Array | Matrix, Map":t.referToSelf((e=>(t,r)=>t.map((t=>e(t,r)))))})})),bh="symbolicEqual",vh=Se(bh,["parse","simplify","typed","OperatorNode"],(e=>{let{parse:t,simplify:r,typed:n,OperatorNode:i}=e;function o(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};const o=new i("-","subtract",[e,t]),a=r(o,{},n);return B(a)&&!a.value}return n(bh,{"Node, Node":o,"Node, Node, Object":o})})),wh="derivative",Nh=Se(wh,["typed","config","parse","simplify","equal","isZero","numeric","ConstantNode","FunctionNode","OperatorNode","ParenthesisNode","SymbolNode"],(e=>{let{typed:t,config:r,parse:n,simplify:i,equal:o,isZero:a,numeric:s,ConstantNode:u,FunctionNode:c,OperatorNode:l,ParenthesisNode:f,SymbolNode:p}=e;function m(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{simplify:!0};const n={};g(n,e,t.name);const o=y(e,n);return r.simplify?i(o):o}t.addConversion({from:"identifier",to:"SymbolNode",convert:n});const d=t(wh,{"Node, SymbolNode":m,"Node, SymbolNode, Object":m});t.removeConversion({from:"identifier",to:"SymbolNode",convert:n}),d._simplify=!0,d.toTex=function(e){return h.apply(null,e.args)};const h=t("_derivTex",{"Node, SymbolNode":function(e,t){return B(e)&&"string"===H(e.value)?h(n(e.value).toString(),t.toString(),1):h(e.toTex(),t.toString(),1)},"Node, ConstantNode":function(e,t){if("string"===H(t.value))return h(e,n(t.value));throw new Error("The second parameter to 'derivative' is a non-string constant")},"Node, SymbolNode, ConstantNode":function(e,t,r){return h(e.toString(),t.name,r.value)},"string, string, number":function(e,t,r){let n;return n=1===r?"{d\\over d"+t+"}":"{d^{"+r+"}\\over d"+t+"^{"+r+"}}",n+`\\left[${e}\\right]`}}),g=t("constTag",{"Object, ConstantNode, string":function(e,t){return e[t]=!0,!0},"Object, SymbolNode, string":function(e,t,r){return t.name!==r&&(e[t]=!0,!0)},"Object, ParenthesisNode, string":function(e,t,r){return g(e,t.content,r)},"Object, FunctionAssignmentNode, string":function(e,t,r){return t.params.includes(r)?g(e,t.expr,r):(e[t]=!0,!0)},"Object, FunctionNode | OperatorNode, string":function(e,t,r){if(t.args.length>0){let n=g(e,t.args[0],r);for(let i=1;i<t.args.length;++i)n=g(e,t.args[i],r)&&n;if(n)return e[t]=!0,!0}return!1}}),y=t("_derivative",{"ConstantNode, Object":function(e){return x(0)},"SymbolNode, Object":function(e,t){return void 0!==t[e]?x(0):x(1)},"ParenthesisNode, Object":function(e,t){return new f(y(e.content,t))},"FunctionAssignmentNode, Object":function(e,t){return void 0!==t[e]?x(0):y(e.expr,t)},"FunctionNode, Object":function(e,t){if(void 0!==t[e])return x(0);const r=e.args[0];let n,i,o,a,s=!1,u=!1;switch(e.name){case"cbrt":s=!0,i=new l("*","multiply",[x(3),new l("^","pow",[r,new l("/","divide",[x(2),x(3)])])]);break;case"sqrt":case"nthRoot":if(1===e.args.length)s=!0,i=new l("*","multiply",[x(2),new c("sqrt",[r])]);else if(2===e.args.length)return n=new l("/","divide",[x(1),e.args[1]]),t[n]=t[e.args[1]],y(new l("^","pow",[r,n]),t);break;case"log10":n=x(10);case"log":if(n||1!==e.args.length){if(1===e.args.length&&n||2===e.args.length&&void 0!==t[e.args[1]])i=new l("*","multiply",[r.clone(),new c("log",[n||e.args[1]])]),s=!0;else if(2===e.args.length)return y(new l("/","divide",[new c("log",[r]),new c("log",[e.args[1]])]),t)}else i=r.clone(),s=!0;break;case"pow":if(2===e.args.length)return t[n]=t[e.args[1]],y(new l("^","pow",[r,e.args[1]]),t);break;case"exp":i=new c("exp",[r.clone()]);break;case"sin":i=new c("cos",[r.clone()]);break;case"cos":i=new l("-","unaryMinus",[new c("sin",[r.clone()])]);break;case"tan":i=new l("^","pow",[new c("sec",[r.clone()]),x(2)]);break;case"sec":i=new l("*","multiply",[e,new c("tan",[r.clone()])]);break;case"csc":u=!0,i=new l("*","multiply",[e,new c("cot",[r.clone()])]);break;case"cot":u=!0,i=new l("^","pow",[new c("csc",[r.clone()]),x(2)]);break;case"asin":s=!0,i=new c("sqrt",[new l("-","subtract",[x(1),new l("^","pow",[r.clone(),x(2)])])]);break;case"acos":s=!0,u=!0,i=new c("sqrt",[new l("-","subtract",[x(1),new l("^","pow",[r.clone(),x(2)])])]);break;case"atan":s=!0,i=new l("+","add",[new l("^","pow",[r.clone(),x(2)]),x(1)]);break;case"asec":s=!0,i=new l("*","multiply",[new c("abs",[r.clone()]),new c("sqrt",[new l("-","subtract",[new l("^","pow",[r.clone(),x(2)]),x(1)])])]);break;case"acsc":s=!0,u=!0,i=new l("*","multiply",[new c("abs",[r.clone()]),new c("sqrt",[new l("-","subtract",[new l("^","pow",[r.clone(),x(2)]),x(1)])])]);break;case"acot":s=!0,u=!0,i=new l("+","add",[new l("^","pow",[r.clone(),x(2)]),x(1)]);break;case"sinh":i=new c("cosh",[r.clone()]);break;case"cosh":i=new c("sinh",[r.clone()]);break;case"tanh":i=new l("^","pow",[new c("sech",[r.clone()]),x(2)]);break;case"sech":u=!0,i=new l("*","multiply",[e,new c("tanh",[r.clone()])]);break;case"csch":u=!0,i=new l("*","multiply",[e,new c("coth",[r.clone()])]);break;case"coth":u=!0,i=new l("^","pow",[new c("csch",[r.clone()]),x(2)]);break;case"asinh":s=!0,i=new c("sqrt",[new l("+","add",[new l("^","pow",[r.clone(),x(2)]),x(1)])]);break;case"acosh":s=!0,i=new c("sqrt",[new l("-","subtract",[new l("^","pow",[r.clone(),x(2)]),x(1)])]);break;case"atanh":s=!0,i=new l("-","subtract",[x(1),new l("^","pow",[r.clone(),x(2)])]);break;case"asech":s=!0,u=!0,i=new l("*","multiply",[r.clone(),new c("sqrt",[new l("-","subtract",[x(1),new l("^","pow",[r.clone(),x(2)])])])]);break;case"acsch":s=!0,u=!0,i=new l("*","multiply",[new c("abs",[r.clone()]),new c("sqrt",[new l("+","add",[new l("^","pow",[r.clone(),x(2)]),x(1)])])]);break;case"acoth":s=!0,u=!0,i=new l("-","subtract",[x(1),new l("^","pow",[r.clone(),x(2)])]);break;case"abs":i=new l("/","divide",[new c(new p("abs"),[r.clone()]),r.clone()]);break;default:throw new Error('Cannot process function "'+e.name+'" in derivative: the function is not supported, undefined, or the number of arguments passed to it are not supported')}s?(o="/",a="divide"):(o="*",a="multiply");let f=y(r,t);return u&&(f=new l("-","unaryMinus",[f])),new l(o,a,[f,i])},"OperatorNode, Object":function(e,t){if(void 0!==t[e])return x(0);if("+"===e.op)return new l(e.op,e.fn,e.args.map((function(e){return y(e,t)})));if("-"===e.op){if(e.isUnary())return new l(e.op,e.fn,[y(e.args[0],t)]);if(e.isBinary())return new l(e.op,e.fn,[y(e.args[0],t),y(e.args[1],t)])}if("*"===e.op){const r=e.args.filter((function(e){return void 0!==t[e]}));if(r.length>0){const n=e.args.filter((function(e){return void 0===t[e]})),i=1===n.length?n[0]:new l("*","multiply",n),o=r.concat(y(i,t));return new l("*","multiply",o)}return new l("+","add",e.args.map((function(r){return new l("*","multiply",e.args.map((function(e){return e===r?y(e,t):e.clone()})))})))}if("/"===e.op&&e.isBinary()){const r=e.args[0],n=e.args[1];return void 0!==t[n]?new l("/","divide",[y(r,t),n]):void 0!==t[r]?new l("*","multiply",[new l("-","unaryMinus",[r]),new l("/","divide",[y(n,t),new l("^","pow",[n.clone(),x(2)])])]):new l("/","divide",[new l("-","subtract",[new l("*","multiply",[y(r,t),n.clone()]),new l("*","multiply",[r.clone(),y(n,t)])]),new l("^","pow",[n.clone(),x(2)])])}if("^"===e.op&&e.isBinary()){const r=e.args[0],n=e.args[1];if(void 0!==t[r])return B(r)&&(a(r.value)||o(r.value,1))?x(0):new l("*","multiply",[e,new l("*","multiply",[new c("log",[r.clone()]),y(n.clone(),t)])]);if(void 0!==t[n]){if(B(n)){if(a(n.value))return x(0);if(o(n.value,1))return y(r,t)}const e=new l("^","pow",[r.clone(),new l("-","subtract",[n,x(1)])]);return new l("*","multiply",[n.clone(),new l("*","multiply",[y(r,t),e])])}return new l("*","multiply",[new l("^","pow",[r.clone(),n.clone()]),new l("+","add",[new l("*","multiply",[y(r,t),new l("/","divide",[n.clone(),r.clone()])]),new l("*","multiply",[y(n,t),new c("log",[r.clone()])])])])}throw new Error('Cannot process operator "'+e.op+'" in derivative: the operator is not supported, undefined, or the number of arguments passed to it are not supported')}});function x(e,t){return new u(s(e,t||V(String(e),r)))}return d})),Eh="rationalize",Ah=Se(Eh,["config","typed","equal","isZero","add","subtract","multiply","divide","pow","parse","simplifyConstant","simplifyCore","simplify","?bignumber","?fraction","mathWithTransform","matrix","AccessorNode","ArrayNode","ConstantNode","FunctionNode","IndexNode","ObjectNode","OperatorNode","SymbolNode","ParenthesisNode"],(e=>{let{config:t,typed:r,equal:n,isZero:i,add:o,subtract:a,multiply:s,divide:u,pow:c,parse:l,simplifyConstant:f,simplifyCore:p,simplify:m,fraction:d,bignumber:h,mathWithTransform:g,matrix:y,AccessorNode:x,ArrayNode:b,ConstantNode:v,FunctionNode:w,IndexNode:N,ObjectNode:E,OperatorNode:A,SymbolNode:S,ParenthesisNode:M}=e;function C(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];const n=function(){const e=[p,{l:"n+n",r:"2*n"},{l:"n+-n",r:"0"},f,{l:"n*(n1^-1)",r:"n/n1"},{l:"n*n1^-n2",r:"n/n1^n2"},{l:"n1^-1",r:"1/n1"},{l:"n*(n1/n2)",r:"(n*n1)/n2"},{l:"1*n",r:"n"}],t=[{l:"(-n1)/(-n2)",r:"n1/n2"},{l:"(-n1)*(-n2)",r:"n1*n2"},{l:"n1--n2",r:"n1+n2"},{l:"n1-n2",r:"n1+(-n2)"},{l:"(n1+n2)*n3",r:"(n1*n3 + n2*n3)"},{l:"n1*(n2+n3)",r:"(n1*n2+n1*n3)"},{l:"c1*n + c2*n",r:"(c1+c2)*n"},{l:"c1*n + n",r:"(c1+1)*n"},{l:"c1*n - c2*n",r:"(c1-c2)*n"},{l:"c1*n - n",r:"(c1-1)*n"},{l:"v/c",r:"(1/c)*v"},{l:"v/-c",r:"-(1/c)*v"},{l:"-v*-c",r:"c*v"},{l:"-v*c",r:"-c*v"},{l:"v*-c",r:"-c*v"},{l:"v*c",r:"c*v"},{l:"-(-n1*n2)",r:"(n1*n2)"},{l:"-(n1*n2)",r:"(-n1*n2)"},{l:"-(-n1+n2)",r:"(n1-n2)"},{l:"-(n1+n2)",r:"(-n1-n2)"},{l:"(n1^n2)^n3",r:"(n1^(n2*n3))"},{l:"-(-n1/n2)",r:"(n1/n2)"},{l:"-(n1/n2)",r:"(-n1/n2)"}],r=[{l:"(n1/(n2/n3))",r:"((n1*n3)/n2)"},{l:"(n1/n2/n3)",r:"(n1/(n2*n3))"}],n={};return n.firstRules=e.concat(t,r),n.distrDivRules=[{l:"(n1/n2 + n3/n4)",r:"((n1*n4 + n3*n2)/(n2*n4))"},{l:"(n1/n2 + n3)",r:"((n1 + n3*n2)/n2)"},{l:"(n1 + n2/n3)",r:"((n1*n3 + n2)/n3)"}],n.sucDivRules=r,n.firstRulesAgain=e.concat(t),n.finalRules=[p,{l:"n*-n",r:"-n^2"},{l:"n*n",r:"n^2"},f,{l:"n*-n^n1",r:"-n^(n1+1)"},{l:"n*n^n1",r:"n^(n1+1)"},{l:"n^n1*-n^n2",r:"-n^(n1+n2)"},{l:"n^n1*n^n2",r:"n^(n1+n2)"},{l:"n^n1*-n",r:"-n^(n1+1)"},{l:"n^n1*n",r:"n^(n1+1)"},{l:"n^n1/-n",r:"-n^(n1-1)"},{l:"n^n1/n",r:"n^(n1-1)"},{l:"n/-n^n1",r:"-n^(1-n1)"},{l:"n/n^n1",r:"n^(1-n1)"},{l:"n^n1/-n^n2",r:"n^(n1-n2)"},{l:"n^n1/n^n2",r:"n^(n1-n2)"},{l:"n1+(-n2*n3)",r:"n1-n2*n3"},{l:"v*(-c)",r:"-c*v"},{l:"n1+-n2",r:"n1-n2"},{l:"v*c",r:"c*v"},{l:"(n1^n2)^n3",r:"(n1^(n2*n3))"}],n}(),i=function(e,t,r,n){const i=[],o=m(e,n,t,{exactFractions:!1}),a="+-*"+((r=!!r)?"/":"");!function e(t){const r=t.type;if("FunctionNode"===r)throw new Error("There is an unsolved function call");if("OperatorNode"===r)if("^"===t.op){if("ConstantNode"!==t.args[1].type||!Z(parseFloat(t.args[1].value)))throw new Error("There is a non-integer exponent");e(t.args[0])}else{if(!a.includes(t.op))throw new Error("Operator "+t.op+" invalid in polynomial expression");for(let r=0;r<t.args.length;r++)e(t.args[r])}else if("SymbolNode"===r){const e=t.name;-1===i.indexOf(e)&&i.push(e)}else if("ParenthesisNode"===r)e(t.content);else if("ConstantNode"!==r)throw new Error("type "+r+" is not allowed in polynomial expression")}(o);const s={};return s.expression=o,s.variables=i,s}(e,t,!0,n.firstRules),o=i.variables.length,a={exactFractions:!1},s={exactFractions:!0};if(e=i.expression,o>=1){let t,r;e=T(e);let i,o=!0,u=!1;for(e=m(e,n.firstRules,{},a);r=o?n.distrDivRules:n.sucDivRules,o=!o,i=(e=m(e,r,{},s)).toString(),i!==t;)u=!0,t=i;u&&(e=m(e,n.firstRulesAgain,{},a)),e=m(e,n.finalRules,{},a)}const u=[],c={};return"OperatorNode"===e.type&&e.isBinary()&&"/"===e.op?(1===o&&(e.args[0]=D(e.args[0],u),e.args[1]=D(e.args[1])),r&&(c.numerator=e.args[0],c.denominator=e.args[1])):(1===o&&(e=D(e,u)),r&&(c.numerator=e,c.denominator=null)),r?(c.coefficients=u,c.variables=i.variables,c.expression=e,c):e}return r(Eh,{Node:C,"Node, boolean":(e,t)=>C(e,{},t),"Node, Object":C,"Node, Object, boolean":C});function T(e,t,r){const n=e.type,i=arguments.length>1;if("OperatorNode"===n&&e.isBinary()){let n,o=!1;if("^"===e.op&&("ParenthesisNode"!==e.args[0].type&&"OperatorNode"!==e.args[0].type||"ConstantNode"!==e.args[1].type||(n=parseFloat(e.args[1].value),o=n>=2&&Z(n))),o){if(n>2){const t=e.args[0],r=new A("^","pow",[e.args[0].cloneDeep(),new v(n-1)]);e=new A("*","multiply",[t,r])}else e=new A("*","multiply",[e.args[0],e.args[0].cloneDeep()]);i&&("content"===r?t.content=e:t.args[r]=e)}}if("ParenthesisNode"===n)T(e.content,e,"content");else if("ConstantNode"!==n&&"SymbolNode"!==n)for(let t=0;t<e.args.length;t++)T(e.args[t],e,t);if(!i)return e}function D(e,t){void 0===t&&(t=[]),t[0]=0;let r=0,n="";!function e(i,o,a){const s=i.type;if("FunctionNode"===s)throw new Error("There is an unsolved function call");if("OperatorNode"===s){if(!"+-*^".includes(i.op))throw new Error("Operator "+i.op+" invalid");if(null!==o){if(("unaryMinus"===i.fn||"pow"===i.fn)&&"add"!==o.fn&&"subtract"!==o.fn&&"multiply"!==o.fn)throw new Error("Invalid "+i.op+" placing");if(("subtract"===i.fn||"add"===i.fn||"multiply"===i.fn)&&"add"!==o.fn&&"subtract"!==o.fn)throw new Error("Invalid "+i.op+" placing");if(("subtract"===i.fn||"add"===i.fn||"unaryMinus"===i.fn)&&0!==a.noFil)throw new Error("Invalid "+i.op+" placing")}"^"!==i.op&&"*"!==i.op||(a.fire=i.op);for(let t=0;t<i.args.length;t++)"unaryMinus"===i.fn&&(a.oper="-"),"+"!==i.op&&"subtract"!==i.fn||(a.fire="",a.cte=1,a.oper=0===t?"+":i.op),a.noFil=t,e(i.args[t],i,a)}else if("SymbolNode"===s){if(i.name!==n&&""!==n)throw new Error("There is more than one variable");if(n=i.name,null===o)return void(t[1]=1);if("^"===o.op&&0!==a.noFil)throw new Error("In power the variable should be the first parameter");if("*"===o.op&&1!==a.noFil)throw new Error("In multiply the variable should be the second parameter");""!==a.fire&&"*"!==a.fire||(r<1&&(t[1]=0),t[1]+=a.cte*("+"===a.oper?1:-1),r=Math.max(1,r))}else{if("ConstantNode"!==s)throw new Error("Type "+s+" is not allowed");{const e=parseFloat(i.value);if(null===o)return void(t[0]=e);if("^"===o.op){if(1!==a.noFil)throw new Error("Constant cannot be powered");if(!Z(e)||e<=0)throw new Error("Non-integer exponent is not allowed");for(let n=r+1;n<e;n++)t[n]=0;return e>r&&(t[e]=0),t[e]+=a.cte*("+"===a.oper?1:-1),void(r=Math.max(e,r))}a.cte=e,""===a.fire&&(t[0]+=a.cte*("+"===a.oper?1:-1))}}}(e,null,{cte:1,oper:"+",fire:""}),r=t.length-1;let i,o=!0;for(let e=r;e>=0;e--){if(0===t[e])continue;let r=new v(o?t[e]:Math.abs(t[e]));const a=t[e]<0?"-":"+";if(e>0){let i=new S(n);if(e>1){const t=new v(e);i=new A("^","pow",[i,t])}r=-1===t[e]&&o?new A("-","unaryMinus",[i]):1===Math.abs(t[e])?i:new A("*","multiply",[r,i])}i=o?r:"+"===a?new A("+","add",[i,r]):new A("-","subtract",[i,r]),o=!1}return o?new v(0):i}})),Sh="zpk2tf",Mh=Se(Sh,["typed","add","multiply","Complex","number"],(e=>{let{typed:t,add:r,multiply:n,Complex:i,number:o}=e;return t(Sh,{"Array,Array,number":function(e,t,r){return a(e,t,r)},"Array,Array":function(e,t){return a(e,t,1)},"Matrix,Matrix,number":function(e,t,r){return a(e.valueOf(),t.valueOf(),r)},"Matrix,Matrix":function(e,t){return a(e.valueOf(),t.valueOf(),1)}});function a(e,t,r){e.some((e=>"BigNumber"===e.type))&&(e=e.map((e=>o(e)))),t.some((e=>"BigNumber"===e.type))&&(t=t.map((e=>o(e))));let a=[i(1,0)],u=[i(1,0)];for(let t=0;t<e.length;t++){let r=e[t];"number"==typeof r&&(r=i(r,0)),a=s(a,[i(1,0),i(-r.re,-r.im)])}for(let e=0;e<t.length;e++){let r=t[e];"number"==typeof r&&(r=i(r,0)),u=s(u,[i(1,0),i(-r.re,-r.im)])}for(let e=0;e<a.length;e++)a[e]=n(a[e],r);return[a,u]}function s(e,t){const o=[];for(let a=0;a<e.length+t.length-1;a++){o[a]=i(0,0);for(let i=0;i<e.length;i++)a-i>=0&&a-i<t.length&&(o[a]=r(o[a],n(e[i],t[a-i])))}return o}})),Ch="freqz",Th=Se(Ch,["typed","add","multiply","Complex","divide","matrix"],(e=>{let{typed:t,add:r,multiply:n,Complex:i,divide:o,matrix:a}=e;return t(Ch,{"Array, Array":function(e,t){return s(e,t,u(512))},"Array, Array, Array":function(e,t,r){return s(e,t,r)},"Array, Array, number":function(e,t,r){if(r<0)throw new Error("w must be a positive number");return s(e,t,u(r))},"Matrix, Matrix":function(e,t){const r=u(512),{w:n,h:i}=s(e.valueOf(),t.valueOf(),r);return{w:a(n),h:a(i)}},"Matrix, Matrix, Matrix":function(e,t,r){const{h:n}=s(e.valueOf(),t.valueOf(),r.valueOf());return{h:a(n),w:a(r)}},"Matrix, Matrix, number":function(e,t,r){if(r<0)throw new Error("w must be a positive number");const n=u(r),{h:i}=s(e.valueOf(),t.valueOf(),n);return{h:a(i),w:a(n)}}});function s(e,t,a){const s=[],u=[];for(let o=0;o<a.length;o++){let c=i(0,0),l=i(0,0);for(let t=0;t<e.length;t++)c=r(c,n(e[t],i(Math.cos(-t*a[o]),Math.sin(-t*a[o]))));for(let e=0;e<t.length;e++)l=r(l,n(t[e],i(Math.cos(-e*a[o]),Math.sin(-e*a[o]))));s.push(c),u.push(l)}const c=[];for(let e=0;e<s.length;e++)c.push(o(s[e],u[e]));return{h:c,w:a}}function u(e){const t=[];for(let r=0;r<e;r++)t.push(r/e*Math.PI);return t}})),Dh=Se("reviver",["classes"],(e=>{let{classes:t}=e;return function(e,r){const n=t[r&&r.mathjs];return n&&"function"==typeof n.fromJSON?n.fromJSON(r):r}})),Fh=Se("replacer",[],(()=>function(e,t){return"number"!=typeof t||isFinite(t)&&!isNaN(t)?"bigint"==typeof t?{mathjs:"bigint",value:String(t)}:t:{mathjs:"number",value:String(t)}})),Bh=Math.PI,Oh=2*Math.PI,_h=Math.E,zh=Se("true",[],(()=>!0)),Ih=Se("false",[],(()=>!1)),kh=Se("null",[],(()=>null)),qh=Kh("Infinity",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(1/0):1/0})),Rh=Kh("NaN",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(NaN):NaN})),Ph=Kh("pi",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?dl(r):Bh})),jh=Kh("tau",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?hl(r):Oh})),Uh=Kh("e",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?pl(r):_h})),Lh=Kh("phi",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?ml(r):1.618033988749895})),$h=Kh("LN2",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(2).ln():Math.LN2})),Hh=Kh("LN10",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(10).ln():Math.LN10})),Gh=Kh("LOG2E",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(1).div(new r(2).ln()):Math.LOG2E})),Zh=Kh("LOG10E",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(1).div(new r(10).ln()):Math.LOG10E})),Vh=Kh("SQRT1_2",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r("0.5").sqrt():Math.SQRT1_2})),Wh=Kh("SQRT2",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(2).sqrt():Math.SQRT2})),Yh=Kh("i",["Complex"],(e=>{let{Complex:t}=e;return t.I})),Jh=Se("PI",["pi"],(e=>{let{pi:t}=e;return t})),Xh=Se("E",["e"],(e=>{let{e:t}=e;return t})),Qh=Se("version",[],(()=>"13.0.3"));function Kh(e,t,r){return Se(e,t,r,{recreateOnConfigChange:!0})}const eg=Jg("speedOfLight","299792458","m s^-1"),tg=Jg("gravitationConstant","6.67430e-11","m^3 kg^-1 s^-2"),rg=Jg("planckConstant","6.62607015e-34","J s"),ng=Jg("reducedPlanckConstant","1.0545718176461565e-34","J s"),ig=Jg("magneticConstant","1.25663706212e-6","N A^-2"),og=Jg("electricConstant","8.8541878128e-12","F m^-1"),ag=Jg("vacuumImpedance","376.730313667","ohm"),sg=Jg("coulomb","8.987551792261171e9","N m^2 C^-2"),ug=Jg("elementaryCharge","1.602176634e-19","C"),cg=Jg("bohrMagneton","9.2740100783e-24","J T^-1"),lg=Jg("conductanceQuantum","7.748091729863649e-5","S"),fg=Jg("inverseConductanceQuantum","12906.403729652257","ohm"),pg=Jg("magneticFluxQuantum","2.0678338484619295e-15","Wb"),mg=Jg("nuclearMagneton","5.0507837461e-27","J T^-1"),dg=Jg("klitzing","25812.807459304513","ohm"),hg=Jg("bohrRadius","5.29177210903e-11","m"),gg=Jg("classicalElectronRadius","2.8179403262e-15","m"),yg=Jg("electronMass","9.1093837015e-31","kg"),xg=Jg("fermiCoupling","1.1663787e-5","GeV^-2"),bg=Xg("fineStructure",.0072973525693),vg=Jg("hartreeEnergy","4.3597447222071e-18","J"),wg=Jg("protonMass","1.67262192369e-27","kg"),Ng=Jg("deuteronMass","3.3435830926e-27","kg"),Eg=Jg("neutronMass","1.6749271613e-27","kg"),Ag=Jg("quantumOfCirculation","3.6369475516e-4","m^2 s^-1"),Sg=Jg("rydberg","10973731.568160","m^-1"),Mg=Jg("thomsonCrossSection","6.6524587321e-29","m^2"),Cg=Xg("weakMixingAngle",.2229),Tg=Xg("efimovFactor",22.7),Dg=Jg("atomicMass","1.66053906660e-27","kg"),Fg=Jg("avogadro","6.02214076e23","mol^-1"),Bg=Jg("boltzmann","1.380649e-23","J K^-1"),Og=Jg("faraday","96485.33212331001","C mol^-1"),_g=Jg("firstRadiation","3.7417718521927573e-16","W m^2"),zg=Jg("loschmidt","2.686780111798444e25","m^-3"),Ig=Jg("gasConstant","8.31446261815324","J K^-1 mol^-1"),kg=Jg("molarPlanckConstant","3.990312712893431e-10","J s mol^-1"),qg=Jg("molarVolume","0.022413969545014137","m^3 mol^-1"),Rg=Xg("sackurTetrode",-1.16487052358),Pg=Jg("secondRadiation","0.014387768775039337","m K"),jg=Jg("stefanBoltzmann","5.67037441918443e-8","W m^-2 K^-4"),Ug=Jg("wienDisplacement","2.897771955e-3","m K"),Lg=Jg("molarMass","0.99999999965e-3","kg mol^-1"),$g=Jg("molarMassC12","11.9999999958e-3","kg mol^-1"),Hg=Jg("gravity","9.80665","m s^-2"),Gg=Jg("planckLength","1.616255e-35","m"),Zg=Jg("planckMass","2.176435e-8","kg"),Vg=Jg("planckTime","5.391245e-44","s"),Wg=Jg("planckCharge","1.87554603778e-18","C"),Yg=Jg("planckTemperature","1.416785e+32","K");function Jg(e,t,r){return Se(e,["config","Unit","BigNumber"],(e=>{let{config:n,Unit:i,BigNumber:o}=e;const a=new i("BigNumber"===n.number?new o(t):parseFloat(t),r);return a.fixPrefix=!0,a}))}function Xg(e,t){return Se(e,["config","BigNumber"],(e=>{let{config:r,BigNumber:n}=e;return"BigNumber"===r.number?new n(t):t}))}const Qg=Se("apply",["typed","isInteger"],(e=>{let{typed:r,isInteger:n}=e;const o=po({typed:r,isInteger:n});return r("apply",{"...any":function(e){const r=e[1];t(r)?e[1]=r-1:i(r)&&(e[1]=r.minus(1));try{return o.apply(null,e)}catch(e){throw cp(e)}}})}),{isTransformFunction:!0}),Kg=Se("column",["typed","Index","matrix","range"],(e=>{let{typed:r,Index:n,matrix:i,range:o}=e;const a=ds({typed:r,Index:n,matrix:i,range:o});return r("column",{"...any":function(e){const r=e.length-1,n=e[r];t(n)&&(e[r]=n-1);try{return a.apply(null,e)}catch(e){throw cp(e)}}})}),{isTransformFunction:!0});function ey(e,t,r){const n=e.filter((function(e){return L(e)&&!(e.name in t)&&!r.has(e.name)}))[0];if(!n)throw new Error('No undefined variable found in inline expression "'+e+'"');const i=n.name,o=new Map,a=new ke(r,o,new Set([i])),s=e.compile();return function(e){return o.set(i,e),s.evaluate(a)}}const ty=Se("filter",["typed"],(e=>{let{typed:t}=e;function r(e,t,r){let i,o;return e[0]&&(i=e[0].compile().evaluate(r)),e[1]&&(o=L(e[1])||_(e[1])?e[1].compile().evaluate(r):ey(e[1],t,r)),n(i,o)}r.rawArgs=!0;const n=t("filter",{"Array, function":ry,"Matrix, function":function(e,t){return e.create(ry(e.toArray(),t))},"Array, RegExp":Mn,"Matrix, RegExp":function(e,t){return e.create(Mn(e.toArray(),t))}});return r}),{isTransformFunction:!0});function ry(e,t){return Sn(e,(function(e,r,n){return ws(t,e,[r+1],n,"filter")}))}const ny=Se("forEach",["typed"],(e=>{let{typed:t}=e;function r(e,t,r){let i,o;return e[0]&&(i=e[0].compile().evaluate(r)),e[1]&&(o=L(e[1])||_(e[1])?e[1].compile().evaluate(r):ey(e[1],t,r)),n(i,o)}r.rawArgs=!0;const n=t("forEach",{"Array | Matrix, function":function(e,t){const r=function(n,i){if(!Array.isArray(n))return ws(t,n,i,e,"forEach");An(n,(function(e,t){r(e,i.concat(t+1))}))};r(e.valueOf(),[])}});return r}),{isTransformFunction:!0}),iy=Se("index",["Index","getMatrixDataType"],(e=>{let{Index:r,getMatrixDataType:n}=e;return function(){const e=[];for(let r=0,o=arguments.length;r<o;r++){let o=arguments[r];if(h(o))o.start--,o.end-=o.step>0?0:2;else if(o&&!0===o.isSet)o=o.map((function(e){return e-1}));else if(l(o)||f(o))"boolean"!==n(o)&&(o=o.map((function(e){return e-1})));else if(t(o))o--;else if(i(o))o=o.toNumber()-1;else if("string"!=typeof o)throw new TypeError("Dimension must be an Array, Matrix, number, string, or Range");e[r]=o}const o=new r;return r.apply(o,e),o}}),{isTransformFunction:!0}),oy=Se("map",["typed"],(e=>{let{typed:t}=e;function r(e,t,r){let i,o;return e[0]&&(i=e[0].compile().evaluate(r)),e[1]&&(o=L(e[1])||_(e[1])?e[1].compile().evaluate(r):ey(e[1],t,r)),n(i,o)}r.rawArgs=!0;const n=t("map",{"Array, function":function(e,t){return ay(e,t,e)},"Matrix, function":function(e,t){return e.create(ay(e.valueOf(),t,e))}});return r}),{isTransformFunction:!0});function ay(e,t,r){return function e(n,i){return Array.isArray(n)?En(n,(function(t,r){return e(t,i.concat(r+1))})):ws(t,n,i,r,"map")}(e,[])}function sy(e){if(2===e.length&&p(e[0])){const r=(e=e.slice())[1];t(r)?e[1]=r-1:i(r)&&(e[1]=r.minus(1))}return e}const uy=Se("max",["typed","config","numeric","larger"],(e=>{let{typed:t,config:r,numeric:n,larger:i}=e;const o=ol({typed:t,config:r,numeric:n,larger:i});return t("max",{"...any":function(e){e=sy(e);try{return o.apply(null,e)}catch(e){throw cp(e)}}})}),{isTransformFunction:!0}),cy=Se("mean",["typed","add","divide"],(e=>{let{typed:t,add:r,divide:n}=e;const i=ad({typed:t,add:r,divide:n});return t("mean",{"...any":function(e){e=sy(e);try{return i.apply(null,e)}catch(e){throw cp(e)}}})}),{isTransformFunction:!0}),ly=Se("min",["typed","config","numeric","smaller"],(e=>{let{typed:t,config:r,numeric:n,smaller:i}=e;const o=al({typed:t,config:r,numeric:n,smaller:i});return t("min",{"...any":function(e){e=sy(e);try{return o.apply(null,e)}catch(e){throw cp(e)}}})}),{isTransformFunction:!0}),fy=Se("range",["typed","config","?matrix","?bignumber","smaller","smallerEq","larger","largerEq","add","isPositive"],(e=>{let{typed:t,config:r,matrix:n,bignumber:i,smaller:o,smallerEq:a,larger:s,largerEq:u,add:c,isPositive:l}=e;const f=Hs({typed:t,config:r,matrix:n,bignumber:i,smaller:o,smallerEq:a,larger:s,largerEq:u,add:c,isPositive:l});return t("range",{"...any":function(e){return"boolean"!=typeof e[e.length-1]&&e.push(!0),f.apply(null,e)}})}),{isTransformFunction:!0}),py=Se("row",["typed","Index","matrix","range"],(e=>{let{typed:r,Index:n,matrix:i,range:o}=e;const a=Qs({typed:r,Index:n,matrix:i,range:o});return r("row",{"...any":function(e){const r=e.length-1,n=e[r];t(n)&&(e[r]=n-1);try{return a.apply(null,e)}catch(e){throw cp(e)}}})}),{isTransformFunction:!0}),my=Se("subset",["typed","matrix","zeros","add"],(e=>{let{typed:t,matrix:r,zeros:n,add:i}=e;const o=iu({typed:t,matrix:r,zeros:n,add:i});return t("subset",{"...any":function(e){try{return o.apply(null,e)}catch(e){throw cp(e)}}})}),{isTransformFunction:!0}),dy=Se("concat",["typed","matrix","isInteger"],(e=>{let{typed:r,matrix:n,isInteger:o}=e;const a=ps({typed:r,matrix:n,isInteger:o});return r("concat",{"...any":function(e){const r=e.length-1,n=e[r];t(n)?e[r]=n-1:i(n)&&(e[r]=n.minus(1));try{return a.apply(null,e)}catch(e){throw cp(e)}}})}),{isTransformFunction:!0}),hy="diff",gy=Se(hy,["typed","matrix","subtract","number","bignumber"],(e=>{let{typed:t,matrix:r,subtract:n,number:i,bignumber:o}=e;const a=Rs({typed:t,matrix:r,subtract:n,number:i,bignumber:o});return t(hy,{"...any":function(e){e=sy(e);try{return a.apply(null,e)}catch(e){throw cp(e)}}})}),{isTransformFunction:!0}),yy=Se("std",["typed","map","sqrt","variance"],(e=>{let{typed:t,map:r,sqrt:n,variance:i}=e;const o=hd({typed:t,map:r,sqrt:n,variance:i});return t("std",{"...any":function(e){e=sy(e);try{return o.apply(null,e)}catch(e){throw cp(e)}}})}),{isTransformFunction:!0}),xy=Se("sum",["typed","config","add","numeric"],(e=>{let{typed:t,config:r,add:n,numeric:i}=e;const o=rd({typed:t,config:r,add:n,numeric:i});return t("sum",{"...any":function(e){e=sy(e);try{return o.apply(null,e)}catch(e){throw cp(e)}}})}),{isTransformFunction:!0}),by=Se("quantileSeq",["typed","bignumber","add","subtract","divide","multiply","partitionSelect","compare","isInteger","smaller","smallerEq","larger"],(e=>{let{typed:t,bignumber:r,add:n,subtract:i,divide:o,multiply:a,partitionSelect:s,compare:u,isInteger:c,smaller:l,smallerEq:f,larger:p}=e;const m=dd({typed:t,bignumber:r,add:n,subtract:i,divide:o,multiply:a,partitionSelect:s,compare:u,isInteger:c,smaller:l,smallerEq:f,larger:p});return t("quantileSeq",{"Array | Matrix, number | BigNumber":m,"Array | Matrix, number | BigNumber, number":(e,t,r)=>m(e,t,d(r)),"Array | Matrix, number | BigNumber, boolean":m,"Array | Matrix, number | BigNumber, boolean, number":(e,t,r,n)=>m(e,t,r,d(n)),"Array | Matrix, Array | Matrix":m,"Array | Matrix, Array | Matrix, number":(e,t,r)=>m(e,t,d(r)),"Array | Matrix, Array | Matrix, boolean":m,"Array | Matrix, Array | Matrix, boolean, number":(e,t,r,n)=>m(e,t,r,d(n))});function d(e){return sy([[],e])[1]}}),{isTransformFunction:!0}),vy="cumsum",wy=Se(vy,["typed","add","unaryPlus"],(e=>{let{typed:r,add:n,unaryPlus:o}=e;const a=id({typed:r,add:n,unaryPlus:o});return r(vy,{"...any":function(e){if(2===e.length&&p(e[0])){const r=e[1];t(r)?e[1]=r-1:i(r)&&(e[1]=r.minus(1))}try{return a.apply(null,e)}catch(e){throw cp(e)}}})}),{isTransformFunction:!0}),Ny="variance",Ey=Se(Ny,["typed","add","subtract","multiply","divide","apply","isNaN"],(e=>{let{typed:t,add:r,subtract:n,multiply:i,divide:o,apply:a,isNaN:s}=e;const u=pd({typed:t,add:r,subtract:n,multiply:i,divide:o,apply:a,isNaN:s});return t(Ny,{"...any":function(e){e=sy(e);try{return u.apply(null,e)}catch(e){throw cp(e)}}})}),{isTransformFunction:!0}),Ay="print",Sy=Se(Ay,["typed","matrix","zeros","add"],(e=>{let{typed:t,matrix:r,zeros:n,add:i}=e;const o=Pu({typed:t,matrix:r,zeros:n,add:i});return t(Ay,{"string, Object | Array":function(e,t){return o(a(e),t)},"string, Object | Array, number | Object":function(e,t,r){return o(a(e),t,r)}});function a(e){return e.replace(qu,(e=>"$"+e.slice(1).split(".").map((function(e){return!isNaN(e)&&e.length>0?parseInt(e)-1:e})).join(".")))}}),{isTransformFunction:!0}),My=Se("and",["typed","matrix","zeros","add","equalScalar","not","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,zeros:i,not:o,concat:a}=e;const s=Ec({typed:t,matrix:r,equalScalar:n,zeros:i,not:o,concat:a});function u(e,t,r){const n=e[0].compile().evaluate(r);if(!p(n)&&!s(n,!0))return!1;const i=e[1].compile().evaluate(r);return s(n,i)}return u.rawArgs=!0,u}),{isTransformFunction:!0}),Cy=Se("or",["typed","matrix","equalScalar","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o}=e;const a=cs({typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o});function s(e,t,r){const n=e[0].compile().evaluate(r);if(!p(n)&&a(n,!1))return!0;const i=e[1].compile().evaluate(r);return a(n,i)}return s.rawArgs=!0,s}),{isTransformFunction:!0}),Ty=Se("bitAnd",["typed","matrix","zeros","add","equalScalar","not","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,zeros:i,not:o,concat:a}=e;const s=Ha({typed:t,matrix:r,equalScalar:n,zeros:i,not:o,concat:a});function u(e,t,r){const n=e[0].compile().evaluate(r);if(!p(n)){if(isNaN(n))return NaN;if(0===n||!1===n)return 0}const i=e[1].compile().evaluate(r);return s(n,i)}return u.rawArgs=!0,u}),{isTransformFunction:!0}),Dy=Se("bitOr",["typed","matrix","equalScalar","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o}=e;const a=Wa({typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o});function s(e,t,r){const n=e[0].compile().evaluate(r);if(!p(n)){if(isNaN(n))return NaN;if(-1===n)return-1;if(!0===n)return 1}const i=e[1].compile().evaluate(r);return a(n,i)}return s.rawArgs=!0,s}),{isTransformFunction:!0});var Fy=r(1504);const By={relTol:1e-12,absTol:1e-15,matrix:"Matrix",number:"number",numberFallback:"number",precision:64,predictable:!1,randomSeed:null},Oy=["Matrix","Array"],_y=["number","BigNumber","Fraction"];function zy(e,t){function r(n){if(n){if(void 0!==n.epsilon){console.warn('Warning: The configuration option "epsilon" is deprecated. Use "relTol" and "absTol" instead.');const e=ye(n);return e.relTol=n.epsilon,e.absTol=.001*n.epsilon,delete e.epsilon,r(e)}const i=ye(e);Iy(n,"matrix",Oy),Iy(n,"number",_y),be(e,n);const o=ye(e),a=ye(n);return t("config",o,i,a),o}return ye(e)}return r.MATRIX_OPTIONS=Oy,r.NUMBER_OPTIONS=_y,Object.keys(By).forEach((t=>{Object.defineProperty(r,t,{get:()=>e[t],enumerable:!0,configurable:!0})})),r}function Iy(e,t,r){void 0===e[t]||r.includes(e[t])||console.warn('Warning: Unknown value "'+e[t]+'" for configuration option "'+t+'". Available options: '+r.map((e=>JSON.stringify(e))).join(", ")+".")}const ky=function e(r,n){const O=Vr({},By,n);if("function"!=typeof Object.create)throw new Error("ES5 not supported by this JavaScript engine. Please load the es5-shim and es5-sham library for compatibility.");const H=function(e){const t=new Fy;return e.on=t.on.bind(t),e.off=t.off.bind(t),e.once=t.once.bind(t),e.emit=t.emit.bind(t),e}({isNumber:t,isComplex:a,isBigNumber:i,isBigInt:o,isFraction:s,isUnit:u,isString:c,isArray:l,isMatrix:f,isCollection:p,isDenseMatrix:m,isSparseMatrix:d,isRange:h,isIndex:g,isBoolean:y,isResultSet:x,isHelp:b,isFunction:v,isDate:w,isRegExp:N,isObject:E,isNull:A,isUndefined:S,isAccessorNode:M,isArrayNode:C,isAssignmentNode:T,isBlockNode:D,isConditionalNode:F,isConstantNode:B,isFunctionAssignmentNode:_,isFunctionNode:z,isIndexNode:I,isNode:k,isObjectNode:q,isOperatorNode:R,isParenthesisNode:P,isRangeNode:j,isRelationalNode:U,isSymbolNode:L,isChain:$});H.config=zy(O,H.emit),H.expression={transform:{},mathWithTransform:{config:H.config}};const Z={};function V(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return H.typed.apply(H.typed,t)}V.isTypedFunction=G.isTypedFunction;const W=function(e,t,r,n){function o(t,i,o){var a;if(o.wrap&&"function"==typeof i&&(i=function(e){const t=function(){const t=[];for(let e=0,r=arguments.length;e<r;e++){const r=arguments[e];t[e]=r&&r.valueOf()}return e.apply(r,t)};return e.transform&&(t.transform=e.transform),t}(i)),"function"==typeof(a=i)&&"string"==typeof a.signature&&(i=e(t,{[i.signature]:i})),e.isTypedFunction(r[t])&&e.isTypedFunction(i))return i=o.override?e(t,i.signatures):e(r[t],i),r[t]=i,delete n[t],c(t,i),void r.emit("import",t,(function(){return i}));if(void 0===r[t]||o.override)return r[t]=i,delete n[t],c(t,i),void r.emit("import",t,(function(){return i}));if(!o.silent)throw new Error('Cannot import "'+t+'": already exists')}function c(e,t){t&&"function"==typeof t.transform?(r.expression.transform[e]=t.transform,m(e)&&(r.expression.mathWithTransform[e]=t.transform)):(delete r.expression.transform[e],m(e)&&(r.expression.mathWithTransform[e]=t))}function l(e){delete r.expression.transform[e],m(e)?r.expression.mathWithTransform[e]=r[e]:delete r.expression.mathWithTransform[e]}function p(t,i){let o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t.fn;if(o.includes("."))throw new Error("Factory name should not contain a nested path. Name: "+JSON.stringify(o));const a=h(t)?r.expression.transform:r,s=o in r.expression.transform,u=Ae(a,o)?a[o]:void 0,c=function(){const n={};t.dependencies.map(Ce).forEach((e=>{if(e.includes("."))throw new Error("Factory dependency should not contain a nested path. Name: "+JSON.stringify(e));"math"===e?n.math=r:"mathWithTransform"===e?n.mathWithTransform=r.expression.mathWithTransform:"classes"===e?n.classes=r:n[e]=r[e]}));const a=t(n);if(a&&"function"==typeof a.transform)throw new Error('Transforms cannot be attached to factory functions. Please create a separate function for it with export const path = "expression.transform"');if(void 0===u||i.override)return a;if(e.isTypedFunction(u)&&e.isTypedFunction(a))return e(u,a);if(i.silent)return u;throw new Error('Cannot import "'+o+'": already exists')};t.meta&&!1===t.meta.lazy?(a[o]=c(),u&&s?l(o):(h(t)||d(t))&&Ee(r.expression.mathWithTransform,o,(()=>a[o]))):(Ee(a,o,c),u&&s?l(o):(h(t)||d(t))&&Ee(r.expression.mathWithTransform,o,(()=>a[o]))),n[o]=t,r.emit("import",o,c)}function m(e){return!Ae(g,e)}function d(e){return!(e.fn.includes(".")||Ae(g,e.fn)||e.meta&&e.meta.isClass)}function h(e){return void 0!==e&&void 0!==e.meta&&!0===e.meta.isTransformFunction||!1}const g={expression:!0,type:!0,docs:!0,error:!0,json:!0,chain:!0};return function(e,t){const r=arguments.length;if(1!==r&&2!==r)throw new Xo("import",r,1,2);t||(t={});const n={};!function e(r,n,i){if(Array.isArray(n))n.forEach((t=>e(r,t)));else if("object"==typeof n)for(const t in n)Ae(n,t)&&e(r,n[t],t);else if(Me(n)||void 0!==i){const e=Me(n)?h(n)?n.fn+".transform":n.fn:i;if(Ae(r,e)&&r[e]!==n&&!t.silent)throw new Error('Cannot import "'+e+'" twice');r[e]=n}else if(!t.silent)throw new TypeError("Factory, Object, or Array expected")}(n,e);for(const e in n)if(Ae(n,e)){const r=n[e];if(Me(r))p(r,t);else if("function"==typeof(c=r)||"number"==typeof c||"string"==typeof c||"boolean"==typeof c||null===c||u(c)||a(c)||i(c)||s(c)||f(c)||Array.isArray(c))o(e,r,t);else if(!t.silent)throw new TypeError("Factory, Object, or Array expected")}var c}}(V,0,H,Z);return H.import=W,H.on("config",(()=>{Object.values(Z).forEach((e=>{e&&e.meta&&e.meta.recreateOnConfigChange&&W(e,{override:!0})}))})),H.create=e.bind(null,r),H.factory=Se,H.import(Object.values(we(r))),H.ArgumentsError=Xo,H.DimensionError=on,H.IndexError=an,H}(e)})(),n.default})()));
2
+ !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.math=t():e.math=t()}(this,(()=>(()=>{var e={5716:function(e,t){var r;!function(){"use strict";var n=Math.cosh||function(e){return Math.abs(e)<1e-9?1-e:.5*(Math.exp(e)+Math.exp(-e))},i=Math.sinh||function(e){return Math.abs(e)<1e-9?e:.5*(Math.exp(e)-Math.exp(-e))},o=function(){throw SyntaxError("Invalid Param")};function a(e,t){var r=Math.abs(e),n=Math.abs(t);return 0===e?Math.log(n):0===t?Math.log(r):r<3e3&&n<3e3?.5*Math.log(e*e+t*t):(e/=2,t/=2,.5*Math.log(e*e+t*t)+Math.LN2)}function s(e,t){if(!(this instanceof s))return new s(e,t);var r=function(e,t){var r={re:0,im:0};if(null==e)r.re=r.im=0;else if(void 0!==t)r.re=e,r.im=t;else switch(typeof e){case"object":if("im"in e&&"re"in e)r.re=e.re,r.im=e.im;else if("abs"in e&&"arg"in e){if(!Number.isFinite(e.abs)&&Number.isFinite(e.arg))return s.INFINITY;r.re=e.abs*Math.cos(e.arg),r.im=e.abs*Math.sin(e.arg)}else if("r"in e&&"phi"in e){if(!Number.isFinite(e.r)&&Number.isFinite(e.phi))return s.INFINITY;r.re=e.r*Math.cos(e.phi),r.im=e.r*Math.sin(e.phi)}else 2===e.length?(r.re=e[0],r.im=e[1]):o();break;case"string":r.im=r.re=0;var n=e.match(/\d+\.?\d*e[+-]?\d+|\d+\.?\d*|\.\d+|./g),i=1,a=0;null===n&&o();for(var u=0;u<n.length;u++){var c=n[u];" "===c||"\t"===c||"\n"===c||("+"===c?i++:"-"===c?a++:"i"===c||"I"===c?(i+a===0&&o()," "===n[u+1]||isNaN(n[u+1])?r.im+=parseFloat((a%2?"-":"")+"1"):(r.im+=parseFloat((a%2?"-":"")+n[u+1]),u++),i=a=0):((i+a===0||isNaN(c))&&o(),"i"===n[u+1]||"I"===n[u+1]?(r.im+=parseFloat((a%2?"-":"")+c),u++):r.re+=parseFloat((a%2?"-":"")+c),i=a=0))}i+a>0&&o();break;case"number":r.im=0,r.re=e;break;default:o()}return isNaN(r.re)||isNaN(r.im),r}(e,t);this.re=r.re,this.im=r.im}s.prototype={re:0,im:0,sign:function(){var e=this.abs();return new s(this.re/e,this.im/e)},add:function(e,t){var r=new s(e,t);return this.isInfinite()&&r.isInfinite()?s.NAN:this.isInfinite()||r.isInfinite()?s.INFINITY:new s(this.re+r.re,this.im+r.im)},sub:function(e,t){var r=new s(e,t);return this.isInfinite()&&r.isInfinite()?s.NAN:this.isInfinite()||r.isInfinite()?s.INFINITY:new s(this.re-r.re,this.im-r.im)},mul:function(e,t){var r=new s(e,t);return this.isInfinite()&&r.isZero()||this.isZero()&&r.isInfinite()?s.NAN:this.isInfinite()||r.isInfinite()?s.INFINITY:0===r.im&&0===this.im?new s(this.re*r.re,0):new s(this.re*r.re-this.im*r.im,this.re*r.im+this.im*r.re)},div:function(e,t){var r=new s(e,t);if(this.isZero()&&r.isZero()||this.isInfinite()&&r.isInfinite())return s.NAN;if(this.isInfinite()||r.isZero())return s.INFINITY;if(this.isZero()||r.isInfinite())return s.ZERO;e=this.re,t=this.im;var n,i,o=r.re,a=r.im;return 0===a?new s(e/o,t/o):Math.abs(o)<Math.abs(a)?new s((e*(i=o/a)+t)/(n=o*i+a),(t*i-e)/n):new s((e+t*(i=a/o))/(n=a*i+o),(t-e*i)/n)},pow:function(e,t){var r=new s(e,t);if(e=this.re,t=this.im,r.isZero())return s.ONE;if(0===r.im){if(0===t&&e>0)return new s(Math.pow(e,r.re),0);if(0===e)switch((r.re%4+4)%4){case 0:return new s(Math.pow(t,r.re),0);case 1:return new s(0,Math.pow(t,r.re));case 2:return new s(-Math.pow(t,r.re),0);case 3:return new s(0,-Math.pow(t,r.re))}}if(0===e&&0===t&&r.re>0&&r.im>=0)return s.ZERO;var n=Math.atan2(t,e),i=a(e,t);return e=Math.exp(r.re*i-r.im*n),t=r.im*i+r.re*n,new s(e*Math.cos(t),e*Math.sin(t))},sqrt:function(){var e,t,r=this.re,n=this.im,i=this.abs();if(r>=0){if(0===n)return new s(Math.sqrt(r),0);e=.5*Math.sqrt(2*(i+r))}else e=Math.abs(n)/Math.sqrt(2*(i-r));return t=r<=0?.5*Math.sqrt(2*(i-r)):Math.abs(n)/Math.sqrt(2*(i+r)),new s(e,n<0?-t:t)},exp:function(){var e=Math.exp(this.re);return this.im,new s(e*Math.cos(this.im),e*Math.sin(this.im))},expm1:function(){var e=this.re,t=this.im;return new s(Math.expm1(e)*Math.cos(t)+function(e){var t=Math.PI/4;if(-t>e||e>t)return Math.cos(e)-1;var r=e*e;return r*(r*(r*(r*(r*(r*(r*(r/20922789888e3-1/87178291200)+1/479001600)-1/3628800)+1/40320)-1/720)+1/24)-.5)}(t),Math.exp(e)*Math.sin(t))},log:function(){var e=this.re,t=this.im;return new s(a(e,t),Math.atan2(t,e))},abs:function(){return e=this.re,t=this.im,r=Math.abs(e),n=Math.abs(t),r<3e3&&n<3e3?Math.sqrt(r*r+n*n):(r<n?(r=n,n=e/t):n=t/e,r*Math.sqrt(1+n*n));var e,t,r,n},arg:function(){return Math.atan2(this.im,this.re)},sin:function(){var e=this.re,t=this.im;return new s(Math.sin(e)*n(t),Math.cos(e)*i(t))},cos:function(){var e=this.re,t=this.im;return new s(Math.cos(e)*n(t),-Math.sin(e)*i(t))},tan:function(){var e=2*this.re,t=2*this.im,r=Math.cos(e)+n(t);return new s(Math.sin(e)/r,i(t)/r)},cot:function(){var e=2*this.re,t=2*this.im,r=Math.cos(e)-n(t);return new s(-Math.sin(e)/r,i(t)/r)},sec:function(){var e=this.re,t=this.im,r=.5*n(2*t)+.5*Math.cos(2*e);return new s(Math.cos(e)*n(t)/r,Math.sin(e)*i(t)/r)},csc:function(){var e=this.re,t=this.im,r=.5*n(2*t)-.5*Math.cos(2*e);return new s(Math.sin(e)*n(t)/r,-Math.cos(e)*i(t)/r)},asin:function(){var e=this.re,t=this.im,r=new s(t*t-e*e+1,-2*e*t).sqrt(),n=new s(r.re-t,r.im+e).log();return new s(n.im,-n.re)},acos:function(){var e=this.re,t=this.im,r=new s(t*t-e*e+1,-2*e*t).sqrt(),n=new s(r.re-t,r.im+e).log();return new s(Math.PI/2-n.im,n.re)},atan:function(){var e=this.re,t=this.im;if(0===e){if(1===t)return new s(0,1/0);if(-1===t)return new s(0,-1/0)}var r=e*e+(1-t)*(1-t),n=new s((1-t*t-e*e)/r,-2*e/r).log();return new s(-.5*n.im,.5*n.re)},acot:function(){var e=this.re,t=this.im;if(0===t)return new s(Math.atan2(1,e),0);var r=e*e+t*t;return 0!==r?new s(e/r,-t/r).atan():new s(0!==e?e/0:0,0!==t?-t/0:0).atan()},asec:function(){var e=this.re,t=this.im;if(0===e&&0===t)return new s(0,1/0);var r=e*e+t*t;return 0!==r?new s(e/r,-t/r).acos():new s(0!==e?e/0:0,0!==t?-t/0:0).acos()},acsc:function(){var e=this.re,t=this.im;if(0===e&&0===t)return new s(Math.PI/2,1/0);var r=e*e+t*t;return 0!==r?new s(e/r,-t/r).asin():new s(0!==e?e/0:0,0!==t?-t/0:0).asin()},sinh:function(){var e=this.re,t=this.im;return new s(i(e)*Math.cos(t),n(e)*Math.sin(t))},cosh:function(){var e=this.re,t=this.im;return new s(n(e)*Math.cos(t),i(e)*Math.sin(t))},tanh:function(){var e=2*this.re,t=2*this.im,r=n(e)+Math.cos(t);return new s(i(e)/r,Math.sin(t)/r)},coth:function(){var e=2*this.re,t=2*this.im,r=n(e)-Math.cos(t);return new s(i(e)/r,-Math.sin(t)/r)},csch:function(){var e=this.re,t=this.im,r=Math.cos(2*t)-n(2*e);return new s(-2*i(e)*Math.cos(t)/r,2*n(e)*Math.sin(t)/r)},sech:function(){var e=this.re,t=this.im,r=Math.cos(2*t)+n(2*e);return new s(2*n(e)*Math.cos(t)/r,-2*i(e)*Math.sin(t)/r)},asinh:function(){var e=this.im;this.im=-this.re,this.re=e;var t=this.asin();return this.re=-this.im,this.im=e,e=t.re,t.re=-t.im,t.im=e,t},acosh:function(){var e=this.acos();if(e.im<=0){var t=e.re;e.re=-e.im,e.im=t}else t=e.im,e.im=-e.re,e.re=t;return e},atanh:function(){var e=this.re,t=this.im,r=e>1&&0===t,n=1-e,i=1+e,o=n*n+t*t,u=0!==o?new s((i*n-t*t)/o,(t*n+i*t)/o):new s(-1!==e?e/0:0,0!==t?t/0:0),c=u.re;return u.re=a(u.re,u.im)/2,u.im=Math.atan2(u.im,c)/2,r&&(u.im=-u.im),u},acoth:function(){var e=this.re,t=this.im;if(0===e&&0===t)return new s(0,Math.PI/2);var r=e*e+t*t;return 0!==r?new s(e/r,-t/r).atanh():new s(0!==e?e/0:0,0!==t?-t/0:0).atanh()},acsch:function(){var e=this.re,t=this.im;if(0===t)return new s(0!==e?Math.log(e+Math.sqrt(e*e+1)):1/0,0);var r=e*e+t*t;return 0!==r?new s(e/r,-t/r).asinh():new s(0!==e?e/0:0,0!==t?-t/0:0).asinh()},asech:function(){var e=this.re,t=this.im;if(this.isZero())return s.INFINITY;var r=e*e+t*t;return 0!==r?new s(e/r,-t/r).acosh():new s(0!==e?e/0:0,0!==t?-t/0:0).acosh()},inverse:function(){if(this.isZero())return s.INFINITY;if(this.isInfinite())return s.ZERO;var e=this.re,t=this.im,r=e*e+t*t;return new s(e/r,-t/r)},conjugate:function(){return new s(this.re,-this.im)},neg:function(){return new s(-this.re,-this.im)},ceil:function(e){return e=Math.pow(10,e||0),new s(Math.ceil(this.re*e)/e,Math.ceil(this.im*e)/e)},floor:function(e){return e=Math.pow(10,e||0),new s(Math.floor(this.re*e)/e,Math.floor(this.im*e)/e)},round:function(e){return e=Math.pow(10,e||0),new s(Math.round(this.re*e)/e,Math.round(this.im*e)/e)},equals:function(e,t){var r=new s(e,t);return Math.abs(r.re-this.re)<=s.EPSILON&&Math.abs(r.im-this.im)<=s.EPSILON},clone:function(){return new s(this.re,this.im)},toString:function(){var e=this.re,t=this.im,r="";return this.isNaN()?"NaN":this.isInfinite()?"Infinity":(Math.abs(e)<s.EPSILON&&(e=0),Math.abs(t)<s.EPSILON&&(t=0),0===t?r+e:(0!==e?(r+=e,r+=" ",t<0?(t=-t,r+="-"):r+="+",r+=" "):t<0&&(t=-t,r+="-"),1!==t&&(r+=t),r+"i"))},toVector:function(){return[this.re,this.im]},valueOf:function(){return 0===this.im?this.re:null},isNaN:function(){return isNaN(this.re)||isNaN(this.im)},isZero:function(){return 0===this.im&&0===this.re},isFinite:function(){return isFinite(this.re)&&isFinite(this.im)},isInfinite:function(){return!(this.isNaN()||this.isFinite())}},s.ZERO=new s(0,0),s.ONE=new s(1,0),s.I=new s(0,1),s.PI=new s(Math.PI,0),s.E=new s(Math.E,0),s.INFINITY=new s(1/0,1/0),s.NAN=new s(NaN,NaN),s.EPSILON=1e-15,void 0===(r=function(){return s}.apply(t,[]))||(e.exports=r)}()},3144:e=>{"use strict";var t=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},r={"{":"\\{","}":"\\}","\\":"\\textbackslash{}","#":"\\#",$:"\\$","%":"\\%","&":"\\&","^":"\\textasciicircum{}",_:"\\_","~":"\\textasciitilde{}"},n={"–":"\\--","—":"\\---"," ":"~","\t":"\\qquad{}","\r\n":"\\newline{}","\n":"\\newline{}"},i=function(e,r){return t({},e,r)};e.exports=function(e){for(var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=o.preserveFormatting,s=void 0!==a&&a,u=o.escapeMapFn,c=void 0===u?i:u,l=String(e),f="",p=c(t({},r),s?t({},n):{}),m=Object.keys(p),d=function(){var e=!1;m.forEach((function(t,r){e||l.length>=t.length&&l.slice(0,t.length)===t&&(f+=p[m[r]],l=l.slice(t.length,l.length),e=!0)})),e||(f+=l.slice(0,1),l=l.slice(1,l.length))};l;)d();return f}},1880:e=>{e.exports=function e(t,r){"use strict";var n,i,o=/(^([+\-]?(?:0|[1-9]\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?)?$|^0x[0-9a-f]+$|\d+)/gi,a=/(^[ ]*|[ ]*$)/g,s=/(^([\w ]+,?[\w ]+)?[\w ]+,?[\w ]+\d+:\d+(:\d+)?[\w ]?|^\d{1,4}[\/\-]\d{1,4}[\/\-]\d{1,4}|^\w+, \w+ \d+, \d{4})/,u=/^0x[0-9a-f]+$/i,c=/^0/,l=function(t){return e.insensitive&&(""+t).toLowerCase()||""+t},f=l(t).replace(a,"")||"",p=l(r).replace(a,"")||"",m=f.replace(o,"\0$1\0").replace(/\0$/,"").replace(/^\0/,"").split("\0"),d=p.replace(o,"\0$1\0").replace(/\0$/,"").replace(/^\0/,"").split("\0"),h=parseInt(f.match(u),16)||1!==m.length&&f.match(s)&&Date.parse(f),g=parseInt(p.match(u),16)||h&&p.match(s)&&Date.parse(p)||null;if(g){if(h<g)return-1;if(h>g)return 1}for(var y=0,x=Math.max(m.length,d.length);y<x;y++){if(n=!(m[y]||"").match(c)&&parseFloat(m[y])||m[y]||0,i=!(d[y]||"").match(c)&&parseFloat(d[y])||d[y]||0,isNaN(n)!==isNaN(i))return isNaN(n)?1:-1;if(typeof n!=typeof i&&(n+="",i+=""),n<i)return-1;if(n>i)return 1}return 0}},7391:(e,t,r)=>{var n=r(7180),i=r(3181),o=r(3031),a=r(9067),s=r(6833),u=r(6098),c=r(4801);c.alea=n,c.xor128=i,c.xorwow=o,c.xorshift7=a,c.xor4096=s,c.tychei=u,e.exports=c},7180:function(e,t,r){var n;!function(e,i){function o(e){var t,r=this,n=(t=4022871197,function(e){e=String(e);for(var r=0;r<e.length;r++){var n=.02519603282416938*(t+=e.charCodeAt(r));n-=t=n>>>0,t=(n*=t)>>>0,t+=4294967296*(n-=t)}return 2.3283064365386963e-10*(t>>>0)});r.next=function(){var e=2091639*r.s0+2.3283064365386963e-10*r.c;return r.s0=r.s1,r.s1=r.s2,r.s2=e-(r.c=0|e)},r.c=1,r.s0=n(" "),r.s1=n(" "),r.s2=n(" "),r.s0-=n(e),r.s0<0&&(r.s0+=1),r.s1-=n(e),r.s1<0&&(r.s1+=1),r.s2-=n(e),r.s2<0&&(r.s2+=1),n=null}function a(e,t){return t.c=e.c,t.s0=e.s0,t.s1=e.s1,t.s2=e.s2,t}function s(e,t){var r=new o(e),n=t&&t.state,i=r.next;return i.int32=function(){return 4294967296*r.next()|0},i.double=function(){return i()+11102230246251565e-32*(2097152*i()|0)},i.quick=i,n&&("object"==typeof n&&a(n,r),i.state=function(){return a(r,{})}),i}i&&i.exports?i.exports=s:r.amdD&&r.amdO?void 0===(n=function(){return s}.call(t,r,t,i))||(i.exports=n):this.alea=s}(0,e=r.nmd(e),r.amdD)},6098:function(e,t,r){var n;!function(e,i){function o(e){var t=this,r="";t.next=function(){var e=t.b,r=t.c,n=t.d,i=t.a;return e=e<<25^e>>>7^r,r=r-n|0,n=n<<24^n>>>8^i,i=i-e|0,t.b=e=e<<20^e>>>12^r,t.c=r=r-n|0,t.d=n<<16^r>>>16^i,t.a=i-e|0},t.a=0,t.b=0,t.c=-1640531527,t.d=1367130551,e===Math.floor(e)?(t.a=e/4294967296|0,t.b=0|e):r+=e;for(var n=0;n<r.length+20;n++)t.b^=0|r.charCodeAt(n),t.next()}function a(e,t){return t.a=e.a,t.b=e.b,t.c=e.c,t.d=e.d,t}function s(e,t){var r=new o(e),n=t&&t.state,i=function(){return(r.next()>>>0)/4294967296};return i.double=function(){do{var e=((r.next()>>>11)+(r.next()>>>0)/4294967296)/(1<<21)}while(0===e);return e},i.int32=r.next,i.quick=i,n&&("object"==typeof n&&a(n,r),i.state=function(){return a(r,{})}),i}i&&i.exports?i.exports=s:r.amdD&&r.amdO?void 0===(n=function(){return s}.call(t,r,t,i))||(i.exports=n):this.tychei=s}(0,e=r.nmd(e),r.amdD)},3181:function(e,t,r){var n;!function(e,i){function o(e){var t=this,r="";t.x=0,t.y=0,t.z=0,t.w=0,t.next=function(){var e=t.x^t.x<<11;return t.x=t.y,t.y=t.z,t.z=t.w,t.w^=t.w>>>19^e^e>>>8},e===(0|e)?t.x=e:r+=e;for(var n=0;n<r.length+64;n++)t.x^=0|r.charCodeAt(n),t.next()}function a(e,t){return t.x=e.x,t.y=e.y,t.z=e.z,t.w=e.w,t}function s(e,t){var r=new o(e),n=t&&t.state,i=function(){return(r.next()>>>0)/4294967296};return i.double=function(){do{var e=((r.next()>>>11)+(r.next()>>>0)/4294967296)/(1<<21)}while(0===e);return e},i.int32=r.next,i.quick=i,n&&("object"==typeof n&&a(n,r),i.state=function(){return a(r,{})}),i}i&&i.exports?i.exports=s:r.amdD&&r.amdO?void 0===(n=function(){return s}.call(t,r,t,i))||(i.exports=n):this.xor128=s}(0,e=r.nmd(e),r.amdD)},6833:function(e,t,r){var n;!function(e,i){function o(e){var t=this;t.next=function(){var e,r,n=t.w,i=t.X,o=t.i;return t.w=n=n+1640531527|0,r=i[o+34&127],e=i[o=o+1&127],r^=r<<13,e^=e<<17,r^=r>>>15,e^=e>>>12,r=i[o]=r^e,t.i=o,r+(n^n>>>16)|0},function(e,t){var r,n,i,o,a,s=[],u=128;for(t===(0|t)?(n=t,t=null):(t+="\0",n=0,u=Math.max(u,t.length)),i=0,o=-32;o<u;++o)t&&(n^=t.charCodeAt((o+32)%t.length)),0===o&&(a=n),n^=n<<10,n^=n>>>15,n^=n<<4,n^=n>>>13,o>=0&&(a=a+1640531527|0,i=0==(r=s[127&o]^=n+a)?i+1:0);for(i>=128&&(s[127&(t&&t.length||0)]=-1),i=127,o=512;o>0;--o)n=s[i+34&127],r=s[i=i+1&127],n^=n<<13,r^=r<<17,n^=n>>>15,r^=r>>>12,s[i]=n^r;e.w=a,e.X=s,e.i=i}(t,e)}function a(e,t){return t.i=e.i,t.w=e.w,t.X=e.X.slice(),t}function s(e,t){null==e&&(e=+new Date);var r=new o(e),n=t&&t.state,i=function(){return(r.next()>>>0)/4294967296};return i.double=function(){do{var e=((r.next()>>>11)+(r.next()>>>0)/4294967296)/(1<<21)}while(0===e);return e},i.int32=r.next,i.quick=i,n&&(n.X&&a(n,r),i.state=function(){return a(r,{})}),i}i&&i.exports?i.exports=s:r.amdD&&r.amdO?void 0===(n=function(){return s}.call(t,r,t,i))||(i.exports=n):this.xor4096=s}(0,e=r.nmd(e),r.amdD)},9067:function(e,t,r){var n;!function(e,i){function o(e){var t=this;t.next=function(){var e,r,n=t.x,i=t.i;return e=n[i],r=(e^=e>>>7)^e<<24,r^=(e=n[i+1&7])^e>>>10,r^=(e=n[i+3&7])^e>>>3,r^=(e=n[i+4&7])^e<<7,e=n[i+7&7],r^=(e^=e<<13)^e<<9,n[i]=r,t.i=i+1&7,r},function(e,t){var r,n=[];if(t===(0|t))n[0]=t;else for(t=""+t,r=0;r<t.length;++r)n[7&r]=n[7&r]<<15^t.charCodeAt(r)+n[r+1&7]<<13;for(;n.length<8;)n.push(0);for(r=0;r<8&&0===n[r];++r);for(8==r?n[7]=-1:n[r],e.x=n,e.i=0,r=256;r>0;--r)e.next()}(t,e)}function a(e,t){return t.x=e.x.slice(),t.i=e.i,t}function s(e,t){null==e&&(e=+new Date);var r=new o(e),n=t&&t.state,i=function(){return(r.next()>>>0)/4294967296};return i.double=function(){do{var e=((r.next()>>>11)+(r.next()>>>0)/4294967296)/(1<<21)}while(0===e);return e},i.int32=r.next,i.quick=i,n&&(n.x&&a(n,r),i.state=function(){return a(r,{})}),i}i&&i.exports?i.exports=s:r.amdD&&r.amdO?void 0===(n=function(){return s}.call(t,r,t,i))||(i.exports=n):this.xorshift7=s}(0,e=r.nmd(e),r.amdD)},3031:function(e,t,r){var n;!function(e,i){function o(e){var t=this,r="";t.next=function(){var e=t.x^t.x>>>2;return t.x=t.y,t.y=t.z,t.z=t.w,t.w=t.v,(t.d=t.d+362437|0)+(t.v=t.v^t.v<<4^e^e<<1)|0},t.x=0,t.y=0,t.z=0,t.w=0,t.v=0,e===(0|e)?t.x=e:r+=e;for(var n=0;n<r.length+64;n++)t.x^=0|r.charCodeAt(n),n==r.length&&(t.d=t.x<<10^t.x>>>4),t.next()}function a(e,t){return t.x=e.x,t.y=e.y,t.z=e.z,t.w=e.w,t.v=e.v,t.d=e.d,t}function s(e,t){var r=new o(e),n=t&&t.state,i=function(){return(r.next()>>>0)/4294967296};return i.double=function(){do{var e=((r.next()>>>11)+(r.next()>>>0)/4294967296)/(1<<21)}while(0===e);return e},i.int32=r.next,i.quick=i,n&&("object"==typeof n&&a(n,r),i.state=function(){return a(r,{})}),i}i&&i.exports?i.exports=s:r.amdD&&r.amdO?void 0===(n=function(){return s}.call(t,r,t,i))||(i.exports=n):this.xorwow=s}(0,e=r.nmd(e),r.amdD)},4801:function(e,t,r){var n;!function(i,o,a){var s,u=256,c=a.pow(u,6),l=a.pow(2,52),f=2*l,p=u-1;function m(e,t,r){var n=[],p=y(g((t=1==t?{entropy:!0}:t||{}).entropy?[e,x(o)]:null==e?function(){try{var e;return s&&(e=s.randomBytes)?e=e(u):(e=new Uint8Array(u),(i.crypto||i.msCrypto).getRandomValues(e)),x(e)}catch(e){var t=i.navigator,r=t&&t.plugins;return[+new Date,i,r,i.screen,x(o)]}}():e,3),n),m=new d(n),b=function(){for(var e=m.g(6),t=c,r=0;e<l;)e=(e+r)*u,t*=u,r=m.g(1);for(;e>=f;)e/=2,t/=2,r>>>=1;return(e+r)/t};return b.int32=function(){return 0|m.g(4)},b.quick=function(){return m.g(4)/4294967296},b.double=b,y(x(m.S),o),(t.pass||r||function(e,t,r,n){return n&&(n.S&&h(n,m),e.state=function(){return h(m,{})}),r?(a.random=e,t):e})(b,p,"global"in t?t.global:this==a,t.state)}function d(e){var t,r=e.length,n=this,i=0,o=n.i=n.j=0,a=n.S=[];for(r||(e=[r++]);i<u;)a[i]=i++;for(i=0;i<u;i++)a[i]=a[o=p&o+e[i%r]+(t=a[i])],a[o]=t;(n.g=function(e){for(var t,r=0,i=n.i,o=n.j,a=n.S;e--;)t=a[i=p&i+1],r=r*u+a[p&(a[i]=a[o=p&o+t])+(a[o]=t)];return n.i=i,n.j=o,r})(u)}function h(e,t){return t.i=e.i,t.j=e.j,t.S=e.S.slice(),t}function g(e,t){var r,n=[],i=typeof e;if(t&&"object"==i)for(r in e)try{n.push(g(e[r],t-1))}catch(e){}return n.length?n:"string"==i?e:e+"\0"}function y(e,t){for(var r,n=e+"",i=0;i<n.length;)t[p&i]=p&(r^=19*t[p&i])+n.charCodeAt(i++);return x(t)}function x(e){return String.fromCharCode.apply(0,e)}if(y(a.random(),o),e.exports){e.exports=m;try{s=r(1234)}catch(e){}}else void 0===(n=function(){return m}.call(t,r,t,e))||(e.exports=n)}("undefined"!=typeof self?self:this,[],Math)},1504:e=>{function t(){}t.prototype={on:function(e,t,r){var n=this.e||(this.e={});return(n[e]||(n[e]=[])).push({fn:t,ctx:r}),this},once:function(e,t,r){var n=this;function i(){n.off(e,i),t.apply(r,arguments)}return i._=t,this.on(e,i,r)},emit:function(e){for(var t=[].slice.call(arguments,1),r=((this.e||(this.e={}))[e]||[]).slice(),n=0,i=r.length;n<i;n++)r[n].fn.apply(r[n].ctx,t);return this},off:function(e,t){var r=this.e||(this.e={}),n=r[e],i=[];if(n&&t)for(var o=0,a=n.length;o<a;o++)n[o].fn!==t&&n[o].fn._!==t&&i.push(n[o]);return i.length?r[e]=i:delete r[e],this}},e.exports=t,e.exports.TinyEmitter=t},1234:()=>{},9306:(e,t,r)=>{"use strict";var n=r(4901),i=r(6823),o=TypeError;e.exports=function(e){if(n(e))return e;throw new o(i(e)+" is not a function")}},5548:(e,t,r)=>{"use strict";var n=r(3517),i=r(6823),o=TypeError;e.exports=function(e){if(n(e))return e;throw new o(i(e)+" is not a constructor")}},3506:(e,t,r)=>{"use strict";var n=r(3925),i=String,o=TypeError;e.exports=function(e){if(n(e))return e;throw new o("Can't set "+i(e)+" as a prototype")}},6469:(e,t,r)=>{"use strict";var n=r(8227),i=r(2360),o=r(4913).f,a=n("unscopables"),s=Array.prototype;void 0===s[a]&&o(s,a,{configurable:!0,value:i(null)}),e.exports=function(e){s[a][e]=!0}},7829:(e,t,r)=>{"use strict";var n=r(8183).charAt;e.exports=function(e,t,r){return t+(r?n(e,t).length:1)}},679:(e,t,r)=>{"use strict";var n=r(1625),i=TypeError;e.exports=function(e,t){if(n(t,e))return e;throw new i("Incorrect invocation")}},8551:(e,t,r)=>{"use strict";var n=r(34),i=String,o=TypeError;e.exports=function(e){if(n(e))return e;throw new o(i(e)+" is not an object")}},9617:(e,t,r)=>{"use strict";var n=r(5397),i=r(5610),o=r(6198),a=function(e){return function(t,r,a){var s=n(t),u=o(s);if(0===u)return!e&&-1;var c,l=i(a,u);if(e&&r!=r){for(;u>l;)if((c=s[l++])!=c)return!0}else for(;u>l;l++)if((e||l in s)&&s[l]===r)return e||l||0;return!e&&-1}};e.exports={includes:a(!0),indexOf:a(!1)}},4598:(e,t,r)=>{"use strict";var n=r(9039);e.exports=function(e,t){var r=[][e];return!!r&&n((function(){r.call(null,t||function(){return 1},1)}))}},926:(e,t,r)=>{"use strict";var n=r(9306),i=r(8981),o=r(7055),a=r(6198),s=TypeError,u="Reduce of empty array with no initial value",c=function(e){return function(t,r,c,l){var f=i(t),p=o(f),m=a(f);if(n(r),0===m&&c<2)throw new s(u);var d=e?m-1:0,h=e?-1:1;if(c<2)for(;;){if(d in p){l=p[d],d+=h;break}if(d+=h,e?d<0:m<=d)throw new s(u)}for(;e?d>=0:m>d;d+=h)d in p&&(l=r(l,p[d],d,f));return l}};e.exports={left:c(!1),right:c(!0)}},7680:(e,t,r)=>{"use strict";var n=r(9504);e.exports=n([].slice)},4488:(e,t,r)=>{"use strict";var n=r(7680),i=Math.floor,o=function(e,t){var r=e.length;if(r<8)for(var a,s,u=1;u<r;){for(s=u,a=e[u];s&&t(e[s-1],a)>0;)e[s]=e[--s];s!==u++&&(e[s]=a)}else for(var c=i(r/2),l=o(n(e,0,c),t),f=o(n(e,c),t),p=l.length,m=f.length,d=0,h=0;d<p||h<m;)e[d+h]=d<p&&h<m?t(l[d],f[h])<=0?l[d++]:f[h++]:d<p?l[d++]:f[h++];return e};e.exports=o},4428:(e,t,r)=>{"use strict";var n=r(8227)("iterator"),i=!1;try{var o=0,a={next:function(){return{done:!!o++}},return:function(){i=!0}};a[n]=function(){return this},Array.from(a,(function(){throw 2}))}catch(e){}e.exports=function(e,t){try{if(!t&&!i)return!1}catch(e){return!1}var r=!1;try{var o={};o[n]=function(){return{next:function(){return{done:r=!0}}}},e(o)}catch(e){}return r}},2195:(e,t,r)=>{"use strict";var n=r(9504),i=n({}.toString),o=n("".slice);e.exports=function(e){return o(i(e),8,-1)}},6955:(e,t,r)=>{"use strict";var n=r(2140),i=r(4901),o=r(2195),a=r(8227)("toStringTag"),s=Object,u="Arguments"===o(function(){return arguments}());e.exports=n?o:function(e){var t,r,n;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(r=function(e,t){try{return e[t]}catch(e){}}(t=s(e),a))?r:u?o(t):"Object"===(n=o(t))&&i(t.callee)?"Arguments":n}},7740:(e,t,r)=>{"use strict";var n=r(9297),i=r(5031),o=r(7347),a=r(4913);e.exports=function(e,t,r){for(var s=i(t),u=a.f,c=o.f,l=0;l<s.length;l++){var f=s[l];n(e,f)||r&&n(r,f)||u(e,f,c(t,f))}}},6699:(e,t,r)=>{"use strict";var n=r(3724),i=r(4913),o=r(6980);e.exports=n?function(e,t,r){return i.f(e,t,o(1,r))}:function(e,t,r){return e[t]=r,e}},6980:e=>{"use strict";e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},4659:(e,t,r)=>{"use strict";var n=r(3724),i=r(4913),o=r(6980);e.exports=function(e,t,r){n?i.f(e,t,o(0,r)):e[t]=r}},2106:(e,t,r)=>{"use strict";var n=r(283),i=r(4913);e.exports=function(e,t,r){return r.get&&n(r.get,t,{getter:!0}),r.set&&n(r.set,t,{setter:!0}),i.f(e,t,r)}},6840:(e,t,r)=>{"use strict";var n=r(4901),i=r(4913),o=r(283),a=r(9433);e.exports=function(e,t,r,s){s||(s={});var u=s.enumerable,c=void 0!==s.name?s.name:t;if(n(r)&&o(r,c,s),s.global)u?e[t]=r:a(t,r);else{try{s.unsafe?e[t]&&(u=!0):delete e[t]}catch(e){}u?e[t]=r:i.f(e,t,{value:r,enumerable:!1,configurable:!s.nonConfigurable,writable:!s.nonWritable})}return e}},9433:(e,t,r)=>{"use strict";var n=r(4576),i=Object.defineProperty;e.exports=function(e,t){try{i(n,e,{value:t,configurable:!0,writable:!0})}catch(r){n[e]=t}return t}},4606:(e,t,r)=>{"use strict";var n=r(6823),i=TypeError;e.exports=function(e,t){if(!delete e[t])throw new i("Cannot delete property "+n(t)+" of "+n(e))}},3724:(e,t,r)=>{"use strict";var n=r(9039);e.exports=!n((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},4055:(e,t,r)=>{"use strict";var n=r(4576),i=r(34),o=n.document,a=i(o)&&i(o.createElement);e.exports=function(e){return a?o.createElement(e):{}}},8727:e=>{"use strict";e.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},3709:(e,t,r)=>{"use strict";var n=r(2839).match(/firefox\/(\d+)/i);e.exports=!!n&&+n[1]},3763:(e,t,r)=>{"use strict";var n=r(2839);e.exports=/MSIE|Trident/.test(n)},4265:(e,t,r)=>{"use strict";var n=r(2839);e.exports=/ipad|iphone|ipod/i.test(n)&&"undefined"!=typeof Pebble},9544:(e,t,r)=>{"use strict";var n=r(2839);e.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(n)},6193:(e,t,r)=>{"use strict";var n=r(4215);e.exports="NODE"===n},7860:(e,t,r)=>{"use strict";var n=r(2839);e.exports=/web0s(?!.*chrome)/i.test(n)},2839:(e,t,r)=>{"use strict";var n=r(4576).navigator,i=n&&n.userAgent;e.exports=i?String(i):""},9519:(e,t,r)=>{"use strict";var n,i,o=r(4576),a=r(2839),s=o.process,u=o.Deno,c=s&&s.versions||u&&u.version,l=c&&c.v8;l&&(i=(n=l.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!i&&a&&(!(n=a.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=a.match(/Chrome\/(\d+)/))&&(i=+n[1]),e.exports=i},3607:(e,t,r)=>{"use strict";var n=r(2839).match(/AppleWebKit\/(\d+)\./);e.exports=!!n&&+n[1]},4215:(e,t,r)=>{"use strict";var n=r(4576),i=r(2839),o=r(2195),a=function(e){return i.slice(0,e.length)===e};e.exports=a("Bun/")?"BUN":a("Cloudflare-Workers")?"CLOUDFLARE":a("Deno/")?"DENO":a("Node.js/")?"NODE":n.Bun&&"string"==typeof Bun.version?"BUN":n.Deno&&"object"==typeof Deno.version?"DENO":"process"===o(n.process)?"NODE":n.window&&n.document?"BROWSER":"REST"},6518:(e,t,r)=>{"use strict";var n=r(4576),i=r(7347).f,o=r(6699),a=r(6840),s=r(9433),u=r(7740),c=r(2796);e.exports=function(e,t){var r,l,f,p,m,d=e.target,h=e.global,g=e.stat;if(r=h?n:g?n[d]||s(d,{}):n[d]&&n[d].prototype)for(l in t){if(p=t[l],f=e.dontCallGetSet?(m=i(r,l))&&m.value:r[l],!c(h?l:d+(g?".":"#")+l,e.forced)&&void 0!==f){if(typeof p==typeof f)continue;u(p,f)}(e.sham||f&&f.sham)&&o(p,"sham",!0),a(r,l,p,e)}}},9039:e=>{"use strict";e.exports=function(e){try{return!!e()}catch(e){return!0}}},9228:(e,t,r)=>{"use strict";r(7495);var n=r(9565),i=r(6840),o=r(7323),a=r(9039),s=r(8227),u=r(6699),c=s("species"),l=RegExp.prototype;e.exports=function(e,t,r,f){var p=s(e),m=!a((function(){var t={};return t[p]=function(){return 7},7!==""[e](t)})),d=m&&!a((function(){var t=!1,r=/a/;return"split"===e&&((r={}).constructor={},r.constructor[c]=function(){return r},r.flags="",r[p]=/./[p]),r.exec=function(){return t=!0,null},r[p](""),!t}));if(!m||!d||r){var h=/./[p],g=t(p,""[e],(function(e,t,r,i,a){var s=t.exec;return s===o||s===l.exec?m&&!a?{done:!0,value:n(h,t,r,i)}:{done:!0,value:n(e,r,t,i)}:{done:!1}}));i(String.prototype,e,g[0]),i(l,p,g[1])}f&&u(l[p],"sham",!0)}},8745:(e,t,r)=>{"use strict";var n=r(616),i=Function.prototype,o=i.apply,a=i.call;e.exports="object"==typeof Reflect&&Reflect.apply||(n?a.bind(o):function(){return a.apply(o,arguments)})},6080:(e,t,r)=>{"use strict";var n=r(7476),i=r(9306),o=r(616),a=n(n.bind);e.exports=function(e,t){return i(e),void 0===t?e:o?a(e,t):function(){return e.apply(t,arguments)}}},616:(e,t,r)=>{"use strict";var n=r(9039);e.exports=!n((function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")}))},9565:(e,t,r)=>{"use strict";var n=r(616),i=Function.prototype.call;e.exports=n?i.bind(i):function(){return i.apply(i,arguments)}},350:(e,t,r)=>{"use strict";var n=r(3724),i=r(9297),o=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,s=i(o,"name"),u=s&&"something"===function(){}.name,c=s&&(!n||n&&a(o,"name").configurable);e.exports={EXISTS:s,PROPER:u,CONFIGURABLE:c}},6706:(e,t,r)=>{"use strict";var n=r(9504),i=r(9306);e.exports=function(e,t,r){try{return n(i(Object.getOwnPropertyDescriptor(e,t)[r]))}catch(e){}}},7476:(e,t,r)=>{"use strict";var n=r(2195),i=r(9504);e.exports=function(e){if("Function"===n(e))return i(e)}},9504:(e,t,r)=>{"use strict";var n=r(616),i=Function.prototype,o=i.call,a=n&&i.bind.bind(o,o);e.exports=n?a:function(e){return function(){return o.apply(e,arguments)}}},7751:(e,t,r)=>{"use strict";var n=r(4576),i=r(4901);e.exports=function(e,t){return arguments.length<2?(r=n[e],i(r)?r:void 0):n[e]&&n[e][t];var r}},851:(e,t,r)=>{"use strict";var n=r(6955),i=r(5966),o=r(4117),a=r(6269),s=r(8227)("iterator");e.exports=function(e){if(!o(e))return i(e,s)||i(e,"@@iterator")||a[n(e)]}},81:(e,t,r)=>{"use strict";var n=r(9565),i=r(9306),o=r(8551),a=r(6823),s=r(851),u=TypeError;e.exports=function(e,t){var r=arguments.length<2?s(e):t;if(i(r))return o(n(r,e));throw new u(a(e)+" is not iterable")}},6933:(e,t,r)=>{"use strict";var n=r(9504),i=r(4376),o=r(4901),a=r(2195),s=r(655),u=n([].push);e.exports=function(e){if(o(e))return e;if(i(e)){for(var t=e.length,r=[],n=0;n<t;n++){var c=e[n];"string"==typeof c?u(r,c):"number"!=typeof c&&"Number"!==a(c)&&"String"!==a(c)||u(r,s(c))}var l=r.length,f=!0;return function(e,t){if(f)return f=!1,t;if(i(this))return t;for(var n=0;n<l;n++)if(r[n]===e)return t}}}},5966:(e,t,r)=>{"use strict";var n=r(9306),i=r(4117);e.exports=function(e,t){var r=e[t];return i(r)?void 0:n(r)}},2478:(e,t,r)=>{"use strict";var n=r(9504),i=r(8981),o=Math.floor,a=n("".charAt),s=n("".replace),u=n("".slice),c=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,l=/\$([$&'`]|\d{1,2})/g;e.exports=function(e,t,r,n,f,p){var m=r+e.length,d=n.length,h=l;return void 0!==f&&(f=i(f),h=c),s(p,h,(function(i,s){var c;switch(a(s,0)){case"$":return"$";case"&":return e;case"`":return u(t,0,r);case"'":return u(t,m);case"<":c=f[u(s,1,-1)];break;default:var l=+s;if(0===l)return i;if(l>d){var p=o(l/10);return 0===p?i:p<=d?void 0===n[p-1]?a(s,1):n[p-1]+a(s,1):i}c=n[l-1]}return void 0===c?"":c}))}},4576:function(e){"use strict";var t=function(e){return e&&e.Math===Math&&e};e.exports=t("object"==typeof globalThis&&globalThis)||t("object"==typeof window&&window)||t("object"==typeof self&&self)||t("object"==typeof global&&global)||t("object"==typeof this&&this)||function(){return this}()||Function("return this")()},9297:(e,t,r)=>{"use strict";var n=r(9504),i=r(8981),o=n({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return o(i(e),t)}},421:e=>{"use strict";e.exports={}},3138:e=>{"use strict";e.exports=function(e,t){try{1===arguments.length?console.error(e):console.error(e,t)}catch(e){}}},397:(e,t,r)=>{"use strict";var n=r(7751);e.exports=n("document","documentElement")},5917:(e,t,r)=>{"use strict";var n=r(3724),i=r(9039),o=r(4055);e.exports=!n&&!i((function(){return 7!==Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a}))},7055:(e,t,r)=>{"use strict";var n=r(9504),i=r(9039),o=r(2195),a=Object,s=n("".split);e.exports=i((function(){return!a("z").propertyIsEnumerable(0)}))?function(e){return"String"===o(e)?s(e,""):a(e)}:a},3167:(e,t,r)=>{"use strict";var n=r(4901),i=r(34),o=r(2967);e.exports=function(e,t,r){var a,s;return o&&n(a=t.constructor)&&a!==r&&i(s=a.prototype)&&s!==r.prototype&&o(e,s),e}},3706:(e,t,r)=>{"use strict";var n=r(9504),i=r(4901),o=r(7629),a=n(Function.toString);i(o.inspectSource)||(o.inspectSource=function(e){return a(e)}),e.exports=o.inspectSource},1181:(e,t,r)=>{"use strict";var n,i,o,a=r(8622),s=r(4576),u=r(34),c=r(6699),l=r(9297),f=r(7629),p=r(6119),m=r(421),d="Object already initialized",h=s.TypeError,g=s.WeakMap;if(a||f.state){var y=f.state||(f.state=new g);y.get=y.get,y.has=y.has,y.set=y.set,n=function(e,t){if(y.has(e))throw new h(d);return t.facade=e,y.set(e,t),t},i=function(e){return y.get(e)||{}},o=function(e){return y.has(e)}}else{var x=p("state");m[x]=!0,n=function(e,t){if(l(e,x))throw new h(d);return t.facade=e,c(e,x,t),t},i=function(e){return l(e,x)?e[x]:{}},o=function(e){return l(e,x)}}e.exports={set:n,get:i,has:o,enforce:function(e){return o(e)?i(e):n(e,{})},getterFor:function(e){return function(t){var r;if(!u(t)||(r=i(t)).type!==e)throw new h("Incompatible receiver, "+e+" required");return r}}}},4209:(e,t,r)=>{"use strict";var n=r(8227),i=r(6269),o=n("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(i.Array===e||a[o]===e)}},4376:(e,t,r)=>{"use strict";var n=r(2195);e.exports=Array.isArray||function(e){return"Array"===n(e)}},4901:e=>{"use strict";var t="object"==typeof document&&document.all;e.exports=void 0===t&&void 0!==t?function(e){return"function"==typeof e||e===t}:function(e){return"function"==typeof e}},3517:(e,t,r)=>{"use strict";var n=r(9504),i=r(9039),o=r(4901),a=r(6955),s=r(7751),u=r(3706),c=function(){},l=s("Reflect","construct"),f=/^\s*(?:class|function)\b/,p=n(f.exec),m=!f.test(c),d=function(e){if(!o(e))return!1;try{return l(c,[],e),!0}catch(e){return!1}},h=function(e){if(!o(e))return!1;switch(a(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return m||!!p(f,u(e))}catch(e){return!0}};h.sham=!0,e.exports=!l||i((function(){var e;return d(d.call)||!d(Object)||!d((function(){e=!0}))||e}))?h:d},2796:(e,t,r)=>{"use strict";var n=r(9039),i=r(4901),o=/#|\.prototype\./,a=function(e,t){var r=u[s(e)];return r===l||r!==c&&(i(t)?n(t):!!t)},s=a.normalize=function(e){return String(e).replace(o,".").toLowerCase()},u=a.data={},c=a.NATIVE="N",l=a.POLYFILL="P";e.exports=a},4117:e=>{"use strict";e.exports=function(e){return null==e}},34:(e,t,r)=>{"use strict";var n=r(4901);e.exports=function(e){return"object"==typeof e?null!==e:n(e)}},3925:(e,t,r)=>{"use strict";var n=r(34);e.exports=function(e){return n(e)||null===e}},6395:e=>{"use strict";e.exports=!1},788:(e,t,r)=>{"use strict";var n=r(34),i=r(2195),o=r(8227)("match");e.exports=function(e){var t;return n(e)&&(void 0!==(t=e[o])?!!t:"RegExp"===i(e))}},757:(e,t,r)=>{"use strict";var n=r(7751),i=r(4901),o=r(1625),a=r(7040),s=Object;e.exports=a?function(e){return"symbol"==typeof e}:function(e){var t=n("Symbol");return i(t)&&o(t.prototype,s(e))}},2652:(e,t,r)=>{"use strict";var n=r(6080),i=r(9565),o=r(8551),a=r(6823),s=r(4209),u=r(6198),c=r(1625),l=r(81),f=r(851),p=r(9539),m=TypeError,d=function(e,t){this.stopped=e,this.result=t},h=d.prototype;e.exports=function(e,t,r){var g,y,x,b,v,w,N,E=r&&r.that,A=!(!r||!r.AS_ENTRIES),S=!(!r||!r.IS_RECORD),M=!(!r||!r.IS_ITERATOR),C=!(!r||!r.INTERRUPTED),T=n(t,E),D=function(e){return g&&p(g,"normal",e),new d(!0,e)},F=function(e){return A?(o(e),C?T(e[0],e[1],D):T(e[0],e[1])):C?T(e,D):T(e)};if(S)g=e.iterator;else if(M)g=e;else{if(!(y=f(e)))throw new m(a(e)+" is not iterable");if(s(y)){for(x=0,b=u(e);b>x;x++)if((v=F(e[x]))&&c(h,v))return v;return new d(!1)}g=l(e,y)}for(w=S?e.next:g.next;!(N=i(w,g)).done;){try{v=F(N.value)}catch(e){p(g,"throw",e)}if("object"==typeof v&&v&&c(h,v))return v}return new d(!1)}},9539:(e,t,r)=>{"use strict";var n=r(9565),i=r(8551),o=r(5966);e.exports=function(e,t,r){var a,s;i(e);try{if(!(a=o(e,"return"))){if("throw"===t)throw r;return r}a=n(a,e)}catch(e){s=!0,a=e}if("throw"===t)throw r;if(s)throw a;return i(a),r}},6269:e=>{"use strict";e.exports={}},6198:(e,t,r)=>{"use strict";var n=r(8014);e.exports=function(e){return n(e.length)}},283:(e,t,r)=>{"use strict";var n=r(9504),i=r(9039),o=r(4901),a=r(9297),s=r(3724),u=r(350).CONFIGURABLE,c=r(3706),l=r(1181),f=l.enforce,p=l.get,m=String,d=Object.defineProperty,h=n("".slice),g=n("".replace),y=n([].join),x=s&&!i((function(){return 8!==d((function(){}),"length",{value:8}).length})),b=String(String).split("String"),v=e.exports=function(e,t,r){"Symbol("===h(m(t),0,7)&&(t="["+g(m(t),/^Symbol\(([^)]*)\).*$/,"$1")+"]"),r&&r.getter&&(t="get "+t),r&&r.setter&&(t="set "+t),(!a(e,"name")||u&&e.name!==t)&&(s?d(e,"name",{value:t,configurable:!0}):e.name=t),x&&r&&a(r,"arity")&&e.length!==r.arity&&d(e,"length",{value:r.arity});try{r&&a(r,"constructor")&&r.constructor?s&&d(e,"prototype",{writable:!1}):e.prototype&&(e.prototype=void 0)}catch(e){}var n=f(e);return a(n,"source")||(n.source=y(b,"string"==typeof t?t:"")),e};Function.prototype.toString=v((function(){return o(this)&&p(this).source||c(this)}),"toString")},741:e=>{"use strict";var t=Math.ceil,r=Math.floor;e.exports=Math.trunc||function(e){var n=+e;return(n>0?r:t)(n)}},1955:(e,t,r)=>{"use strict";var n,i,o,a,s,u=r(4576),c=r(3389),l=r(6080),f=r(9225).set,p=r(8265),m=r(9544),d=r(4265),h=r(7860),g=r(6193),y=u.MutationObserver||u.WebKitMutationObserver,x=u.document,b=u.process,v=u.Promise,w=c("queueMicrotask");if(!w){var N=new p,E=function(){var e,t;for(g&&(e=b.domain)&&e.exit();t=N.get();)try{t()}catch(e){throw N.head&&n(),e}e&&e.enter()};m||g||h||!y||!x?!d&&v&&v.resolve?((a=v.resolve(void 0)).constructor=v,s=l(a.then,a),n=function(){s(E)}):g?n=function(){b.nextTick(E)}:(f=l(f,u),n=function(){f(E)}):(i=!0,o=x.createTextNode(""),new y(E).observe(o,{characterData:!0}),n=function(){o.data=i=!i}),w=function(e){N.head||n(),N.add(e)}}e.exports=w},6043:(e,t,r)=>{"use strict";var n=r(9306),i=TypeError,o=function(e){var t,r;this.promise=new e((function(e,n){if(void 0!==t||void 0!==r)throw new i("Bad Promise constructor");t=e,r=n})),this.resolve=n(t),this.reject=n(r)};e.exports.f=function(e){return new o(e)}},2360:(e,t,r)=>{"use strict";var n,i=r(8551),o=r(6801),a=r(8727),s=r(421),u=r(397),c=r(4055),l=r(6119),f="prototype",p="script",m=l("IE_PROTO"),d=function(){},h=function(e){return"<"+p+">"+e+"</"+p+">"},g=function(e){e.write(h("")),e.close();var t=e.parentWindow.Object;return e=null,t},y=function(){try{n=new ActiveXObject("htmlfile")}catch(e){}var e,t,r;y="undefined"!=typeof document?document.domain&&n?g(n):(t=c("iframe"),r="java"+p+":",t.style.display="none",u.appendChild(t),t.src=String(r),(e=t.contentWindow.document).open(),e.write(h("document.F=Object")),e.close(),e.F):g(n);for(var i=a.length;i--;)delete y[f][a[i]];return y()};s[m]=!0,e.exports=Object.create||function(e,t){var r;return null!==e?(d[f]=i(e),r=new d,d[f]=null,r[m]=e):r=y(),void 0===t?r:o.f(r,t)}},6801:(e,t,r)=>{"use strict";var n=r(3724),i=r(8686),o=r(4913),a=r(8551),s=r(5397),u=r(1072);t.f=n&&!i?Object.defineProperties:function(e,t){a(e);for(var r,n=s(t),i=u(t),c=i.length,l=0;c>l;)o.f(e,r=i[l++],n[r]);return e}},4913:(e,t,r)=>{"use strict";var n=r(3724),i=r(5917),o=r(8686),a=r(8551),s=r(6969),u=TypeError,c=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f="enumerable",p="configurable",m="writable";t.f=n?o?function(e,t,r){if(a(e),t=s(t),a(r),"function"==typeof e&&"prototype"===t&&"value"in r&&m in r&&!r[m]){var n=l(e,t);n&&n[m]&&(e[t]=r.value,r={configurable:p in r?r[p]:n[p],enumerable:f in r?r[f]:n[f],writable:!1})}return c(e,t,r)}:c:function(e,t,r){if(a(e),t=s(t),a(r),i)try{return c(e,t,r)}catch(e){}if("get"in r||"set"in r)throw new u("Accessors not supported");return"value"in r&&(e[t]=r.value),e}},7347:(e,t,r)=>{"use strict";var n=r(3724),i=r(9565),o=r(8773),a=r(6980),s=r(5397),u=r(6969),c=r(9297),l=r(5917),f=Object.getOwnPropertyDescriptor;t.f=n?f:function(e,t){if(e=s(e),t=u(t),l)try{return f(e,t)}catch(e){}if(c(e,t))return a(!i(o.f,e,t),e[t])}},8480:(e,t,r)=>{"use strict";var n=r(1828),i=r(8727).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return n(e,i)}},3717:(e,t)=>{"use strict";t.f=Object.getOwnPropertySymbols},1625:(e,t,r)=>{"use strict";var n=r(9504);e.exports=n({}.isPrototypeOf)},1828:(e,t,r)=>{"use strict";var n=r(9504),i=r(9297),o=r(5397),a=r(9617).indexOf,s=r(421),u=n([].push);e.exports=function(e,t){var r,n=o(e),c=0,l=[];for(r in n)!i(s,r)&&i(n,r)&&u(l,r);for(;t.length>c;)i(n,r=t[c++])&&(~a(l,r)||u(l,r));return l}},1072:(e,t,r)=>{"use strict";var n=r(1828),i=r(8727);e.exports=Object.keys||function(e){return n(e,i)}},8773:(e,t)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,i=n&&!r.call({1:2},1);t.f=i?function(e){var t=n(this,e);return!!t&&t.enumerable}:r},2967:(e,t,r)=>{"use strict";var n=r(6706),i=r(34),o=r(7750),a=r(3506);e.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var e,t=!1,r={};try{(e=n(Object.prototype,"__proto__","set"))(r,[]),t=r instanceof Array}catch(e){}return function(r,n){return o(r),a(n),i(r)?(t?e(r,n):r.__proto__=n,r):r}}():void 0)},4270:(e,t,r)=>{"use strict";var n=r(9565),i=r(4901),o=r(34),a=TypeError;e.exports=function(e,t){var r,s;if("string"===t&&i(r=e.toString)&&!o(s=n(r,e)))return s;if(i(r=e.valueOf)&&!o(s=n(r,e)))return s;if("string"!==t&&i(r=e.toString)&&!o(s=n(r,e)))return s;throw new a("Can't convert object to primitive value")}},5031:(e,t,r)=>{"use strict";var n=r(7751),i=r(9504),o=r(8480),a=r(3717),s=r(8551),u=i([].concat);e.exports=n("Reflect","ownKeys")||function(e){var t=o.f(s(e)),r=a.f;return r?u(t,r(e)):t}},1103:e=>{"use strict";e.exports=function(e){try{return{error:!1,value:e()}}catch(e){return{error:!0,value:e}}}},916:(e,t,r)=>{"use strict";var n=r(4576),i=r(550),o=r(4901),a=r(2796),s=r(3706),u=r(8227),c=r(4215),l=r(6395),f=r(9519),p=i&&i.prototype,m=u("species"),d=!1,h=o(n.PromiseRejectionEvent),g=a("Promise",(function(){var e=s(i),t=e!==String(i);if(!t&&66===f)return!0;if(l&&(!p.catch||!p.finally))return!0;if(!f||f<51||!/native code/.test(e)){var r=new i((function(e){e(1)})),n=function(e){e((function(){}),(function(){}))};if((r.constructor={})[m]=n,!(d=r.then((function(){}))instanceof n))return!0}return!(t||"BROWSER"!==c&&"DENO"!==c||h)}));e.exports={CONSTRUCTOR:g,REJECTION_EVENT:h,SUBCLASSING:d}},550:(e,t,r)=>{"use strict";var n=r(4576);e.exports=n.Promise},3438:(e,t,r)=>{"use strict";var n=r(8551),i=r(34),o=r(6043);e.exports=function(e,t){if(n(e),i(t)&&t.constructor===e)return t;var r=o.f(e);return(0,r.resolve)(t),r.promise}},537:(e,t,r)=>{"use strict";var n=r(550),i=r(4428),o=r(916).CONSTRUCTOR;e.exports=o||!i((function(e){n.all(e).then(void 0,(function(){}))}))},1056:(e,t,r)=>{"use strict";var n=r(4913).f;e.exports=function(e,t,r){r in e||n(e,r,{configurable:!0,get:function(){return t[r]},set:function(e){t[r]=e}})}},8265:e=>{"use strict";var t=function(){this.head=null,this.tail=null};t.prototype={add:function(e){var t={item:e,next:null},r=this.tail;r?r.next=t:this.head=t,this.tail=t},get:function(){var e=this.head;if(e)return null===(this.head=e.next)&&(this.tail=null),e.item}},e.exports=t},6682:(e,t,r)=>{"use strict";var n=r(9565),i=r(8551),o=r(4901),a=r(2195),s=r(7323),u=TypeError;e.exports=function(e,t){var r=e.exec;if(o(r)){var c=n(r,e,t);return null!==c&&i(c),c}if("RegExp"===a(e))return n(s,e,t);throw new u("RegExp#exec called on incompatible receiver")}},7323:(e,t,r)=>{"use strict";var n,i,o=r(9565),a=r(9504),s=r(655),u=r(7979),c=r(8429),l=r(5745),f=r(2360),p=r(1181).get,m=r(3635),d=r(8814),h=l("native-string-replace",String.prototype.replace),g=RegExp.prototype.exec,y=g,x=a("".charAt),b=a("".indexOf),v=a("".replace),w=a("".slice),N=(i=/b*/g,o(g,n=/a/,"a"),o(g,i,"a"),0!==n.lastIndex||0!==i.lastIndex),E=c.BROKEN_CARET,A=void 0!==/()??/.exec("")[1];(N||A||E||m||d)&&(y=function(e){var t,r,n,i,a,c,l,m=this,d=p(m),S=s(e),M=d.raw;if(M)return M.lastIndex=m.lastIndex,t=o(y,M,S),m.lastIndex=M.lastIndex,t;var C=d.groups,T=E&&m.sticky,D=o(u,m),F=m.source,B=0,O=S;if(T&&(D=v(D,"y",""),-1===b(D,"g")&&(D+="g"),O=w(S,m.lastIndex),m.lastIndex>0&&(!m.multiline||m.multiline&&"\n"!==x(S,m.lastIndex-1))&&(F="(?: "+F+")",O=" "+O,B++),r=new RegExp("^(?:"+F+")",D)),A&&(r=new RegExp("^"+F+"$(?!\\s)",D)),N&&(n=m.lastIndex),i=o(g,T?r:m,O),T?i?(i.input=w(i.input,B),i[0]=w(i[0],B),i.index=m.lastIndex,m.lastIndex+=i[0].length):m.lastIndex=0:N&&i&&(m.lastIndex=m.global?i.index+i[0].length:n),A&&i&&i.length>1&&o(h,i[0],r,(function(){for(a=1;a<arguments.length-2;a++)void 0===arguments[a]&&(i[a]=void 0)})),i&&C)for(i.groups=c=f(null),a=0;a<C.length;a++)c[(l=C[a])[0]]=i[l[1]];return i}),e.exports=y},7979:(e,t,r)=>{"use strict";var n=r(8551);e.exports=function(){var e=n(this),t="";return e.hasIndices&&(t+="d"),e.global&&(t+="g"),e.ignoreCase&&(t+="i"),e.multiline&&(t+="m"),e.dotAll&&(t+="s"),e.unicode&&(t+="u"),e.unicodeSets&&(t+="v"),e.sticky&&(t+="y"),t}},1034:(e,t,r)=>{"use strict";var n=r(9565),i=r(9297),o=r(1625),a=r(7979),s=RegExp.prototype;e.exports=function(e){var t=e.flags;return void 0!==t||"flags"in s||i(e,"flags")||!o(s,e)?t:n(a,e)}},8429:(e,t,r)=>{"use strict";var n=r(9039),i=r(4576).RegExp,o=n((function(){var e=i("a","y");return e.lastIndex=2,null!==e.exec("abcd")})),a=o||n((function(){return!i("a","y").sticky})),s=o||n((function(){var e=i("^r","gy");return e.lastIndex=2,null!==e.exec("str")}));e.exports={BROKEN_CARET:s,MISSED_STICKY:a,UNSUPPORTED_Y:o}},3635:(e,t,r)=>{"use strict";var n=r(9039),i=r(4576).RegExp;e.exports=n((function(){var e=i(".","s");return!(e.dotAll&&e.test("\n")&&"s"===e.flags)}))},8814:(e,t,r)=>{"use strict";var n=r(9039),i=r(4576).RegExp;e.exports=n((function(){var e=i("(?<a>b)","g");return"b"!==e.exec("b").groups.a||"bc"!=="b".replace(e,"$<a>c")}))},7750:(e,t,r)=>{"use strict";var n=r(4117),i=TypeError;e.exports=function(e){if(n(e))throw new i("Can't call method on "+e);return e}},3389:(e,t,r)=>{"use strict";var n=r(4576),i=r(3724),o=Object.getOwnPropertyDescriptor;e.exports=function(e){if(!i)return n[e];var t=o(n,e);return t&&t.value}},7633:(e,t,r)=>{"use strict";var n=r(7751),i=r(2106),o=r(8227),a=r(3724),s=o("species");e.exports=function(e){var t=n(e);a&&t&&!t[s]&&i(t,s,{configurable:!0,get:function(){return this}})}},687:(e,t,r)=>{"use strict";var n=r(4913).f,i=r(9297),o=r(8227)("toStringTag");e.exports=function(e,t,r){e&&!r&&(e=e.prototype),e&&!i(e,o)&&n(e,o,{configurable:!0,value:t})}},6119:(e,t,r)=>{"use strict";var n=r(5745),i=r(3392),o=n("keys");e.exports=function(e){return o[e]||(o[e]=i(e))}},7629:(e,t,r)=>{"use strict";var n=r(6395),i=r(4576),o=r(9433),a="__core-js_shared__",s=e.exports=i[a]||o(a,{});(s.versions||(s.versions=[])).push({version:"3.38.1",mode:n?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE",source:"https://github.com/zloirock/core-js"})},5745:(e,t,r)=>{"use strict";var n=r(7629);e.exports=function(e,t){return n[e]||(n[e]=t||{})}},2293:(e,t,r)=>{"use strict";var n=r(8551),i=r(5548),o=r(4117),a=r(8227)("species");e.exports=function(e,t){var r,s=n(e).constructor;return void 0===s||o(r=n(s)[a])?t:i(r)}},8183:(e,t,r)=>{"use strict";var n=r(9504),i=r(1291),o=r(655),a=r(7750),s=n("".charAt),u=n("".charCodeAt),c=n("".slice),l=function(e){return function(t,r){var n,l,f=o(a(t)),p=i(r),m=f.length;return p<0||p>=m?e?"":void 0:(n=u(f,p))<55296||n>56319||p+1===m||(l=u(f,p+1))<56320||l>57343?e?s(f,p):n:e?c(f,p,p+2):l-56320+(n-55296<<10)+65536}};e.exports={codeAt:l(!1),charAt:l(!0)}},4495:(e,t,r)=>{"use strict";var n=r(9519),i=r(9039),o=r(4576).String;e.exports=!!Object.getOwnPropertySymbols&&!i((function(){var e=Symbol("symbol detection");return!o(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},9225:(e,t,r)=>{"use strict";var n,i,o,a,s=r(4576),u=r(8745),c=r(6080),l=r(4901),f=r(9297),p=r(9039),m=r(397),d=r(7680),h=r(4055),g=r(2812),y=r(9544),x=r(6193),b=s.setImmediate,v=s.clearImmediate,w=s.process,N=s.Dispatch,E=s.Function,A=s.MessageChannel,S=s.String,M=0,C={},T="onreadystatechange";p((function(){n=s.location}));var D=function(e){if(f(C,e)){var t=C[e];delete C[e],t()}},F=function(e){return function(){D(e)}},B=function(e){D(e.data)},O=function(e){s.postMessage(S(e),n.protocol+"//"+n.host)};b&&v||(b=function(e){g(arguments.length,1);var t=l(e)?e:E(e),r=d(arguments,1);return C[++M]=function(){u(t,void 0,r)},i(M),M},v=function(e){delete C[e]},x?i=function(e){w.nextTick(F(e))}:N&&N.now?i=function(e){N.now(F(e))}:A&&!y?(a=(o=new A).port2,o.port1.onmessage=B,i=c(a.postMessage,a)):s.addEventListener&&l(s.postMessage)&&!s.importScripts&&n&&"file:"!==n.protocol&&!p(O)?(i=O,s.addEventListener("message",B,!1)):i=T in h("script")?function(e){m.appendChild(h("script"))[T]=function(){m.removeChild(this),D(e)}}:function(e){setTimeout(F(e),0)}),e.exports={set:b,clear:v}},5610:(e,t,r)=>{"use strict";var n=r(1291),i=Math.max,o=Math.min;e.exports=function(e,t){var r=n(e);return r<0?i(r+t,0):o(r,t)}},5397:(e,t,r)=>{"use strict";var n=r(7055),i=r(7750);e.exports=function(e){return n(i(e))}},1291:(e,t,r)=>{"use strict";var n=r(741);e.exports=function(e){var t=+e;return t!=t||0===t?0:n(t)}},8014:(e,t,r)=>{"use strict";var n=r(1291),i=Math.min;e.exports=function(e){var t=n(e);return t>0?i(t,9007199254740991):0}},8981:(e,t,r)=>{"use strict";var n=r(7750),i=Object;e.exports=function(e){return i(n(e))}},2777:(e,t,r)=>{"use strict";var n=r(9565),i=r(34),o=r(757),a=r(5966),s=r(4270),u=r(8227),c=TypeError,l=u("toPrimitive");e.exports=function(e,t){if(!i(e)||o(e))return e;var r,u=a(e,l);if(u){if(void 0===t&&(t="default"),r=n(u,e,t),!i(r)||o(r))return r;throw new c("Can't convert object to primitive value")}return void 0===t&&(t="number"),s(e,t)}},6969:(e,t,r)=>{"use strict";var n=r(2777),i=r(757);e.exports=function(e){var t=n(e,"string");return i(t)?t:t+""}},2140:(e,t,r)=>{"use strict";var n={};n[r(8227)("toStringTag")]="z",e.exports="[object z]"===String(n)},655:(e,t,r)=>{"use strict";var n=r(6955),i=String;e.exports=function(e){if("Symbol"===n(e))throw new TypeError("Cannot convert a Symbol value to a string");return i(e)}},6823:e=>{"use strict";var t=String;e.exports=function(e){try{return t(e)}catch(e){return"Object"}}},3392:(e,t,r)=>{"use strict";var n=r(9504),i=0,o=Math.random(),a=n(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+a(++i+o,36)}},7040:(e,t,r)=>{"use strict";var n=r(4495);e.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},8686:(e,t,r)=>{"use strict";var n=r(3724),i=r(9039);e.exports=n&&i((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},2812:e=>{"use strict";var t=TypeError;e.exports=function(e,r){if(e<r)throw new t("Not enough arguments");return e}},8622:(e,t,r)=>{"use strict";var n=r(4576),i=r(4901),o=n.WeakMap;e.exports=i(o)&&/native code/.test(String(o))},8227:(e,t,r)=>{"use strict";var n=r(4576),i=r(5745),o=r(9297),a=r(3392),s=r(4495),u=r(7040),c=n.Symbol,l=i("wks"),f=u?c.for||c:c&&c.withoutSetter||a;e.exports=function(e){return o(l,e)||(l[e]=s&&o(c,e)?c[e]:f("Symbol."+e)),l[e]}},4423:(e,t,r)=>{"use strict";var n=r(6518),i=r(9617).includes,o=r(9039),a=r(6469);n({target:"Array",proto:!0,forced:o((function(){return!Array(1).includes()}))},{includes:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),a("includes")},2712:(e,t,r)=>{"use strict";var n=r(6518),i=r(926).left,o=r(4598),a=r(9519);n({target:"Array",proto:!0,forced:!r(6193)&&a>79&&a<83||!o("reduce")},{reduce:function(e){var t=arguments.length;return i(this,e,t,t>1?arguments[1]:void 0)}})},6910:(e,t,r)=>{"use strict";var n=r(6518),i=r(9504),o=r(9306),a=r(8981),s=r(6198),u=r(4606),c=r(655),l=r(9039),f=r(4488),p=r(4598),m=r(3709),d=r(3763),h=r(9519),g=r(3607),y=[],x=i(y.sort),b=i(y.push),v=l((function(){y.sort(void 0)})),w=l((function(){y.sort(null)})),N=p("sort"),E=!l((function(){if(h)return h<70;if(!(m&&m>3)){if(d)return!0;if(g)return g<603;var e,t,r,n,i="";for(e=65;e<76;e++){switch(t=String.fromCharCode(e),e){case 66:case 69:case 70:case 72:r=3;break;case 68:case 71:r=4;break;default:r=2}for(n=0;n<47;n++)y.push({k:t+n,v:r})}for(y.sort((function(e,t){return t.v-e.v})),n=0;n<y.length;n++)t=y[n].k.charAt(0),i.charAt(i.length-1)!==t&&(i+=t);return"DGBEFHACIJK"!==i}}));n({target:"Array",proto:!0,forced:v||!w||!N||!E},{sort:function(e){void 0!==e&&o(e);var t=a(this);if(E)return void 0===e?x(t):x(t,e);var r,n,i=[],l=s(t);for(n=0;n<l;n++)n in t&&b(i,t[n]);for(f(i,function(e){return function(t,r){return void 0===r?-1:void 0===t?1:void 0!==e?+e(t,r)||0:c(t)>c(r)?1:-1}}(e)),r=s(i),n=0;n<r;)t[n]=i[n++];for(;n<l;)u(t,n++);return t}})},3110:(e,t,r)=>{"use strict";var n=r(6518),i=r(7751),o=r(8745),a=r(9565),s=r(9504),u=r(9039),c=r(4901),l=r(757),f=r(7680),p=r(6933),m=r(4495),d=String,h=i("JSON","stringify"),g=s(/./.exec),y=s("".charAt),x=s("".charCodeAt),b=s("".replace),v=s(1..toString),w=/[\uD800-\uDFFF]/g,N=/^[\uD800-\uDBFF]$/,E=/^[\uDC00-\uDFFF]$/,A=!m||u((function(){var e=i("Symbol")("stringify detection");return"[null]"!==h([e])||"{}"!==h({a:e})||"{}"!==h(Object(e))})),S=u((function(){return'"\\udf06\\ud834"'!==h("\udf06\ud834")||'"\\udead"'!==h("\udead")})),M=function(e,t){var r=f(arguments),n=p(t);if(c(n)||void 0!==e&&!l(e))return r[1]=function(e,t){if(c(n)&&(t=a(n,this,d(e),t)),!l(t))return t},o(h,null,r)},C=function(e,t,r){var n=y(r,t-1),i=y(r,t+1);return g(N,e)&&!g(E,i)||g(E,e)&&!g(N,n)?"\\u"+v(x(e,0),16):e};h&&n({target:"JSON",stat:!0,arity:3,forced:A||S},{stringify:function(e,t,r){var n=f(arguments),i=o(A?M:h,null,n);return S&&"string"==typeof i?b(i,w,C):i}})},3921:(e,t,r)=>{"use strict";var n=r(6518),i=r(2652),o=r(4659);n({target:"Object",stat:!0},{fromEntries:function(e){var t={};return i(e,(function(e,r){o(t,e,r)}),{AS_ENTRIES:!0}),t}})},6499:(e,t,r)=>{"use strict";var n=r(6518),i=r(9565),o=r(9306),a=r(6043),s=r(1103),u=r(2652);n({target:"Promise",stat:!0,forced:r(537)},{all:function(e){var t=this,r=a.f(t),n=r.resolve,c=r.reject,l=s((function(){var r=o(t.resolve),a=[],s=0,l=1;u(e,(function(e){var o=s++,u=!1;l++,i(r,t,e).then((function(e){u||(u=!0,a[o]=e,--l||n(a))}),c)})),--l||n(a)}));return l.error&&c(l.value),r.promise}})},2003:(e,t,r)=>{"use strict";var n=r(6518),i=r(6395),o=r(916).CONSTRUCTOR,a=r(550),s=r(7751),u=r(4901),c=r(6840),l=a&&a.prototype;if(n({target:"Promise",proto:!0,forced:o,real:!0},{catch:function(e){return this.then(void 0,e)}}),!i&&u(a)){var f=s("Promise").prototype.catch;l.catch!==f&&c(l,"catch",f,{unsafe:!0})}},436:(e,t,r)=>{"use strict";var n,i,o,a=r(6518),s=r(6395),u=r(6193),c=r(4576),l=r(9565),f=r(6840),p=r(2967),m=r(687),d=r(7633),h=r(9306),g=r(4901),y=r(34),x=r(679),b=r(2293),v=r(9225).set,w=r(1955),N=r(3138),E=r(1103),A=r(8265),S=r(1181),M=r(550),C=r(916),T=r(6043),D="Promise",F=C.CONSTRUCTOR,B=C.REJECTION_EVENT,O=C.SUBCLASSING,_=S.getterFor(D),z=S.set,I=M&&M.prototype,k=M,q=I,R=c.TypeError,P=c.document,j=c.process,U=T.f,L=U,$=!!(P&&P.createEvent&&c.dispatchEvent),H="unhandledrejection",G=function(e){var t;return!(!y(e)||!g(t=e.then))&&t},Z=function(e,t){var r,n,i,o=t.value,a=1===t.state,s=a?e.ok:e.fail,u=e.resolve,c=e.reject,f=e.domain;try{s?(a||(2===t.rejection&&X(t),t.rejection=1),!0===s?r=o:(f&&f.enter(),r=s(o),f&&(f.exit(),i=!0)),r===e.promise?c(new R("Promise-chain cycle")):(n=G(r))?l(n,r,u,c):u(r)):c(o)}catch(e){f&&!i&&f.exit(),c(e)}},V=function(e,t){e.notified||(e.notified=!0,w((function(){for(var r,n=e.reactions;r=n.get();)Z(r,e);e.notified=!1,t&&!e.rejection&&Y(e)})))},W=function(e,t,r){var n,i;$?((n=P.createEvent("Event")).promise=t,n.reason=r,n.initEvent(e,!1,!0),c.dispatchEvent(n)):n={promise:t,reason:r},!B&&(i=c["on"+e])?i(n):e===H&&N("Unhandled promise rejection",r)},Y=function(e){l(v,c,(function(){var t,r=e.facade,n=e.value;if(J(e)&&(t=E((function(){u?j.emit("unhandledRejection",n,r):W(H,r,n)})),e.rejection=u||J(e)?2:1,t.error))throw t.value}))},J=function(e){return 1!==e.rejection&&!e.parent},X=function(e){l(v,c,(function(){var t=e.facade;u?j.emit("rejectionHandled",t):W("rejectionhandled",t,e.value)}))},Q=function(e,t,r){return function(n){e(t,n,r)}},K=function(e,t,r){e.done||(e.done=!0,r&&(e=r),e.value=t,e.state=2,V(e,!0))},ee=function(e,t,r){if(!e.done){e.done=!0,r&&(e=r);try{if(e.facade===t)throw new R("Promise can't be resolved itself");var n=G(t);n?w((function(){var r={done:!1};try{l(n,t,Q(ee,r,e),Q(K,r,e))}catch(t){K(r,t,e)}})):(e.value=t,e.state=1,V(e,!1))}catch(t){K({done:!1},t,e)}}};if(F&&(q=(k=function(e){x(this,q),h(e),l(n,this);var t=_(this);try{e(Q(ee,t),Q(K,t))}catch(e){K(t,e)}}).prototype,(n=function(e){z(this,{type:D,done:!1,notified:!1,parent:!1,reactions:new A,rejection:!1,state:0,value:null})}).prototype=f(q,"then",(function(e,t){var r=_(this),n=U(b(this,k));return r.parent=!0,n.ok=!g(e)||e,n.fail=g(t)&&t,n.domain=u?j.domain:void 0,0===r.state?r.reactions.add(n):w((function(){Z(n,r)})),n.promise})),i=function(){var e=new n,t=_(e);this.promise=e,this.resolve=Q(ee,t),this.reject=Q(K,t)},T.f=U=function(e){return e===k||void 0===e?new i(e):L(e)},!s&&g(M)&&I!==Object.prototype)){o=I.then,O||f(I,"then",(function(e,t){var r=this;return new k((function(e,t){l(o,r,e,t)})).then(e,t)}),{unsafe:!0});try{delete I.constructor}catch(e){}p&&p(I,q)}a({global:!0,constructor:!0,wrap:!0,forced:F},{Promise:k}),m(k,D,!1,!0),d(D)},3362:(e,t,r)=>{"use strict";r(436),r(6499),r(2003),r(7743),r(1481),r(280)},7743:(e,t,r)=>{"use strict";var n=r(6518),i=r(9565),o=r(9306),a=r(6043),s=r(1103),u=r(2652);n({target:"Promise",stat:!0,forced:r(537)},{race:function(e){var t=this,r=a.f(t),n=r.reject,c=s((function(){var a=o(t.resolve);u(e,(function(e){i(a,t,e).then(r.resolve,n)}))}));return c.error&&n(c.value),r.promise}})},1481:(e,t,r)=>{"use strict";var n=r(6518),i=r(6043);n({target:"Promise",stat:!0,forced:r(916).CONSTRUCTOR},{reject:function(e){var t=i.f(this);return(0,t.reject)(e),t.promise}})},280:(e,t,r)=>{"use strict";var n=r(6518),i=r(7751),o=r(6395),a=r(550),s=r(916).CONSTRUCTOR,u=r(3438),c=i("Promise"),l=o&&!s;n({target:"Promise",stat:!0,forced:o||s},{resolve:function(e){return u(l&&this===c?a:this,e)}})},4864:(e,t,r)=>{"use strict";var n=r(3724),i=r(4576),o=r(9504),a=r(2796),s=r(3167),u=r(6699),c=r(2360),l=r(8480).f,f=r(1625),p=r(788),m=r(655),d=r(1034),h=r(8429),g=r(1056),y=r(6840),x=r(9039),b=r(9297),v=r(1181).enforce,w=r(7633),N=r(8227),E=r(3635),A=r(8814),S=N("match"),M=i.RegExp,C=M.prototype,T=i.SyntaxError,D=o(C.exec),F=o("".charAt),B=o("".replace),O=o("".indexOf),_=o("".slice),z=/^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/,I=/a/g,k=/a/g,q=new M(I)!==I,R=h.MISSED_STICKY,P=h.UNSUPPORTED_Y;if(a("RegExp",n&&(!q||R||E||A||x((function(){return k[S]=!1,M(I)!==I||M(k)===k||"/a/i"!==String(M(I,"i"))}))))){for(var j=function(e,t){var r,n,i,o,a,l,h=f(C,this),g=p(e),y=void 0===t,x=[],w=e;if(!h&&g&&y&&e.constructor===j)return e;if((g||f(C,e))&&(e=e.source,y&&(t=d(w))),e=void 0===e?"":m(e),t=void 0===t?"":m(t),w=e,E&&"dotAll"in I&&(n=!!t&&O(t,"s")>-1)&&(t=B(t,/s/g,"")),r=t,R&&"sticky"in I&&(i=!!t&&O(t,"y")>-1)&&P&&(t=B(t,/y/g,"")),A&&(o=function(e){for(var t,r=e.length,n=0,i="",o=[],a=c(null),s=!1,u=!1,l=0,f="";n<=r;n++){if("\\"===(t=F(e,n)))t+=F(e,++n);else if("]"===t)s=!1;else if(!s)switch(!0){case"["===t:s=!0;break;case"("===t:if(i+=t,"?:"===_(e,n+1,n+3))continue;D(z,_(e,n+1))&&(n+=2,u=!0),l++;continue;case">"===t&&u:if(""===f||b(a,f))throw new T("Invalid capture group name");a[f]=!0,o[o.length]=[f,l],u=!1,f="";continue}u?f+=t:i+=t}return[i,o]}(e),e=o[0],x=o[1]),a=s(M(e,t),h?this:C,j),(n||i||x.length)&&(l=v(a),n&&(l.dotAll=!0,l.raw=j(function(e){for(var t,r=e.length,n=0,i="",o=!1;n<=r;n++)"\\"!==(t=F(e,n))?o||"."!==t?("["===t?o=!0:"]"===t&&(o=!1),i+=t):i+="[\\s\\S]":i+=t+F(e,++n);return i}(e),r)),i&&(l.sticky=!0),x.length&&(l.groups=x)),e!==w)try{u(a,"source",""===w?"(?:)":w)}catch(e){}return a},U=l(M),L=0;U.length>L;)g(j,M,U[L++]);C.constructor=j,j.prototype=C,y(i,"RegExp",j,{constructor:!0})}w("RegExp")},7465:(e,t,r)=>{"use strict";var n=r(3724),i=r(3635),o=r(2195),a=r(2106),s=r(1181).get,u=RegExp.prototype,c=TypeError;n&&i&&a(u,"dotAll",{configurable:!0,get:function(){if(this!==u){if("RegExp"===o(this))return!!s(this).dotAll;throw new c("Incompatible receiver, RegExp required")}}})},7495:(e,t,r)=>{"use strict";var n=r(6518),i=r(7323);n({target:"RegExp",proto:!0,forced:/./.exec!==i},{exec:i})},5440:(e,t,r)=>{"use strict";var n=r(8745),i=r(9565),o=r(9504),a=r(9228),s=r(9039),u=r(8551),c=r(4901),l=r(4117),f=r(1291),p=r(8014),m=r(655),d=r(7750),h=r(7829),g=r(5966),y=r(2478),x=r(6682),b=r(8227)("replace"),v=Math.max,w=Math.min,N=o([].concat),E=o([].push),A=o("".indexOf),S=o("".slice),M="$0"==="a".replace(/./,"$0"),C=!!/./[b]&&""===/./[b]("a","$0");a("replace",(function(e,t,r){var o=C?"$":"$0";return[function(e,r){var n=d(this),o=l(e)?void 0:g(e,b);return o?i(o,e,n,r):i(t,m(n),e,r)},function(e,i){var a=u(this),s=m(e);if("string"==typeof i&&-1===A(i,o)&&-1===A(i,"$<")){var l=r(t,a,s,i);if(l.done)return l.value}var d=c(i);d||(i=m(i));var g,b=a.global;b&&(g=a.unicode,a.lastIndex=0);for(var M,C=[];null!==(M=x(a,s))&&(E(C,M),b);)""===m(M[0])&&(a.lastIndex=h(s,p(a.lastIndex),g));for(var T,D="",F=0,B=0;B<C.length;B++){for(var O,_=m((M=C[B])[0]),z=v(w(f(M.index),s.length),0),I=[],k=1;k<M.length;k++)E(I,void 0===(T=M[k])?T:String(T));var q=M.groups;if(d){var R=N([_],I,z,s);void 0!==q&&E(R,q),O=m(n(i,void 0,R))}else O=y(_,s,z,I,q,i);z>=F&&(D+=S(s,F,z)+O,F=z+_.length)}return D+S(s,F)}]}),!!s((function(){var e=/./;return e.exec=function(){var e=[];return e.groups={a:"7"},e},"7"!=="".replace(e,"$<a>")}))||!M||C)},9463:(e,t,r)=>{"use strict";var n=r(6518),i=r(3724),o=r(4576),a=r(9504),s=r(9297),u=r(4901),c=r(1625),l=r(655),f=r(2106),p=r(7740),m=o.Symbol,d=m&&m.prototype;if(i&&u(m)&&(!("description"in d)||void 0!==m().description)){var h={},g=function(){var e=arguments.length<1||void 0===arguments[0]?void 0:l(arguments[0]),t=c(d,this)?new m(e):void 0===e?m():m(e);return""===e&&(h[t]=!0),t};p(g,m),g.prototype=d,d.constructor=g;var y="Symbol(description detection)"===String(m("description detection")),x=a(d.valueOf),b=a(d.toString),v=/^Symbol\((.*)\)[^)]+$/,w=a("".replace),N=a("".slice);f(d,"description",{configurable:!0,get:function(){var e=x(this);if(s(h,e))return"";var t=b(e),r=y?N(t,7,-1):w(t,v,"$1");return""===r?void 0:r}}),n({global:!0,constructor:!0,forced:!0},{Symbol:g})}},2369:function(e){e.exports=function(){"use strict";function e(){return!0}function t(){return!1}function r(){}const n="Argument is not a typed-function.";return function i(){function o(e){return"object"==typeof e&&null!==e&&e.constructor===Object}const a=[{name:"number",test:function(e){return"number"==typeof e}},{name:"string",test:function(e){return"string"==typeof e}},{name:"boolean",test:function(e){return"boolean"==typeof e}},{name:"Function",test:function(e){return"function"==typeof e}},{name:"Array",test:Array.isArray},{name:"Date",test:function(e){return e instanceof Date}},{name:"RegExp",test:function(e){return e instanceof RegExp}},{name:"Object",test:o},{name:"null",test:function(e){return null===e}},{name:"undefined",test:function(e){return void 0===e}}],s={name:"any",test:e,isAny:!0};let u,c,l=0,f={createCount:0};function p(e){const t=u.get(e);if(t)return t;let r='Unknown type "'+e+'"';const n=e.toLowerCase();let i;for(i of c)if(i.toLowerCase()===n){r+='. Did you mean "'+i+'" ?';break}throw new TypeError(r)}function m(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"any";const r=t?p(t).index:c.length,n=[];for(let t=0;t<e.length;++t){if(!e[t]||"string"!=typeof e[t].name||"function"!=typeof e[t].test)throw new TypeError("Object with properties {name: string, test: function} expected");const i=e[t].name;if(u.has(i))throw new TypeError('Duplicate type name "'+i+'"');n.push(i),u.set(i,{name:i,test:e[t].test,isAny:e[t].isAny,index:r+t,conversionsTo:[]})}const i=c.slice(r);c=c.slice(0,r).concat(n).concat(i);for(let e=r+n.length;e<c.length;++e)u.get(c[e]).index=e}function d(){u=new Map,c=[],l=0,m([s],!1)}function h(e){const t=c.filter((t=>{const r=u.get(t);return!r.isAny&&r.test(e)}));return t.length?t:["any"]}function g(e){return e&&"function"==typeof e&&"_typedFunctionData"in e}function y(e,t,r){if(!g(e))throw new TypeError(n);const i=r&&r.exact,o=N(Array.isArray(t)?t.join(","):t),a=x(o);if(!i||a in e.signatures){const t=e._typedFunctionData.signatureMap.get(a);if(t)return t}const s=o.length;let u,c;if(i){let t;for(t in u=[],e.signatures)u.push(e._typedFunctionData.signatureMap.get(t))}else u=e._typedFunctionData.signatures;for(let e=0;e<s;++e){const t=o[e],r=[];let n;for(n of u){const i=M(n.params,e);if(i&&(!t.restParam||i.restParam)){if(!i.hasAny){const e=w(i);if(t.types.some((t=>!e.has(t.name))))continue}r.push(n)}}if(u=r,0===u.length)break}for(c of u)if(c.params.length<=s)return c;throw new TypeError("Signature not found (signature: "+(e.name||"unnamed")+"("+x(o,", ")+"))")}function x(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:",";return e.map((e=>e.name)).join(t)}function b(e){const t=0===e.indexOf("..."),r=(t?e.length>3?e.slice(3):"any":e).split("|").map((e=>p(e.trim())));let n=!1,i=t?"...":"";return{types:r.map((function(e){return n=e.isAny||n,i+=e.name+"|",{name:e.name,typeIndex:e.index,test:e.test,isAny:e.isAny,conversion:null,conversionIndex:-1}})),name:i.slice(0,-1),hasAny:n,hasConversion:!1,restParam:t}}function v(e){const t=function(e){if(0===e.length)return[];const t=e.map(p);e.length>1&&t.sort(((e,t)=>e.index-t.index));let r=t[0].conversionsTo;if(1===e.length)return r;r=r.concat([]);const n=new Set(e);for(let e=1;e<t.length;++e){let i;for(i of t[e].conversionsTo)n.has(i.from)||(r.push(i),n.add(i.from))}return r}(e.types.map((e=>e.name)));let r=e.hasAny,n=e.name;const i=t.map((function(e){const t=p(e.from);return r=t.isAny||r,n+="|"+e.from,{name:e.from,typeIndex:t.index,test:t.test,isAny:t.isAny,conversion:e,conversionIndex:e.index}}));return{types:e.types.concat(i),name:n,hasAny:r,hasConversion:i.length>0,restParam:e.restParam}}function w(e){return e.typeSet||(e.typeSet=new Set,e.types.forEach((t=>e.typeSet.add(t.name)))),e.typeSet}function N(e){const t=[];if("string"!=typeof e)throw new TypeError("Signatures must be strings");const r=e.trim();if(""===r)return t;const n=r.split(",");for(let e=0;e<n.length;++e){const r=b(n[e].trim());if(r.restParam&&e!==n.length-1)throw new SyntaxError('Unexpected rest parameter "'+n[e]+'": only allowed for the last parameter');if(0===r.types.length)return null;t.push(r)}return t}function E(e){const t=H(e);return!!t&&t.restParam}function A(t){if(t&&0!==t.types.length){if(1===t.types.length)return p(t.types[0].name).test;if(2===t.types.length){const e=p(t.types[0].name).test,r=p(t.types[1].name).test;return function(t){return e(t)||r(t)}}{const e=t.types.map((function(e){return p(e.name).test}));return function(t){for(let r=0;r<e.length;r++)if(e[r](t))return!0;return!1}}}return e}function S(e){let t,r,n;if(E(e)){t=$(e).map(A);const r=t.length,n=A(H(e)),i=function(e){for(let t=r;t<e.length;t++)if(!n(e[t]))return!1;return!0};return function(e){for(let r=0;r<t.length;r++)if(!t[r](e[r]))return!1;return i(e)&&e.length>=r+1}}return 0===e.length?function(e){return 0===e.length}:1===e.length?(r=A(e[0]),function(e){return r(e[0])&&1===e.length}):2===e.length?(r=A(e[0]),n=A(e[1]),function(e){return r(e[0])&&n(e[1])&&2===e.length}):(t=e.map(A),function(e){for(let r=0;r<t.length;r++)if(!t[r](e[r]))return!1;return e.length===t.length})}function M(e,t){return t<e.length?e[t]:E(e)?H(e):null}function C(e,t){const r=M(e,t);return r?w(r):new Set}function T(e){return null===e.conversion||void 0===e.conversion}function D(e,t){const r=new Set;return e.forEach((e=>{const n=C(e.params,t);let i;for(i of n)r.add(i)})),r.has("any")?["any"]:Array.from(r)}function F(e,t,r){let n,i;const o=e||"unnamed";let a,s=r;for(a=0;a<t.length;a++){const e=[];if(s.forEach((r=>{const n=A(M(r.params,a));(a<r.params.length||E(r.params))&&n(t[a])&&e.push(r)})),0===e.length){if(i=D(s,a),i.length>0){const e=h(t[a]);return n=new TypeError("Unexpected type of argument in function "+o+" (expected: "+i.join(" or ")+", actual: "+e.join(" | ")+", index: "+a+")"),n.data={category:"wrongType",fn:o,index:a,actual:e,expected:i},n}}else s=e}const u=s.map((function(e){return E(e.params)?1/0:e.params.length}));if(t.length<Math.min.apply(null,u))return i=D(s,a),n=new TypeError("Too few arguments in function "+o+" (expected: "+i.join(" or ")+", index: "+t.length+")"),n.data={category:"tooFewArgs",fn:o,index:t.length,expected:i},n;const c=Math.max.apply(null,u);if(t.length>c)return n=new TypeError("Too many arguments in function "+o+" (expected: "+c+", actual: "+t.length+")"),n.data={category:"tooManyArgs",fn:o,index:t.length,expectedLength:c},n;const l=[];for(let e=0;e<t.length;++e)l.push(h(t[e]).join("|"));return n=new TypeError('Arguments of type "'+l.join(", ")+'" do not match any of the defined signatures of function '+o+"."),n.data={category:"mismatch",actual:l},n}function B(e){let t=c.length+1;for(let r=0;r<e.types.length;r++)T(e.types[r])&&(t=Math.min(t,e.types[r].typeIndex));return t}function O(e){let t=l+1;for(let r=0;r<e.types.length;r++)T(e.types[r])||(t=Math.min(t,e.types[r].conversionIndex));return t}function _(e,t){if(e.hasAny){if(!t.hasAny)return 1}else if(t.hasAny)return-1;if(e.restParam){if(!t.restParam)return 1}else if(t.restParam)return-1;if(e.hasConversion){if(!t.hasConversion)return 1}else if(t.hasConversion)return-1;const r=B(e)-B(t);if(r<0)return-1;if(r>0)return 1;const n=O(e)-O(t);return n<0?-1:n>0?1:0}function z(e,t){const r=e.params,n=t.params,i=H(r),o=H(n),a=E(r),s=E(n);if(a&&i.hasAny){if(!s||!o.hasAny)return 1}else if(s&&o.hasAny)return-1;let u,c=0,l=0;for(u of r)u.hasAny&&++c,u.hasConversion&&++l;let f=0,p=0;for(u of n)u.hasAny&&++f,u.hasConversion&&++p;if(c!==f)return c-f;if(a&&i.hasConversion){if(!s||!o.hasConversion)return 1}else if(s&&o.hasConversion)return-1;if(l!==p)return l-p;if(a){if(!s)return 1}else if(s)return-1;const m=(r.length-n.length)*(a?-1:1);if(0!==m)return m;const d=[];let h,g=0;for(let e=0;e<r.length;++e){const t=_(r[e],n[e]);d.push(t),g+=t}if(0!==g)return g;for(h of d)if(0!==h)return h;return 0}function I(e,t){let r=t;if(e.some((e=>e.hasConversion))){const n=E(e),i=e.map(k);r=function(){const e=[],r=n?arguments.length-1:arguments.length;for(let t=0;t<r;t++)e[t]=i[t](arguments[t]);return n&&(e[r]=arguments[r].map(i[r])),t.apply(this,e)}}let n=r;if(E(e)){const t=e.length-1;n=function(){return r.apply(this,G(arguments,0,t).concat([G(arguments,t)]))}}return n}function k(e){let t,r,n,i;const o=[],a=[];switch(e.types.forEach((function(e){e.conversion&&(o.push(p(e.conversion.from).test),a.push(e.conversion.convert))})),a.length){case 0:return function(e){return e};case 1:return t=o[0],n=a[0],function(e){return t(e)?n(e):e};case 2:return t=o[0],r=o[1],n=a[0],i=a[1],function(e){return t(e)?n(e):r(e)?i(e):e};default:return function(e){for(let t=0;t<a.length;t++)if(o[t](e))return a[t](e);return e}}}function q(e){return function e(t,r,n){if(r<t.length){const a=t[r];let s=[];if(a.restParam){const e=a.types.filter(T);e.length<a.types.length&&s.push({types:e,name:"..."+e.map((e=>e.name)).join("|"),hasAny:e.some((e=>e.isAny)),hasConversion:!1,restParam:!0}),s.push(a)}else s=a.types.map((function(e){return{types:[e],name:e.name,hasAny:e.isAny,hasConversion:e.conversion,restParam:!1}}));return i=s,o=function(i){return e(t,r+1,n.concat([i]))},Array.prototype.concat.apply([],i.map(o))}var i,o;return[n]}(e,0,[])}function R(e,t){const r=Math.max(e.length,t.length);for(let n=0;n<r;n++){const r=C(e,n),i=C(t,n);let o,a=!1;for(o of i)if(r.has(o)){a=!0;break}if(!a)return!1}const n=e.length,i=t.length,o=E(e),a=E(t);return o?a?n===i:i>=n:a?n>=i:n===i}function P(e,t,r){const n=[];let i;for(i of e){let e=r[i];if("number"!=typeof e)throw new TypeError('No definition for referenced signature "'+i+'"');if(e=t[e],"function"!=typeof e)return!1;n.push(e)}return n}function j(e,t,r){const n=function(e){return e.map((e=>Y(e)?V(e.referToSelf.callback):W(e)?Z(e.referTo.references,e.referTo.callback):e))}(e),i=new Array(n.length).fill(!1);let o=!0;for(;o;){o=!1;let e=!0;for(let a=0;a<n.length;++a){if(i[a])continue;const s=n[a];if(Y(s))n[a]=s.referToSelf.callback(r),n[a].referToSelf=s.referToSelf,i[a]=!0,e=!1;else if(W(s)){const r=P(s.referTo.references,n,t);r?(n[a]=s.referTo.callback.apply(this,r),n[a].referTo=s.referTo,i[a]=!0,e=!1):o=!0}}if(e&&o)throw new SyntaxError("Circular reference detected in resolving typed.referTo")}return n}function U(e,n){if(f.createCount++,0===Object.keys(n).length)throw new SyntaxError("No signatures provided");f.warnAgainstDeprecatedThis&&function(e){const t=/\bthis(\(|\.signatures\b)/;Object.keys(e).forEach((r=>{const n=e[r];if(t.test(n.toString()))throw new SyntaxError("Using `this` to self-reference a function is deprecated since typed-function@3. Use typed.referTo and typed.referToSelf instead.")}))}(n);const i=[],o=[],a={},s=[];let u;for(u in n){if(!Object.prototype.hasOwnProperty.call(n,u))continue;const e=N(u);if(!e)continue;i.forEach((function(t){if(R(t,e))throw new TypeError('Conflicting signatures "'+x(t)+'" and "'+x(e)+'".')})),i.push(e);const t=o.length;o.push(n[u]);const r=e.map(v);let c;for(c of q(r)){const e=x(c);s.push({params:c,name:e,fn:t}),c.every((e=>!e.hasConversion))&&(a[e]=t)}}s.sort(z);const c=j(o,a,se);let l;for(l in a)Object.prototype.hasOwnProperty.call(a,l)&&(a[l]=c[a[l]]);const p=[],m=new Map;for(l of s)m.has(l.name)||(l.fn=c[l.fn],p.push(l),m.set(l.name,l));const d=p[0]&&p[0].params.length<=2&&!E(p[0].params),h=p[1]&&p[1].params.length<=2&&!E(p[1].params),g=p[2]&&p[2].params.length<=2&&!E(p[2].params),y=p[3]&&p[3].params.length<=2&&!E(p[3].params),b=p[4]&&p[4].params.length<=2&&!E(p[4].params),w=p[5]&&p[5].params.length<=2&&!E(p[5].params),M=d&&h&&g&&y&&b&&w;for(let e=0;e<p.length;++e)p[e].test=S(p[e].params);const C=d?A(p[0].params[0]):t,T=h?A(p[1].params[0]):t,D=g?A(p[2].params[0]):t,F=y?A(p[3].params[0]):t,B=b?A(p[4].params[0]):t,O=w?A(p[5].params[0]):t,_=d?A(p[0].params[1]):t,k=h?A(p[1].params[1]):t,P=g?A(p[2].params[1]):t,U=y?A(p[3].params[1]):t,L=b?A(p[4].params[1]):t,$=w?A(p[5].params[1]):t;for(let e=0;e<p.length;++e)p[e].implementation=I(p[e].params,p[e].fn);const H=d?p[0].implementation:r,G=h?p[1].implementation:r,Z=g?p[2].implementation:r,V=y?p[3].implementation:r,W=b?p[4].implementation:r,Y=w?p[5].implementation:r,J=d?p[0].params.length:-1,X=h?p[1].params.length:-1,Q=g?p[2].params.length:-1,K=y?p[3].params.length:-1,ee=b?p[4].params.length:-1,te=w?p[5].params.length:-1,re=M?6:0,ne=p.length,ie=p.map((e=>e.test)),oe=p.map((e=>e.implementation)),ae=function(){for(let e=re;e<ne;e++)if(ie[e](arguments))return oe[e].apply(this,arguments);return f.onMismatch(e,arguments,p)};function se(e,t){return arguments.length===J&&C(e)&&_(t)?H.apply(this,arguments):arguments.length===X&&T(e)&&k(t)?G.apply(this,arguments):arguments.length===Q&&D(e)&&P(t)?Z.apply(this,arguments):arguments.length===K&&F(e)&&U(t)?V.apply(this,arguments):arguments.length===ee&&B(e)&&L(t)?W.apply(this,arguments):arguments.length===te&&O(e)&&$(t)?Y.apply(this,arguments):ae.apply(this,arguments)}try{Object.defineProperty(se,"name",{value:e})}catch(e){}return se.signatures=a,se._typedFunctionData={signatures:p,signatureMap:m},se}function L(e,t,r){throw F(e,t,r)}function $(e){return G(e,0,e.length-1)}function H(e){return e[e.length-1]}function G(e,t,r){return Array.prototype.slice.call(e,t,r)}function Z(e,t){return{referTo:{references:e,callback:t}}}function V(e){if("function"!=typeof e)throw new TypeError("Callback function expected as first argument");return{referToSelf:{callback:e}}}function W(e){return e&&"object"==typeof e.referTo&&Array.isArray(e.referTo.references)&&"function"==typeof e.referTo.callback}function Y(e){return e&&"object"==typeof e.referToSelf&&"function"==typeof e.referToSelf.callback}function J(e,t){if(!e)return t;if(t&&t!==e){const r=new Error("Function names do not match (expected: "+e+", actual: "+t+")");throw r.data={actual:t,expected:e},r}return e}function X(e){let t;for(const r in e)Object.prototype.hasOwnProperty.call(e,r)&&(g(e[r])||"string"==typeof e[r].signature)&&(t=J(t,e[r].name));return t}function Q(e,t){let r;for(r in t)if(Object.prototype.hasOwnProperty.call(t,r)){if(r in e&&t[r]!==e[r]){const n=new Error('Signature "'+r+'" is defined twice');throw n.data={signature:r,sourceFunction:t[r],destFunction:e[r]},n}e[r]=t[r]}}d(),m(a);const K=f;function ee(e){if(!e||"string"!=typeof e.from||"string"!=typeof e.to||"function"!=typeof e.convert)throw new TypeError("Object with properties {from: string, to: string, convert: function} expected");if(e.to===e.from)throw new SyntaxError('Illegal to define conversion from "'+e.from+'" to itself.')}return f=function(e){const t="string"==typeof e;let r=t?e:"";const n={};for(let e=t?1:0;e<arguments.length;++e){const i=arguments[e];let a,s={};if("function"==typeof i?(a=i.name,"string"==typeof i.signature?s[i.signature]=i:g(i)&&(s=i.signatures)):o(i)&&(s=i,t||(a=X(i))),0===Object.keys(s).length){const t=new TypeError("Argument to 'typed' at index "+e+" is not a (typed) function, nor an object with signatures as keys and functions as values.");throw t.data={index:e,argument:i},t}t||(r=J(r,a)),Q(n,s)}return U(r||"",n)},f.create=i,f.createCount=K.createCount,f.onMismatch=L,f.throwMismatchError=L,f.createError=F,f.clear=d,f.clearConversions=function(){let e;for(e of c)u.get(e).conversionsTo=[];l=0},f.addTypes=m,f._findType=p,f.referTo=function(){const e=$(arguments).map((e=>x(N(e)))),t=H(arguments);if("function"!=typeof t)throw new TypeError("Callback function expected as last argument");return Z(e,t)},f.referToSelf=V,f.convert=function(e,t){const r=p(t);if(r.test(e))return e;const n=r.conversionsTo;if(0===n.length)throw new Error("There are no conversions to "+t+" defined.");for(let t=0;t<n.length;t++)if(p(n[t].from).test(e))return n[t].convert(e);throw new Error("Cannot convert "+e+" to "+t)},f.findSignature=y,f.find=function(e,t,r){return y(e,t,r).implementation},f.isTypedFunction=g,f.warnAgainstDeprecatedThis=!0,f.addType=function(e,t){let r="any";!1!==t&&u.has("Object")&&(r="Object"),f.addTypes([e],r)},f.addConversion=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{override:!1};ee(e);const r=p(e.to),n=r.conversionsTo.find((t=>t.from===e.from));if(n){if(!t||!t.override)throw new Error('There is already a conversion from "'+e.from+'" to "'+r.name+'"');f.removeConversion({from:n.from,to:e.to,convert:n.convert})}r.conversionsTo.push({from:e.from,convert:e.convert,index:l++})},f.addConversions=function(e,t){e.forEach((e=>f.addConversion(e,t)))},f.removeConversion=function(e){ee(e);const t=p(e.to),r=function(e,t){for(let r=0;r<e.length;r++)if(t(e[r]))return e[r]}(t.conversionsTo,(t=>t.from===e.from));if(!r)throw new Error("Attempt to remove nonexistent conversion from "+e.from+" to "+e.to);if(r.convert!==e.convert)throw new Error("Conversion to remove does not match existing conversion");const n=t.conversionsTo.indexOf(r);t.conversionsTo.splice(n,1)},f.resolve=function(e,t){if(!g(e))throw new TypeError(n);const r=e._typedFunctionData.signatures;for(let e=0;e<r.length;++e)if(r[e].test(t))return r[e];return null},f}()}()}},t={};function r(n){var i=t[n];if(void 0!==i)return i.exports;var o=t[n]={id:n,loaded:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.loaded=!0,o.exports}r.amdD=function(){throw new Error("define cannot be used indirect")},r.amdO={},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nmd=e=>(e.paths=[],e.children||(e.children=[]),e);var n={};return(()=>{"use strict";r.d(n,{default:()=>Py});var e={};r.r(e),r.d(e,{createAbs:()=>lo,createAccessorNode:()=>dp,createAcos:()=>Cl,createAcosh:()=>Zl,createAcot:()=>Wl,createAcoth:()=>Jl,createAcsc:()=>Ql,createAcsch:()=>ef,createAdd:()=>Qf,createAddScalar:()=>go,createAnd:()=>Ec,createAndTransform:()=>Dy,createApply:()=>po,createApplyTransform:()=>ey,createArg:()=>Qa,createArrayNode:()=>gp,createAsec:()=>rf,createAsech:()=>of,createAsin:()=>sf,createAsinh:()=>uf,createAssignmentNode:()=>Ep,createAtan:()=>cf,createAtan2:()=>ff,createAtanh:()=>mf,createAtomicMass:()=>Bg,createAvogadro:()=>Og,createBellNumbers:()=>ah,createBigNumberClass:()=>Or,createBigint:()=>wi,createBignumber:()=>Mi,createBin:()=>zu,createBitAnd:()=>Ha,createBitAndTransform:()=>By,createBitNot:()=>Za,createBitOr:()=>Wa,createBitOrTransform:()=>Oy,createBitXor:()=>Xa,createBlockNode:()=>Sp,createBohrMagneton:()=>fg,createBohrRadius:()=>yg,createBoltzmann:()=>_g,createBoolean:()=>Si,createCatalan:()=>uh,createCbrt:()=>vo,createCeil:()=>Co,createChain:()=>Rm,createChainClass:()=>Bm,createClassicalElectronRadius:()=>xg,createClone:()=>Un,createColumn:()=>ds,createColumnTransform:()=>ty,createCombinations:()=>Ed,createCombinationsWithRep:()=>Md,createCompare:()=>Sc,createCompareNatural:()=>Dc,createCompareText:()=>Oc,createCompile:()=>im,createComplex:()=>Ci,createComplexClass:()=>zr,createComposition:()=>lh,createConcat:()=>ps,createConcatTransform:()=>yy,createConditionalNode:()=>Cp,createConductanceQuantum:()=>pg,createConj:()=>es,createConstantNode:()=>kp,createCorr:()=>bd,createCos:()=>hf,createCosh:()=>yf,createCot:()=>xf,createCoth:()=>vf,createCoulomb:()=>cg,createCount:()=>gs,createCreateUnit:()=>Sl,createCross:()=>xs,createCsc:()=>wf,createCsch:()=>Ef,createCtranspose:()=>pu,createCube:()=>Do,createCumSum:()=>ad,createCumSumTransform:()=>Ay,createDeepEqual:()=>Xc,createDenseMatrixClass:()=>Pn,createDerivative:()=>Ah,createDet:()=>Pm,createDeuteronMass:()=>Ag,createDiag:()=>vs,createDiff:()=>Rs,createDiffTransform:()=>by,createDistance:()=>rd,createDivide:()=>ed,createDivideScalar:()=>Zu,createDot:()=>np,createDotDivide:()=>oc,createDotMultiply:()=>Ma,createDotPow:()=>nc,createE:()=>$h,createEfimovFactor:()=>Fg,createEigs:()=>$m,createElectricConstant:()=>sg,createElectronMass:()=>bg,createElementaryCharge:()=>lg,createEqual:()=>zc,createEqualScalar:()=>xi,createEqualText:()=>qc,createErf:()=>bu,createEvaluate:()=>am,createExp:()=>Fo,createExpm:()=>Gm,createExpm1:()=>Oo,createFactorial:()=>Pd,createFalse:()=>qh,createFaraday:()=>zg,createFermiCoupling:()=>vg,createFft:()=>hu,createFibonacciHeapClass:()=>ll,createFilter:()=>ws,createFilterTransform:()=>ny,createFineStructure:()=>wg,createFirstRadiation:()=>Ig,createFix:()=>ko,createFlatten:()=>As,createFloor:()=>jo,createForEach:()=>Ms,createForEachTransform:()=>oy,createFormat:()=>_u,createFraction:()=>Ti,createFractionClass:()=>Gr,createFreqz:()=>Fh,createFunctionAssignmentNode:()=>Rp,createFunctionNode:()=>em,createGamma:()=>Id,createGasConstant:()=>qg,createGcd:()=>ta,createGetMatrixDataType:()=>Ds,createGravitationConstant:()=>ng,createGravity:()=>Zg,createHartreeEnergy:()=>Ng,createHasNumericValue:()=>si,createHelp:()=>km,createHelpClass:()=>Fm,createHex:()=>ku,createHypot:()=>ep,createI:()=>Xh,createIdentity:()=>Bs,createIfft:()=>yu,createIm:()=>ts,createImmutableDenseMatrixClass:()=>sl,createIndex:()=>ap,createIndexClass:()=>ul,createIndexNode:()=>jp,createIndexTransform:()=>ay,createInfinity:()=>Ph,createIntersect:()=>nd,createInv:()=>jm,createInverseConductanceQuantum:()=>mg,createInvmod:()=>Ea,createIsInteger:()=>Jn,createIsNaN:()=>mi,createIsNegative:()=>ni,createIsNumeric:()=>oi,createIsPositive:()=>ci,createIsPrime:()=>$u,createIsZero:()=>fi,createKldivergence:()=>Ud,createKlitzing:()=>gg,createKron:()=>_s,createLN10:()=>Zh,createLN2:()=>Gh,createLOG10E:()=>Wh,createLOG2E:()=>Vh,createLarger:()=>Gc,createLargerEq:()=>Wc,createLcm:()=>na,createLeafCount:()=>ph,createLeftShift:()=>xc,createLgamma:()=>qd,createLog:()=>Xu,createLog10:()=>oa,createLog1p:()=>Ku,createLog2:()=>sa,createLoschmidt:()=>kg,createLsolve:()=>uc,createLsolveAll:()=>pc,createLup:()=>lm,createLusolve:()=>Cm,createLyap:()=>Km,createMad:()=>fd,createMagneticConstant:()=>ag,createMagneticFluxQuantum:()=>dg,createMap:()=>zs,createMapTransform:()=>sy,createMatrix:()=>Fi,createMatrixClass:()=>Vr,createMatrixFromColumns:()=>ki,createMatrixFromFunction:()=>Oi,createMatrixFromRows:()=>zi,createMax:()=>ol,createMaxTransform:()=>fy,createMean:()=>ud,createMeanTransform:()=>py,createMedian:()=>ld,createMin:()=>al,createMinTransform:()=>my,createMod:()=>Vo,createMode:()=>Tu,createMolarMass:()=>Hg,createMolarMassC12:()=>Gg,createMolarPlanckConstant:()=>Rg,createMolarVolume:()=>Pg,createMultinomial:()=>$d,createMultiply:()=>la,createMultiplyScalar:()=>ua,createNaN:()=>jh,createNeutronMass:()=>Sg,createNode:()=>up,createNorm:()=>rp,createNot:()=>us,createNthRoot:()=>pa,createNthRoots:()=>tc,createNuclearMagneton:()=>hg,createNull:()=>Rh,createNumber:()=>vi,createNumeric:()=>Hu,createObjectNode:()=>Lp,createOct:()=>Iu,createOnes:()=>Ps,createOperatorNode:()=>Gp,createOr:()=>cs,createOrTransform:()=>Fy,createParenthesisNode:()=>Vp,createParse:()=>rm,createParser:()=>cm,createParserClass:()=>sm,createPartitionSelect:()=>rl,createPermutations:()=>Gd,createPhi:()=>Hh,createPi:()=>Uh,createPickRandom:()=>Xd,createPinv:()=>Lm,createPlanckCharge:()=>Jg,createPlanckConstant:()=>ig,createPlanckLength:()=>Vg,createPlanckMass:()=>Wg,createPlanckTemperature:()=>Xg,createPlanckTime:()=>Yg,createPolynomialRoot:()=>Dm,createPow:()=>Vu,createPrint:()=>Pu,createPrintTransform:()=>Ty,createProd:()=>Bu,createProtonMass:()=>Eg,createQr:()=>fm,createQuantileSeq:()=>gd,createQuantileSeqTransform:()=>Ny,createQuantumOfCirculation:()=>Mg,createRandom:()=>eh,createRandomInt:()=>rh,createRange:()=>Hs,createRangeClass:()=>Zr,createRangeNode:()=>Yp,createRangeTransform:()=>dy,createRationalize:()=>Mh,createRe:()=>rs,createReducedPlanckConstant:()=>og,createRelationalNode:()=>Xp,createReplacer:()=>Oh,createReshape:()=>Zs,createResize:()=>Vs,createResolve:()=>vh,createResultSet:()=>Ve,createReviver:()=>Bh,createRightArithShift:()=>vc,createRightLogShift:()=>Nc,createRotate:()=>Ys,createRotationMatrix:()=>Xs,createRound:()=>Ju,createRow:()=>Qs,createRowTransform:()=>hy,createRydberg:()=>Cg,createSQRT1_2:()=>Yh,createSQRT2:()=>Jh,createSackurTetrode:()=>jg,createSchur:()=>Xm,createSec:()=>Af,createSech:()=>Mf,createSecondRadiation:()=>Ug,createSetCartesian:()=>_f,createSetDifference:()=>If,createSetDistinct:()=>qf,createSetIntersect:()=>Pf,createSetIsSubset:()=>Uf,createSetMultiplicity:()=>$f,createSetPowerset:()=>Gf,createSetSize:()=>Vf,createSetSymDifference:()=>Yf,createSetUnion:()=>Xf,createSign:()=>da,createSimplify:()=>gh,createSimplifyConstant:()=>yh,createSimplifyCore:()=>bh,createSin:()=>Cf,createSinh:()=>Df,createSize:()=>eu,createSlu:()=>Am,createSmaller:()=>Pc,createSmallerEq:()=>Lc,createSolveODE:()=>xu,createSort:()=>il,createSpaClass:()=>fl,createSparse:()=>El,createSparseMatrixClass:()=>bi,createSpeedOfLight:()=>rg,createSplitUnit:()=>Ri,createSqrt:()=>ha,createSqrtm:()=>Vm,createSquare:()=>ya,createSqueeze:()=>ru,createStd:()=>yd,createStdTransform:()=>vy,createStefanBoltzmann:()=>Lg,createStirlingS2:()=>ih,createString:()=>Ei,createSubset:()=>iu,createSubsetTransform:()=>gy,createSubtract:()=>ba,createSubtractScalar:()=>xo,createSum:()=>id,createSumTransform:()=>wy,createSylvester:()=>Ym,createSymbolNode:()=>Qp,createSymbolicEqual:()=>Nh,createTan:()=>Ff,createTanh:()=>Bf,createTau:()=>Lh,createThomsonCrossSection:()=>Tg,createTo:()=>Uu,createTrace:()=>ip,createTranspose:()=>lu,createTrue:()=>kh,createTypeOf:()=>hi,createTyped:()=>$e,createUnaryMinus:()=>so,createUnaryPlus:()=>co,createUnequal:()=>Kc,createUnitClass:()=>bl,createUnitFunction:()=>wl,createUppercaseE:()=>Kh,createUppercasePi:()=>Qh,createUsolve:()=>lc,createUsolveAll:()=>dc,createVacuumImpedance:()=>ug,createVariance:()=>dd,createVarianceTransform:()=>My,createVersion:()=>eg,createWeakMixingAngle:()=>Dg,createWienDisplacement:()=>$g,createXgcd:()=>wa,createXor:()=>ls,createZeros:()=>du,createZeta:()=>Mu,createZpk2tf:()=>Th}),r(4423),r(7495);var t=r(2369);function i(e,t){if(a(e,t))return e[t];if("function"==typeof e[t]&&s(e,t))throw new Error('Cannot access method "'+t+'" as a property');throw new Error('No access to property "'+t+'"')}function o(e,t,r){if(a(e,t))return e[t]=r,r;throw new Error('No access to property "'+t+'"')}function a(e,t){return!(!function(e){return"object"==typeof e&&e&&e.constructor===Object}(e)&&!Array.isArray(e)||!me(u,t)&&(t in Object.prototype||t in Function.prototype))}function s(e,t){return!(null==e||"function"!=typeof e[t]||me(e,t)&&Object.getPrototypeOf&&t in Object.getPrototypeOf(e)||!me(c,t)&&(t in Object.prototype||t in Function.prototype))}r(6910),r(4864),r(7465);const u={length:!0,name:!0},c={toString:!0,valueOf:!0,toLocaleString:!0};class l{constructor(e){this.wrappedObject=e,this[Symbol.iterator]=this.entries}keys(){return Object.keys(this.wrappedObject).filter((e=>this.has(e))).values()}get(e){return i(this.wrappedObject,e)}set(e,t){return o(this.wrappedObject,e,t),this}has(e){return a(this.wrappedObject,e)&&e in this.wrappedObject}entries(){return p(this.keys(),(e=>[e,this.get(e)]))}forEach(e){for(const t of this.keys())e(this.get(t),t,this)}delete(e){a(this.wrappedObject,e)&&delete this.wrappedObject[e]}clear(){for(const e of this.keys())this.delete(e)}get size(){return Object.keys(this.wrappedObject).length}}class f{constructor(e,t,r){this.a=e,this.b=t,this.bKeys=r,this[Symbol.iterator]=this.entries}get(e){return this.bKeys.has(e)?this.b.get(e):this.a.get(e)}set(e,t){return this.bKeys.has(e)?this.b.set(e,t):this.a.set(e,t),this}has(e){return this.b.has(e)||this.a.has(e)}keys(){return new Set([...this.a.keys(),...this.b.keys()])[Symbol.iterator]()}entries(){return p(this.keys(),(e=>[e,this.get(e)]))}forEach(e){for(const t of this.keys())e(this.get(t),t,this)}delete(e){return this.bKeys.has(e)?this.b.delete(e):this.a.delete(e)}clear(){this.a.clear(),this.b.clear()}get size(){return[...this.keys()].length}}function p(e,t){return{next:()=>{const r=e.next();return r.done?r:{value:t(r.value),done:!1}}}}function m(){return new Map}function d(e){if(!e)return m();if(k(e))return e;if(I(e))return new l(e);throw new Error("createMap can create maps from objects or Maps")}function h(e){return"number"==typeof e}function g(e){return!(!e||"object"!=typeof e||"function"!=typeof e.constructor)&&(!0===e.isBigNumber&&"object"==typeof e.constructor.prototype&&!0===e.constructor.prototype.isBigNumber||"function"==typeof e.constructor.isDecimal&&!0===e.constructor.isDecimal(e))}function y(e){return"bigint"==typeof e}function x(e){return e&&"object"==typeof e&&!0===Object.getPrototypeOf(e).isComplex||!1}function b(e){return e&&"object"==typeof e&&!0===Object.getPrototypeOf(e).isFraction||!1}function v(e){return e&&!0===e.constructor.prototype.isUnit||!1}function w(e){return"string"==typeof e}const N=Array.isArray;function E(e){return e&&!0===e.constructor.prototype.isMatrix||!1}function A(e){return Array.isArray(e)||E(e)}function S(e){return e&&e.isDenseMatrix&&!0===e.constructor.prototype.isMatrix||!1}function M(e){return e&&e.isSparseMatrix&&!0===e.constructor.prototype.isMatrix||!1}function C(e){return e&&!0===e.constructor.prototype.isRange||!1}function T(e){return e&&!0===e.constructor.prototype.isIndex||!1}function D(e){return"boolean"==typeof e}function F(e){return e&&!0===e.constructor.prototype.isResultSet||!1}function B(e){return e&&!0===e.constructor.prototype.isHelp||!1}function O(e){return"function"==typeof e}function _(e){return e instanceof Date}function z(e){return e instanceof RegExp}function I(e){return!(!e||"object"!=typeof e||e.constructor!==Object||x(e)||b(e))}function k(e){return!!e&&(e instanceof Map||e instanceof l||"function"==typeof e.set&&"function"==typeof e.get&&"function"==typeof e.keys&&"function"==typeof e.has)}function q(e){return k(e)&&k(e.a)&&k(e.b)}function R(e){return k(e)&&I(e.wrappedObject)}function P(e){return null===e}function j(e){return void 0===e}function U(e){return e&&!0===e.isAccessorNode&&!0===e.constructor.prototype.isNode||!1}function L(e){return e&&!0===e.isArrayNode&&!0===e.constructor.prototype.isNode||!1}function $(e){return e&&!0===e.isAssignmentNode&&!0===e.constructor.prototype.isNode||!1}function H(e){return e&&!0===e.isBlockNode&&!0===e.constructor.prototype.isNode||!1}function G(e){return e&&!0===e.isConditionalNode&&!0===e.constructor.prototype.isNode||!1}function Z(e){return e&&!0===e.isConstantNode&&!0===e.constructor.prototype.isNode||!1}function V(e){return Z(e)||K(e)&&1===e.args.length&&Z(e.args[0])&&"-+~".includes(e.op)}function W(e){return e&&!0===e.isFunctionAssignmentNode&&!0===e.constructor.prototype.isNode||!1}function Y(e){return e&&!0===e.isFunctionNode&&!0===e.constructor.prototype.isNode||!1}function J(e){return e&&!0===e.isIndexNode&&!0===e.constructor.prototype.isNode||!1}function X(e){return e&&!0===e.isNode&&!0===e.constructor.prototype.isNode||!1}function Q(e){return e&&!0===e.isObjectNode&&!0===e.constructor.prototype.isNode||!1}function K(e){return e&&!0===e.isOperatorNode&&!0===e.constructor.prototype.isNode||!1}function ee(e){return e&&!0===e.isParenthesisNode&&!0===e.constructor.prototype.isNode||!1}function te(e){return e&&!0===e.isRangeNode&&!0===e.constructor.prototype.isNode||!1}function re(e){return e&&!0===e.isRelationalNode&&!0===e.constructor.prototype.isNode||!1}function ne(e){return e&&!0===e.isSymbolNode&&!0===e.constructor.prototype.isNode||!1}function ie(e){return e&&!0===e.constructor.prototype.isChain||!1}function oe(e){const t=typeof e;return"object"===t?null===e?"null":g(e)?"BigNumber":e.constructor&&e.constructor.name?e.constructor.name:"Object":t}function ae(e){const t=typeof e;if("number"===t||"bigint"===t||"string"===t||"boolean"===t||null==e)return e;if("function"==typeof e.clone)return e.clone();if(Array.isArray(e))return e.map((function(e){return ae(e)}));if(e instanceof Date)return new Date(e.valueOf());if(g(e))return e;if(I(e))return function(e,t){const r={};for(const n in e)me(e,n)&&(r[n]=t(e[n]));return r}(e,ae);throw new TypeError(`Cannot clone: unknown type of value (value: ${e})`)}function se(e,t){for(const r in t)me(t,r)&&(e[r]=t[r]);return e}function ue(e,t){if(Array.isArray(t))throw new TypeError("Arrays are not supported by deepExtend");for(const r in t)if(me(t,r)&&!(r in Object.prototype)&&!(r in Function.prototype))if(t[r]&&t[r].constructor===Object)void 0===e[r]&&(e[r]={}),e[r]&&e[r].constructor===Object?ue(e[r],t[r]):e[r]=t[r];else{if(Array.isArray(t[r]))throw new TypeError("Arrays are not supported by deepExtend");e[r]=t[r]}return e}function ce(e,t){let r,n,i;if(Array.isArray(e)){if(!Array.isArray(t))return!1;if(e.length!==t.length)return!1;for(n=0,i=e.length;n<i;n++)if(!ce(e[n],t[n]))return!1;return!0}if("function"==typeof e)return e===t;if(e instanceof Object){if(Array.isArray(t)||!(t instanceof Object))return!1;for(r in e)if(!(r in t)||!ce(e[r],t[r]))return!1;for(r in t)if(!(r in e))return!1;return!0}return e===t}function le(e){const t={};return fe(e,t),t}function fe(e,t){for(const r in e)if(me(e,r)){const n=e[r];"object"==typeof n&&null!==n?fe(n,t):t[r]=n}}function pe(e,t,r){let n,i=!0;Object.defineProperty(e,t,{get:function(){return i&&(n=r(),i=!1),n},set:function(e){n=e,i=!1},configurable:!0,enumerable:!0})}function me(e,t){return e&&Object.hasOwnProperty.call(e,t)}function de(e,t,r,n){function i(n){const i=function(e,t){const r={};for(let n=0;n<t.length;n++){const i=t[n],o=e[i];void 0!==o&&(r[i]=o)}return r}(n,t.map(ge));return function(e,t,r){if(!t.filter((e=>!function(e){return e&&"?"===e[0]}(e))).every((e=>void 0!==r[e]))){const n=t.filter((e=>void 0===r[e]));throw new Error(`Cannot create function "${e}", some dependencies are missing: ${n.map((e=>`"${e}"`)).join(", ")}.`)}}(e,t,n),r(i)}return i.isFactory=!0,i.fn=e,i.dependencies=t.slice().sort(),n&&(i.meta=n),i}function he(e){return"function"==typeof e&&"string"==typeof e.fn&&Array.isArray(e.dependencies)}function ge(e){return e&&"?"===e[0]?e.slice(1):e}function ye(e){return"boolean"==typeof e||!!isFinite(e)&&e===Math.round(e)}function xe(e,t){return"bigint"!==t.number||/^-?\d+$/.test(e)?t.number:t.numberFallback}r(5440);const be=Math.sign||function(e){return e>0?1:e<0?-1:0},ve=Math.log2||function(e){return Math.log(e)/Math.LN2},we=Math.log10||function(e){return Math.log(e)/Math.LN10},Ne=Math.log1p||function(e){return Math.log(e+1)},Ee=Math.cbrt||function(e){if(0===e)return e;const t=e<0;let r;return t&&(e=-e),isFinite(e)?(r=Math.exp(Math.log(e)/3),r=(e/(r*r)+2*r)/3):r=e,t?-r:r},Ae=Math.expm1||function(e){return e>=2e-4||e<=-2e-4?Math.exp(e)-1:e+e*e/2+e*e*e/6};function Se(e,t,r){const n={2:"0b",8:"0o",16:"0x"}[t];let i="";if(r){if(r<1)throw new Error("size must be in greater than 0");if(!ye(r))throw new Error("size must be an integer");if(e>2**(r-1)-1||e<-(2**(r-1)))throw new Error(`Value must be in range [-2^${r-1}, 2^${r-1}-1]`);if(!ye(e))throw new Error("Value must be an integer");e<0&&(e+=2**r),i=`i${r}`}let o="";return e<0&&(e=-e,o="-"),`${o}${n}${e.toString(t)}${i}`}function Me(e,t){if("function"==typeof t)return t(e);if(e===1/0)return"Infinity";if(e===-1/0)return"-Infinity";if(isNaN(e))return"NaN";const{notation:r,precision:n,wordSize:i}=Ce(t);switch(r){case"fixed":return De(e,n);case"exponential":return Fe(e,n);case"engineering":return function(e,t){if(isNaN(e)||!isFinite(e))return String(e);const r=Be(Te(e),t),n=r.exponent,i=r.coefficients,o=n%3==0?n:n<0?n-3-n%3:n-n%3;if(h(t))for(;t>i.length||n-o+1>i.length;)i.push(0);else{const e=Math.abs(n-o)-(i.length-1);for(let t=0;t<e;t++)i.push(0)}let a=Math.abs(n-o),s=1;for(;a>0;)s++,a--;const u=i.slice(s).join(""),c=h(t)&&u.length||u.match(/[1-9]/)?"."+u:"",l=i.slice(0,s).join("")+c+"e"+(n>=0?"+":"")+o.toString();return r.sign+l}(e,n);case"bin":return Se(e,2,i);case"oct":return Se(e,8,i);case"hex":return Se(e,16,i);case"auto":return function(e,t,r){if(isNaN(e)||!isFinite(e))return String(e);const n=Ue(null==r?void 0:r.lowerExp,-3),i=Ue(null==r?void 0:r.upperExp,5),o=Te(e),a=t?Be(o,t):o;if(a.exponent<n||a.exponent>=i)return Fe(e,t);{let e=a.coefficients;const r=a.exponent;e.length<t&&(e=e.concat(Oe(t-e.length))),e=e.concat(Oe(r-e.length+1+(e.length<t?t-e.length:0))),e=Oe(-r).concat(e);const n=r>0?r:0;return n<e.length-1&&e.splice(n+1,0,"."),a.sign+e.join("")}}(e,n,t).replace(/((\.\d*?)(0+))($|e)/,(function(){const e=arguments[2],t=arguments[4];return"."!==e?e+t:t}));default:throw new Error('Unknown notation "'+r+'". Choose "auto", "exponential", "fixed", "bin", "oct", or "hex.')}}function Ce(e){let t,r,n="auto";if(void 0!==e)if(h(e))t=e;else if(g(e))t=e.toNumber();else{if(!I(e))throw new Error("Unsupported type of options, number, BigNumber, or object expected");void 0!==e.precision&&(t=je(e.precision,(()=>{throw new Error('Option "precision" must be a number or BigNumber')}))),void 0!==e.wordSize&&(r=je(e.wordSize,(()=>{throw new Error('Option "wordSize" must be a number or BigNumber')}))),e.notation&&(n=e.notation)}return{notation:n,precision:t,wordSize:r}}function Te(e){const t=String(e).toLowerCase().match(/^(-?)(\d+\.?\d*)(e([+-]?\d+))?$/);if(!t)throw new SyntaxError("Invalid number "+e);const r=t[1],n=t[2];let i=parseFloat(t[4]||"0");const o=n.indexOf(".");i+=-1!==o?o-1:n.length-1;const a=n.replace(".","").replace(/^0*/,(function(e){return i-=e.length,""})).replace(/0*$/,"").split("").map((function(e){return parseInt(e)}));return 0===a.length&&(a.push(0),i++),{sign:r,coefficients:a,exponent:i}}function De(e,t){if(isNaN(e)||!isFinite(e))return String(e);const r=Te(e),n="number"==typeof t?Be(r,r.exponent+1+t):r;let i=n.coefficients,o=n.exponent+1;const a=o+(t||0);return i.length<a&&(i=i.concat(Oe(a-i.length))),o<0&&(i=Oe(1-o).concat(i),o=1),o<i.length&&i.splice(o,0,0===o?"0.":"."),n.sign+i.join("")}function Fe(e,t){if(isNaN(e)||!isFinite(e))return String(e);const r=Te(e),n=t?Be(r,t):r;let i=n.coefficients;const o=n.exponent;i.length<t&&(i=i.concat(Oe(t-i.length)));const a=i.shift();return n.sign+a+(i.length>0?"."+i.join(""):"")+"e"+(o>=0?"+":"")+o}function Be(e,t){const r={sign:e.sign,coefficients:e.coefficients,exponent:e.exponent},n=r.coefficients;for(;t<=0;)n.unshift(0),r.exponent++,t++;if(n.length>t&&n.splice(t,n.length-t)[0]>=5){let e=t-1;for(n[e]++;10===n[e];)n.pop(),0===e&&(n.unshift(0),r.exponent++,e++),e--,n[e]++}return r}function Oe(e){const t=[];for(let r=0;r<e;r++)t.push(0);return t}function _e(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1e-8,n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;if(r<=0)throw new Error("Relative tolerance must be greater than 0");if(n<0)throw new Error("Absolute tolerance must be at least 0");return!isNaN(e)&&!isNaN(t)&&(isFinite(e)&&isFinite(t)?e===t||Math.abs(e-t)<=Math.max(r*Math.max(Math.abs(e),Math.abs(t)),n):e===t)}Number.EPSILON;const ze=Math.acosh||function(e){return Math.log(Math.sqrt(e*e-1)+e)},Ie=Math.asinh||function(e){return Math.log(Math.sqrt(e*e+1)+e)},ke=Math.atanh||function(e){return Math.log((1+e)/(1-e))/2},qe=Math.cosh||function(e){return(Math.exp(e)+Math.exp(-e))/2},Re=Math.sinh||function(e){return(Math.exp(e)-Math.exp(-e))/2},Pe=Math.tanh||function(e){const t=Math.exp(2*e);return(t-1)/(t+1)};function je(e,t){return h(e)?e:g(e)?e.toNumber():void t()}function Ue(e,t){return h(e)?e:g(e)?e.toNumber():t}let Le=function(){return Le=t.create,t};const $e=de("typed",["?BigNumber","?Complex","?DenseMatrix","?Fraction"],(function(e){let{BigNumber:t,Complex:r,DenseMatrix:n,Fraction:i}=e;const o=Le();return o.clear(),o.addTypes([{name:"number",test:h},{name:"Complex",test:x},{name:"BigNumber",test:g},{name:"bigint",test:y},{name:"Fraction",test:b},{name:"Unit",test:v},{name:"identifier",test:e=>w&&/^[A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{10300}-\u{1031F}\u{1032D}-\u{10340}\u{10342}-\u{10349}\u{10350}-\u{10375}\u{10380}-\u{1039D}\u{103A0}-\u{103C3}\u{103C8}-\u{103CF}\u{10400}-\u{1049D}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{10570}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10860}-\u{10876}\u{10880}-\u{1089E}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{10900}-\u{10915}\u{10920}-\u{10939}\u{10980}-\u{109B7}\u{109BE}\u{109BF}\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A60}-\u{10A7C}\u{10A80}-\u{10A9C}\u{10AC0}-\u{10AC7}\u{10AC9}-\u{10AE4}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B60}-\u{10B72}\u{10B80}-\u{10B91}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10D00}-\u{10D23}\u{10E80}-\u{10EA9}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F1C}\u{10F27}\u{10F30}-\u{10F45}\u{10F70}-\u{10F81}\u{10FB0}-\u{10FC4}\u{10FE0}-\u{10FF6}\u{11003}-\u{11037}\u{11071}\u{11072}\u{11075}\u{11083}-\u{110AF}\u{110D0}-\u{110E8}\u{11103}-\u{11126}\u{11144}\u{11147}\u{11150}-\u{11172}\u{11176}\u{11183}-\u{111B2}\u{111C1}-\u{111C4}\u{111DA}\u{111DC}\u{11200}-\u{11211}\u{11213}-\u{1122B}\u{1123F}\u{11240}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A8}\u{112B0}-\u{112DE}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133D}\u{11350}\u{1135D}-\u{11361}\u{11400}-\u{11434}\u{11447}-\u{1144A}\u{1145F}-\u{11461}\u{11480}-\u{114AF}\u{114C4}\u{114C5}\u{114C7}\u{11580}-\u{115AE}\u{115D8}-\u{115DB}\u{11600}-\u{1162F}\u{11644}\u{11680}-\u{116AA}\u{116B8}\u{11700}-\u{1171A}\u{11740}-\u{11746}\u{11800}-\u{1182B}\u{118A0}-\u{118DF}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{1192F}\u{1193F}\u{11941}\u{119A0}-\u{119A7}\u{119AA}-\u{119D0}\u{119E1}\u{119E3}\u{11A00}\u{11A0B}-\u{11A32}\u{11A3A}\u{11A50}\u{11A5C}-\u{11A89}\u{11A9D}\u{11AB0}-\u{11AF8}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C2E}\u{11C40}\u{11C72}-\u{11C8F}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D30}\u{11D46}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D89}\u{11D98}\u{11EE0}-\u{11EF2}\u{11F02}\u{11F04}-\u{11F10}\u{11F12}-\u{11F33}\u{11FB0}\u{12000}-\u{12399}\u{12480}-\u{12543}\u{12F90}-\u{12FF0}\u{13000}-\u{1342F}\u{13441}-\u{13446}\u{14400}-\u{14646}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A70}-\u{16ABE}\u{16AD0}-\u{16AED}\u{16B00}-\u{16B2F}\u{16B40}-\u{16B43}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16E40}-\u{16E7F}\u{16F00}-\u{16F4A}\u{16F50}\u{16F93}-\u{16F9F}\u{16FE0}\u{16FE1}\u{16FE3}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18D00}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B132}\u{1B150}-\u{1B152}\u{1B155}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D6C0}\u{1D6C2}-\u{1D6DA}\u{1D6DC}-\u{1D6FA}\u{1D6FC}-\u{1D714}\u{1D716}-\u{1D734}\u{1D736}-\u{1D74E}\u{1D750}-\u{1D76E}\u{1D770}-\u{1D788}\u{1D78A}-\u{1D7A8}\u{1D7AA}-\u{1D7C2}\u{1D7C4}-\u{1D7CB}\u{1DF00}-\u{1DF1E}\u{1DF25}-\u{1DF2A}\u{1E030}-\u{1E06D}\u{1E100}-\u{1E12C}\u{1E137}-\u{1E13D}\u{1E14E}\u{1E290}-\u{1E2AD}\u{1E2C0}-\u{1E2EB}\u{1E4D0}-\u{1E4EB}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1E800}-\u{1E8C4}\u{1E900}-\u{1E943}\u{1E94B}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B739}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2EBF0}-\u{2EE5D}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{31350}-\u{323AF}][0-9A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC\u{10000}-\u{1000B}\u{1000D}-\u{10026}\u{10028}-\u{1003A}\u{1003C}\u{1003D}\u{1003F}-\u{1004D}\u{10050}-\u{1005D}\u{10080}-\u{100FA}\u{10280}-\u{1029C}\u{102A0}-\u{102D0}\u{10300}-\u{1031F}\u{1032D}-\u{10340}\u{10342}-\u{10349}\u{10350}-\u{10375}\u{10380}-\u{1039D}\u{103A0}-\u{103C3}\u{103C8}-\u{103CF}\u{10400}-\u{1049D}\u{104B0}-\u{104D3}\u{104D8}-\u{104FB}\u{10500}-\u{10527}\u{10530}-\u{10563}\u{10570}-\u{1057A}\u{1057C}-\u{1058A}\u{1058C}-\u{10592}\u{10594}\u{10595}\u{10597}-\u{105A1}\u{105A3}-\u{105B1}\u{105B3}-\u{105B9}\u{105BB}\u{105BC}\u{10600}-\u{10736}\u{10740}-\u{10755}\u{10760}-\u{10767}\u{10780}-\u{10785}\u{10787}-\u{107B0}\u{107B2}-\u{107BA}\u{10800}-\u{10805}\u{10808}\u{1080A}-\u{10835}\u{10837}\u{10838}\u{1083C}\u{1083F}-\u{10855}\u{10860}-\u{10876}\u{10880}-\u{1089E}\u{108E0}-\u{108F2}\u{108F4}\u{108F5}\u{10900}-\u{10915}\u{10920}-\u{10939}\u{10980}-\u{109B7}\u{109BE}\u{109BF}\u{10A00}\u{10A10}-\u{10A13}\u{10A15}-\u{10A17}\u{10A19}-\u{10A35}\u{10A60}-\u{10A7C}\u{10A80}-\u{10A9C}\u{10AC0}-\u{10AC7}\u{10AC9}-\u{10AE4}\u{10B00}-\u{10B35}\u{10B40}-\u{10B55}\u{10B60}-\u{10B72}\u{10B80}-\u{10B91}\u{10C00}-\u{10C48}\u{10C80}-\u{10CB2}\u{10CC0}-\u{10CF2}\u{10D00}-\u{10D23}\u{10E80}-\u{10EA9}\u{10EB0}\u{10EB1}\u{10F00}-\u{10F1C}\u{10F27}\u{10F30}-\u{10F45}\u{10F70}-\u{10F81}\u{10FB0}-\u{10FC4}\u{10FE0}-\u{10FF6}\u{11003}-\u{11037}\u{11071}\u{11072}\u{11075}\u{11083}-\u{110AF}\u{110D0}-\u{110E8}\u{11103}-\u{11126}\u{11144}\u{11147}\u{11150}-\u{11172}\u{11176}\u{11183}-\u{111B2}\u{111C1}-\u{111C4}\u{111DA}\u{111DC}\u{11200}-\u{11211}\u{11213}-\u{1122B}\u{1123F}\u{11240}\u{11280}-\u{11286}\u{11288}\u{1128A}-\u{1128D}\u{1128F}-\u{1129D}\u{1129F}-\u{112A8}\u{112B0}-\u{112DE}\u{11305}-\u{1130C}\u{1130F}\u{11310}\u{11313}-\u{11328}\u{1132A}-\u{11330}\u{11332}\u{11333}\u{11335}-\u{11339}\u{1133D}\u{11350}\u{1135D}-\u{11361}\u{11400}-\u{11434}\u{11447}-\u{1144A}\u{1145F}-\u{11461}\u{11480}-\u{114AF}\u{114C4}\u{114C5}\u{114C7}\u{11580}-\u{115AE}\u{115D8}-\u{115DB}\u{11600}-\u{1162F}\u{11644}\u{11680}-\u{116AA}\u{116B8}\u{11700}-\u{1171A}\u{11740}-\u{11746}\u{11800}-\u{1182B}\u{118A0}-\u{118DF}\u{118FF}-\u{11906}\u{11909}\u{1190C}-\u{11913}\u{11915}\u{11916}\u{11918}-\u{1192F}\u{1193F}\u{11941}\u{119A0}-\u{119A7}\u{119AA}-\u{119D0}\u{119E1}\u{119E3}\u{11A00}\u{11A0B}-\u{11A32}\u{11A3A}\u{11A50}\u{11A5C}-\u{11A89}\u{11A9D}\u{11AB0}-\u{11AF8}\u{11C00}-\u{11C08}\u{11C0A}-\u{11C2E}\u{11C40}\u{11C72}-\u{11C8F}\u{11D00}-\u{11D06}\u{11D08}\u{11D09}\u{11D0B}-\u{11D30}\u{11D46}\u{11D60}-\u{11D65}\u{11D67}\u{11D68}\u{11D6A}-\u{11D89}\u{11D98}\u{11EE0}-\u{11EF2}\u{11F02}\u{11F04}-\u{11F10}\u{11F12}-\u{11F33}\u{11FB0}\u{12000}-\u{12399}\u{12480}-\u{12543}\u{12F90}-\u{12FF0}\u{13000}-\u{1342F}\u{13441}-\u{13446}\u{14400}-\u{14646}\u{16800}-\u{16A38}\u{16A40}-\u{16A5E}\u{16A70}-\u{16ABE}\u{16AD0}-\u{16AED}\u{16B00}-\u{16B2F}\u{16B40}-\u{16B43}\u{16B63}-\u{16B77}\u{16B7D}-\u{16B8F}\u{16E40}-\u{16E7F}\u{16F00}-\u{16F4A}\u{16F50}\u{16F93}-\u{16F9F}\u{16FE0}\u{16FE1}\u{16FE3}\u{17000}-\u{187F7}\u{18800}-\u{18CD5}\u{18D00}-\u{18D08}\u{1AFF0}-\u{1AFF3}\u{1AFF5}-\u{1AFFB}\u{1AFFD}\u{1AFFE}\u{1B000}-\u{1B122}\u{1B132}\u{1B150}-\u{1B152}\u{1B155}\u{1B164}-\u{1B167}\u{1B170}-\u{1B2FB}\u{1BC00}-\u{1BC6A}\u{1BC70}-\u{1BC7C}\u{1BC80}-\u{1BC88}\u{1BC90}-\u{1BC99}\u{1D400}-\u{1D454}\u{1D456}-\u{1D49C}\u{1D49E}\u{1D49F}\u{1D4A2}\u{1D4A5}\u{1D4A6}\u{1D4A9}-\u{1D4AC}\u{1D4AE}-\u{1D4B9}\u{1D4BB}\u{1D4BD}-\u{1D4C3}\u{1D4C5}-\u{1D505}\u{1D507}-\u{1D50A}\u{1D50D}-\u{1D514}\u{1D516}-\u{1D51C}\u{1D51E}-\u{1D539}\u{1D53B}-\u{1D53E}\u{1D540}-\u{1D544}\u{1D546}\u{1D54A}-\u{1D550}\u{1D552}-\u{1D6A5}\u{1D6A8}-\u{1D6C0}\u{1D6C2}-\u{1D6DA}\u{1D6DC}-\u{1D6FA}\u{1D6FC}-\u{1D714}\u{1D716}-\u{1D734}\u{1D736}-\u{1D74E}\u{1D750}-\u{1D76E}\u{1D770}-\u{1D788}\u{1D78A}-\u{1D7A8}\u{1D7AA}-\u{1D7C2}\u{1D7C4}-\u{1D7CB}\u{1DF00}-\u{1DF1E}\u{1DF25}-\u{1DF2A}\u{1E030}-\u{1E06D}\u{1E100}-\u{1E12C}\u{1E137}-\u{1E13D}\u{1E14E}\u{1E290}-\u{1E2AD}\u{1E2C0}-\u{1E2EB}\u{1E4D0}-\u{1E4EB}\u{1E7E0}-\u{1E7E6}\u{1E7E8}-\u{1E7EB}\u{1E7ED}\u{1E7EE}\u{1E7F0}-\u{1E7FE}\u{1E800}-\u{1E8C4}\u{1E900}-\u{1E943}\u{1E94B}\u{1EE00}-\u{1EE03}\u{1EE05}-\u{1EE1F}\u{1EE21}\u{1EE22}\u{1EE24}\u{1EE27}\u{1EE29}-\u{1EE32}\u{1EE34}-\u{1EE37}\u{1EE39}\u{1EE3B}\u{1EE42}\u{1EE47}\u{1EE49}\u{1EE4B}\u{1EE4D}-\u{1EE4F}\u{1EE51}\u{1EE52}\u{1EE54}\u{1EE57}\u{1EE59}\u{1EE5B}\u{1EE5D}\u{1EE5F}\u{1EE61}\u{1EE62}\u{1EE64}\u{1EE67}-\u{1EE6A}\u{1EE6C}-\u{1EE72}\u{1EE74}-\u{1EE77}\u{1EE79}-\u{1EE7C}\u{1EE7E}\u{1EE80}-\u{1EE89}\u{1EE8B}-\u{1EE9B}\u{1EEA1}-\u{1EEA3}\u{1EEA5}-\u{1EEA9}\u{1EEAB}-\u{1EEBB}\u{20000}-\u{2A6DF}\u{2A700}-\u{2B739}\u{2B740}-\u{2B81D}\u{2B820}-\u{2CEA1}\u{2CEB0}-\u{2EBE0}\u{2EBF0}-\u{2EE5D}\u{2F800}-\u{2FA1D}\u{30000}-\u{3134A}\u{31350}-\u{323AF}]*$/u.test(e)},{name:"string",test:w},{name:"Chain",test:ie},{name:"Array",test:N},{name:"Matrix",test:E},{name:"DenseMatrix",test:S},{name:"SparseMatrix",test:M},{name:"Range",test:C},{name:"Index",test:T},{name:"boolean",test:D},{name:"ResultSet",test:F},{name:"Help",test:B},{name:"function",test:O},{name:"Date",test:_},{name:"RegExp",test:z},{name:"null",test:P},{name:"undefined",test:j},{name:"AccessorNode",test:U},{name:"ArrayNode",test:L},{name:"AssignmentNode",test:$},{name:"BlockNode",test:H},{name:"ConditionalNode",test:G},{name:"ConstantNode",test:Z},{name:"FunctionNode",test:Y},{name:"FunctionAssignmentNode",test:W},{name:"IndexNode",test:J},{name:"Node",test:X},{name:"ObjectNode",test:Q},{name:"OperatorNode",test:K},{name:"ParenthesisNode",test:ee},{name:"RangeNode",test:te},{name:"RelationalNode",test:re},{name:"SymbolNode",test:ne},{name:"Map",test:k},{name:"Object",test:I}]),o.addConversions([{from:"number",to:"BigNumber",convert:function(e){if(t||He(e),e.toExponential().replace(/e.*$/,"").replace(/^0\.?0*|\./,"").length>15)throw new TypeError("Cannot implicitly convert a number with >15 significant digits to BigNumber (value: "+e+"). Use function bignumber(x) to convert to BigNumber.");return new t(e)}},{from:"number",to:"Complex",convert:function(e){return r||Ge(e),new r(e,0)}},{from:"BigNumber",to:"Complex",convert:function(e){return r||Ge(e),new r(e.toNumber(),0)}},{from:"bigint",to:"number",convert:function(e){if(e>Number.MAX_SAFE_INTEGER)throw new TypeError("Cannot implicitly convert bigint to number: value exceeds the max safe integer value (value: "+e+")");return Number(e)}},{from:"bigint",to:"BigNumber",convert:function(e){return t||He(e),new t(e.toString())}},{from:"bigint",to:"Fraction",convert:function(e){return i||Ze(e),new i(e.toString())}},{from:"Fraction",to:"BigNumber",convert:function(e){throw new TypeError("Cannot implicitly convert a Fraction to BigNumber or vice versa. Use function bignumber(x) to convert to BigNumber or fraction(x) to convert to Fraction.")}},{from:"Fraction",to:"Complex",convert:function(e){return r||Ge(e),new r(e.valueOf(),0)}},{from:"number",to:"Fraction",convert:function(e){i||Ze(e);const t=new i(e);if(t.valueOf()!==e)throw new TypeError("Cannot implicitly convert a number to a Fraction when there will be a loss of precision (value: "+e+"). Use function fraction(x) to convert to Fraction.");return t}},{from:"string",to:"number",convert:function(e){const t=Number(e);if(isNaN(t))throw new Error('Cannot convert "'+e+'" to a number');return t}},{from:"string",to:"BigNumber",convert:function(e){t||He(e);try{return new t(e)}catch(t){throw new Error('Cannot convert "'+e+'" to BigNumber')}}},{from:"string",to:"bigint",convert:function(e){try{return BigInt(e)}catch(t){throw new Error('Cannot convert "'+e+'" to BigInt')}}},{from:"string",to:"Fraction",convert:function(e){i||Ze(e);try{return new i(e)}catch(t){throw new Error('Cannot convert "'+e+'" to Fraction')}}},{from:"string",to:"Complex",convert:function(e){r||Ge(e);try{return new r(e)}catch(t){throw new Error('Cannot convert "'+e+'" to Complex')}}},{from:"boolean",to:"number",convert:function(e){return+e}},{from:"boolean",to:"BigNumber",convert:function(e){return t||He(e),new t(+e)}},{from:"boolean",to:"bigint",convert:function(e){return BigInt(+e)}},{from:"boolean",to:"Fraction",convert:function(e){return i||Ze(e),new i(+e)}},{from:"boolean",to:"string",convert:function(e){return String(e)}},{from:"Array",to:"Matrix",convert:function(e){return n||function(){throw new Error("Cannot convert array into a Matrix: no class 'DenseMatrix' provided")}(),new n(e)}},{from:"Matrix",to:"Array",convert:function(e){return e.valueOf()}}]),o.onMismatch=(e,t,r)=>{const n=o.createError(e,t,r);if(["wrongType","mismatch"].includes(n.data.category)&&1===t.length&&A(t[0])&&r.some((e=>!e.params.includes(",")))){const t=new TypeError(`Function '${e}' doesn't apply to matrices. To call it elementwise on a matrix 'M', try 'map(M, ${e})'.`);throw t.data=n.data,t}throw n},o.onMismatch=(e,t,r)=>{const n=o.createError(e,t,r);if(["wrongType","mismatch"].includes(n.data.category)&&1===t.length&&A(t[0])&&r.some((e=>!e.params.includes(",")))){const t=new TypeError(`Function '${e}' doesn't apply to matrices. To call it elementwise on a matrix 'M', try 'map(M, ${e})'.`);throw t.data=n.data,t}throw n},o}));function He(e){throw new Error(`Cannot convert value ${e} into a BigNumber: no class 'BigNumber' provided`)}function Ge(e){throw new Error(`Cannot convert value ${e} into a Complex number: no class 'Complex' provided`)}function Ze(e){throw new Error(`Cannot convert value ${e} into a Fraction, no class 'Fraction' provided.`)}const Ve=de("ResultSet",[],(()=>{function e(t){if(!(this instanceof e))throw new SyntaxError("Constructor must be called with the new operator");this.entries=t||[]}return e.prototype.type="ResultSet",e.prototype.isResultSet=!0,e.prototype.valueOf=function(){return this.entries},e.prototype.toString=function(){return"["+this.entries.join(", ")+"]"},e.prototype.toJSON=function(){return{mathjs:"ResultSet",entries:this.entries}},e.fromJSON=function(t){return new e(t.entries)},e}),{isClass:!0});var We,Ye,Je=9e15,Xe=1e9,Qe="0123456789abcdef",Ke="2.3025850929940456840179914546843642076011014886287729760333279009675726096773524802359972050895982983419677840422862486334095254650828067566662873690987816894829072083255546808437998948262331985283935053089653777326288461633662222876982198867465436674744042432743651550489343149393914796194044002221051017141748003688084012647080685567743216228355220114804663715659121373450747856947683463616792101806445070648000277502684916746550586856935673420670581136429224554405758925724208241314695689016758940256776311356919292033376587141660230105703089634572075440370847469940168269282808481184289314848524948644871927809676271275775397027668605952496716674183485704422507197965004714951050492214776567636938662976979522110718264549734772662425709429322582798502585509785265383207606726317164309505995087807523710333101197857547331541421808427543863591778117054309827482385045648019095610299291824318237525357709750539565187697510374970888692180205189339507238539205144634197265287286965110862571492198849978748873771345686209167058",et="3.1415926535897932384626433832795028841971693993751058209749445923078164062862089986280348253421170679821480865132823066470938446095505822317253594081284811174502841027019385211055596446229489549303819644288109756659334461284756482337867831652712019091456485669234603486104543266482133936072602491412737245870066063155881748815209209628292540917153643678925903600113305305488204665213841469519415116094330572703657595919530921861173819326117931051185480744623799627495673518857527248912279381830119491298336733624406566430860213949463952247371907021798609437027705392171762931767523846748184676694051320005681271452635608277857713427577896091736371787214684409012249534301465495853710507922796892589235420199561121290219608640344181598136297747713099605187072113499999983729780499510597317328160963185950244594553469083026425223082533446850352619311881710100031378387528865875332083814206171776691473035982534904287554687311595628638823537875937519577818577805321712268066130019278766111959092164201989380952572010654858632789",tt={precision:20,rounding:4,modulo:1,toExpNeg:-7,toExpPos:21,minE:-Je,maxE:Je,crypto:!1},rt=!0,nt="[DecimalError] ",it=nt+"Invalid argument: ",ot=nt+"Precision limit exceeded",at=nt+"crypto unavailable",st="[object Decimal]",ut=Math.floor,ct=Math.pow,lt=/^0b([01]+(\.[01]*)?|\.[01]+)(p[+-]?\d+)?$/i,ft=/^0x([0-9a-f]+(\.[0-9a-f]*)?|\.[0-9a-f]+)(p[+-]?\d+)?$/i,pt=/^0o([0-7]+(\.[0-7]*)?|\.[0-7]+)(p[+-]?\d+)?$/i,mt=/^(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,dt=1e7,ht=7,gt=Ke.length-1,yt=et.length-1,xt={toStringTag:st};function bt(e){var t,r,n,i=e.length-1,o="",a=e[0];if(i>0){for(o+=a,t=1;t<i;t++)n=e[t]+"",(r=ht-n.length)&&(o+=Ft(r)),o+=n;a=e[t],(r=ht-(n=a+"").length)&&(o+=Ft(r))}else if(0===a)return"0";for(;a%10==0;)a/=10;return o+a}function vt(e,t,r){if(e!==~~e||e<t||e>r)throw Error(it+e)}function wt(e,t,r,n){var i,o,a,s;for(o=e[0];o>=10;o/=10)--t;return--t<0?(t+=ht,i=0):(i=Math.ceil((t+1)/ht),t%=ht),o=ct(10,ht-t),s=e[i]%o|0,null==n?t<3?(0==t?s=s/100|0:1==t&&(s=s/10|0),a=r<4&&99999==s||r>3&&49999==s||5e4==s||0==s):a=(r<4&&s+1==o||r>3&&s+1==o/2)&&(e[i+1]/o/100|0)==ct(10,t-2)-1||(s==o/2||0==s)&&!(e[i+1]/o/100|0):t<4?(0==t?s=s/1e3|0:1==t?s=s/100|0:2==t&&(s=s/10|0),a=(n||r<4)&&9999==s||!n&&r>3&&4999==s):a=((n||r<4)&&s+1==o||!n&&r>3&&s+1==o/2)&&(e[i+1]/o/1e3|0)==ct(10,t-3)-1,a}function Nt(e,t,r){for(var n,i,o=[0],a=0,s=e.length;a<s;){for(i=o.length;i--;)o[i]*=t;for(o[0]+=Qe.indexOf(e.charAt(a++)),n=0;n<o.length;n++)o[n]>r-1&&(void 0===o[n+1]&&(o[n+1]=0),o[n+1]+=o[n]/r|0,o[n]%=r)}return o.reverse()}xt.absoluteValue=xt.abs=function(){var e=new this.constructor(this);return e.s<0&&(e.s=1),At(e)},xt.ceil=function(){return At(new this.constructor(this),this.e+1,2)},xt.clampedTo=xt.clamp=function(e,t){var r=this,n=r.constructor;if(e=new n(e),t=new n(t),!e.s||!t.s)return new n(NaN);if(e.gt(t))throw Error(it+t);return r.cmp(e)<0?e:r.cmp(t)>0?t:new n(r)},xt.comparedTo=xt.cmp=function(e){var t,r,n,i,o=this,a=o.d,s=(e=new o.constructor(e)).d,u=o.s,c=e.s;if(!a||!s)return u&&c?u!==c?u:a===s?0:!a^u<0?1:-1:NaN;if(!a[0]||!s[0])return a[0]?u:s[0]?-c:0;if(u!==c)return u;if(o.e!==e.e)return o.e>e.e^u<0?1:-1;for(t=0,r=(n=a.length)<(i=s.length)?n:i;t<r;++t)if(a[t]!==s[t])return a[t]>s[t]^u<0?1:-1;return n===i?0:n>i^u<0?1:-1},xt.cosine=xt.cos=function(){var e,t,r=this,n=r.constructor;return r.d?r.d[0]?(e=n.precision,t=n.rounding,n.precision=e+Math.max(r.e,r.sd())+ht,n.rounding=1,r=function(e,t){var r,n,i;if(t.isZero())return t;(n=t.d.length)<32?i=(1/jt(4,r=Math.ceil(n/3))).toString():(r=16,i="2.3283064365386962890625e-10"),e.precision+=r,t=Pt(e,1,t.times(i),new e(1));for(var o=r;o--;){var a=t.times(t);t=a.times(a).minus(a).times(8).plus(1)}return e.precision-=r,t}(n,Ut(n,r)),n.precision=e,n.rounding=t,At(2==Ye||3==Ye?r.neg():r,e,t,!0)):new n(1):new n(NaN)},xt.cubeRoot=xt.cbrt=function(){var e,t,r,n,i,o,a,s,u,c,l=this,f=l.constructor;if(!l.isFinite()||l.isZero())return new f(l);for(rt=!1,(o=l.s*ct(l.s*l,1/3))&&Math.abs(o)!=1/0?n=new f(o.toString()):(r=bt(l.d),(o=((e=l.e)-r.length+1)%3)&&(r+=1==o||-2==o?"0":"00"),o=ct(r,1/3),e=ut((e+1)/3)-(e%3==(e<0?-1:2)),(n=new f(r=o==1/0?"5e"+e:(r=o.toExponential()).slice(0,r.indexOf("e")+1)+e)).s=l.s),a=(e=f.precision)+3;;)if(c=(u=(s=n).times(s).times(s)).plus(l),n=Et(c.plus(l).times(s),c.plus(u),a+2,1),bt(s.d).slice(0,a)===(r=bt(n.d)).slice(0,a)){if("9999"!=(r=r.slice(a-3,a+1))&&(i||"4999"!=r)){+r&&(+r.slice(1)||"5"!=r.charAt(0))||(At(n,e+1,1),t=!n.times(n).times(n).eq(l));break}if(!i&&(At(s,e+1,0),s.times(s).times(s).eq(l))){n=s;break}a+=4,i=1}return rt=!0,At(n,e,f.rounding,t)},xt.decimalPlaces=xt.dp=function(){var e,t=this.d,r=NaN;if(t){if(r=((e=t.length-1)-ut(this.e/ht))*ht,e=t[e])for(;e%10==0;e/=10)r--;r<0&&(r=0)}return r},xt.dividedBy=xt.div=function(e){return Et(this,new this.constructor(e))},xt.dividedToIntegerBy=xt.divToInt=function(e){var t=this.constructor;return At(Et(this,new t(e),0,1,1),t.precision,t.rounding)},xt.equals=xt.eq=function(e){return 0===this.cmp(e)},xt.floor=function(){return At(new this.constructor(this),this.e+1,3)},xt.greaterThan=xt.gt=function(e){return this.cmp(e)>0},xt.greaterThanOrEqualTo=xt.gte=function(e){var t=this.cmp(e);return 1==t||0===t},xt.hyperbolicCosine=xt.cosh=function(){var e,t,r,n,i,o=this,a=o.constructor,s=new a(1);if(!o.isFinite())return new a(o.s?1/0:NaN);if(o.isZero())return s;r=a.precision,n=a.rounding,a.precision=r+Math.max(o.e,o.sd())+4,a.rounding=1,(i=o.d.length)<32?t=(1/jt(4,e=Math.ceil(i/3))).toString():(e=16,t="2.3283064365386962890625e-10"),o=Pt(a,1,o.times(t),new a(1),!0);for(var u,c=e,l=new a(8);c--;)u=o.times(o),o=s.minus(u.times(l.minus(u.times(l))));return At(o,a.precision=r,a.rounding=n,!0)},xt.hyperbolicSine=xt.sinh=function(){var e,t,r,n,i=this,o=i.constructor;if(!i.isFinite()||i.isZero())return new o(i);if(t=o.precision,r=o.rounding,o.precision=t+Math.max(i.e,i.sd())+4,o.rounding=1,(n=i.d.length)<3)i=Pt(o,2,i,i,!0);else{e=(e=1.4*Math.sqrt(n))>16?16:0|e,i=Pt(o,2,i=i.times(1/jt(5,e)),i,!0);for(var a,s=new o(5),u=new o(16),c=new o(20);e--;)a=i.times(i),i=i.times(s.plus(a.times(u.times(a).plus(c))))}return o.precision=t,o.rounding=r,At(i,t,r,!0)},xt.hyperbolicTangent=xt.tanh=function(){var e,t,r=this,n=r.constructor;return r.isFinite()?r.isZero()?new n(r):(e=n.precision,t=n.rounding,n.precision=e+7,n.rounding=1,Et(r.sinh(),r.cosh(),n.precision=e,n.rounding=t)):new n(r.s)},xt.inverseCosine=xt.acos=function(){var e,t=this,r=t.constructor,n=t.abs().cmp(1),i=r.precision,o=r.rounding;return-1!==n?0===n?t.isNeg()?Tt(r,i,o):new r(0):new r(NaN):t.isZero()?Tt(r,i+4,o).times(.5):(r.precision=i+6,r.rounding=1,t=t.asin(),e=Tt(r,i+4,o).times(.5),r.precision=i,r.rounding=o,e.minus(t))},xt.inverseHyperbolicCosine=xt.acosh=function(){var e,t,r=this,n=r.constructor;return r.lte(1)?new n(r.eq(1)?0:NaN):r.isFinite()?(e=n.precision,t=n.rounding,n.precision=e+Math.max(Math.abs(r.e),r.sd())+4,n.rounding=1,rt=!1,r=r.times(r).minus(1).sqrt().plus(r),rt=!0,n.precision=e,n.rounding=t,r.ln()):new n(r)},xt.inverseHyperbolicSine=xt.asinh=function(){var e,t,r=this,n=r.constructor;return!r.isFinite()||r.isZero()?new n(r):(e=n.precision,t=n.rounding,n.precision=e+2*Math.max(Math.abs(r.e),r.sd())+6,n.rounding=1,rt=!1,r=r.times(r).plus(1).sqrt().plus(r),rt=!0,n.precision=e,n.rounding=t,r.ln())},xt.inverseHyperbolicTangent=xt.atanh=function(){var e,t,r,n,i=this,o=i.constructor;return i.isFinite()?i.e>=0?new o(i.abs().eq(1)?i.s/0:i.isZero()?i:NaN):(e=o.precision,t=o.rounding,n=i.sd(),Math.max(n,e)<2*-i.e-1?At(new o(i),e,t,!0):(o.precision=r=n-i.e,i=Et(i.plus(1),new o(1).minus(i),r+e,1),o.precision=e+4,o.rounding=1,i=i.ln(),o.precision=e,o.rounding=t,i.times(.5))):new o(NaN)},xt.inverseSine=xt.asin=function(){var e,t,r,n,i=this,o=i.constructor;return i.isZero()?new o(i):(t=i.abs().cmp(1),r=o.precision,n=o.rounding,-1!==t?0===t?((e=Tt(o,r+4,n).times(.5)).s=i.s,e):new o(NaN):(o.precision=r+6,o.rounding=1,i=i.div(new o(1).minus(i.times(i)).sqrt().plus(1)).atan(),o.precision=r,o.rounding=n,i.times(2)))},xt.inverseTangent=xt.atan=function(){var e,t,r,n,i,o,a,s,u,c=this,l=c.constructor,f=l.precision,p=l.rounding;if(c.isFinite()){if(c.isZero())return new l(c);if(c.abs().eq(1)&&f+4<=yt)return(a=Tt(l,f+4,p).times(.25)).s=c.s,a}else{if(!c.s)return new l(NaN);if(f+4<=yt)return(a=Tt(l,f+4,p).times(.5)).s=c.s,a}for(l.precision=s=f+10,l.rounding=1,e=r=Math.min(28,s/ht+2|0);e;--e)c=c.div(c.times(c).plus(1).sqrt().plus(1));for(rt=!1,t=Math.ceil(s/ht),n=1,u=c.times(c),a=new l(c),i=c;-1!==e;)if(i=i.times(u),o=a.minus(i.div(n+=2)),i=i.times(u),void 0!==(a=o.plus(i.div(n+=2))).d[t])for(e=t;a.d[e]===o.d[e]&&e--;);return r&&(a=a.times(2<<r-1)),rt=!0,At(a,l.precision=f,l.rounding=p,!0)},xt.isFinite=function(){return!!this.d},xt.isInteger=xt.isInt=function(){return!!this.d&&ut(this.e/ht)>this.d.length-2},xt.isNaN=function(){return!this.s},xt.isNegative=xt.isNeg=function(){return this.s<0},xt.isPositive=xt.isPos=function(){return this.s>0},xt.isZero=function(){return!!this.d&&0===this.d[0]},xt.lessThan=xt.lt=function(e){return this.cmp(e)<0},xt.lessThanOrEqualTo=xt.lte=function(e){return this.cmp(e)<1},xt.logarithm=xt.log=function(e){var t,r,n,i,o,a,s,u,c=this,l=c.constructor,f=l.precision,p=l.rounding;if(null==e)e=new l(10),t=!0;else{if(r=(e=new l(e)).d,e.s<0||!r||!r[0]||e.eq(1))return new l(NaN);t=e.eq(10)}if(r=c.d,c.s<0||!r||!r[0]||c.eq(1))return new l(r&&!r[0]?-1/0:1!=c.s?NaN:r?0:1/0);if(t)if(r.length>1)o=!0;else{for(i=r[0];i%10==0;)i/=10;o=1!==i}if(rt=!1,a=It(c,s=f+5),n=t?Ct(l,s+10):It(e,s),wt((u=Et(a,n,s,1)).d,i=f,p))do{if(a=It(c,s+=10),n=t?Ct(l,s+10):It(e,s),u=Et(a,n,s,1),!o){+bt(u.d).slice(i+1,i+15)+1==1e14&&(u=At(u,f+1,0));break}}while(wt(u.d,i+=10,p));return rt=!0,At(u,f,p)},xt.minus=xt.sub=function(e){var t,r,n,i,o,a,s,u,c,l,f,p,m=this,d=m.constructor;if(e=new d(e),!m.d||!e.d)return m.s&&e.s?m.d?e.s=-e.s:e=new d(e.d||m.s!==e.s?m:NaN):e=new d(NaN),e;if(m.s!=e.s)return e.s=-e.s,m.plus(e);if(c=m.d,p=e.d,s=d.precision,u=d.rounding,!c[0]||!p[0]){if(p[0])e.s=-e.s;else{if(!c[0])return new d(3===u?-0:0);e=new d(m)}return rt?At(e,s,u):e}if(r=ut(e.e/ht),l=ut(m.e/ht),c=c.slice(),o=l-r){for((f=o<0)?(t=c,o=-o,a=p.length):(t=p,r=l,a=c.length),o>(n=Math.max(Math.ceil(s/ht),a)+2)&&(o=n,t.length=1),t.reverse(),n=o;n--;)t.push(0);t.reverse()}else{for((f=(n=c.length)<(a=p.length))&&(a=n),n=0;n<a;n++)if(c[n]!=p[n]){f=c[n]<p[n];break}o=0}for(f&&(t=c,c=p,p=t,e.s=-e.s),a=c.length,n=p.length-a;n>0;--n)c[a++]=0;for(n=p.length;n>o;){if(c[--n]<p[n]){for(i=n;i&&0===c[--i];)c[i]=dt-1;--c[i],c[n]+=dt}c[n]-=p[n]}for(;0===c[--a];)c.pop();for(;0===c[0];c.shift())--r;return c[0]?(e.d=c,e.e=Mt(c,r),rt?At(e,s,u):e):new d(3===u?-0:0)},xt.modulo=xt.mod=function(e){var t,r=this,n=r.constructor;return e=new n(e),!r.d||!e.s||e.d&&!e.d[0]?new n(NaN):!e.d||r.d&&!r.d[0]?At(new n(r),n.precision,n.rounding):(rt=!1,9==n.modulo?(t=Et(r,e.abs(),0,3,1)).s*=e.s:t=Et(r,e,0,n.modulo,1),t=t.times(e),rt=!0,r.minus(t))},xt.naturalExponential=xt.exp=function(){return zt(this)},xt.naturalLogarithm=xt.ln=function(){return It(this)},xt.negated=xt.neg=function(){var e=new this.constructor(this);return e.s=-e.s,At(e)},xt.plus=xt.add=function(e){var t,r,n,i,o,a,s,u,c,l,f=this,p=f.constructor;if(e=new p(e),!f.d||!e.d)return f.s&&e.s?f.d||(e=new p(e.d||f.s===e.s?f:NaN)):e=new p(NaN),e;if(f.s!=e.s)return e.s=-e.s,f.minus(e);if(c=f.d,l=e.d,s=p.precision,u=p.rounding,!c[0]||!l[0])return l[0]||(e=new p(f)),rt?At(e,s,u):e;if(o=ut(f.e/ht),n=ut(e.e/ht),c=c.slice(),i=o-n){for(i<0?(r=c,i=-i,a=l.length):(r=l,n=o,a=c.length),i>(a=(o=Math.ceil(s/ht))>a?o+1:a+1)&&(i=a,r.length=1),r.reverse();i--;)r.push(0);r.reverse()}for((a=c.length)-(i=l.length)<0&&(i=a,r=l,l=c,c=r),t=0;i;)t=(c[--i]=c[i]+l[i]+t)/dt|0,c[i]%=dt;for(t&&(c.unshift(t),++n),a=c.length;0==c[--a];)c.pop();return e.d=c,e.e=Mt(c,n),rt?At(e,s,u):e},xt.precision=xt.sd=function(e){var t,r=this;if(void 0!==e&&e!==!!e&&1!==e&&0!==e)throw Error(it+e);return r.d?(t=Dt(r.d),e&&r.e+1>t&&(t=r.e+1)):t=NaN,t},xt.round=function(){var e=this,t=e.constructor;return At(new t(e),e.e+1,t.rounding)},xt.sine=xt.sin=function(){var e,t,r=this,n=r.constructor;return r.isFinite()?r.isZero()?new n(r):(e=n.precision,t=n.rounding,n.precision=e+Math.max(r.e,r.sd())+ht,n.rounding=1,r=function(e,t){var r,n=t.d.length;if(n<3)return t.isZero()?t:Pt(e,2,t,t);r=(r=1.4*Math.sqrt(n))>16?16:0|r,t=Pt(e,2,t=t.times(1/jt(5,r)),t);for(var i,o=new e(5),a=new e(16),s=new e(20);r--;)i=t.times(t),t=t.times(o.plus(i.times(a.times(i).minus(s))));return t}(n,Ut(n,r)),n.precision=e,n.rounding=t,At(Ye>2?r.neg():r,e,t,!0)):new n(NaN)},xt.squareRoot=xt.sqrt=function(){var e,t,r,n,i,o,a=this,s=a.d,u=a.e,c=a.s,l=a.constructor;if(1!==c||!s||!s[0])return new l(!c||c<0&&(!s||s[0])?NaN:s?a:1/0);for(rt=!1,0==(c=Math.sqrt(+a))||c==1/0?(((t=bt(s)).length+u)%2==0&&(t+="0"),c=Math.sqrt(t),u=ut((u+1)/2)-(u<0||u%2),n=new l(t=c==1/0?"5e"+u:(t=c.toExponential()).slice(0,t.indexOf("e")+1)+u)):n=new l(c.toString()),r=(u=l.precision)+3;;)if(n=(o=n).plus(Et(a,o,r+2,1)).times(.5),bt(o.d).slice(0,r)===(t=bt(n.d)).slice(0,r)){if("9999"!=(t=t.slice(r-3,r+1))&&(i||"4999"!=t)){+t&&(+t.slice(1)||"5"!=t.charAt(0))||(At(n,u+1,1),e=!n.times(n).eq(a));break}if(!i&&(At(o,u+1,0),o.times(o).eq(a))){n=o;break}r+=4,i=1}return rt=!0,At(n,u,l.rounding,e)},xt.tangent=xt.tan=function(){var e,t,r=this,n=r.constructor;return r.isFinite()?r.isZero()?new n(r):(e=n.precision,t=n.rounding,n.precision=e+10,n.rounding=1,(r=r.sin()).s=1,r=Et(r,new n(1).minus(r.times(r)).sqrt(),e+10,0),n.precision=e,n.rounding=t,At(2==Ye||4==Ye?r.neg():r,e,t,!0)):new n(NaN)},xt.times=xt.mul=function(e){var t,r,n,i,o,a,s,u,c,l=this,f=l.constructor,p=l.d,m=(e=new f(e)).d;if(e.s*=l.s,!(p&&p[0]&&m&&m[0]))return new f(!e.s||p&&!p[0]&&!m||m&&!m[0]&&!p?NaN:p&&m?0*e.s:e.s/0);for(r=ut(l.e/ht)+ut(e.e/ht),(u=p.length)<(c=m.length)&&(o=p,p=m,m=o,a=u,u=c,c=a),o=[],n=a=u+c;n--;)o.push(0);for(n=c;--n>=0;){for(t=0,i=u+n;i>n;)s=o[i]+m[n]*p[i-n-1]+t,o[i--]=s%dt|0,t=s/dt|0;o[i]=(o[i]+t)%dt|0}for(;!o[--a];)o.pop();return t?++r:o.shift(),e.d=o,e.e=Mt(o,r),rt?At(e,f.precision,f.rounding):e},xt.toBinary=function(e,t){return Lt(this,2,e,t)},xt.toDecimalPlaces=xt.toDP=function(e,t){var r=this,n=r.constructor;return r=new n(r),void 0===e?r:(vt(e,0,Xe),void 0===t?t=n.rounding:vt(t,0,8),At(r,e+r.e+1,t))},xt.toExponential=function(e,t){var r,n=this,i=n.constructor;return void 0===e?r=St(n,!0):(vt(e,0,Xe),void 0===t?t=i.rounding:vt(t,0,8),r=St(n=At(new i(n),e+1,t),!0,e+1)),n.isNeg()&&!n.isZero()?"-"+r:r},xt.toFixed=function(e,t){var r,n,i=this,o=i.constructor;return void 0===e?r=St(i):(vt(e,0,Xe),void 0===t?t=o.rounding:vt(t,0,8),r=St(n=At(new o(i),e+i.e+1,t),!1,e+n.e+1)),i.isNeg()&&!i.isZero()?"-"+r:r},xt.toFraction=function(e){var t,r,n,i,o,a,s,u,c,l,f,p,m=this,d=m.d,h=m.constructor;if(!d)return new h(m);if(c=r=new h(1),n=u=new h(0),a=(o=(t=new h(n)).e=Dt(d)-m.e-1)%ht,t.d[0]=ct(10,a<0?ht+a:a),null==e)e=o>0?t:c;else{if(!(s=new h(e)).isInt()||s.lt(c))throw Error(it+s);e=s.gt(t)?o>0?t:c:s}for(rt=!1,s=new h(bt(d)),l=h.precision,h.precision=o=d.length*ht*2;f=Et(s,t,0,1,1),1!=(i=r.plus(f.times(n))).cmp(e);)r=n,n=i,i=c,c=u.plus(f.times(i)),u=i,i=t,t=s.minus(f.times(i)),s=i;return i=Et(e.minus(r),n,0,1,1),u=u.plus(i.times(c)),r=r.plus(i.times(n)),u.s=c.s=m.s,p=Et(c,n,o,1).minus(m).abs().cmp(Et(u,r,o,1).minus(m).abs())<1?[c,n]:[u,r],h.precision=l,rt=!0,p},xt.toHexadecimal=xt.toHex=function(e,t){return Lt(this,16,e,t)},xt.toNearest=function(e,t){var r=this,n=r.constructor;if(r=new n(r),null==e){if(!r.d)return r;e=new n(1),t=n.rounding}else{if(e=new n(e),void 0===t?t=n.rounding:vt(t,0,8),!r.d)return e.s?r:e;if(!e.d)return e.s&&(e.s=r.s),e}return e.d[0]?(rt=!1,r=Et(r,e,0,t,1).times(e),rt=!0,At(r)):(e.s=r.s,r=e),r},xt.toNumber=function(){return+this},xt.toOctal=function(e,t){return Lt(this,8,e,t)},xt.toPower=xt.pow=function(e){var t,r,n,i,o,a,s=this,u=s.constructor,c=+(e=new u(e));if(!(s.d&&e.d&&s.d[0]&&e.d[0]))return new u(ct(+s,c));if((s=new u(s)).eq(1))return s;if(n=u.precision,o=u.rounding,e.eq(1))return At(s,n,o);if((t=ut(e.e/ht))>=e.d.length-1&&(r=c<0?-c:c)<=9007199254740991)return i=Bt(u,s,r,n),e.s<0?new u(1).div(i):At(i,n,o);if((a=s.s)<0){if(t<e.d.length-1)return new u(NaN);if(1&e.d[t]||(a=1),0==s.e&&1==s.d[0]&&1==s.d.length)return s.s=a,s}return(t=0!=(r=ct(+s,c))&&isFinite(r)?new u(r+"").e:ut(c*(Math.log("0."+bt(s.d))/Math.LN10+s.e+1)))>u.maxE+1||t<u.minE-1?new u(t>0?a/0:0):(rt=!1,u.rounding=s.s=1,r=Math.min(12,(t+"").length),(i=zt(e.times(It(s,n+r)),n)).d&&wt((i=At(i,n+5,1)).d,n,o)&&(t=n+10,+bt((i=At(zt(e.times(It(s,t+r)),t),t+5,1)).d).slice(n+1,n+15)+1==1e14&&(i=At(i,n+1,0))),i.s=a,rt=!0,u.rounding=o,At(i,n,o))},xt.toPrecision=function(e,t){var r,n=this,i=n.constructor;return void 0===e?r=St(n,n.e<=i.toExpNeg||n.e>=i.toExpPos):(vt(e,1,Xe),void 0===t?t=i.rounding:vt(t,0,8),r=St(n=At(new i(n),e,t),e<=n.e||n.e<=i.toExpNeg,e)),n.isNeg()&&!n.isZero()?"-"+r:r},xt.toSignificantDigits=xt.toSD=function(e,t){var r=this.constructor;return void 0===e?(e=r.precision,t=r.rounding):(vt(e,1,Xe),void 0===t?t=r.rounding:vt(t,0,8)),At(new r(this),e,t)},xt.toString=function(){var e=this,t=e.constructor,r=St(e,e.e<=t.toExpNeg||e.e>=t.toExpPos);return e.isNeg()&&!e.isZero()?"-"+r:r},xt.truncated=xt.trunc=function(){return At(new this.constructor(this),this.e+1,1)},xt.valueOf=xt.toJSON=function(){var e=this,t=e.constructor,r=St(e,e.e<=t.toExpNeg||e.e>=t.toExpPos);return e.isNeg()?"-"+r:r};var Et=function(){function e(e,t,r){var n,i=0,o=e.length;for(e=e.slice();o--;)n=e[o]*t+i,e[o]=n%r|0,i=n/r|0;return i&&e.unshift(i),e}function t(e,t,r,n){var i,o;if(r!=n)o=r>n?1:-1;else for(i=o=0;i<r;i++)if(e[i]!=t[i]){o=e[i]>t[i]?1:-1;break}return o}function r(e,t,r,n){for(var i=0;r--;)e[r]-=i,i=e[r]<t[r]?1:0,e[r]=i*n+e[r]-t[r];for(;!e[0]&&e.length>1;)e.shift()}return function(n,i,o,a,s,u){var c,l,f,p,m,d,h,g,y,x,b,v,w,N,E,A,S,M,C,T,D=n.constructor,F=n.s==i.s?1:-1,B=n.d,O=i.d;if(!(B&&B[0]&&O&&O[0]))return new D(n.s&&i.s&&(B?!O||B[0]!=O[0]:O)?B&&0==B[0]||!O?0*F:F/0:NaN);for(u?(m=1,l=n.e-i.e):(u=dt,m=ht,l=ut(n.e/m)-ut(i.e/m)),C=O.length,S=B.length,x=(y=new D(F)).d=[],f=0;O[f]==(B[f]||0);f++);if(O[f]>(B[f]||0)&&l--,null==o?(N=o=D.precision,a=D.rounding):N=s?o+(n.e-i.e)+1:o,N<0)x.push(1),d=!0;else{if(N=N/m+2|0,f=0,1==C){for(p=0,O=O[0],N++;(f<S||p)&&N--;f++)E=p*u+(B[f]||0),x[f]=E/O|0,p=E%O|0;d=p||f<S}else{for((p=u/(O[0]+1)|0)>1&&(O=e(O,p,u),B=e(B,p,u),C=O.length,S=B.length),A=C,v=(b=B.slice(0,C)).length;v<C;)b[v++]=0;(T=O.slice()).unshift(0),M=O[0],O[1]>=u/2&&++M;do{p=0,(c=t(O,b,C,v))<0?(w=b[0],C!=v&&(w=w*u+(b[1]||0)),(p=w/M|0)>1?(p>=u&&(p=u-1),1==(c=t(h=e(O,p,u),b,g=h.length,v=b.length))&&(p--,r(h,C<g?T:O,g,u))):(0==p&&(c=p=1),h=O.slice()),(g=h.length)<v&&h.unshift(0),r(b,h,v,u),-1==c&&(c=t(O,b,C,v=b.length))<1&&(p++,r(b,C<v?T:O,v,u)),v=b.length):0===c&&(p++,b=[0]),x[f++]=p,c&&b[0]?b[v++]=B[A]||0:(b=[B[A]],v=1)}while((A++<S||void 0!==b[0])&&N--);d=void 0!==b[0]}x[0]||x.shift()}if(1==m)y.e=l,We=d;else{for(f=1,p=x[0];p>=10;p/=10)f++;y.e=f+l*m-1,At(y,s?o+y.e+1:o,a,d)}return y}}();function At(e,t,r,n){var i,o,a,s,u,c,l,f,p,m=e.constructor;e:if(null!=t){if(!(f=e.d))return e;for(i=1,s=f[0];s>=10;s/=10)i++;if((o=t-i)<0)o+=ht,a=t,u=(l=f[p=0])/ct(10,i-a-1)%10|0;else if((p=Math.ceil((o+1)/ht))>=(s=f.length)){if(!n)break e;for(;s++<=p;)f.push(0);l=u=0,i=1,a=(o%=ht)-ht+1}else{for(l=s=f[p],i=1;s>=10;s/=10)i++;u=(a=(o%=ht)-ht+i)<0?0:l/ct(10,i-a-1)%10|0}if(n=n||t<0||void 0!==f[p+1]||(a<0?l:l%ct(10,i-a-1)),c=r<4?(u||n)&&(0==r||r==(e.s<0?3:2)):u>5||5==u&&(4==r||n||6==r&&(o>0?a>0?l/ct(10,i-a):0:f[p-1])%10&1||r==(e.s<0?8:7)),t<1||!f[0])return f.length=0,c?(t-=e.e+1,f[0]=ct(10,(ht-t%ht)%ht),e.e=-t||0):f[0]=e.e=0,e;if(0==o?(f.length=p,s=1,p--):(f.length=p+1,s=ct(10,ht-o),f[p]=a>0?(l/ct(10,i-a)%ct(10,a)|0)*s:0),c)for(;;){if(0==p){for(o=1,a=f[0];a>=10;a/=10)o++;for(a=f[0]+=s,s=1;a>=10;a/=10)s++;o!=s&&(e.e++,f[0]==dt&&(f[0]=1));break}if(f[p]+=s,f[p]!=dt)break;f[p--]=0,s=1}for(o=f.length;0===f[--o];)f.pop()}return rt&&(e.e>m.maxE?(e.d=null,e.e=NaN):e.e<m.minE&&(e.e=0,e.d=[0])),e}function St(e,t,r){if(!e.isFinite())return kt(e);var n,i=e.e,o=bt(e.d),a=o.length;return t?(r&&(n=r-a)>0?o=o.charAt(0)+"."+o.slice(1)+Ft(n):a>1&&(o=o.charAt(0)+"."+o.slice(1)),o=o+(e.e<0?"e":"e+")+e.e):i<0?(o="0."+Ft(-i-1)+o,r&&(n=r-a)>0&&(o+=Ft(n))):i>=a?(o+=Ft(i+1-a),r&&(n=r-i-1)>0&&(o=o+"."+Ft(n))):((n=i+1)<a&&(o=o.slice(0,n)+"."+o.slice(n)),r&&(n=r-a)>0&&(i+1===a&&(o+="."),o+=Ft(n))),o}function Mt(e,t){var r=e[0];for(t*=ht;r>=10;r/=10)t++;return t}function Ct(e,t,r){if(t>gt)throw rt=!0,r&&(e.precision=r),Error(ot);return At(new e(Ke),t,1,!0)}function Tt(e,t,r){if(t>yt)throw Error(ot);return At(new e(et),t,r,!0)}function Dt(e){var t=e.length-1,r=t*ht+1;if(t=e[t]){for(;t%10==0;t/=10)r--;for(t=e[0];t>=10;t/=10)r++}return r}function Ft(e){for(var t="";e--;)t+="0";return t}function Bt(e,t,r,n){var i,o=new e(1),a=Math.ceil(n/ht+4);for(rt=!1;;){if(r%2&&$t((o=o.times(t)).d,a)&&(i=!0),0===(r=ut(r/2))){r=o.d.length-1,i&&0===o.d[r]&&++o.d[r];break}$t((t=t.times(t)).d,a)}return rt=!0,o}function Ot(e){return 1&e.d[e.d.length-1]}function _t(e,t,r){for(var n,i=new e(t[0]),o=0;++o<t.length;){if(!(n=new e(t[o])).s){i=n;break}i[r](n)&&(i=n)}return i}function zt(e,t){var r,n,i,o,a,s,u,c=0,l=0,f=0,p=e.constructor,m=p.rounding,d=p.precision;if(!e.d||!e.d[0]||e.e>17)return new p(e.d?e.d[0]?e.s<0?0:1/0:1:e.s?e.s<0?0:e:NaN);for(null==t?(rt=!1,u=d):u=t,s=new p(.03125);e.e>-2;)e=e.times(s),f+=5;for(u+=n=Math.log(ct(2,f))/Math.LN10*2+5|0,r=o=a=new p(1),p.precision=u;;){if(o=At(o.times(e),u,1),r=r.times(++l),bt((s=a.plus(Et(o,r,u,1))).d).slice(0,u)===bt(a.d).slice(0,u)){for(i=f;i--;)a=At(a.times(a),u,1);if(null!=t)return p.precision=d,a;if(!(c<3&&wt(a.d,u-n,m,c)))return At(a,p.precision=d,m,rt=!0);p.precision=u+=10,r=o=s=new p(1),l=0,c++}a=s}}function It(e,t){var r,n,i,o,a,s,u,c,l,f,p,m=1,d=e,h=d.d,g=d.constructor,y=g.rounding,x=g.precision;if(d.s<0||!h||!h[0]||!d.e&&1==h[0]&&1==h.length)return new g(h&&!h[0]?-1/0:1!=d.s?NaN:h?0:d);if(null==t?(rt=!1,l=x):l=t,g.precision=l+=10,n=(r=bt(h)).charAt(0),!(Math.abs(o=d.e)<15e14))return c=Ct(g,l+2,x).times(o+""),d=It(new g(n+"."+r.slice(1)),l-10).plus(c),g.precision=x,null==t?At(d,x,y,rt=!0):d;for(;n<7&&1!=n||1==n&&r.charAt(1)>3;)n=(r=bt((d=d.times(e)).d)).charAt(0),m++;for(o=d.e,n>1?(d=new g("0."+r),o++):d=new g(n+"."+r.slice(1)),f=d,u=a=d=Et(d.minus(1),d.plus(1),l,1),p=At(d.times(d),l,1),i=3;;){if(a=At(a.times(p),l,1),bt((c=u.plus(Et(a,new g(i),l,1))).d).slice(0,l)===bt(u.d).slice(0,l)){if(u=u.times(2),0!==o&&(u=u.plus(Ct(g,l+2,x).times(o+""))),u=Et(u,new g(m),l,1),null!=t)return g.precision=x,u;if(!wt(u.d,l-10,y,s))return At(u,g.precision=x,y,rt=!0);g.precision=l+=10,c=a=d=Et(f.minus(1),f.plus(1),l,1),p=At(d.times(d),l,1),i=s=1}u=c,i+=2}}function kt(e){return String(e.s*e.s/0)}function qt(e,t){var r,n,i;for((r=t.indexOf("."))>-1&&(t=t.replace(".","")),(n=t.search(/e/i))>0?(r<0&&(r=n),r+=+t.slice(n+1),t=t.substring(0,n)):r<0&&(r=t.length),n=0;48===t.charCodeAt(n);n++);for(i=t.length;48===t.charCodeAt(i-1);--i);if(t=t.slice(n,i)){if(i-=n,e.e=r=r-n-1,e.d=[],n=(r+1)%ht,r<0&&(n+=ht),n<i){for(n&&e.d.push(+t.slice(0,n)),i-=ht;n<i;)e.d.push(+t.slice(n,n+=ht));t=t.slice(n),n=ht-t.length}else n-=i;for(;n--;)t+="0";e.d.push(+t),rt&&(e.e>e.constructor.maxE?(e.d=null,e.e=NaN):e.e<e.constructor.minE&&(e.e=0,e.d=[0]))}else e.e=0,e.d=[0];return e}function Rt(e,t){var r,n,i,o,a,s,u,c,l;if(t.indexOf("_")>-1){if(t=t.replace(/(\d)_(?=\d)/g,"$1"),mt.test(t))return qt(e,t)}else if("Infinity"===t||"NaN"===t)return+t||(e.s=NaN),e.e=NaN,e.d=null,e;if(ft.test(t))r=16,t=t.toLowerCase();else if(lt.test(t))r=2;else{if(!pt.test(t))throw Error(it+t);r=8}for((o=t.search(/p/i))>0?(u=+t.slice(o+1),t=t.substring(2,o)):t=t.slice(2),a=(o=t.indexOf("."))>=0,n=e.constructor,a&&(o=(s=(t=t.replace(".","")).length)-o,i=Bt(n,new n(r),o,2*o)),o=l=(c=Nt(t,r,dt)).length-1;0===c[o];--o)c.pop();return o<0?new n(0*e.s):(e.e=Mt(c,l),e.d=c,rt=!1,a&&(e=Et(e,i,4*s)),u&&(e=e.times(Math.abs(u)<54?ct(2,u):Fr.pow(2,u))),rt=!0,e)}function Pt(e,t,r,n,i){var o,a,s,u,c=e.precision,l=Math.ceil(c/ht);for(rt=!1,u=r.times(r),s=new e(n);;){if(a=Et(s.times(u),new e(t++*t++),c,1),s=i?n.plus(a):n.minus(a),n=Et(a.times(u),new e(t++*t++),c,1),void 0!==(a=s.plus(n)).d[l]){for(o=l;a.d[o]===s.d[o]&&o--;);if(-1==o)break}o=s,s=n,n=a,a=o}return rt=!0,a.d.length=l+1,a}function jt(e,t){for(var r=e;--t;)r*=e;return r}function Ut(e,t){var r,n=t.s<0,i=Tt(e,e.precision,1),o=i.times(.5);if((t=t.abs()).lte(o))return Ye=n?4:1,t;if((r=t.divToInt(i)).isZero())Ye=n?3:2;else{if((t=t.minus(r.times(i))).lte(o))return Ye=Ot(r)?n?2:3:n?4:1,t;Ye=Ot(r)?n?1:4:n?3:2}return t.minus(i).abs()}function Lt(e,t,r,n){var i,o,a,s,u,c,l,f,p,m=e.constructor,d=void 0!==r;if(d?(vt(r,1,Xe),void 0===n?n=m.rounding:vt(n,0,8)):(r=m.precision,n=m.rounding),e.isFinite()){for(d?(i=2,16==t?r=4*r-3:8==t&&(r=3*r-2)):i=t,(a=(l=St(e)).indexOf("."))>=0&&(l=l.replace(".",""),(p=new m(1)).e=l.length-a,p.d=Nt(St(p),10,i),p.e=p.d.length),o=u=(f=Nt(l,10,i)).length;0==f[--u];)f.pop();if(f[0]){if(a<0?o--:((e=new m(e)).d=f,e.e=o,f=(e=Et(e,p,r,n,0,i)).d,o=e.e,c=We),a=f[r],s=i/2,c=c||void 0!==f[r+1],c=n<4?(void 0!==a||c)&&(0===n||n===(e.s<0?3:2)):a>s||a===s&&(4===n||c||6===n&&1&f[r-1]||n===(e.s<0?8:7)),f.length=r,c)for(;++f[--r]>i-1;)f[r]=0,r||(++o,f.unshift(1));for(u=f.length;!f[u-1];--u);for(a=0,l="";a<u;a++)l+=Qe.charAt(f[a]);if(d){if(u>1)if(16==t||8==t){for(a=16==t?4:3,--u;u%a;u++)l+="0";for(u=(f=Nt(l,i,t)).length;!f[u-1];--u);for(a=1,l="1.";a<u;a++)l+=Qe.charAt(f[a])}else l=l.charAt(0)+"."+l.slice(1);l=l+(o<0?"p":"p+")+o}else if(o<0){for(;++o;)l="0"+l;l="0."+l}else if(++o>u)for(o-=u;o--;)l+="0";else o<u&&(l=l.slice(0,o)+"."+l.slice(o))}else l=d?"0p+0":"0";l=(16==t?"0x":2==t?"0b":8==t?"0o":"")+l}else l=kt(e);return e.s<0?"-"+l:l}function $t(e,t){if(e.length>t)return e.length=t,!0}function Ht(e){return new this(e).abs()}function Gt(e){return new this(e).acos()}function Zt(e){return new this(e).acosh()}function Vt(e,t){return new this(e).plus(t)}function Wt(e){return new this(e).asin()}function Yt(e){return new this(e).asinh()}function Jt(e){return new this(e).atan()}function Xt(e){return new this(e).atanh()}function Qt(e,t){e=new this(e),t=new this(t);var r,n=this.precision,i=this.rounding,o=n+4;return e.s&&t.s?e.d||t.d?!t.d||e.isZero()?(r=t.s<0?Tt(this,n,i):new this(0)).s=e.s:!e.d||t.isZero()?(r=Tt(this,o,1).times(.5)).s=e.s:t.s<0?(this.precision=o,this.rounding=1,r=this.atan(Et(e,t,o,1)),t=Tt(this,o,1),this.precision=n,this.rounding=i,r=e.s<0?r.minus(t):r.plus(t)):r=this.atan(Et(e,t,o,1)):(r=Tt(this,o,1).times(t.s>0?.25:.75)).s=e.s:r=new this(NaN),r}function Kt(e){return new this(e).cbrt()}function er(e){return At(e=new this(e),e.e+1,2)}function tr(e,t,r){return new this(e).clamp(t,r)}function rr(e){if(!e||"object"!=typeof e)throw Error(nt+"Object expected");var t,r,n,i=!0===e.defaults,o=["precision",1,Xe,"rounding",0,8,"toExpNeg",-Je,0,"toExpPos",0,Je,"maxE",0,Je,"minE",-Je,0,"modulo",0,9];for(t=0;t<o.length;t+=3)if(r=o[t],i&&(this[r]=tt[r]),void 0!==(n=e[r])){if(!(ut(n)===n&&n>=o[t+1]&&n<=o[t+2]))throw Error(it+r+": "+n);this[r]=n}if(r="crypto",i&&(this[r]=tt[r]),void 0!==(n=e[r])){if(!0!==n&&!1!==n&&0!==n&&1!==n)throw Error(it+r+": "+n);if(n){if("undefined"==typeof crypto||!crypto||!crypto.getRandomValues&&!crypto.randomBytes)throw Error(at);this[r]=!0}else this[r]=!1}return this}function nr(e){return new this(e).cos()}function ir(e){return new this(e).cosh()}function or(e,t){return new this(e).div(t)}function ar(e){return new this(e).exp()}function sr(e){return At(e=new this(e),e.e+1,3)}function ur(){var e,t,r=new this(0);for(rt=!1,e=0;e<arguments.length;)if((t=new this(arguments[e++])).d)r.d&&(r=r.plus(t.times(t)));else{if(t.s)return rt=!0,new this(1/0);r=t}return rt=!0,r.sqrt()}function cr(e){return e instanceof Fr||e&&e.toStringTag===st||!1}function lr(e){return new this(e).ln()}function fr(e,t){return new this(e).log(t)}function pr(e){return new this(e).log(2)}function mr(e){return new this(e).log(10)}function dr(){return _t(this,arguments,"lt")}function hr(){return _t(this,arguments,"gt")}function gr(e,t){return new this(e).mod(t)}function yr(e,t){return new this(e).mul(t)}function xr(e,t){return new this(e).pow(t)}function br(e){var t,r,n,i,o=0,a=new this(1),s=[];if(void 0===e?e=this.precision:vt(e,1,Xe),n=Math.ceil(e/ht),this.crypto)if(crypto.getRandomValues)for(t=crypto.getRandomValues(new Uint32Array(n));o<n;)(i=t[o])>=429e7?t[o]=crypto.getRandomValues(new Uint32Array(1))[0]:s[o++]=i%1e7;else{if(!crypto.randomBytes)throw Error(at);for(t=crypto.randomBytes(n*=4);o<n;)(i=t[o]+(t[o+1]<<8)+(t[o+2]<<16)+((127&t[o+3])<<24))>=214e7?crypto.randomBytes(4).copy(t,o):(s.push(i%1e7),o+=4);o=n/4}else for(;o<n;)s[o++]=1e7*Math.random()|0;for(n=s[--o],e%=ht,n&&e&&(i=ct(10,ht-e),s[o]=(n/i|0)*i);0===s[o];o--)s.pop();if(o<0)r=0,s=[0];else{for(r=-1;0===s[0];r-=ht)s.shift();for(n=1,i=s[0];i>=10;i/=10)n++;n<ht&&(r-=ht-n)}return a.e=r,a.d=s,a}function vr(e){return At(e=new this(e),e.e+1,this.rounding)}function wr(e){return(e=new this(e)).d?e.d[0]?e.s:0*e.s:e.s||NaN}function Nr(e){return new this(e).sin()}function Er(e){return new this(e).sinh()}function Ar(e){return new this(e).sqrt()}function Sr(e,t){return new this(e).sub(t)}function Mr(){var e=0,t=arguments,r=new this(t[e]);for(rt=!1;r.s&&++e<t.length;)r=r.plus(t[e]);return rt=!0,At(r,this.precision,this.rounding)}function Cr(e){return new this(e).tan()}function Tr(e){return new this(e).tanh()}function Dr(e){return At(e=new this(e),e.e+1,1)}xt[Symbol.for("nodejs.util.inspect.custom")]=xt.toString,xt[Symbol.toStringTag]="Decimal";var Fr=xt.constructor=function e(t){var r,n,i;function o(e){var t,r,n,i=this;if(!(i instanceof o))return new o(e);if(i.constructor=o,cr(e))return i.s=e.s,void(rt?!e.d||e.e>o.maxE?(i.e=NaN,i.d=null):e.e<o.minE?(i.e=0,i.d=[0]):(i.e=e.e,i.d=e.d.slice()):(i.e=e.e,i.d=e.d?e.d.slice():e.d));if("number"==(n=typeof e)){if(0===e)return i.s=1/e<0?-1:1,i.e=0,void(i.d=[0]);if(e<0?(e=-e,i.s=-1):i.s=1,e===~~e&&e<1e7){for(t=0,r=e;r>=10;r/=10)t++;return void(rt?t>o.maxE?(i.e=NaN,i.d=null):t<o.minE?(i.e=0,i.d=[0]):(i.e=t,i.d=[e]):(i.e=t,i.d=[e]))}return 0*e!=0?(e||(i.s=NaN),i.e=NaN,void(i.d=null)):qt(i,e.toString())}if("string"!==n)throw Error(it+e);return 45===(r=e.charCodeAt(0))?(e=e.slice(1),i.s=-1):(43===r&&(e=e.slice(1)),i.s=1),mt.test(e)?qt(i,e):Rt(i,e)}if(o.prototype=xt,o.ROUND_UP=0,o.ROUND_DOWN=1,o.ROUND_CEIL=2,o.ROUND_FLOOR=3,o.ROUND_HALF_UP=4,o.ROUND_HALF_DOWN=5,o.ROUND_HALF_EVEN=6,o.ROUND_HALF_CEIL=7,o.ROUND_HALF_FLOOR=8,o.EUCLID=9,o.config=o.set=rr,o.clone=e,o.isDecimal=cr,o.abs=Ht,o.acos=Gt,o.acosh=Zt,o.add=Vt,o.asin=Wt,o.asinh=Yt,o.atan=Jt,o.atanh=Xt,o.atan2=Qt,o.cbrt=Kt,o.ceil=er,o.clamp=tr,o.cos=nr,o.cosh=ir,o.div=or,o.exp=ar,o.floor=sr,o.hypot=ur,o.ln=lr,o.log=fr,o.log10=mr,o.log2=pr,o.max=dr,o.min=hr,o.mod=gr,o.mul=yr,o.pow=xr,o.random=br,o.round=vr,o.sign=wr,o.sin=Nr,o.sinh=Er,o.sqrt=Ar,o.sub=Sr,o.sum=Mr,o.tan=Cr,o.tanh=Tr,o.trunc=Dr,void 0===t&&(t={}),t&&!0!==t.defaults)for(i=["precision","rounding","toExpNeg","toExpPos","maxE","minE","modulo","crypto"],r=0;r<i.length;)t.hasOwnProperty(n=i[r++])||(t[n]=this[n]);return o.config(t),o}(tt);Ke=new Fr(Ke),et=new Fr(et);const Br=Fr,Or=de("BigNumber",["?on","config"],(e=>{let{on:t,config:r}=e;const n=Br.clone({precision:r.precision,modulo:Br.EUCLID});return n.prototype=Object.create(n.prototype),n.prototype.type="BigNumber",n.prototype.isBigNumber=!0,n.prototype.toJSON=function(){return{mathjs:"BigNumber",value:this.toString()}},n.fromJSON=function(e){return new n(e.value)},t&&t("config",(function(e,t){e.precision!==t.precision&&n.config({precision:e.precision})})),n}),{isClass:!0});var _r=r(5716);const zr=de("Complex",[],(()=>(Object.defineProperty(_r,"name",{value:"Complex"}),_r.prototype.constructor=_r,_r.prototype.type="Complex",_r.prototype.isComplex=!0,_r.prototype.toJSON=function(){return{mathjs:"Complex",re:this.re,im:this.im}},_r.prototype.toPolar=function(){return{r:this.abs(),phi:this.arg()}},_r.prototype.format=function(e){let t="",r=this.im,n=this.re;const i=Me(this.re,e),o=Me(this.im,e),a=h(e)?e:e?e.precision:null;if(null!==a){const e=Math.pow(10,-a);Math.abs(n/r)<e&&(n=0),Math.abs(r/n)<e&&(r=0)}return t=0===r?i:0===n?1===r?"i":-1===r?"-i":o+"i":r<0?-1===r?i+" - i":i+" - "+o.substring(1)+"i":1===r?i+" + i":i+" + "+o+"i",t},_r.fromPolar=function(e){switch(arguments.length){case 1:{const e=arguments[0];if("object"==typeof e)return _r(e);throw new TypeError("Input has to be an object with r and phi keys.")}case 2:{const e=arguments[0];let t=arguments[1];if(h(e)){if(v(t)&&t.hasBase("ANGLE")&&(t=t.toNumber("rad")),h(t))return new _r({r:e,phi:t});throw new TypeError("Phi is not a number nor an angle unit.")}throw new TypeError("Radius r is not a number.")}default:throw new SyntaxError("Wrong number of arguments in function fromPolar")}},_r.prototype.valueOf=_r.prototype.toString,_r.fromJSON=function(e){return new _r(e)},_r.compare=function(e,t){return e.re>t.re?1:e.re<t.re?-1:e.im>t.im?1:e.im<t.im?-1:0},_r)),{isClass:!0});var Ir={s:1,n:0,d:1};function kr(e,t){if(isNaN(e=parseInt(e,10)))throw $r();return e*t}function qr(e,t){if(0===t)throw Lr();var r=Object.create(Ur.prototype);r.s=e<0?-1:1;var n=jr(e=e<0?-e:e,t);return r.n=e/n,r.d=t/n,r}function Rr(e){for(var t={},r=e,n=2,i=4;i<=r;){for(;r%n==0;)r/=n,t[n]=(t[n]||0)+1;i+=1+2*n++}return r!==e?r>1&&(t[r]=(t[r]||0)+1):t[e]=(t[e]||0)+1,t}var Pr=function(e,t){var r,n=0,i=1,o=1,a=0,s=0,u=0,c=1,l=1,f=0,p=1,m=1,d=1,h=1e7;if(null==e);else if(void 0!==t){if(o=(n=e)*(i=t),n%1!=0||i%1!=0)throw Hr()}else switch(typeof e){case"object":if("d"in e&&"n"in e)n=e.n,i=e.d,"s"in e&&(n*=e.s);else{if(!(0 in e))throw $r();n=e[0],1 in e&&(i=e[1])}o=n*i;break;case"number":if(e<0&&(o=e,e=-e),e%1==0)n=e;else if(e>0){for(e>=1&&(e/=l=Math.pow(10,Math.floor(1+Math.log(e)/Math.LN10)));p<=h&&d<=h;){if(e===(r=(f+m)/(p+d))){p+d<=h?(n=f+m,i=p+d):d>p?(n=m,i=d):(n=f,i=p);break}e>r?(f+=m,p+=d):(m+=f,d+=p),p>h?(n=m,i=d):(n=f,i=p)}n*=l}else(isNaN(e)||isNaN(t))&&(i=n=NaN);break;case"string":if(null===(p=e.match(/\d+|./g)))throw $r();if("-"===p[f]?(o=-1,f++):"+"===p[f]&&f++,p.length===f+1?s=kr(p[f++],o):"."===p[f+1]||"."===p[f]?("."!==p[f]&&(a=kr(p[f++],o)),(1+ ++f===p.length||"("===p[f+1]&&")"===p[f+3]||"'"===p[f+1]&&"'"===p[f+3])&&(s=kr(p[f],o),c=Math.pow(10,p[f].length),f++),("("===p[f]&&")"===p[f+2]||"'"===p[f]&&"'"===p[f+2])&&(u=kr(p[f+1],o),l=Math.pow(10,p[f+1].length)-1,f+=3)):"/"===p[f+1]||":"===p[f+1]?(s=kr(p[f],o),c=kr(p[f+2],1),f+=3):"/"===p[f+3]&&" "===p[f+1]&&(a=kr(p[f],o),s=kr(p[f+2],o),c=kr(p[f+4],1),f+=5),p.length<=f){o=n=u+(i=c*l)*a+l*s;break}default:throw $r()}if(0===i)throw Lr();Ir.s=o<0?-1:1,Ir.n=Math.abs(n),Ir.d=Math.abs(i)};function jr(e,t){if(!e)return t;if(!t)return e;for(;;){if(!(e%=t))return t;if(!(t%=e))return e}}function Ur(e,t){if(Pr(e,t),!(this instanceof Ur))return qr(Ir.s*Ir.n,Ir.d);e=jr(Ir.d,Ir.n),this.s=Ir.s,this.n=Ir.n/e,this.d=Ir.d/e}var Lr=function(){return new Error("Division by Zero")},$r=function(){return new Error("Invalid argument")},Hr=function(){return new Error("Parameters must be integer")};Ur.prototype={s:1,n:0,d:1,abs:function(){return qr(this.n,this.d)},neg:function(){return qr(-this.s*this.n,this.d)},add:function(e,t){return Pr(e,t),qr(this.s*this.n*Ir.d+Ir.s*this.d*Ir.n,this.d*Ir.d)},sub:function(e,t){return Pr(e,t),qr(this.s*this.n*Ir.d-Ir.s*this.d*Ir.n,this.d*Ir.d)},mul:function(e,t){return Pr(e,t),qr(this.s*Ir.s*this.n*Ir.n,this.d*Ir.d)},div:function(e,t){return Pr(e,t),qr(this.s*Ir.s*this.n*Ir.d,this.d*Ir.n)},clone:function(){return qr(this.s*this.n,this.d)},mod:function(e,t){if(isNaN(this.n)||isNaN(this.d))return new Ur(NaN);if(void 0===e)return qr(this.s*this.n%this.d,1);if(Pr(e,t),0===Ir.n&&0===this.d)throw Lr();return qr(this.s*(Ir.d*this.n)%(Ir.n*this.d),Ir.d*this.d)},gcd:function(e,t){return Pr(e,t),qr(jr(Ir.n,this.n)*jr(Ir.d,this.d),Ir.d*this.d)},lcm:function(e,t){return Pr(e,t),0===Ir.n&&0===this.n?qr(0,1):qr(Ir.n*this.n,jr(Ir.n,this.n)*jr(Ir.d,this.d))},ceil:function(e){return e=Math.pow(10,e||0),isNaN(this.n)||isNaN(this.d)?new Ur(NaN):qr(Math.ceil(e*this.s*this.n/this.d),e)},floor:function(e){return e=Math.pow(10,e||0),isNaN(this.n)||isNaN(this.d)?new Ur(NaN):qr(Math.floor(e*this.s*this.n/this.d),e)},round:function(e){return e=Math.pow(10,e||0),isNaN(this.n)||isNaN(this.d)?new Ur(NaN):qr(Math.round(e*this.s*this.n/this.d),e)},roundTo:function(e,t){return Pr(e,t),qr(this.s*Math.round(this.n*Ir.d/(this.d*Ir.n))*Ir.n,Ir.d)},inverse:function(){return qr(this.s*this.d,this.n)},pow:function(e,t){if(Pr(e,t),1===Ir.d)return Ir.s<0?qr(Math.pow(this.s*this.d,Ir.n),Math.pow(this.n,Ir.n)):qr(Math.pow(this.s*this.n,Ir.n),Math.pow(this.d,Ir.n));if(this.s<0)return null;var r=Rr(this.n),n=Rr(this.d),i=1,o=1;for(var a in r)if("1"!==a){if("0"===a){i=0;break}if(r[a]*=Ir.n,r[a]%Ir.d!=0)return null;r[a]/=Ir.d,i*=Math.pow(a,r[a])}for(var a in n)if("1"!==a){if(n[a]*=Ir.n,n[a]%Ir.d!=0)return null;n[a]/=Ir.d,o*=Math.pow(a,n[a])}return Ir.s<0?qr(o,i):qr(i,o)},equals:function(e,t){return Pr(e,t),this.s*this.n*Ir.d==Ir.s*Ir.n*this.d},compare:function(e,t){Pr(e,t);var r=this.s*this.n*Ir.d-Ir.s*Ir.n*this.d;return(0<r)-(r<0)},simplify:function(e){if(isNaN(this.n)||isNaN(this.d))return this;e=e||.001;for(var t=this.abs(),r=t.toContinued(),n=1;n<r.length;n++){for(var i=qr(r[n-1],1),o=n-2;o>=0;o--)i=i.inverse().add(r[o]);if(Math.abs(i.sub(t).valueOf())<e)return i.mul(this.s)}return this},divisible:function(e,t){return Pr(e,t),!(!(Ir.n*this.d)||this.n*Ir.d%(Ir.n*this.d))},valueOf:function(){return this.s*this.n/this.d},toFraction:function(e){var t,r="",n=this.n,i=this.d;return this.s<0&&(r+="-"),1===i?r+=n:(e&&(t=Math.floor(n/i))>0&&(r+=t,r+=" ",n%=i),r+=n,r+="/",r+=i),r},toLatex:function(e){var t,r="",n=this.n,i=this.d;return this.s<0&&(r+="-"),1===i?r+=n:(e&&(t=Math.floor(n/i))>0&&(r+=t,n%=i),r+="\\frac{",r+=n,r+="}{",r+=i,r+="}"),r},toContinued:function(){var e,t=this.n,r=this.d,n=[];if(isNaN(t)||isNaN(r))return n;do{n.push(Math.floor(t/r)),e=t%r,t=r,r=e}while(1!==t);return n},toString:function(e){var t=this.n,r=this.d;if(isNaN(t)||isNaN(r))return"NaN";e=e||15;var n=function(e,t){for(;t%2==0;t/=2);for(;t%5==0;t/=5);if(1===t)return 0;for(var r=10%t,n=1;1!==r;n++)if(r=10*r%t,n>2e3)return 0;return n}(0,r),i=function(e,t,r){for(var n=1,i=function(e,t,r){for(var n=1;t>0;e=e*e%r,t>>=1)1&t&&(n=n*e%r);return n}(10,r,t),o=0;o<300;o++){if(n===i)return o;n=10*n%t,i=10*i%t}return 0}(0,r,n),o=this.s<0?"-":"";if(o+=t/r|0,t%=r,(t*=10)&&(o+="."),n){for(var a=i;a--;)o+=t/r|0,t%=r,t*=10;for(o+="(",a=n;a--;)o+=t/r|0,t%=r,t*=10;o+=")"}else for(a=e;t&&a--;)o+=t/r|0,t%=r,t*=10;return o}};const Gr=de("Fraction",[],(()=>(Object.defineProperty(Ur,"name",{value:"Fraction"}),Ur.prototype.constructor=Ur,Ur.prototype.type="Fraction",Ur.prototype.isFraction=!0,Ur.prototype.toJSON=function(){return{mathjs:"Fraction",n:this.s*this.n,d:this.d}},Ur.fromJSON=function(e){return new Ur(e)},Ur)),{isClass:!0});r(3362);const Zr=de("Range",[],(()=>{function e(t,r,n){if(!(this instanceof e))throw new SyntaxError("Constructor must be called with the new operator");const i=null!=t,o=null!=r,a=null!=n;if(i)if(g(t))t=t.toNumber();else if("number"!=typeof t)throw new TypeError("Parameter start must be a number");if(o)if(g(r))r=r.toNumber();else if("number"!=typeof r)throw new TypeError("Parameter end must be a number");if(a)if(g(n))n=n.toNumber();else if("number"!=typeof n)throw new TypeError("Parameter step must be a number");this.start=i?parseFloat(t):0,this.end=o?parseFloat(r):0,this.step=a?parseFloat(n):1}return e.prototype.type="Range",e.prototype.isRange=!0,e.parse=function(t){if("string"!=typeof t)return null;const r=t.split(":").map((function(e){return parseFloat(e)}));if(r.some((function(e){return isNaN(e)})))return null;switch(r.length){case 2:return new e(r[0],r[1]);case 3:return new e(r[0],r[2],r[1]);default:return null}},e.prototype.clone=function(){return new e(this.start,this.end,this.step)},e.prototype.size=function(){let e=0;const t=this.start,r=this.step,n=this.end-t;return be(r)===be(n)?e=Math.ceil(n/r):0===n&&(e=0),isNaN(e)&&(e=0),[e]},e.prototype.min=function(){const e=this.size()[0];return e>0?this.step>0?this.start:this.start+(e-1)*this.step:void 0},e.prototype.max=function(){const e=this.size()[0];return e>0?this.step>0?this.start+(e-1)*this.step:this.start:void 0},e.prototype.forEach=function(e){let t=this.start;const r=this.step,n=this.end;let i=0;if(r>0)for(;t<n;)e(t,[i],this),t+=r,i++;else if(r<0)for(;t>n;)e(t,[i],this),t+=r,i++},e.prototype.map=function(e){const t=[];return this.forEach((function(r,n,i){t[n[0]]=e(r,n,i)})),t},e.prototype.toArray=function(){const e=[];return this.forEach((function(t,r){e[r[0]]=t})),e},e.prototype.valueOf=function(){return this.toArray()},e.prototype.format=function(e){let t=Me(this.start,e);return 1!==this.step&&(t+=":"+Me(this.step,e)),t+=":"+Me(this.end,e),t},e.prototype.toString=function(){return this.format()},e.prototype.toJSON=function(){return{mathjs:"Range",start:this.start,end:this.end,step:this.step}},e.fromJSON=function(t){return new e(t.start,t.end,t.step)},e}),{isClass:!0}),Vr=de("Matrix",[],(()=>{function e(){if(!(this instanceof e))throw new SyntaxError("Constructor must be called with the new operator")}return e.prototype.type="Matrix",e.prototype.isMatrix=!0,e.prototype.storage=function(){throw new Error("Cannot invoke storage on a Matrix interface")},e.prototype.datatype=function(){throw new Error("Cannot invoke datatype on a Matrix interface")},e.prototype.create=function(e,t){throw new Error("Cannot invoke create on a Matrix interface")},e.prototype.subset=function(e,t,r){throw new Error("Cannot invoke subset on a Matrix interface")},e.prototype.get=function(e){throw new Error("Cannot invoke get on a Matrix interface")},e.prototype.set=function(e,t,r){throw new Error("Cannot invoke set on a Matrix interface")},e.prototype.resize=function(e,t){throw new Error("Cannot invoke resize on a Matrix interface")},e.prototype.reshape=function(e,t){throw new Error("Cannot invoke reshape on a Matrix interface")},e.prototype.clone=function(){throw new Error("Cannot invoke clone on a Matrix interface")},e.prototype.size=function(){throw new Error("Cannot invoke size on a Matrix interface")},e.prototype.map=function(e,t){throw new Error("Cannot invoke map on a Matrix interface")},e.prototype.forEach=function(e){throw new Error("Cannot invoke forEach on a Matrix interface")},e.prototype[Symbol.iterator]=function(){throw new Error("Cannot iterate a Matrix interface")},e.prototype.toArray=function(){throw new Error("Cannot invoke toArray on a Matrix interface")},e.prototype.valueOf=function(){throw new Error("Cannot invoke valueOf on a Matrix interface")},e.prototype.format=function(e){throw new Error("Cannot invoke format on a Matrix interface")},e.prototype.toString=function(){throw new Error("Cannot invoke toString on a Matrix interface")},e}),{isClass:!0});function Wr(){return Wr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},Wr.apply(null,arguments)}function Yr(e,t,r){const n=new(0,e.constructor)(2);let i="";if(r){if(r<1)throw new Error("size must be in greater than 0");if(!ye(r))throw new Error("size must be an integer");if(e.greaterThan(n.pow(r-1).sub(1))||e.lessThan(n.pow(r-1).mul(-1)))throw new Error(`Value must be in range [-2^${r-1}, 2^${r-1}-1]`);if(!e.isInteger())throw new Error("Value must be an integer");e.lessThan(0)&&(e=e.add(n.pow(r))),i=`i${r}`}switch(t){case 2:return`${e.toBinary()}${i}`;case 8:return`${e.toOctal()}${i}`;case 16:return`${e.toHexadecimal()}${i}`;default:throw new Error(`Base ${t} not supported `)}}function Jr(e,t){return void 0!==t?e.toExponential(t-1):e.toExponential()}function Xr(e,t){return h(e)?e:g(e)?e.toNumber():t}function Qr(e,t){const r=e.length-t.length,n=e.length;return e.substring(r,n)===t}function Kr(e,t){const r=function(e,t){return"number"==typeof e?Me(e,t):g(e)?function(e,t){if("function"==typeof t)return t(e);if(!e.isFinite())return e.isNaN()?"NaN":e.gt(0)?"Infinity":"-Infinity";const{notation:r,precision:n,wordSize:i}=Ce(t);switch(r){case"fixed":return function(e,t){return e.toFixed(t)}(e,n);case"exponential":return Jr(e,n);case"engineering":return function(e,t){const r=e.e,n=r%3==0?r:r<0?r-3-r%3:r-r%3;let i=e.mul(Math.pow(10,-n)).toPrecision(t);return i.includes("e")&&(i=new(0,e.constructor)(i).toFixed()),i+"e"+(r>=0?"+":"")+n.toString()}(e,n);case"bin":return Yr(e,2,i);case"oct":return Yr(e,8,i);case"hex":return Yr(e,16,i);case"auto":{const r=Xr(null==t?void 0:t.lowerExp,-3),i=Xr(null==t?void 0:t.upperExp,5);if(e.isZero())return"0";let o;const a=e.toSignificantDigits(n),s=a.e;return o=s>=r&&s<i?a.toFixed():Jr(e,n),o.replace(/((\.\d*?)(0+))($|e)/,(function(){const e=arguments[2],t=arguments[4];return"."!==e?e+t:t}))}default:throw new Error('Unknown notation "'+r+'". Choose "auto", "exponential", "fixed", "bin", "oct", or "hex.')}}(e,t):function(e){return e&&"object"==typeof e&&"number"==typeof e.s&&"number"==typeof e.n&&"number"==typeof e.d||!1}(e)?t&&"decimal"===t.fraction?e.toString():e.s*e.n+"/"+e.d:Array.isArray(e)?nn(e,t):w(e)?en(e):"function"==typeof e?e.syntax?String(e.syntax):"function":e&&"object"==typeof e?"function"==typeof e.format?e.format(t):e&&e.toString(t)!=={}.toString()?e.toString(t):"{"+Object.keys(e).map((r=>en(r)+": "+Kr(e[r],t))).join(", ")+"}":String(e)}(e,t);return t&&"object"==typeof t&&"truncate"in t&&r.length>t.truncate?r.substring(0,t.truncate-3)+"...":r}function en(e){const t=String(e);let r="",n=0;for(;n<t.length;){const e=t.charAt(n);r+=e in tn?tn[e]:e,n++}return'"'+r+'"'}r(2712);const tn={'"':'\\"',"\\":"\\\\","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r","\t":"\\t"};function rn(e){let t=String(e);return t=t.replace(/&/g,"&amp;").replace(/"/g,"&quot;").replace(/'/g,"&#39;").replace(/</g,"&lt;").replace(/>/g,"&gt;"),t}function nn(e,t){if(Array.isArray(e)){let r="[";const n=e.length;for(let i=0;i<n;i++)0!==i&&(r+=", "),r+=nn(e[i],t);return r+="]",r}return Kr(e,t)}function on(e,t){if(!w(e))throw new TypeError("Unexpected type of argument in function compareText (expected: string or Array or Matrix, actual: "+oe(e)+", index: 0)");if(!w(t))throw new TypeError("Unexpected type of argument in function compareText (expected: string or Array or Matrix, actual: "+oe(t)+", index: 1)");return e===t?0:e>t?1:-1}function an(e,t,r){if(!(this instanceof an))throw new SyntaxError("Constructor must be called with the new operator");this.actual=e,this.expected=t,this.relation=r,this.message="Dimension mismatch ("+(Array.isArray(e)?"["+e.join(", ")+"]":e)+" "+(this.relation||"!=")+" "+(Array.isArray(t)?"["+t.join(", ")+"]":t)+")",this.stack=(new Error).stack}function sn(e,t,r){if(!(this instanceof sn))throw new SyntaxError("Constructor must be called with the new operator");this.index=e,arguments.length<3?(this.min=0,this.max=t):(this.min=t,this.max=r),void 0!==this.min&&this.index<this.min?this.message="Index out of range ("+this.index+" < "+this.min+")":void 0!==this.max&&this.index>=this.max?this.message="Index out of range ("+this.index+" > "+(this.max-1)+")":this.message="Index out of range ("+this.index+")",this.stack=(new Error).stack}function un(e){const t=[];for(;Array.isArray(e);)t.push(e.length),e=e[0];return t}function cn(e,t,r){let n;const i=e.length;if(i!==t[r])throw new an(i,t[r]);if(r<t.length-1){const o=r+1;for(n=0;n<i;n++){const r=e[n];if(!Array.isArray(r))throw new an(t.length-1,t.length,"<");cn(e[n],t,o)}}else for(n=0;n<i;n++)if(Array.isArray(e[n]))throw new an(t.length+1,t.length,">")}function ln(e,t){if(0===t.length){if(Array.isArray(e))throw new an(e.length,0)}else cn(e,t,0)}function fn(e,t){const r=e.isMatrix?e._size:un(e);t._sourceSize.forEach(((e,t)=>{if(null!==e&&e!==r[t])throw new an(e,r[t])}))}function pn(e,t){if(void 0!==e){if(!h(e)||!ye(e))throw new TypeError("Index must be an integer (value: "+e+")");if(e<0||"number"==typeof t&&e>=t)throw new sn(e,t)}}function mn(e){for(let t=0;t<e._dimensions.length;++t){const r=e._dimensions[t];if(r._data&&N(r._data)){if(0===r._size[0])return!0}else if(r.isRange){if(r.start===r.end)return!0}else if(w(r)&&0===r.length)return!0}return!1}function dn(e,t,r){if(!Array.isArray(t))throw new TypeError("Array expected");if(0===t.length)throw new Error("Resizing to scalar is not supported");return t.forEach((function(e){if(!h(e)||!ye(e)||e<0)throw new TypeError("Invalid size, must contain positive integers (size: "+Kr(t)+")")})),(h(e)||g(e))&&(e=[e]),hn(e,t,0,void 0!==r?r:0),e}function hn(e,t,r,n){let i,o;const a=e.length,s=t[r],u=Math.min(a,s);if(e.length=s,r<t.length-1){const a=r+1;for(i=0;i<u;i++)o=e[i],Array.isArray(o)||(o=[o],e[i]=o),hn(o,t,a,n);for(i=u;i<s;i++)o=[],e[i]=o,hn(o,t,a,n)}else{for(i=0;i<u;i++)for(;Array.isArray(e[i]);)e[i]=e[i][0];for(i=u;i<s;i++)e[i]=n}}function gn(e,t){const r=En(e),n=r.length;if(!Array.isArray(e)||!Array.isArray(t))throw new TypeError("Array expected");if(0===t.length)throw new an(0,n,"!=");const i=xn(t=yn(t,n));if(n!==i)throw new an(i,n,"!=");try{return function(e,t){let r,n=e;for(let e=t.length-1;e>0;e--){const i=t[e];r=[];const o=n.length/i;for(let e=0;e<o;e++)r.push(n.slice(e*i,(e+1)*i));n=r}return n}(r,t)}catch(e){if(e instanceof an)throw new an(i,n,"!=");throw e}}function yn(e,t){const r=xn(e),n=e.slice(),i=e.indexOf(-1);if(e.indexOf(-1,i+1)>=0)throw new Error("More than one wildcard in sizes");if(i>=0){if(t%r!=0)throw new Error("Could not replace wildcard, since "+t+" is no multiple of "+-r);n[i]=-t/r}return n}function xn(e){return e.reduce(((e,t)=>e*t),1)}function bn(e,t){const r=t||un(e);for(;Array.isArray(e)&&1===e.length;)e=e[0],r.shift();let n=r.length;for(;1===r[n-1];)n--;return n<r.length&&(e=vn(e,n,0),r.length=n),e}function vn(e,t,r){let n,i;if(r<t){const o=r+1;for(n=0,i=e.length;n<i;n++)e[n]=vn(e[n],t,o)}else for(;Array.isArray(e);)e=e[0];return e}function wn(e,t,r,n){const i=n||un(e);if(r)for(let t=0;t<r;t++)e=[e],i.unshift(1);for(e=Nn(e,t,0);i.length<t;)i.push(1);return e}function Nn(e,t,r){let n,i;if(Array.isArray(e)){const o=r+1;for(n=0,i=e.length;n<i;n++)e[n]=Nn(e[n],t,o)}else for(let n=r;n<t;n++)e=[e];return e}function En(e){if(!Array.isArray(e))return e;const t=[];return e.forEach((function e(r){Array.isArray(r)?r.forEach(e):t.push(r)})),t}function An(e,t){return Array.prototype.map.call(e,t)}function Sn(e,t){Array.prototype.forEach.call(e,t)}function Mn(e,t){if(1!==un(e).length)throw new Error("Only one dimensional matrices supported");return Array.prototype.filter.call(e,t)}function Cn(e,t){if(1!==un(e).length)throw new Error("Only one dimensional matrices supported");return Array.prototype.filter.call(e,(e=>t.test(e)))}function Tn(e,t){return Array.prototype.join.call(e,t)}function Dn(e){if(!Array.isArray(e))throw new TypeError("Array input expected");if(0===e.length)return e;const t=[];let r=0;t[0]={value:e[0],identifier:0};for(let n=1;n<e.length;n++)e[n]===e[n-1]?r++:r=0,t.push({value:e[n],identifier:r});return t}function Fn(e){if(!Array.isArray(e))throw new TypeError("Array input expected");if(0===e.length)return e;const t=[];for(let r=0;r<e.length;r++)t.push(e[r].value);return t}function Bn(e,t){let r,n=0;for(let i=0;i<e.length;i++){const o=e[i],a=Array.isArray(o);if(0===i&&a&&(n=o.length),a&&o.length!==n)return;const s=a?Bn(o,t):t(o);if(void 0===r)r=s;else if(r!==s)return"mixed"}return r}function On(e,t,r,n){if(n<r){if(e.length!==t.length)throw new an(e.length,t.length);const i=[];for(let o=0;o<e.length;o++)i[o]=On(e[o],t[o],r,n+1);return i}return e.concat(t)}function _n(){const e=Array.prototype.slice.call(arguments,0,-1),t=Array.prototype.slice.call(arguments,-1);if(1===e.length)return e[0];if(e.length>1)return e.slice(1).reduce((function(e,r){return On(e,r,t,0)}),e[0]);throw new Error("Wrong number of arguments in function concat")}function zn(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];const n=t.map((e=>e.length)),i=Math.max(...n),o=new Array(i).fill(null);for(let e=0;e<t.length;e++){const r=t[e],a=n[e];for(let e=0;e<a;e++){const t=i-a+e;r[e]>o[t]&&(o[t]=r[e])}}for(let e=0;e<t.length;e++)In(t[e],o);return o}function In(e,t){const r=t.length,n=e.length;for(let i=0;i<n;i++){const o=r-n+i;if(e[i]<t[o]&&e[i]>1||e[i]>t[o])throw new Error(`shape missmatch: missmatch is found in arg with shape (${e}) not possible to broadcast dimension ${n} with size ${e[i]} to size ${t[o]}`)}}function kn(e,t){let r=un(e);if(ce(r,t))return e;In(r,t);const n=zn(r,t),i=n.length,o=[...Array(i-r.length).fill(1),...r];let a=function(e){return Wr([],e)}(e);r.length<i&&(a=gn(a,o),r=un(a));for(let e=0;e<i;e++)r[e]<n[e]&&(s=a,u=n[e],c=e,a=_n(...Array(u).fill(s),c),r=un(a));var s,u,c;return a}function qn(e,t){if(!Array.isArray(e))throw new Error("Array expected");const r=un(e);if(t.length!==r.length)throw new an(t.length,r.length);for(let e=0;e<t.length;e++)pn(t[e],r[e]);return t.reduce(((e,t)=>e[t]),e)}function Rn(e,r,n,i,o){if(t.isTypedFunction(e)){const o=[r,n,i],s=t.resolve(e,o);if(s)return a(s.implementation,o);const u=[r,n],c=t.resolve(e,u);if(c)return a(c.implementation,u);const l=[r],f=t.resolve(e,l);return f?a(f.implementation,l):a(e,o)}return e(r,n,i);function a(t,a){try{return t.apply(t,a)}catch(t){var s;if(t instanceof TypeError&&"wrongType"===(null===(s=t.data)||void 0===s?void 0:s.category)){const t=[];throw t.push(`value: ${oe(r)}`),a.length>=2&&t.push(`index: ${oe(n)}`),a.length>=3&&t.push(`array: ${oe(i)}`),new TypeError(`Function ${o} cannot apply callback arguments ${e.name}(${t.join(", ")}) at index ${JSON.stringify(n)}`)}throw new TypeError(`Function ${o} cannot apply callback arguments to function ${e.name}: ${t.message}`)}}}an.prototype=new RangeError,an.prototype.constructor=RangeError,an.prototype.name="DimensionError",an.prototype.isDimensionError=!0,sn.prototype=new RangeError,sn.prototype.constructor=RangeError,sn.prototype.name="IndexError",sn.prototype.isIndexError=!0,r(3110);const Pn=de("DenseMatrix",["Matrix"],(e=>{let{Matrix:t}=e;function r(e,t){if(!(this instanceof r))throw new SyntaxError("Constructor must be called with the new operator");if(t&&!w(t))throw new Error("Invalid datatype: "+t);if(E(e))"DenseMatrix"===e.type?(this._data=ae(e._data),this._size=ae(e._size),this._datatype=t||e._datatype):(this._data=e.toArray(),this._size=e.size(),this._datatype=t||e._datatype);else if(e&&N(e.data)&&N(e.size))this._data=e.data,this._size=e.size,ln(this._data,this._size),this._datatype=t||e.datatype;else if(N(e))this._data=s(e),this._size=un(this._data),ln(this._data,this._size),this._datatype=t;else{if(e)throw new TypeError("Unsupported type of data ("+oe(e)+")");this._data=[],this._size=[0],this._datatype=t}}function n(e,t,r,i){const o=i===r-1,a=t.dimension(i);return o?a.map((function(t){return pn(t,e.length),e[t]})).valueOf():a.map((function(o){return pn(o,e.length),n(e[o],t,r,i+1)})).valueOf()}function i(e,t,r,n,o){const a=o===n-1,s=t.dimension(o);a?s.forEach((function(t,n){pn(t),e[t]=r[n[0]]})):s.forEach((function(a,s){pn(a),i(e[a],t,r[s[0]],n,o+1)}))}function o(e,t,r){if(0===t.length){let t=e._data;for(;N(t);)t=t[0];return t}return e._size=t.slice(0),e._data=dn(e._data,e._size,r),e}function a(e,t,r){const n=e._size.slice(0);let i=!1;for(;n.length<t.length;)n.push(0),i=!0;for(let e=0,r=t.length;e<r;e++)t[e]>n[e]&&(n[e]=t[e],i=!0);i&&o(e,n,r)}function s(e){return E(e)?s(e.valueOf()):N(e)?e.map(s):e}return r.prototype=new t,r.prototype.createDenseMatrix=function(e,t){return new r(e,t)},Object.defineProperty(r,"name",{value:"DenseMatrix"}),r.prototype.constructor=r,r.prototype.type="DenseMatrix",r.prototype.isDenseMatrix=!0,r.prototype.getDataType=function(){return Bn(this._data,oe)},r.prototype.storage=function(){return"dense"},r.prototype.datatype=function(){return this._datatype},r.prototype.create=function(e,t){return new r(e,t)},r.prototype.subset=function(e,t,o){switch(arguments.length){case 1:return function(e,t){if(!T(t))throw new TypeError("Invalid index");if(t.isScalar())return e.get(t.min());{const i=t.size();if(i.length!==e._size.length)throw new an(i.length,e._size.length);const o=t.min(),a=t.max();for(let t=0,r=e._size.length;t<r;t++)pn(o[t],e._size[t]),pn(a[t],e._size[t]);return new r(n(e._data,t,i.length,0),e._datatype)}}(this,e);case 2:case 3:return function(e,t,r,n){if(!t||!0!==t.isIndex)throw new TypeError("Invalid index");const o=t.size(),s=t.isScalar();let u;if(E(r)?(u=r.size(),r=r.valueOf()):u=un(r),s){if(0!==u.length)throw new TypeError("Scalar expected");e.set(t.min(),r,n)}else{if(!ce(u,o))try{u=un(r=0===u.length?kn([r],o):kn(r,o))}catch(e){}if(o.length<e._size.length)throw new an(o.length,e._size.length,"<");if(u.length<o.length){let e=0,t=0;for(;1===o[e]&&1===u[e];)e++;for(;1===o[e];)t++,e++;r=wn(r,o.length,t,u)}if(!ce(o,u))throw new an(o,u,">");a(e,t.max().map((function(e){return e+1})),n);const s=o.length,c=0;i(e._data,t,r,s,c)}return e}(this,e,t,o);default:throw new SyntaxError("Wrong number of arguments")}},r.prototype.get=function(e){return qn(this._data,e)},r.prototype.set=function(e,t,r){if(!N(e))throw new TypeError("Array expected");if(e.length<this._size.length)throw new an(e.length,this._size.length,"<");let n,i,o;const s=e.map((function(e){return e+1}));a(this,s,r);let u=this._data;for(n=0,i=e.length-1;n<i;n++)o=e[n],pn(o,u.length),u=u[o];return o=e[e.length-1],pn(o,u.length),u[o]=t,this},r.prototype.resize=function(e,t,r){if(!A(e))throw new TypeError("Array or Matrix expected");const n=e.valueOf().map((e=>Array.isArray(e)&&1===e.length?e[0]:e));return o(r?this.clone():this,n,t)},r.prototype.reshape=function(e,t){const r=t?this.clone():this;r._data=gn(r._data,e);const n=r._size.reduce(((e,t)=>e*t));return r._size=yn(e,n),r},r.prototype.clone=function(){return new r({data:ae(this._data),size:ae(this._size),datatype:this._datatype})},r.prototype.size=function(){return this._size.slice(0)},r.prototype.map=function(e){const t=this,n=function(r,i){return N(r)?r.map((function(e,t){return n(e,i.concat(t))})):Rn(e,r,i,t,"map")},i=n(this._data,[]);return new r(i,void 0!==this._datatype?Bn(i,oe):void 0)},r.prototype.forEach=function(e){const t=this,r=function(n,i){N(n)?n.forEach((function(e,t){r(e,i.concat(t))})):e(n,i,t)};r(this._data,[])},r.prototype[Symbol.iterator]=function*(){const e=function*(t,r){if(N(t))for(let n=0;n<t.length;n++)yield*e(t[n],r.concat(n));else yield{value:t,index:r}};yield*e(this._data,[])},r.prototype.rows=function(){const e=[];if(2!==this.size().length)throw new TypeError("Rows can only be returned for a 2D matrix.");const t=this._data;for(const n of t)e.push(new r([n],this._datatype));return e},r.prototype.columns=function(){const e=[],t=this.size();if(2!==t.length)throw new TypeError("Rows can only be returned for a 2D matrix.");const n=this._data;for(let i=0;i<t[1];i++){const t=n.map((e=>[e[i]]));e.push(new r(t,this._datatype))}return e},r.prototype.toArray=function(){return ae(this._data)},r.prototype.valueOf=function(){return this._data},r.prototype.format=function(e){return Kr(this._data,e)},r.prototype.toString=function(){return Kr(this._data)},r.prototype.toJSON=function(){return{mathjs:"DenseMatrix",data:this._data,size:this._size,datatype:this._datatype}},r.prototype.diagonal=function(e){if(e){if(g(e)&&(e=e.toNumber()),!h(e)||!ye(e))throw new TypeError("The parameter k must be an integer number")}else e=0;const t=e>0?e:0,n=e<0?-e:0,i=this._size[0],o=this._size[1],a=Math.min(i-n,o-t),s=[];for(let e=0;e<a;e++)s[e]=this._data[e+n][e+t];return new r({data:s,size:[a],datatype:this._datatype})},r.diagonal=function(e,t,n,i){if(!N(e))throw new TypeError("Array expected, size parameter");if(2!==e.length)throw new Error("Only two dimensions matrix are supported");if(e=e.map((function(e){if(g(e)&&(e=e.toNumber()),!h(e)||!ye(e)||e<1)throw new Error("Size values must be positive integers");return e})),n){if(g(n)&&(n=n.toNumber()),!h(n)||!ye(n))throw new TypeError("The parameter k must be an integer number")}else n=0;const o=n>0?n:0,a=n<0?-n:0,s=e[0],u=e[1],c=Math.min(s-a,u-o);let l;if(N(t)){if(t.length!==c)throw new Error("Invalid value array length");l=function(e){return t[e]}}else if(E(t)){const e=t.size();if(1!==e.length||e[0]!==c)throw new Error("Invalid matrix length");l=function(e){return t.get([e])}}else l=function(){return t};i||(i=g(l(0))?l(0).mul(0):0);let f=[];if(e.length>0){f=dn(f,e,i);for(let e=0;e<c;e++)f[e+a][e+o]=l(e)}return new r({data:f,size:[s,u]})},r.fromJSON=function(e){return new r(e)},r.prototype.swapRows=function(e,t){if(!(h(e)&&ye(e)&&h(t)&&ye(t)))throw new Error("Row index must be positive integers");if(2!==this._size.length)throw new Error("Only two dimensional matrix is supported");return pn(e,this._size[0]),pn(t,this._size[0]),r._swapRows(e,t,this._data),this},r._swapRows=function(e,t,r){const n=r[e];r[e]=r[t],r[t]=n},r}),{isClass:!0}),jn="clone",Un=de(jn,["typed"],(e=>{let{typed:t}=e;return t(jn,{any:ae})}));function Ln(e){const t=e.length,r=e[0].length;let n,i;const o=[];for(i=0;i<r;i++){const r=[];for(n=0;n<t;n++)r.push(e[n][i]);o.push(r)}return o}function $n(e){for(let t=0;t<e.length;t++)if(A(e[t]))return!0;return!1}function Hn(e,t){E(e)&&(e=e.valueOf());for(let r=0,n=e.length;r<n;r++){const n=e[r];Array.isArray(n)?Hn(n,t):t(n)}}function Gn(e,t,r){return e&&"function"==typeof e.map?e.map((function(e){return Gn(e,t,r)})):t(e)}function Zn(e,t,r){const n=Array.isArray(e)?un(e):e.size();if(t<0||t>=n.length)throw new sn(t,n.length);return E(e)?e.create(Vn(e.valueOf(),t,r),e.datatype()):Vn(e,t,r)}function Vn(e,t,r){let n,i,o,a;if(t<=0){if(Array.isArray(e[0])){for(a=Ln(e),i=[],n=0;n<a.length;n++)i[n]=Vn(a[n],t-1,r);return i}for(o=e[0],n=1;n<e.length;n++)o=r(o,e[n]);return o}for(i=[],n=0;n<e.length;n++)i[n]=Vn(e[n],t-1,r);return i}function Wn(e,t,r,n,i,o,a,s,u,c,l){const f=e._values,p=e._index,m=e._ptr;let d,h,g,y;if(n)for(h=m[t],g=m[t+1],d=h;d<g;d++)y=p[d],r[y]!==o?(r[y]=o,a.push(y),c?(n[y]=u?s(f[d],l):s(l,f[d]),i[y]=o):n[y]=f[d]):(n[y]=u?s(f[d],n[y]):s(n[y],f[d]),i[y]=o);else for(h=m[t],g=m[t+1],d=h;d<g;d++)y=p[d],r[y]!==o?(r[y]=o,a.push(y)):i[y]=o}const Yn="isInteger",Jn=de(Yn,["typed"],(e=>{let{typed:t}=e;return t(Yn,{number:ye,BigNumber:function(e){return e.isInt()},bigint:function(e){return!0},Fraction:function(e){return 1===e.d&&isFinite(e.n)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Xn="number";function Qn(e){return e<0}function Kn(e){return e>0}function ei(e){return Number.isNaN(e)}function ti(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1e-9,n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;if(r<=0)throw new Error("Relative tolerance must be greater than 0");if(n<0)throw new Error("Absolute tolerance must be at least 0");return!e.isNaN()&&!t.isNaN()&&(e.isFinite()&&t.isFinite()?!!e.eq(t)||e.minus(t).abs().lte(e.constructor.max(e.constructor.max(e.abs(),t.abs()).mul(r),n)):e.eq(t))}Qn.signature=Xn,Kn.signature=Xn,ei.signature=Xn;const ri="isNegative",ni=de(ri,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(ri,{number:e=>!_e(e,0,r.relTol,r.absTol)&&Qn(e),BigNumber:e=>!ti(e,new e.constructor(0),r.relTol,r.absTol)&&e.isNeg()&&!e.isZero()&&!e.isNaN(),bigint:e=>e<0n,Fraction:e=>e.s<0,Unit:t.referToSelf((e=>r=>t.find(e,r.valueType())(r.value))),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),ii="isNumeric",oi=de(ii,["typed"],(e=>{let{typed:t}=e;return t(ii,{"number | BigNumber | bigint | Fraction | boolean":()=>!0,"Complex | Unit | string | null | undefined | Node":()=>!1,"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),ai="hasNumericValue",si=de(ai,["typed","isNumeric"],(e=>{let{typed:t,isNumeric:r}=e;return t(ai,{boolean:()=>!0,string:function(e){return e.trim().length>0&&!isNaN(Number(e))},any:function(e){return r(e)}})})),ui="isPositive",ci=de(ui,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(ui,{number:e=>!_e(e,0,r.relTol,r.absTol)&&Kn(e),BigNumber:e=>!(ti(e,new e.constructor(0),r.relTol,r.absTol)||e.isNeg()||e.isZero()||e.isNaN()),bigint:e=>e>0n,Fraction:e=>e.s>0&&e.n>0,Unit:t.referToSelf((e=>r=>t.find(e,r.valueType())(r.value))),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),li="isZero",fi=de(li,["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return t(li,{"number | BigNumber | Complex | Fraction":e=>r(e,0),bigint:e=>0n===e,Unit:t.referToSelf((e=>r=>t.find(e,r.valueType())(r.value))),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),pi="isNaN",mi=de(pi,["typed"],(e=>{let{typed:t}=e;return t(pi,{number:ei,BigNumber:function(e){return e.isNaN()},bigint:function(e){return!1},Fraction:function(e){return!1},Complex:function(e){return e.isNaN()},Unit:function(e){return Number.isNaN(e.value)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),di="typeOf",hi=de(di,["typed"],(e=>{let{typed:t}=e;return t(di,{any:oe})})),gi=de("compareUnits",["typed"],(e=>{let{typed:t}=e;return{"Unit, Unit":t.referToSelf((e=>(r,n)=>{if(!r.equalBase(n))throw new Error("Cannot compare units with different base");return t.find(e,[r.valueType(),n.valueType()])(r.value,n.value)}))}})),yi="equalScalar",xi=de(yi,["typed","config"],(e=>{let{typed:t,config:r}=e;const n=gi({typed:t});return t(yi,{"boolean, boolean":function(e,t){return e===t},"number, number":function(e,t){return _e(e,t,r.relTol,r.absTol)},"BigNumber, BigNumber":function(e,t){return e.eq(t)||ti(e,t,r.relTol,r.absTol)},"bigint, bigint":function(e,t){return e===t},"Fraction, Fraction":function(e,t){return e.equals(t)},"Complex, Complex":function(e,t){return function(e,t,r,n){return _e(e.re,t.re,r,n)&&_e(e.im,t.im,r,n)}(e,t,r.relTol,r.absTol)}},n)})),bi=(de(yi,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(yi,{"number, number":function(e,t){return _e(e,t,r.relTol,r.absTol)}})})),de("SparseMatrix",["typed","equalScalar","Matrix"],(e=>{let{typed:t,equalScalar:r,Matrix:n}=e;function i(e,t){if(!(this instanceof i))throw new SyntaxError("Constructor must be called with the new operator");if(t&&!w(t))throw new Error("Invalid datatype: "+t);if(E(e))!function(e,t,r){"SparseMatrix"===t.type?(e._values=t._values?ae(t._values):void 0,e._index=ae(t._index),e._ptr=ae(t._ptr),e._size=ae(t._size),e._datatype=r||t._datatype):o(e,t.valueOf(),r||t._datatype)}(this,e,t);else if(e&&N(e.index)&&N(e.ptr)&&N(e.size))this._values=e.values,this._index=e.index,this._ptr=e.ptr,this._size=e.size,this._datatype=t||e.datatype;else if(N(e))o(this,e,t);else{if(e)throw new TypeError("Unsupported type of data ("+oe(e)+")");this._values=[],this._index=[],this._ptr=[0],this._size=[0,0],this._datatype=t}}function o(e,n,i){e._values=[],e._index=[],e._ptr=[],e._datatype=i;const o=n.length;let a=0,s=r,u=0;if(w(i)&&(s=t.find(r,[i,i])||r,u=t.convert(0,i)),o>0){let t=0;do{e._ptr.push(e._index.length);for(let r=0;r<o;r++){const i=n[r];if(N(i)){if(0===t&&a<i.length&&(a=i.length),t<i.length){const n=i[t];s(n,u)||(e._values.push(n),e._index.push(r))}}else 0===t&&a<1&&(a=1),s(i,u)||(e._values.push(i),e._index.push(r))}t++}while(t<a)}e._ptr.push(e._index.length),e._size=[o,a]}function a(e,t,r,n){if(r-t==0)return r;for(let i=t;i<r;i++)if(n[i]===e)return i;return t}function s(e,t,r,n,i,o,a){i.splice(e,0,n),o.splice(e,0,t);for(let e=r+1;e<a.length;e++)a[e]++}function u(e,n,i,o){let a=o||0,s=r,u=0;w(e._datatype)&&(s=t.find(r,[e._datatype,e._datatype])||r,u=t.convert(0,e._datatype),a=t.convert(a,e._datatype));const c=!s(a,u),l=e._size[0];let f,p,m,d=e._size[1];if(i>d){for(p=d;p<i;p++)if(e._ptr[p]=e._values.length,c)for(f=0;f<l;f++)e._values.push(a),e._index.push(f);e._ptr[i]=e._values.length}else i<d&&(e._ptr.splice(i+1,d-i),e._values.splice(e._ptr[i],e._values.length),e._index.splice(e._ptr[i],e._index.length));if(d=i,n>l){if(c){let t=0;for(p=0;p<d;p++){e._ptr[p]=e._ptr[p]+t,m=e._ptr[p+1]+t;let r=0;for(f=l;f<n;f++,r++)e._values.splice(m+r,0,a),e._index.splice(m+r,0,f),t++}e._ptr[d]=e._values.length}}else if(n<l){let t=0;for(p=0;p<d;p++){e._ptr[p]=e._ptr[p]-t;const r=e._ptr[p],i=e._ptr[p+1]-t;for(m=r;m<i;m++)f=e._index[m],f>n-1&&(e._values.splice(m,1),e._index.splice(m,1),t++)}e._ptr[p]=e._values.length}return e._size[0]=n,e._size[1]=i,e}function c(e,t,r,n,i){const o=n[0],a=n[1],s=[];let u,c;for(u=0;u<o;u++)for(s[u]=[],c=0;c<a;c++)s[u][c]=0;for(c=0;c<a;c++){const n=r[c],o=r[c+1];for(let r=n;r<o;r++)u=t[r],s[u][c]=e?i?ae(e[r]):e[r]:1}return s}return i.prototype=new n,i.prototype.createSparseMatrix=function(e,t){return new i(e,t)},Object.defineProperty(i,"name",{value:"SparseMatrix"}),i.prototype.constructor=i,i.prototype.type="SparseMatrix",i.prototype.isSparseMatrix=!0,i.prototype.getDataType=function(){return Bn(this._values,oe)},i.prototype.storage=function(){return"sparse"},i.prototype.datatype=function(){return this._datatype},i.prototype.create=function(e,t){return new i(e,t)},i.prototype.density=function(){const e=this._size[0],t=this._size[1];return 0!==e&&0!==t?this._index.length/(e*t):0},i.prototype.subset=function(e,t,r){if(!this._values)throw new Error("Cannot invoke subset on a Pattern only matrix");switch(arguments.length){case 1:return function(e,t){if(!T(t))throw new TypeError("Invalid index");if(t.isScalar())return e.get(t.min());const r=t.size();if(r.length!==e._size.length)throw new an(r.length,e._size.length);let n,o,a,s;const u=t.min(),c=t.max();for(n=0,o=e._size.length;n<o;n++)pn(u[n],e._size[n]),pn(c[n],e._size[n]);const l=e._values,f=e._index,p=e._ptr,m=t.dimension(0),d=t.dimension(1),h=[],g=[];m.forEach((function(e,t){g[e]=t[0],h[e]=!0}));const y=l?[]:void 0,x=[],b=[];return d.forEach((function(e){for(b.push(x.length),a=p[e],s=p[e+1];a<s;a++)n=f[a],!0===h[n]&&(x.push(g[n]),y&&y.push(l[a]))})),b.push(x.length),new i({values:y,index:x,ptr:b,size:r,datatype:e._datatype})}(this,e);case 2:case 3:return function(e,t,r,n){if(!t||!0!==t.isIndex)throw new TypeError("Invalid index");const i=t.size(),o=t.isScalar();let a;if(E(r)?(a=r.size(),r=r.toArray()):a=un(r),o){if(0!==a.length)throw new TypeError("Scalar expected");e.set(t.min(),r,n)}else{if(1!==i.length&&2!==i.length)throw new an(i.length,e._size.length,"<");if(a.length<i.length){let e=0,t=0;for(;1===i[e]&&1===a[e];)e++;for(;1===i[e];)t++,e++;r=wn(r,i.length,t,a)}if(!ce(i,a))throw new an(i,a,">");if(1===i.length)t.dimension(0).forEach((function(t,i){pn(t),e.set([t,0],r[i[0]],n)}));else{const i=t.dimension(0),o=t.dimension(1);i.forEach((function(t,i){pn(t),o.forEach((function(o,a){pn(o),e.set([t,o],r[i[0]][a[0]],n)}))}))}}return e}(this,e,t,r);default:throw new SyntaxError("Wrong number of arguments")}},i.prototype.get=function(e){if(!N(e))throw new TypeError("Array expected");if(e.length!==this._size.length)throw new an(e.length,this._size.length);if(!this._values)throw new Error("Cannot invoke get on a Pattern only matrix");const t=e[0],r=e[1];pn(t,this._size[0]),pn(r,this._size[1]);const n=a(t,this._ptr[r],this._ptr[r+1],this._index);return n<this._ptr[r+1]&&this._index[n]===t?this._values[n]:0},i.prototype.set=function(e,n,i){if(!N(e))throw new TypeError("Array expected");if(e.length!==this._size.length)throw new an(e.length,this._size.length);if(!this._values)throw new Error("Cannot invoke set on a Pattern only matrix");const o=e[0],c=e[1];let l=this._size[0],f=this._size[1],p=r,m=0;w(this._datatype)&&(p=t.find(r,[this._datatype,this._datatype])||r,m=t.convert(0,this._datatype)),(o>l-1||c>f-1)&&(u(this,Math.max(o+1,l),Math.max(c+1,f),i),l=this._size[0],f=this._size[1]),pn(o,l),pn(c,f);const d=a(o,this._ptr[c],this._ptr[c+1],this._index);return d<this._ptr[c+1]&&this._index[d]===o?p(n,m)?function(e,t,r,n,i){r.splice(e,1),n.splice(e,1);for(let e=t+1;e<i.length;e++)i[e]--}(d,c,this._values,this._index,this._ptr):this._values[d]=n:p(n,m)||s(d,o,c,n,this._values,this._index,this._ptr),this},i.prototype.resize=function(e,t,r){if(!A(e))throw new TypeError("Array or Matrix expected");const n=e.valueOf().map((e=>Array.isArray(e)&&1===e.length?e[0]:e));if(2!==n.length)throw new Error("Only two dimensions matrix are supported");return n.forEach((function(e){if(!h(e)||!ye(e)||e<0)throw new TypeError("Invalid size, must contain positive integers (size: "+Kr(n)+")")})),u(r?this.clone():this,n[0],n[1],t)},i.prototype.reshape=function(e,t){if(!N(e))throw new TypeError("Array expected");if(2!==e.length)throw new Error("Sparse matrices can only be reshaped in two dimensions");e.forEach((function(t){if(!h(t)||!ye(t)||t<=-2||0===t)throw new TypeError("Invalid size, must contain positive integers or -1 (size: "+Kr(e)+")")}));const r=this._size[0]*this._size[1];if(r!==(e=yn(e,r))[0]*e[1])throw new Error("Reshaping sparse matrix will result in the wrong number of elements");const n=t?this.clone():this;if(this._size[0]===e[0]&&this._size[1]===e[1])return n;const i=[];for(let e=0;e<n._ptr.length;e++)for(let t=0;t<n._ptr[e+1]-n._ptr[e];t++)i.push(e);const o=n._values.slice(),u=n._index.slice();for(let t=0;t<n._index.length;t++){const r=u[t],o=i[t],a=r*n._size[1]+o;i[t]=a%e[1],u[t]=Math.floor(a/e[1])}n._values.length=0,n._index.length=0,n._ptr.length=e[1]+1,n._size=e.slice();for(let e=0;e<n._ptr.length;e++)n._ptr[e]=0;for(let e=0;e<o.length;e++){const t=u[e],r=i[e],c=o[e];s(a(t,n._ptr[r],n._ptr[r+1],n._index),t,r,c,n._values,n._index,n._ptr)}return n},i.prototype.clone=function(){return new i({values:this._values?ae(this._values):void 0,index:ae(this._index),ptr:ae(this._ptr),size:ae(this._size),datatype:this._datatype})},i.prototype.size=function(){return this._size.slice(0)},i.prototype.map=function(e,n){if(!this._values)throw new Error("Cannot invoke map on a Pattern only matrix");const o=this;return function(e,n,o,a,s,u,c){const l=[],f=[],p=[];let m=r,d=0;w(e._datatype)&&(m=t.find(r,[e._datatype,e._datatype])||r,d=t.convert(0,e._datatype));const h=function(e,t,r){const n=u(e,t,r);m(n,d)||(l.push(n),f.push(t))};for(let t=0;t<=s;t++){p.push(l.length);const r=e._ptr[t],n=e._ptr[t+1];if(c)for(let i=r;i<n;i++){const r=e._index[i];r>=0&&r<=o&&h(e._values[i],r-0,t-0)}else{const i={};for(let t=r;t<n;t++)i[e._index[t]]=e._values[t];for(let e=0;e<=o;e++)h(e in i?i[e]:0,e-0,t-0)}}return p.push(l.length),new i({values:l,index:f,ptr:p,size:[o-0+1,s-0+1]})}(this,0,this._size[0]-1,0,this._size[1]-1,(function(t,r,n){return Rn(e,t,[r,n],o,"map")}),n)},i.prototype.forEach=function(e,t){if(!this._values)throw new Error("Cannot invoke forEach on a Pattern only matrix");const r=this,n=this._size[0],i=this._size[1];for(let o=0;o<i;o++){const i=this._ptr[o],a=this._ptr[o+1];if(t)for(let t=i;t<a;t++){const n=this._index[t];e(this._values[t],[n,o],r)}else{const t={};for(let e=i;e<a;e++)t[this._index[e]]=this._values[e];for(let i=0;i<n;i++)e(i in t?t[i]:0,[i,o],r)}}},i.prototype[Symbol.iterator]=function*(){if(!this._values)throw new Error("Cannot iterate a Pattern only matrix");const e=this._size[1];for(let t=0;t<e;t++){const e=this._ptr[t],r=this._ptr[t+1];for(let n=e;n<r;n++){const e=this._index[n];yield{value:this._values[n],index:[e,t]}}}},i.prototype.toArray=function(){return c(this._values,this._index,this._ptr,this._size,!0)},i.prototype.valueOf=function(){return c(this._values,this._index,this._ptr,this._size,!1)},i.prototype.format=function(e){const t=this._size[0],r=this._size[1],n=this.density();let i="Sparse Matrix ["+Kr(t,e)+" x "+Kr(r,e)+"] density: "+Kr(n,e)+"\n";for(let t=0;t<r;t++){const r=this._ptr[t],n=this._ptr[t+1];for(let o=r;o<n;o++)i+="\n ("+Kr(this._index[o],e)+", "+Kr(t,e)+") ==> "+(this._values?Kr(this._values[o],e):"X")}return i},i.prototype.toString=function(){return Kr(this.toArray())},i.prototype.toJSON=function(){return{mathjs:"SparseMatrix",values:this._values,index:this._index,ptr:this._ptr,size:this._size,datatype:this._datatype}},i.prototype.diagonal=function(e){if(e){if(g(e)&&(e=e.toNumber()),!h(e)||!ye(e))throw new TypeError("The parameter k must be an integer number")}else e=0;const t=e>0?e:0,r=e<0?-e:0,n=this._size[0],o=this._size[1],a=Math.min(n-r,o-t),s=[],u=[],c=[];c[0]=0;for(let e=t;e<o&&s.length<a;e++){const n=this._ptr[e],i=this._ptr[e+1];for(let o=n;o<i;o++){const n=this._index[o];if(n===e-t+r){s.push(this._values[o]),u[s.length-1]=n-r;break}}}return c.push(s.length),new i({values:s,index:u,ptr:c,size:[a,1]})},i.fromJSON=function(e){return new i(e)},i.diagonal=function(e,n,o,a,s){if(!N(e))throw new TypeError("Array expected, size parameter");if(2!==e.length)throw new Error("Only two dimensions matrix are supported");if(e=e.map((function(e){if(g(e)&&(e=e.toNumber()),!h(e)||!ye(e)||e<1)throw new Error("Size values must be positive integers");return e})),o){if(g(o)&&(o=o.toNumber()),!h(o)||!ye(o))throw new TypeError("The parameter k must be an integer number")}else o=0;let u=r,c=0;w(s)&&(u=t.find(r,[s,s])||r,c=t.convert(0,s));const l=o>0?o:0,f=o<0?-o:0,p=e[0],m=e[1],d=Math.min(p-f,m-l);let y;if(N(n)){if(n.length!==d)throw new Error("Invalid value array length");y=function(e){return n[e]}}else if(E(n)){const e=n.size();if(1!==e.length||e[0]!==d)throw new Error("Invalid matrix length");y=function(e){return n.get([e])}}else y=function(){return n};const x=[],b=[],v=[];for(let e=0;e<m;e++){v.push(x.length);const t=e-l;if(t>=0&&t<d){const e=y(t);u(e,c)||(b.push(t+f),x.push(e))}}return v.push(x.length),new i({values:x,index:b,ptr:v,size:[p,m]})},i.prototype.swapRows=function(e,t){if(!(h(e)&&ye(e)&&h(t)&&ye(t)))throw new Error("Row index must be positive integers");if(2!==this._size.length)throw new Error("Only two dimensional matrix is supported");return pn(e,this._size[0]),pn(t,this._size[0]),i._swapRows(e,t,this._size[1],this._values,this._index,this._ptr),this},i._forEachRow=function(e,t,r,n,i){const o=n[e],a=n[e+1];for(let e=o;e<a;e++)i(r[e],t[e])},i._swapRows=function(e,t,r,n,i,o){for(let s=0;s<r;s++){const r=o[s],u=o[s+1],c=a(e,r,u,i),l=a(t,r,u,i);if(c<u&&l<u&&i[c]===e&&i[l]===t){if(n){const e=n[c];n[c]=n[l],n[l]=e}}else if(c<u&&i[c]===e&&(l>=u||i[l]!==t)){const e=n?n[c]:void 0;i.splice(l,0,t),n&&n.splice(l,0,e),i.splice(l<=c?c+1:c,1),n&&n.splice(l<=c?c+1:c,1)}else if(l<u&&i[l]===t&&(c>=u||i[c]!==e)){const t=n?n[l]:void 0;i.splice(c,0,e),n&&n.splice(c,0,t),i.splice(c<=l?l+1:l,1),n&&n.splice(c<=l?l+1:l,1)}}},i}),{isClass:!0})),vi=de("number",["typed"],(e=>{let{typed:t}=e;const r=t("number",{"":function(){return 0},number:function(e){return e},string:function(e){if("NaN"===e)return NaN;const t=function(e){const t=e.match(/(0[box])([0-9a-fA-F]*)\.([0-9a-fA-F]*)/);return t?{input:e,radix:{"0b":2,"0o":8,"0x":16}[t[1]],integerPart:t[2],fractionalPart:t[3]}:null}(e);if(t)return function(e){const t=parseInt(e.integerPart,e.radix);let r=0;for(let t=0;t<e.fractionalPart.length;t++)r+=parseInt(e.fractionalPart[t],e.radix)/Math.pow(e.radix,t+1);const n=t+r;if(isNaN(n))throw new SyntaxError('String "'+e.input+'" is not a valid number');return n}(t);let r=0;const n=e.match(/(0[box][0-9a-fA-F]*)i([0-9]*)/);n&&(r=Number(n[2]),e=n[1]);let i=Number(e);if(isNaN(i))throw new SyntaxError('String "'+e+'" is not a valid number');if(n){if(i>2**r-1)throw new SyntaxError(`String "${e}" is out of range`);i>=2**(r-1)&&(i-=2**r)}return i},BigNumber:function(e){return e.toNumber()},bigint:function(e){return Number(e)},Fraction:function(e){return e.valueOf()},Unit:t.referToSelf((e=>t=>{const r=t.clone();return r.value=e(t.value),r})),null:function(e){return 0},"Unit, string | Unit":function(e,t){return e.toNumber(t)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))});return r.fromJSON=function(e){return parseFloat(e.value)},r})),wi=de("bigint",["typed"],(e=>{let{typed:t}=e;const r=t("bigint",{"":function(){return 0n},bigint:function(e){return e},number:function(e){return BigInt(e.toFixed())},BigNumber:function(e){return BigInt(e.round().toString())},Fraction:function(e){return BigInt(e.valueOf().toFixed())},"string | boolean":function(e){return BigInt(e)},null:function(e){return 0n},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))});return r.fromJSON=function(e){return BigInt(e.value)},r})),Ni="string",Ei=de(Ni,["typed"],(e=>{let{typed:t}=e;return t(Ni,{"":function(){return""},number:Me,null:function(e){return"null"},boolean:function(e){return e+""},string:function(e){return e},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e))),any:function(e){return String(e)}})})),Ai="boolean",Si=de(Ai,["typed"],(e=>{let{typed:t}=e;return t(Ai,{"":function(){return!1},boolean:function(e){return e},number:function(e){return!!e},null:function(e){return!1},BigNumber:function(e){return!e.isZero()},string:function(e){const t=e.toLowerCase();if("true"===t)return!0;if("false"===t)return!1;const r=Number(e);if(""!==e&&!isNaN(r))return!!r;throw new Error('Cannot convert "'+e+'" to a boolean')},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Mi=de("bignumber",["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t("bignumber",{"":function(){return new r(0)},number:function(e){return new r(e+"")},string:function(e){const t=e.match(/(0[box][0-9a-fA-F]*)i([0-9]*)/);if(t){const n=t[2],i=r(t[1]),o=new r(2).pow(Number(n));if(i.gt(o.sub(1)))throw new SyntaxError(`String "${e}" is out of range`);const a=new r(2).pow(Number(n)-1);return i.gte(a)?i.sub(o):i}return new r(e)},BigNumber:function(e){return e},bigint:function(e){return new r(e.toString())},Unit:t.referToSelf((e=>t=>{const r=t.clone();return r.value=e(t.value),r})),Fraction:function(e){return new r(e.n).div(e.d).times(e.s)},null:function(e){return new r(0)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Ci=de("complex",["typed","Complex"],(e=>{let{typed:t,Complex:r}=e;return t("complex",{"":function(){return r.ZERO},number:function(e){return new r(e,0)},"number, number":function(e,t){return new r(e,t)},"BigNumber, BigNumber":function(e,t){return new r(e.toNumber(),t.toNumber())},Fraction:function(e){return new r(e.valueOf(),0)},Complex:function(e){return e.clone()},string:function(e){return r(e)},null:function(e){return r(0)},Object:function(e){if("re"in e&&"im"in e)return new r(e.re,e.im);if("r"in e&&"phi"in e||"abs"in e&&"arg"in e)return new r(e);throw new Error("Expected object with properties (re and im) or (r and phi) or (abs and arg)")},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Ti=de("fraction",["typed","Fraction"],(e=>{let{typed:t,Fraction:r}=e;return t("fraction",{number:function(e){if(!isFinite(e)||isNaN(e))throw new Error(e+" cannot be represented as a fraction");return new r(e)},string:function(e){return new r(e)},"number, number":function(e,t){return new r(e,t)},null:function(e){return new r(0)},BigNumber:function(e){return new r(e.toString())},bigint:function(e){return new r(e.toString())},Fraction:function(e){return e},Unit:t.referToSelf((e=>t=>{const r=t.clone();return r.value=e(t.value),r})),Object:function(e){return new r(e)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Di="matrix",Fi=de(Di,["typed","Matrix","DenseMatrix","SparseMatrix"],(e=>{let{typed:t,Matrix:r,DenseMatrix:n,SparseMatrix:i}=e;return t(Di,{"":function(){return o([])},string:function(e){return o([],e)},"string, string":function(e,t){return o([],e,t)},Array:function(e){return o(e)},Matrix:function(e){return o(e,e.storage())},"Array | Matrix, string":o,"Array | Matrix, string, string":o});function o(e,t,r){if("dense"===t||"default"===t||void 0===t)return new n(e,r);if("sparse"===t)return new i(e,r);throw new TypeError("Unknown matrix type "+JSON.stringify(t)+".")}})),Bi="matrixFromFunction",Oi=de(Bi,["typed","matrix","isZero"],(e=>{let{typed:t,matrix:r,isZero:n}=e;return t(Bi,{"Array | Matrix, function, string, string":function(e,t,r,n){return i(e,t,r,n)},"Array | Matrix, function, string":function(e,t,r){return i(e,t,r)},"Matrix, function":function(e,t){return i(e,t,"dense")},"Array, function":function(e,t){return i(e,t,"dense").toArray()},"Array | Matrix, string, function":function(e,t,r){return i(e,r,t)},"Array | Matrix, string, string, function":function(e,t,r,n){return i(e,n,t,r)}});function i(e,t,i,o){let a;return a=void 0!==o?r(i,o):r(i),a.resize(e),a.forEach((function(e,r){const i=t(r);n(i)||a.set(r,i)})),a}})),_i="matrixFromRows",zi=de(_i,["typed","matrix","flatten","size"],(e=>{let{typed:t,matrix:r,flatten:n,size:i}=e;return t(_i,{"...Array":function(e){return o(e)},"...Matrix":function(e){return r(o(e.map((e=>e.toArray()))))}});function o(e){if(0===e.length)throw new TypeError("At least one row is needed to construct a matrix.");const t=a(e[0]),r=[];for(const i of e){const e=a(i);if(e!==t)throw new TypeError("The vectors had different length: "+(0|t)+" ≠ "+(0|e));r.push(n(i))}return r}function a(e){const t=i(e);if(1===t.length)return t[0];if(2===t.length){if(1===t[0])return t[1];if(1===t[1])return t[0];throw new TypeError("At least one of the arguments is not a vector.")}throw new TypeError("Only one- or two-dimensional vectors are supported.")}})),Ii="matrixFromColumns",ki=de(Ii,["typed","matrix","flatten","size"],(e=>{let{typed:t,matrix:r,flatten:n,size:i}=e;return t(Ii,{"...Array":function(e){return o(e)},"...Matrix":function(e){return r(o(e.map((e=>e.toArray()))))}});function o(e){if(0===e.length)throw new TypeError("At least one column is needed to construct a matrix.");const t=a(e[0]),r=[];for(let e=0;e<t;e++)r[e]=[];for(const i of e){const e=a(i);if(e!==t)throw new TypeError("The vectors had different length: "+(0|t)+" ≠ "+(0|e));const o=n(i);for(let e=0;e<t;e++)r[e].push(o[e])}return r}function a(e){const t=i(e);if(1===t.length)return t[0];if(2===t.length){if(1===t[0])return t[1];if(1===t[1])return t[0];throw new TypeError("At least one of the arguments is not a vector.")}throw new TypeError("Only one- or two-dimensional vectors are supported.")}})),qi="splitUnit",Ri=de(qi,["typed"],(e=>{let{typed:t}=e;return t(qi,{"Unit, Array":function(e,t){return e.splitUnit(t)}})})),Pi="number",ji="number, number";function Ui(e){return Math.abs(e)}function Li(e,t){return e+t}function $i(e,t){return e-t}function Hi(e,t){return e*t}function Gi(e){return-e}function Zi(e){return e}function Vi(e){return Ee(e)}function Wi(e){return e*e*e}function Yi(e){return Math.exp(e)}function Ji(e){return Ae(e)}function Xi(e,t){if(!ye(e)||!ye(t))throw new Error("Parameters in function lcm must be integer numbers");if(0===e||0===t)return 0;let r;const n=e*t;for(;0!==t;)r=t,t=e%r,e=r;return Math.abs(n/e)}function Qi(e){return we(e)}function Ki(e){return ve(e)}function eo(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;const r=t<0;if(r&&(t=-t),0===t)throw new Error("Root must be non-zero");if(e<0&&Math.abs(t)%2!=1)throw new Error("Root must be odd when a is negative.");if(0===e)return r?1/0:0;if(!isFinite(e))return r?0:e;let n=Math.pow(Math.abs(e),1/t);return n=e<0?-n:n,r?1/n:n}function to(e){return be(e)}function ro(e){return e*e}function no(e,t){let r,n,i,o,a=0,s=1,u=1,c=0;if(!ye(e)||!ye(t))throw new Error("Parameters in function xgcd must be integer numbers");for(;t;)n=Math.floor(e/t),i=e-n*t,r=a,a=s-n*a,s=r,r=u,u=c-n*u,c=r,e=t,t=i;return o=e<0?[-e,-s,-c]:[e,e?s:0,c],o}function io(e,t){return e*e<1&&t===1/0||e*e>1&&t===-1/0?0:Math.pow(e,t)}function oo(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(!ye(t)||t<0||t>15)throw new Error("Number of decimals in function round must be an integer from 0 to 15 inclusive");return parseFloat(De(e,t))}Ui.signature=Pi,Li.signature=ji,$i.signature=ji,Hi.signature=ji,Gi.signature=Pi,Zi.signature=Pi,Vi.signature=Pi,Wi.signature=Pi,Yi.signature=Pi,Ji.signature=Pi,Xi.signature=ji,Qi.signature=Pi,Ki.signature=Pi,to.signature=Pi,ro.signature=Pi,no.signature=ji,io.signature=ji;const ao="unaryMinus",so=de(ao,["typed"],(e=>{let{typed:t}=e;return t(ao,{number:Gi,"Complex | BigNumber | Fraction":e=>e.neg(),bigint:e=>-e,Unit:t.referToSelf((e=>r=>{const n=r.clone();return n.value=t.find(e,n.valueType())(r.value),n})),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0)))})})),uo="unaryPlus",co=de(uo,["typed","config","numeric"],(e=>{let{typed:t,config:r,numeric:n}=e;return t(uo,{number:Zi,Complex:function(e){return e},BigNumber:function(e){return e},bigint:function(e){return e},Fraction:function(e){return e},Unit:function(e){return e.clone()},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0))),boolean:function(e){return n(e?1:0,r.number)},string:function(e){return n(e,xe(e,r))}})})),lo=de("abs",["typed"],(e=>{let{typed:t}=e;return t("abs",{number:Ui,"Complex | BigNumber | Fraction | Unit":e=>e.abs(),bigint:e=>e<0n?-e:e,"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0)))})})),fo="apply",po=de(fo,["typed","isInteger"],(e=>{let{typed:t,isInteger:r}=e;return t(fo,{"Array | Matrix, number | BigNumber, function":function(e,t,n){if(!r(t))throw new TypeError("Integer number expected for dimension");const i=Array.isArray(e)?un(e):e.size();if(t<0||t>=i.length)throw new sn(t,i.length);return E(e)?e.create(mo(e.valueOf(),t,n),e.datatype()):mo(e,t,n)}})}));function mo(e,t,r){let n,i,o;if(t<=0){if(Array.isArray(e[0])){for(o=function(e){const t=e.length,r=e[0].length;let n,i;const o=[];for(i=0;i<r;i++){const r=[];for(n=0;n<t;n++)r.push(e[n][i]);o.push(r)}return o}(e),i=[],n=0;n<o.length;n++)i[n]=mo(o[n],t-1,r);return i}return r(e)}for(i=[],n=0;n<e.length;n++)i[n]=mo(e[n],t-1,r);return i}const ho="addScalar",go=de(ho,["typed"],(e=>{let{typed:t}=e;return t(ho,{"number, number":Li,"Complex, Complex":function(e,t){return e.add(t)},"BigNumber, BigNumber":function(e,t){return e.plus(t)},"bigint, bigint":function(e,t){return e+t},"Fraction, Fraction":function(e,t){return e.add(t)},"Unit, Unit":t.referToSelf((e=>(r,n)=>{if(null===r.value||void 0===r.value)throw new Error("Parameter x contains a unit with undefined value");if(null===n.value||void 0===n.value)throw new Error("Parameter y contains a unit with undefined value");if(!r.equalBase(n))throw new Error("Units do not match");const i=r.clone();return i.value=t.find(e,[i.valueType(),n.valueType()])(i.value,n.value),i.fixPrefix=!1,i}))})})),yo="subtractScalar",xo=de(yo,["typed"],(e=>{let{typed:t}=e;return t(yo,{"number, number":$i,"Complex, Complex":function(e,t){return e.sub(t)},"BigNumber, BigNumber":function(e,t){return e.minus(t)},"bigint, bigint":function(e,t){return e-t},"Fraction, Fraction":function(e,t){return e.sub(t)},"Unit, Unit":t.referToSelf((e=>(r,n)=>{if(null===r.value||void 0===r.value)throw new Error("Parameter x contains a unit with undefined value");if(null===n.value||void 0===n.value)throw new Error("Parameter y contains a unit with undefined value");if(!r.equalBase(n))throw new Error("Units do not match");const i=r.clone();return i.value=t.find(e,[i.valueType(),n.valueType()])(i.value,n.value),i.fixPrefix=!1,i}))})})),bo="cbrt",vo=de(bo,["config","typed","isNegative","unaryMinus","matrix","Complex","BigNumber","Fraction"],(e=>{let{config:t,typed:r,isNegative:n,unaryMinus:i,matrix:o,Complex:a,BigNumber:s,Fraction:u}=e;return r(bo,{number:Vi,Complex:c,"Complex, boolean":c,BigNumber:function(e){return e.cbrt()},Unit:function(e){if(e.value&&x(e.value)){let t=e.clone();return t.value=1,t=t.pow(1/3),t.value=c(e.value),t}{const t=n(e.value);let r;t&&(e.value=i(e.value)),r=g(e.value)?new s(1).div(3):b(e.value)?new u(1,3):1/3;const o=e.pow(r);return t&&(o.value=i(o.value)),o}}});function c(e,r){const n=e.arg()/3,i=e.abs(),s=new a(Vi(i),0).mul(new a(0,n).exp());if(r){const e=[s,new a(Vi(i),0).mul(new a(0,n+2*Math.PI/3).exp()),new a(Vi(i),0).mul(new a(0,n-2*Math.PI/3).exp())];return"Array"===t.matrix?e:o(e)}return s}})),wo=de("matAlgo11xS0s",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i,o){const a=e._values,s=e._index,u=e._ptr,c=e._size,l=e._datatype;if(!a)throw new Error("Cannot perform operation on Pattern Sparse Matrix and Scalar value");const f=c[0],p=c[1];let m,d=r,h=0,g=i;"string"==typeof l&&(m=l,d=t.find(r,[m,m]),h=t.convert(0,m),n=t.convert(n,m),g=t.find(i,[m,m]));const y=[],x=[],b=[];for(let e=0;e<p;e++){b[e]=x.length;for(let t=u[e],r=u[e+1],i=t;i<r;i++){const e=s[i],t=o?g(n,a[i]):g(a[i],n);d(t,h)||(x.push(e),y.push(t))}}return b[p]=x.length,e.createSparseMatrix({values:y,index:x,ptr:b,size:[f,p],datatype:m})}})),No=de("matAlgo12xSfs",["typed","DenseMatrix"],(e=>{let{typed:t,DenseMatrix:r}=e;return function(e,n,i,o){const a=e._values,s=e._index,u=e._ptr,c=e._size,l=e._datatype;if(!a)throw new Error("Cannot perform operation on Pattern Sparse Matrix and Scalar value");const f=c[0],p=c[1];let m,d=i;"string"==typeof l&&(m=l,n=t.convert(n,m),d=t.find(i,[m,m]));const h=[],g=[],y=[];for(let e=0;e<p;e++){const t=e+1;for(let r=u[e],n=u[e+1],i=r;i<n;i++){const e=s[i];g[e]=a[i],y[e]=t}for(let r=0;r<f;r++)0===e&&(h[r]=[]),y[r]===t?h[r][e]=o?d(n,g[r]):d(g[r],n):h[r][e]=o?d(n,0):d(0,n)}return new r({data:h,size:[f,p],datatype:m})}})),Eo=de("matAlgo14xDs",["typed"],(e=>{let{typed:t}=e;return function(e,n,i,o){const a=e._data,s=e._size,u=e._datatype;let c,l=i;"string"==typeof u&&(c=u,n=t.convert(n,c),l=t.find(i,[c,c]));const f=s.length>0?r(l,0,s,s[0],a,n,o):[];return e.createDenseMatrix({data:f,size:ae(s),datatype:c})};function r(e,t,n,i,o,a,s){const u=[];if(t===n.length-1)for(let t=0;t<i;t++)u[t]=s?e(a,o[t]):e(o[t],a);else for(let c=0;c<i;c++)u[c]=r(e,t+1,n,n[t+1],o[c],a,s);return u}})),Ao="ceil",So=["typed","config","round","matrix","equalScalar","zeros","DenseMatrix"],Mo=de(Ao,["typed","config","round"],(e=>{let{typed:t,config:r,round:n}=e;return t(Ao,{number:function(e){return _e(e,n(e),r.relTol,r.absTol)?n(e):Math.ceil(e)},"number, number":function(e,t){if(_e(e,n(e,t),r.relTol,r.absTol))return n(e,t);{let[r,n]=`${e}e`.split("e");const i=Math.ceil(Number(`${r}e${Number(n)+t}`));return[r,n]=`${i}e`.split("e"),Number(`${r}e${Number(n)-t}`)}}})})),Co=de(Ao,So,(e=>{let{typed:t,config:r,round:n,matrix:i,equalScalar:o,zeros:a,DenseMatrix:s}=e;const u=wo({typed:t,equalScalar:o}),c=No({typed:t,DenseMatrix:s}),l=Eo({typed:t}),f=Mo({typed:t,config:r,round:n});return t("ceil",{number:f.signatures.number,"number,number":f.signatures["number,number"],Complex:function(e){return e.ceil()},"Complex, number":function(e,t){return e.ceil(t)},"Complex, BigNumber":function(e,t){return e.ceil(t.toNumber())},BigNumber:function(e){return ti(e,n(e),r.relTol,r.absTol)?n(e):e.ceil()},"BigNumber, BigNumber":function(e,t){return ti(e,n(e,t),r.relTol,r.absTol)?n(e,t):e.toDecimalPlaces(t.toNumber(),Br.ROUND_CEIL)},Fraction:function(e){return e.ceil()},"Fraction, number":function(e,t){return e.ceil(t)},"Fraction, BigNumber":function(e,t){return e.ceil(t.toNumber())},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0))),"Array, number | BigNumber":t.referToSelf((e=>(t,r)=>Gn(t,(t=>e(t,r)),!0))),"SparseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>u(t,r,e,!1))),"DenseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>l(t,r,e,!1))),"number | Complex | Fraction | BigNumber, Array":t.referToSelf((e=>(t,r)=>l(i(r),t,e,!0).valueOf())),"number | Complex | Fraction | BigNumber, Matrix":t.referToSelf((e=>(t,r)=>o(t,0)?a(r.size(),r.storage()):"dense"===r.storage()?l(r,t,e,!0):c(r,t,e,!0)))})})),To="cube",Do=de(To,["typed"],(e=>{let{typed:t}=e;return t(To,{number:Wi,Complex:function(e){return e.mul(e).mul(e)},BigNumber:function(e){return e.times(e).times(e)},bigint:function(e){return e*e*e},Fraction:function(e){return e.pow(3)},Unit:function(e){return e.pow(3)}})})),Fo=de("exp",["typed"],(e=>{let{typed:t}=e;return t("exp",{number:Yi,Complex:function(e){return e.exp()},BigNumber:function(e){return e.exp()}})})),Bo="expm1",Oo=de(Bo,["typed","Complex"],(e=>{let{typed:t,Complex:r}=e;return t(Bo,{number:Ji,Complex:function(e){const t=Math.exp(e.re);return new r(t*Math.cos(e.im)-1,t*Math.sin(e.im))},BigNumber:function(e){return e.exp().minus(1)}})})),_o="fix",zo=["typed","Complex","matrix","ceil","floor","equalScalar","zeros","DenseMatrix"],Io=de(_o,["typed","ceil","floor"],(e=>{let{typed:t,ceil:r,floor:n}=e;return t(_o,{number:function(e){return e>0?n(e):r(e)},"number, number":function(e,t){return e>0?n(e,t):r(e,t)}})})),ko=de(_o,zo,(e=>{let{typed:t,Complex:r,matrix:n,ceil:i,floor:o,equalScalar:a,zeros:s,DenseMatrix:u}=e;const c=No({typed:t,DenseMatrix:u}),l=Eo({typed:t}),f=Io({typed:t,ceil:i,floor:o});return t("fix",{number:f.signatures.number,"number, number | BigNumber":f.signatures["number,number"],Complex:function(e){return new r(e.re>0?Math.floor(e.re):Math.ceil(e.re),e.im>0?Math.floor(e.im):Math.ceil(e.im))},"Complex, number":function(e,t){return new r(e.re>0?o(e.re,t):i(e.re,t),e.im>0?o(e.im,t):i(e.im,t))},"Complex, BigNumber":function(e,t){const n=t.toNumber();return new r(e.re>0?o(e.re,n):i(e.re,n),e.im>0?o(e.im,n):i(e.im,n))},BigNumber:function(e){return e.isNegative()?i(e):o(e)},"BigNumber, number | BigNumber":function(e,t){return e.isNegative()?i(e,t):o(e,t)},Fraction:function(e){return e.s<0?e.ceil():e.floor()},"Fraction, number | BigNumber":function(e,t){return e.s<0?i(e,t):o(e,t)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0))),"Array | Matrix, number | BigNumber":t.referToSelf((e=>(t,r)=>Gn(t,(t=>e(t,r)),!0))),"number | Complex | Fraction | BigNumber, Array":t.referToSelf((e=>(t,r)=>l(n(r),t,e,!0).valueOf())),"number | Complex | Fraction | BigNumber, Matrix":t.referToSelf((e=>(t,r)=>a(t,0)?s(r.size(),r.storage()):"dense"===r.storage()?l(r,t,e,!0):c(r,t,e,!0)))})})),qo="floor",Ro=["typed","config","round","matrix","equalScalar","zeros","DenseMatrix"],Po=de(qo,["typed","config","round"],(e=>{let{typed:t,config:r,round:n}=e;return t(qo,{number:function(e){return _e(e,n(e),r.relTol,r.absTol)?n(e):Math.floor(e)},"number, number":function(e,t){if(_e(e,n(e,t),r.relTol,r.absTol))return n(e,t);{let[r,n]=`${e}e`.split("e");const i=Math.floor(Number(`${r}e${Number(n)+t}`));return[r,n]=`${i}e`.split("e"),Number(`${r}e${Number(n)-t}`)}}})})),jo=de(qo,Ro,(e=>{let{typed:t,config:r,round:n,matrix:i,equalScalar:o,zeros:a,DenseMatrix:s}=e;const u=wo({typed:t,equalScalar:o}),c=No({typed:t,DenseMatrix:s}),l=Eo({typed:t}),f=Po({typed:t,config:r,round:n});return t("floor",{number:f.signatures.number,"number,number":f.signatures["number,number"],Complex:function(e){return e.floor()},"Complex, number":function(e,t){return e.floor(t)},"Complex, BigNumber":function(e,t){return e.floor(t.toNumber())},BigNumber:function(e){return ti(e,n(e),r.relTol,r.absTol)?n(e):e.floor()},"BigNumber, BigNumber":function(e,t){return ti(e,n(e,t),r.relTol,r.absTol)?n(e,t):e.toDecimalPlaces(t.toNumber(),Br.ROUND_FLOOR)},Fraction:function(e){return e.floor()},"Fraction, number":function(e,t){return e.floor(t)},"Fraction, BigNumber":function(e,t){return e.floor(t.toNumber())},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0))),"Array, number | BigNumber":t.referToSelf((e=>(t,r)=>Gn(t,(t=>e(t,r)),!0))),"SparseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>u(t,r,e,!1))),"DenseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>l(t,r,e,!1))),"number | Complex | Fraction | BigNumber, Array":t.referToSelf((e=>(t,r)=>l(i(r),t,e,!0).valueOf())),"number | Complex | Fraction | BigNumber, Matrix":t.referToSelf((e=>(t,r)=>o(t,0)?a(r.size(),r.storage()):"dense"===r.storage()?l(r,t,e,!0):c(r,t,e,!0)))})})),Uo=de("matAlgo02xDS0",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i,o){const a=e._data,s=e._size,u=e._datatype||e.getDataType(),c=n._values,l=n._index,f=n._ptr,p=n._size,m=n._datatype||void 0===n._data?n._datatype:n.getDataType();if(s.length!==p.length)throw new an(s.length,p.length);if(s[0]!==p[0]||s[1]!==p[1])throw new RangeError("Dimension mismatch. Matrix A ("+s+") must match Matrix B ("+p+")");if(!c)throw new Error("Cannot perform operation on Dense Matrix and Pattern Sparse Matrix");const d=s[0],h=s[1];let g,y=r,x=0,b=i;"string"==typeof u&&u===m&&"mixed"!==u&&(g=u,y=t.find(r,[g,g]),x=t.convert(0,g),b=t.find(i,[g,g]));const v=[],w=[],N=[];for(let e=0;e<h;e++){N[e]=w.length;for(let t=f[e],r=f[e+1],n=t;n<r;n++){const t=l[n],r=o?b(c[n],a[t][e]):b(a[t][e],c[n]);y(r,x)||(w.push(t),v.push(r))}}return N[h]=w.length,n.createSparseMatrix({values:v,index:w,ptr:N,size:[d,h],datatype:u===e._datatype&&m===n._datatype?g:void 0})}})),Lo=de("matAlgo03xDSf",["typed"],(e=>{let{typed:t}=e;return function(e,r,n,i){const o=e._data,a=e._size,s=e._datatype||e.getDataType(),u=r._values,c=r._index,l=r._ptr,f=r._size,p=r._datatype||void 0===r._data?r._datatype:r.getDataType();if(a.length!==f.length)throw new an(a.length,f.length);if(a[0]!==f[0]||a[1]!==f[1])throw new RangeError("Dimension mismatch. Matrix A ("+a+") must match Matrix B ("+f+")");if(!u)throw new Error("Cannot perform operation on Dense Matrix and Pattern Sparse Matrix");const m=a[0],d=a[1];let h,g=0,y=n;"string"==typeof s&&s===p&&"mixed"!==s&&(h=s,g=t.convert(0,h),y=t.find(n,[h,h]));const x=[];for(let e=0;e<m;e++)x[e]=[];const b=[],v=[];for(let e=0;e<d;e++){const t=e+1;for(let r=l[e],n=l[e+1],a=r;a<n;a++){const r=c[a];b[r]=i?y(u[a],o[r][e]):y(o[r][e],u[a]),v[r]=t}for(let r=0;r<m;r++)v[r]===t?x[r][e]=b[r]:x[r][e]=i?y(g,o[r][e]):y(o[r][e],g)}return e.createDenseMatrix({data:x,size:[m,d],datatype:s===e._datatype&&p===r._datatype?h:void 0})}})),$o=de("matAlgo05xSfSf",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i){const o=e._values,a=e._index,s=e._ptr,u=e._size,c=e._datatype||void 0===e._data?e._datatype:e.getDataType(),l=n._values,f=n._index,p=n._ptr,m=n._size,d=n._datatype||void 0===n._data?n._datatype:n.getDataType();if(u.length!==m.length)throw new an(u.length,m.length);if(u[0]!==m[0]||u[1]!==m[1])throw new RangeError("Dimension mismatch. Matrix A ("+u+") must match Matrix B ("+m+")");const h=u[0],g=u[1];let y,x=r,b=0,v=i;"string"==typeof c&&c===d&&"mixed"!==c&&(y=c,x=t.find(r,[y,y]),b=t.convert(0,y),v=t.find(i,[y,y]));const w=o&&l?[]:void 0,N=[],E=[],A=w?[]:void 0,S=w?[]:void 0,M=[],C=[];let T,D,F,B;for(D=0;D<g;D++){E[D]=N.length;const e=D+1;for(F=s[D],B=s[D+1];F<B;F++)T=a[F],N.push(T),M[T]=e,A&&(A[T]=o[F]);for(F=p[D],B=p[D+1];F<B;F++)T=f[F],M[T]!==e&&N.push(T),C[T]=e,S&&(S[T]=l[F]);if(w)for(F=E[D];F<N.length;){T=N[F];const t=M[T],r=C[T];if(t===e||r===e){const n=v(t===e?A[T]:b,r===e?S[T]:b);x(n,b)?N.splice(F,1):(w.push(n),F++)}}}return E[g]=N.length,e.createSparseMatrix({values:w,index:N,ptr:E,size:[h,g],datatype:c===e._datatype&&d===n._datatype?y:void 0})}})),Ho=de("matAlgo13xDD",["typed"],(e=>{let{typed:t}=e;return function(e,n,i){const o=e._data,a=e._size,s=e._datatype,u=n._data,c=n._size,l=n._datatype,f=[];if(a.length!==c.length)throw new an(a.length,c.length);for(let e=0;e<a.length;e++){if(a[e]!==c[e])throw new RangeError("Dimension mismatch. Matrix A ("+a+") must match Matrix B ("+c+")");f[e]=a[e]}let p,m=i;"string"==typeof s&&s===l&&(p=s,m=t.find(i,[p,p]));const d=f.length>0?r(m,0,f,f[0],o,u):[];return e.createDenseMatrix({data:d,size:f,datatype:p})};function r(e,t,n,i,o,a){const s=[];if(t===n.length-1)for(let t=0;t<i;t++)s[t]=e(o[t],a[t]);else for(let u=0;u<i;u++)s[u]=r(e,t+1,n,n[t+1],o[u],a[u]);return s}}));function Go(e,t){if(ce(e.size(),t.size()))return[e,t];const r=zn(e.size(),t.size());return[e,t].map((e=>function(e,t){return ce(e.size(),t)?e:e.create(kn(e.valueOf(),t),e.datatype())}(e,r)))}const Zo=de("matrixAlgorithmSuite",["typed","matrix"],(e=>{let{typed:t,matrix:r}=e;const n=Ho({typed:t}),i=Eo({typed:t});return function(e){const o=e.elop,a=e.SD||e.DS;let s;o?(s={"DenseMatrix, DenseMatrix":(e,t)=>n(...Go(e,t),o),"Array, Array":(e,t)=>n(...Go(r(e),r(t)),o).valueOf(),"Array, DenseMatrix":(e,t)=>n(...Go(r(e),t),o),"DenseMatrix, Array":(e,t)=>n(...Go(e,r(t)),o)},e.SS&&(s["SparseMatrix, SparseMatrix"]=(t,r)=>e.SS(...Go(t,r),o,!1)),e.DS&&(s["DenseMatrix, SparseMatrix"]=(t,r)=>e.DS(...Go(t,r),o,!1),s["Array, SparseMatrix"]=(t,n)=>e.DS(...Go(r(t),n),o,!1)),a&&(s["SparseMatrix, DenseMatrix"]=(e,t)=>a(...Go(t,e),o,!0),s["SparseMatrix, Array"]=(e,t)=>a(...Go(r(t),e),o,!0))):(s={"DenseMatrix, DenseMatrix":t.referToSelf((e=>(t,r)=>n(...Go(t,r),e))),"Array, Array":t.referToSelf((e=>(t,i)=>n(...Go(r(t),r(i)),e).valueOf())),"Array, DenseMatrix":t.referToSelf((e=>(t,i)=>n(...Go(r(t),i),e))),"DenseMatrix, Array":t.referToSelf((e=>(t,i)=>n(...Go(t,r(i)),e)))},e.SS&&(s["SparseMatrix, SparseMatrix"]=t.referToSelf((t=>(r,n)=>e.SS(...Go(r,n),t,!1)))),e.DS&&(s["DenseMatrix, SparseMatrix"]=t.referToSelf((t=>(r,n)=>e.DS(...Go(r,n),t,!1))),s["Array, SparseMatrix"]=t.referToSelf((t=>(n,i)=>e.DS(...Go(r(n),i),t,!1)))),a&&(s["SparseMatrix, DenseMatrix"]=t.referToSelf((e=>(t,r)=>a(...Go(r,t),e,!0))),s["SparseMatrix, Array"]=t.referToSelf((e=>(t,n)=>a(...Go(r(n),t),e,!0)))));const u=e.scalar||"any";(e.Ds||e.Ss)&&(o?(s["DenseMatrix,"+u]=(e,t)=>i(e,t,o,!1),s[u+", DenseMatrix"]=(e,t)=>i(t,e,o,!0),s["Array,"+u]=(e,t)=>i(r(e),t,o,!1).valueOf(),s[u+", Array"]=(e,t)=>i(r(t),e,o,!0).valueOf()):(s["DenseMatrix,"+u]=t.referToSelf((e=>(t,r)=>i(t,r,e,!1))),s[u+", DenseMatrix"]=t.referToSelf((e=>(t,r)=>i(r,t,e,!0))),s["Array,"+u]=t.referToSelf((e=>(t,n)=>i(r(t),n,e,!1).valueOf())),s[u+", Array"]=t.referToSelf((e=>(t,n)=>i(r(n),t,e,!0).valueOf()))));const c=void 0!==e.sS?e.sS:e.Ss;return o?(e.Ss&&(s["SparseMatrix,"+u]=(t,r)=>e.Ss(t,r,o,!1)),c&&(s[u+", SparseMatrix"]=(e,t)=>c(t,e,o,!0))):(e.Ss&&(s["SparseMatrix,"+u]=t.referToSelf((t=>(r,n)=>e.Ss(r,n,t,!1)))),c&&(s[u+", SparseMatrix"]=t.referToSelf((e=>(t,r)=>c(r,t,e,!0))))),o&&o.signatures&&se(s,o.signatures),s}})),Vo=de("mod",["typed","config","round","matrix","equalScalar","zeros","DenseMatrix","concat"],(e=>{let{typed:t,config:r,round:n,matrix:i,equalScalar:o,zeros:a,DenseMatrix:s,concat:u}=e;const c=jo({typed:t,config:r,round:n,matrix:i,equalScalar:o,zeros:a,DenseMatrix:s}),l=Uo({typed:t,equalScalar:o}),f=Lo({typed:t}),p=$o({typed:t,equalScalar:o}),m=wo({typed:t,equalScalar:o}),d=No({typed:t,DenseMatrix:s});return t("mod",{"number, number":function(e,t){return 0===t?e:e-t*c(e/t)},"BigNumber, BigNumber":function(e,t){return t.isZero()?e:e.sub(t.mul(c(e.div(t))))},"bigint, bigint":function(e,t){if(0n===t)return e;if(e<0){const r=e%t;return 0n===r?r:r+t}return e%t},"Fraction, Fraction":function(e,t){return t.equals(0)?e:e.sub(t.mul(c(e.div(t))))}},Zo({typed:t,matrix:i,concat:u})({SS:p,DS:f,SD:l,Ss:m,sS:d}))})),Wo=de("matAlgo01xDSid",["typed"],(e=>{let{typed:t}=e;return function(e,r,n,i){const o=e._data,a=e._size,s=e._datatype||e.getDataType(),u=r._values,c=r._index,l=r._ptr,f=r._size,p=r._datatype||void 0===r._data?r._datatype:r.getDataType();if(a.length!==f.length)throw new an(a.length,f.length);if(a[0]!==f[0]||a[1]!==f[1])throw new RangeError("Dimension mismatch. Matrix A ("+a+") must match Matrix B ("+f+")");if(!u)throw new Error("Cannot perform operation on Dense Matrix and Pattern Sparse Matrix");const m=a[0],d=a[1],h="string"==typeof s&&"mixed"!==s&&s===p?s:void 0,g=h?t.find(n,[h,h]):n;let y,x;const b=[];for(y=0;y<m;y++)b[y]=[];const v=[],w=[];for(x=0;x<d;x++){const e=x+1;for(let t=l[x],r=l[x+1],n=t;n<r;n++)y=c[n],v[y]=i?g(u[n],o[y][x]):g(o[y][x],u[n]),w[y]=e;for(y=0;y<m;y++)w[y]===e?b[y][x]=v[y]:b[y][x]=o[y][x]}return e.createDenseMatrix({data:b,size:[m,d],datatype:s===e._datatype&&p===r._datatype?h:void 0})}})),Yo=de("matAlgo04xSidSid",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i){const o=e._values,a=e._index,s=e._ptr,u=e._size,c=e._datatype||void 0===e._data?e._datatype:e.getDataType(),l=n._values,f=n._index,p=n._ptr,m=n._size,d=n._datatype||void 0===n._data?n._datatype:n.getDataType();if(u.length!==m.length)throw new an(u.length,m.length);if(u[0]!==m[0]||u[1]!==m[1])throw new RangeError("Dimension mismatch. Matrix A ("+u+") must match Matrix B ("+m+")");const h=u[0],g=u[1];let y,x=r,b=0,v=i;"string"==typeof c&&c===d&&"mixed"!==c&&(y=c,x=t.find(r,[y,y]),b=t.convert(0,y),v=t.find(i,[y,y]));const w=o&&l?[]:void 0,N=[],E=[],A=o&&l?[]:void 0,S=o&&l?[]:void 0,M=[],C=[];let T,D,F,B,O;for(D=0;D<g;D++){E[D]=N.length;const e=D+1;for(B=s[D],O=s[D+1],F=B;F<O;F++)T=a[F],N.push(T),M[T]=e,A&&(A[T]=o[F]);for(B=p[D],O=p[D+1],F=B;F<O;F++)if(T=f[F],M[T]===e){if(A){const e=v(A[T],l[F]);x(e,b)?M[T]=null:A[T]=e}}else N.push(T),C[T]=e,S&&(S[T]=l[F]);if(A&&S)for(F=E[D];F<N.length;)T=N[F],M[T]===e?(w[F]=A[T],F++):C[T]===e?(w[F]=S[T],F++):N.splice(F,1)}return E[g]=N.length,e.createSparseMatrix({values:w,index:N,ptr:E,size:[h,g],datatype:c===e._datatype&&d===n._datatype?y:void 0})}})),Jo=de("matAlgo10xSids",["typed","DenseMatrix"],(e=>{let{typed:t,DenseMatrix:r}=e;return function(e,n,i,o){const a=e._values,s=e._index,u=e._ptr,c=e._size,l=e._datatype;if(!a)throw new Error("Cannot perform operation on Pattern Sparse Matrix and Scalar value");const f=c[0],p=c[1];let m,d=i;"string"==typeof l&&(m=l,n=t.convert(n,m),d=t.find(i,[m,m]));const h=[],g=[],y=[];for(let e=0;e<p;e++){const t=e+1;for(let r=u[e],n=u[e+1],i=r;i<n;i++){const e=s[i];g[e]=a[i],y[e]=t}for(let r=0;r<f;r++)0===e&&(h[r]=[]),y[r]===t?h[r][e]=o?d(n,g[r]):d(g[r],n):h[r][e]=n}return new r({data:h,size:[f,p],datatype:m})}}));function Xo(e,t,r,n){if(!(this instanceof Xo))throw new SyntaxError("Constructor must be called with the new operator");this.fn=e,this.count=t,this.min=r,this.max=n,this.message="Wrong number of arguments in function "+e+" ("+t+" provided, "+r+(null!=n?"-"+n:"")+" expected)",this.stack=(new Error).stack}Xo.prototype=new Error,Xo.prototype.constructor=Error,Xo.prototype.name="ArgumentsError",Xo.prototype.isArgumentsError=!0;const Qo="number | BigNumber | Fraction | Matrix | Array",Ko=`${Qo}, ${Qo}, ...${Qo}`;function ea(e){return!e.some((e=>Array.isArray(e)))}const ta=de("gcd",["typed","config","round","matrix","equalScalar","zeros","BigNumber","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,config:n,round:i,equalScalar:o,zeros:a,BigNumber:s,DenseMatrix:u,concat:c}=e;const l=Vo({typed:t,config:n,round:i,matrix:r,equalScalar:o,zeros:a,DenseMatrix:u,concat:c}),f=Wo({typed:t}),p=Yo({typed:t,equalScalar:o}),m=Jo({typed:t,DenseMatrix:u});return t("gcd",{"number, number":function(e,t){if(!ye(e)||!ye(t))throw new Error("Parameters in function gcd must be integer numbers");let r;for(;0!==t;)r=l(e,t),e=t,t=r;return e<0?-e:e},"BigNumber, BigNumber":function(e,t){if(!e.isInt()||!t.isInt())throw new Error("Parameters in function gcd must be integer numbers");const r=new s(0);for(;!t.isZero();){const r=l(e,t);e=t,t=r}return e.lt(r)?e.neg():e},"Fraction, Fraction":(e,t)=>e.gcd(t)},Zo({typed:t,matrix:r,concat:c})({SS:p,DS:f,Ss:m}),{[Ko]:t.referToSelf((e=>(t,r,n)=>{let i=e(t,r);for(let t=0;t<n.length;t++)i=e(i,n[t]);return i})),Array:t.referToSelf((e=>t=>{if(1===t.length&&Array.isArray(t[0])&&ea(t[0]))return e(...t[0]);if(ea(t))return e(...t);throw new Xo("gcd() supports only 1d matrices!")})),Matrix:t.referToSelf((e=>t=>e(t.toArray())))})})),ra=de("matAlgo06xS0S0",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i){const o=e._values,a=e._size,s=e._datatype||void 0===e._data?e._datatype:e.getDataType(),u=n._values,c=n._size,l=n._datatype||void 0===n._data?n._datatype:n.getDataType();if(a.length!==c.length)throw new an(a.length,c.length);if(a[0]!==c[0]||a[1]!==c[1])throw new RangeError("Dimension mismatch. Matrix A ("+a+") must match Matrix B ("+c+")");const f=a[0],p=a[1];let m,d=r,h=0,g=i;"string"==typeof s&&s===l&&"mixed"!==s&&(m=s,d=t.find(r,[m,m]),h=t.convert(0,m),g=t.find(i,[m,m]));const y=o&&u?[]:void 0,x=[],b=[],v=y?[]:void 0,w=[],N=[];for(let t=0;t<p;t++){b[t]=x.length;const r=t+1;if(Wn(e,t,w,v,N,r,x,g),Wn(n,t,w,v,N,r,x,g),v){let e=b[t];for(;e<x.length;){const t=x[e];if(N[t]===r){const r=v[t];d(r,h)?x.splice(e,1):(y.push(r),e++)}else x.splice(e,1)}}else{let e=b[t];for(;e<x.length;)N[x[e]]!==r?x.splice(e,1):e++}}return b[p]=x.length,e.createSparseMatrix({values:y,index:x,ptr:b,size:[f,p],datatype:s===e._datatype&&l===n._datatype?m:void 0})}})),na=de("lcm",["typed","matrix","equalScalar","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,concat:i}=e;const o=Uo({typed:t,equalScalar:n}),a=ra({typed:t,equalScalar:n}),s=wo({typed:t,equalScalar:n}),u=Zo({typed:t,matrix:r,concat:i}),c="number | BigNumber | Fraction | Matrix | Array",l={};return l[`${c}, ${c}, ...${c}`]=t.referToSelf((e=>(t,r,n)=>{let i=e(t,r);for(let t=0;t<n.length;t++)i=e(i,n[t]);return i})),t("lcm",{"number, number":Xi,"BigNumber, BigNumber":function(e,t){if(!e.isInt()||!t.isInt())throw new Error("Parameters in function lcm must be integer numbers");if(e.isZero())return e;if(t.isZero())return t;const r=e.times(t);for(;!t.isZero();){const r=t;t=e.mod(r),e=r}return r.div(e).abs()},"Fraction, Fraction":(e,t)=>e.lcm(t)},u({SS:a,DS:o,Ss:s}),l)})),ia="log10",oa=de(ia,["typed","config","Complex"],(e=>{let{typed:t,config:r,Complex:n}=e;return t(ia,{number:function(e){return e>=0||r.predictable?Qi(e):new n(e,0).log().div(Math.LN10)},Complex:function(e){return new n(e).log().div(Math.LN10)},BigNumber:function(e){return!e.isNegative()||r.predictable?e.log():new n(e.toNumber(),0).log().div(Math.LN10)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),aa="log2",sa=de(aa,["typed","config","Complex"],(e=>{let{typed:t,config:r,Complex:n}=e;return t(aa,{number:function(e){return e>=0||r.predictable?Ki(e):i(new n(e,0))},Complex:i,BigNumber:function(e){return!e.isNegative()||r.predictable?e.log(2):i(new n(e.toNumber(),0))},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))});function i(e){const t=Math.sqrt(e.re*e.re+e.im*e.im);return new n(Math.log2?Math.log2(t):Math.log(t)/Math.LN2,Math.atan2(e.im,e.re)/Math.LN2)}})),ua=de("multiplyScalar",["typed"],(e=>{let{typed:t}=e;return t("multiplyScalar",{"number, number":Hi,"Complex, Complex":function(e,t){return e.mul(t)},"BigNumber, BigNumber":function(e,t){return e.times(t)},"bigint, bigint":function(e,t){return e*t},"Fraction, Fraction":function(e,t){return e.mul(t)},"number | Fraction | BigNumber | Complex, Unit":(e,t)=>t.multiply(e),"Unit, number | Fraction | BigNumber | Complex | Unit":(e,t)=>e.multiply(t)})})),ca="multiply",la=de(ca,["typed","matrix","addScalar","multiplyScalar","equalScalar","dot"],(e=>{let{typed:t,matrix:r,addScalar:n,multiplyScalar:i,equalScalar:o,dot:a}=e;const s=wo({typed:t,equalScalar:o}),u=Eo({typed:t});function c(e,t){switch(e.length){case 1:switch(t.length){case 1:if(e[0]!==t[0])throw new RangeError("Dimension mismatch in multiplication. Vectors must have the same length");break;case 2:if(e[0]!==t[0])throw new RangeError("Dimension mismatch in multiplication. Vector length ("+e[0]+") must match Matrix rows ("+t[0]+")");break;default:throw new Error("Can only multiply a 1 or 2 dimensional matrix (Matrix B has "+t.length+" dimensions)")}break;case 2:switch(t.length){case 1:if(e[1]!==t[0])throw new RangeError("Dimension mismatch in multiplication. Matrix columns ("+e[1]+") must match Vector length ("+t[0]+")");break;case 2:if(e[1]!==t[0])throw new RangeError("Dimension mismatch in multiplication. Matrix A columns ("+e[1]+") must match Matrix B rows ("+t[0]+")");break;default:throw new Error("Can only multiply a 1 or 2 dimensional matrix (Matrix B has "+t.length+" dimensions)")}break;default:throw new Error("Can only multiply a 1 or 2 dimensional matrix (Matrix A has "+e.length+" dimensions)")}}const l=t("_multiplyMatrixVector",{"DenseMatrix, any":function(e,r){const o=e._data,a=e._size,s=e._datatype||e.getDataType(),u=r._data,c=r._datatype||r.getDataType(),l=a[0],f=a[1];let p,m=n,d=i;s&&c&&s===c&&"string"==typeof s&&"mixed"!==s&&(p=s,m=t.find(n,[p,p]),d=t.find(i,[p,p]));const h=[];for(let e=0;e<l;e++){const t=o[e];let r=d(t[0],u[0]);for(let e=1;e<f;e++)r=m(r,d(t[e],u[e]));h[e]=r}return e.createDenseMatrix({data:h,size:[l],datatype:s===e._datatype&&c===r._datatype?p:void 0})},"SparseMatrix, any":function(e,r){const a=e._values,s=e._index,u=e._ptr,c=e._datatype||void 0===e._data?e._datatype:e.getDataType();if(!a)throw new Error("Cannot multiply Pattern only Matrix times Dense Matrix");const l=r._data,f=r._datatype||r.getDataType(),p=e._size[0],m=r._size[0],d=[],h=[],g=[];let y,x=n,b=i,v=o,w=0;c&&f&&c===f&&"string"==typeof c&&"mixed"!==c&&(y=c,x=t.find(n,[y,y]),b=t.find(i,[y,y]),v=t.find(o,[y,y]),w=t.convert(0,y));const N=[],E=[];g[0]=0;for(let e=0;e<m;e++){const t=l[e];if(!v(t,w))for(let r=u[e],n=u[e+1],i=r;i<n;i++){const e=s[i];E[e]?N[e]=x(N[e],b(t,a[i])):(E[e]=!0,h.push(e),N[e]=b(t,a[i]))}}for(let e=h.length,t=0;t<e;t++){const e=h[t];d[t]=N[e]}return g[1]=h.length,e.createSparseMatrix({values:d,index:h,ptr:g,size:[p,1],datatype:c===e._datatype&&f===r._datatype?y:void 0})}}),f=t("_multiplyMatrixMatrix",{"DenseMatrix, DenseMatrix":function(e,r){const o=e._data,a=e._size,s=e._datatype||e.getDataType(),u=r._data,c=r._size,l=r._datatype||r.getDataType(),f=a[0],p=a[1],m=c[1];let d,h=n,g=i;s&&l&&s===l&&"string"==typeof s&&"mixed"!==s&&"mixed"!==s&&(d=s,h=t.find(n,[d,d]),g=t.find(i,[d,d]));const y=[];for(let e=0;e<f;e++){const t=o[e];y[e]=[];for(let r=0;r<m;r++){let n=g(t[0],u[0][r]);for(let e=1;e<p;e++)n=h(n,g(t[e],u[e][r]));y[e][r]=n}}return e.createDenseMatrix({data:y,size:[f,m],datatype:s===e._datatype&&l===r._datatype?d:void 0})},"DenseMatrix, SparseMatrix":function(e,r){const a=e._data,s=e._size,u=e._datatype||e.getDataType(),c=r._values,l=r._index,f=r._ptr,p=r._size,m=r._datatype||void 0===r._data?r._datatype:r.getDataType();if(!c)throw new Error("Cannot multiply Dense Matrix times Pattern only Matrix");const d=s[0],h=p[1];let g,y=n,x=i,b=o,v=0;u&&m&&u===m&&"string"==typeof u&&"mixed"!==u&&(g=u,y=t.find(n,[g,g]),x=t.find(i,[g,g]),b=t.find(o,[g,g]),v=t.convert(0,g));const w=[],N=[],E=[],A=r.createSparseMatrix({values:w,index:N,ptr:E,size:[d,h],datatype:u===e._datatype&&m===r._datatype?g:void 0});for(let e=0;e<h;e++){E[e]=N.length;const t=f[e],r=f[e+1];if(r>t){let e=0;for(let n=0;n<d;n++){const i=n+1;let o;for(let s=t;s<r;s++){const t=l[s];e!==i?(o=x(a[n][t],c[s]),e=i):o=y(o,x(a[n][t],c[s]))}e!==i||b(o,v)||(N.push(n),w.push(o))}}}return E[h]=N.length,A},"SparseMatrix, DenseMatrix":function(e,r){const a=e._values,s=e._index,u=e._ptr,c=e._datatype||void 0===e._data?e._datatype:e.getDataType();if(!a)throw new Error("Cannot multiply Pattern only Matrix times Dense Matrix");const l=r._data,f=r._datatype||r.getDataType(),p=e._size[0],m=r._size[0],d=r._size[1];let h,g=n,y=i,x=o,b=0;c&&f&&c===f&&"string"==typeof c&&"mixed"!==c&&(h=c,g=t.find(n,[h,h]),y=t.find(i,[h,h]),x=t.find(o,[h,h]),b=t.convert(0,h));const v=[],w=[],N=[],E=e.createSparseMatrix({values:v,index:w,ptr:N,size:[p,d],datatype:c===e._datatype&&f===r._datatype?h:void 0}),A=[],S=[];for(let e=0;e<d;e++){N[e]=w.length;const t=e+1;for(let r=0;r<m;r++){const n=l[r][e];if(!x(n,b))for(let e=u[r],i=u[r+1],o=e;o<i;o++){const e=s[o];S[e]!==t?(S[e]=t,w.push(e),A[e]=y(n,a[o])):A[e]=g(A[e],y(n,a[o]))}}for(let t=N[e],r=w.length,n=t;n<r;n++){const e=w[n];v[n]=A[e]}}return N[d]=w.length,E},"SparseMatrix, SparseMatrix":function(e,r){const o=e._values,a=e._index,s=e._ptr,u=e._datatype||void 0===e._data?e._datatype:e.getDataType(),c=r._values,l=r._index,f=r._ptr,p=r._datatype||void 0===r._data?r._datatype:r.getDataType(),m=e._size[0],d=r._size[1],h=o&&c;let g,y=n,x=i;u&&p&&u===p&&"string"==typeof u&&"mixed"!==u&&(g=u,y=t.find(n,[g,g]),x=t.find(i,[g,g]));const b=h?[]:void 0,v=[],w=[],N=e.createSparseMatrix({values:b,index:v,ptr:w,size:[m,d],datatype:u===e._datatype&&p===r._datatype?g:void 0}),E=h?[]:void 0,A=[];let S,M,C,T,D,F,B,O;for(let e=0;e<d;e++){w[e]=v.length;const t=e+1;for(D=f[e],F=f[e+1],T=D;T<F;T++)if(O=l[T],h)for(M=s[O],C=s[O+1],S=M;S<C;S++)B=a[S],A[B]!==t?(A[B]=t,v.push(B),E[B]=x(c[T],o[S])):E[B]=y(E[B],x(c[T],o[S]));else for(M=s[O],C=s[O+1],S=M;S<C;S++)B=a[S],A[B]!==t&&(A[B]=t,v.push(B));if(h)for(let t=w[e],r=v.length,n=t;n<r;n++){const e=v[n];b[n]=E[e]}}return w[d]=v.length,N}});return t(ca,i,{"Array, Array":t.referTo("Matrix, Matrix",(e=>(t,n)=>{c(un(t),un(n));const i=e(r(t),r(n));return E(i)?i.valueOf():i})),"Matrix, Matrix":function(e,r){const o=e.size(),s=r.size();return c(o,s),1===o.length?1===s.length?function(e,t,r){if(0===r)throw new Error("Cannot multiply two empty vectors");return a(e,t)}(e,r,o[0]):function(e,r){if("dense"!==r.storage())throw new Error("Support for SparseMatrix not implemented");return function(e,r){const o=e._data,a=e._size,s=e._datatype||e.getDataType(),u=r._data,c=r._size,l=r._datatype||r.getDataType(),f=a[0],p=c[1];let m,d=n,h=i;s&&l&&s===l&&"string"==typeof s&&"mixed"!==s&&(m=s,d=t.find(n,[m,m]),h=t.find(i,[m,m]));const g=[];for(let e=0;e<p;e++){let t=h(o[0],u[0][e]);for(let r=1;r<f;r++)t=d(t,h(o[r],u[r][e]));g[e]=t}return e.createDenseMatrix({data:g,size:[p],datatype:s===e._datatype&&l===r._datatype?m:void 0})}(e,r)}(e,r):1===s.length?l(e,r):f(e,r)},"Matrix, Array":t.referTo("Matrix,Matrix",(e=>(t,n)=>e(t,r(n)))),"Array, Matrix":t.referToSelf((e=>(t,n)=>e(r(t,n.storage()),n))),"SparseMatrix, any":function(e,t){return s(e,t,i,!1)},"DenseMatrix, any":function(e,t){return u(e,t,i,!1)},"any, SparseMatrix":function(e,t){return s(t,e,i,!0)},"any, DenseMatrix":function(e,t){return u(t,e,i,!0)},"Array, any":function(e,t){return u(r(e),t,i,!1).valueOf()},"any, Array":function(e,t){return u(r(t),e,i,!0).valueOf()},"any, any":i,"any, any, ...any":t.referToSelf((e=>(t,r,n)=>{let i=e(t,r);for(let t=0;t<n.length;t++)i=e(i,n[t]);return i}))})})),fa="nthRoot",pa=de(fa,["typed","matrix","equalScalar","BigNumber","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,BigNumber:i,concat:o}=e;const a=Wo({typed:t}),s=Uo({typed:t,equalScalar:n}),u=ra({typed:t,equalScalar:n}),c=wo({typed:t,equalScalar:n}),l=Zo({typed:t,matrix:r,concat:o});function f(){throw new Error("Complex number not supported in function nthRoot. Use nthRoots instead.")}return t(fa,{number:eo,"number, number":eo,BigNumber:e=>p(e,new i(2)),"BigNumber, BigNumber":p,Complex:f,"Complex, number":f,Array:t.referTo("DenseMatrix,number",(e=>t=>e(r(t),2).valueOf())),DenseMatrix:t.referTo("DenseMatrix,number",(e=>t=>e(t,2))),SparseMatrix:t.referTo("SparseMatrix,number",(e=>t=>e(t,2))),"SparseMatrix, SparseMatrix":t.referToSelf((e=>(t,r)=>{if(1===r.density())return u(t,r,e);throw new Error("Root must be non-zero")})),"DenseMatrix, SparseMatrix":t.referToSelf((e=>(t,r)=>{if(1===r.density())return a(t,r,e,!1);throw new Error("Root must be non-zero")})),"Array, SparseMatrix":t.referTo("DenseMatrix,SparseMatrix",(e=>(t,n)=>e(r(t),n))),"number | BigNumber, SparseMatrix":t.referToSelf((e=>(t,r)=>{if(1===r.density())return c(r,t,e,!0);throw new Error("Root must be non-zero")}))},l({scalar:"number | BigNumber",SD:s,Ss:c,sS:!1}));function p(e,t){const r=i.precision,n=i.clone({precision:r+2}),o=new i(0),a=new n(1),s=t.isNegative();if(s&&(t=t.neg()),t.isZero())throw new Error("Root must be non-zero");if(e.isNegative()&&!t.abs().mod(2).equals(1))throw new Error("Root must be odd when a is negative.");if(e.isZero())return s?new n(1/0):0;if(!e.isFinite())return s?o:e;let u=e.abs().pow(a.div(t));return u=e.isNeg()?u.neg():u,new i((s?a.div(u):u).toPrecision(r))}})),ma="sign",da=de(ma,["typed","BigNumber","Fraction","complex"],(e=>{let{typed:t,BigNumber:r,complex:n,Fraction:i}=e;return t(ma,{number:to,Complex:function(e){return 0===e.im?n(to(e.re)):e.sign()},BigNumber:function(e){return new r(e.cmp(0))},bigint:function(e){return e>0n?1n:e<0n?-1n:0n},Fraction:function(e){return new i(e.s,1)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0))),Unit:t.referToSelf((e=>r=>{if(!r._isDerived()&&0!==r.units[0].unit.offset)throw new TypeError("sign is ambiguous for units with offset");return t.find(e,r.valueType())(r.value)}))})})),ha=de("sqrt",["config","typed","Complex"],(e=>{let{config:t,typed:r,Complex:n}=e;return r("sqrt",{number:i,Complex:function(e){return e.sqrt()},BigNumber:function(e){return!e.isNegative()||t.predictable?e.sqrt():i(e.toNumber())},Unit:function(e){return e.pow(.5)}});function i(e){return isNaN(e)?NaN:e>=0||t.predictable?Math.sqrt(e):new n(e,0).sqrt()}})),ga="square",ya=de(ga,["typed"],(e=>{let{typed:t}=e;return t(ga,{number:ro,Complex:function(e){return e.mul(e)},BigNumber:function(e){return e.times(e)},bigint:function(e){return e*e},Fraction:function(e){return e.mul(e)},Unit:function(e){return e.pow(2)}})})),xa="subtract",ba=de(xa,["typed","matrix","equalScalar","subtractScalar","unaryMinus","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,subtractScalar:i,unaryMinus:o,DenseMatrix:a,concat:s}=e;const u=Wo({typed:t}),c=Lo({typed:t}),l=$o({typed:t,equalScalar:n}),f=Jo({typed:t,DenseMatrix:a}),p=No({typed:t,DenseMatrix:a}),m=Zo({typed:t,matrix:r,concat:s});return t(xa,{"any, any":i},m({elop:i,SS:l,DS:u,SD:c,Ss:p,sS:f}))})),va="xgcd",wa=de(va,["typed","config","matrix","BigNumber"],(e=>{let{typed:t,config:r,matrix:n,BigNumber:i}=e;return t(va,{"number, number":function(e,t){const i=no(e,t);return"Array"===r.matrix?i:n(i)},"BigNumber, BigNumber":function(e,t){let o,a,s;const u=new i(0),c=new i(1);let l,f=u,p=c,m=c,d=u;if(!e.isInt()||!t.isInt())throw new Error("Parameters in function xgcd must be integer numbers");for(;!t.isZero();)a=e.div(t).floor(),s=e.mod(t),o=f,f=p.minus(a.times(f)),p=o,o=m,m=d.minus(a.times(m)),d=o,e=t,t=s;return l=e.lt(u)?[e.neg(),p.neg(),d.neg()]:[e,e.isZero()?0:p,d],"Array"===r.matrix?l:n(l)}})})),Na="invmod",Ea=de(Na,["typed","config","BigNumber","xgcd","equal","smaller","mod","add","isInteger"],(e=>{let{typed:t,config:r,BigNumber:n,xgcd:i,equal:o,smaller:a,mod:s,add:u,isInteger:c}=e;return t(Na,{"number, number":l,"BigNumber, BigNumber":l});function l(e,t){if(!c(e)||!c(t))throw new Error("Parameters in function invmod must be integer numbers");if(e=s(e,t),o(t,0))throw new Error("Divisor must be non zero");let r=i(e,t);r=r.valueOf();let[l,f]=r;return o(l,n(1))?(f=s(f,t),a(f,n(0))&&(f=u(f,t)),f):NaN}})),Aa=de("matAlgo09xS0Sf",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i){const o=e._values,a=e._index,s=e._ptr,u=e._size,c=e._datatype||void 0===e._data?e._datatype:e.getDataType(),l=n._values,f=n._index,p=n._ptr,m=n._size,d=n._datatype||void 0===n._data?n._datatype:n.getDataType();if(u.length!==m.length)throw new an(u.length,m.length);if(u[0]!==m[0]||u[1]!==m[1])throw new RangeError("Dimension mismatch. Matrix A ("+u+") must match Matrix B ("+m+")");const h=u[0],g=u[1];let y,x=r,b=0,v=i;"string"==typeof c&&c===d&&"mixed"!==c&&(y=c,x=t.find(r,[y,y]),b=t.convert(0,y),v=t.find(i,[y,y]));const w=o&&l?[]:void 0,N=[],E=[],A=w?[]:void 0,S=[];let M,C,T,D,F;for(C=0;C<g;C++){E[C]=N.length;const e=C+1;if(A)for(D=p[C],F=p[C+1],T=D;T<F;T++)M=f[T],S[M]=e,A[M]=l[T];for(D=s[C],F=s[C+1],T=D;T<F;T++)if(M=a[T],A){const t=S[M]===e?A[M]:b,r=v(o[T],t);x(r,b)||(N.push(M),w.push(r))}else N.push(M)}return E[g]=N.length,e.createSparseMatrix({values:w,index:N,ptr:E,size:[h,g],datatype:c===e._datatype&&d===n._datatype?y:void 0})}})),Sa="dotMultiply",Ma=de(Sa,["typed","matrix","equalScalar","multiplyScalar","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,multiplyScalar:i,concat:o}=e;const a=Uo({typed:t,equalScalar:n}),s=Aa({typed:t,equalScalar:n}),u=wo({typed:t,equalScalar:n}),c=Zo({typed:t,matrix:r,concat:o});return t(Sa,c({elop:i,SS:s,DS:a,Ss:u}))}));function Ca(e,t){if(e.isFinite()&&!e.isInteger()||t.isFinite()&&!t.isInteger())throw new Error("Integers expected in function bitAnd");const r=e.constructor;if(e.isNaN()||t.isNaN())return new r(NaN);if(e.isZero()||t.eq(-1)||e.eq(t))return e;if(t.isZero()||e.eq(-1))return t;if(!e.isFinite()||!t.isFinite()){if(!e.isFinite()&&!t.isFinite())return e.isNegative()===t.isNegative()?e:new r(0);if(!e.isFinite())return t.isNegative()?e:e.isNegative()?new r(0):t;if(!t.isFinite())return e.isNegative()?t:t.isNegative()?new r(0):e}return Fa(e,t,(function(e,t){return e&t}))}function Ta(e){if(e.isFinite()&&!e.isInteger())throw new Error("Integer expected in function bitNot");const t=e.constructor,r=t.precision;t.config({precision:1e9});const n=e.plus(new t(1));return n.s=-n.s||null,t.config({precision:r}),n}function Da(e,t){if(e.isFinite()&&!e.isInteger()||t.isFinite()&&!t.isInteger())throw new Error("Integers expected in function bitOr");const r=e.constructor;if(e.isNaN()||t.isNaN())return new r(NaN);const n=new r(-1);return e.isZero()||t.eq(n)||e.eq(t)?t:t.isZero()||e.eq(n)?e:e.isFinite()&&t.isFinite()?Fa(e,t,(function(e,t){return e|t})):!e.isFinite()&&!e.isNegative()&&t.isNegative()||e.isNegative()&&!t.isNegative()&&!t.isFinite()?n:e.isNegative()&&t.isNegative()?e.isFinite()?e:t:e.isFinite()?t:e}function Fa(e,t,r){const n=e.constructor;let i,o;const a=+(e.s<0),s=+(t.s<0);if(a){i=Ba(Ta(e));for(let e=0;e<i.length;++e)i[e]^=1}else i=Ba(e);if(s){o=Ba(Ta(t));for(let e=0;e<o.length;++e)o[e]^=1}else o=Ba(t);let u,c,l;i.length<=o.length?(u=i,c=o,l=a):(u=o,c=i,l=s);let f=u.length,p=c.length;const m=1^r(a,s);let d=new n(1^m),h=new n(1);const g=new n(2),y=n.precision;for(n.config({precision:1e9});f>0;)r(u[--f],c[--p])===m&&(d=d.plus(h)),h=h.times(g);for(;p>0;)r(l,c[--p])===m&&(d=d.plus(h)),h=h.times(g);return n.config({precision:y}),0===m&&(d.s=-d.s),d}function Ba(e){const t=e.d;let r=t[0]+"";for(let e=1;e<t.length;++e){let n=t[e]+"";for(let e=7-n.length;e--;)n="0"+n;r+=n}let n=r.length;for(;"0"===r.charAt(n);)n--;let i=e.e,o=r.slice(0,n+1||1);const a=o.length;if(i>0)if(++i>a)for(i-=a;i--;)o+="0";else i<a&&(o=o.slice(0,i)+"."+o.slice(i));const s=[0];for(let e=0;e<o.length;){let t=s.length;for(;t--;)s[t]*=10;s[0]+=parseInt(o.charAt(e++));for(let e=0;e<s.length;++e)s[e]>1&&(null!==s[e+1]&&void 0!==s[e+1]||(s[e+1]=0),s[e+1]+=s[e]>>1,s[e]&=1)}return s.reverse()}function Oa(e,t){if(e.isFinite()&&!e.isInteger()||t.isFinite()&&!t.isInteger())throw new Error("Integers expected in function bitXor");const r=e.constructor;if(e.isNaN()||t.isNaN())return new r(NaN);if(e.isZero())return t;if(t.isZero())return e;if(e.eq(t))return new r(0);const n=new r(-1);return e.eq(n)?Ta(t):t.eq(n)?Ta(e):e.isFinite()&&t.isFinite()?Fa(e,t,(function(e,t){return e^t})):e.isFinite()||t.isFinite()?new r(e.isNegative()===t.isNegative()?1/0:-1/0):n}function _a(e,t){if(e.isFinite()&&!e.isInteger()||t.isFinite()&&!t.isInteger())throw new Error("Integers expected in function leftShift");const r=e.constructor;return e.isNaN()||t.isNaN()||t.isNegative()&&!t.isZero()?new r(NaN):e.isZero()||t.isZero()?e:e.isFinite()||t.isFinite()?t.lt(55)?e.times(Math.pow(2,t.toNumber())+""):e.times(new r(2).pow(t)):new r(NaN)}function za(e,t){if(e.isFinite()&&!e.isInteger()||t.isFinite()&&!t.isInteger())throw new Error("Integers expected in function rightArithShift");const r=e.constructor;return e.isNaN()||t.isNaN()||t.isNegative()&&!t.isZero()?new r(NaN):e.isZero()||t.isZero()?e:t.isFinite()?t.lt(55)?e.div(Math.pow(2,t.toNumber())+"").floor():e.div(new r(2).pow(t)).floor():e.isNegative()?new r(-1):e.isFinite()?new r(0):new r(NaN)}const Ia="number, number";function ka(e,t){if(!ye(e)||!ye(t))throw new Error("Integers expected in function bitAnd");return e&t}function qa(e){if(!ye(e))throw new Error("Integer expected in function bitNot");return~e}function Ra(e,t){if(!ye(e)||!ye(t))throw new Error("Integers expected in function bitOr");return e|t}function Pa(e,t){if(!ye(e)||!ye(t))throw new Error("Integers expected in function bitXor");return e^t}function ja(e,t){if(!ye(e)||!ye(t))throw new Error("Integers expected in function leftShift");return e<<t}function Ua(e,t){if(!ye(e)||!ye(t))throw new Error("Integers expected in function rightArithShift");return e>>t}function La(e,t){if(!ye(e)||!ye(t))throw new Error("Integers expected in function rightLogShift");return e>>>t}ka.signature=Ia,qa.signature="number",Ra.signature=Ia,Pa.signature=Ia,ja.signature=Ia,Ua.signature=Ia,La.signature=Ia;const $a="bitAnd",Ha=de($a,["typed","matrix","equalScalar","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,concat:i}=e;const o=Uo({typed:t,equalScalar:n}),a=ra({typed:t,equalScalar:n}),s=wo({typed:t,equalScalar:n}),u=Zo({typed:t,matrix:r,concat:i});return t($a,{"number, number":ka,"BigNumber, BigNumber":Ca,"bigint, bigint":(e,t)=>e&t},u({SS:a,DS:o,Ss:s}))})),Ga="bitNot",Za=de(Ga,["typed"],(e=>{let{typed:t}=e;return t(Ga,{number:qa,BigNumber:Ta,bigint:e=>~e,"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Va="bitOr",Wa=de(Va,["typed","matrix","equalScalar","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o}=e;const a=Wo({typed:t}),s=Yo({typed:t,equalScalar:n}),u=Jo({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:r,concat:o});return t(Va,{"number, number":Ra,"BigNumber, BigNumber":Da,"bigint, bigint":(e,t)=>e|t},c({SS:s,DS:a,Ss:u}))})),Ya=de("matAlgo07xSSf",["typed","DenseMatrix"],(e=>{let{typed:t,DenseMatrix:r}=e;return function(e,i,o){const a=e._size,s=e._datatype||void 0===e._data?e._datatype:e.getDataType(),u=i._size,c=i._datatype||void 0===i._data?i._datatype:i.getDataType();if(a.length!==u.length)throw new an(a.length,u.length);if(a[0]!==u[0]||a[1]!==u[1])throw new RangeError("Dimension mismatch. Matrix A ("+a+") must match Matrix B ("+u+")");const l=a[0],f=a[1];let p,m,d,h=0,g=o;"string"==typeof s&&s===c&&"mixed"!==s&&(p=s,h=t.convert(0,p),g=t.find(o,[p,p]));const y=[];for(m=0;m<l;m++)y[m]=[];const x=[],b=[],v=[],w=[];for(d=0;d<f;d++){const t=d+1;for(n(e,d,v,x,t),n(i,d,w,b,t),m=0;m<l;m++){const e=v[m]===t?x[m]:h,r=w[m]===t?b[m]:h;y[m][d]=g(e,r)}}return new r({data:y,size:[l,f],datatype:s===e._datatype&&c===i._datatype?p:void 0})};function n(e,t,r,n,i){const o=e._values,a=e._index,s=e._ptr;for(let e=s[t],u=s[t+1];e<u;e++){const t=a[e];r[t]=i,n[t]=o[e]}}})),Ja="bitXor",Xa=de(Ja,["typed","matrix","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,DenseMatrix:n,concat:i}=e;const o=Lo({typed:t}),a=Ya({typed:t,DenseMatrix:n}),s=No({typed:t,DenseMatrix:n}),u=Zo({typed:t,matrix:r,concat:i});return t(Ja,{"number, number":Pa,"BigNumber, BigNumber":Oa,"bigint, bigint":(e,t)=>e^t},u({SS:a,DS:o,Ss:s}))})),Qa=de("arg",["typed"],(e=>{let{typed:t}=e;return t("arg",{number:function(e){return Math.atan2(0,e)},BigNumber:function(e){return e.constructor.atan2(0,e)},Complex:function(e){return e.arg()},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Ka="conj",es=de(Ka,["typed"],(e=>{let{typed:t}=e;return t(Ka,{"number | BigNumber | Fraction":e=>e,Complex:e=>e.conjugate(),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),ts=de("im",["typed"],(e=>{let{typed:t}=e;return t("im",{number:()=>0,"BigNumber | Fraction":e=>e.mul(0),Complex:e=>e.im,"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),rs=de("re",["typed"],(e=>{let{typed:t}=e;return t("re",{"number | BigNumber | Fraction":e=>e,Complex:e=>e.re,"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),ns="number, number";function is(e){return!e}function os(e,t){return!(!e&&!t)}function as(e,t){return!!e!=!!t}function ss(e,t){return!(!e||!t)}is.signature="number",os.signature=ns,as.signature=ns,ss.signature=ns;const us=de("not",["typed"],(e=>{let{typed:t}=e;return t("not",{"null | undefined":()=>!0,number:is,Complex:function(e){return 0===e.re&&0===e.im},BigNumber:function(e){return e.isZero()||e.isNaN()},bigint:e=>!e,Unit:t.referToSelf((e=>r=>t.find(e,r.valueType())(r.value))),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),cs=de("or",["typed","matrix","equalScalar","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o}=e;const a=Lo({typed:t}),s=$o({typed:t,equalScalar:n}),u=No({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:r,concat:o});return t("or",{"number, number":os,"Complex, Complex":function(e,t){return 0!==e.re||0!==e.im||0!==t.re||0!==t.im},"BigNumber, BigNumber":function(e,t){return!e.isZero()&&!e.isNaN()||!t.isZero()&&!t.isNaN()},"bigint, bigint":os,"Unit, Unit":t.referToSelf((e=>(t,r)=>e(t.value||0,r.value||0)))},c({SS:s,DS:a,Ss:u}))})),ls=de("xor",["typed","matrix","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,DenseMatrix:n,concat:i}=e;const o=Lo({typed:t}),a=Ya({typed:t,DenseMatrix:n}),s=No({typed:t,DenseMatrix:n}),u=Zo({typed:t,matrix:r,concat:i});return t("xor",{"number, number":as,"Complex, Complex":function(e,t){return(0!==e.re||0!==e.im)!=(0!==t.re||0!==t.im)},"bigint, bigint":as,"BigNumber, BigNumber":function(e,t){return(!e.isZero()&&!e.isNaN())!=(!t.isZero()&&!t.isNaN())},"Unit, Unit":t.referToSelf((e=>(t,r)=>e(t.value||0,r.value||0)))},u({SS:a,DS:o,Ss:s}))})),fs="concat",ps=de(fs,["typed","matrix","isInteger"],(e=>{let{typed:t,matrix:r,isInteger:n}=e;return t(fs,{"...Array | Matrix | number | BigNumber":function(e){let t;const i=e.length;let o,a=-1,s=!1;const u=[];for(t=0;t<i;t++){const r=e[t];if(E(r)&&(s=!0),h(r)||g(r)){if(t!==i-1)throw new Error("Dimension must be specified as last argument");if(o=a,a=r.valueOf(),!n(a))throw new TypeError("Integer number expected for dimension");if(a<0||t>0&&a>o)throw new sn(a,o+1)}else{const e=ae(r).valueOf(),n=un(e);if(u[t]=e,o=a,a=n.length-1,t>0&&a!==o)throw new an(o+1,a+1)}}if(0===u.length)throw new SyntaxError("At least one matrix expected");let c=u.shift();for(;u.length;)c=_n(c,u.shift(),a);return s?r(c):c},"...string":function(e){return e.join("")}})})),ms="column",ds=de(ms,["typed","Index","matrix","range"],(e=>{let{typed:t,Index:r,matrix:n,range:i}=e;return t(ms,{"Matrix, number":o,"Array, number":function(e,t){return o(n(ae(e)),t).valueOf()}});function o(e,t){if(2!==e.size().length)throw new Error("Only two dimensional matrix is supported");pn(t,e.size()[1]);const o=i(0,e.size()[0]),a=new r(o,t),s=e.subset(a);return E(s)?s:n([[s]])}})),hs="count",gs=de(hs,["typed","size","prod"],(e=>{let{typed:t,size:r,prod:n}=e;return t(hs,{string:function(e){return e.length},"Matrix | Array":function(e){return n(r(e))}})})),ys="cross",xs=de(ys,["typed","matrix","subtract","multiply"],(e=>{let{typed:t,matrix:r,subtract:n,multiply:i}=e;return t(ys,{"Matrix, Matrix":function(e,t){return r(o(e.toArray(),t.toArray()))},"Matrix, Array":function(e,t){return r(o(e.toArray(),t))},"Array, Matrix":function(e,t){return r(o(e,t.toArray()))},"Array, Array":o});function o(e,t){const r=Math.max(un(e).length,un(t).length);e=bn(e),t=bn(t);const o=un(e),a=un(t);if(1!==o.length||1!==a.length||3!==o[0]||3!==a[0])throw new RangeError("Vectors with length 3 expected (Size A = ["+o.join(", ")+"], B = ["+a.join(", ")+"])");const s=[n(i(e[1],t[2]),i(e[2],t[1])),n(i(e[2],t[0]),i(e[0],t[2])),n(i(e[0],t[1]),i(e[1],t[0]))];return r>1?[s]:s}})),bs="diag",vs=de(bs,["typed","matrix","DenseMatrix","SparseMatrix"],(e=>{let{typed:t,matrix:r,DenseMatrix:n,SparseMatrix:i}=e;return t(bs,{Array:function(e){return o(e,0,un(e),null)},"Array, number":function(e,t){return o(e,t,un(e),null)},"Array, BigNumber":function(e,t){return o(e,t.toNumber(),un(e),null)},"Array, string":function(e,t){return o(e,0,un(e),t)},"Array, number, string":function(e,t,r){return o(e,t,un(e),r)},"Array, BigNumber, string":function(e,t,r){return o(e,t.toNumber(),un(e),r)},Matrix:function(e){return o(e,0,e.size(),e.storage())},"Matrix, number":function(e,t){return o(e,t,e.size(),e.storage())},"Matrix, BigNumber":function(e,t){return o(e,t.toNumber(),e.size(),e.storage())},"Matrix, string":function(e,t){return o(e,0,e.size(),t)},"Matrix, number, string":function(e,t,r){return o(e,t,e.size(),r)},"Matrix, BigNumber, string":function(e,t,r){return o(e,t.toNumber(),e.size(),r)}});function o(e,t,o,a){if(!ye(t))throw new TypeError("Second parameter in function diag must be an integer");const s=t>0?t:0,u=t<0?-t:0;switch(o.length){case 1:return function(e,t,r,o,a,s){const u=[o+a,o+s];if(r&&"sparse"!==r&&"dense"!==r)throw new TypeError(`Unknown matrix type ${r}"`);const c="sparse"===r?i.diagonal(u,e,t):n.diagonal(u,e,t);return null!==r?c:c.valueOf()}(e,t,a,o[0],u,s);case 2:return function(e,t,n,i,o,a){if(E(e)){const i=e.diagonal(t);return null!==n?n!==i.storage()?r(i,n):i:i.valueOf()}const s=Math.min(i[0]-o,i[1]-a),u=[];for(let t=0;t<s;t++)u[t]=e[t+o][t+a];return null!==n?r(u):u}(e,t,a,o,u,s)}throw new RangeError("Matrix for function diag must be 2 dimensional")}})),ws=de("filter",["typed"],(e=>{let{typed:t}=e;return t("filter",{"Array, function":Ns,"Matrix, function":function(e,t){return e.create(Ns(e.valueOf(),t),e.datatype())},"Array, RegExp":Cn,"Matrix, RegExp":function(e,t){return e.create(Cn(e.valueOf(),t),e.datatype())}})}));function Ns(e,t){return Mn(e,(function(e,r,n){return Rn(t,e,[r],n,"filter")}))}const Es="flatten",As=de(Es,["typed"],(e=>{let{typed:t}=e;return t(Es,{Array:function(e){return En(e)},Matrix:function(e){return e.create(En(e.toArray()),e.datatype())}})})),Ss="forEach",Ms=de(Ss,["typed"],(e=>{let{typed:t}=e;return t(Ss,{"Array, function":Cs,"Matrix, function":function(e,t){e.forEach(t)}})}));function Cs(e,t){const r=function(n,i){if(!Array.isArray(n))return Rn(t,n,i,e,"forEach");Sn(n,(function(e,t){r(e,i.concat(t))}))};r(e,[])}const Ts="getMatrixDataType",Ds=de(Ts,["typed"],(e=>{let{typed:t}=e;return t(Ts,{Array:function(e){return Bn(e,oe)},Matrix:function(e){return e.getDataType()}})})),Fs="identity",Bs=de(Fs,["typed","config","matrix","BigNumber","DenseMatrix","SparseMatrix"],(e=>{let{typed:t,config:r,matrix:n,BigNumber:i,DenseMatrix:o,SparseMatrix:a}=e;return t(Fs,{"":function(){return"Matrix"===r.matrix?n([]):[]},string:function(e){return n(e)},"number | BigNumber":function(e){return u(e,e,"Matrix"===r.matrix?"dense":void 0)},"number | BigNumber, string":function(e,t){return u(e,e,t)},"number | BigNumber, number | BigNumber":function(e,t){return u(e,t,"Matrix"===r.matrix?"dense":void 0)},"number | BigNumber, number | BigNumber, string":function(e,t,r){return u(e,t,r)},Array:function(e){return s(e)},"Array, string":function(e,t){return s(e,t)},Matrix:function(e){return s(e.valueOf(),e.storage())},"Matrix, string":function(e,t){return s(e.valueOf(),t)}});function s(e,t){switch(e.length){case 0:return t?n(t):[];case 1:return u(e[0],e[0],t);case 2:return u(e[0],e[1],t);default:throw new Error("Vector containing two values expected")}}function u(e,t,r){const n=g(e)||g(t)?i:null;if(g(e)&&(e=e.toNumber()),g(t)&&(t=t.toNumber()),!ye(e)||e<1)throw new Error("Parameters in function identity must be positive integers");if(!ye(t)||t<1)throw new Error("Parameters in function identity must be positive integers");const s=n?new i(1):1,u=n?new n(0):0,c=[e,t];if(r){if("sparse"===r)return a.diagonal(c,s,0,u);if("dense"===r)return o.diagonal(c,s,0,u);throw new TypeError(`Unknown matrix type "${r}"`)}const l=dn([],c,u),f=e<t?e:t;for(let e=0;e<f;e++)l[e][e]=s;return l}})),Os="kron",_s=de(Os,["typed","matrix","multiplyScalar"],(e=>{let{typed:t,matrix:r,multiplyScalar:n}=e;return t(Os,{"Matrix, Matrix":function(e,t){return r(i(e.toArray(),t.toArray()))},"Matrix, Array":function(e,t){return r(i(e.toArray(),t))},"Array, Matrix":function(e,t){return r(i(e,t.toArray()))},"Array, Array":i});function i(e,t){if(1===un(e).length&&(e=[e]),1===un(t).length&&(t=[t]),un(e).length>2||un(t).length>2)throw new RangeError("Vectors with dimensions greater then 2 are not supported expected (Size x = "+JSON.stringify(e.length)+", y = "+JSON.stringify(t.length)+")");const r=[];let i=[];return e.map((function(e){return t.map((function(t){return i=[],r.push(i),e.map((function(e){return t.map((function(t){return i.push(n(e,t))}))}))}))}))&&r}})),zs=de("map",["typed"],(e=>{let{typed:t}=e;return t("map",{"Array, function":Is,"Matrix, function":function(e,t){return e.map(t)},"Array|Matrix, Array|Matrix, ...Array|Matrix|function":(e,r,n)=>function(e,r){if("function"!=typeof r)throw new Error("Last argument must be a callback function");const n=e[0].isMatrix,i=zn(...e.map((e=>e.isMatrix?e.size():un(e)))),o=n?(e,t)=>e.get(t):qn,a=n?e.map((t=>t.isMatrix?t.create(kn(t.toArray(),i),t.datatype()):e[0].create(kn(t.valueOf(),i)))):e.map((e=>e.isMatrix?kn(e.toArray(),i):kn(e,i)));let s;if(t.isTypedFunction(r)){const e=i.map((()=>0)),n=a.map((t=>o(t,e))),u=function(e,r,n,i){return null!==t.resolve(e,[...r,n,...i])?2:null!==t.resolve(e,[...r,n])?1:(t.resolve(e,r),0)}(r,n,e,a);s=c(u)}else{const t=e.length,n=function(e,t){return e.length>t+1?2:e.length===t+1?1:0}(r,t);s=c(n)}const u=(e,t)=>s([e,...a.slice(1).map((e=>o(e,t)))],t);return n?a[0].map(u):Is(a[0],u);function c(e){switch(e){case 0:return e=>r(...e);case 1:return(e,t)=>r(...e,t);case 2:return(e,t)=>r(...e,t,...a)}}}([e,r,...n.slice(0,n.length-1)],n[n.length-1])})}));function Is(e,t){return ks(e,[],e,t)}function ks(e,t,r,n){return Array.isArray(e)?e.map((function(e,i){return ks(e,t.concat(i),r,n)})):Rn(n,e,t,r,"map")}const qs="diff",Rs=de(qs,["typed","matrix","subtract","number"],(e=>{let{typed:t,matrix:r,subtract:n,number:i}=e;return t(qs,{"Array | Matrix":function(e){return E(e)?r(a(e.toArray())):a(e)},"Array | Matrix, number":function(e,t){if(!ye(t))throw new RangeError("Dimension must be a whole number");return E(e)?r(o(e.toArray(),t)):o(e,t)},"Array, BigNumber":t.referTo("Array,number",(e=>(t,r)=>e(t,i(r)))),"Matrix, BigNumber":t.referTo("Matrix,number",(e=>(t,r)=>e(t,i(r))))});function o(e,t){if(E(e)&&(e=e.toArray()),!Array.isArray(e))throw RangeError("Array/Matrix does not have that many dimensions");if(t>0){const r=[];return e.forEach((e=>{r.push(o(e,t-1))})),r}if(0===t)return a(e);throw RangeError("Cannot have negative dimension")}function a(e){const t=[],r=e.length;for(let n=1;n<r;n++)t.push(s(e[n-1],e[n]));return t}function s(e,t){E(e)&&(e=e.toArray()),E(t)&&(t=t.toArray());const r=Array.isArray(e),i=Array.isArray(t);if(r&&i)return function(e,t){if(e.length!==t.length)throw RangeError("Not all sub-arrays have the same length");const r=[],n=e.length;for(let i=0;i<n;i++)r.push(s(e[i],t[i]));return r}(e,t);if(!r&&!i)return n(t,e);throw TypeError("Cannot calculate difference between 1 array and 1 non-array")}})),Ps=de("ones",["typed","config","matrix","BigNumber"],(e=>{let{typed:t,config:r,matrix:n,BigNumber:i}=e;return t("ones",{"":function(){return"Array"===r.matrix?o([]):o([],"default")},"...number | BigNumber | string":function(e){if("string"==typeof e[e.length-1]){const t=e.pop();return o(e,t)}return"Array"===r.matrix?o(e):o(e,"default")},Array:o,Matrix:function(e){const t=e.storage();return o(e.valueOf(),t)},"Array | Matrix, string":function(e,t){return o(e.valueOf(),t)}});function o(e,t){const r=function(e){let t=!1;return e.forEach((function(e,r,n){g(e)&&(t=!0,n[r]=e.toNumber())})),t}(e),o=r?new i(1):1;if(function(e){e.forEach((function(e){if("number"!=typeof e||!ye(e)||e<0)throw new Error("Parameters in function ones must be positive integers")}))}(e),t){const r=n(t);return e.length>0?r.resize(e,o):r}{const t=[];return e.length>0?dn(t,e,o):t}}}));function js(){throw new Error('No "bignumber" implementation available')}function Us(){throw new Error('No "fraction" implementation available')}function Ls(){throw new Error('No "matrix" implementation available')}const $s="range",Hs=de($s,["typed","config","?matrix","?bignumber","smaller","smallerEq","larger","largerEq","add","isPositive"],(e=>{let{typed:t,config:r,matrix:n,bignumber:i,smaller:o,smallerEq:a,larger:s,largerEq:u,add:c,isPositive:l}=e;return t($s,{string:p,"string, boolean":p,"number, number":function(e,t){return f(m(e,t,1,!1))},"number, number, number":function(e,t,r){return f(m(e,t,r,!1))},"number, number, boolean":function(e,t,r){return f(m(e,t,1,r))},"number, number, number, boolean":function(e,t,r,n){return f(m(e,t,r,n))},"BigNumber, BigNumber":function(e,t){return f(m(e,t,new(0,e.constructor)(1),!1))},"BigNumber, BigNumber, BigNumber":function(e,t,r){return f(m(e,t,r,!1))},"BigNumber, BigNumber, boolean":function(e,t,r){return f(m(e,t,new(0,e.constructor)(1),r))},"BigNumber, BigNumber, BigNumber, boolean":function(e,t,r,n){return f(m(e,t,r,n))},"Unit, Unit, Unit":function(e,t,r){return f(m(e,t,r,!1))},"Unit, Unit, Unit, boolean":function(e,t,r,n){return f(m(e,t,r,n))}});function f(e){return"Matrix"===r.matrix?n?n(e):Ls():e}function p(e,t){const n=function(e){const t=e.split(":").map((function(e){return Number(e)}));if(t.some((function(e){return isNaN(e)})))return null;switch(t.length){case 2:return{start:t[0],end:t[1],step:1};case 3:return{start:t[0],end:t[2],step:t[1]};default:return null}}(e);if(!n)throw new SyntaxError('String "'+e+'" is no valid range');return"BigNumber"===r.number?(void 0===i&&js(),f(m(i(n.start),i(n.end),i(n.step)))):f(m(n.start,n.end,n.step,t))}function m(e,t,r,n){const i=[],f=l(r)?n?a:o:n?u:s;let p=e;for(;f(p,t);)i.push(p),p=c(p,r);return i}})),Gs="reshape",Zs=de(Gs,["typed","isInteger","matrix"],(e=>{let{typed:t,isInteger:r}=e;return t(Gs,{"Matrix, Array":function(e,t){return e.reshape(t,!0)},"Array, Array":function(e,t){return t.forEach((function(e){if(!r(e))throw new TypeError("Invalid size for dimension: "+e)})),gn(e,t)}})})),Vs=de("resize",["config","matrix"],(e=>{let{config:t,matrix:r}=e;return function(e,n,i){if(2!==arguments.length&&3!==arguments.length)throw new Xo("resize",arguments.length,2,3);if(E(n)&&(n=n.valueOf()),g(n[0])&&(n=n.map((function(e){return g(e)?e.toNumber():e}))),E(e))return e.resize(n,i,!0);if("string"==typeof e)return function(e,t,r){if(void 0!==r){if("string"!=typeof r||1!==r.length)throw new TypeError("Single character expected as defaultValue")}else r=" ";if(1!==t.length)throw new an(t.length,1);const n=t[0];if("number"!=typeof n||!ye(n))throw new TypeError("Invalid size, must contain positive integers (size: "+Kr(t)+")");if(e.length>n)return e.substring(0,n);if(e.length<n){let t=e;for(let i=0,o=n-e.length;i<o;i++)t+=r;return t}return e}(e,n,i);const o=!Array.isArray(e)&&"Array"!==t.matrix;if(0===n.length){for(;Array.isArray(e);)e=e[0];return ae(e)}{Array.isArray(e)||(e=[e]);const t=dn(e=ae(e),n,i);return o?r(t):t}}})),Ws="rotate",Ys=de(Ws,["typed","multiply","rotationMatrix"],(e=>{let{typed:t,multiply:r,rotationMatrix:n}=e;return t(Ws,{"Array , number | BigNumber | Complex | Unit":function(e,t){return i(e,2),r(n(t),e).toArray()},"Matrix , number | BigNumber | Complex | Unit":function(e,t){return i(e,2),r(n(t),e)},"Array, number | BigNumber | Complex | Unit, Array | Matrix":function(e,t,o){return i(e,3),r(n(t,o),e)},"Matrix, number | BigNumber | Complex | Unit, Array | Matrix":function(e,t,o){return i(e,3),r(n(t,o),e)}});function i(e,t){const r=Array.isArray(e)?un(e):e.size();if(r.length>2)throw new RangeError(`Vector must be of dimensions 1x${t}`);if(2===r.length&&1!==r[1])throw new RangeError(`Vector must be of dimensions 1x${t}`);if(r[0]!==t)throw new RangeError(`Vector must be of dimensions 1x${t}`)}})),Js="rotationMatrix",Xs=de(Js,["typed","config","multiplyScalar","addScalar","unaryMinus","norm","matrix","BigNumber","DenseMatrix","SparseMatrix","cos","sin"],(e=>{let{typed:t,config:r,multiplyScalar:n,addScalar:i,unaryMinus:o,norm:a,BigNumber:s,matrix:u,DenseMatrix:c,SparseMatrix:l,cos:f,sin:p}=e;return t(Js,{"":function(){return"Matrix"===r.matrix?u([]):[]},string:function(e){return u(e)},"number | BigNumber | Complex | Unit":function(e){return m(e,"Matrix"===r.matrix?"dense":void 0)},"number | BigNumber | Complex | Unit, string":function(e,t){return m(e,t)},"number | BigNumber | Complex | Unit, Array":function(e,t){const r=u(t);return d(r),x(e,r,void 0)},"number | BigNumber | Complex | Unit, Matrix":function(e,t){d(t);const n=t.storage()||("Matrix"===r.matrix?"dense":void 0);return x(e,t,n)},"number | BigNumber | Complex | Unit, Array, string":function(e,t,r){const n=u(t);return d(n),x(e,n,r)},"number | BigNumber | Complex | Unit, Matrix, string":function(e,t,r){return d(t),x(e,t,r)}});function m(e,t){const r=g(e)?new s(-1):-1,i=f(e),o=p(e);return y([[i,n(r,o)],[o,i]],t)}function d(e){const t=e.size();if(t.length<1||3!==t[0])throw new RangeError("Vector must be of dimensions 1x3")}function h(e){return e.reduce(((e,t)=>n(e,t)))}function y(e,t){if(t){if("sparse"===t)return new l(e);if("dense"===t)return new c(e);throw new TypeError(`Unknown matrix type "${t}"`)}return e}function x(e,t,r){const n=a(t);if(0===n)throw new RangeError("Rotation around zero vector");const u=g(e)?s:null,c=u?new u(1):1,l=u?new u(-1):-1,m=u?new u(t.get([0])/n):t.get([0])/n,d=u?new u(t.get([1])/n):t.get([1])/n,x=u?new u(t.get([2])/n):t.get([2])/n,b=f(e),v=i(c,o(b)),w=p(e);return y([[i(b,h([m,m,v])),i(h([m,d,v]),h([l,x,w])),i(h([m,x,v]),h([d,w]))],[i(h([m,d,v]),h([x,w])),i(b,h([d,d,v])),i(h([d,x,v]),h([l,m,w]))],[i(h([m,x,v]),h([l,d,w])),i(h([d,x,v]),h([m,w])),i(b,h([x,x,v]))]],r)}})),Qs=de("row",["typed","Index","matrix","range"],(e=>{let{typed:t,Index:r,matrix:n,range:i}=e;return t("row",{"Matrix, number":o,"Array, number":function(e,t){return o(n(ae(e)),t).valueOf()}});function o(e,t){if(2!==e.size().length)throw new Error("Only two dimensional matrix is supported");pn(t,e.size()[0]);const o=i(0,e.size()[1]),a=new r(t,o),s=e.subset(a);return E(s)?s:n([[s]])}})),Ks="size",eu=de(Ks,["typed","config","?matrix"],(e=>{let{typed:t,config:r,matrix:n}=e;return t(Ks,{Matrix:function(e){return e.create(e.size(),"number")},Array:un,string:function(e){return"Array"===r.matrix?[e.length]:n([e.length],"dense","number")},"number | Complex | BigNumber | Unit | boolean | null":function(e){return"Array"===r.matrix?[]:n?n([],"dense","number"):Ls()}})})),tu="squeeze",ru=de(tu,["typed"],(e=>{let{typed:t}=e;return t(tu,{Array:function(e){return bn(ae(e))},Matrix:function(e){const t=bn(e.toArray());return Array.isArray(t)?e.create(t,e.datatype()):t},any:function(e){return ae(e)}})})),nu="subset",iu=de(nu,["typed","matrix","zeros","add"],(e=>{let{typed:t,matrix:r,zeros:n,add:i}=e;return t(nu,{"Matrix, Index":function(e,t){return mn(t)?r():(fn(e,t),e.subset(t))},"Array, Index":t.referTo("Matrix, Index",(function(e){return function(t,n){const i=e(r(t),n);return n.isScalar()?i:i.valueOf()}})),"Object, Index":su,"string, Index":ou,"Matrix, Index, any, any":function(e,t,r,o){return mn(t)?e:(fn(e,t),e.clone().subset(t,function(e,t){if("string"==typeof e)throw new Error("can't boradcast a string");if(t._isScalar)return e;const r=t.size();if(!r.every((e=>e>0)))return e;try{return i(e,n(r))}catch(t){return e}}(r,t),o))},"Array, Index, any, any":t.referTo("Matrix, Index, any, any",(function(e){return function(t,n,i,o){const a=e(r(t),n,i,o);return a.isMatrix?a.valueOf():a}})),"Array, Index, any":t.referTo("Matrix, Index, any, any",(function(e){return function(t,n,i){return e(r(t),n,i,void 0).valueOf()}})),"Matrix, Index, any":t.referTo("Matrix, Index, any, any",(function(e){return function(t,r,n){return e(t,r,n,void 0)}})),"string, Index, string":au,"string, Index, string, string":au,"Object, Index, any":uu})}));function ou(e,t){if(!T(t))throw new TypeError("Index expected");if(mn(t))return"";if(fn(Array.from(e),t),1!==t.size().length)throw new an(t.size().length,1);const r=e.length;pn(t.min()[0],r),pn(t.max()[0],r);const n=t.dimension(0);let i="";return n.forEach((function(t){i+=e.charAt(t)})),i}function au(e,t,r,n){if(!t||!0!==t.isIndex)throw new TypeError("Index expected");if(mn(t))return e;if(fn(Array.from(e),t),1!==t.size().length)throw new an(t.size().length,1);if(void 0!==n){if("string"!=typeof n||1!==n.length)throw new TypeError("Single character expected as defaultValue")}else n=" ";const i=t.dimension(0);if(i.size()[0]!==r.length)throw new an(i.size()[0],r.length);const o=e.length;pn(t.min()[0]),pn(t.max()[0]);const a=[];for(let t=0;t<o;t++)a[t]=e.charAt(t);if(i.forEach((function(e,t){a[e]=r.charAt(t[0])})),a.length>o)for(let e=o-1,t=a.length;e<t;e++)a[e]||(a[e]=n);return a.join("")}function su(e,t){if(mn(t))return;if(1!==t.size().length)throw new an(t.size(),1);const r=t.dimension(0);if("string"!=typeof r)throw new TypeError("String expected as index to retrieve an object property");return i(e,r)}function uu(e,t,r){if(mn(t))return e;if(1!==t.size().length)throw new an(t.size(),1);const n=t.dimension(0);if("string"!=typeof n)throw new TypeError("String expected as index to retrieve an object property");const i=ae(e);return o(i,n,r),i}const cu="transpose",lu=de(cu,["typed","matrix"],(e=>{let{typed:t,matrix:r}=e;return t(cu,{Array:e=>n(r(e)).valueOf(),Matrix:n,any:ae});function n(e){const t=e.size();let r;switch(t.length){case 1:r=e.clone();break;case 2:{const n=t[0],i=t[1];if(0===i)throw new RangeError("Cannot transpose a 2D matrix with no columns (size: "+Kr(t)+")");switch(e.storage()){case"dense":r=function(e,t,r){const n=e._data,i=[];let o;for(let e=0;e<r;e++){o=i[e]=[];for(let r=0;r<t;r++)o[r]=ae(n[r][e])}return e.createDenseMatrix({data:i,size:[r,t],datatype:e._datatype})}(e,n,i);break;case"sparse":r=function(e,t,r){const n=e._values,i=e._index,o=e._ptr,a=n?[]:void 0,s=[],u=[],c=[];for(let e=0;e<t;e++)c[e]=0;let l,f,p;for(l=0,f=i.length;l<f;l++)c[i[l]]++;let m=0;for(let e=0;e<t;e++)u.push(m),m+=c[e],c[e]=u[e];for(u.push(m),p=0;p<r;p++)for(let e=o[p],t=o[p+1],r=e;r<t;r++){const e=c[i[r]]++;s[e]=p,n&&(a[e]=ae(n[r]))}return e.createSparseMatrix({values:a,index:s,ptr:u,size:[r,t],datatype:e._datatype})}(e,n,i)}}break;default:throw new RangeError("Matrix must be a vector or two dimensional (size: "+Kr(t)+")")}return r}})),fu="ctranspose",pu=de(fu,["typed","transpose","conj"],(e=>{let{typed:t,transpose:r,conj:n}=e;return t(fu,{any:function(e){return n(r(e))}})})),mu="zeros",du=de(mu,["typed","config","matrix","BigNumber"],(e=>{let{typed:t,config:r,matrix:n,BigNumber:i}=e;return t(mu,{"":function(){return"Array"===r.matrix?o([]):o([],"default")},"...number | BigNumber | string":function(e){if("string"==typeof e[e.length-1]){const t=e.pop();return o(e,t)}return"Array"===r.matrix?o(e):o(e,"default")},Array:o,Matrix:function(e){const t=e.storage();return o(e.valueOf(),t)},"Array | Matrix, string":function(e,t){return o(e.valueOf(),t)}});function o(e,t){const r=function(e){let t=!1;return e.forEach((function(e,r,n){g(e)&&(t=!0,n[r]=e.toNumber())})),t}(e),o=r?new i(0):0;if(function(e){e.forEach((function(e){if("number"!=typeof e||!ye(e)||e<0)throw new Error("Parameters in function zeros must be positive integers")}))}(e),t){const r=n(t);return e.length>0?r.resize(e,o):r}{const t=[];return e.length>0?dn(t,e,o):t}}})),hu=de("fft",["typed","matrix","addScalar","multiplyScalar","divideScalar","exp","tau","i","dotDivide","conj","pow","ceil","log2"],(e=>{let{typed:t,matrix:r,addScalar:n,multiplyScalar:i,divideScalar:o,exp:a,tau:s,i:u,dotDivide:c,conj:l,pow:f,ceil:p,log2:m}=e;return t("fft",{Array:d,Matrix:function(e){return e.create(d(e.valueOf()),e.datatype())}});function d(e){const t=un(e);return 1===t.length?g(e,t[0]):h(e.map((e=>d(e,t.slice(1)))),0)}function h(e,t){const r=un(e);if(0!==t)return new Array(r[0]).fill(0).map(((r,n)=>h(e[n],t-1)));if(1===r.length)return g(e);function n(e){const t=un(e);return new Array(t[1]).fill(0).map(((r,n)=>new Array(t[0]).fill(0).map(((t,r)=>e[r][n]))))}return n(h(n(e),1))}function g(e){const t=e.length;if(1===t)return[e[0]];if(t%2==0){const r=[...g(e.filter(((e,t)=>t%2==0))),...g(e.filter(((e,t)=>t%2==1)))];for(let e=0;e<t/2;e++){const c=r[e],l=i(r[e+t/2],a(i(i(s,u),o(-e,t))));r[e]=n(c,l),r[e+t/2]=n(c,i(-1,l))}return r}return function(e){const t=e.length,r=a(o(i(-1,i(u,s)),t)),n=[];for(let e=1-t;e<t;e++)n.push(f(r,o(f(e,2),2)));const h=f(2,p(m(t+t-1))),y=[...new Array(t).fill(0).map(((r,o)=>i(e[o],n[t-1+o]))),...new Array(h-t).fill(0)],x=[...new Array(t+t-1).fill(0).map(((e,t)=>o(1,n[t]))),...new Array(h-(t+t-1)).fill(0)],b=g(y),v=g(x),w=new Array(h).fill(0).map(((e,t)=>i(b[t],v[t]))),N=c(l(d(l(w))),h),E=[];for(let e=t-1;e<t+t-1;e++)E.push(i(N[e],n[e]));return E}(e)}})),gu="ifft",yu=de(gu,["typed","fft","dotDivide","conj"],(e=>{let{typed:t,fft:r,dotDivide:n,conj:i}=e;return t(gu,{"Array | Matrix":function(e){const t=E(e)?e.size():un(e);return n(i(r(i(e))),t.reduce(((e,t)=>e*t),1))}})})),xu=de("solveODE",["typed","add","subtract","multiply","divide","max","map","abs","isPositive","isNegative","larger","smaller","matrix","bignumber","unaryMinus"],(e=>{let{typed:t,add:r,subtract:n,multiply:i,divide:o,max:a,map:s,abs:u,isPositive:c,isNegative:l,larger:f,smaller:p,matrix:m,bignumber:d,unaryMinus:y}=e;function x(e){return function(t,m,h,x){if(2!==m.length||!m.every(E)&&!m.every(v))throw new Error('"tspan" must be an Array of two numeric values or two units [tStart, tEnd]');const b=m[0],w=m[1],N=f(w,b),A=x.firstStep;if(void 0!==A&&!c(A))throw new Error('"firstStep" must be positive');const S=x.maxStep;if(void 0!==S&&!c(S))throw new Error('"maxStep" must be positive');const M=x.minStep;if(M&&l(M))throw new Error('"minStep" must be positive or zero');const C=[b,w,A,M,S].filter((e=>void 0!==e));if(!C.every(E)&&!C.every(v))throw new Error('Inconsistent type of "t" dependant variables');const T=x.tol?x.tol:1e-4,D=x.minDelta?x.minDelta:.2,F=x.maxDelta?x.maxDelta:5,B=x.maxIter?x.maxIter:1e4,O=[b,w,...h,S,M].some(g),[_,z,I,k]=O?[d(e.a),d(e.c),d(e.b),d(e.bp)]:[e.a,e.c,e.b,e.bp];let q=A?N?A:y(A):o(n(w,b),1);const R=[b],P=[h],j=n(I,k);let U=0,L=0;const $=function(e){return e?p:f}(N),H=function(e){const t=e?f:p;return function(e,i,o){const a=r(e,o);return t(a,i)?n(i,e):o}}(N);for(;$(R[U],w);){const e=[];q=H(R[U],w,q),e.push(t(R[U],P[U]));for(let n=1;n<z.length;++n)e.push(t(r(R[U],i(z[n],q)),r(P[U],i(q,_[n],e))));const n=a(u(s(i(j,e),(e=>v(e)?e.value:e))));n<T&&T/n>1/4&&(R.push(r(R[U],q)),P.push(r(P[U],i(q,I,e))),U++);let o=.84*(T/n)**.2;if(p(o,D)?o=D:f(o,F)&&(o=F),o=O?d(o):o,q=i(q,o),S&&f(u(q),S)?q=N?S:y(S):M&&p(u(q),M)&&(q=N?M:y(M)),L++,L>B)throw new Error("Maximum number of iterations reached, try changing options")}return{t:R,y:P}}}function b(e,t,r,n){return x({a:[[],[.5],[0,3/4],[2/9,1/3,4/9]],c:[null,.5,3/4,1],b:[2/9,1/3,4/9,0],bp:[7/24,1/4,1/3,1/8]})(e,t,r,n)}function w(e,t,r,n){return x({a:[[],[.2],[3/40,9/40],[44/45,-56/15,32/9],[19372/6561,-25360/2187,64448/6561,-212/729],[9017/3168,-355/33,46732/5247,49/176,-5103/18656],[35/384,0,500/1113,125/192,-2187/6784,11/84]],c:[null,.2,.3,.8,8/9,1,1],b:[35/384,0,500/1113,125/192,-2187/6784,11/84,0],bp:[5179/57600,0,7571/16695,393/640,-92097/339200,187/2100,1/40]})(e,t,r,n)}function N(e,t,r,n){const i=n.method?n.method:"RK45",o={RK23:b,RK45:w};if(i.toUpperCase()in o){const a={...n};return delete a.method,o[i.toUpperCase()](e,t,r,a)}{const e=Object.keys(o).map((e=>`"${e}"`)),t=`${e.slice(0,-1).join(", ")} and ${e.slice(-1)}`;throw new Error(`Unavailable method "${i}". Available methods are ${t}`)}}function E(e){return g(e)||h(e)}function A(e,t,r,n){const i=N(e,t.toArray(),r.toArray(),n);return{t:m(i.t),y:m(i.y)}}return t("solveODE",{"function, Array, Array, Object":N,"function, Matrix, Matrix, Object":A,"function, Array, Array":(e,t,r)=>N(e,t,r,{}),"function, Matrix, Matrix":(e,t,r)=>A(e,t,r,{}),"function, Array, number | BigNumber | Unit":(e,t,r)=>{const n=N(e,t,[r],{});return{t:n.t,y:n.y.map((e=>e[0]))}},"function, Matrix, number | BigNumber | Unit":(e,t,r)=>{const n=N(e,t.toArray(),[r],{});return{t:m(n.t),y:m(n.y.map((e=>e[0])))}},"function, Array, number | BigNumber | Unit, Object":(e,t,r,n)=>{const i=N(e,t,[r],n);return{t:i.t,y:i.y.map((e=>e[0]))}},"function, Matrix, number | BigNumber | Unit, Object":(e,t,r,n)=>{const i=N(e,t.toArray(),[r],n);return{t:m(i.t),y:m(i.y.map((e=>e[0])))}}})})),bu=de("erf",["typed"],(e=>{let{typed:t}=e;return t("name",{number:function(e){const t=Math.abs(e);return t>=Au?be(e):t<=vu?be(e)*function(e){const t=e*e;let r,n=Nu[0][4]*t,i=t;for(r=0;r<3;r+=1)n=(n+Nu[0][r])*t,i=(i+Eu[0][r])*t;return e*(n+Nu[0][3])/(i+Eu[0][3])}(t):t<=4?be(e)*(1-function(e){let t,r=Nu[1][8]*e,n=e;for(t=0;t<7;t+=1)r=(r+Nu[1][t])*e,n=(n+Eu[1][t])*e;const i=(r+Nu[1][7])/(n+Eu[1][7]),o=parseInt(16*e)/16,a=(e-o)*(e+o);return Math.exp(-o*o)*Math.exp(-a)*i}(t)):be(e)*(1-function(e){let t,r=1/(e*e),n=Nu[2][5]*r,i=r;for(t=0;t<4;t+=1)n=(n+Nu[2][t])*r,i=(i+Eu[2][t])*r;let o=r*(n+Nu[2][4])/(i+Eu[2][4]);o=(wu-o)/e,r=parseInt(16*e)/16;const a=(e-r)*(e+r);return Math.exp(-r*r)*Math.exp(-a)*o}(t))},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),vu=.46875,wu=.5641895835477563,Nu=[[3.1611237438705655,113.86415415105016,377.485237685302,3209.3775891384694,.18577770618460315],[.5641884969886701,8.883149794388377,66.11919063714163,298.6351381974001,881.952221241769,1712.0476126340707,2051.0783778260716,1230.3393547979972,2.1531153547440383e-8],[.30532663496123236,.36034489994980445,.12578172611122926,.016083785148742275,.0006587491615298378,.016315387137302097]],Eu=[[23.601290952344122,244.02463793444417,1282.6165260773723,2844.236833439171],[15.744926110709835,117.6939508913125,537.1811018620099,1621.3895745666903,3290.7992357334597,4362.619090143247,3439.3676741437216,1230.3393548037495],[2.568520192289822,1.8729528499234604,.5279051029514285,.06051834131244132,.0023352049762686918]],Au=Math.pow(2,53),Su="zeta",Mu=de(Su,["typed","config","multiply","pow","divide","factorial","equal","smallerEq","isNegative","gamma","sin","subtract","add","?Complex","?BigNumber","pi"],(e=>{let{typed:t,config:r,multiply:n,pow:i,divide:o,factorial:a,equal:s,smallerEq:u,isNegative:c,gamma:l,sin:f,subtract:p,add:m,Complex:d,BigNumber:h,pi:g}=e;return t(Su,{number:e=>y(e,(e=>e),(()=>20)),BigNumber:e=>y(e,(e=>new h(e)),(()=>Math.abs(Math.log10(r.relTol)))),Complex:function(e){return 0===e.re&&0===e.im?new d(-.5):1===e.re?new d(NaN,NaN):e.re===1/0&&0===e.im?new d(1):e.im===1/0||e.re===-1/0?new d(NaN,NaN):x(e,(e=>e),(e=>Math.round(19.5+.9*Math.abs(e.im))),(e=>e.re))}});function y(e,t,r){return s(e,0)?t(-.5):s(e,1)?t(NaN):isFinite(e)?x(e,t,r,(e=>e)):c(e)?t(NaN):t(1)}function x(e,t,r,a){const s=r(e);if(a(e)>-(s-1)/2)return function(e,t,r){const a=o(1,n(b(r(0),t),p(1,i(2,p(1,e)))));let s=r(0);for(let a=r(1);u(a,t);a=m(a,1))s=m(s,o(n((-1)**(a-1),b(a,t)),i(a,e)));return n(a,s)}(e,t(s),t);{let s=n(i(2,e),i(t(g),p(e,1)));return s=n(s,f(n(o(t(g),2),e))),s=n(s,l(p(1,e))),n(s,x(p(1,e),t,r,a))}}function b(e,t){let r=e;for(let s=e;u(s,t);s=m(s,1)){const e=o(n(a(m(t,p(s,1))),i(4,s)),n(a(p(t,s)),a(n(2,s))));r=m(r,e)}return n(t,r)}})),Cu="mode",Tu=de(Cu,["typed","isNaN","isNumeric"],(e=>{let{typed:t,isNaN:r,isNumeric:n}=e;return t(Cu,{"Array | Matrix":i,"...":function(e){return i(e)}});function i(e){if(0===(e=En(e.valueOf())).length)throw new Error("Cannot calculate mode of an empty array");const t={};let i=[],o=0;for(let a=0;a<e.length;a++){const s=e[a];if(n(s)&&r(s))throw new Error("Cannot calculate mode of an array containing NaN values");s in t||(t[s]=0),t[s]++,t[s]===o?i.push(s):t[s]>o&&(o=t[s],i=[s])}return i}}));function Du(e,t,r){let n;return String(e).includes("Unexpected type")?(n=arguments.length>2?" (type: "+oe(r)+", value: "+JSON.stringify(r)+")":" (type: "+e.data.actual+")",new TypeError("Cannot calculate "+t+", unexpected type of argument"+n)):String(e).includes("complex numbers")?(n=arguments.length>2?" (type: "+oe(r)+", value: "+JSON.stringify(r)+")":"",new TypeError("Cannot calculate "+t+", no ordering relation is defined for complex numbers"+n)):e}const Fu="prod",Bu=de(Fu,["typed","config","multiplyScalar","numeric"],(e=>{let{typed:t,config:r,multiplyScalar:n,numeric:i}=e;return t(Fu,{"Array | Matrix":o,"Array | Matrix, number | BigNumber":function(e,t){throw new Error("prod(A, dim) is not yet supported")},"...":function(e){return o(e)}});function o(e){let t;if(Hn(e,(function(e){try{t=void 0===t?e:n(t,e)}catch(t){throw Du(t,"prod",e)}})),"string"==typeof t&&(t=i(t,xe(t,r))),void 0===t)throw new Error("Cannot calculate prod of an empty array");return t}})),Ou="format",_u=de(Ou,["typed"],(e=>{let{typed:t}=e;return t(Ou,{any:Kr,"any, Object | function | number | BigNumber":Kr})})),zu=de("bin",["typed","format"],(e=>{let{typed:t,format:r}=e;return t("bin",{"number | BigNumber":function(e){return r(e,{notation:"bin"})},"number | BigNumber, number | BigNumber":function(e,t){return r(e,{notation:"bin",wordSize:t})}})})),Iu=de("oct",["typed","format"],(e=>{let{typed:t,format:r}=e;return t("oct",{"number | BigNumber":function(e){return r(e,{notation:"oct"})},"number | BigNumber, number | BigNumber":function(e,t){return r(e,{notation:"oct",wordSize:t})}})})),ku=de("hex",["typed","format"],(e=>{let{typed:t,format:r}=e;return t("hex",{"number | BigNumber":function(e){return r(e,{notation:"hex"})},"number | BigNumber, number | BigNumber":function(e,t){return r(e,{notation:"hex",wordSize:t})}})})),qu=/\$([\w.]+)/g,Ru="print",Pu=de(Ru,["typed"],(e=>{let{typed:t}=e;return t(Ru,{"string, Object | Array":ju,"string, Object | Array, number | Object":ju})}));function ju(e,t,r){return e.replace(qu,(function(e,n){const i=n.split(".");let o=t[i.shift()];for(void 0!==o&&o.isMatrix&&(o=o.toArray());i.length&&void 0!==o;){const e=i.shift();o=e?o[e]:o+"."}return void 0!==o?w(o)?o:Kr(o,r):e}))}const Uu=de("to",["typed","matrix","concat"],(e=>{let{typed:t,matrix:r,concat:n}=e;return t("to",{"Unit, Unit | string":(e,t)=>e.to(t)},Zo({typed:t,matrix:r,concat:n})({Ds:!0}))})),Lu="isPrime",$u=de(Lu,["typed"],(e=>{let{typed:t}=e;return t(Lu,{number:function(e){if(e<=3)return e>1;if(e%2==0||e%3==0)return!1;for(let t=5;t*t<=e;t+=6)if(e%t==0||e%(t+2)==0)return!1;return!0},bigint:function(e){if(e<=3n)return e>1n;if(e%2n===0n||e%3n===0n)return!1;for(let t=5n;t*t<=e;t+=6n)if(e%t===0n||e%(t+2n)===0n)return!1;return!0},BigNumber:function(e){if(e.lte(3))return e.gt(1);if(e.mod(2).eq(0)||e.mod(3).eq(0))return!1;if(e.lt(Math.pow(2,32))){const t=e.toNumber();for(let e=5;e*e<=t;e+=6)if(t%e==0||t%(e+2)==0)return!1;return!0}function t(e,t,r){let n=1;for(;!t.eq(0);)t.mod(2).eq(0)?(t=t.div(2),e=e.mul(e).mod(r)):(t=t.sub(1),n=e.mul(n).mod(r));return n}const r=e.constructor.clone({precision:2*e.toFixed(0).length});let n=0,i=(e=new r(e)).sub(1);for(;i.mod(2).eq(0);)i=i.div(2),n+=1;let o=null;if(e.lt("3317044064679887385961981"))o=[2,3,5,7,11,13,17,19,23,29,31,37,41].filter((t=>t<e));else{const t=Math.min(e.toNumber()-2,Math.floor(2*Math.pow(e.toFixed(0).length*Math.log(10),2)));o=[];for(let e=2;e<=t;e+=1)o.push(t)}for(let r=0;r<o.length;r+=1){const a=o[r],s=t(e.sub(e).add(a),i,e);if(!s.eq(1))for(let t=0,r=s;!r.eq(e.sub(1));t+=1,r=r.mul(r).mod(e))if(t===n-1)return!1}return!0},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Hu=de("numeric",["number","?bignumber","?fraction"],(e=>{let{number:t,bignumber:r,fraction:n}=e;const i={string:!0,number:!0,BigNumber:!0,Fraction:!0},o={number:e=>t(e),BigNumber:r?e=>r(e):js,bigint:e=>BigInt(e),Fraction:n?e=>n(e):Us};return function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"number";if(void 0!==(arguments.length>2?arguments[2]:void 0))throw new SyntaxError("numeric() takes one or two arguments");const r=oe(e);if(!(r in i))throw new TypeError("Cannot convert "+e+' of type "'+r+'"; valid input types are '+Object.keys(i).join(", "));if(!(t in o))throw new TypeError("Cannot convert "+e+' to type "'+t+'"; valid output types are '+Object.keys(o).join(", "));return t===r?e:o[t](e)}})),Gu="divideScalar",Zu=de(Gu,["typed","numeric"],(e=>{let{typed:t,numeric:r}=e;return t(Gu,{"number, number":function(e,t){return e/t},"Complex, Complex":function(e,t){return e.div(t)},"BigNumber, BigNumber":function(e,t){return e.div(t)},"bigint, bigint":function(e,t){return e/t},"Fraction, Fraction":function(e,t){return e.div(t)},"Unit, number | Complex | Fraction | BigNumber | Unit":(e,t)=>e.divide(t),"number | Fraction | Complex | BigNumber, Unit":(e,t)=>t.divideInto(e)})})),Vu=de("pow",["typed","config","identity","multiply","matrix","inv","fraction","number","Complex"],(e=>{let{typed:t,config:r,identity:n,multiply:i,matrix:o,inv:a,number:s,fraction:u,Complex:c}=e;return t("pow",{"number, number":l,"Complex, Complex":function(e,t){return e.pow(t)},"BigNumber, BigNumber":function(e,t){return t.isInteger()||e>=0||r.predictable?e.pow(t):new c(e.toNumber(),0).pow(t.toNumber(),0)},"bigint, bigint":(e,t)=>e**t,"Fraction, Fraction":function(e,t){const n=e.pow(t);if(null!=n)return n;if(r.predictable)throw new Error("Result of pow is non-rational and cannot be expressed as a fraction");return l(e.valueOf(),t.valueOf())},"Array, number":f,"Array, BigNumber":function(e,t){return f(e,t.toNumber())},"Matrix, number":p,"Matrix, BigNumber":function(e,t){return p(e,t.toNumber())},"Unit, number | BigNumber":function(e,t){return e.pow(t)}});function l(e,t){if(r.predictable&&!ye(t)&&e<0)try{const r=u(t),n=s(r);if((t===n||Math.abs((t-n)/t)<1e-14)&&r.d%2==1)return(r.n%2==0?1:-1)*Math.pow(-e,t)}catch(e){}return r.predictable&&(e<-1&&t===1/0||e>-1&&e<0&&t===-1/0)?NaN:ye(t)||e>=0||r.predictable?io(e,t):e*e<1&&t===1/0||e*e>1&&t===-1/0?0:new c(e,0).pow(t,0)}function f(e,t){if(!ye(t))throw new TypeError("For A^b, b must be an integer (value is "+t+")");const r=un(e);if(2!==r.length)throw new Error("For A^b, A must be 2 dimensional (A has "+r.length+" dimensions)");if(r[0]!==r[1])throw new Error("For A^b, A must be square (size is "+r[0]+"x"+r[1]+")");if(t<0)try{return f(a(e),-t)}catch(e){if("Cannot calculate inverse, determinant is zero"===e.message)throw new TypeError("For A^b, when A is not invertible, b must be a positive integer (value is "+t+")");throw e}let o=n(r[0]).valueOf(),s=e;for(;t>=1;)1&~t||(o=i(s,o)),t>>=1,s=i(s,s);return o}function p(e,t){return o(f(e.valueOf(),t))}})),Wu="Number of decimals in function round must be an integer",Yu="round",Ju=de(Yu,["typed","config","matrix","equalScalar","zeros","BigNumber","DenseMatrix"],(e=>{let{typed:t,config:r,matrix:n,equalScalar:i,zeros:o,BigNumber:a,DenseMatrix:s}=e;const u=wo({typed:t,equalScalar:i}),c=No({typed:t,DenseMatrix:s}),l=Eo({typed:t});function f(e){return Math.abs(Te(e).exponent)}return t(Yu,{number:function(e){const t=oo(e,f(r.relTol));return oo(_e(e,t,r.relTol,r.absTol)?t:e)},"number, number":function(e,t){const n=f(r.relTol);if(t>=n)return oo(e,t);const i=oo(e,n);return oo(_e(e,i,r.relTol,r.absTol)?i:e,t)},"number, BigNumber":function(e,t){if(!t.isInteger())throw new TypeError(Wu);return new a(e).toDecimalPlaces(t.toNumber())},Complex:function(e){return e.round()},"Complex, number":function(e,t){if(t%1)throw new TypeError(Wu);return e.round(t)},"Complex, BigNumber":function(e,t){if(!t.isInteger())throw new TypeError(Wu);const r=t.toNumber();return e.round(r)},BigNumber:function(e){const t=new a(e).toDecimalPlaces(f(r.relTol));return(ti(e,t,r.relTol,r.absTol)?t:e).toDecimalPlaces(0)},"BigNumber, BigNumber":function(e,t){if(!t.isInteger())throw new TypeError(Wu);const n=f(r.relTol);if(t>=n)return e.toDecimalPlaces(t.toNumber());const i=e.toDecimalPlaces(n);return(ti(e,i,r.relTol,r.absTol)?i:e).toDecimalPlaces(t.toNumber())},Fraction:function(e){return e.round()},"Fraction, number":function(e,t){if(t%1)throw new TypeError(Wu);return e.round(t)},"Fraction, BigNumber":function(e,t){if(!t.isInteger())throw new TypeError(Wu);return e.round(t.toNumber())},"Unit, number, Unit":t.referToSelf((e=>function(t,r,n){const i=t.toNumeric(n);return n.multiply(e(i,r))})),"Unit, BigNumber, Unit":t.referToSelf((e=>(t,r,n)=>e(t,r.toNumber(),n))),"Unit, Unit":t.referToSelf((e=>(t,r)=>e(t,0,r))),"Array | Matrix, number, Unit":t.referToSelf((e=>(t,r,n)=>Gn(t,(t=>e(t,r,n)),!0))),"Array | Matrix, BigNumber, Unit":t.referToSelf((e=>(t,r,n)=>e(t,r.toNumber(),n))),"Array | Matrix, Unit":t.referToSelf((e=>(t,r)=>e(t,0,r))),"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e,!0))),"SparseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>u(t,r,e,!1))),"DenseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>l(t,r,e,!1))),"Array, number | BigNumber":t.referToSelf((e=>(t,r)=>l(n(t),r,e,!1).valueOf())),"number | Complex | BigNumber | Fraction, SparseMatrix":t.referToSelf((e=>(t,r)=>i(t,0)?o(r.size(),r.storage()):c(r,t,e,!0))),"number | Complex | BigNumber | Fraction, DenseMatrix":t.referToSelf((e=>(t,r)=>i(t,0)?o(r.size(),r.storage()):l(r,t,e,!0))),"number | Complex | BigNumber | Fraction, Array":t.referToSelf((e=>(t,r)=>l(n(r),t,e,!0).valueOf()))})})),Xu=de("log",["config","typed","divideScalar","Complex"],(e=>{let{typed:t,config:r,divideScalar:n,Complex:i}=e;return t("log",{number:function(e){return e>=0||r.predictable?function(e){return Math.log(e)}(e):new i(e,0).log()},Complex:function(e){return e.log()},BigNumber:function(e){return!e.isNegative()||r.predictable?e.ln():new i(e.toNumber(),0).log()},"any, any":t.referToSelf((e=>(t,r)=>n(e(t),e(r))))})})),Qu="log1p",Ku=de(Qu,["typed","config","divideScalar","log","Complex"],(e=>{let{typed:t,config:r,divideScalar:n,log:i,Complex:o}=e;return t(Qu,{number:function(e){return e>=-1||r.predictable?Ne(e):a(new o(e,0))},Complex:a,BigNumber:function(e){const t=e.plus(1);return!t.isNegative()||r.predictable?t.ln():a(new o(e.toNumber(),0))},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e))),"any, any":t.referToSelf((e=>(t,r)=>n(e(t),i(r))))});function a(e){const t=e.re+1;return new o(Math.log(Math.sqrt(t*t+e.im*e.im)),Math.atan2(e.im,t))}})),ec="nthRoots",tc=de(ec,["config","typed","divideScalar","Complex"],(e=>{let{typed:t,config:r,divideScalar:n,Complex:i}=e;const o=[function(e){return new i(e,0)},function(e){return new i(0,e)},function(e){return new i(-e,0)},function(e){return new i(0,-e)}];function a(e,t){if(t<0)throw new Error("Root must be greater than zero");if(0===t)throw new Error("Root must be non-zero");if(t%1!=0)throw new Error("Root must be an integer");if(0===e||0===e.abs())return[new i(0,0)];const r="number"==typeof e;let n;(r||0===e.re||0===e.im)&&(n=r?2*+(e<0):0===e.im?2*+(e.re<0):2*+(e.im<0)+1);const a=e.arg(),s=e.abs(),u=[],c=Math.pow(s,1/t);for(let e=0;e<t;e++){const r=(n+4*e)/t;r!==Math.round(r)?u.push(new i({r:c,phi:(a+2*Math.PI*e)/t})):u.push(o[r%4](c))}return u}return t(ec,{Complex:function(e){return a(e,2)},"Complex, number":a})})),rc="dotPow",nc=de(rc,["typed","equalScalar","matrix","pow","DenseMatrix","concat"],(e=>{let{typed:t,equalScalar:r,matrix:n,pow:i,DenseMatrix:o,concat:a}=e;const s=Lo({typed:t}),u=Ya({typed:t,DenseMatrix:o}),c=wo({typed:t,equalScalar:r}),l=No({typed:t,DenseMatrix:o}),f=Zo({typed:t,matrix:n,concat:a}),p={};for(const e in i.signatures)Object.prototype.hasOwnProperty.call(i.signatures,e)&&(e.includes("Matrix")||e.includes("Array")||(p[e]=i.signatures[e]));const m=t(p);return t(rc,f({elop:m,SS:u,DS:s,Ss:c,sS:l}))})),ic="dotDivide",oc=de(ic,["typed","matrix","equalScalar","divideScalar","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,divideScalar:i,DenseMatrix:o,concat:a}=e;const s=Uo({typed:t,equalScalar:n}),u=Lo({typed:t}),c=Ya({typed:t,DenseMatrix:o}),l=wo({typed:t,equalScalar:n}),f=No({typed:t,DenseMatrix:o}),p=Zo({typed:t,matrix:r,concat:a});return t(ic,p({elop:i,SS:c,DS:u,SD:s,Ss:l,sS:f}))}));function ac(e){let{DenseMatrix:t}=e;return function(e,r,n){const i=e.size();if(2!==i.length)throw new RangeError("Matrix must be two dimensional (size: "+Kr(i)+")");const o=i[0];if(o!==i[1])throw new RangeError("Matrix must be square (size: "+Kr(i)+")");let a=[];if(E(r)){const e=r.size(),i=r._data;if(1===e.length){if(e[0]!==o)throw new RangeError("Dimension mismatch. Matrix columns must match vector length.");for(let e=0;e<o;e++)a[e]=[i[e]];return new t({data:a,size:[o,1],datatype:r._datatype})}if(2===e.length){if(e[0]!==o||1!==e[1])throw new RangeError("Dimension mismatch. Matrix columns must match vector length.");if(S(r)){if(n){a=[];for(let e=0;e<o;e++)a[e]=[i[e][0]];return new t({data:a,size:[o,1],datatype:r._datatype})}return r}if(M(r)){for(let e=0;e<o;e++)a[e]=[0];const e=r._values,n=r._index,i=r._ptr;for(let t=i[1],r=i[0];r<t;r++)a[n[r]][0]=e[r];return new t({data:a,size:[o,1],datatype:r._datatype})}}throw new RangeError("Dimension mismatch. The right side has to be either 1- or 2-dimensional vector.")}if(N(r)){const e=un(r);if(1===e.length){if(e[0]!==o)throw new RangeError("Dimension mismatch. Matrix columns must match vector length.");for(let e=0;e<o;e++)a[e]=[r[e]];return new t({data:a,size:[o,1]})}if(2===e.length){if(e[0]!==o||1!==e[1])throw new RangeError("Dimension mismatch. Matrix columns must match vector length.");for(let e=0;e<o;e++)a[e]=[r[e][0]];return new t({data:a,size:[o,1]})}throw new RangeError("Dimension mismatch. The right side has to be either 1- or 2-dimensional vector.")}}}const sc="lsolve",uc=de(sc,["typed","matrix","divideScalar","multiplyScalar","subtractScalar","equalScalar","DenseMatrix"],(e=>{let{typed:t,matrix:r,divideScalar:n,multiplyScalar:i,subtractScalar:o,equalScalar:a,DenseMatrix:s}=e;const u=ac({DenseMatrix:s});return t(sc,{"SparseMatrix, Array | Matrix":function(e,t){return function(e,t){const r=(t=u(e,t,!0))._data,c=e._size[0],l=e._size[1],f=e._values,p=e._index,m=e._ptr,d=[];for(let e=0;e<l;e++){const t=r[e][0]||0;if(a(t,0))d[e]=[0];else{let s=0;const u=[],c=[],l=m[e],h=m[e+1];for(let t=l;t<h;t++){const r=p[t];r===e?s=f[t]:r>e&&(u.push(f[t]),c.push(r))}if(a(s,0))throw new Error("Linear system cannot be solved since matrix is singular");const g=n(t,s);for(let e=0,t=c.length;e<t;e++){const t=c[e];r[t]=[o(r[t][0]||0,i(g,u[e]))]}d[e]=[g]}}return new s({data:d,size:[c,1]})}(e,t)},"DenseMatrix, Array | Matrix":function(e,t){return c(e,t)},"Array, Array | Matrix":function(e,t){return c(r(e),t).valueOf()}});function c(e,t){const r=(t=u(e,t,!0))._data,c=e._size[0],l=e._size[1],f=[],p=e._data;for(let e=0;e<l;e++){const t=r[e][0]||0;let s;if(a(t,0))s=0;else{const u=p[e][e];if(a(u,0))throw new Error("Linear system cannot be solved since matrix is singular");s=n(t,u);for(let t=e+1;t<c;t++)r[t]=[o(r[t][0]||0,i(s,p[t][e]))]}f[e]=[s]}return new s({data:f,size:[c,1]})}})),cc="usolve",lc=de(cc,["typed","matrix","divideScalar","multiplyScalar","subtractScalar","equalScalar","DenseMatrix"],(e=>{let{typed:t,matrix:r,divideScalar:n,multiplyScalar:i,subtractScalar:o,equalScalar:a,DenseMatrix:s}=e;const u=ac({DenseMatrix:s});return t(cc,{"SparseMatrix, Array | Matrix":function(e,t){return function(e,t){const r=(t=u(e,t,!0))._data,c=e._size[0],l=e._size[1],f=e._values,p=e._index,m=e._ptr,d=[];for(let e=l-1;e>=0;e--){const t=r[e][0]||0;if(a(t,0))d[e]=[0];else{let s=0;const u=[],c=[],l=m[e];for(let t=m[e+1]-1;t>=l;t--){const r=p[t];r===e?s=f[t]:r<e&&(u.push(f[t]),c.push(r))}if(a(s,0))throw new Error("Linear system cannot be solved since matrix is singular");const h=n(t,s);for(let e=0,t=c.length;e<t;e++){const t=c[e];r[t]=[o(r[t][0],i(h,u[e]))]}d[e]=[h]}}return new s({data:d,size:[c,1]})}(e,t)},"DenseMatrix, Array | Matrix":function(e,t){return c(e,t)},"Array, Array | Matrix":function(e,t){return c(r(e),t).valueOf()}});function c(e,t){const r=(t=u(e,t,!0))._data,c=e._size[0],l=e._size[1],f=[],p=e._data;for(let e=l-1;e>=0;e--){const t=r[e][0]||0;let s;if(a(t,0))s=0;else{const u=p[e][e];if(a(u,0))throw new Error("Linear system cannot be solved since matrix is singular");s=n(t,u);for(let t=e-1;t>=0;t--)r[t]=[o(r[t][0]||0,i(s,p[t][e]))]}f[e]=[s]}return new s({data:f,size:[c,1]})}})),fc="lsolveAll",pc=de(fc,["typed","matrix","divideScalar","multiplyScalar","subtractScalar","equalScalar","DenseMatrix"],(e=>{let{typed:t,matrix:r,divideScalar:n,multiplyScalar:i,subtractScalar:o,equalScalar:a,DenseMatrix:s}=e;const u=ac({DenseMatrix:s});return t(fc,{"SparseMatrix, Array | Matrix":function(e,t){return function(e,t){const r=[u(e,t,!0)._data.map((e=>e[0]))],c=e._size[0],l=e._size[1],f=e._values,p=e._index,m=e._ptr;for(let e=0;e<l;e++){let t=r.length;for(let s=0;s<t;s++){const u=r[s],c=[],l=[],d=m[e],h=m[e+1];let g=0;for(let t=d;t<h;t++){const r=p[t];r===e?g=f[t]:r>e&&(c.push(f[t]),l.push(r))}if(a(g,0))if(a(u[e],0)){if(0===s){const t=[...u];t[e]=1;for(let e=0,r=l.length;e<r;e++){const r=l[e];t[r]=o(t[r],c[e])}r.push(t)}}else{if(0===s)return[];r.splice(s,1),s-=1,t-=1}else{u[e]=n(u[e],g);for(let t=0,r=l.length;t<r;t++){const r=l[t];u[r]=o(u[r],i(u[e],c[t]))}}}}return r.map((e=>new s({data:e.map((e=>[e])),size:[c,1]})))}(e,t)},"DenseMatrix, Array | Matrix":function(e,t){return c(e,t)},"Array, Array | Matrix":function(e,t){return c(r(e),t).map((e=>e.valueOf()))}});function c(e,t){const r=[u(e,t,!0)._data.map((e=>e[0]))],c=e._data,l=e._size[0],f=e._size[1];for(let e=0;e<f;e++){let t=r.length;for(let s=0;s<t;s++){const u=r[s];if(a(c[e][e],0))if(a(u[e],0)){if(0===s){const t=[...u];t[e]=1;for(let r=e+1;r<f;r++)t[r]=o(t[r],c[r][e]);r.push(t)}}else{if(0===s)return[];r.splice(s,1),s-=1,t-=1}else{u[e]=n(u[e],c[e][e]);for(let t=e+1;t<f;t++)u[t]=o(u[t],i(u[e],c[t][e]))}}}return r.map((e=>new s({data:e.map((e=>[e])),size:[l,1]})))}})),mc="usolveAll",dc=de(mc,["typed","matrix","divideScalar","multiplyScalar","subtractScalar","equalScalar","DenseMatrix"],(e=>{let{typed:t,matrix:r,divideScalar:n,multiplyScalar:i,subtractScalar:o,equalScalar:a,DenseMatrix:s}=e;const u=ac({DenseMatrix:s});return t(mc,{"SparseMatrix, Array | Matrix":function(e,t){return function(e,t){const r=[u(e,t,!0)._data.map((e=>e[0]))],c=e._size[0],l=e._size[1],f=e._values,p=e._index,m=e._ptr;for(let e=l-1;e>=0;e--){let t=r.length;for(let s=0;s<t;s++){const u=r[s],c=[],l=[],d=m[e];let h=0;for(let t=m[e+1]-1;t>=d;t--){const r=p[t];r===e?h=f[t]:r<e&&(c.push(f[t]),l.push(r))}if(a(h,0))if(a(u[e],0)){if(0===s){const t=[...u];t[e]=1;for(let e=0,r=l.length;e<r;e++){const r=l[e];t[r]=o(t[r],c[e])}r.push(t)}}else{if(0===s)return[];r.splice(s,1),s-=1,t-=1}else{u[e]=n(u[e],h);for(let t=0,r=l.length;t<r;t++){const r=l[t];u[r]=o(u[r],i(u[e],c[t]))}}}}return r.map((e=>new s({data:e.map((e=>[e])),size:[c,1]})))}(e,t)},"DenseMatrix, Array | Matrix":function(e,t){return c(e,t)},"Array, Array | Matrix":function(e,t){return c(r(e),t).map((e=>e.valueOf()))}});function c(e,t){const r=[u(e,t,!0)._data.map((e=>e[0]))],c=e._data,l=e._size[0];for(let t=e._size[1]-1;t>=0;t--){let e=r.length;for(let s=0;s<e;s++){const u=r[s];if(a(c[t][t],0))if(a(u[t],0)){if(0===s){const e=[...u];e[t]=1;for(let r=t-1;r>=0;r--)e[r]=o(e[r],c[r][t]);r.push(e)}}else{if(0===s)return[];r.splice(s,1),s-=1,e-=1}else{u[t]=n(u[t],c[t][t]);for(let e=t-1;e>=0;e--)u[e]=o(u[e],i(u[t],c[e][t]))}}}return r.map((e=>new s({data:e.map((e=>[e])),size:[l,1]})))}})),hc=de("matAlgo08xS0Sid",["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return function(e,n,i){const o=e._values,a=e._index,s=e._ptr,u=e._size,c=e._datatype||void 0===e._data?e._datatype:e.getDataType(),l=n._values,f=n._index,p=n._ptr,m=n._size,d=n._datatype||void 0===n._data?n._datatype:n.getDataType();if(u.length!==m.length)throw new an(u.length,m.length);if(u[0]!==m[0]||u[1]!==m[1])throw new RangeError("Dimension mismatch. Matrix A ("+u+") must match Matrix B ("+m+")");if(!o||!l)throw new Error("Cannot perform operation on Pattern Sparse Matrices");const h=u[0],g=u[1];let y,x=r,b=0,v=i;"string"==typeof c&&c===d&&"mixed"!==c&&(y=c,x=t.find(r,[y,y]),b=t.convert(0,y),v=t.find(i,[y,y]));const w=[],N=[],E=[],A=[],S=[];let M,C,T,D;for(let e=0;e<g;e++){E[e]=N.length;const t=e+1;for(C=s[e],T=s[e+1],M=C;M<T;M++)D=a[M],S[D]=t,A[D]=o[M],N.push(D);for(C=p[e],T=p[e+1],M=C;M<T;M++)D=f[M],S[D]===t&&(A[D]=v(A[D],l[M]));for(M=E[e];M<N.length;){D=N[M];const e=A[D];x(e,b)?N.splice(M,1):(w.push(e),M++)}}return E[g]=N.length,e.createSparseMatrix({values:w,index:N,ptr:E,size:[h,g],datatype:c===e._datatype&&d===n._datatype?y:void 0})}})),gc=de("useMatrixForArrayScalar",["typed","matrix"],(e=>{let{typed:t,matrix:r}=e;return{"Array, number":t.referTo("DenseMatrix, number",(e=>(t,n)=>e(r(t),n).valueOf())),"Array, BigNumber":t.referTo("DenseMatrix, BigNumber",(e=>(t,n)=>e(r(t),n).valueOf())),"number, Array":t.referTo("number, DenseMatrix",(e=>(t,n)=>e(t,r(n)).valueOf())),"BigNumber, Array":t.referTo("BigNumber, DenseMatrix",(e=>(t,n)=>e(t,r(n)).valueOf()))}})),yc="leftShift",xc=de(yc,["typed","matrix","equalScalar","zeros","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,zeros:i,DenseMatrix:o,concat:a}=e;const s=Wo({typed:t}),u=Uo({typed:t,equalScalar:n}),c=hc({typed:t,equalScalar:n}),l=Jo({typed:t,DenseMatrix:o}),f=wo({typed:t,equalScalar:n}),p=Eo({typed:t}),m=Zo({typed:t,matrix:r,concat:a}),d=gc({typed:t,matrix:r});return t(yc,{"number, number":ja,"BigNumber, BigNumber":_a,"bigint, bigint":(e,t)=>e<<t,"SparseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>n(r,0)?t.clone():f(t,r,e,!1))),"DenseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>n(r,0)?t.clone():p(t,r,e,!1))),"number | BigNumber, SparseMatrix":t.referToSelf((e=>(t,r)=>n(t,0)?i(r.size(),r.storage()):l(r,t,e,!0))),"number | BigNumber, DenseMatrix":t.referToSelf((e=>(t,r)=>n(t,0)?i(r.size(),r.storage()):p(r,t,e,!0)))},d,m({SS:c,DS:s,SD:u}))})),bc="rightArithShift",vc=de(bc,["typed","matrix","equalScalar","zeros","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,zeros:i,DenseMatrix:o,concat:a}=e;const s=Wo({typed:t}),u=Uo({typed:t,equalScalar:n}),c=hc({typed:t,equalScalar:n}),l=Jo({typed:t,DenseMatrix:o}),f=wo({typed:t,equalScalar:n}),p=Eo({typed:t}),m=Zo({typed:t,matrix:r,concat:a}),d=gc({typed:t,matrix:r});return t(bc,{"number, number":Ua,"BigNumber, BigNumber":za,"bigint, bigint":(e,t)=>e>>t,"SparseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>n(r,0)?t.clone():f(t,r,e,!1))),"DenseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>n(r,0)?t.clone():p(t,r,e,!1))),"number | BigNumber, SparseMatrix":t.referToSelf((e=>(t,r)=>n(t,0)?i(r.size(),r.storage()):l(r,t,e,!0))),"number | BigNumber, DenseMatrix":t.referToSelf((e=>(t,r)=>n(t,0)?i(r.size(),r.storage()):p(r,t,e,!0)))},d,m({SS:c,DS:s,SD:u}))})),wc="rightLogShift",Nc=de(wc,["typed","matrix","equalScalar","zeros","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,zeros:i,DenseMatrix:o,concat:a}=e;const s=Wo({typed:t}),u=Uo({typed:t,equalScalar:n}),c=hc({typed:t,equalScalar:n}),l=Jo({typed:t,DenseMatrix:o}),f=wo({typed:t,equalScalar:n}),p=Eo({typed:t}),m=Zo({typed:t,matrix:r,concat:a}),d=gc({typed:t,matrix:r});return t(wc,{"number, number":La,"SparseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>n(r,0)?t.clone():f(t,r,e,!1))),"DenseMatrix, number | BigNumber":t.referToSelf((e=>(t,r)=>n(r,0)?t.clone():p(t,r,e,!1))),"number | BigNumber, SparseMatrix":t.referToSelf((e=>(t,r)=>n(t,0)?i(r.size(),r.storage()):l(r,t,e,!0))),"number | BigNumber, DenseMatrix":t.referToSelf((e=>(t,r)=>n(t,0)?i(r.size(),r.storage()):p(r,t,e,!0)))},d,m({SS:c,DS:s,SD:u}))})),Ec=de("and",["typed","matrix","equalScalar","zeros","not","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,zeros:i,not:o,concat:a}=e;const s=Uo({typed:t,equalScalar:n}),u=ra({typed:t,equalScalar:n}),c=wo({typed:t,equalScalar:n}),l=Eo({typed:t}),f=Zo({typed:t,matrix:r,concat:a});return t("and",{"number, number":ss,"Complex, Complex":function(e,t){return!(0===e.re&&0===e.im||0===t.re&&0===t.im)},"BigNumber, BigNumber":function(e,t){return!(e.isZero()||t.isZero()||e.isNaN()||t.isNaN())},"bigint, bigint":ss,"Unit, Unit":t.referToSelf((e=>(t,r)=>e(t.value||0,r.value||0))),"SparseMatrix, any":t.referToSelf((e=>(t,r)=>o(r)?i(t.size(),t.storage()):c(t,r,e,!1))),"DenseMatrix, any":t.referToSelf((e=>(t,r)=>o(r)?i(t.size(),t.storage()):l(t,r,e,!1))),"any, SparseMatrix":t.referToSelf((e=>(t,r)=>o(t)?i(t.size(),t.storage()):c(r,t,e,!0))),"any, DenseMatrix":t.referToSelf((e=>(t,r)=>o(t)?i(t.size(),t.storage()):l(r,t,e,!0))),"Array, any":t.referToSelf((e=>(t,n)=>e(r(t),n).valueOf())),"any, Array":t.referToSelf((e=>(t,n)=>e(t,r(n)).valueOf()))},f({SS:u,DS:s}))})),Ac="compare",Sc=de(Ac,["typed","config","matrix","equalScalar","BigNumber","Fraction","DenseMatrix","concat"],(e=>{let{typed:t,config:r,equalScalar:n,matrix:i,BigNumber:o,Fraction:a,DenseMatrix:s,concat:u}=e;const c=Lo({typed:t}),l=$o({typed:t,equalScalar:n}),f=No({typed:t,DenseMatrix:s}),p=Zo({typed:t,matrix:i,concat:u}),m=gi({typed:t});return t(Ac,Mc({typed:t,config:r}),{"boolean, boolean":function(e,t){return e===t?0:e>t?1:-1},"BigNumber, BigNumber":function(e,t){return ti(e,t,r.relTol,r.absTol)?new o(0):new o(e.cmp(t))},"bigint, bigint":function(e,t){return e===t?0n:e>t?1n:-1n},"Fraction, Fraction":function(e,t){return new a(e.compare(t))},"Complex, Complex":function(){throw new TypeError("No ordering relation is defined for complex numbers")}},m,p({SS:l,DS:c,Ss:f}))})),Mc=de(Ac,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(Ac,{"number, number":function(e,t){return _e(e,t,r.relTol,r.absTol)?0:e>t?1:-1}})}));var Cc=r(1880);const Tc="compareNatural",Dc=de(Tc,["typed","compare"],(e=>{let{typed:t,compare:r}=e;const n=r.signatures["boolean,boolean"];return t(Tc,{"any, any":function e(t,a){const s=oe(t),u=oe(a);let c;if(!("number"!==s&&"BigNumber"!==s&&"Fraction"!==s||"number"!==u&&"BigNumber"!==u&&"Fraction"!==u))return c=r(t,a),"0"!==c.toString()?c>0?1:-1:Cc(s,u);const l=["Array","DenseMatrix","SparseMatrix"];if(l.includes(s)||l.includes(u))return c=i(e,t,a),0!==c?c:Cc(s,u);if(s!==u)return Cc(s,u);if("Complex"===s)return function(e,t){return e.re>t.re?1:e.re<t.re?-1:e.im>t.im?1:e.im<t.im?-1:0}(t,a);if("Unit"===s)return t.equalBase(a)?e(t.value,a.value):o(e,t.formatUnits(),a.formatUnits());if("boolean"===s)return n(t,a);if("string"===s)return Cc(t,a);if("Object"===s)return function(e,t,r){const n=Object.keys(t),i=Object.keys(r);n.sort(Cc),i.sort(Cc);const a=o(e,n,i);if(0!==a)return a;for(let o=0;o<n.length;o++){const a=e(t[n[o]],r[i[o]]);if(0!==a)return a}return 0}(e,t,a);if("null"===s)return 0;if("undefined"===s)return 0;throw new TypeError('Unsupported type of value "'+s+'"')}});function i(e,t,r){return M(t)&&M(r)?o(e,t.toJSON().values,r.toJSON().values):M(t)?i(e,t.toArray(),r):M(r)?i(e,t,r.toArray()):S(t)?i(e,t.toJSON().data,r):S(r)?i(e,t,r.toJSON().data):Array.isArray(t)?Array.isArray(r)?o(e,t,r):i(e,t,[r]):i(e,[t],r)}function o(e,t,r){for(let n=0,i=Math.min(t.length,r.length);n<i;n++){const i=e(t[n],r[n]);if(0!==i)return i}return t.length>r.length?1:t.length<r.length?-1:0}})),Fc="compareText",Bc=["typed","matrix","concat"];on.signature="any, any";const Oc=de(Fc,Bc,(e=>{let{typed:t,matrix:r,concat:n}=e;const i=Zo({typed:t,matrix:r,concat:n});return t(Fc,on,i({elop:on,Ds:!0}))})),_c="equal",zc=de(_c,["typed","matrix","equalScalar","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o}=e;const a=Lo({typed:t}),s=Ya({typed:t,DenseMatrix:i}),u=No({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:r,concat:o});return t(_c,Ic({typed:t,equalScalar:n}),c({elop:n,SS:s,DS:a,Ss:u}))})),Ic=de(_c,["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return t(_c,{"any, any":function(e,t){return null===e?null===t:null===t?null===e:void 0===e?void 0===t:void 0===t?void 0===e:r(e,t)}})})),kc="equalText",qc=de(kc,["typed","compareText","isZero"],(e=>{let{typed:t,compareText:r,isZero:n}=e;return t(kc,{"any, any":function(e,t){return n(r(e,t))}})})),Rc="smaller",Pc=de(Rc,["typed","config","matrix","DenseMatrix","concat"],(e=>{let{typed:t,config:r,matrix:n,DenseMatrix:i,concat:o}=e;const a=Lo({typed:t}),s=Ya({typed:t,DenseMatrix:i}),u=No({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:n,concat:o}),l=gi({typed:t});return t(Rc,jc({typed:t,config:r}),{"boolean, boolean":(e,t)=>e<t,"BigNumber, BigNumber":function(e,t){return e.lt(t)&&!ti(e,t,r.relTol,r.absTol)},"bigint, bigint":(e,t)=>e<t,"Fraction, Fraction":(e,t)=>-1===e.compare(t),"Complex, Complex":function(e,t){throw new TypeError("No ordering relation is defined for complex numbers")}},l,c({SS:s,DS:a,Ss:u}))})),jc=de(Rc,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(Rc,{"number, number":function(e,t){return e<t&&!_e(e,t,r.relTol,r.absTol)}})})),Uc="smallerEq",Lc=de(Uc,["typed","config","matrix","DenseMatrix","concat"],(e=>{let{typed:t,config:r,matrix:n,DenseMatrix:i,concat:o}=e;const a=Lo({typed:t}),s=Ya({typed:t,DenseMatrix:i}),u=No({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:n,concat:o}),l=gi({typed:t});return t(Uc,$c({typed:t,config:r}),{"boolean, boolean":(e,t)=>e<=t,"BigNumber, BigNumber":function(e,t){return e.lte(t)||ti(e,t,r.relTol,r.absTol)},"bigint, bigint":(e,t)=>e<=t,"Fraction, Fraction":(e,t)=>1!==e.compare(t),"Complex, Complex":function(){throw new TypeError("No ordering relation is defined for complex numbers")}},l,c({SS:s,DS:a,Ss:u}))})),$c=de(Uc,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(Uc,{"number, number":function(e,t){return e<=t||_e(e,t,r.relTol,r.absTol)}})})),Hc="larger",Gc=de(Hc,["typed","config","matrix","DenseMatrix","concat"],(e=>{let{typed:t,config:r,matrix:n,DenseMatrix:i,concat:o}=e;const a=Lo({typed:t}),s=Ya({typed:t,DenseMatrix:i}),u=No({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:n,concat:o}),l=gi({typed:t});return t(Hc,Zc({typed:t,config:r}),{"boolean, boolean":(e,t)=>e>t,"BigNumber, BigNumber":function(e,t){return e.gt(t)&&!ti(e,t,r.relTol,r.absTol)},"bigint, bigint":(e,t)=>e>t,"Fraction, Fraction":(e,t)=>1===e.compare(t),"Complex, Complex":function(){throw new TypeError("No ordering relation is defined for complex numbers")}},l,c({SS:s,DS:a,Ss:u}))})),Zc=de(Hc,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(Hc,{"number, number":function(e,t){return e>t&&!_e(e,t,r.relTol,r.absTol)}})})),Vc="largerEq",Wc=de(Vc,["typed","config","matrix","DenseMatrix","concat"],(e=>{let{typed:t,config:r,matrix:n,DenseMatrix:i,concat:o}=e;const a=Lo({typed:t}),s=Ya({typed:t,DenseMatrix:i}),u=No({typed:t,DenseMatrix:i}),c=Zo({typed:t,matrix:n,concat:o}),l=gi({typed:t});return t(Vc,Yc({typed:t,config:r}),{"boolean, boolean":(e,t)=>e>=t,"BigNumber, BigNumber":function(e,t){return e.gte(t)||ti(e,t,r.relTol,r.absTol)},"bigint, bigint":function(e,t){return e>=t},"Fraction, Fraction":(e,t)=>-1!==e.compare(t),"Complex, Complex":function(){throw new TypeError("No ordering relation is defined for complex numbers")}},l,c({SS:s,DS:a,Ss:u}))})),Yc=de(Vc,["typed","config"],(e=>{let{typed:t,config:r}=e;return t(Vc,{"number, number":function(e,t){return e>=t||_e(e,t,r.relTol,r.absTol)}})})),Jc="deepEqual",Xc=de(Jc,["typed","equal"],(e=>{let{typed:t,equal:r}=e;return t(Jc,{"any, any":function(e,t){return n(e.valueOf(),t.valueOf())}});function n(e,t){if(Array.isArray(e)){if(Array.isArray(t)){const r=e.length;if(r!==t.length)return!1;for(let i=0;i<r;i++)if(!n(e[i],t[i]))return!1;return!0}return!1}return!Array.isArray(t)&&r(e,t)}})),Qc="unequal",Kc=de(Qc,["typed","config","equalScalar","matrix","DenseMatrix","concat"],(e=>{let{typed:t,config:r,equalScalar:n,matrix:i,DenseMatrix:o,concat:a}=e;const s=Lo({typed:t}),u=Ya({typed:t,DenseMatrix:o}),c=No({typed:t,DenseMatrix:o}),l=Zo({typed:t,matrix:i,concat:a});return t(Qc,el({typed:t,equalScalar:n}),l({elop:function(e,t){return!n(e,t)},SS:u,DS:s,Ss:c}))})),el=de(Qc,["typed","equalScalar"],(e=>{let{typed:t,equalScalar:r}=e;return t(Qc,{"any, any":function(e,t){return null===e?null!==t:null===t?null!==e:void 0===e?void 0!==t:void 0===t?void 0!==e:!r(e,t)}})})),tl="partitionSelect",rl=de(tl,["typed","isNumeric","isNaN","compare"],(e=>{let{typed:t,isNumeric:r,isNaN:n,compare:i}=e;const o=i,a=(e,t)=>-i(e,t);return t(tl,{"Array | Matrix, number":function(e,t){return s(e,t,o)},"Array | Matrix, number, string":function(e,t,r){if("asc"===r)return s(e,t,o);if("desc"===r)return s(e,t,a);throw new Error('Compare string must be "asc" or "desc"')},"Array | Matrix, number, function":s});function s(e,t,r){if(!ye(t)||t<0)throw new Error("k must be a non-negative integer");if(E(e)){if(e.size().length>1)throw new Error("Only one dimensional matrices supported");return u(e.valueOf(),t,r)}if(Array.isArray(e))return u(e,t,r)}function u(e,t,i){if(t>=e.length)throw new Error("k out of bounds");for(let t=0;t<e.length;t++)if(r(e[t])&&n(e[t]))return e[t];let o=0,a=e.length-1;for(;o<a;){let r=o,n=a;const s=e[Math.floor(Math.random()*(a-o+1))+o];for(;r<n;)if(i(e[r],s)>=0){const t=e[n];e[n]=e[r],e[r]=t,--n}else++r;i(e[r],s)>0&&--r,t<=r?a=r:o=r+1}return e[t]}})),nl="sort",il=de(nl,["typed","matrix","compare","compareNatural"],(e=>{let{typed:t,matrix:r,compare:n,compareNatural:i}=e;const o=n,a=(e,t)=>-n(e,t);return t(nl,{Array:function(e){return u(e),e.sort(o)},Matrix:function(e){return c(e),r(e.toArray().sort(o),e.storage())},"Array, function":function(e,t){return u(e),e.sort(t)},"Matrix, function":function(e,t){return c(e),r(e.toArray().sort(t),e.storage())},"Array, string":function(e,t){return u(e),e.sort(s(t))},"Matrix, string":function(e,t){return c(e),r(e.toArray().sort(s(t)),e.storage())}});function s(e){if("asc"===e)return o;if("desc"===e)return a;if("natural"===e)return i;throw new Error('String "asc", "desc", or "natural" expected')}function u(e){if(1!==un(e).length)throw new Error("One dimensional array expected")}function c(e){if(1!==e.size().length)throw new Error("One dimensional matrix expected")}})),ol=de("max",["typed","config","numeric","larger"],(e=>{let{typed:t,config:r,numeric:n,larger:i}=e;return t("max",{"Array | Matrix":a,"Array | Matrix, number | BigNumber":function(e,t){return Zn(e,t.valueOf(),o)},"...":function(e){if($n(e))throw new TypeError("Scalar values expected in function max");return a(e)}});function o(e,t){try{return i(e,t)?e:t}catch(e){throw Du(e,"max",t)}}function a(e){let t;if(Hn(e,(function(e){try{isNaN(e)&&"number"==typeof e?t=NaN:(void 0===t||i(e,t))&&(t=e)}catch(t){throw Du(t,"max",e)}})),void 0===t)throw new Error("Cannot calculate max of an empty array");return"string"==typeof t&&(t=n(t,xe(t,r))),t}})),al=de("min",["typed","config","numeric","smaller"],(e=>{let{typed:t,config:r,numeric:n,smaller:i}=e;return t("min",{"Array | Matrix":a,"Array | Matrix, number | BigNumber":function(e,t){return Zn(e,t.valueOf(),o)},"...":function(e){if($n(e))throw new TypeError("Scalar values expected in function min");return a(e)}});function o(e,t){try{return i(e,t)?e:t}catch(e){throw Du(e,"min",t)}}function a(e){let t;if(Hn(e,(function(e){try{isNaN(e)&&"number"==typeof e?t=NaN:(void 0===t||i(e,t))&&(t=e)}catch(t){throw Du(t,"min",e)}})),void 0===t)throw new Error("Cannot calculate min of an empty array");return"string"==typeof t&&(t=n(t,xe(t,r))),t}})),sl=de("ImmutableDenseMatrix",["smaller","DenseMatrix"],(e=>{let{smaller:t,DenseMatrix:r}=e;function n(e,t){if(!(this instanceof n))throw new SyntaxError("Constructor must be called with the new operator");if(t&&!w(t))throw new Error("Invalid datatype: "+t);if(E(e)||N(e)){const n=new r(e,t);this._data=n._data,this._size=n._size,this._datatype=n._datatype,this._min=null,this._max=null}else if(e&&N(e.data)&&N(e.size))this._data=e.data,this._size=e.size,this._datatype=e.datatype,this._min=void 0!==e.min?e.min:null,this._max=void 0!==e.max?e.max:null;else{if(e)throw new TypeError("Unsupported type of data ("+oe(e)+")");this._data=[],this._size=[0],this._datatype=t,this._min=null,this._max=null}}return n.prototype=new r,n.prototype.type="ImmutableDenseMatrix",n.prototype.isImmutableDenseMatrix=!0,n.prototype.subset=function(e){switch(arguments.length){case 1:{const t=r.prototype.subset.call(this,e);return E(t)?new n({data:t._data,size:t._size,datatype:t._datatype}):t}case 2:case 3:throw new Error("Cannot invoke set subset on an Immutable Matrix instance");default:throw new SyntaxError("Wrong number of arguments")}},n.prototype.set=function(){throw new Error("Cannot invoke set on an Immutable Matrix instance")},n.prototype.resize=function(){throw new Error("Cannot invoke resize on an Immutable Matrix instance")},n.prototype.reshape=function(){throw new Error("Cannot invoke reshape on an Immutable Matrix instance")},n.prototype.clone=function(){return new n({data:ae(this._data),size:ae(this._size),datatype:this._datatype})},n.prototype.toJSON=function(){return{mathjs:"ImmutableDenseMatrix",data:this._data,size:this._size,datatype:this._datatype}},n.fromJSON=function(e){return new n(e)},n.prototype.swapRows=function(){throw new Error("Cannot invoke swapRows on an Immutable Matrix instance")},n.prototype.min=function(){if(null===this._min){let e=null;this.forEach((function(r){(null===e||t(r,e))&&(e=r)})),this._min=null!==e?e:void 0}return this._min},n.prototype.max=function(){if(null===this._max){let e=null;this.forEach((function(r){(null===e||t(e,r))&&(e=r)})),this._max=null!==e?e:void 0}return this._max},n}),{isClass:!0}),ul=de("Index",["ImmutableDenseMatrix","getMatrixDataType"],(e=>{let{ImmutableDenseMatrix:t,getMatrixDataType:r}=e;function n(e){if(!(this instanceof n))throw new SyntaxError("Constructor must be called with the new operator");this._dimensions=[],this._sourceSize=[],this._isScalar=!0;for(let e=0,t=arguments.length;e<t;e++){const t=arguments[e],n=N(t),o=E(t);let a=null;if(C(t))this._dimensions.push(t),this._isScalar=!1;else if(n||o){let e;"boolean"===r(t)?(n&&(e=i(cl(t).valueOf())),o&&(e=i(cl(t._data).valueOf())),a=t.valueOf().length):e=i(t.valueOf()),this._dimensions.push(e);const s=e.size();1===s.length&&1===s[0]&&null===a||(this._isScalar=!1)}else if("number"==typeof t)this._dimensions.push(i([t]));else{if("string"!=typeof t)throw new TypeError("Dimension must be an Array, Matrix, number, string, or Range");this._dimensions.push(t)}this._sourceSize.push(a)}}function i(e){for(let t=0,r=e.length;t<r;t++)if("number"!=typeof e[t]||!ye(e[t]))throw new TypeError("Index parameters must be positive integer numbers");return new t(e)}return n.prototype.type="Index",n.prototype.isIndex=!0,n.prototype.clone=function(){const e=new n;return e._dimensions=ae(this._dimensions),e._isScalar=this._isScalar,e._sourceSize=this._sourceSize,e},n.create=function(e){const t=new n;return n.apply(t,e),t},n.prototype.size=function(){const e=[];for(let t=0,r=this._dimensions.length;t<r;t++){const r=this._dimensions[t];e[t]="string"==typeof r?1:r.size()[0]}return e},n.prototype.max=function(){const e=[];for(let t=0,r=this._dimensions.length;t<r;t++){const r=this._dimensions[t];e[t]="string"==typeof r?r:r.max()}return e},n.prototype.min=function(){const e=[];for(let t=0,r=this._dimensions.length;t<r;t++){const r=this._dimensions[t];e[t]="string"==typeof r?r:r.min()}return e},n.prototype.forEach=function(e){for(let t=0,r=this._dimensions.length;t<r;t++)e(this._dimensions[t],t,this)},n.prototype.dimension=function(e){return this._dimensions[e]||null},n.prototype.isObjectProperty=function(){return 1===this._dimensions.length&&"string"==typeof this._dimensions[0]},n.prototype.getObjectProperty=function(){return this.isObjectProperty()?this._dimensions[0]:null},n.prototype.isScalar=function(){return this._isScalar},n.prototype.toArray=function(){const e=[];for(let t=0,r=this._dimensions.length;t<r;t++){const r=this._dimensions[t];e.push("string"==typeof r?r:r.toArray())}return e},n.prototype.valueOf=n.prototype.toArray,n.prototype.toString=function(){const e=[];for(let t=0,r=this._dimensions.length;t<r;t++){const r=this._dimensions[t];"string"==typeof r?e.push(JSON.stringify(r)):e.push(r.toString())}return"["+e.join(", ")+"]"},n.prototype.toJSON=function(){return{mathjs:"Index",dimensions:this._dimensions}},n.fromJSON=function(e){return n.create(e.dimensions)},n}),{isClass:!0});function cl(e){const t=[];return e.forEach(((e,r)=>{e&&t.push(r)})),t}const ll=de("FibonacciHeap",["smaller","larger"],(e=>{let{smaller:t,larger:r}=e;const n=1/Math.log((1+Math.sqrt(5))/2);function i(){if(!(this instanceof i))throw new SyntaxError("Constructor must be called with the new operator");this._minimum=null,this._size=0}function o(e,t,r){t.left.right=t.right,t.right.left=t.left,r.degree--,r.child===t&&(r.child=t.right),0===r.degree&&(r.child=null),t.left=e,t.right=e.right,e.right=t,t.right.left=t,t.parent=null,t.mark=!1}function a(e,t){const r=t.parent;r&&(t.mark?(o(e,t,r),a(r)):t.mark=!0)}i.prototype.type="FibonacciHeap",i.prototype.isFibonacciHeap=!0,i.prototype.insert=function(e,r){const n={key:e,value:r,degree:0};if(this._minimum){const r=this._minimum;n.left=r,n.right=r.right,r.right=n,n.right.left=n,t(e,r.key)&&(this._minimum=n)}else n.left=n,n.right=n,this._minimum=n;return this._size++,n},i.prototype.size=function(){return this._size},i.prototype.clear=function(){this._minimum=null,this._size=0},i.prototype.isEmpty=function(){return 0===this._size},i.prototype.extractMinimum=function(){const e=this._minimum;if(null===e)return e;let i=this._minimum,o=e.degree,a=e.child;for(;o>0;){const e=a.right;a.left.right=a.right,a.right.left=a.left,a.left=i,a.right=i.right,i.right=a,a.right.left=a,a.parent=null,a=e,o--}return e.left.right=e.right,e.right.left=e.left,e===e.right?i=null:(i=e.right,i=function(e,i){const o=Math.floor(Math.log(i)*n)+1,a=new Array(o);let u,c=0,l=e;if(l)for(c++,l=l.right;l!==e;)c++,l=l.right;for(;c>0;){let e=l.degree;const t=l.right;for(;u=a[e],u;){if(r(l.key,u.key)){const e=u;u=l,l=e}s(u,l),a[e]=null,e++}a[e]=l,l=t,c--}e=null;for(let r=0;r<o;r++)u=a[r],u&&(e?(u.left.right=u.right,u.right.left=u.left,u.left=e,u.right=e.right,e.right=u,u.right.left=u,t(u.key,e.key)&&(e=u)):e=u);return e}(i,this._size)),this._size--,this._minimum=i,e},i.prototype.remove=function(e){this._minimum=function(e,r){r.key=-1;const n=r.parent;return n&&t(r.key,n.key)&&(o(e,r,n),a(e,n)),t(r.key,e.key)&&(e=r),e}(this._minimum,e),this.extractMinimum()};const s=function(e,t){e.left.right=e.right,e.right.left=e.left,e.parent=t,t.child?(e.left=t.child,e.right=t.child.right,t.child.right=e,e.right.left=e):(t.child=e,e.right=e,e.left=e),t.degree++,e.mark=!1};return i}),{isClass:!0}),fl=de("Spa",["addScalar","equalScalar","FibonacciHeap"],(e=>{let{addScalar:t,equalScalar:r,FibonacciHeap:n}=e;function i(){if(!(this instanceof i))throw new SyntaxError("Constructor must be called with the new operator");this._values=[],this._heap=new n}return i.prototype.type="Spa",i.prototype.isSpa=!0,i.prototype.set=function(e,t){if(this._values[e])this._values[e].value=t;else{const r=this._heap.insert(e,t);this._values[e]=r}},i.prototype.get=function(e){const t=this._values[e];return t?t.value:0},i.prototype.accumulate=function(e,r){let n=this._values[e];n?n.value=t(n.value,r):(n=this._heap.insert(e,r),this._values[e]=n)},i.prototype.forEach=function(e,t,n){const i=this._heap,o=this._values,a=[];let s=i.extractMinimum();for(s&&a.push(s);s&&s.key<=t;)s.key>=e&&(r(s.value,0)||n(s.key,s.value,this)),s=i.extractMinimum(),s&&a.push(s);for(let e=0;e<a.length;e++){const t=a[e];s=i.insert(t.key,t.value),o[s.key]=s}},i.prototype.swap=function(e,t){let r=this._values[e],n=this._values[t];if(!r&&n)r=this._heap.insert(e,n.value),this._heap.remove(n),this._values[e]=r,this._values[t]=void 0;else if(r&&!n)n=this._heap.insert(t,r.value),this._heap.remove(r),this._values[t]=n,this._values[e]=void 0;else if(r&&n){const e=r.value;r.value=n.value,n.value=e}},i}),{isClass:!0});function pl(e){let t=0,r=1,n=Object.create(null),i=Object.create(null),o=0;const a=function(e){const a=i[e];if(a&&(delete n[a],delete i[e],--t,r===a)){if(!t)return o=0,void(r=1);for(;!Object.prototype.hasOwnProperty.call(n,++r););}};return e=Math.abs(e),{hit:function(s){const u=i[s],c=++o;if(n[c]=s,i[s]=c,!u){if(++t,t<=e)return;return s=n[r],a(s),s}if(delete n[u],r===u)for(;!Object.prototype.hasOwnProperty.call(n,++r););},delete:a,clear:function(){t=o=0,r=1,n=Object.create(null),i=Object.create(null)}}}function ml(e){let{hasher:t,limit:r}=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return r=null==r?Number.POSITIVE_INFINITY:r,t=null==t?JSON.stringify:t,function n(){"object"!=typeof n.cache&&(n.cache={values:new Map,lru:pl(r||Number.POSITIVE_INFINITY)});const i=[];for(let e=0;e<arguments.length;e++)i[e]=arguments[e];const o=t(i);if(n.cache.values.has(o))return n.cache.lru.hit(o),n.cache.values.get(o);const a=e.apply(e,i);return n.cache.values.set(o,a),n.cache.values.delete(n.cache.lru.hit(o)),a}}const dl=ml((function(e){return new e(1).exp()}),{hasher:xl}),hl=ml((function(e){return new e(1).plus(new e(5).sqrt()).div(2)}),{hasher:xl}),gl=ml((function(e){return e.acos(-1)}),{hasher:xl}),yl=ml((function(e){return gl(e).times(2)}),{hasher:xl});function xl(e){return e[0].precision}const bl=de("Unit",["?on","config","addScalar","subtractScalar","multiplyScalar","divideScalar","pow","abs","fix","round","equal","isNumeric","format","number","Complex","BigNumber","Fraction"],(e=>{let{on:t,config:r,addScalar:n,subtractScalar:i,multiplyScalar:o,divideScalar:a,pow:s,abs:u,fix:c,round:l,equal:f,isNumeric:p,format:m,number:d,Complex:h,BigNumber:g,Fraction:y}=e;const b=d;function w(e,t){if(!(this instanceof w))throw new Error("Constructor must be called with the new operator");if(null!=e&&!p(e)&&!x(e))throw new TypeError("First parameter in Unit constructor must be number, BigNumber, Fraction, Complex, or undefined");if(this.fixPrefix=!1,this.skipAutomaticSimplification=!0,void 0===t)this.units=[],this.dimensions=I.map((e=>0));else if("string"==typeof t){const e=w.parse(t);this.units=e.units,this.dimensions=e.dimensions}else{if(!v(t)||null!==t.value)throw new TypeError("Second parameter in Unit constructor must be a string or valueless Unit");this.fixPrefix=t.fixPrefix,this.skipAutomaticSimplification=t.skipAutomaticSimplification,this.dimensions=t.dimensions.slice(0),this.units=t.units.map((e=>Wr({},e)))}this.value=this._normalize(e)}let N,E,A;function S(){for(;" "===A||"\t"===A;)C()}function M(e){return e>="0"&&e<="9"}function C(){E++,A=N.charAt(E)}function T(e){E=e,A=N.charAt(E)}function D(){let e="";const t=E;if("+"===A?C():"-"===A&&(e+=A,C()),!function(e){return e>="0"&&e<="9"||"."===e}(A))return T(t),null;if("."===A){if(e+=A,C(),!M(A))return T(t),null}else{for(;M(A);)e+=A,C();"."===A&&(e+=A,C())}for(;M(A);)e+=A,C();if("E"===A||"e"===A){let t="";const r=E;if(t+=A,C(),"+"!==A&&"-"!==A||(t+=A,C()),!M(A))return T(r),e;for(e+=t;M(A);)e+=A,C()}return e}function F(){let e="";for(;M(A)||w.isValidAlpha(A);)e+=A,C();const t=e.charAt(0);return w.isValidAlpha(t)?e:null}function B(e){return A===e?(C(),e):null}Object.defineProperty(w,"name",{value:"Unit"}),w.prototype.constructor=w,w.prototype.type="Unit",w.prototype.isUnit=!0,w.parse=function(e,t){if(t=t||{},N=e,E=-1,A="","string"!=typeof N)throw new TypeError("Invalid argument in Unit.parse, string expected");const n=new w;n.units=[];let i=1,o=!1;C(),S();const a=D();let s=null;if(a){if("BigNumber"===r.number)s=new g(a);else if("Fraction"===r.number)try{s=new y(a)}catch(e){s=parseFloat(a)}else s=parseFloat(a);S(),B("*")?(i=1,o=!0):B("/")&&(i=-1,o=!0)}const u=[];let c=1;for(;;){for(S();"("===A;)u.push(i),c*=i,i=1,C(),S();let t;if(!A)break;{const e=A;if(t=F(),null===t)throw new SyntaxError('Unexpected "'+e+'" in "'+N+'" at index '+E.toString())}const r=O(t);if(null===r)throw new SyntaxError('Unit "'+t+'" not found.');let a=i*c;if(S(),B("^")){S();const t=D();if(null===t)throw new SyntaxError('In "'+e+'", "^" must be followed by a floating-point number');a*=t}n.units.push({unit:r.unit,prefix:r.prefix,power:a});for(let e=0;e<I.length;e++)n.dimensions[e]+=(r.unit.dimensions[e]||0)*a;for(S();")"===A;){if(0===u.length)throw new SyntaxError('Unmatched ")" in "'+N+'" at index '+E.toString());c/=u.pop(),C(),S()}if(o=!1,B("*")?(i=1,o=!0):B("/")?(i=-1,o=!0):i=1,r.unit.base){const e=r.unit.base.key;U.auto[e]={unit:r.unit,prefix:r.prefix}}}if(S(),A)throw new SyntaxError('Could not parse: "'+e+'"');if(o)throw new SyntaxError('Trailing characters: "'+e+'"');if(0!==u.length)throw new SyntaxError('Unmatched "(" in "'+N+'"');if(0===n.units.length&&!t.allowNoUnits)throw new SyntaxError('"'+e+'" contains no units');return n.value=void 0!==s?n._normalize(s):null,n},w.prototype.clone=function(){const e=new w;e.fixPrefix=this.fixPrefix,e.skipAutomaticSimplification=this.skipAutomaticSimplification,e.value=ae(this.value),e.dimensions=this.dimensions.slice(0),e.units=[];for(let t=0;t<this.units.length;t++){e.units[t]={};for(const r in this.units[t])me(this.units[t],r)&&(e.units[t][r]=this.units[t][r])}return e},w.prototype.valueType=function(){return oe(this.value)},w.prototype._isDerived=function(){return 0!==this.units.length&&(this.units.length>1||Math.abs(this.units[0].power-1)>1e-15)},w.prototype._normalize=function(e){if(null==e||0===this.units.length)return e;let t=e;const r=w._getNumberConverter(oe(e));for(let e=0;e<this.units.length;e++){const n=r(this.units[e].unit.value),i=r(this.units[e].prefix.value),a=r(this.units[e].power);t=o(t,s(o(n,i),a))}return t},w.prototype._denormalize=function(e,t){if(null==e||0===this.units.length)return e;let r=e;const n=w._getNumberConverter(oe(e));for(let e=0;e<this.units.length;e++){const t=n(this.units[e].unit.value),i=n(this.units[e].prefix.value),u=n(this.units[e].power);r=a(r,s(o(t,i),u))}return r};const O=ml((e=>{if(me(R,e)){const t=R[e];return{unit:t,prefix:t.prefixes[""]}}for(const t in R)if(me(R,t)&&Qr(e,t)){const r=R[t],n=e.length-t.length,i=e.substring(0,n),o=me(r.prefixes,i)?r.prefixes[i]:void 0;if(void 0!==o)return{unit:r,prefix:o}}return null}),{hasher:e=>e[0],limit:100});function _(e){return e.equalBase(k.NONE)&&null!==e.value&&!r.predictable?e.value:e}w.isValuelessUnit=function(e){return null!==O(e)},w.prototype.hasBase=function(e){if("string"==typeof e&&(e=k[e]),!e)return!1;for(let t=0;t<I.length;t++)if(Math.abs((this.dimensions[t]||0)-(e.dimensions[t]||0))>1e-12)return!1;return!0},w.prototype.equalBase=function(e){for(let t=0;t<I.length;t++)if(Math.abs((this.dimensions[t]||0)-(e.dimensions[t]||0))>1e-12)return!1;return!0},w.prototype.equals=function(e){return this.equalBase(e)&&f(this.value,e.value)},w.prototype.multiply=function(e){const t=this.clone(),r=v(e)?e:new w(e);for(let e=0;e<I.length;e++)t.dimensions[e]=(this.dimensions[e]||0)+(r.dimensions[e]||0);for(let e=0;e<r.units.length;e++){const n={...r.units[e]};t.units.push(n)}if(null!==this.value||null!==r.value){const e=null===this.value?this._normalize(1):this.value,n=null===r.value?r._normalize(1):r.value;t.value=o(e,n)}else t.value=null;return v(e)&&(t.skipAutomaticSimplification=!1),_(t)},w.prototype.divideInto=function(e){return new w(e).divide(this)},w.prototype.divide=function(e){const t=this.clone(),r=v(e)?e:new w(e);for(let e=0;e<I.length;e++)t.dimensions[e]=(this.dimensions[e]||0)-(r.dimensions[e]||0);for(let e=0;e<r.units.length;e++){const n={...r.units[e],power:-r.units[e].power};t.units.push(n)}if(null!==this.value||null!==r.value){const e=null===this.value?this._normalize(1):this.value,n=null===r.value?r._normalize(1):r.value;t.value=a(e,n)}else t.value=null;return v(e)&&(t.skipAutomaticSimplification=!1),_(t)},w.prototype.pow=function(e){const t=this.clone();for(let r=0;r<I.length;r++)t.dimensions[r]=(this.dimensions[r]||0)*e;for(let r=0;r<t.units.length;r++)t.units[r].power*=e;return null!==t.value?t.value=s(t.value,e):t.value=null,t.skipAutomaticSimplification=!1,_(t)},w.prototype.abs=function(){const e=this.clone();if(null!==e.value)if(e._isDerived()||0===e.units.length||0===e.units[0].unit.offset)e.value=u(e.value);else{const t=e._numberConverter(),r=t(e.units[0].unit.value),a=t(e.units[0].unit.offset),s=o(r,a);e.value=i(u(n(e.value,s)),s)}for(const t in e.units)"VA"!==e.units[t].unit.name&&"VAR"!==e.units[t].unit.name||(e.units[t].unit=R.W);return e},w.prototype.to=function(e){const t=null===this.value?this._normalize(1):this.value;let r;if("string"==typeof e)r=w.parse(e);else{if(!v(e))throw new Error("String or Unit expected as parameter");r=e.clone()}if(!this.equalBase(r))throw new Error(`Units do not match ('${r.toString()}' != '${this.toString()}')`);if(null!==r.value)throw new Error("Cannot convert to a unit with a value");if(null===this.value||this._isDerived()||0===this.units.length||0===r.units.length||this.units[0].unit.offset===r.units[0].unit.offset)r.value=ae(t);else{const e=w._getNumberConverter(oe(t)),a=this.units[0].unit.value,s=this.units[0].unit.offset,u=o(a,s),c=r.units[0].unit.value,l=r.units[0].unit.offset,f=o(c,l);r.value=n(t,e(i(u,f)))}return r.fixPrefix=!0,r.skipAutomaticSimplification=!0,r},w.prototype.toNumber=function(e){return b(this.toNumeric(e))},w.prototype.toNumeric=function(e){let t;return t=e?this.to(e):this.clone(),t._isDerived()||0===t.units.length?t._denormalize(t.value):t._denormalize(t.value,t.units[0].prefix.value)},w.prototype.toString=function(){return this.format()},w.prototype.toJSON=function(){return{mathjs:"Unit",value:this._denormalize(this.value),unit:this.units.length>0?this.formatUnits():null,fixPrefix:this.fixPrefix}},w.fromJSON=function(e){var t;const r=new w(e.value,null!==(t=e.unit)&&void 0!==t?t:void 0);return r.fixPrefix=e.fixPrefix||!1,r},w.prototype.valueOf=w.prototype.toString,w.prototype.simplify=function(){const e=this.clone(),t=[];let r;for(const t in L)if(me(L,t)&&e.hasBase(k[t])){r=t;break}if("NONE"===r)e.units=[];else{let n;if(r&&me(L,r)&&(n=L[r]),n)e.units=[{unit:n.unit,prefix:n.prefix,power:1}];else{let r=!1;for(let n=0;n<I.length;n++){const i=I[n];Math.abs(e.dimensions[n]||0)>1e-12&&(me(L,i)?t.push({unit:L[i].unit,prefix:L[i].prefix,power:e.dimensions[n]||0}):r=!0)}t.length<e.units.length&&!r&&(e.units=t)}}return e},w.prototype.toSI=function(){const e=this.clone(),t=[];for(let r=0;r<I.length;r++){const n=I[r];if(Math.abs(e.dimensions[r]||0)>1e-12){if(!me(U.si,n))throw new Error("Cannot express custom unit "+n+" in SI units");t.push({unit:U.si[n].unit,prefix:U.si[n].prefix,power:e.dimensions[r]||0})}}return e.units=t,e.fixPrefix=!0,e.skipAutomaticSimplification=!0,null!==this.value?(e.value=null,this.to(e)):e},w.prototype.formatUnits=function(){let e="",t="",r=0,n=0;for(let t=0;t<this.units.length;t++)this.units[t].power>0?(r++,e+=" "+this.units[t].prefix.name+this.units[t].unit.name,Math.abs(this.units[t].power-1)>1e-15&&(e+="^"+this.units[t].power)):this.units[t].power<0&&n++;if(n>0)for(let e=0;e<this.units.length;e++)this.units[e].power<0&&(r>0?(t+=" "+this.units[e].prefix.name+this.units[e].unit.name,Math.abs(this.units[e].power+1)>1e-15&&(t+="^"+-this.units[e].power)):(t+=" "+this.units[e].prefix.name+this.units[e].unit.name,t+="^"+this.units[e].power));e=e.substr(1),t=t.substr(1),r>1&&n>0&&(e="("+e+")"),n>1&&r>0&&(t="("+t+")");let i=e;return r>0&&n>0&&(i+=" / "),i+=t,i},w.prototype.format=function(e){const t=this.skipAutomaticSimplification||null===this.value?this.clone():this.simplify();let r=!1;void 0!==t.value&&null!==t.value&&x(t.value)&&(r=Math.abs(t.value.re)<1e-14);for(const e in t.units)me(t.units,e)&&t.units[e].unit&&("VA"===t.units[e].unit.name&&r?t.units[e].unit=R.VAR:"VAR"!==t.units[e].unit.name||r||(t.units[e].unit=R.VA));1!==t.units.length||t.fixPrefix||Math.abs(t.units[0].power-Math.round(t.units[0].power))<1e-14&&(t.units[0].prefix=t._bestPrefix());const n=t._denormalize(t.value);let i=null!==t.value?m(n,e||{}):"";const o=t.formatUnits();return t.value&&x(t.value)&&(i="("+i+")"),o.length>0&&i.length>0&&(i+=" "),i+=o,i},w.prototype._bestPrefix=function(){if(1!==this.units.length)throw new Error("Can only compute the best prefix for single units with integer powers, like kg, s^2, N^-1, and so forth!");if(Math.abs(this.units[0].power-Math.round(this.units[0].power))>=1e-14)throw new Error("Can only compute the best prefix for single units with integer powers, like kg, s^2, N^-1, and so forth!");const e=null!==this.value?u(this.value):0,t=u(this.units[0].unit.value);let r=this.units[0].prefix;if(0===e)return r;const n=this.units[0].power;let i=Math.log(e/Math.pow(r.value*t,n))/Math.LN10-1.2;if(i>-2.200001&&i<1.800001)return r;i=Math.abs(i);const o=this.units[0].unit.prefixes;for(const a in o)if(me(o,a)){const s=o[a];if(s.scientific){const o=Math.abs(Math.log(e/Math.pow(s.value*t,n))/Math.LN10-1.2);(o<i||o===i&&s.name.length<r.name.length)&&(r=s,i=o)}}return r},w.prototype.splitUnit=function(e){let t=this.clone();const r=[];for(let n=0;n<e.length&&(t=t.to(e[n]),n!==e.length-1);n++){const o=t.toNumeric(),a=l(o);let s;s=f(a,o)?a:c(t.toNumeric());const u=new w(s,e[n].toString());r.push(u),t=i(t,u)}let o=0;for(let e=0;e<r.length;e++)o=n(o,r[e].value);return f(o,this.value)&&(t.value=0),r.push(t),r};const z={NONE:{"":{name:"",value:1,scientific:!0}},SHORT:{"":{name:"",value:1,scientific:!0},da:{name:"da",value:10,scientific:!1},h:{name:"h",value:100,scientific:!1},k:{name:"k",value:1e3,scientific:!0},M:{name:"M",value:1e6,scientific:!0},G:{name:"G",value:1e9,scientific:!0},T:{name:"T",value:1e12,scientific:!0},P:{name:"P",value:1e15,scientific:!0},E:{name:"E",value:1e18,scientific:!0},Z:{name:"Z",value:1e21,scientific:!0},Y:{name:"Y",value:1e24,scientific:!0},R:{name:"R",value:1e27,scientific:!0},Q:{name:"Q",value:1e30,scientific:!0},d:{name:"d",value:.1,scientific:!1},c:{name:"c",value:.01,scientific:!1},m:{name:"m",value:.001,scientific:!0},u:{name:"u",value:1e-6,scientific:!0},n:{name:"n",value:1e-9,scientific:!0},p:{name:"p",value:1e-12,scientific:!0},f:{name:"f",value:1e-15,scientific:!0},a:{name:"a",value:1e-18,scientific:!0},z:{name:"z",value:1e-21,scientific:!0},y:{name:"y",value:1e-24,scientific:!0},r:{name:"r",value:1e-27,scientific:!0},q:{name:"q",value:1e-30,scientific:!0}},LONG:{"":{name:"",value:1,scientific:!0},deca:{name:"deca",value:10,scientific:!1},hecto:{name:"hecto",value:100,scientific:!1},kilo:{name:"kilo",value:1e3,scientific:!0},mega:{name:"mega",value:1e6,scientific:!0},giga:{name:"giga",value:1e9,scientific:!0},tera:{name:"tera",value:1e12,scientific:!0},peta:{name:"peta",value:1e15,scientific:!0},exa:{name:"exa",value:1e18,scientific:!0},zetta:{name:"zetta",value:1e21,scientific:!0},yotta:{name:"yotta",value:1e24,scientific:!0},ronna:{name:"ronna",value:1e27,scientific:!0},quetta:{name:"quetta",value:1e30,scientific:!0},deci:{name:"deci",value:.1,scientific:!1},centi:{name:"centi",value:.01,scientific:!1},milli:{name:"milli",value:.001,scientific:!0},micro:{name:"micro",value:1e-6,scientific:!0},nano:{name:"nano",value:1e-9,scientific:!0},pico:{name:"pico",value:1e-12,scientific:!0},femto:{name:"femto",value:1e-15,scientific:!0},atto:{name:"atto",value:1e-18,scientific:!0},zepto:{name:"zepto",value:1e-21,scientific:!0},yocto:{name:"yocto",value:1e-24,scientific:!0},ronto:{name:"ronto",value:1e-27,scientific:!0},quecto:{name:"quecto",value:1e-30,scientific:!0}},SQUARED:{"":{name:"",value:1,scientific:!0},da:{name:"da",value:100,scientific:!1},h:{name:"h",value:1e4,scientific:!1},k:{name:"k",value:1e6,scientific:!0},M:{name:"M",value:1e12,scientific:!0},G:{name:"G",value:1e18,scientific:!0},T:{name:"T",value:1e24,scientific:!0},P:{name:"P",value:1e30,scientific:!0},E:{name:"E",value:1e36,scientific:!0},Z:{name:"Z",value:1e42,scientific:!0},Y:{name:"Y",value:1e48,scientific:!0},R:{name:"R",value:1e54,scientific:!0},Q:{name:"Q",value:1e60,scientific:!0},d:{name:"d",value:.01,scientific:!1},c:{name:"c",value:1e-4,scientific:!1},m:{name:"m",value:1e-6,scientific:!0},u:{name:"u",value:1e-12,scientific:!0},n:{name:"n",value:1e-18,scientific:!0},p:{name:"p",value:1e-24,scientific:!0},f:{name:"f",value:1e-30,scientific:!0},a:{name:"a",value:1e-36,scientific:!0},z:{name:"z",value:1e-42,scientific:!0},y:{name:"y",value:1e-48,scientific:!0},r:{name:"r",value:1e-54,scientific:!0},q:{name:"q",value:1e-60,scientific:!0}},CUBIC:{"":{name:"",value:1,scientific:!0},da:{name:"da",value:1e3,scientific:!1},h:{name:"h",value:1e6,scientific:!1},k:{name:"k",value:1e9,scientific:!0},M:{name:"M",value:1e18,scientific:!0},G:{name:"G",value:1e27,scientific:!0},T:{name:"T",value:1e36,scientific:!0},P:{name:"P",value:1e45,scientific:!0},E:{name:"E",value:1e54,scientific:!0},Z:{name:"Z",value:1e63,scientific:!0},Y:{name:"Y",value:1e72,scientific:!0},R:{name:"R",value:1e81,scientific:!0},Q:{name:"Q",value:1e90,scientific:!0},d:{name:"d",value:.001,scientific:!1},c:{name:"c",value:1e-6,scientific:!1},m:{name:"m",value:1e-9,scientific:!0},u:{name:"u",value:1e-18,scientific:!0},n:{name:"n",value:1e-27,scientific:!0},p:{name:"p",value:1e-36,scientific:!0},f:{name:"f",value:1e-45,scientific:!0},a:{name:"a",value:1e-54,scientific:!0},z:{name:"z",value:1e-63,scientific:!0},y:{name:"y",value:1e-72,scientific:!0},r:{name:"r",value:1e-81,scientific:!0},q:{name:"q",value:1e-90,scientific:!0}},BINARY_SHORT_SI:{"":{name:"",value:1,scientific:!0},k:{name:"k",value:1e3,scientific:!0},M:{name:"M",value:1e6,scientific:!0},G:{name:"G",value:1e9,scientific:!0},T:{name:"T",value:1e12,scientific:!0},P:{name:"P",value:1e15,scientific:!0},E:{name:"E",value:1e18,scientific:!0},Z:{name:"Z",value:1e21,scientific:!0},Y:{name:"Y",value:1e24,scientific:!0}},BINARY_SHORT_IEC:{"":{name:"",value:1,scientific:!0},Ki:{name:"Ki",value:1024,scientific:!0},Mi:{name:"Mi",value:Math.pow(1024,2),scientific:!0},Gi:{name:"Gi",value:Math.pow(1024,3),scientific:!0},Ti:{name:"Ti",value:Math.pow(1024,4),scientific:!0},Pi:{name:"Pi",value:Math.pow(1024,5),scientific:!0},Ei:{name:"Ei",value:Math.pow(1024,6),scientific:!0},Zi:{name:"Zi",value:Math.pow(1024,7),scientific:!0},Yi:{name:"Yi",value:Math.pow(1024,8),scientific:!0}},BINARY_LONG_SI:{"":{name:"",value:1,scientific:!0},kilo:{name:"kilo",value:1e3,scientific:!0},mega:{name:"mega",value:1e6,scientific:!0},giga:{name:"giga",value:1e9,scientific:!0},tera:{name:"tera",value:1e12,scientific:!0},peta:{name:"peta",value:1e15,scientific:!0},exa:{name:"exa",value:1e18,scientific:!0},zetta:{name:"zetta",value:1e21,scientific:!0},yotta:{name:"yotta",value:1e24,scientific:!0}},BINARY_LONG_IEC:{"":{name:"",value:1,scientific:!0},kibi:{name:"kibi",value:1024,scientific:!0},mebi:{name:"mebi",value:Math.pow(1024,2),scientific:!0},gibi:{name:"gibi",value:Math.pow(1024,3),scientific:!0},tebi:{name:"tebi",value:Math.pow(1024,4),scientific:!0},pebi:{name:"pebi",value:Math.pow(1024,5),scientific:!0},exi:{name:"exi",value:Math.pow(1024,6),scientific:!0},zebi:{name:"zebi",value:Math.pow(1024,7),scientific:!0},yobi:{name:"yobi",value:Math.pow(1024,8),scientific:!0}},BTU:{"":{name:"",value:1,scientific:!0},MM:{name:"MM",value:1e6,scientific:!0}}};z.SHORTLONG=Wr({},z.SHORT,z.LONG),z.BINARY_SHORT=Wr({},z.BINARY_SHORT_SI,z.BINARY_SHORT_IEC),z.BINARY_LONG=Wr({},z.BINARY_LONG_SI,z.BINARY_LONG_IEC);const I=["MASS","LENGTH","TIME","CURRENT","TEMPERATURE","LUMINOUS_INTENSITY","AMOUNT_OF_SUBSTANCE","ANGLE","BIT"],k={NONE:{dimensions:[0,0,0,0,0,0,0,0,0]},MASS:{dimensions:[1,0,0,0,0,0,0,0,0]},LENGTH:{dimensions:[0,1,0,0,0,0,0,0,0]},TIME:{dimensions:[0,0,1,0,0,0,0,0,0]},CURRENT:{dimensions:[0,0,0,1,0,0,0,0,0]},TEMPERATURE:{dimensions:[0,0,0,0,1,0,0,0,0]},LUMINOUS_INTENSITY:{dimensions:[0,0,0,0,0,1,0,0,0]},AMOUNT_OF_SUBSTANCE:{dimensions:[0,0,0,0,0,0,1,0,0]},FORCE:{dimensions:[1,1,-2,0,0,0,0,0,0]},SURFACE:{dimensions:[0,2,0,0,0,0,0,0,0]},VOLUME:{dimensions:[0,3,0,0,0,0,0,0,0]},ENERGY:{dimensions:[1,2,-2,0,0,0,0,0,0]},POWER:{dimensions:[1,2,-3,0,0,0,0,0,0]},PRESSURE:{dimensions:[1,-1,-2,0,0,0,0,0,0]},ELECTRIC_CHARGE:{dimensions:[0,0,1,1,0,0,0,0,0]},ELECTRIC_CAPACITANCE:{dimensions:[-1,-2,4,2,0,0,0,0,0]},ELECTRIC_POTENTIAL:{dimensions:[1,2,-3,-1,0,0,0,0,0]},ELECTRIC_RESISTANCE:{dimensions:[1,2,-3,-2,0,0,0,0,0]},ELECTRIC_INDUCTANCE:{dimensions:[1,2,-2,-2,0,0,0,0,0]},ELECTRIC_CONDUCTANCE:{dimensions:[-1,-2,3,2,0,0,0,0,0]},MAGNETIC_FLUX:{dimensions:[1,2,-2,-1,0,0,0,0,0]},MAGNETIC_FLUX_DENSITY:{dimensions:[1,0,-2,-1,0,0,0,0,0]},FREQUENCY:{dimensions:[0,0,-1,0,0,0,0,0,0]},ANGLE:{dimensions:[0,0,0,0,0,0,0,1,0]},BIT:{dimensions:[0,0,0,0,0,0,0,0,1]}};for(const e in k)me(k,e)&&(k[e].key=e);const q={name:"",base:{},value:1,offset:0,dimensions:I.map((e=>0))},R={meter:{name:"meter",base:k.LENGTH,prefixes:z.LONG,value:1,offset:0},inch:{name:"inch",base:k.LENGTH,prefixes:z.NONE,value:.0254,offset:0},foot:{name:"foot",base:k.LENGTH,prefixes:z.NONE,value:.3048,offset:0},yard:{name:"yard",base:k.LENGTH,prefixes:z.NONE,value:.9144,offset:0},mile:{name:"mile",base:k.LENGTH,prefixes:z.NONE,value:1609.344,offset:0},link:{name:"link",base:k.LENGTH,prefixes:z.NONE,value:.201168,offset:0},rod:{name:"rod",base:k.LENGTH,prefixes:z.NONE,value:5.0292,offset:0},chain:{name:"chain",base:k.LENGTH,prefixes:z.NONE,value:20.1168,offset:0},angstrom:{name:"angstrom",base:k.LENGTH,prefixes:z.NONE,value:1e-10,offset:0},m:{name:"m",base:k.LENGTH,prefixes:z.SHORT,value:1,offset:0},in:{name:"in",base:k.LENGTH,prefixes:z.NONE,value:.0254,offset:0},ft:{name:"ft",base:k.LENGTH,prefixes:z.NONE,value:.3048,offset:0},yd:{name:"yd",base:k.LENGTH,prefixes:z.NONE,value:.9144,offset:0},mi:{name:"mi",base:k.LENGTH,prefixes:z.NONE,value:1609.344,offset:0},li:{name:"li",base:k.LENGTH,prefixes:z.NONE,value:.201168,offset:0},rd:{name:"rd",base:k.LENGTH,prefixes:z.NONE,value:5.02921,offset:0},ch:{name:"ch",base:k.LENGTH,prefixes:z.NONE,value:20.1168,offset:0},mil:{name:"mil",base:k.LENGTH,prefixes:z.NONE,value:254e-7,offset:0},m2:{name:"m2",base:k.SURFACE,prefixes:z.SQUARED,value:1,offset:0},sqin:{name:"sqin",base:k.SURFACE,prefixes:z.NONE,value:64516e-8,offset:0},sqft:{name:"sqft",base:k.SURFACE,prefixes:z.NONE,value:.09290304,offset:0},sqyd:{name:"sqyd",base:k.SURFACE,prefixes:z.NONE,value:.83612736,offset:0},sqmi:{name:"sqmi",base:k.SURFACE,prefixes:z.NONE,value:2589988.110336,offset:0},sqrd:{name:"sqrd",base:k.SURFACE,prefixes:z.NONE,value:25.29295,offset:0},sqch:{name:"sqch",base:k.SURFACE,prefixes:z.NONE,value:404.6873,offset:0},sqmil:{name:"sqmil",base:k.SURFACE,prefixes:z.NONE,value:6.4516e-10,offset:0},acre:{name:"acre",base:k.SURFACE,prefixes:z.NONE,value:4046.86,offset:0},hectare:{name:"hectare",base:k.SURFACE,prefixes:z.NONE,value:1e4,offset:0},m3:{name:"m3",base:k.VOLUME,prefixes:z.CUBIC,value:1,offset:0},L:{name:"L",base:k.VOLUME,prefixes:z.SHORT,value:.001,offset:0},l:{name:"l",base:k.VOLUME,prefixes:z.SHORT,value:.001,offset:0},litre:{name:"litre",base:k.VOLUME,prefixes:z.LONG,value:.001,offset:0},cuin:{name:"cuin",base:k.VOLUME,prefixes:z.NONE,value:16387064e-12,offset:0},cuft:{name:"cuft",base:k.VOLUME,prefixes:z.NONE,value:.028316846592,offset:0},cuyd:{name:"cuyd",base:k.VOLUME,prefixes:z.NONE,value:.764554857984,offset:0},teaspoon:{name:"teaspoon",base:k.VOLUME,prefixes:z.NONE,value:5e-6,offset:0},tablespoon:{name:"tablespoon",base:k.VOLUME,prefixes:z.NONE,value:15e-6,offset:0},drop:{name:"drop",base:k.VOLUME,prefixes:z.NONE,value:5e-8,offset:0},gtt:{name:"gtt",base:k.VOLUME,prefixes:z.NONE,value:5e-8,offset:0},minim:{name:"minim",base:k.VOLUME,prefixes:z.NONE,value:6.1611519921875e-8,offset:0},fluiddram:{name:"fluiddram",base:k.VOLUME,prefixes:z.NONE,value:36966911953125e-19,offset:0},fluidounce:{name:"fluidounce",base:k.VOLUME,prefixes:z.NONE,value:295735295625e-16,offset:0},gill:{name:"gill",base:k.VOLUME,prefixes:z.NONE,value:.00011829411825,offset:0},cc:{name:"cc",base:k.VOLUME,prefixes:z.NONE,value:1e-6,offset:0},cup:{name:"cup",base:k.VOLUME,prefixes:z.NONE,value:.0002365882365,offset:0},pint:{name:"pint",base:k.VOLUME,prefixes:z.NONE,value:.000473176473,offset:0},quart:{name:"quart",base:k.VOLUME,prefixes:z.NONE,value:.000946352946,offset:0},gallon:{name:"gallon",base:k.VOLUME,prefixes:z.NONE,value:.003785411784,offset:0},beerbarrel:{name:"beerbarrel",base:k.VOLUME,prefixes:z.NONE,value:.117347765304,offset:0},oilbarrel:{name:"oilbarrel",base:k.VOLUME,prefixes:z.NONE,value:.158987294928,offset:0},hogshead:{name:"hogshead",base:k.VOLUME,prefixes:z.NONE,value:.238480942392,offset:0},g:{name:"g",base:k.MASS,prefixes:z.SHORT,value:.001,offset:0},gram:{name:"gram",base:k.MASS,prefixes:z.LONG,value:.001,offset:0},ton:{name:"ton",base:k.MASS,prefixes:z.SHORT,value:907.18474,offset:0},t:{name:"t",base:k.MASS,prefixes:z.SHORT,value:1e3,offset:0},tonne:{name:"tonne",base:k.MASS,prefixes:z.LONG,value:1e3,offset:0},grain:{name:"grain",base:k.MASS,prefixes:z.NONE,value:6479891e-11,offset:0},dram:{name:"dram",base:k.MASS,prefixes:z.NONE,value:.0017718451953125,offset:0},ounce:{name:"ounce",base:k.MASS,prefixes:z.NONE,value:.028349523125,offset:0},poundmass:{name:"poundmass",base:k.MASS,prefixes:z.NONE,value:.45359237,offset:0},hundredweight:{name:"hundredweight",base:k.MASS,prefixes:z.NONE,value:45.359237,offset:0},stick:{name:"stick",base:k.MASS,prefixes:z.NONE,value:.115,offset:0},stone:{name:"stone",base:k.MASS,prefixes:z.NONE,value:6.35029318,offset:0},gr:{name:"gr",base:k.MASS,prefixes:z.NONE,value:6479891e-11,offset:0},dr:{name:"dr",base:k.MASS,prefixes:z.NONE,value:.0017718451953125,offset:0},oz:{name:"oz",base:k.MASS,prefixes:z.NONE,value:.028349523125,offset:0},lbm:{name:"lbm",base:k.MASS,prefixes:z.NONE,value:.45359237,offset:0},cwt:{name:"cwt",base:k.MASS,prefixes:z.NONE,value:45.359237,offset:0},s:{name:"s",base:k.TIME,prefixes:z.SHORT,value:1,offset:0},min:{name:"min",base:k.TIME,prefixes:z.NONE,value:60,offset:0},h:{name:"h",base:k.TIME,prefixes:z.NONE,value:3600,offset:0},second:{name:"second",base:k.TIME,prefixes:z.LONG,value:1,offset:0},sec:{name:"sec",base:k.TIME,prefixes:z.LONG,value:1,offset:0},minute:{name:"minute",base:k.TIME,prefixes:z.NONE,value:60,offset:0},hour:{name:"hour",base:k.TIME,prefixes:z.NONE,value:3600,offset:0},day:{name:"day",base:k.TIME,prefixes:z.NONE,value:86400,offset:0},week:{name:"week",base:k.TIME,prefixes:z.NONE,value:604800,offset:0},month:{name:"month",base:k.TIME,prefixes:z.NONE,value:2629800,offset:0},year:{name:"year",base:k.TIME,prefixes:z.NONE,value:31557600,offset:0},decade:{name:"decade",base:k.TIME,prefixes:z.NONE,value:315576e3,offset:0},century:{name:"century",base:k.TIME,prefixes:z.NONE,value:315576e4,offset:0},millennium:{name:"millennium",base:k.TIME,prefixes:z.NONE,value:315576e5,offset:0},hertz:{name:"Hertz",base:k.FREQUENCY,prefixes:z.LONG,value:1,offset:0,reciprocal:!0},Hz:{name:"Hz",base:k.FREQUENCY,prefixes:z.SHORT,value:1,offset:0,reciprocal:!0},rad:{name:"rad",base:k.ANGLE,prefixes:z.SHORT,value:1,offset:0},radian:{name:"radian",base:k.ANGLE,prefixes:z.LONG,value:1,offset:0},deg:{name:"deg",base:k.ANGLE,prefixes:z.SHORT,value:null,offset:0},degree:{name:"degree",base:k.ANGLE,prefixes:z.LONG,value:null,offset:0},grad:{name:"grad",base:k.ANGLE,prefixes:z.SHORT,value:null,offset:0},gradian:{name:"gradian",base:k.ANGLE,prefixes:z.LONG,value:null,offset:0},cycle:{name:"cycle",base:k.ANGLE,prefixes:z.NONE,value:null,offset:0},arcsec:{name:"arcsec",base:k.ANGLE,prefixes:z.NONE,value:null,offset:0},arcmin:{name:"arcmin",base:k.ANGLE,prefixes:z.NONE,value:null,offset:0},A:{name:"A",base:k.CURRENT,prefixes:z.SHORT,value:1,offset:0},ampere:{name:"ampere",base:k.CURRENT,prefixes:z.LONG,value:1,offset:0},K:{name:"K",base:k.TEMPERATURE,prefixes:z.SHORT,value:1,offset:0},degC:{name:"degC",base:k.TEMPERATURE,prefixes:z.SHORT,value:1,offset:273.15},degF:{name:"degF",base:k.TEMPERATURE,prefixes:z.SHORT,value:new y(5,9),offset:459.67},degR:{name:"degR",base:k.TEMPERATURE,prefixes:z.SHORT,value:new y(5,9),offset:0},kelvin:{name:"kelvin",base:k.TEMPERATURE,prefixes:z.LONG,value:1,offset:0},celsius:{name:"celsius",base:k.TEMPERATURE,prefixes:z.LONG,value:1,offset:273.15},fahrenheit:{name:"fahrenheit",base:k.TEMPERATURE,prefixes:z.LONG,value:new y(5,9),offset:459.67},rankine:{name:"rankine",base:k.TEMPERATURE,prefixes:z.LONG,value:new y(5,9),offset:0},mol:{name:"mol",base:k.AMOUNT_OF_SUBSTANCE,prefixes:z.SHORT,value:1,offset:0},mole:{name:"mole",base:k.AMOUNT_OF_SUBSTANCE,prefixes:z.LONG,value:1,offset:0},cd:{name:"cd",base:k.LUMINOUS_INTENSITY,prefixes:z.SHORT,value:1,offset:0},candela:{name:"candela",base:k.LUMINOUS_INTENSITY,prefixes:z.LONG,value:1,offset:0},N:{name:"N",base:k.FORCE,prefixes:z.SHORT,value:1,offset:0},newton:{name:"newton",base:k.FORCE,prefixes:z.LONG,value:1,offset:0},dyn:{name:"dyn",base:k.FORCE,prefixes:z.SHORT,value:1e-5,offset:0},dyne:{name:"dyne",base:k.FORCE,prefixes:z.LONG,value:1e-5,offset:0},lbf:{name:"lbf",base:k.FORCE,prefixes:z.NONE,value:4.4482216152605,offset:0},poundforce:{name:"poundforce",base:k.FORCE,prefixes:z.NONE,value:4.4482216152605,offset:0},kip:{name:"kip",base:k.FORCE,prefixes:z.LONG,value:4448.2216,offset:0},kilogramforce:{name:"kilogramforce",base:k.FORCE,prefixes:z.NONE,value:9.80665,offset:0},J:{name:"J",base:k.ENERGY,prefixes:z.SHORT,value:1,offset:0},joule:{name:"joule",base:k.ENERGY,prefixes:z.LONG,value:1,offset:0},erg:{name:"erg",base:k.ENERGY,prefixes:z.SHORTLONG,value:1e-7,offset:0},Wh:{name:"Wh",base:k.ENERGY,prefixes:z.SHORT,value:3600,offset:0},BTU:{name:"BTU",base:k.ENERGY,prefixes:z.BTU,value:1055.05585262,offset:0},eV:{name:"eV",base:k.ENERGY,prefixes:z.SHORT,value:1602176565e-28,offset:0},electronvolt:{name:"electronvolt",base:k.ENERGY,prefixes:z.LONG,value:1602176565e-28,offset:0},W:{name:"W",base:k.POWER,prefixes:z.SHORT,value:1,offset:0},watt:{name:"watt",base:k.POWER,prefixes:z.LONG,value:1,offset:0},hp:{name:"hp",base:k.POWER,prefixes:z.NONE,value:745.6998715386,offset:0},VAR:{name:"VAR",base:k.POWER,prefixes:z.SHORT,value:h.I,offset:0},VA:{name:"VA",base:k.POWER,prefixes:z.SHORT,value:1,offset:0},Pa:{name:"Pa",base:k.PRESSURE,prefixes:z.SHORT,value:1,offset:0},psi:{name:"psi",base:k.PRESSURE,prefixes:z.NONE,value:6894.75729276459,offset:0},atm:{name:"atm",base:k.PRESSURE,prefixes:z.NONE,value:101325,offset:0},bar:{name:"bar",base:k.PRESSURE,prefixes:z.SHORTLONG,value:1e5,offset:0},torr:{name:"torr",base:k.PRESSURE,prefixes:z.NONE,value:133.322,offset:0},mmHg:{name:"mmHg",base:k.PRESSURE,prefixes:z.NONE,value:133.322,offset:0},mmH2O:{name:"mmH2O",base:k.PRESSURE,prefixes:z.NONE,value:9.80665,offset:0},cmH2O:{name:"cmH2O",base:k.PRESSURE,prefixes:z.NONE,value:98.0665,offset:0},coulomb:{name:"coulomb",base:k.ELECTRIC_CHARGE,prefixes:z.LONG,value:1,offset:0},C:{name:"C",base:k.ELECTRIC_CHARGE,prefixes:z.SHORT,value:1,offset:0},farad:{name:"farad",base:k.ELECTRIC_CAPACITANCE,prefixes:z.LONG,value:1,offset:0},F:{name:"F",base:k.ELECTRIC_CAPACITANCE,prefixes:z.SHORT,value:1,offset:0},volt:{name:"volt",base:k.ELECTRIC_POTENTIAL,prefixes:z.LONG,value:1,offset:0},V:{name:"V",base:k.ELECTRIC_POTENTIAL,prefixes:z.SHORT,value:1,offset:0},ohm:{name:"ohm",base:k.ELECTRIC_RESISTANCE,prefixes:z.SHORTLONG,value:1,offset:0},henry:{name:"henry",base:k.ELECTRIC_INDUCTANCE,prefixes:z.LONG,value:1,offset:0},H:{name:"H",base:k.ELECTRIC_INDUCTANCE,prefixes:z.SHORT,value:1,offset:0},siemens:{name:"siemens",base:k.ELECTRIC_CONDUCTANCE,prefixes:z.LONG,value:1,offset:0},S:{name:"S",base:k.ELECTRIC_CONDUCTANCE,prefixes:z.SHORT,value:1,offset:0},weber:{name:"weber",base:k.MAGNETIC_FLUX,prefixes:z.LONG,value:1,offset:0},Wb:{name:"Wb",base:k.MAGNETIC_FLUX,prefixes:z.SHORT,value:1,offset:0},tesla:{name:"tesla",base:k.MAGNETIC_FLUX_DENSITY,prefixes:z.LONG,value:1,offset:0},T:{name:"T",base:k.MAGNETIC_FLUX_DENSITY,prefixes:z.SHORT,value:1,offset:0},b:{name:"b",base:k.BIT,prefixes:z.BINARY_SHORT,value:1,offset:0},bits:{name:"bits",base:k.BIT,prefixes:z.BINARY_LONG,value:1,offset:0},B:{name:"B",base:k.BIT,prefixes:z.BINARY_SHORT,value:8,offset:0},bytes:{name:"bytes",base:k.BIT,prefixes:z.BINARY_LONG,value:8,offset:0}},P={meters:"meter",inches:"inch",feet:"foot",yards:"yard",miles:"mile",links:"link",rods:"rod",chains:"chain",angstroms:"angstrom",lt:"l",litres:"litre",liter:"litre",liters:"litre",teaspoons:"teaspoon",tablespoons:"tablespoon",minims:"minim",fldr:"fluiddram",fluiddrams:"fluiddram",floz:"fluidounce",fluidounces:"fluidounce",gi:"gill",gills:"gill",cp:"cup",cups:"cup",pt:"pint",pints:"pint",qt:"quart",quarts:"quart",gal:"gallon",gallons:"gallon",bbl:"beerbarrel",beerbarrels:"beerbarrel",obl:"oilbarrel",oilbarrels:"oilbarrel",hogsheads:"hogshead",gtts:"gtt",grams:"gram",tons:"ton",tonnes:"tonne",grains:"grain",drams:"dram",ounces:"ounce",poundmasses:"poundmass",hundredweights:"hundredweight",sticks:"stick",lb:"lbm",lbs:"lbm",kips:"kip",kgf:"kilogramforce",acres:"acre",hectares:"hectare",sqfeet:"sqft",sqyard:"sqyd",sqmile:"sqmi",sqmiles:"sqmi",mmhg:"mmHg",mmh2o:"mmH2O",cmh2o:"cmH2O",seconds:"second",secs:"second",minutes:"minute",mins:"minute",hours:"hour",hr:"hour",hrs:"hour",days:"day",weeks:"week",months:"month",years:"year",decades:"decade",centuries:"century",millennia:"millennium",hertz:"hertz",radians:"radian",degrees:"degree",gradians:"gradian",cycles:"cycle",arcsecond:"arcsec",arcseconds:"arcsec",arcminute:"arcmin",arcminutes:"arcmin",BTUs:"BTU",watts:"watt",joules:"joule",amperes:"ampere",amps:"ampere",amp:"ampere",coulombs:"coulomb",volts:"volt",ohms:"ohm",farads:"farad",webers:"weber",teslas:"tesla",electronvolts:"electronvolt",moles:"mole",bit:"bits",byte:"bytes"};function j(e){if("BigNumber"===e.number){const e=gl(g);R.rad.value=new g(1),R.deg.value=e.div(180),R.grad.value=e.div(200),R.cycle.value=e.times(2),R.arcsec.value=e.div(648e3),R.arcmin.value=e.div(10800)}else R.rad.value=1,R.deg.value=Math.PI/180,R.grad.value=Math.PI/200,R.cycle.value=2*Math.PI,R.arcsec.value=Math.PI/648e3,R.arcmin.value=Math.PI/10800;R.radian.value=R.rad.value,R.degree.value=R.deg.value,R.gradian.value=R.grad.value}j(r),t&&t("config",(function(e,t){e.number!==t.number&&j(e)}));const U={si:{NONE:{unit:q,prefix:z.NONE[""]},LENGTH:{unit:R.m,prefix:z.SHORT[""]},MASS:{unit:R.g,prefix:z.SHORT.k},TIME:{unit:R.s,prefix:z.SHORT[""]},CURRENT:{unit:R.A,prefix:z.SHORT[""]},TEMPERATURE:{unit:R.K,prefix:z.SHORT[""]},LUMINOUS_INTENSITY:{unit:R.cd,prefix:z.SHORT[""]},AMOUNT_OF_SUBSTANCE:{unit:R.mol,prefix:z.SHORT[""]},ANGLE:{unit:R.rad,prefix:z.SHORT[""]},BIT:{unit:R.bits,prefix:z.SHORT[""]},FORCE:{unit:R.N,prefix:z.SHORT[""]},ENERGY:{unit:R.J,prefix:z.SHORT[""]},POWER:{unit:R.W,prefix:z.SHORT[""]},PRESSURE:{unit:R.Pa,prefix:z.SHORT[""]},ELECTRIC_CHARGE:{unit:R.C,prefix:z.SHORT[""]},ELECTRIC_CAPACITANCE:{unit:R.F,prefix:z.SHORT[""]},ELECTRIC_POTENTIAL:{unit:R.V,prefix:z.SHORT[""]},ELECTRIC_RESISTANCE:{unit:R.ohm,prefix:z.SHORT[""]},ELECTRIC_INDUCTANCE:{unit:R.H,prefix:z.SHORT[""]},ELECTRIC_CONDUCTANCE:{unit:R.S,prefix:z.SHORT[""]},MAGNETIC_FLUX:{unit:R.Wb,prefix:z.SHORT[""]},MAGNETIC_FLUX_DENSITY:{unit:R.T,prefix:z.SHORT[""]},FREQUENCY:{unit:R.Hz,prefix:z.SHORT[""]}}};U.cgs=JSON.parse(JSON.stringify(U.si)),U.cgs.LENGTH={unit:R.m,prefix:z.SHORT.c},U.cgs.MASS={unit:R.g,prefix:z.SHORT[""]},U.cgs.FORCE={unit:R.dyn,prefix:z.SHORT[""]},U.cgs.ENERGY={unit:R.erg,prefix:z.NONE[""]},U.us=JSON.parse(JSON.stringify(U.si)),U.us.LENGTH={unit:R.ft,prefix:z.NONE[""]},U.us.MASS={unit:R.lbm,prefix:z.NONE[""]},U.us.TEMPERATURE={unit:R.degF,prefix:z.NONE[""]},U.us.FORCE={unit:R.lbf,prefix:z.NONE[""]},U.us.ENERGY={unit:R.BTU,prefix:z.BTU[""]},U.us.POWER={unit:R.hp,prefix:z.NONE[""]},U.us.PRESSURE={unit:R.psi,prefix:z.NONE[""]},U.auto=JSON.parse(JSON.stringify(U.si));let L=U.auto;w.setUnitSystem=function(e){if(!me(U,e))throw new Error("Unit system "+e+" does not exist. Choices are: "+Object.keys(U).join(", "));L=U[e]},w.getUnitSystem=function(){for(const e in U)if(me(U,e)&&U[e]===L)return e},w.typeConverters={BigNumber:function(e){return null!=e&&e.isFraction?new g(e.n).div(e.d).times(e.s):new g(e+"")},Fraction:function(e){return new y(e)},Complex:function(e){return e},number:function(e){return null!=e&&e.isFraction?d(e):e}},w.prototype._numberConverter=function(){const e=w.typeConverters[this.valueType()];if(e)return e;throw new TypeError('Unsupported Unit value type "'+this.valueType()+'"')},w._getNumberConverter=function(e){if(!w.typeConverters[e])throw new TypeError('Unsupported type "'+e+'"');return w.typeConverters[e]};for(const e in R)if(me(R,e)){const t=R[e];t.dimensions=t.base.dimensions}for(const e in P)if(me(P,e)){const t=R[P[e]],r={};for(const e in t)me(t,e)&&(r[e]=t[e]);r.name=e,R[e]=r}return w.isValidAlpha=function(e){return/^[a-zA-Z]$/.test(e)},w.createUnit=function(e,t){if("object"!=typeof e)throw new TypeError("createUnit expects first parameter to be of type 'Object'");if(t&&t.override)for(const t in e)if(me(e,t)&&w.deleteUnit(t),e[t].aliases)for(let r=0;r<e[t].aliases.length;r++)w.deleteUnit(e[t].aliases[r]);let r;for(const t in e)me(e,t)&&(r=w.createUnitSingle(t,e[t]));return r},w.createUnitSingle=function(e,t){if(null==t&&(t={}),"string"!=typeof e)throw new TypeError("createUnitSingle expects first parameter to be of type 'string'");if(me(R,e))throw new Error('Cannot create unit "'+e+'": a unit with that name already exists');!function(e){for(let t=0;t<e.length;t++){if(A=e.charAt(t),0===t&&!w.isValidAlpha(A))throw new Error('Invalid unit name (must begin with alpha character): "'+e+'"');if(t>0&&!w.isValidAlpha(A)&&!M(A))throw new Error('Invalid unit name (only alphanumeric characters are allowed): "'+e+'"')}}(e);let r,n,i,o=null,a=[],s=0;if(t&&"Unit"===t.type)o=t.clone();else if("string"==typeof t)""!==t&&(r=t);else{if("object"!=typeof t)throw new TypeError('Cannot create unit "'+e+'" from "'+t.toString()+'": expecting "string" or "Unit" or "Object"');r=t.definition,n=t.prefixes,s=t.offset,i=t.baseName,t.aliases&&(a=t.aliases.valueOf())}if(a)for(let e=0;e<a.length;e++)if(me(R,a[e]))throw new Error('Cannot create alias "'+a[e]+'": a unit with that name already exists');if(r&&"string"==typeof r&&!o)try{o=w.parse(r,{allowNoUnits:!0})}catch(t){throw t.message='Could not create unit "'+e+'" from "'+r+'": '+t.message,t}else r&&"Unit"===r.type&&(o=r.clone());a=a||[],s=s||0,n=n&&n.toUpperCase&&z[n.toUpperCase()]||z.NONE;let u={};if(o){u={name:e,value:o.value,dimensions:o.dimensions.slice(0),prefixes:n,offset:s};let t=!1;for(const e in k)if(me(k,e)){let r=!0;for(let t=0;t<I.length;t++)if(Math.abs((u.dimensions[t]||0)-(k[e].dimensions[t]||0))>1e-12){r=!1;break}if(r){t=!0,u.base=k[e];break}}if(!t){i=i||e+"_STUFF";const t={dimensions:o.dimensions.slice(0)};t.key=i,k[i]=t,L[i]={unit:u,prefix:z.NONE[""]},u.base=k[i]}}else{if(i=i||e+"_STUFF",I.indexOf(i)>=0)throw new Error('Cannot create new base unit "'+e+'": a base unit with that name already exists (and cannot be overridden)');I.push(i);for(const e in k)me(k,e)&&(k[e].dimensions[I.length-1]=0);const t={dimensions:[]};for(let e=0;e<I.length;e++)t.dimensions[e]=0;t.dimensions[I.length-1]=1,t.key=i,k[i]=t,u={name:e,value:1,dimensions:k[i].dimensions.slice(0),prefixes:n,offset:s,base:k[i]},L[i]={unit:u,prefix:z.NONE[""]}}w.UNITS[e]=u;for(let e=0;e<a.length;e++){const t=a[e],r={};for(const e in u)me(u,e)&&(r[e]=u[e]);r.name=t,w.UNITS[t]=r}return delete O.cache,new w(null,e)},w.deleteUnit=function(e){delete w.UNITS[e],delete O.cache},w.PREFIXES=z,w.BASE_DIMENSIONS=I,w.BASE_UNITS=k,w.UNIT_SYSTEMS=U,w.UNITS=R,w}),{isClass:!0}),vl="unit",wl=de(vl,["typed","Unit"],(e=>{let{typed:t,Unit:r}=e;return t(vl,{Unit:function(e){return e.clone()},string:function(e){return r.isValuelessUnit(e)?new r(null,e):r.parse(e,{allowNoUnits:!0})},"number | BigNumber | Fraction | Complex, string | Unit":function(e,t){return new r(e,t)},"number | BigNumber | Fraction":function(e){return new r(e)},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),Nl="sparse",El=de(Nl,["typed","SparseMatrix"],(e=>{let{typed:t,SparseMatrix:r}=e;return t(Nl,{"":function(){return new r([])},string:function(e){return new r([],e)},"Array | Matrix":function(e){return new r(e)},"Array | Matrix, string":function(e,t){return new r(e,t)}})})),Al="createUnit",Sl=de(Al,["typed","Unit"],(e=>{let{typed:t,Unit:r}=e;return t(Al,{"Object, Object":function(e,t){return r.createUnit(e,t)},Object:function(e){return r.createUnit(e,{})},"string, Unit | string | Object, Object":function(e,t,n){const i={};return i[e]=t,r.createUnit(i,n)},"string, Unit | string | Object":function(e,t){const n={};return n[e]=t,r.createUnit(n,{})},string:function(e){const t={};return t[e]={},r.createUnit(t,{})}})})),Ml="acos",Cl=de(Ml,["typed","config","Complex"],(e=>{let{typed:t,config:r,Complex:n}=e;return t(Ml,{number:function(e){return e>=-1&&e<=1||r.predictable?Math.acos(e):new n(e,0).acos()},Complex:function(e){return e.acos()},BigNumber:function(e){return e.acos()}})})),Tl="number";function Dl(e){return ze(e)}function Fl(e){return Math.atan(1/e)}function Bl(e){return isFinite(e)?(Math.log((e+1)/e)+Math.log(e/(e-1)))/2:0}function Ol(e){return Math.asin(1/e)}function _l(e){const t=1/e;return Math.log(t+Math.sqrt(t*t+1))}function zl(e){return Math.acos(1/e)}function Il(e){const t=1/e,r=Math.sqrt(t*t-1);return Math.log(r+t)}function kl(e){return Ie(e)}function ql(e){return ke(e)}function Rl(e){return 1/Math.tan(e)}function Pl(e){const t=Math.exp(2*e);return(t+1)/(t-1)}function jl(e){return 1/Math.sin(e)}function Ul(e){return 0===e?Number.POSITIVE_INFINITY:Math.abs(2/(Math.exp(e)-Math.exp(-e)))*be(e)}function Ll(e){return 1/Math.cos(e)}function $l(e){return 2/(Math.exp(e)+Math.exp(-e))}function Hl(e){return Re(e)}Dl.signature=Tl,Fl.signature=Tl,Bl.signature=Tl,Ol.signature=Tl,_l.signature=Tl,zl.signature=Tl,Il.signature=Tl,kl.signature=Tl,ql.signature=Tl,Rl.signature=Tl,Pl.signature=Tl,jl.signature=Tl,Ul.signature=Tl,Ll.signature=Tl,$l.signature=Tl,Hl.signature=Tl;const Gl="acosh",Zl=de(Gl,["typed","config","Complex"],(e=>{let{typed:t,config:r,Complex:n}=e;return t(Gl,{number:function(e){return e>=1||r.predictable?Dl(e):e<=-1?new n(Math.log(Math.sqrt(e*e-1)-e),Math.PI):new n(e,0).acosh()},Complex:function(e){return e.acosh()},BigNumber:function(e){return e.acosh()}})})),Vl="acot",Wl=de(Vl,["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t(Vl,{number:Fl,Complex:function(e){return e.acot()},BigNumber:function(e){return new r(1).div(e).atan()}})})),Yl="acoth",Jl=de(Yl,["typed","config","Complex","BigNumber"],(e=>{let{typed:t,config:r,Complex:n,BigNumber:i}=e;return t(Yl,{number:function(e){return e>=1||e<=-1||r.predictable?Bl(e):new n(e,0).acoth()},Complex:function(e){return e.acoth()},BigNumber:function(e){return new i(1).div(e).atanh()}})})),Xl="acsc",Ql=de(Xl,["typed","config","Complex","BigNumber"],(e=>{let{typed:t,config:r,Complex:n,BigNumber:i}=e;return t(Xl,{number:function(e){return e<=-1||e>=1||r.predictable?Ol(e):new n(e,0).acsc()},Complex:function(e){return e.acsc()},BigNumber:function(e){return new i(1).div(e).asin()}})})),Kl="acsch",ef=de(Kl,["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t(Kl,{number:_l,Complex:function(e){return e.acsch()},BigNumber:function(e){return new r(1).div(e).asinh()}})})),tf="asec",rf=de(tf,["typed","config","Complex","BigNumber"],(e=>{let{typed:t,config:r,Complex:n,BigNumber:i}=e;return t(tf,{number:function(e){return e<=-1||e>=1||r.predictable?zl(e):new n(e,0).asec()},Complex:function(e){return e.asec()},BigNumber:function(e){return new i(1).div(e).acos()}})})),nf="asech",of=de(nf,["typed","config","Complex","BigNumber"],(e=>{let{typed:t,config:r,Complex:n,BigNumber:i}=e;return t(nf,{number:function(e){if(e<=1&&e>=-1||r.predictable){const t=1/e;if(t>0||r.predictable)return Il(e);const i=Math.sqrt(t*t-1);return new n(Math.log(i-t),Math.PI)}return new n(e,0).asech()},Complex:function(e){return e.asech()},BigNumber:function(e){return new i(1).div(e).acosh()}})})),af="asin",sf=de(af,["typed","config","Complex"],(e=>{let{typed:t,config:r,Complex:n}=e;return t(af,{number:function(e){return e>=-1&&e<=1||r.predictable?Math.asin(e):new n(e,0).asin()},Complex:function(e){return e.asin()},BigNumber:function(e){return e.asin()}})})),uf=de("asinh",["typed"],(e=>{let{typed:t}=e;return t("asinh",{number:kl,Complex:function(e){return e.asinh()},BigNumber:function(e){return e.asinh()}})})),cf=de("atan",["typed"],(e=>{let{typed:t}=e;return t("atan",{number:function(e){return Math.atan(e)},Complex:function(e){return e.atan()},BigNumber:function(e){return e.atan()}})})),lf="atan2",ff=de(lf,["typed","matrix","equalScalar","BigNumber","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,BigNumber:i,DenseMatrix:o,concat:a}=e;const s=Uo({typed:t,equalScalar:n}),u=Lo({typed:t}),c=Aa({typed:t,equalScalar:n}),l=wo({typed:t,equalScalar:n}),f=No({typed:t,DenseMatrix:o}),p=Zo({typed:t,matrix:r,concat:a});return t(lf,{"number, number":Math.atan2,"BigNumber, BigNumber":(e,t)=>i.atan2(e,t)},p({scalar:"number | BigNumber",SS:c,DS:u,SD:s,Ss:l,sS:f}))})),pf="atanh",mf=de(pf,["typed","config","Complex"],(e=>{let{typed:t,config:r,Complex:n}=e;return t(pf,{number:function(e){return e<=1&&e>=-1||r.predictable?ql(e):new n(e,0).atanh()},Complex:function(e){return e.atanh()},BigNumber:function(e){return e.atanh()}})})),df=de("trigUnit",["typed"],(e=>{let{typed:t}=e;return{Unit:t.referToSelf((e=>r=>{if(!r.hasBase(r.constructor.BASE_UNITS.ANGLE))throw new TypeError("Unit in function cot is no angle");return t.find(e,r.valueType())(r.value)}))}})),hf=de("cos",["typed"],(e=>{let{typed:t}=e;const r=df({typed:t});return t("cos",{number:Math.cos,"Complex | BigNumber":e=>e.cos()},r)})),gf="cosh",yf=de(gf,["typed"],(e=>{let{typed:t}=e;return t(gf,{number:qe,"Complex | BigNumber":e=>e.cosh()})})),xf=de("cot",["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t("cot",{number:Rl,Complex:e=>e.cot(),BigNumber:e=>new r(1).div(e.tan())},df({typed:t}))})),bf="coth",vf=de(bf,["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t(bf,{number:Pl,Complex:e=>e.coth(),BigNumber:e=>new r(1).div(e.tanh())})})),wf=de("csc",["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t("csc",{number:jl,Complex:e=>e.csc(),BigNumber:e=>new r(1).div(e.sin())},df({typed:t}))})),Nf="csch",Ef=de(Nf,["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t(Nf,{number:Ul,Complex:e=>e.csch(),BigNumber:e=>new r(1).div(e.sinh())})})),Af=de("sec",["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t("sec",{number:Ll,Complex:e=>e.sec(),BigNumber:e=>new r(1).div(e.cos())},df({typed:t}))})),Sf="sech",Mf=de(Sf,["typed","BigNumber"],(e=>{let{typed:t,BigNumber:r}=e;return t(Sf,{number:$l,Complex:e=>e.sech(),BigNumber:e=>new r(1).div(e.cosh())})})),Cf=de("sin",["typed"],(e=>{let{typed:t}=e;const r=df({typed:t});return t("sin",{number:Math.sin,"Complex | BigNumber":e=>e.sin()},r)})),Tf="sinh",Df=de(Tf,["typed"],(e=>{let{typed:t}=e;return t(Tf,{number:Hl,"Complex | BigNumber":e=>e.sinh()})})),Ff=de("tan",["typed"],(e=>{let{typed:t}=e;const r=df({typed:t});return t("tan",{number:Math.tan,"Complex | BigNumber":e=>e.tan()},r)})),Bf=de("tanh",["typed"],(e=>{let{typed:t}=e;return t("tanh",{number:Pe,"Complex | BigNumber":e=>e.tanh()})})),Of="setCartesian",_f=de(Of,["typed","size","subset","compareNatural","Index","DenseMatrix"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o,DenseMatrix:a}=e;return t(Of,{"Array | Matrix, Array | Matrix":function(e,t){let s=[];if(0!==n(r(e),new o(0))&&0!==n(r(t),new o(0))){const r=En(Array.isArray(e)?e:e.toArray()).sort(i),n=En(Array.isArray(t)?t:t.toArray()).sort(i);s=[];for(let e=0;e<r.length;e++)for(let t=0;t<n.length;t++)s.push([r[e],n[t]])}return Array.isArray(e)&&Array.isArray(t)?s:new a(s)}})})),zf="setDifference",If=de(zf,["typed","size","subset","compareNatural","Index","DenseMatrix"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o,DenseMatrix:a}=e;return t(zf,{"Array | Matrix, Array | Matrix":function(e,t){let s;if(0===n(r(e),new o(0)))s=[];else{if(0===n(r(t),new o(0)))return En(e.toArray());{const r=Dn(En(Array.isArray(e)?e:e.toArray()).sort(i)),n=Dn(En(Array.isArray(t)?t:t.toArray()).sort(i));let o;s=[];for(let e=0;e<r.length;e++){o=!1;for(let t=0;t<n.length;t++)if(0===i(r[e].value,n[t].value)&&r[e].identifier===n[t].identifier){o=!0;break}o||s.push(r[e])}}}return Array.isArray(e)&&Array.isArray(t)?Fn(s):new a(Fn(s))}})})),kf="setDistinct",qf=de(kf,["typed","size","subset","compareNatural","Index","DenseMatrix"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o,DenseMatrix:a}=e;return t(kf,{"Array | Matrix":function(e){let t;if(0===n(r(e),new o(0)))t=[];else{const r=En(Array.isArray(e)?e:e.toArray()).sort(i);t=[],t.push(r[0]);for(let e=1;e<r.length;e++)0!==i(r[e],r[e-1])&&t.push(r[e])}return Array.isArray(e)?t:new a(t)}})})),Rf="setIntersect",Pf=de(Rf,["typed","size","subset","compareNatural","Index","DenseMatrix"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o,DenseMatrix:a}=e;return t(Rf,{"Array | Matrix, Array | Matrix":function(e,t){let s;if(0===n(r(e),new o(0))||0===n(r(t),new o(0)))s=[];else{const r=Dn(En(Array.isArray(e)?e:e.toArray()).sort(i)),n=Dn(En(Array.isArray(t)?t:t.toArray()).sort(i));s=[];for(let e=0;e<r.length;e++)for(let t=0;t<n.length;t++)if(0===i(r[e].value,n[t].value)&&r[e].identifier===n[t].identifier){s.push(r[e]);break}}return Array.isArray(e)&&Array.isArray(t)?Fn(s):new a(Fn(s))}})})),jf="setIsSubset",Uf=de(jf,["typed","size","subset","compareNatural","Index"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o}=e;return t(jf,{"Array | Matrix, Array | Matrix":function(e,t){if(0===n(r(e),new o(0)))return!0;if(0===n(r(t),new o(0)))return!1;const a=Dn(En(Array.isArray(e)?e:e.toArray()).sort(i)),s=Dn(En(Array.isArray(t)?t:t.toArray()).sort(i));let u;for(let e=0;e<a.length;e++){u=!1;for(let t=0;t<s.length;t++)if(0===i(a[e].value,s[t].value)&&a[e].identifier===s[t].identifier){u=!0;break}if(!1===u)return!1}return!0}})})),Lf="setMultiplicity",$f=de(Lf,["typed","size","subset","compareNatural","Index"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o}=e;return t(Lf,{"number | BigNumber | Fraction | Complex, Array | Matrix":function(e,t){if(0===n(r(t),new o(0)))return 0;const a=En(Array.isArray(t)?t:t.toArray());let s=0;for(let t=0;t<a.length;t++)0===i(a[t],e)&&s++;return s}})})),Hf="setPowerset",Gf=de(Hf,["typed","size","subset","compareNatural","Index"],(e=>{let{typed:t,size:r,subset:n,compareNatural:i,Index:o}=e;return t(Hf,{"Array | Matrix":function(e){if(0===n(r(e),new o(0)))return[];const t=En(Array.isArray(e)?e:e.toArray()).sort(i),s=[];let u=0;for(;u.toString(2).length<=t.length;)s.push(a(t,u.toString(2).split("").reverse())),u++;return function(e){let t=[];for(let r=e.length-1;r>0;r--)for(let n=0;n<r;n++)e[n].length>e[n+1].length&&(t=e[n],e[n]=e[n+1],e[n+1]=t);return e}(s)}});function a(e,t){const r=[];for(let n=0;n<t.length;n++)"1"===t[n]&&r.push(e[n]);return r}})),Zf="setSize",Vf=de(Zf,["typed","compareNatural"],(e=>{let{typed:t,compareNatural:r}=e;return t(Zf,{"Array | Matrix":function(e){return Array.isArray(e)?En(e).length:En(e.toArray()).length},"Array | Matrix, boolean":function(e,t){if(!1===t||0===e.length)return Array.isArray(e)?En(e).length:En(e.toArray()).length;{const t=En(Array.isArray(e)?e:e.toArray()).sort(r);let n=1;for(let e=1;e<t.length;e++)0!==r(t[e],t[e-1])&&n++;return n}}})})),Wf="setSymDifference",Yf=de(Wf,["typed","size","concat","subset","setDifference","Index"],(e=>{let{typed:t,size:r,concat:n,subset:i,setDifference:o,Index:a}=e;return t(Wf,{"Array | Matrix, Array | Matrix":function(e,t){if(0===i(r(e),new a(0)))return En(t);if(0===i(r(t),new a(0)))return En(e);const s=En(e),u=En(t);return n(o(s,u),o(u,s))}})})),Jf="setUnion",Xf=de(Jf,["typed","size","concat","subset","setIntersect","setSymDifference","Index"],(e=>{let{typed:t,size:r,concat:n,subset:i,setIntersect:o,setSymDifference:a,Index:s}=e;return t(Jf,{"Array | Matrix, Array | Matrix":function(e,t){if(0===i(r(e),new s(0)))return En(t);if(0===i(r(t),new s(0)))return En(e);const u=En(e),c=En(t);return n(a(u,c),o(u,c))}})})),Qf=de("add",["typed","matrix","addScalar","equalScalar","DenseMatrix","SparseMatrix","concat"],(e=>{let{typed:t,matrix:r,addScalar:n,equalScalar:i,DenseMatrix:o,SparseMatrix:a,concat:s}=e;const u=Wo({typed:t}),c=Yo({typed:t,equalScalar:i}),l=Jo({typed:t,DenseMatrix:o}),f=Zo({typed:t,matrix:r,concat:s});return t("add",{"any, any":n,"any, any, ...any":t.referToSelf((e=>(t,r,n)=>{let i=e(t,r);for(let t=0;t<n.length;t++)i=e(i,n[t]);return i}))},f({elop:n,DS:u,SS:c,Ss:l}))})),Kf="hypot",ep=de(Kf,["typed","abs","addScalar","divideScalar","multiplyScalar","sqrt","smaller","isPositive"],(e=>{let{typed:t,abs:r,addScalar:n,divideScalar:i,multiplyScalar:o,sqrt:a,smaller:s,isPositive:u}=e;return t(Kf,{"... number | BigNumber":c,Array:c,Matrix:e=>c(En(e.toArray()))});function c(e){let t=0,c=0;for(let a=0;a<e.length;a++){if(x(e[a]))throw new TypeError("Unexpected type of argument to hypot");const l=r(e[a]);s(c,l)?(t=o(t,o(i(c,l),i(c,l))),t=n(t,1),c=l):t=n(t,u(l)?o(i(l,c),i(l,c)):l)}return o(c,a(t))}})),tp="norm",rp=de(tp,["typed","abs","add","pow","conj","sqrt","multiply","equalScalar","larger","smaller","matrix","ctranspose","eigs"],(e=>{let{typed:t,abs:r,add:n,pow:i,conj:o,sqrt:a,multiply:s,equalScalar:u,larger:c,smaller:l,matrix:f,ctranspose:p,eigs:m}=e;return t(tp,{number:Math.abs,Complex:function(e){return e.abs()},BigNumber:function(e){return e.abs()},boolean:function(e){return Math.abs(e)},Array:function(e){return d(f(e),2)},Matrix:function(e){return d(e,2)},"Array, number | BigNumber | string":function(e,t){return d(f(e),t)},"Matrix, number | BigNumber | string":function(e,t){return d(e,t)}});function d(e,t){const f=e.size();if(1===f.length)return function(e,t){if(t===Number.POSITIVE_INFINITY||"inf"===t)return function(e){let t=0;return e.forEach((function(e){const n=r(e);c(n,t)&&(t=n)}),!0),t}(e);if(t===Number.NEGATIVE_INFINITY||"-inf"===t)return function(e){let t;return e.forEach((function(e){const n=r(e);t&&!l(n,t)||(t=n)}),!0),t||0}(e);if("fro"===t)return d(e,2);if("number"==typeof t&&!isNaN(t)){if(!u(t,0)){let o=0;return e.forEach((function(e){o=n(i(r(e),t),o)}),!0),i(o,1/t)}return Number.POSITIVE_INFINITY}throw new Error("Unsupported parameter value")}(e,t);if(2===f.length){if(f[0]&&f[1])return function(e,t){if(1===t)return function(e){const t=[];let i=0;return e.forEach((function(e,o){const a=o[1],s=n(t[a]||0,r(e));c(s,i)&&(i=s),t[a]=s}),!0),i}(e);if(t===Number.POSITIVE_INFINITY||"inf"===t)return function(e){const t=[];let i=0;return e.forEach((function(e,o){const a=o[0],s=n(t[a]||0,r(e));c(s,i)&&(i=s),t[a]=s}),!0),i}(e);if("fro"===t)return function(e){let t=0;return e.forEach((function(e,r){t=n(t,s(e,o(e)))})),r(a(t))}(e);if(2===t)return function(e){const t=e.size();if(t[0]!==t[1])throw new RangeError("Invalid matrix dimensions");const n=p(e),i=s(n,e),o=m(i).values.toArray(),u=o[o.length-1];return r(a(u))}(e);throw new Error("Unsupported parameter value "+t)}(e,t);throw new RangeError("Invalid matrix dimensions")}}})),np=de("dot",["typed","addScalar","multiplyScalar","conj","size"],(e=>{let{typed:t,addScalar:r,multiplyScalar:n,conj:i,size:o}=e;return t("dot",{"Array | DenseMatrix, Array | DenseMatrix":function(e,o){const u=a(e,o),c=E(e)?e._data:e,l=E(e)?e._datatype||e.getDataType():void 0,f=E(o)?o._data:o,p=E(o)?o._datatype||o.getDataType():void 0,m=2===s(e).length,d=2===s(o).length;let h=r,g=n;if(l&&p&&l===p&&"string"==typeof l&&"mixed"!==l){const e=l;h=t.find(r,[e,e]),g=t.find(n,[e,e])}if(!m&&!d){let e=g(i(c[0]),f[0]);for(let t=1;t<u;t++)e=h(e,g(i(c[t]),f[t]));return e}if(!m&&d){let e=g(i(c[0]),f[0][0]);for(let t=1;t<u;t++)e=h(e,g(i(c[t]),f[t][0]));return e}if(m&&!d){let e=g(i(c[0][0]),f[0]);for(let t=1;t<u;t++)e=h(e,g(i(c[t][0]),f[t]));return e}if(m&&d){let e=g(i(c[0][0]),f[0][0]);for(let t=1;t<u;t++)e=h(e,g(i(c[t][0]),f[t][0]));return e}},"SparseMatrix, SparseMatrix":function(e,t){a(e,t);const i=e._index,o=e._values,s=t._index,u=t._values;let c=0;const l=r,f=n;let p=0,m=0;for(;p<i.length&&m<s.length;){const e=i[p],t=s[m];e<t?p++:e>t?m++:e===t&&(c=l(c,f(o[p],u[m])),p++,m++)}return c}});function a(e,t){const r=s(e),n=s(t);let i,o;if(1===r.length)i=r[0];else{if(2!==r.length||1!==r[1])throw new RangeError("Expected a column vector, instead got a matrix of size ("+r.join(", ")+")");i=r[0]}if(1===n.length)o=n[0];else{if(2!==n.length||1!==n[1])throw new RangeError("Expected a column vector, instead got a matrix of size ("+n.join(", ")+")");o=n[0]}if(i!==o)throw new RangeError("Vectors must have equal length ("+i+" != "+o+")");if(0===i)throw new RangeError("Cannot calculate the dot product of empty vectors");return i}function s(e){return E(e)?e.size():o(e)}})),ip=de("trace",["typed","matrix","add"],(e=>{let{typed:t,matrix:r,add:n}=e;return t("trace",{Array:function(e){return i(r(e))},SparseMatrix:function(e){const t=e._values,r=e._index,i=e._ptr,o=e._size,a=o[0],s=o[1];if(a===s){let e=0;if(t.length>0)for(let o=0;o<s;o++){const a=i[o],s=i[o+1];for(let i=a;i<s;i++){const a=r[i];if(a===o){e=n(e,t[i]);break}if(a>o)break}}return e}throw new RangeError("Matrix must be square (size: "+Kr(o)+")")},DenseMatrix:i,any:ae});function i(e){const t=e._size,r=e._data;switch(t.length){case 1:if(1===t[0])return ae(r[0]);throw new RangeError("Matrix must be square (size: "+Kr(t)+")");case 2:{const e=t[0];if(e===t[1]){let t=0;for(let i=0;i<e;i++)t=n(t,r[i][i]);return t}throw new RangeError("Matrix must be square (size: "+Kr(t)+")")}default:throw new RangeError("Matrix must be two dimensional (size: "+Kr(t)+")")}}})),op="index",ap=de(op,["typed","Index"],(e=>{let{typed:t,Index:r}=e;return t(op,{"...number | string | BigNumber | Range | Array | Matrix":function(e){const t=e.map((function(e){return g(e)?e.toNumber():N(e)||E(e)?e.map((function(e){return g(e)?e.toNumber():e})):e})),n=new r;return r.apply(n,t),n}})})),sp=new Set(["end"]),up=de("Node",["mathWithTransform"],(e=>{let{mathWithTransform:t}=e;return class{get type(){return"Node"}get isNode(){return!0}evaluate(e){return this.compile().evaluate(e)}compile(){const e=this._compile(t,{}),r={};return{evaluate:function(t){const n=d(t);return function(e){for(const t of[...sp])if(e.has(t))throw new Error('Scope contains an illegal symbol, "'+t+'" is a reserved keyword')}(n),e(n,r,null)}}}_compile(e,t){throw new Error("Method _compile must be implemented by type "+this.type)}forEach(e){throw new Error("Cannot run forEach on a Node interface")}map(e){throw new Error("Cannot run map on a Node interface")}_ifNode(e){if(!X(e))throw new TypeError("Callback function must return a Node");return e}traverse(e){e(this,null,null),function e(t,r){t.forEach((function(t,n,i){r(t,n,i),e(t,r)}))}(this,e)}transform(e){return function t(r,n,i){const o=e(r,n,i);return o!==r?o:r.map(t)}(this,null,null)}filter(e){const t=[];return this.traverse((function(r,n,i){e(r,n,i)&&t.push(r)})),t}clone(){throw new Error("Cannot clone a Node interface")}cloneDeep(){return this.map((function(e){return e.cloneDeep()}))}equals(e){return!!e&&this.type===e.type&&ce(this,e)}toString(e){const t=this._getCustomString(e);return void 0!==t?t:this._toString(e)}_toString(){throw new Error("_toString not implemented for "+this.type)}toJSON(){throw new Error("Cannot serialize object: toJSON not implemented by "+this.type)}toHTML(e){const t=this._getCustomString(e);return void 0!==t?t:this._toHTML(e)}_toHTML(){throw new Error("_toHTML not implemented for "+this.type)}toTex(e){const t=this._getCustomString(e);return void 0!==t?t:this._toTex(e)}_toTex(e){throw new Error("_toTex not implemented for "+this.type)}_getCustomString(e){if(e&&"object"==typeof e)switch(typeof e.handler){case"object":case"undefined":return;case"function":return e.handler(this,e);default:throw new TypeError("Object or function expected as callback")}}getIdentifier(){return this.type}getContent(){return this}}}),{isClass:!0,isNode:!0});function cp(e){return cp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},cp(e)}function lp(e,t,r){return(t=function(e){var t=function(e){if("object"!=cp(e)||!e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var r=t.call(e,"string");if("object"!=cp(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==cp(t)?t:t+""}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function fp(e){return e&&e.isIndexError?new sn(e.index+1,e.min+1,void 0!==e.max?e.max+1:void 0):e}function pp(e){let{subset:t}=e;return function(e,r){try{if(Array.isArray(e))return t(e,r);if(e&&"function"==typeof e.subset)return e.subset(r);if("string"==typeof e)return t(e,r);if("object"==typeof e){if(!r.isObjectProperty())throw new TypeError("Cannot apply a numeric index as object property");return i(e,r.getObjectProperty())}throw new TypeError("Cannot apply index: unsupported type of object")}catch(e){throw fp(e)}}}const mp="AccessorNode",dp=de(mp,["subset","Node"],(e=>{let{subset:t,Node:r}=e;const n=pp({subset:t});function o(e){return!(U(e)||L(e)||Z(e)||Y(e)||Q(e)||ee(e)||ne(e))}class a extends r{constructor(e,t){if(super(),!X(e))throw new TypeError('Node expected for parameter "object"');if(!J(t))throw new TypeError('IndexNode expected for parameter "index"');this.object=e,this.index=t}get name(){return this.index?this.index.isObjectProperty()?this.index.getObjectProperty():"":this.object.name||""}get type(){return mp}get isAccessorNode(){return!0}_compile(e,t){const r=this.object._compile(e,t),o=this.index._compile(e,t);if(this.index.isObjectProperty()){const e=this.index.getObjectProperty();return function(t,n,o){return i(r(t,n,o),e)}}return function(e,t,i){const a=r(e,t,i),s=o(e,t,a);return n(a,s)}}forEach(e){e(this.object,"object",this),e(this.index,"index",this)}map(e){return new a(this._ifNode(e(this.object,"object",this)),this._ifNode(e(this.index,"index",this)))}clone(){return new a(this.object,this.index)}_toString(e){let t=this.object.toString(e);return o(this.object)&&(t="("+t+")"),t+this.index.toString(e)}_toHTML(e){let t=this.object.toHTML(e);return o(this.object)&&(t='<span class="math-parenthesis math-round-parenthesis">(</span>'+t+'<span class="math-parenthesis math-round-parenthesis">)</span>'),t+this.index.toHTML(e)}_toTex(e){let t=this.object.toTex(e);return o(this.object)&&(t="\\left(' + object + '\\right)"),t+this.index.toTex(e)}toJSON(){return{mathjs:mp,object:this.object,index:this.index}}static fromJSON(e){return new a(e.object,e.index)}}return lp(a,"name",mp),a}),{isClass:!0,isNode:!0}),hp="ArrayNode",gp=de(hp,["Node"],(e=>{let{Node:t}=e;class r extends t{constructor(e){if(super(),this.items=e||[],!Array.isArray(this.items)||!this.items.every(X))throw new TypeError("Array containing Nodes expected")}get type(){return hp}get isArrayNode(){return!0}_compile(e,t){const r=An(this.items,(function(r){return r._compile(e,t)}));if("Array"!==e.config.matrix){const t=e.matrix;return function(e,n,i){return t(An(r,(function(t){return t(e,n,i)})))}}return function(e,t,n){return An(r,(function(r){return r(e,t,n)}))}}forEach(e){for(let t=0;t<this.items.length;t++)e(this.items[t],"items["+t+"]",this)}map(e){const t=[];for(let r=0;r<this.items.length;r++)t[r]=this._ifNode(e(this.items[r],"items["+r+"]",this));return new r(t)}clone(){return new r(this.items.slice(0))}_toString(e){return"["+this.items.map((function(t){return t.toString(e)})).join(", ")+"]"}toJSON(){return{mathjs:hp,items:this.items}}static fromJSON(e){return new r(e.items)}_toHTML(e){return'<span class="math-parenthesis math-square-parenthesis">[</span>'+this.items.map((function(t){return t.toHTML(e)})).join('<span class="math-separator">,</span>')+'<span class="math-parenthesis math-square-parenthesis">]</span>'}_toTex(e){return function t(r,n){const i=r.some(L)&&!r.every(L),o=n||i,a=o?"&":"\\\\",s=r.map((function(r){return r.items?t(r.items,!n):r.toTex(e)})).join(a);return i||!o||o&&!n?"\\begin{bmatrix}"+s+"\\end{bmatrix}":s}(this.items,!1)}}return lp(r,"name",hp),r}),{isClass:!0,isNode:!0}),yp=[{AssignmentNode:{},FunctionAssignmentNode:{}},{ConditionalNode:{latexLeftParens:!1,latexRightParens:!1,latexParens:!1}},{"OperatorNode:or":{op:"or",associativity:"left",associativeWith:[]}},{"OperatorNode:xor":{op:"xor",associativity:"left",associativeWith:[]}},{"OperatorNode:and":{op:"and",associativity:"left",associativeWith:[]}},{"OperatorNode:bitOr":{op:"|",associativity:"left",associativeWith:[]}},{"OperatorNode:bitXor":{op:"^|",associativity:"left",associativeWith:[]}},{"OperatorNode:bitAnd":{op:"&",associativity:"left",associativeWith:[]}},{"OperatorNode:equal":{op:"==",associativity:"left",associativeWith:[]},"OperatorNode:unequal":{op:"!=",associativity:"left",associativeWith:[]},"OperatorNode:smaller":{op:"<",associativity:"left",associativeWith:[]},"OperatorNode:larger":{op:">",associativity:"left",associativeWith:[]},"OperatorNode:smallerEq":{op:"<=",associativity:"left",associativeWith:[]},"OperatorNode:largerEq":{op:">=",associativity:"left",associativeWith:[]},RelationalNode:{associativity:"left",associativeWith:[]}},{"OperatorNode:leftShift":{op:"<<",associativity:"left",associativeWith:[]},"OperatorNode:rightArithShift":{op:">>",associativity:"left",associativeWith:[]},"OperatorNode:rightLogShift":{op:">>>",associativity:"left",associativeWith:[]}},{"OperatorNode:to":{op:"to",associativity:"left",associativeWith:[]}},{RangeNode:{}},{"OperatorNode:add":{op:"+",associativity:"left",associativeWith:["OperatorNode:add","OperatorNode:subtract"]},"OperatorNode:subtract":{op:"-",associativity:"left",associativeWith:[]}},{"OperatorNode:multiply":{op:"*",associativity:"left",associativeWith:["OperatorNode:multiply","OperatorNode:divide","Operator:dotMultiply","Operator:dotDivide"]},"OperatorNode:divide":{op:"/",associativity:"left",associativeWith:[],latexLeftParens:!1,latexRightParens:!1,latexParens:!1},"OperatorNode:dotMultiply":{op:".*",associativity:"left",associativeWith:["OperatorNode:multiply","OperatorNode:divide","OperatorNode:dotMultiply","OperatorNode:doDivide"]},"OperatorNode:dotDivide":{op:"./",associativity:"left",associativeWith:[]},"OperatorNode:mod":{op:"mod",associativity:"left",associativeWith:[]}},{"OperatorNode:multiply":{associativity:"left",associativeWith:["OperatorNode:multiply","OperatorNode:divide","Operator:dotMultiply","Operator:dotDivide"]}},{"OperatorNode:unaryPlus":{op:"+",associativity:"right"},"OperatorNode:unaryMinus":{op:"-",associativity:"right"},"OperatorNode:bitNot":{op:"~",associativity:"right"},"OperatorNode:not":{op:"not",associativity:"right"}},{"OperatorNode:pow":{op:"^",associativity:"right",associativeWith:[],latexRightParens:!1},"OperatorNode:dotPow":{op:".^",associativity:"right",associativeWith:[]}},{"OperatorNode:factorial":{op:"!",associativity:"left"}},{"OperatorNode:ctranspose":{op:"'",associativity:"left"}}];function xp(e,t){if(!t||"auto"!==t)return e;let r=e;for(;ee(r);)r=r.content;return r}function bp(e,t,r,n){let i=e;"keep"!==t&&(i=e.getContent());const o=i.getIdentifier();let a=null;for(let e=0;e<yp.length;e++)if(o in yp[e]){a=e;break}if("OperatorNode:multiply"===o&&i.implicit&&"show"!==r){const e=xp(i.args[0],t);Z(e)&&n&&"OperatorNode:divide"===n.getIdentifier()&&V(xp(n.args[0],t))||"OperatorNode:divide"===e.getIdentifier()&&V(xp(e.args[0],t))&&Z(xp(e.args[1]))||(a+=1)}return a}function vp(e,t){let r=e;"keep"!==t&&(r=e.getContent());const n=r.getIdentifier(),i=bp(r,t);if(null===i)return null;const o=yp[i][n];if(me(o,"associativity")){if("left"===o.associativity)return"left";if("right"===o.associativity)return"right";throw Error("'"+n+"' has the invalid associativity '"+o.associativity+"'.")}return null}function wp(e,t,r){const n="keep"!==r?e.getContent():e,i="keep"!==r?e.getContent():t,o=n.getIdentifier(),a=i.getIdentifier(),s=bp(n,r);if(null===s)return null;const u=yp[s][o];if(me(u,"associativeWith")&&u.associativeWith instanceof Array){for(let e=0;e<u.associativeWith.length;e++)if(u.associativeWith[e]===a)return!0;return!1}return null}const Np="AssignmentNode",Ep=de(Np,["subset","?matrix","Node"],(e=>{let{subset:t,matrix:r,Node:n}=e;const a=pp({subset:t}),s=function(e){let{subset:t,matrix:r}=e;return function(e,n,i){try{if(Array.isArray(e))return r(e).subset(n,i).valueOf().forEach(((t,r)=>{e[r]=t})),e;if(e&&"function"==typeof e.subset)return e.subset(n,i);if("string"==typeof e)return t(e,n,i);if("object"==typeof e){if(!n.isObjectProperty())throw TypeError("Cannot apply a numeric index as object property");return o(e,n.getObjectProperty(),i),e}throw new TypeError("Cannot apply index: unsupported type of object")}catch(e){throw fp(e)}}}({subset:t,matrix:r});function u(e,t,r){t||(t="keep");const n=bp(e,t,r),i=bp(e.value,t,r);return"all"===t||null!==i&&i<=n}class c extends n{constructor(e,t,r){if(super(),this.object=e,this.index=r?t:null,this.value=r||t,!ne(e)&&!U(e))throw new TypeError('SymbolNode or AccessorNode expected as "object"');if(ne(e)&&"end"===e.name)throw new Error('Cannot assign to symbol "end"');if(this.index&&!J(this.index))throw new TypeError('IndexNode expected as "index"');if(!X(this.value))throw new TypeError('Node expected as "value"')}get name(){return this.index?this.index.isObjectProperty()?this.index.getObjectProperty():"":this.object.name||""}get type(){return Np}get isAssignmentNode(){return!0}_compile(e,t){const r=this.object._compile(e,t),n=this.index?this.index._compile(e,t):null,u=this.value._compile(e,t),c=this.object.name;if(this.index){if(this.index.isObjectProperty()){const e=this.index.getObjectProperty();return function(t,n,i){const a=r(t,n,i),s=u(t,n,i);return o(a,e,s),s}}if(ne(this.object))return function(e,t,i){const o=r(e,t,i),a=u(e,t,i),l=n(e,t,o);return e.set(c,s(o,l,a)),a};{const r=this.object.object._compile(e,t);if(this.object.index.isObjectProperty()){const e=this.object.index.getObjectProperty();return function(t,a,c){const l=r(t,a,c),f=i(l,e),p=n(t,a,f),m=u(t,a,c);return o(l,e,s(f,p,m)),m}}{const i=this.object.index._compile(e,t);return function(e,t,o){const c=r(e,t,o),l=i(e,t,c),f=a(c,l),p=n(e,t,f),m=u(e,t,o);return s(c,l,s(f,p,m)),m}}}}if(!ne(this.object))throw new TypeError("SymbolNode expected as object");return function(e,t,r){const n=u(e,t,r);return e.set(c,n),n}}forEach(e){e(this.object,"object",this),this.index&&e(this.index,"index",this),e(this.value,"value",this)}map(e){const t=this._ifNode(e(this.object,"object",this)),r=this.index?this._ifNode(e(this.index,"index",this)):null,n=this._ifNode(e(this.value,"value",this));return new c(t,r,n)}clone(){return new c(this.object,this.index,this.value)}_toString(e){const t=this.object.toString(e),r=this.index?this.index.toString(e):"";let n=this.value.toString(e);return u(this,e&&e.parenthesis,e&&e.implicit)&&(n="("+n+")"),t+r+" = "+n}toJSON(){return{mathjs:Np,object:this.object,index:this.index,value:this.value}}static fromJSON(e){return new c(e.object,e.index,e.value)}_toHTML(e){const t=this.object.toHTML(e),r=this.index?this.index.toHTML(e):"";let n=this.value.toHTML(e);return u(this,e&&e.parenthesis,e&&e.implicit)&&(n='<span class="math-paranthesis math-round-parenthesis">(</span>'+n+'<span class="math-paranthesis math-round-parenthesis">)</span>'),t+r+'<span class="math-operator math-assignment-operator math-variable-assignment-operator math-binary-operator">=</span>'+n}_toTex(e){const t=this.object.toTex(e),r=this.index?this.index.toTex(e):"";let n=this.value.toTex(e);return u(this,e&&e.parenthesis,e&&e.implicit)&&(n=`\\left(${n}\\right)`),t+r+"="+n}}return lp(c,"name",Np),c}),{isClass:!0,isNode:!0}),Ap="BlockNode",Sp=de(Ap,["ResultSet","Node"],(e=>{let{ResultSet:t,Node:r}=e;class n extends r{constructor(e){if(super(),!Array.isArray(e))throw new Error("Array expected");this.blocks=e.map((function(e){const t=e&&e.node,r=!e||void 0===e.visible||e.visible;if(!X(t))throw new TypeError('Property "node" must be a Node');if("boolean"!=typeof r)throw new TypeError('Property "visible" must be a boolean');return{node:t,visible:r}}))}get type(){return Ap}get isBlockNode(){return!0}_compile(e,r){const n=An(this.blocks,(function(t){return{evaluate:t.node._compile(e,r),visible:t.visible}}));return function(e,r,i){const o=[];return Sn(n,(function(t){const n=t.evaluate(e,r,i);t.visible&&o.push(n)})),new t(o)}}forEach(e){for(let t=0;t<this.blocks.length;t++)e(this.blocks[t].node,"blocks["+t+"].node",this)}map(e){const t=[];for(let r=0;r<this.blocks.length;r++){const n=this.blocks[r],i=this._ifNode(e(n.node,"blocks["+r+"].node",this));t[r]={node:i,visible:n.visible}}return new n(t)}clone(){const e=this.blocks.map((function(e){return{node:e.node,visible:e.visible}}));return new n(e)}_toString(e){return this.blocks.map((function(t){return t.node.toString(e)+(t.visible?"":";")})).join("\n")}toJSON(){return{mathjs:Ap,blocks:this.blocks}}static fromJSON(e){return new n(e.blocks)}_toHTML(e){return this.blocks.map((function(t){return t.node.toHTML(e)+(t.visible?"":'<span class="math-separator">;</span>')})).join('<span class="math-separator"><br /></span>')}_toTex(e){return this.blocks.map((function(t){return t.node.toTex(e)+(t.visible?"":";")})).join("\\;\\;\n")}}return lp(n,"name",Ap),n}),{isClass:!0,isNode:!0}),Mp="ConditionalNode",Cp=de(Mp,["Node"],(e=>{let{Node:t}=e;class r extends t{constructor(e,t,r){if(super(),!X(e))throw new TypeError("Parameter condition must be a Node");if(!X(t))throw new TypeError("Parameter trueExpr must be a Node");if(!X(r))throw new TypeError("Parameter falseExpr must be a Node");this.condition=e,this.trueExpr=t,this.falseExpr=r}get type(){return Mp}get isConditionalNode(){return!0}_compile(e,t){const r=this.condition._compile(e,t),n=this.trueExpr._compile(e,t),i=this.falseExpr._compile(e,t);return function(e,t,o){return function(e){if("number"==typeof e||"boolean"==typeof e||"string"==typeof e)return!!e;if(e){if(g(e))return!e.isZero();if(x(e))return!(!e.re&&!e.im);if(v(e))return!!e.value}if(null==e)return!1;throw new TypeError('Unsupported type of condition "'+oe(e)+'"')}(r(e,t,o))?n(e,t,o):i(e,t,o)}}forEach(e){e(this.condition,"condition",this),e(this.trueExpr,"trueExpr",this),e(this.falseExpr,"falseExpr",this)}map(e){return new r(this._ifNode(e(this.condition,"condition",this)),this._ifNode(e(this.trueExpr,"trueExpr",this)),this._ifNode(e(this.falseExpr,"falseExpr",this)))}clone(){return new r(this.condition,this.trueExpr,this.falseExpr)}_toString(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=bp(this,t,e&&e.implicit);let n=this.condition.toString(e);const i=bp(this.condition,t,e&&e.implicit);("all"===t||"OperatorNode"===this.condition.type||null!==i&&i<=r)&&(n="("+n+")");let o=this.trueExpr.toString(e);const a=bp(this.trueExpr,t,e&&e.implicit);("all"===t||"OperatorNode"===this.trueExpr.type||null!==a&&a<=r)&&(o="("+o+")");let s=this.falseExpr.toString(e);const u=bp(this.falseExpr,t,e&&e.implicit);return("all"===t||"OperatorNode"===this.falseExpr.type||null!==u&&u<=r)&&(s="("+s+")"),n+" ? "+o+" : "+s}toJSON(){return{mathjs:Mp,condition:this.condition,trueExpr:this.trueExpr,falseExpr:this.falseExpr}}static fromJSON(e){return new r(e.condition,e.trueExpr,e.falseExpr)}_toHTML(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=bp(this,t,e&&e.implicit);let n=this.condition.toHTML(e);const i=bp(this.condition,t,e&&e.implicit);("all"===t||"OperatorNode"===this.condition.type||null!==i&&i<=r)&&(n='<span class="math-parenthesis math-round-parenthesis">(</span>'+n+'<span class="math-parenthesis math-round-parenthesis">)</span>');let o=this.trueExpr.toHTML(e);const a=bp(this.trueExpr,t,e&&e.implicit);("all"===t||"OperatorNode"===this.trueExpr.type||null!==a&&a<=r)&&(o='<span class="math-parenthesis math-round-parenthesis">(</span>'+o+'<span class="math-parenthesis math-round-parenthesis">)</span>');let s=this.falseExpr.toHTML(e);const u=bp(this.falseExpr,t,e&&e.implicit);return("all"===t||"OperatorNode"===this.falseExpr.type||null!==u&&u<=r)&&(s='<span class="math-parenthesis math-round-parenthesis">(</span>'+s+'<span class="math-parenthesis math-round-parenthesis">)</span>'),n+'<span class="math-operator math-conditional-operator">?</span>'+o+'<span class="math-operator math-conditional-operator">:</span>'+s}_toTex(e){return"\\begin{cases} {"+this.trueExpr.toTex(e)+"}, &\\quad{\\text{if }\\;"+this.condition.toTex(e)+"}\\\\{"+this.falseExpr.toTex(e)+"}, &\\quad{\\text{otherwise}}\\end{cases}"}}return lp(r,"name",Mp),r}),{isClass:!0,isNode:!0});var Tp=r(3144);const Dp={Alpha:"A",alpha:"\\alpha",Beta:"B",beta:"\\beta",Gamma:"\\Gamma",gamma:"\\gamma",Delta:"\\Delta",delta:"\\delta",Epsilon:"E",epsilon:"\\epsilon",varepsilon:"\\varepsilon",Zeta:"Z",zeta:"\\zeta",Eta:"H",eta:"\\eta",Theta:"\\Theta",theta:"\\theta",vartheta:"\\vartheta",Iota:"I",iota:"\\iota",Kappa:"K",kappa:"\\kappa",varkappa:"\\varkappa",Lambda:"\\Lambda",lambda:"\\lambda",Mu:"M",mu:"\\mu",Nu:"N",nu:"\\nu",Xi:"\\Xi",xi:"\\xi",Omicron:"O",omicron:"o",Pi:"\\Pi",pi:"\\pi",varpi:"\\varpi",Rho:"P",rho:"\\rho",varrho:"\\varrho",Sigma:"\\Sigma",sigma:"\\sigma",varsigma:"\\varsigma",Tau:"T",tau:"\\tau",Upsilon:"\\Upsilon",upsilon:"\\upsilon",Phi:"\\Phi",phi:"\\phi",varphi:"\\varphi",Chi:"X",chi:"\\chi",Psi:"\\Psi",psi:"\\psi",Omega:"\\Omega",omega:"\\omega",true:"\\mathrm{True}",false:"\\mathrm{False}",i:"i",inf:"\\infty",Inf:"\\infty",infinity:"\\infty",Infinity:"\\infty",oo:"\\infty",lim:"\\lim",undefined:"\\mathbf{?}"},Fp={transpose:"^\\top",ctranspose:"^H",factorial:"!",pow:"^",dotPow:".^\\wedge",unaryPlus:"+",unaryMinus:"-",bitNot:"\\~",not:"\\neg",multiply:"\\cdot",divide:"\\frac",dotMultiply:".\\cdot",dotDivide:".:",mod:"\\mod",add:"+",subtract:"-",to:"\\rightarrow",leftShift:"<<",rightArithShift:">>",rightLogShift:">>>",equal:"=",unequal:"\\neq",smaller:"<",larger:">",smallerEq:"\\leq",largerEq:"\\geq",bitAnd:"\\&",bitXor:"\\underline{|}",bitOr:"|",and:"\\wedge",xor:"\\veebar",or:"\\vee"},Bp={abs:{1:"\\left|${args[0]}\\right|"},add:{2:`\\left(\${args[0]}${Fp.add}\${args[1]}\\right)`},cbrt:{1:"\\sqrt[3]{${args[0]}}"},ceil:{1:"\\left\\lceil${args[0]}\\right\\rceil"},cube:{1:"\\left(${args[0]}\\right)^3"},divide:{2:"\\frac{${args[0]}}{${args[1]}}"},dotDivide:{2:`\\left(\${args[0]}${Fp.dotDivide}\${args[1]}\\right)`},dotMultiply:{2:`\\left(\${args[0]}${Fp.dotMultiply}\${args[1]}\\right)`},dotPow:{2:`\\left(\${args[0]}${Fp.dotPow}\${args[1]}\\right)`},exp:{1:"\\exp\\left(${args[0]}\\right)"},expm1:`\\left(e${Fp.pow}{\${args[0]}}-1\\right)`,fix:{1:"\\mathrm{${name}}\\left(${args[0]}\\right)"},floor:{1:"\\left\\lfloor${args[0]}\\right\\rfloor"},gcd:"\\gcd\\left(${args}\\right)",hypot:"\\hypot\\left(${args}\\right)",log:{1:"\\ln\\left(${args[0]}\\right)",2:"\\log_{${args[1]}}\\left(${args[0]}\\right)"},log10:{1:"\\log_{10}\\left(${args[0]}\\right)"},log1p:{1:"\\ln\\left(${args[0]}+1\\right)",2:"\\log_{${args[1]}}\\left(${args[0]}+1\\right)"},log2:"\\log_{2}\\left(${args[0]}\\right)",mod:{2:`\\left(\${args[0]}${Fp.mod}\${args[1]}\\right)`},multiply:{2:`\\left(\${args[0]}${Fp.multiply}\${args[1]}\\right)`},norm:{1:"\\left\\|${args[0]}\\right\\|",2:void 0},nthRoot:{2:"\\sqrt[${args[1]}]{${args[0]}}"},nthRoots:{2:"\\{y : $y^{args[1]} = {${args[0]}}\\}"},pow:{2:`\\left(\${args[0]}\\right)${Fp.pow}{\${args[1]}}`},round:{1:"\\left\\lfloor${args[0]}\\right\\rceil",2:void 0},sign:{1:"\\mathrm{${name}}\\left(${args[0]}\\right)"},sqrt:{1:"\\sqrt{${args[0]}}"},square:{1:"\\left(${args[0]}\\right)^2"},subtract:{2:`\\left(\${args[0]}${Fp.subtract}\${args[1]}\\right)`},unaryMinus:{1:`${Fp.unaryMinus}\\left(\${args[0]}\\right)`},unaryPlus:{1:`${Fp.unaryPlus}\\left(\${args[0]}\\right)`},bitAnd:{2:`\\left(\${args[0]}${Fp.bitAnd}\${args[1]}\\right)`},bitNot:{1:Fp.bitNot+"\\left(${args[0]}\\right)"},bitOr:{2:`\\left(\${args[0]}${Fp.bitOr}\${args[1]}\\right)`},bitXor:{2:`\\left(\${args[0]}${Fp.bitXor}\${args[1]}\\right)`},leftShift:{2:`\\left(\${args[0]}${Fp.leftShift}\${args[1]}\\right)`},rightArithShift:{2:`\\left(\${args[0]}${Fp.rightArithShift}\${args[1]}\\right)`},rightLogShift:{2:`\\left(\${args[0]}${Fp.rightLogShift}\${args[1]}\\right)`},bellNumbers:{1:"\\mathrm{B}_{${args[0]}}"},catalan:{1:"\\mathrm{C}_{${args[0]}}"},stirlingS2:{2:"\\mathrm{S}\\left(${args}\\right)"},arg:{1:"\\arg\\left(${args[0]}\\right)"},conj:{1:"\\left(${args[0]}\\right)^*"},im:{1:"\\Im\\left\\lbrace${args[0]}\\right\\rbrace"},re:{1:"\\Re\\left\\lbrace${args[0]}\\right\\rbrace"},and:{2:`\\left(\${args[0]}${Fp.and}\${args[1]}\\right)`},not:{1:Fp.not+"\\left(${args[0]}\\right)"},or:{2:`\\left(\${args[0]}${Fp.or}\${args[1]}\\right)`},xor:{2:`\\left(\${args[0]}${Fp.xor}\${args[1]}\\right)`},cross:{2:"\\left(${args[0]}\\right)\\times\\left(${args[1]}\\right)"},ctranspose:{1:`\\left(\${args[0]}\\right)${Fp.ctranspose}`},det:{1:"\\det\\left(${args[0]}\\right)"},dot:{2:"\\left(${args[0]}\\cdot${args[1]}\\right)"},expm:{1:"\\exp\\left(${args[0]}\\right)"},inv:{1:"\\left(${args[0]}\\right)^{-1}"},pinv:{1:"\\left(${args[0]}\\right)^{+}"},sqrtm:{1:`{\${args[0]}}${Fp.pow}{\\frac{1}{2}}`},trace:{1:"\\mathrm{tr}\\left(${args[0]}\\right)"},transpose:{1:`\\left(\${args[0]}\\right)${Fp.transpose}`},combinations:{2:"\\binom{${args[0]}}{${args[1]}}"},combinationsWithRep:{2:"\\left(\\!\\!{\\binom{${args[0]}}{${args[1]}}}\\!\\!\\right)"},factorial:{1:`\\left(\${args[0]}\\right)${Fp.factorial}`},gamma:{1:"\\Gamma\\left(${args[0]}\\right)"},lgamma:{1:"\\ln\\Gamma\\left(${args[0]}\\right)"},equal:{2:`\\left(\${args[0]}${Fp.equal}\${args[1]}\\right)`},larger:{2:`\\left(\${args[0]}${Fp.larger}\${args[1]}\\right)`},largerEq:{2:`\\left(\${args[0]}${Fp.largerEq}\${args[1]}\\right)`},smaller:{2:`\\left(\${args[0]}${Fp.smaller}\${args[1]}\\right)`},smallerEq:{2:`\\left(\${args[0]}${Fp.smallerEq}\${args[1]}\\right)`},unequal:{2:`\\left(\${args[0]}${Fp.unequal}\${args[1]}\\right)`},erf:{1:"erf\\left(${args[0]}\\right)"},max:"\\max\\left(${args}\\right)",min:"\\min\\left(${args}\\right)",variance:"\\mathrm{Var}\\left(${args}\\right)",acos:{1:"\\cos^{-1}\\left(${args[0]}\\right)"},acosh:{1:"\\cosh^{-1}\\left(${args[0]}\\right)"},acot:{1:"\\cot^{-1}\\left(${args[0]}\\right)"},acoth:{1:"\\coth^{-1}\\left(${args[0]}\\right)"},acsc:{1:"\\csc^{-1}\\left(${args[0]}\\right)"},acsch:{1:"\\mathrm{csch}^{-1}\\left(${args[0]}\\right)"},asec:{1:"\\sec^{-1}\\left(${args[0]}\\right)"},asech:{1:"\\mathrm{sech}^{-1}\\left(${args[0]}\\right)"},asin:{1:"\\sin^{-1}\\left(${args[0]}\\right)"},asinh:{1:"\\sinh^{-1}\\left(${args[0]}\\right)"},atan:{1:"\\tan^{-1}\\left(${args[0]}\\right)"},atan2:{2:"\\mathrm{atan2}\\left(${args}\\right)"},atanh:{1:"\\tanh^{-1}\\left(${args[0]}\\right)"},cos:{1:"\\cos\\left(${args[0]}\\right)"},cosh:{1:"\\cosh\\left(${args[0]}\\right)"},cot:{1:"\\cot\\left(${args[0]}\\right)"},coth:{1:"\\coth\\left(${args[0]}\\right)"},csc:{1:"\\csc\\left(${args[0]}\\right)"},csch:{1:"\\mathrm{csch}\\left(${args[0]}\\right)"},sec:{1:"\\sec\\left(${args[0]}\\right)"},sech:{1:"\\mathrm{sech}\\left(${args[0]}\\right)"},sin:{1:"\\sin\\left(${args[0]}\\right)"},sinh:{1:"\\sinh\\left(${args[0]}\\right)"},tan:{1:"\\tan\\left(${args[0]}\\right)"},tanh:{1:"\\tanh\\left(${args[0]}\\right)"},to:{2:`\\left(\${args[0]}${Fp.to}\${args[1]}\\right)`},numeric:function(e,t){return e.args[0].toTex()},number:{0:"0",1:"\\left(${args[0]}\\right)",2:"\\left(\\left(${args[0]}\\right)${args[1]}\\right)"},string:{0:'\\mathtt{""}',1:"\\mathrm{string}\\left(${args[0]}\\right)"},bignumber:{0:"0",1:"\\left(${args[0]}\\right)"},bigint:{0:"0",1:"\\left(${args[0]}\\right)"},complex:{0:"0",1:"\\left(${args[0]}\\right)",2:`\\left(\\left(\${args[0]}\\right)+${Dp.i}\\cdot\\left(\${args[1]}\\right)\\right)`},matrix:{0:"\\begin{bmatrix}\\end{bmatrix}",1:"\\left(${args[0]}\\right)",2:"\\left(${args[0]}\\right)"},sparse:{0:"\\begin{bsparse}\\end{bsparse}",1:"\\left(${args[0]}\\right)"},unit:{1:"\\left(${args[0]}\\right)",2:"\\left(\\left(${args[0]}\\right)${args[1]}\\right)"}},Op={deg:"^\\circ"};function _p(e){return Tp(e,{preserveFormatting:!0})}function zp(e,t){return(t=void 0!==t&&t)?me(Op,e)?Op[e]:"\\mathrm{"+_p(e)+"}":me(Dp,e)?Dp[e]:_p(e)}const Ip="ConstantNode",kp=de(Ip,["Node"],(e=>{let{Node:t}=e;class r extends t{constructor(e){super(),this.value=e}get type(){return Ip}get isConstantNode(){return!0}_compile(e,t){const r=this.value;return function(){return r}}forEach(e){}map(e){return this.clone()}clone(){return new r(this.value)}_toString(e){return Kr(this.value,e)}_toHTML(e){const t=this._toString(e);switch(oe(this.value)){case"number":case"bigint":case"BigNumber":case"Fraction":return'<span class="math-number">'+t+"</span>";case"string":return'<span class="math-string">'+t+"</span>";case"boolean":return'<span class="math-boolean">'+t+"</span>";case"null":return'<span class="math-null-symbol">'+t+"</span>";case"undefined":return'<span class="math-undefined">'+t+"</span>";default:return'<span class="math-symbol">'+t+"</span>"}}toJSON(){return{mathjs:Ip,value:this.value}}static fromJSON(e){return new r(e.value)}_toTex(e){const t=this._toString(e),r=oe(this.value);switch(r){case"string":return"\\mathtt{"+_p(t)+"}";case"number":case"BigNumber":{if(!("BigNumber"===r?this.value.isFinite():isFinite(this.value)))return this.value.valueOf()<0?"-\\infty":"\\infty";const e=t.toLowerCase().indexOf("e");return-1!==e?t.substring(0,e)+"\\cdot10^{"+t.substring(e+1)+"}":t}case"bigint":return t.toString();case"Fraction":return this.value.toLatex();default:return t}}}return lp(r,"name",Ip),r}),{isClass:!0,isNode:!0}),qp="FunctionAssignmentNode",Rp=de(qp,["typed","Node"],(e=>{let{typed:t,Node:r}=e;function n(e,t,r){const n=bp(e,t,r),i=bp(e.expr,t,r);return"all"===t||null!==i&&i<=n}class i extends r{constructor(e,t,r){if(super(),"string"!=typeof e)throw new TypeError('String expected for parameter "name"');if(!Array.isArray(t))throw new TypeError('Array containing strings or objects expected for parameter "params"');if(!X(r))throw new TypeError('Node expected for parameter "expr"');if(sp.has(e))throw new Error('Illegal function name, "'+e+'" is a reserved keyword');const n=new Set;for(const e of t){const t="string"==typeof e?e:e.name;if(n.has(t))throw new Error(`Duplicate parameter name "${t}"`);n.add(t)}this.name=e,this.params=t.map((function(e){return e&&e.name||e})),this.types=t.map((function(e){return e&&e.type||"any"})),this.expr=r}get type(){return qp}get isFunctionAssignmentNode(){return!0}_compile(e,r){const n=Object.create(r);Sn(this.params,(function(e){n[e]=!0}));const i=this.expr._compile(e,n),o=this.name,a=this.params,s=Tn(this.types,","),u=o+"("+Tn(this.params,", ")+")";return function(e,r,n){const c={};c[s]=function(){const t=Object.create(r);for(let e=0;e<a.length;e++)t[a[e]]=arguments[e];return i(e,t,n)};const l=t(o,c);return l.syntax=u,e.set(o,l),l}}forEach(e){e(this.expr,"expr",this)}map(e){const t=this._ifNode(e(this.expr,"expr",this));return new i(this.name,this.params.slice(0),t)}clone(){return new i(this.name,this.params.slice(0),this.expr)}_toString(e){const t=e&&e.parenthesis?e.parenthesis:"keep";let r=this.expr.toString(e);return n(this,t,e&&e.implicit)&&(r="("+r+")"),this.name+"("+this.params.join(", ")+") = "+r}toJSON(){const e=this.types;return{mathjs:qp,name:this.name,params:this.params.map((function(t,r){return{name:t,type:e[r]}})),expr:this.expr}}static fromJSON(e){return new i(e.name,e.params,e.expr)}_toHTML(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=[];for(let e=0;e<this.params.length;e++)r.push('<span class="math-symbol math-parameter">'+rn(this.params[e])+"</span>");let i=this.expr.toHTML(e);return n(this,t,e&&e.implicit)&&(i='<span class="math-parenthesis math-round-parenthesis">(</span>'+i+'<span class="math-parenthesis math-round-parenthesis">)</span>'),'<span class="math-function">'+rn(this.name)+'</span><span class="math-parenthesis math-round-parenthesis">(</span>'+r.join('<span class="math-separator">,</span>')+'<span class="math-parenthesis math-round-parenthesis">)</span><span class="math-operator math-assignment-operator math-variable-assignment-operator math-binary-operator">=</span>'+i}_toTex(e){const t=e&&e.parenthesis?e.parenthesis:"keep";let r=this.expr.toTex(e);return n(this,t,e&&e.implicit)&&(r=`\\left(${r}\\right)`),"\\mathrm{"+this.name+"}\\left("+this.params.map(zp).join(",")+"\\right)="+r}}return lp(i,"name",qp),i}),{isClass:!0,isNode:!0}),Pp="IndexNode",jp=de(Pp,["Node","size"],(e=>{let{Node:t,size:r}=e;class n extends t{constructor(e,t){if(super(),this.dimensions=e,this.dotNotation=t||!1,!Array.isArray(e)||!e.every(X))throw new TypeError('Array containing Nodes expected for parameter "dimensions"');if(this.dotNotation&&!this.isObjectProperty())throw new Error("dotNotation only applicable for object properties")}get type(){return Pp}get isIndexNode(){return!0}_compile(e,t){const n=An(this.dimensions,(function(n,i){if(n.filter((e=>e.isSymbolNode&&"end"===e.name)).length>0){const o=Object.create(t);o.end=!0;const a=n._compile(e,o);return function(e,t,n){if(!E(n)&&!N(n)&&!w(n))throw new TypeError('Cannot resolve "end": context must be a Matrix, Array, or string but is '+oe(n));const o=r(n).valueOf(),s=Object.create(t);return s.end=o[i],a(e,s,n)}}return n._compile(e,t)})),o=i(e,"index");return function(e,t,r){const i=An(n,(function(n){return n(e,t,r)}));return o(...i)}}forEach(e){for(let t=0;t<this.dimensions.length;t++)e(this.dimensions[t],"dimensions["+t+"]",this)}map(e){const t=[];for(let r=0;r<this.dimensions.length;r++)t[r]=this._ifNode(e(this.dimensions[r],"dimensions["+r+"]",this));return new n(t,this.dotNotation)}clone(){return new n(this.dimensions.slice(0),this.dotNotation)}isObjectProperty(){return 1===this.dimensions.length&&Z(this.dimensions[0])&&"string"==typeof this.dimensions[0].value}getObjectProperty(){return this.isObjectProperty()?this.dimensions[0].value:null}_toString(e){return this.dotNotation?"."+this.getObjectProperty():"["+this.dimensions.join(", ")+"]"}toJSON(){return{mathjs:Pp,dimensions:this.dimensions,dotNotation:this.dotNotation}}static fromJSON(e){return new n(e.dimensions,e.dotNotation)}_toHTML(e){const t=[];for(let e=0;e<this.dimensions.length;e++)t[e]=this.dimensions[e].toHTML();return this.dotNotation?'<span class="math-operator math-accessor-operator">.</span><span class="math-symbol math-property">'+rn(this.getObjectProperty())+"</span>":'<span class="math-parenthesis math-square-parenthesis">[</span>'+t.join('<span class="math-separator">,</span>')+'<span class="math-parenthesis math-square-parenthesis">]</span>'}_toTex(e){const t=this.dimensions.map((function(t){return t.toTex(e)}));return this.dotNotation?"."+this.getObjectProperty():"_{"+t.join(",")+"}"}}return lp(n,"name",Pp),n}),{isClass:!0,isNode:!0}),Up="ObjectNode",Lp=de(Up,["Node"],(e=>{let{Node:t}=e;class r extends t{constructor(e){if(super(),this.properties=e||{},e&&("object"!=typeof e||!Object.keys(e).every((function(t){return X(e[t])}))))throw new TypeError("Object containing Nodes expected")}get type(){return Up}get isObjectNode(){return!0}_compile(e,t){const r={};for(const n in this.properties)if(me(this.properties,n)){const o=en(n),a=JSON.parse(o),s=i(this.properties,n);r[a]=s._compile(e,t)}return function(e,t,n){const i={};for(const o in r)me(r,o)&&(i[o]=r[o](e,t,n));return i}}forEach(e){for(const t in this.properties)me(this.properties,t)&&e(this.properties[t],"properties["+en(t)+"]",this)}map(e){const t={};for(const r in this.properties)me(this.properties,r)&&(t[r]=this._ifNode(e(this.properties[r],"properties["+en(r)+"]",this)));return new r(t)}clone(){const e={};for(const t in this.properties)me(this.properties,t)&&(e[t]=this.properties[t]);return new r(e)}_toString(e){const t=[];for(const r in this.properties)me(this.properties,r)&&t.push(en(r)+": "+this.properties[r].toString(e));return"{"+t.join(", ")+"}"}toJSON(){return{mathjs:Up,properties:this.properties}}static fromJSON(e){return new r(e.properties)}_toHTML(e){const t=[];for(const r in this.properties)me(this.properties,r)&&t.push('<span class="math-symbol math-property">'+rn(r)+'</span><span class="math-operator math-assignment-operator math-property-assignment-operator math-binary-operator">:</span>'+this.properties[r].toHTML(e));return'<span class="math-parenthesis math-curly-parenthesis">{</span>'+t.join('<span class="math-separator">,</span>')+'<span class="math-parenthesis math-curly-parenthesis">}</span>'}_toTex(e){const t=[];for(const r in this.properties)me(this.properties,r)&&t.push("\\mathbf{"+r+":} & "+this.properties[r].toTex(e)+"\\\\");return"\\left\\{\\begin{array}{ll}"+t.join("\n")+"\\end{array}\\right\\}"}}return lp(r,"name",Up),r}),{isClass:!0,isNode:!0});function $p(e,t){return new f(e,new l(t),new Set(Object.keys(t)))}const Hp="OperatorNode",Gp=de(Hp,["Node"],(e=>{let{Node:t}=e;function r(e,t){let n=e;if("auto"===t)for(;ee(n);)n=n.content;return!!Z(n)||!!K(n)&&r(n.args[0],t)}function n(e,t,n,i,o){const a=bp(e,t,n),s=vp(e,t);if("all"===t||i.length>2&&"OperatorNode:add"!==e.getIdentifier()&&"OperatorNode:multiply"!==e.getIdentifier())return i.map((function(e){switch(e.getContent().type){case"ArrayNode":case"ConstantNode":case"SymbolNode":case"ParenthesisNode":return!1;default:return!0}}));let u;switch(i.length){case 0:u=[];break;case 1:{const r=bp(i[0],t,n,e);if(o&&null!==r){let n,o;if("keep"===t?(n=i[0].getIdentifier(),o=e.getIdentifier()):(n=i[0].getContent().getIdentifier(),o=e.getContent().getIdentifier()),!1===yp[a][o].latexLeftParens){u=[!1];break}if(!1===yp[r][n].latexParens){u=[!1];break}}if(null===r){u=[!1];break}if(r<=a){u=[!0];break}u=[!1]}break;case 2:{let r;const c=bp(i[0],t,n,e),l=wp(e,i[0],t);let f;r=null!==c&&(c===a&&"right"===s&&!l||c<a);const p=bp(i[1],t,n,e),m=wp(e,i[1],t);if(f=null!==p&&(p===a&&"left"===s&&!m||p<a),o){let n,i,o;"keep"===t?(n=e.getIdentifier(),i=e.args[0].getIdentifier(),o=e.args[1].getIdentifier()):(n=e.getContent().getIdentifier(),i=e.args[0].getContent().getIdentifier(),o=e.args[1].getContent().getIdentifier()),null!==c&&(!1===yp[a][n].latexLeftParens&&(r=!1),!1===yp[c][i].latexParens&&(r=!1)),null!==p&&(!1===yp[a][n].latexRightParens&&(f=!1),!1===yp[p][o].latexParens&&(f=!1))}u=[r,f]}break;default:"OperatorNode:add"!==e.getIdentifier()&&"OperatorNode:multiply"!==e.getIdentifier()||(u=i.map((function(r){const i=bp(r,t,n,e),o=wp(e,r,t),u=vp(r,t);return null!==i&&(a===i&&s===u&&!o||i<a)})))}if(i.length>=2&&"OperatorNode:multiply"===e.getIdentifier()&&e.implicit&&"all"!==t&&"hide"===n)for(let e=1;e<u.length;++e)!r(i[e],t)||u[e-1]||"keep"===t&&ee(i[e-1])||(u[e]=!0);return u}class o extends t{constructor(e,t,r,n,i){if(super(),"string"!=typeof e)throw new TypeError('string expected for parameter "op"');if("string"!=typeof t)throw new TypeError('string expected for parameter "fn"');if(!Array.isArray(r)||!r.every(X))throw new TypeError('Array containing Nodes expected for parameter "args"');this.implicit=!0===n,this.isPercentage=!0===i,this.op=e,this.fn=t,this.args=r||[]}get type(){return Hp}get isOperatorNode(){return!0}_compile(e,t){if("string"!=typeof this.fn||!s(e,this.fn))throw e[this.fn]?new Error('No access to function "'+this.fn+'"'):new Error("Function "+this.fn+' missing in provided namespace "math"');const r=i(e,this.fn),n=An(this.args,(function(r){return r._compile(e,t)}));if("function"==typeof r&&!0===r.rawArgs){const t=this.args;return function(n,i,o){return r(t,e,$p(n,i))}}if(1===n.length){const e=n[0];return function(t,n,i){return r(e(t,n,i))}}if(2===n.length){const e=n[0],t=n[1];return function(n,i,o){return r(e(n,i,o),t(n,i,o))}}return function(e,t,i){return r.apply(null,An(n,(function(r){return r(e,t,i)})))}}forEach(e){for(let t=0;t<this.args.length;t++)e(this.args[t],"args["+t+"]",this)}map(e){const t=[];for(let r=0;r<this.args.length;r++)t[r]=this._ifNode(e(this.args[r],"args["+r+"]",this));return new o(this.op,this.fn,t,this.implicit,this.isPercentage)}clone(){return new o(this.op,this.fn,this.args.slice(0),this.implicit,this.isPercentage)}isUnary(){return 1===this.args.length}isBinary(){return 2===this.args.length}_toString(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=e&&e.implicit?e.implicit:"hide",i=this.args,o=n(this,t,r,i,!1);if(1===i.length){const r=vp(this,t);let n=i[0].toString(e);o[0]&&(n="("+n+")");const a=/[a-zA-Z]+/.test(this.op);return"right"===r?this.op+(a?" ":"")+n:"left"===r?n+(a?" ":"")+this.op:n+this.op}if(2===i.length){let t=i[0].toString(e),n=i[1].toString(e);return o[0]&&(t="("+t+")"),o[1]&&(n="("+n+")"),this.implicit&&"OperatorNode:multiply"===this.getIdentifier()&&"hide"===r?t+" "+n:t+" "+this.op+" "+n}if(i.length>2&&("OperatorNode:add"===this.getIdentifier()||"OperatorNode:multiply"===this.getIdentifier())){const t=i.map((function(t,r){return t=t.toString(e),o[r]&&(t="("+t+")"),t}));return this.implicit&&"OperatorNode:multiply"===this.getIdentifier()&&"hide"===r?t.join(" "):t.join(" "+this.op+" ")}return this.fn+"("+this.args.join(", ")+")"}toJSON(){return{mathjs:Hp,op:this.op,fn:this.fn,args:this.args,implicit:this.implicit,isPercentage:this.isPercentage}}static fromJSON(e){return new o(e.op,e.fn,e.args,e.implicit,e.isPercentage)}_toHTML(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=e&&e.implicit?e.implicit:"hide",i=this.args,o=n(this,t,r,i,!1);if(1===i.length){const r=vp(this,t);let n=i[0].toHTML(e);return o[0]&&(n='<span class="math-parenthesis math-round-parenthesis">(</span>'+n+'<span class="math-parenthesis math-round-parenthesis">)</span>'),"right"===r?'<span class="math-operator math-unary-operator math-lefthand-unary-operator">'+rn(this.op)+"</span>"+n:n+'<span class="math-operator math-unary-operator math-righthand-unary-operator">'+rn(this.op)+"</span>"}if(2===i.length){let t=i[0].toHTML(e),n=i[1].toHTML(e);return o[0]&&(t='<span class="math-parenthesis math-round-parenthesis">(</span>'+t+'<span class="math-parenthesis math-round-parenthesis">)</span>'),o[1]&&(n='<span class="math-parenthesis math-round-parenthesis">(</span>'+n+'<span class="math-parenthesis math-round-parenthesis">)</span>'),this.implicit&&"OperatorNode:multiply"===this.getIdentifier()&&"hide"===r?t+'<span class="math-operator math-binary-operator math-implicit-binary-operator"></span>'+n:t+'<span class="math-operator math-binary-operator math-explicit-binary-operator">'+rn(this.op)+"</span>"+n}{const t=i.map((function(t,r){return t=t.toHTML(e),o[r]&&(t='<span class="math-parenthesis math-round-parenthesis">(</span>'+t+'<span class="math-parenthesis math-round-parenthesis">)</span>'),t}));return i.length>2&&("OperatorNode:add"===this.getIdentifier()||"OperatorNode:multiply"===this.getIdentifier())?this.implicit&&"OperatorNode:multiply"===this.getIdentifier()&&"hide"===r?t.join('<span class="math-operator math-binary-operator math-implicit-binary-operator"></span>'):t.join('<span class="math-operator math-binary-operator math-explicit-binary-operator">'+rn(this.op)+"</span>"):'<span class="math-function">'+rn(this.fn)+'</span><span class="math-paranthesis math-round-parenthesis">(</span>'+t.join('<span class="math-separator">,</span>')+'<span class="math-paranthesis math-round-parenthesis">)</span>'}}_toTex(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=e&&e.implicit?e.implicit:"hide",i=this.args,o=n(this,t,r,i,!0);let a=Fp[this.fn];if(a=void 0===a?this.op:a,1===i.length){const r=vp(this,t);let n=i[0].toTex(e);return o[0]&&(n=`\\left(${n}\\right)`),"right"===r?a+n:n+a}if(2===i.length){const n=i[0];let s=n.toTex(e);o[0]&&(s=`\\left(${s}\\right)`);let u,c=i[1].toTex(e);switch(o[1]&&(c=`\\left(${c}\\right)`),u="keep"===t?n.getIdentifier():n.getContent().getIdentifier(),this.getIdentifier()){case"OperatorNode:divide":return a+"{"+s+"}{"+c+"}";case"OperatorNode:pow":switch(s="{"+s+"}",c="{"+c+"}",u){case"ConditionalNode":case"OperatorNode:divide":s=`\\left(${s}\\right)`}break;case"OperatorNode:multiply":if(this.implicit&&"hide"===r)return s+"~"+c}return s+a+c}if(i.length>2&&("OperatorNode:add"===this.getIdentifier()||"OperatorNode:multiply"===this.getIdentifier())){const t=i.map((function(t,r){return t=t.toTex(e),o[r]&&(t=`\\left(${t}\\right)`),t}));return"OperatorNode:multiply"===this.getIdentifier()&&this.implicit&&"hide"===r?t.join("~"):t.join(a)}return"\\mathrm{"+this.fn+"}\\left("+i.map((function(t){return t.toTex(e)})).join(",")+"\\right)"}getIdentifier(){return this.type+":"+this.fn}}return lp(o,"name",Hp),o}),{isClass:!0,isNode:!0}),Zp="ParenthesisNode",Vp=de(Zp,["Node"],(e=>{let{Node:t}=e;class r extends t{constructor(e){if(super(),!X(e))throw new TypeError('Node expected for parameter "content"');this.content=e}get type(){return Zp}get isParenthesisNode(){return!0}_compile(e,t){return this.content._compile(e,t)}getContent(){return this.content.getContent()}forEach(e){e(this.content,"content",this)}map(e){const t=e(this.content,"content",this);return new r(t)}clone(){return new r(this.content)}_toString(e){return!e||e&&!e.parenthesis||e&&"keep"===e.parenthesis?"("+this.content.toString(e)+")":this.content.toString(e)}toJSON(){return{mathjs:Zp,content:this.content}}static fromJSON(e){return new r(e.content)}_toHTML(e){return!e||e&&!e.parenthesis||e&&"keep"===e.parenthesis?'<span class="math-parenthesis math-round-parenthesis">(</span>'+this.content.toHTML(e)+'<span class="math-parenthesis math-round-parenthesis">)</span>':this.content.toHTML(e)}_toTex(e){return!e||e&&!e.parenthesis||e&&"keep"===e.parenthesis?`\\left(${this.content.toTex(e)}\\right)`:this.content.toTex(e)}}return lp(r,"name",Zp),r}),{isClass:!0,isNode:!0}),Wp="RangeNode",Yp=de(Wp,["Node"],(e=>{let{Node:t}=e;function r(e,t,r){const n=bp(e,t,r),i={},o=bp(e.start,t,r);if(i.start=null!==o&&o<=n||"all"===t,e.step){const o=bp(e.step,t,r);i.step=null!==o&&o<=n||"all"===t}const a=bp(e.end,t,r);return i.end=null!==a&&a<=n||"all"===t,i}class n extends t{constructor(e,t,r){if(super(),!X(e))throw new TypeError("Node expected");if(!X(t))throw new TypeError("Node expected");if(r&&!X(r))throw new TypeError("Node expected");if(arguments.length>3)throw new Error("Too many arguments");this.start=e,this.end=t,this.step=r||null}get type(){return Wp}get isRangeNode(){return!0}needsEnd(){return this.filter((function(e){return ne(e)&&"end"===e.name})).length>0}_compile(e,t){const r=e.range,n=this.start._compile(e,t),i=this.end._compile(e,t);if(this.step){const o=this.step._compile(e,t);return function(e,t,a){return r(n(e,t,a),i(e,t,a),o(e,t,a))}}return function(e,t,o){return r(n(e,t,o),i(e,t,o))}}forEach(e){e(this.start,"start",this),e(this.end,"end",this),this.step&&e(this.step,"step",this)}map(e){return new n(this._ifNode(e(this.start,"start",this)),this._ifNode(e(this.end,"end",this)),this.step&&this._ifNode(e(this.step,"step",this)))}clone(){return new n(this.start,this.end,this.step&&this.step)}_toString(e){const t=r(this,e&&e.parenthesis?e.parenthesis:"keep",e&&e.implicit);let n,i=this.start.toString(e);if(t.start&&(i="("+i+")"),n=i,this.step){let r=this.step.toString(e);t.step&&(r="("+r+")"),n+=":"+r}let o=this.end.toString(e);return t.end&&(o="("+o+")"),n+=":"+o,n}toJSON(){return{mathjs:Wp,start:this.start,end:this.end,step:this.step}}static fromJSON(e){return new n(e.start,e.end,e.step)}_toHTML(e){const t=r(this,e&&e.parenthesis?e.parenthesis:"keep",e&&e.implicit);let n,i=this.start.toHTML(e);if(t.start&&(i='<span class="math-parenthesis math-round-parenthesis">(</span>'+i+'<span class="math-parenthesis math-round-parenthesis">)</span>'),n=i,this.step){let r=this.step.toHTML(e);t.step&&(r='<span class="math-parenthesis math-round-parenthesis">(</span>'+r+'<span class="math-parenthesis math-round-parenthesis">)</span>'),n+='<span class="math-operator math-range-operator">:</span>'+r}let o=this.end.toHTML(e);return t.end&&(o='<span class="math-parenthesis math-round-parenthesis">(</span>'+o+'<span class="math-parenthesis math-round-parenthesis">)</span>'),n+='<span class="math-operator math-range-operator">:</span>'+o,n}_toTex(e){const t=r(this,e&&e.parenthesis?e.parenthesis:"keep",e&&e.implicit);let n=this.start.toTex(e);if(t.start&&(n=`\\left(${n}\\right)`),this.step){let r=this.step.toTex(e);t.step&&(r=`\\left(${r}\\right)`),n+=":"+r}let i=this.end.toTex(e);return t.end&&(i=`\\left(${i}\\right)`),n+=":"+i,n}}return lp(n,"name",Wp),n}),{isClass:!0,isNode:!0}),Jp="RelationalNode",Xp=de(Jp,["Node"],(e=>{let{Node:t}=e;const r={equal:"==",unequal:"!=",smaller:"<",larger:">",smallerEq:"<=",largerEq:">="};class n extends t{constructor(e,t){if(super(),!Array.isArray(e))throw new TypeError("Parameter conditionals must be an array");if(!Array.isArray(t))throw new TypeError("Parameter params must be an array");if(e.length!==t.length-1)throw new TypeError("Parameter params must contain exactly one more element than parameter conditionals");this.conditionals=e,this.params=t}get type(){return Jp}get isRelationalNode(){return!0}_compile(e,t){const r=this,n=this.params.map((r=>r._compile(e,t)));return function(t,o,a){let s,u=n[0](t,o,a);for(let c=0;c<r.conditionals.length;c++)if(s=u,u=n[c+1](t,o,a),!i(e,r.conditionals[c])(s,u))return!1;return!0}}forEach(e){this.params.forEach(((t,r)=>e(t,"params["+r+"]",this)),this)}map(e){return new n(this.conditionals.slice(),this.params.map(((t,r)=>this._ifNode(e(t,"params["+r+"]",this))),this))}clone(){return new n(this.conditionals,this.params)}_toString(e){const t=e&&e.parenthesis?e.parenthesis:"keep",n=bp(this,t,e&&e.implicit),i=this.params.map((function(r,i){const o=bp(r,t,e&&e.implicit);return"all"===t||null!==o&&o<=n?"("+r.toString(e)+")":r.toString(e)}));let o=i[0];for(let e=0;e<this.conditionals.length;e++)o+=" "+r[this.conditionals[e]],o+=" "+i[e+1];return o}toJSON(){return{mathjs:Jp,conditionals:this.conditionals,params:this.params}}static fromJSON(e){return new n(e.conditionals,e.params)}_toHTML(e){const t=e&&e.parenthesis?e.parenthesis:"keep",n=bp(this,t,e&&e.implicit),i=this.params.map((function(r,i){const o=bp(r,t,e&&e.implicit);return"all"===t||null!==o&&o<=n?'<span class="math-parenthesis math-round-parenthesis">(</span>'+r.toHTML(e)+'<span class="math-parenthesis math-round-parenthesis">)</span>':r.toHTML(e)}));let o=i[0];for(let e=0;e<this.conditionals.length;e++)o+='<span class="math-operator math-binary-operator math-explicit-binary-operator">'+rn(r[this.conditionals[e]])+"</span>"+i[e+1];return o}_toTex(e){const t=e&&e.parenthesis?e.parenthesis:"keep",r=bp(this,t,e&&e.implicit),n=this.params.map((function(n,i){const o=bp(n,t,e&&e.implicit);return"all"===t||null!==o&&o<=r?"\\left("+n.toTex(e)+"\right)":n.toTex(e)}));let i=n[0];for(let e=0;e<this.conditionals.length;e++)i+=Fp[this.conditionals[e]]+n[e+1];return i}}return lp(n,"name",Jp),n}),{isClass:!0,isNode:!0}),Qp=de("SymbolNode",["math","?Unit","Node"],(e=>{let{math:t,Unit:r,Node:n}=e;function o(e){return!!r&&r.isValuelessUnit(e)}class a extends n{constructor(e){if(super(),"string"!=typeof e)throw new TypeError('String expected for parameter "name"');this.name=e}get type(){return"SymbolNode"}get isSymbolNode(){return!0}_compile(e,t){const n=this.name;if(!0===t[n])return function(e,t,r){return i(t,n)};if(n in e)return function(t,r,o){return t.has(n)?t.get(n):i(e,n)};{const e=o(n);return function(t,i,o){return t.has(n)?t.get(n):e?new r(null,n):a.onUndefinedSymbol(n)}}}forEach(e){}map(e){return this.clone()}static onUndefinedSymbol(e){throw new Error("Undefined symbol "+e)}clone(){return new a(this.name)}_toString(e){return this.name}_toHTML(e){const t=rn(this.name);return"true"===t||"false"===t?'<span class="math-symbol math-boolean">'+t+"</span>":"i"===t?'<span class="math-symbol math-imaginary-symbol">'+t+"</span>":"Infinity"===t?'<span class="math-symbol math-infinity-symbol">'+t+"</span>":"NaN"===t?'<span class="math-symbol math-nan-symbol">'+t+"</span>":"null"===t?'<span class="math-symbol math-null-symbol">'+t+"</span>":"undefined"===t?'<span class="math-symbol math-undefined-symbol">'+t+"</span>":'<span class="math-symbol">'+t+"</span>"}toJSON(){return{mathjs:"SymbolNode",name:this.name}}static fromJSON(e){return new a(e.name)}_toTex(e){let r=!1;void 0===t[this.name]&&o(this.name)&&(r=!0);const n=zp(this.name,r);return"\\"===n[0]?n:" "+n}}return a}),{isClass:!0,isNode:!0}),Kp="FunctionNode",em=de(Kp,["math","Node","SymbolNode"],(e=>{var t;let{math:r,Node:n,SymbolNode:o}=e;const a=e=>Kr(e,{truncate:78});function u(e,t,r){let n="";const i=/\$(?:\{([a-z_][a-z_0-9]*)(?:\[([0-9]+)\])?\}|\$)/gi;let o,a=0;for(;null!==(o=i.exec(e));)if(n+=e.substring(a,o.index),a=o.index,"$$"===o[0])n+="$",a++;else{a+=o[0].length;const e=t[o[1]];if(!e)throw new ReferenceError("Template: Property "+o[1]+" does not exist.");if(void 0===o[2])switch(typeof e){case"string":n+=e;break;case"object":if(X(e))n+=e.toTex(r);else{if(!Array.isArray(e))throw new TypeError("Template: "+o[1]+" has to be a Node, String or array of Nodes");n+=e.map((function(e,t){if(X(e))return e.toTex(r);throw new TypeError("Template: "+o[1]+"["+t+"] is not a Node.")})).join(",")}break;default:throw new TypeError("Template: "+o[1]+" has to be a Node, String or array of Nodes")}else{if(!X(e[o[2]]&&e[o[2]]))throw new TypeError("Template: "+o[1]+"["+o[2]+"] is not a Node.");n+=e[o[2]].toTex(r)}}return n+=e.slice(a),n}class c extends n{constructor(e,t){if(super(),"string"==typeof e&&(e=new o(e)),!X(e))throw new TypeError('Node expected as parameter "fn"');if(!Array.isArray(t)||!t.every(X))throw new TypeError('Array containing Nodes expected for parameter "args"');this.fn=e,this.args=t||[]}get name(){return this.fn.name||""}get type(){return Kp}get isFunctionNode(){return!0}_compile(e,t){const r=this.args.map((r=>r._compile(e,t)));if(!ne(this.fn)){if(U(this.fn)&&J(this.fn.index)&&this.fn.index.isObjectProperty()){const n=this.fn.object._compile(e,t),i=this.fn.index.getObjectProperty(),o=this.args;return function(t,a,u){const c=n(t,a,u),l=function(e,t){if(!s(e,t))throw new Error('No access to method "'+t+'"');return e[t]}(c,i);if(null!=l&&l.rawArgs)return l(o,e,$p(t,a));{const e=r.map((e=>e(t,a,u)));return l.apply(c,e)}}}{const n=this.fn.toString(),i=this.fn._compile(e,t),o=this.args;return function(t,s,u){const c=i(t,s,u);if("function"!=typeof c)throw new TypeError(`Expression '${n}' did not evaluate to a function; value is:\n ${a(c)}`);if(c.rawArgs)return c(o,e,$p(t,s));{const e=r.map((e=>e(t,s,u)));return c.apply(c,e)}}}}{const n=this.fn.name;if(t[n]){const t=this.args;return function(o,s,u){const c=i(s,n);if("function"!=typeof c)throw new TypeError(`Argument '${n}' was not a function; received: ${a(c)}`);if(c.rawArgs)return c(t,e,$p(o,s));{const e=r.map((e=>e(o,s,u)));return c.apply(c,e)}}}{const t=n in e?i(e,n):void 0,o="function"==typeof t&&!0===t.rawArgs,s=t=>{let r;if(t.has(n))r=t.get(n);else{if(!(n in e))return c.onUndefinedFunction(n);r=i(e,n)}if("function"==typeof r)return r;throw new TypeError(`'${n}' is not a function; its value is:\n ${a(r)}`)};if(o){const t=this.args;return function(n,i,o){const a=s(n);return!0===a.rawArgs?a(t,e,$p(n,i)):a(...r.map((e=>e(n,i,o))))}}switch(r.length){case 0:return function(e,t,r){return s(e)()};case 1:return function(e,t,n){return s(e)((0,r[0])(e,t,n))};case 2:return function(e,t,n){const i=s(e),o=r[0],a=r[1];return i(o(e,t,n),a(e,t,n))};default:return function(e,t,n){return s(e)(...r.map((r=>r(e,t,n))))}}}}}forEach(e){e(this.fn,"fn",this);for(let t=0;t<this.args.length;t++)e(this.args[t],"args["+t+"]",this)}map(e){const t=this._ifNode(e(this.fn,"fn",this)),r=[];for(let t=0;t<this.args.length;t++)r[t]=this._ifNode(e(this.args[t],"args["+t+"]",this));return new c(t,r)}clone(){return new c(this.fn,this.args.slice(0))}toString(e){let t;const r=this.fn.toString(e);return e&&"object"==typeof e.handler&&me(e.handler,r)&&(t=e.handler[r](this,e)),void 0!==t?t:super.toString(e)}_toString(e){const t=this.args.map((function(t){return t.toString(e)}));return(W(this.fn)?"("+this.fn.toString(e)+")":this.fn.toString(e))+"("+t.join(", ")+")"}toJSON(){return{mathjs:Kp,fn:this.fn,args:this.args}}_toHTML(e){const t=this.args.map((function(t){return t.toHTML(e)}));return'<span class="math-function">'+rn(this.fn)+'</span><span class="math-paranthesis math-round-parenthesis">(</span>'+t.join('<span class="math-separator">,</span>')+'<span class="math-paranthesis math-round-parenthesis">)</span>'}toTex(e){let t;return e&&"object"==typeof e.handler&&me(e.handler,this.name)&&(t=e.handler[this.name](this,e)),void 0!==t?t:super.toTex(e)}_toTex(e){const t=this.args.map((function(t){return t.toTex(e)}));let n,i;switch(Bp[this.name]&&(n=Bp[this.name]),!r[this.name]||"function"!=typeof r[this.name].toTex&&"object"!=typeof r[this.name].toTex&&"string"!=typeof r[this.name].toTex||(n=r[this.name].toTex),typeof n){case"function":i=n(this,e);break;case"string":i=u(n,this,e);break;case"object":switch(typeof n[t.length]){case"function":i=n[t.length](this,e);break;case"string":i=u(n[t.length],this,e)}}return void 0!==i?i:u("\\mathrm{${name}}\\left(${args}\\right)",this,e)}getIdentifier(){return this.type+":"+this.name}}return t=c,lp(c,"name",Kp),lp(c,"onUndefinedFunction",(function(e){throw new Error("Undefined function "+e)})),lp(c,"fromJSON",(function(e){return new t(e.fn,e.args)})),c}),{isClass:!0,isNode:!0}),tm="parse",rm=de(tm,["typed","numeric","config","AccessorNode","ArrayNode","AssignmentNode","BlockNode","ConditionalNode","ConstantNode","FunctionAssignmentNode","FunctionNode","IndexNode","ObjectNode","OperatorNode","ParenthesisNode","RangeNode","RelationalNode","SymbolNode"],(e=>{let{typed:t,numeric:r,config:n,AccessorNode:i,ArrayNode:o,AssignmentNode:a,BlockNode:s,ConditionalNode:u,ConstantNode:c,FunctionAssignmentNode:l,FunctionNode:f,IndexNode:p,ObjectNode:m,OperatorNode:d,ParenthesisNode:h,RangeNode:g,RelationalNode:y,SymbolNode:x}=e;const b=t(tm,{string:function(e){return k(e,{})},"Array | Matrix":function(e){return v(e,{})},"string, Object":function(e,t){return k(e,void 0!==t.nodes?t.nodes:{})},"Array | Matrix, Object":v});function v(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const r=void 0!==t.nodes?t.nodes:{};return Gn(e,(function(e){if("string"!=typeof e)throw new TypeError("String expected");return k(e,r)}))}const w={NULL:0,DELIMITER:1,NUMBER:2,SYMBOL:3,UNKNOWN:4},N={",":!0,"(":!0,")":!0,"[":!0,"]":!0,"{":!0,"}":!0,'"':!0,"'":!0,";":!0,"+":!0,"-":!0,"*":!0,".*":!0,"/":!0,"./":!0,"%":!0,"^":!0,".^":!0,"~":!0,"!":!0,"&":!0,"|":!0,"^|":!0,"=":!0,":":!0,"?":!0,"==":!0,"!=":!0,"<":!0,">":!0,"<=":!0,">=":!0,"<<":!0,">>":!0,">>>":!0},E={mod:!0,to:!0,in:!0,and:!0,xor:!0,or:!0,not:!0},A={true:!0,false:!1,null:null,undefined:void 0},S=["NaN","Infinity"],M={'"':'"',"'":"'","\\":"\\","/":"/",b:"\b",f:"\f",n:"\n",r:"\r",t:"\t"};function C(e,t){return e.expression.substr(e.index,t)}function T(e){return C(e,1)}function D(e){e.index++}function F(e){return e.expression.charAt(e.index-1)}function B(e){return e.expression.charAt(e.index+1)}function O(e){for(e.tokenType=w.NULL,e.token="",e.comment="";;){if("#"===T(e))for(;"\n"!==T(e)&&""!==T(e);)e.comment+=T(e),D(e);if(!b.isWhitespace(T(e),e.nestingLevel))break;D(e)}if(""===T(e))return void(e.tokenType=w.DELIMITER);if("\n"===T(e)&&!e.nestingLevel)return e.tokenType=w.DELIMITER,e.token=T(e),void D(e);const t=T(e),r=C(e,2),n=C(e,3);if(3===n.length&&N[n])return e.tokenType=w.DELIMITER,e.token=n,D(e),D(e),void D(e);if(2===r.length&&N[r])return e.tokenType=w.DELIMITER,e.token=r,D(e),void D(e);if(N[t])return e.tokenType=w.DELIMITER,e.token=t,void D(e);if(b.isDigitDot(t)){e.tokenType=w.NUMBER;const t=C(e,2);if("0b"===t||"0o"===t||"0x"===t){for(e.token+=T(e),D(e),e.token+=T(e),D(e);b.isHexDigit(T(e));)e.token+=T(e),D(e);if("."===T(e))for(e.token+=".",D(e);b.isHexDigit(T(e));)e.token+=T(e),D(e);else if("i"===T(e))for(e.token+="i",D(e);b.isDigit(T(e));)e.token+=T(e),D(e);return}if("."===T(e)){if(e.token+=T(e),D(e),!b.isDigit(T(e)))return void(e.tokenType=w.DELIMITER)}else{for(;b.isDigit(T(e));)e.token+=T(e),D(e);b.isDecimalMark(T(e),B(e))&&(e.token+=T(e),D(e))}for(;b.isDigit(T(e));)e.token+=T(e),D(e);if("E"===T(e)||"e"===T(e))if(b.isDigit(B(e))||"-"===B(e)||"+"===B(e)){if(e.token+=T(e),D(e),"+"!==T(e)&&"-"!==T(e)||(e.token+=T(e),D(e)),!b.isDigit(T(e)))throw ce(e,'Digit expected, got "'+T(e)+'"');for(;b.isDigit(T(e));)e.token+=T(e),D(e);if(b.isDecimalMark(T(e),B(e)))throw ce(e,'Digit expected, got "'+T(e)+'"')}else if("."===B(e))throw D(e),ce(e,'Digit expected, got "'+T(e)+'"')}else{if(!b.isAlpha(T(e),F(e),B(e))){for(e.tokenType=w.UNKNOWN;""!==T(e);)e.token+=T(e),D(e);throw ce(e,'Syntax error in part "'+e.token+'"')}for(;b.isAlpha(T(e),F(e),B(e))||b.isDigit(T(e));)e.token+=T(e),D(e);me(E,e.token)?e.tokenType=w.DELIMITER:e.tokenType=w.SYMBOL}}function _(e){do{O(e)}while("\n"===e.token)}function z(e){e.nestingLevel++}function I(e){e.nestingLevel--}function k(e,t){const r={extraNodes:{},expression:"",comment:"",index:0,token:"",tokenType:w.NULL,nestingLevel:0,conditionalLevel:null};Wr(r,{expression:e,extraNodes:t}),O(r);const n=function(e){let t;const r=[];let n;for(""!==e.token&&"\n"!==e.token&&";"!==e.token&&(t=q(e),e.comment&&(t.comment=e.comment));"\n"===e.token||";"===e.token;)0===r.length&&t&&(n=";"!==e.token,r.push({node:t,visible:n})),O(e),"\n"!==e.token&&";"!==e.token&&""!==e.token&&(t=q(e),e.comment&&(t.comment=e.comment),n=";"!==e.token,r.push({node:t,visible:n}));return r.length>0?new s(r):(t||(t=new c(void 0),e.comment&&(t.comment=e.comment)),t)}(r);if(""!==r.token)throw r.tokenType===w.DELIMITER?le(r,"Unexpected operator "+r.token):ce(r,'Unexpected part "'+r.token+'"');return n}function q(e){let t,r,n,i;const o=function(e){let t=function(e){let t=R(e);for(;"or"===e.token;)_(e),t=new d("or","or",[t,R(e)]);return t}(e);for(;"?"===e.token;){const r=e.conditionalLevel;e.conditionalLevel=e.nestingLevel,_(e);const n=t,i=q(e);if(":"!==e.token)throw ce(e,"False part of conditional expression expected");e.conditionalLevel=null,_(e);const o=q(e);t=new u(n,i,o),e.conditionalLevel=r}return t}(e);if("="===e.token){if(ne(o))return t=o.name,_(e),n=q(e),new a(new x(t),n);if(U(o))return _(e),n=q(e),new a(o.object,o.index,n);if(Y(o)&&ne(o.fn)&&(i=!0,r=[],t=o.name,o.args.forEach((function(e,t){ne(e)?r[t]=e.name:i=!1})),i))return _(e),n=q(e),new l(t,r,n);throw ce(e,"Invalid left hand side of assignment operator =")}return o}function R(e){let t=P(e);for(;"xor"===e.token;)_(e),t=new d("xor","xor",[t,P(e)]);return t}function P(e){let t=j(e);for(;"and"===e.token;)_(e),t=new d("and","and",[t,j(e)]);return t}function j(e){let t=L(e);for(;"|"===e.token;)_(e),t=new d("|","bitOr",[t,L(e)]);return t}function L(e){let t=$(e);for(;"^|"===e.token;)_(e),t=new d("^|","bitXor",[t,$(e)]);return t}function $(e){let t=H(e);for(;"&"===e.token;)_(e),t=new d("&","bitAnd",[t,H(e)]);return t}function H(e){const t=[G(e)],r=[],n={"==":"equal","!=":"unequal","<":"smaller",">":"larger","<=":"smallerEq",">=":"largerEq"};for(;me(n,e.token);){const i={name:e.token,fn:n[e.token]};r.push(i),_(e),t.push(G(e))}return 1===t.length?t[0]:2===t.length?new d(r[0].name,r[0].fn,t):new y(r.map((e=>e.fn)),t)}function G(e){let t,r,n,i;t=W(e);const o={"<<":"leftShift",">>":"rightArithShift",">>>":"rightLogShift"};for(;me(o,e.token);)r=e.token,n=o[r],_(e),i=[t,W(e)],t=new d(r,n,i);return t}function W(e){let t,r,n,i;t=J(e);const o={to:"to",in:"to"};for(;me(o,e.token);)r=e.token,n=o[r],_(e),"in"===r&&""===e.token?t=new d("*","multiply",[t,new x("in")],!0):(i=[t,J(e)],t=new d(r,n,i));return t}function J(e){let t;const r=[];if(t=":"===e.token?new c(1):X(e),":"===e.token&&e.conditionalLevel!==e.nestingLevel){for(r.push(t);":"===e.token&&r.length<3;)_(e),")"===e.token||"]"===e.token||","===e.token||""===e.token?r.push(new x("end")):r.push(X(e));t=3===r.length?new g(r[0],r[2],r[1]):new g(r[0],r[1])}return t}function X(e){let t,r,n,i;t=Q(e);const o={"+":"add","-":"subtract"};for(;me(o,e.token);){r=e.token,n=o[r],_(e);const a=Q(e);i=a.isPercentage?[t,new d("*","multiply",[t,a])]:[t,a],t=new d(r,n,i)}return t}function Q(e){let t,r,n,i;t=ee(e),r=t;const o={"*":"multiply",".*":"dotMultiply","/":"divide","./":"dotDivide"};for(;me(o,e.token);)n=e.token,i=o[n],_(e),r=ee(e),t=new d(n,i,[t,r]);return t}function ee(e){let t,r;for(t=te(e),r=t;e.tokenType===w.SYMBOL||"in"===e.token&&Z(t)||!(e.tokenType!==w.NUMBER||Z(r)||K(r)&&"!"!==r.op)||"("===e.token;)r=te(e),t=new d("*","multiply",[t,r],!0);return t}function te(e){let t=re(e),r=t;const n=[];for(;"/"===e.token&&V(r);){if(n.push(Wr({},e)),_(e),e.tokenType!==w.NUMBER){Wr(e,n.pop());break}if(n.push(Wr({},e)),_(e),e.tokenType!==w.SYMBOL&&"("!==e.token){n.pop(),Wr(e,n.pop());break}Wr(e,n.pop()),n.pop(),r=re(e),t=new d("/","divide",[t,r])}return t}function re(e){let t,r,n,i;t=ie(e);const o={"%":"mod",mod:"mod"};for(;me(o,e.token);)r=e.token,n=o[r],_(e),"%"===r&&e.tokenType===w.DELIMITER&&"("!==e.token?t=new d("/","divide",[t,new c(100)],!1,!0):(i=[t,ie(e)],t=new d(r,n,i));return t}function ie(e){let t,i,a;const s={"-":"unaryMinus","+":"unaryPlus","~":"bitNot",not:"not"};return me(s,e.token)?(a=s[e.token],t=e.token,_(e),i=[ie(e)],new d(t,a,i)):function(e){let t,i,a,s;return t=function(e){let t,i,a,s;t=function(e){let t=[];if(e.tokenType===w.SYMBOL&&me(e.extraNodes,e.token)){const r=e.extraNodes[e.token];if(O(e),"("===e.token){if(t=[],z(e),O(e),")"!==e.token)for(t.push(q(e));","===e.token;)O(e),t.push(q(e));if(")"!==e.token)throw ce(e,"Parenthesis ) expected");I(e),O(e)}return new r(t)}return function(e){let t,i;return e.tokenType===w.SYMBOL||e.tokenType===w.DELIMITER&&e.token in E?(i=e.token,O(e),t=me(A,i)?new c(A[i]):S.includes(i)?new c(r(i,"number")):new x(i),t=oe(e,t),t):function(e){let t,i;return'"'===e.token||"'"===e.token?(i=ae(e,e.token),t=new c(i),t=oe(e,t),t):function(e){let t,i,a,s;if("["===e.token){if(z(e),O(e),"]"!==e.token){const r=se(e);if(";"===e.token){for(a=1,i=[r];";"===e.token;)O(e),"]"!==e.token&&(i[a]=se(e),a++);if("]"!==e.token)throw ce(e,"End of matrix ] expected");I(e),O(e),s=i[0].items.length;for(let t=1;t<a;t++)if(i[t].items.length!==s)throw le(e,"Column dimensions mismatch ("+i[t].items.length+" !== "+s+")");t=new o(i)}else{if("]"!==e.token)throw ce(e,"End of matrix ] expected");I(e),O(e),t=r}}else I(e),O(e),t=new o([]);return oe(e,t)}return function(e){if("{"===e.token){let t;z(e);const r={};do{if(O(e),"}"!==e.token){if('"'===e.token||"'"===e.token)t=ae(e,e.token);else{if(!(e.tokenType===w.SYMBOL||e.tokenType===w.DELIMITER&&e.token in E))throw ce(e,"Symbol or string expected as object key");t=e.token,O(e)}if(":"!==e.token)throw ce(e,"Colon : expected after object key");O(e),r[t]=q(e)}}while(","===e.token);if("}"!==e.token)throw ce(e,"Comma , or bracket } expected after object value");I(e),O(e);let n=new m(r);return n=oe(e,n),n}return function(e){let t;if(e.tokenType===w.NUMBER){t=e.token,O(e);const i=xe(t,n),o=r(t,i);return new c(o)}return function(e){let t;if("("===e.token){if(z(e),O(e),t=q(e),")"!==e.token)throw ce(e,"Parenthesis ) expected");return I(e),O(e),t=new h(t),t=oe(e,t),t}return function(e){throw""===e.token?ce(e,"Unexpected end of expression"):ce(e,"Value expected")}(e)}(e)}(e)}(e)}(e)}(e)}(e)}(e);const u={"!":"factorial","'":"ctranspose"};for(;me(u,e.token);)i=e.token,a=u[i],O(e),s=[t],t=new d(i,a,s),t=oe(e,t);return t}(e),("^"===e.token||".^"===e.token)&&(i=e.token,a="^"===i?"pow":"dotPow",_(e),s=[t,ie(e)],t=new d(i,a,s)),t}(e)}function oe(e,t,r){let n;for(;("("===e.token||"["===e.token||"."===e.token)&&(!r||r.includes(e.token));)if(n=[],"("===e.token){if(!ne(t)&&!U(t))return t;if(z(e),O(e),")"!==e.token)for(n.push(q(e));","===e.token;)O(e),n.push(q(e));if(")"!==e.token)throw ce(e,"Parenthesis ) expected");I(e),O(e),t=new f(t,n)}else if("["===e.token){if(z(e),O(e),"]"!==e.token)for(n.push(q(e));","===e.token;)O(e),n.push(q(e));if("]"!==e.token)throw ce(e,"Parenthesis ] expected");I(e),O(e),t=new i(t,new p(n))}else{if(O(e),!(e.tokenType===w.SYMBOL||e.tokenType===w.DELIMITER&&e.token in E))throw ce(e,"Property name expected after dot");n.push(new c(e.token)),O(e),t=new i(t,new p(n,!0))}return t}function ae(e,t){let r="";for(;""!==T(e)&&T(e)!==t;)if("\\"===T(e)){D(e);const t=T(e),n=M[t];if(void 0!==n)r+=n,e.index+=1;else{if("u"!==t)throw ce(e,`Bad escape character \\${t}`);{const t=e.expression.slice(e.index+1,e.index+5);if(!/^[0-9A-Fa-f]{4}$/.test(t))throw ce(e,`Invalid unicode character \\u${t}`);r+=String.fromCharCode(parseInt(t,16)),e.index+=5}}}else r+=T(e),D(e);if(O(e),e.token!==t)throw ce(e,`End of string ${t} expected`);return O(e),r}function se(e){const t=[q(e)];let r=1;for(;","===e.token;)O(e),"]"!==e.token&&";"!==e.token&&(t[r]=q(e),r++);return new o(t)}function ue(e){return e.index-e.token.length+1}function ce(e,t){const r=ue(e),n=new SyntaxError(t+" (char "+r+")");return n.char=r,n}function le(e,t){const r=ue(e),n=new SyntaxError(t+" (char "+r+")");return n.char=r,n}return b.isAlpha=function(e,t,r){return b.isValidLatinOrGreek(e)||b.isValidMathSymbol(e,r)||b.isValidMathSymbol(t,e)},b.isValidLatinOrGreek=function(e){return/^[a-zA-Z_$\u00C0-\u02AF\u0370-\u03FF\u2100-\u214F]$/.test(e)},b.isValidMathSymbol=function(e,t){return/^[\uD835]$/.test(e)&&/^[\uDC00-\uDFFF]$/.test(t)&&/^[^\uDC55\uDC9D\uDCA0\uDCA1\uDCA3\uDCA4\uDCA7\uDCA8\uDCAD\uDCBA\uDCBC\uDCC4\uDD06\uDD0B\uDD0C\uDD15\uDD1D\uDD3A\uDD3F\uDD45\uDD47-\uDD49\uDD51\uDEA6\uDEA7\uDFCC\uDFCD]$/.test(t)},b.isWhitespace=function(e,t){return" "===e||"\t"===e||"\n"===e&&t>0},b.isDecimalMark=function(e,t){return"."===e&&"/"!==t&&"*"!==t&&"^"!==t},b.isDigitDot=function(e){return e>="0"&&e<="9"||"."===e},b.isDigit=function(e){return e>="0"&&e<="9"},b.isHexDigit=function(e){return e>="0"&&e<="9"||e>="a"&&e<="f"||e>="A"&&e<="F"},t.addConversion({from:"string",to:"Node",convert:b}),b})),nm="compile",im=de(nm,["typed","parse"],(e=>{let{typed:t,parse:r}=e;return t(nm,{string:function(e){return r(e).compile()},"Array | Matrix":function(e){return Gn(e,(function(e){return r(e).compile()}))}})})),om="evaluate",am=de(om,["typed","parse"],(e=>{let{typed:t,parse:r}=e;return t(om,{string:function(e){const t=m();return r(e).compile().evaluate(t)},"string, Map | Object":function(e,t){return r(e).compile().evaluate(t)},"Array | Matrix":function(e){const t=m();return Gn(e,(function(e){return r(e).compile().evaluate(t)}))},"Array | Matrix, Map | Object":function(e,t){return Gn(e,(function(e){return r(e).compile().evaluate(t)}))}})})),sm=de("Parser",["evaluate"],(e=>{let{evaluate:t}=e;function r(){if(!(this instanceof r))throw new SyntaxError("Constructor must be called with the new operator");Object.defineProperty(this,"scope",{value:m(),writable:!1})}return r.prototype.type="Parser",r.prototype.isParser=!0,r.prototype.evaluate=function(e){return t(e,this.scope)},r.prototype.get=function(e){if(this.scope.has(e))return this.scope.get(e)},r.prototype.getAll=function(){return function(e){if(e instanceof l)return e.wrappedObject;const t={};for(const r of e.keys())o(t,r,e.get(r));return t}(this.scope)},r.prototype.getAllAsMap=function(){return this.scope},r.prototype.set=function(e,t){return this.scope.set(e,t),t},r.prototype.remove=function(e){this.scope.delete(e)},r.prototype.clear=function(){this.scope.clear()},r}),{isClass:!0}),um="parser",cm=de(um,["typed","Parser"],(e=>{let{typed:t,Parser:r}=e;return t(um,{"":function(){return new r}})})),lm=de("lup",["typed","matrix","abs","addScalar","divideScalar","multiplyScalar","subtractScalar","larger","equalScalar","unaryMinus","DenseMatrix","SparseMatrix","Spa"],(e=>{let{typed:t,matrix:r,abs:n,addScalar:i,divideScalar:o,multiplyScalar:a,subtractScalar:s,larger:u,equalScalar:c,unaryMinus:l,DenseMatrix:f,SparseMatrix:p,Spa:m}=e;return t("lup",{DenseMatrix:function(e){return d(e)},SparseMatrix:function(e){return function(e){const t=e._size[0],r=e._size[1],i=Math.min(t,r),s=e._values,f=e._index,d=e._ptr,h=[],g=[],y=[],x=[t,i],b=[],v=[],w=[],N=[i,r];let E,A,S;const M=[],C=[];for(E=0;E<t;E++)M[E]=E,C[E]=E;const T=function(e,t){const r=C[e],n=C[t];M[r]=t,M[n]=e,C[e]=n,C[t]=r};for(A=0;A<r;A++){const e=new m;A<t&&(y.push(h.length),h.push(1),g.push(A)),w.push(b.length);const r=d[A],i=d[A+1];for(S=r;S<i;S++)E=f[S],e.set(M[E],s[S]);A>0&&e.forEach(0,A-1,(function(t,r){p._forEachRow(t,h,g,y,(function(n,i){n>t&&e.accumulate(n,l(a(i,r)))}))}));let C=A,D=e.get(A),F=n(D);e.forEach(A+1,t-1,(function(e,t){const r=n(t);u(r,F)&&(C=e,F=r,D=t)})),A!==C&&(p._swapRows(A,C,x[1],h,g,y),p._swapRows(A,C,N[1],b,v,w),e.swap(A,C),T(A,C)),e.forEach(0,t-1,(function(e,t){e<=A?(b.push(t),v.push(e)):(t=o(t,D),c(t,0)||(h.push(t),g.push(e)))}))}return w.push(b.length),y.push(h.length),{L:new p({values:h,index:g,ptr:y,size:x}),U:new p({values:b,index:v,ptr:w,size:N}),p:M,toString:function(){return"L: "+this.L.toString()+"\nU: "+this.U.toString()+"\nP: "+this.p}}}(e)},Array:function(e){const t=d(r(e));return{L:t.L.valueOf(),U:t.U.valueOf(),p:t.p}}});function d(e){const t=e._size[0],r=e._size[1];let l=Math.min(t,r);const p=ae(e._data),m=[],d=[t,l],h=[],g=[l,r];let y,x,b;const v=[];for(y=0;y<t;y++)v[y]=y;for(x=0;x<r;x++){if(x>0)for(y=0;y<t;y++){const e=Math.min(y,x);let t=0;for(b=0;b<e;b++)t=i(t,a(p[y][b],p[b][x]));p[y][x]=s(p[y][x],t)}let e=x,r=0,l=0;for(y=x;y<t;y++){const t=p[y][x],i=n(t);u(i,r)&&(e=y,r=i,l=t)}if(x!==e&&(v[x]=[v[e],v[e]=v[x]][0],f._swapRows(x,e,p)),x<t)for(y=x+1;y<t;y++){const e=p[y][x];c(e,0)||(p[y][x]=o(p[y][x],l))}}for(x=0;x<r;x++)for(y=0;y<t;y++)0===x&&(y<r&&(h[y]=[]),m[y]=[]),y<x?(y<r&&(h[y][x]=p[y][x]),x<t&&(m[y][x]=0)):y!==x?(y<r&&(h[y][x]=0),x<t&&(m[y][x]=p[y][x])):(y<r&&(h[y][x]=p[y][x]),x<t&&(m[y][x]=1));const w=new f({data:m,size:d}),N=new f({data:h,size:g}),E=[];for(y=0,l=v.length;y<l;y++)E[v[y]]=y;return{L:w,U:N,p:E,toString:function(){return"L: "+this.L.toString()+"\nU: "+this.U.toString()+"\nP: "+this.p}}}})),fm=de("qr",["typed","matrix","zeros","identity","isZero","equal","sign","sqrt","conj","unaryMinus","addScalar","divideScalar","multiplyScalar","subtractScalar","complex"],(e=>{let{typed:t,matrix:r,zeros:n,identity:i,isZero:o,equal:a,sign:s,sqrt:u,conj:c,unaryMinus:l,addScalar:f,divideScalar:p,multiplyScalar:m,subtractScalar:d,complex:h}=e;return Wr(t("qr",{DenseMatrix:function(e){return y(e)},SparseMatrix:function(e){return function(){throw new Error("qr not implemented for sparse matrices yet")}()},Array:function(e){const t=y(r(e));return{Q:t.Q.valueOf(),R:t.R.valueOf()}}}),{_denseQRimpl:g});function g(e){const t=e._size[0],r=e._size[1],h=i([t],"dense"),g=h._data,y=e.clone(),x=y._data;let b,v,w;const N=n([t],"");for(w=0;w<Math.min(r,t);++w){const e=x[w][w],n=l(a(e,0)?1:s(e)),i=c(n);let h=0;for(b=w;b<t;b++)h=f(h,m(x[b][w],c(x[b][w])));const y=m(n,u(h));if(!o(y)){const n=d(e,y);for(N[w]=1,b=w+1;b<t;b++)N[b]=p(x[b][w],n);const o=l(c(p(n,y)));let a;for(v=w;v<r;v++){for(a=0,b=w;b<t;b++)a=f(a,m(c(N[b]),x[b][v]));for(a=m(a,o),b=w;b<t;b++)x[b][v]=m(d(x[b][v],m(N[b],a)),i)}for(b=0;b<t;b++){for(a=0,v=w;v<t;v++)a=f(a,m(g[b][v],N[v]));for(a=m(a,o),v=w;v<t;++v)g[b][v]=p(d(g[b][v],m(a,c(N[v]))),i)}}}return{Q:h,R:y,toString:function(){return"Q: "+this.Q.toString()+"\nR: "+this.R.toString()}}}function y(e){const t=g(e),r=t.R._data;if(e._data.length>0){const e="Complex"===r[0][0].type?h(0):0;for(let t=0;t<r.length;++t)for(let n=0;n<t&&n<(r[0]||[]).length;++n)r[t][n]=e}return t}}));function pm(e,t,r,n,i,o,a){let s=0;for(r[a]=e;s>=0;){const e=r[a+s],u=r[n+e];-1===u?(s--,o[t++]=e):(r[n+e]=r[i+u],++s,r[a+s]=u)}return t}function mm(e){return-e-2}const dm=de("csAmd",["add","multiply","transpose"],(e=>{let{add:t,multiply:r,transpose:n}=e;return function(e,a){if(!a||e<=0||e>3)return null;const s=a._size,u=s[0],c=s[1];let l=0,f=Math.max(16,10*Math.sqrt(c));f=Math.min(c-2,f);const p=function(e,i,o,a,s){const u=n(i);if(1===e&&a===o)return t(i,u);if(2===e){const e=u._index,t=u._ptr;let a=0;for(let r=0;r<o;r++){let n=t[r];if(t[r]=a,!(t[r+1]-n>s))for(const i=t[r+1];n<i;n++)e[a++]=e[n]}return t[o]=a,i=n(u),r(u,i)}return r(u,i)}(e,a,u,c,f);!function(e,t){const r=e._values,n=e._index,i=e._ptr,o=e._size[1];let a=0;for(let e=0;e<o;e++){let o=i[e];for(i[e]=a;o<i[e+1];o++)t(n[o],e,r?r[o]:1,null)&&(n[a]=n[o],r&&(r[a]=r[o]),a++)}i[o]=a,n.splice(a,n.length-a),r&&r.splice(a,r.length-a)}(p,o);const m=p._index,d=p._ptr;let h=d[c];const g=[],y=[],x=c+1,b=2*(c+1),v=3*(c+1),w=4*(c+1),N=5*(c+1),E=6*(c+1),A=7*(c+1),S=g;let M,C,T,D,F,B,O,_,z,I,k,q,R,P,j,U,L=function(e,t,r,n,o,a,s,u,c,l,f,p){for(let n=0;n<e;n++)r[0+n]=t[n+1]-t[n];r[0+e]=0;for(let t=0;t<=e;t++)r[o+t]=-1,a[t]=-1,r[s+t]=-1,r[u+t]=-1,r[c+t]=1,r[l+t]=1,r[f+t]=0,r[p+t]=r[0+t];const m=i(0,0,r,l,e);return r[f+e]=-2,t[e]=-1,r[l+e]=0,m}(c,d,y,0,v,S,b,A,x,E,w,N),$=function(e,t,r,n,i,o,a,s,u,c,l){let f=0;for(let p=0;p<e;p++){const m=r[n+p];if(0===m)r[i+p]=-2,f++,t[p]=-1,r[o+p]=0;else if(m>a)r[s+p]=0,r[i+p]=-1,f++,t[p]=mm(e),r[s+e]++;else{const e=r[u+m];-1!==e&&(c[e]=p),r[l+p]=r[u+m],r[u+m]=p}}return f}(c,d,y,N,w,E,f,x,v,S,b),H=0;for(;$<c;){for(T=-1;H<c&&-1===(T=y[v+H]);H++);-1!==y[b+T]&&(S[y[b+T]]=-1),y[v+H]=y[b+T];const e=y[w+T];let t=y[x+T];$+=t;let r=0;y[x+T]=-t;let n=d[T];const o=0===e?n:h;let a=o;for(D=1;D<=e+1;D++){for(D>e?(B=T,O=n,_=y[0+T]-e):(B=m[n++],O=d[B],_=y[0+B]),F=1;F<=_;F++)M=m[O++],(z=y[x+M])<=0||(r+=z,y[x+M]=-z,m[a++]=M,-1!==y[b+M]&&(S[y[b+M]]=S[M]),-1!==S[M]?y[b+S[M]]=y[b+M]:y[v+y[N+M]]=y[b+M]);B!==T&&(d[B]=mm(T),y[E+B]=0)}for(0!==e&&(h=a),y[N+T]=r,d[T]=o,y[0+T]=a-o,y[w+T]=-2,L=i(L,l,y,E,c),I=o;I<a;I++){if(M=m[I],(k=y[w+M])<=0)continue;z=-y[x+M];const e=L-z;for(n=d[M],q=d[M]+k-1;n<=q;n++)B=m[n],y[E+B]>=L?y[E+B]-=z:0!==y[E+B]&&(y[E+B]=y[N+B]+e)}for(I=o;I<a;I++){for(M=m[I],q=d[M],R=q+y[w+M]-1,P=q,j=0,U=0,n=q;n<=R;n++)if(B=m[n],0!==y[E+B]){const e=y[E+B]-L;e>0?(U+=e,m[P++]=B,j+=B):(d[B]=mm(T),y[E+B]=0)}y[w+M]=P-q+1;const e=P,i=q+y[0+M];for(n=R+1;n<i;n++){C=m[n];const e=y[x+C];e<=0||(U+=e,m[P++]=C,j+=C)}0===U?(d[M]=mm(T),z=-y[x+M],r-=z,t+=z,$+=z,y[x+M]=0,y[w+M]=-1):(y[N+M]=Math.min(y[N+M],U),m[P]=m[e],m[e]=m[q],m[q]=T,y[0+M]=P-q+1,j=(j<0?-j:j)%c,y[b+M]=y[A+j],y[A+j]=M,S[M]=j)}for(y[N+T]=r,l=Math.max(l,r),L=i(L+l,l,y,E,c),I=o;I<a;I++)if(M=m[I],!(y[x+M]>=0))for(j=S[M],M=y[A+j],y[A+j]=-1;-1!==M&&-1!==y[b+M];M=y[b+M],L++){for(_=y[0+M],k=y[w+M],n=d[M]+1;n<=d[M]+_-1;n++)y[E+m[n]]=L;let e=M;for(C=y[b+M];-1!==C;){let t=y[0+C]===_&&y[w+C]===k;for(n=d[C]+1;t&&n<=d[C]+_-1;n++)y[E+m[n]]!==L&&(t=0);t?(d[C]=mm(M),y[x+M]+=y[x+C],y[x+C]=0,y[w+C]=-1,C=y[b+C],y[b+e]=C):(e=C,C=y[b+C])}}for(n=o,I=o;I<a;I++)M=m[I],(z=-y[x+M])<=0||(y[x+M]=z,U=y[N+M]+r-z,U=Math.min(U,c-$-z),-1!==y[v+U]&&(S[y[v+U]]=M),y[b+M]=y[v+U],S[M]=-1,y[v+U]=M,H=Math.min(H,U),y[N+M]=U,m[n++]=M);y[x+T]=t,0==(y[0+T]=n-o)&&(d[T]=-1,y[E+T]=0),0!==e&&(h=n)}for(M=0;M<c;M++)d[M]=mm(d[M]);for(C=0;C<=c;C++)y[v+C]=-1;for(C=c;C>=0;C--)y[x+C]>0||(y[b+C]=y[v+d[C]],y[v+d[C]]=C);for(B=c;B>=0;B--)y[x+B]<=0||-1!==d[B]&&(y[b+B]=y[v+d[B]],y[v+d[B]]=B);for(T=0,M=0;M<=c;M++)-1===d[M]&&(T=pm(M,T,y,v,b,g,E));return g.splice(g.length-1,1),g};function i(e,t,r,n,i){if(e<2||e+t<0){for(let e=0;e<i;e++)0!==r[n+e]&&(r[n+e]=1);e=2}return e}function o(e,t){return e!==t}}));function hm(e,t,r,n,i,o,a){let s,u,c,l=0;if(e<=t||r[n+t]<=r[i+e])return-1;r[i+e]=r[n+t];const f=r[o+e];if(r[o+e]=t,-1===f)l=1,c=e;else{for(l=2,c=f;c!==r[a+c];c=r[a+c]);for(s=f;s!==c;s=u)u=r[a+s],r[a+s]=c}return{jleaf:l,q:c}}const gm=de("csCounts",["transpose"],(e=>{let{transpose:t}=e;return function(e,r,n,i){if(!e||!r||!n)return null;const o=e._size,a=o[0],s=o[1];let u,c,l,f,p,m,d;const h=4*s+(i?s+a+1:0),g=[],y=s,x=2*s,b=3*s,v=4*s,w=5*s+1;for(l=0;l<h;l++)g[l]=-1;const N=[],E=t(e),A=E._index,S=E._ptr;for(l=0;l<s;l++)for(c=n[l],N[c]=-1===g[b+c]?1:0;-1!==c&&-1===g[b+c];c=r[c])g[b+c]=l;if(i){for(l=0;l<s;l++)g[n[l]]=l;for(u=0;u<a;u++){for(l=s,m=S[u],d=S[u+1],p=m;p<d;p++)l=Math.min(l,g[A[p]]);g[w+u]=g[v+l],g[v+l]=u}}for(u=0;u<s;u++)g[0+u]=u;for(l=0;l<s;l++){for(c=n[l],-1!==r[c]&&N[r[c]]--,f=i?g[v+l]:c;-1!==f;f=i?g[w+f]:-1)for(p=S[f];p<S[f+1];p++){u=A[p];const e=hm(u,c,g,b,y,x,0);e.jleaf>=1&&N[c]++,2===e.jleaf&&N[e.q]--}-1!==r[c]&&(g[0+c]=r[c])}for(c=0;c<s;c++)-1!==r[c]&&(N[r[c]]+=N[c]);return N}})),ym=de("csSqr",["add","multiply","transpose"],(e=>{let{add:t,multiply:r,transpose:n}=e;const i=dm({add:t,multiply:r,transpose:n}),o=gm({transpose:n});return function(e,t,r){const n=t._ptr,a=t._size[1];let s;const u={};if(u.q=i(e,t),e&&!u.q)return null;if(r){const r=e?function(e,t,r){const n=e._values,i=e._index,o=e._ptr,a=e._size,s=e._datatype,u=a[0],c=a[1],l=null,f=[],p=[];let m=0;for(let e=0;e<c;e++){p[e]=m;const t=r?r[e]:e;for(let e=o[t],r=o[t+1],a=e;a<r;a++){const e=i[a];f[m]=e,l&&(l[m]=n[a]),m++}}return p[c]=m,e.createSparseMatrix({values:l,index:f,ptr:p,size:[u,c],datatype:s})}(t,0,u.q):t;u.parent=function(e){if(!e)return null;const t=e._index,r=e._ptr,n=e._size,i=n[0],o=n[1],a=[],s=[],u=o;let c,l;for(c=0;c<i;c++)s[u+c]=-1;for(let e=0;e<o;e++){a[e]=-1,s[0+e]=-1;for(let n=r[e],i=r[e+1],o=n;o<i;o++){const r=t[o];for(c=s[u+r];-1!==c&&c<e;c=l)l=s[0+c],s[0+c]=e,-1===l&&(a[c]=e);s[u+r]=e}}return a}(r);const n=function(e,t){if(!e)return null;let r,n=0;const i=[],o=[],a=t,s=2*t;for(r=0;r<t;r++)o[0+r]=-1;for(r=t-1;r>=0;r--)-1!==e[r]&&(o[a+r]=o[0+e[r]],o[0+e[r]]=r);for(r=0;r<t;r++)-1===e[r]&&(n=pm(r,n,o,0,a,i,s));return i}(u.parent,a);if(u.cp=o(r,u.parent,n,1),r&&u.parent&&u.cp&&function(e,t){const r=e._ptr,n=e._index,i=e._size,o=i[0],a=i[1];t.pinv=[],t.leftmost=[];const s=t.parent,u=t.pinv,c=t.leftmost,l=[],f=o,p=o+a,m=o+2*a;let d,h,g,y,x;for(h=0;h<a;h++)l[f+h]=-1,l[p+h]=-1,l[m+h]=0;for(d=0;d<o;d++)c[d]=-1;for(h=a-1;h>=0;h--)for(y=r[h],x=r[h+1],g=y;g<x;g++)c[n[g]]=h;for(d=o-1;d>=0;d--)u[d]=-1,h=c[d],-1!==h&&(0==l[m+h]++&&(l[p+h]=d),l[0+d]=l[f+h],l[f+h]=d);for(t.lnz=0,t.m2=o,h=0;h<a;h++){if(d=l[f+h],t.lnz++,d<0&&(d=t.m2++),u[d]=h,--m[h]<=0)continue;t.lnz+=l[m+h];const e=s[h];-1!==e&&(0===l[m+e]&&(l[p+e]=l[p+h]),l[0+l[p+h]]=l[f+e],l[f+e]=l[0+d],l[m+e]+=l[m+h])}for(d=0;d<o;d++)u[d]<0&&(u[d]=h++);return!0}(r,u))for(u.unz=0,s=0;s<a;s++)u.unz+=u.cp[s]}else u.unz=4*n[a]+a,u.lnz=u.unz;return u}}));function xm(e,t){return e[t]<0}function bm(e,t){e[t]=mm(e[t])}function vm(e){return e<0?mm(e):e}function wm(e,t,r,n,i){const o=t._index,a=t._ptr,s=t._size[1];let u,c,l,f=0;for(n[0]=e;f>=0;){e=n[f];const t=i?i[e]:e;xm(a,e)||(bm(a,e),n[s+f]=t<0?0:vm(a[t]));let p=1;for(c=n[s+f],l=t<0?0:vm(a[t+1]);c<l;c++)if(u=o[c],!xm(a,u)){n[s+f]=c,n[++f]=u,p=0;break}p&&(f--,n[--r]=e)}return r}const Nm=de("csSpsolve",["divideScalar","multiply","subtract"],(e=>{let{divideScalar:t,multiply:r,subtract:n}=e;return function(e,i,o,a,s,u,c){const l=e._values,f=e._index,p=e._ptr,m=e._size[1],d=i._values,h=i._index,g=i._ptr;let y,x,b,v;const w=function(e,t,r,n,i){const o=e._ptr,a=e._size,s=t._index,u=t._ptr,c=a[1];let l,f,p,m=c;for(f=u[r],p=u[r+1],l=f;l<p;l++){const t=s[l];xm(o,t)||(m=wm(t,e,m,n,i))}for(l=m;l<c;l++)bm(o,n[l]);return m}(e,i,o,a,u);for(y=w;y<m;y++)s[a[y]]=0;for(x=g[o],b=g[o+1],y=x;y<b;y++)s[h[y]]=d[y];for(let e=w;e<m;e++){const i=a[e],o=u?u[i]:i;if(!(o<0))for(x=p[o],b=p[o+1],s[i]=t(s[i],l[c?x:b-1]),y=c?x+1:x,v=c?b:b-1;y<v;y++){const e=f[y];s[e]=n(s[e],r(l[y],s[i]))}}return w}})),Em=de("csLu",["abs","divideScalar","multiply","subtract","larger","largerEq","SparseMatrix"],(e=>{let{abs:t,divideScalar:r,multiply:n,subtract:i,larger:o,largerEq:a,SparseMatrix:s}=e;const u=Nm({divideScalar:r,multiply:n,subtract:i});return function(e,i,c){if(!e)return null;const l=e._size[1];let f,p=100,m=100;i&&(f=i.q,p=i.lnz||p,m=i.unz||m);const d=[],h=[],g=[],y=new s({values:d,index:h,ptr:g,size:[l,l]}),x=[],b=[],v=[],w=new s({values:x,index:b,ptr:v,size:[l,l]}),N=[];let E,A;const S=[],M=[];for(E=0;E<l;E++)S[E]=0,N[E]=-1,g[E+1]=0;p=0,m=0;for(let i=0;i<l;i++){g[i]=p,v[i]=m;const s=f?f[i]:i,w=u(y,e,s,M,S,N,1);let C=-1,T=-1;for(A=w;A<l;A++)if(E=M[A],N[E]<0){const e=t(S[E]);o(e,T)&&(T=e,C=E)}else b[m]=N[E],x[m++]=S[E];if(-1===C||T<=0)return null;N[s]<0&&a(t(S[s]),n(T,c))&&(C=s);const D=S[C];for(b[m]=i,x[m++]=D,N[C]=i,h[p]=C,d[p++]=1,A=w;A<l;A++)E=M[A],N[E]<0&&(h[p]=E,d[p++]=r(S[E],D)),S[E]=0}for(g[l]=p,v[l]=m,A=0;A<p;A++)h[A]=N[h[A]];return d.splice(p,d.length-p),h.splice(p,h.length-p),x.splice(m,x.length-m),b.splice(m,b.length-m),{L:y,U:w,pinv:N}}})),Am=de("slu",["typed","abs","add","multiply","transpose","divideScalar","subtract","larger","largerEq","SparseMatrix"],(e=>{let{typed:t,abs:r,add:n,multiply:i,transpose:o,divideScalar:a,subtract:s,larger:u,largerEq:c,SparseMatrix:l}=e;const f=ym({add:n,multiply:i,transpose:o}),p=Em({abs:r,divideScalar:a,multiply:i,subtract:s,larger:u,largerEq:c,SparseMatrix:l});return t("slu",{"SparseMatrix, number, number":function(e,t,r){if(!ye(t)||t<0||t>3)throw new Error("Symbolic Ordering and Analysis order must be an integer number in the interval [0, 3]");if(r<0||r>1)throw new Error("Partial pivoting threshold must be a number from 0 to 1");const n=f(t,e,!1),i=p(e,n,r);return{L:i.L,U:i.U,p:i.pinv,q:n.q,toString:function(){return"L: "+this.L.toString()+"\nU: "+this.U.toString()+"\np: "+this.p.toString()+(this.q?"\nq: "+this.q.toString():"")+"\n"}}}})}));function Sm(e,t){let r;const n=t.length,i=[];if(e)for(r=0;r<n;r++)i[e[r]]=t[r];else for(r=0;r<n;r++)i[r]=t[r];return i}const Mm="lusolve",Cm=de(Mm,["typed","matrix","lup","slu","usolve","lsolve","DenseMatrix"],(e=>{let{typed:t,matrix:r,lup:n,slu:i,usolve:o,lsolve:a,DenseMatrix:s}=e;const u=ac({DenseMatrix:s});return t(Mm,{"Array, Array | Matrix":function(e,t){e=r(e);const i=n(e);return l(i.L,i.U,i.p,null,t).valueOf()},"DenseMatrix, Array | Matrix":function(e,t){const r=n(e);return l(r.L,r.U,r.p,null,t)},"SparseMatrix, Array | Matrix":function(e,t){const r=n(e);return l(r.L,r.U,r.p,null,t)},"SparseMatrix, Array | Matrix, number, number":function(e,t,r,n){const o=i(e,r,n);return l(o.L,o.U,o.p,o.q,t)},"Object, Array | Matrix":function(e,t){return l(e.L,e.U,e.p,e.q,t)}});function c(e){if(E(e))return e;if(N(e))return r(e);throw new TypeError("Invalid Matrix LU decomposition")}function l(e,t,r,n,i){e=c(e),t=c(t),r&&((i=u(e,i,!0))._data=Sm(r,i._data));const s=a(e,i),l=o(t,s);return n&&(l._data=Sm(n,l._data)),l}})),Tm="polynomialRoot",Dm=de(Tm,["typed","isZero","equalScalar","add","subtract","multiply","divide","sqrt","unaryMinus","cbrt","typeOf","im","re"],(e=>{let{typed:t,isZero:r,equalScalar:n,add:i,subtract:o,multiply:a,divide:s,sqrt:u,unaryMinus:c,cbrt:l,typeOf:f,im:p,re:m}=e;return t(Tm,{"number|Complex, ...number|Complex":(e,t)=>{const d=[e,...t];for(;d.length>0&&r(d[d.length-1]);)d.pop();if(d.length<2)throw new RangeError(`Polynomial [${e}, ${t}] must have a non-zero non-constant coefficient`);switch(d.length){case 2:return[c(s(d[0],d[1]))];case 3:{const[e,t,r]=d,i=a(2,r),l=a(t,t),f=a(4,r,e);if(n(l,f))return[s(c(t),i)];const p=u(o(l,f));return[s(o(p,t),i),s(o(c(p),t),i)]}case 4:{const[e,t,r,h]=d,g=c(a(3,h)),y=a(r,r),x=a(3,h,t),b=i(a(2,r,r,r),a(27,h,h,e)),v=a(9,h,r,t);if(n(y,x)&&n(b,v))return[s(r,g)];const w=o(y,x),N=o(b,v),E=i(a(18,h,r,t,e),a(r,r,t,t)),A=i(a(4,r,r,r,e),a(4,h,t,t,t),a(27,h,h,e,e));if(n(E,A))return[s(o(a(4,h,r,t),i(a(9,h,h,e),a(r,r,r))),a(h,w)),s(o(a(9,h,e),a(r,t)),a(2,w))];let S;return S=n(y,x)?N:s(i(N,u(o(a(N,N),a(4,w,w,w)))),2),l(S,!0).toArray().map((e=>s(i(r,e,s(w,e)),g))).map((e=>"Complex"===f(e)&&n(m(e),m(e)+p(e))?m(e):e))}default:throw new RangeError(`only implemented for cubic or lower-order polynomials, not ${d}`)}}})}));r(9463);const Fm=de("Help",["evaluate"],(e=>{let{evaluate:t}=e;function r(e){if(!(this instanceof r))throw new SyntaxError("Constructor must be called with the new operator");if(!e)throw new Error('Argument "doc" missing');this.doc=e}return r.prototype.type="Help",r.prototype.isHelp=!0,r.prototype.toString=function(){const e=this.doc||{};let r="\n";if(e.name&&(r+="Name: "+e.name+"\n\n"),e.category&&(r+="Category: "+e.category+"\n\n"),e.description&&(r+="Description:\n "+e.description+"\n\n"),e.syntax&&(r+="Syntax:\n "+e.syntax.join("\n ")+"\n\n"),e.examples){r+="Examples:\n";let n=!1;const i=t("config()"),o={config:e=>(n=!0,t("config(newConfig)",{newConfig:e}))};for(let n=0;n<e.examples.length;n++){const i=e.examples[n];let a;r+=" "+i+"\n";try{a=t(i,o)}catch(e){a=e}void 0===a||B(a)||(r+=" "+Kr(a,{precision:14})+"\n")}r+="\n",n&&t("config(originalConfig)",{originalConfig:i})}return e.mayThrow&&e.mayThrow.length&&(r+="Throws: "+e.mayThrow.join(", ")+"\n\n"),e.seealso&&e.seealso.length&&(r+="See also: "+e.seealso.join(", ")+"\n"),r},r.prototype.toJSON=function(){const e=ae(this.doc);return e.mathjs="Help",e},r.fromJSON=function(e){const t={};return Object.keys(e).filter((e=>"mathjs"!==e)).forEach((r=>{t[r]=e[r]})),new r(t)},r.prototype.valueOf=r.prototype.toString,r}),{isClass:!0}),Bm=de("Chain",["?on","math","typed"],(e=>{let{on:t,math:r,typed:n}=e;function i(e){if(!(this instanceof i))throw new SyntaxError("Constructor must be called with the new operator");ie(e)?this.value=e.value:this.value=e}function o(e,t){pe(i.prototype,e,(function(){const e=t();if("function"==typeof e)return a(e)}))}function a(e){return function(){if(0===arguments.length)return new i(e(this.value));const t=[this.value];for(let e=0;e<arguments.length;e++)t[e+1]=arguments[e];if(n.isTypedFunction(e)){const r=n.resolve(e,t);if(1===r.params.length)throw new Error("chain function "+e.name+" cannot match rest parameter between chain value and additional arguments.");return new i(r.implementation.apply(e,t))}return new i(e.apply(e,t))}}i.prototype.type="Chain",i.prototype.isChain=!0,i.prototype.done=function(){return this.value},i.prototype.valueOf=function(){return this.value},i.prototype.toString=function(){return Kr(this.value)},i.prototype.toJSON=function(){return{mathjs:"Chain",value:this.value}},i.fromJSON=function(e){return new i(e.value)},i.createProxy=function(e,t){if("string"==typeof e)r=e,"function"==typeof(n=t)&&(i.prototype[r]=a(n));else for(const t in e)me(e,t)&&void 0===s[t]&&o(t,(()=>e[t]));var r,n};const s={expression:!0,docs:!0,type:!0,classes:!0,json:!0,error:!0,isChain:!0};return i.createProxy(r),t&&t("import",(function(e,t,r){r||o(e,t)})),i}),{isClass:!0}),Om={name:"e",category:"Constants",syntax:["e"],description:"Euler's number, the base of the natural logarithm. Approximately equal to 2.71828",examples:["e","e ^ 2","exp(2)","log(e)"],seealso:["exp"]},_m={name:"pi",category:"Constants",syntax:["pi"],description:"The number pi is a mathematical constant that is the ratio of a circle's circumference to its diameter, and is approximately equal to 3.14159",examples:["pi","sin(pi/2)"],seealso:["tau"]},zm={bignumber:{name:"bignumber",category:"Construction",syntax:["bignumber(x)"],description:"Create a big number from a number or string.",examples:["0.1 + 0.2","bignumber(0.1) + bignumber(0.2)",'bignumber("7.2")','bignumber("7.2e500")',"bignumber([0.1, 0.2, 0.3])"],seealso:["boolean","bigint","complex","fraction","index","matrix","string","unit"]},bigint:{name:"bigint",category:"Construction",syntax:["bigint(x)"],description:"Create a bigint, an integer with an arbitrary number of digits, from a number or string.",examples:["123123123123123123 # a large number will lose digits",'bigint("123123123123123123")','bignumber(["1", "3", "5"])'],seealso:["boolean","bignumber","number","complex","fraction","index","matrix","string","unit"]},boolean:{name:"boolean",category:"Construction",syntax:["x","boolean(x)"],description:"Convert a string or number into a boolean.",examples:["boolean(0)","boolean(1)","boolean(3)",'boolean("true")','boolean("false")',"boolean([1, 0, 1, 1])"],seealso:["bignumber","complex","index","matrix","number","string","unit"]},complex:{name:"complex",category:"Construction",syntax:["complex()","complex(re, im)","complex(string)"],description:"Create a complex number.",examples:["complex()","complex(2, 3)",'complex("7 - 2i")'],seealso:["bignumber","boolean","index","matrix","number","string","unit"]},createUnit:{name:"createUnit",category:"Construction",syntax:["createUnit(definitions)","createUnit(name, definition)"],description:"Create a user-defined unit and register it with the Unit type.",examples:['createUnit("foo")','createUnit("knot", {definition: "0.514444444 m/s", aliases: ["knots", "kt", "kts"]})','createUnit("mph", "1 mile/hour")'],seealso:["unit","splitUnit"]},fraction:{name:"fraction",category:"Construction",syntax:["fraction(num)","fraction(matrix)","fraction(num,den)","fraction({n: num, d: den})"],description:"Create a fraction from a number or from integer numerator and denominator.",examples:["fraction(0.125)","fraction(1, 3) + fraction(2, 5)","fraction({n: 333, d: 53})","fraction([sqrt(9), sqrt(10), sqrt(11)])"],seealso:["bignumber","boolean","complex","index","matrix","string","unit"]},index:{name:"index",category:"Construction",syntax:["[start]","[start:end]","[start:step:end]","[start1, start 2, ...]","[start1:end1, start2:end2, ...]","[start1:step1:end1, start2:step2:end2, ...]"],description:"Create an index to get or replace a subset of a matrix",examples:["A = [1, 2, 3; 4, 5, 6]","A[1, :]","A[1, 2] = 50","A[1:2, 1:2] = 1","B = [1, 2, 3]","B[B>1 and B<3]"],seealso:["bignumber","boolean","complex","matrix,","number","range","string","unit"]},matrix:{name:"matrix",category:"Construction",syntax:["[]","[a1, b1, ...; a2, b2, ...]","matrix()",'matrix("dense")',"matrix([...])"],description:"Create a matrix.",examples:["[]","[1, 2, 3]","[1, 2, 3; 4, 5, 6]","matrix()","matrix([3, 4])",'matrix([3, 4; 5, 6], "sparse")','matrix([3, 4; 5, 6], "sparse", "number")'],seealso:["bignumber","boolean","complex","index","number","string","unit","sparse"]},number:{name:"number",category:"Construction",syntax:["x","number(x)","number(unit, valuelessUnit)"],description:"Create a number or convert a string or boolean into a number.",examples:["2","2e3","4.05","number(2)",'number("7.2")',"number(true)","number([true, false, true, true])",'number(unit("52cm"), "m")'],seealso:["bignumber","bigint","boolean","complex","fraction","index","matrix","string","unit"]},sparse:{name:"sparse",category:"Construction",syntax:["sparse()","sparse([a1, b1, ...; a1, b2, ...])",'sparse([a1, b1, ...; a1, b2, ...], "number")'],description:"Create a sparse matrix.",examples:["sparse()","sparse([3, 4; 5, 6])",'sparse([3, 0; 5, 0], "number")'],seealso:["bignumber","boolean","complex","index","number","string","unit","matrix"]},splitUnit:{name:"splitUnit",category:"Construction",syntax:["splitUnit(unit: Unit, parts: Unit[])"],description:"Split a unit in an array of units whose sum is equal to the original unit.",examples:['splitUnit(1 m, ["feet", "inch"])'],seealso:["unit","createUnit"]},string:{name:"string",category:"Construction",syntax:['"text"',"string(x)"],description:"Create a string or convert a value to a string",examples:['"Hello World!"',"string(4.2)","string(3 + 2i)"],seealso:["bignumber","boolean","complex","index","matrix","number","unit"]},unit:{name:"unit",category:"Construction",syntax:["value unit","unit(value, unit)","unit(string)"],description:"Create a unit.",examples:["5.5 mm","3 inch",'unit(7.1, "kilogram")','unit("23 deg")'],seealso:["bignumber","boolean","complex","index","matrix","number","string"]},e:Om,E:Om,false:{name:"false",category:"Constants",syntax:["false"],description:"Boolean value false",examples:["false"],seealso:["true"]},i:{name:"i",category:"Constants",syntax:["i"],description:"Imaginary unit, defined as i*i=-1. A complex number is described as a + b*i, where a is the real part, and b is the imaginary part.",examples:["i","i * i","sqrt(-1)"],seealso:[]},Infinity:{name:"Infinity",category:"Constants",syntax:["Infinity"],description:"Infinity, a number which is larger than the maximum number that can be handled by a floating point number.",examples:["Infinity","1 / 0"],seealso:[]},LN2:{name:"LN2",category:"Constants",syntax:["LN2"],description:"Returns the natural logarithm of 2, approximately equal to 0.693",examples:["LN2","log(2)"],seealso:[]},LN10:{name:"LN10",category:"Constants",syntax:["LN10"],description:"Returns the natural logarithm of 10, approximately equal to 2.302",examples:["LN10","log(10)"],seealso:[]},LOG2E:{name:"LOG2E",category:"Constants",syntax:["LOG2E"],description:"Returns the base-2 logarithm of E, approximately equal to 1.442",examples:["LOG2E","log(e, 2)"],seealso:[]},LOG10E:{name:"LOG10E",category:"Constants",syntax:["LOG10E"],description:"Returns the base-10 logarithm of E, approximately equal to 0.434",examples:["LOG10E","log(e, 10)"],seealso:[]},NaN:{name:"NaN",category:"Constants",syntax:["NaN"],description:"Not a number",examples:["NaN","0 / 0"],seealso:[]},null:{name:"null",category:"Constants",syntax:["null"],description:"Value null",examples:["null"],seealso:["true","false"]},pi:_m,PI:_m,phi:{name:"phi",category:"Constants",syntax:["phi"],description:"Phi is the golden ratio. Two quantities are in the golden ratio if their ratio is the same as the ratio of their sum to the larger of the two quantities. Phi is defined as `(1 + sqrt(5)) / 2` and is approximately 1.618034...",examples:["phi"],seealso:[]},SQRT1_2:{name:"SQRT1_2",category:"Constants",syntax:["SQRT1_2"],description:"Returns the square root of 1/2, approximately equal to 0.707",examples:["SQRT1_2","sqrt(1/2)"],seealso:[]},SQRT2:{name:"SQRT2",category:"Constants",syntax:["SQRT2"],description:"Returns the square root of 2, approximately equal to 1.414",examples:["SQRT2","sqrt(2)"],seealso:[]},tau:{name:"tau",category:"Constants",syntax:["tau"],description:"Tau is the ratio constant of a circle's circumference to radius, equal to 2 * pi, approximately 6.2832.",examples:["tau","2 * pi"],seealso:["pi"]},true:{name:"true",category:"Constants",syntax:["true"],description:"Boolean value true",examples:["true"],seealso:["false"]},version:{name:"version",category:"Constants",syntax:["version"],description:"A string with the version number of math.js",examples:["version"],seealso:[]},speedOfLight:{description:"Speed of light in vacuum",examples:["speedOfLight"]},gravitationConstant:{description:"Newtonian constant of gravitation",examples:["gravitationConstant"]},planckConstant:{description:"Planck constant",examples:["planckConstant"]},reducedPlanckConstant:{description:"Reduced Planck constant",examples:["reducedPlanckConstant"]},magneticConstant:{description:"Magnetic constant (vacuum permeability)",examples:["magneticConstant"]},electricConstant:{description:"Electric constant (vacuum permeability)",examples:["electricConstant"]},vacuumImpedance:{description:"Characteristic impedance of vacuum",examples:["vacuumImpedance"]},coulomb:{description:"Coulomb's constant",examples:["coulomb"]},elementaryCharge:{description:"Elementary charge",examples:["elementaryCharge"]},bohrMagneton:{description:"Bohr magneton",examples:["bohrMagneton"]},conductanceQuantum:{description:"Conductance quantum",examples:["conductanceQuantum"]},inverseConductanceQuantum:{description:"Inverse conductance quantum",examples:["inverseConductanceQuantum"]},magneticFluxQuantum:{description:"Magnetic flux quantum",examples:["magneticFluxQuantum"]},nuclearMagneton:{description:"Nuclear magneton",examples:["nuclearMagneton"]},klitzing:{description:"Von Klitzing constant",examples:["klitzing"]},bohrRadius:{description:"Bohr radius",examples:["bohrRadius"]},classicalElectronRadius:{description:"Classical electron radius",examples:["classicalElectronRadius"]},electronMass:{description:"Electron mass",examples:["electronMass"]},fermiCoupling:{description:"Fermi coupling constant",examples:["fermiCoupling"]},fineStructure:{description:"Fine-structure constant",examples:["fineStructure"]},hartreeEnergy:{description:"Hartree energy",examples:["hartreeEnergy"]},protonMass:{description:"Proton mass",examples:["protonMass"]},deuteronMass:{description:"Deuteron Mass",examples:["deuteronMass"]},neutronMass:{description:"Neutron mass",examples:["neutronMass"]},quantumOfCirculation:{description:"Quantum of circulation",examples:["quantumOfCirculation"]},rydberg:{description:"Rydberg constant",examples:["rydberg"]},thomsonCrossSection:{description:"Thomson cross section",examples:["thomsonCrossSection"]},weakMixingAngle:{description:"Weak mixing angle",examples:["weakMixingAngle"]},efimovFactor:{description:"Efimov factor",examples:["efimovFactor"]},atomicMass:{description:"Atomic mass constant",examples:["atomicMass"]},avogadro:{description:"Avogadro's number",examples:["avogadro"]},boltzmann:{description:"Boltzmann constant",examples:["boltzmann"]},faraday:{description:"Faraday constant",examples:["faraday"]},firstRadiation:{description:"First radiation constant",examples:["firstRadiation"]},loschmidt:{description:"Loschmidt constant at T=273.15 K and p=101.325 kPa",examples:["loschmidt"]},gasConstant:{description:"Gas constant",examples:["gasConstant"]},molarPlanckConstant:{description:"Molar Planck constant",examples:["molarPlanckConstant"]},molarVolume:{description:"Molar volume of an ideal gas at T=273.15 K and p=101.325 kPa",examples:["molarVolume"]},sackurTetrode:{description:"Sackur-Tetrode constant at T=1 K and p=101.325 kPa",examples:["sackurTetrode"]},secondRadiation:{description:"Second radiation constant",examples:["secondRadiation"]},stefanBoltzmann:{description:"Stefan-Boltzmann constant",examples:["stefanBoltzmann"]},wienDisplacement:{description:"Wien displacement law constant",examples:["wienDisplacement"]},molarMass:{description:"Molar mass constant",examples:["molarMass"]},molarMassC12:{description:"Molar mass constant of carbon-12",examples:["molarMassC12"]},gravity:{description:"Standard acceleration of gravity (standard acceleration of free-fall on Earth)",examples:["gravity"]},planckLength:{description:"Planck length",examples:["planckLength"]},planckMass:{description:"Planck mass",examples:["planckMass"]},planckTime:{description:"Planck time",examples:["planckTime"]},planckCharge:{description:"Planck charge",examples:["planckCharge"]},planckTemperature:{description:"Planck temperature",examples:["planckTemperature"]},derivative:{name:"derivative",category:"Algebra",syntax:["derivative(expr, variable)","derivative(expr, variable, {simplify: boolean})"],description:"Takes the derivative of an expression expressed in parser Nodes. The derivative will be taken over the supplied variable in the second parameter. If there are multiple variables in the expression, it will return a partial derivative.",examples:['derivative("2x^3", "x")','derivative("2x^3", "x", {simplify: false})','derivative("2x^2 + 3x + 4", "x")','derivative("sin(2x)", "x")','f = parse("x^2 + x")','x = parse("x")',"df = derivative(f, x)","df.evaluate({x: 3})"],seealso:["simplify","parse","evaluate"]},lsolve:{name:"lsolve",category:"Algebra",syntax:["x=lsolve(L, b)"],description:"Finds one solution of the linear system L * x = b where L is an [n x n] lower triangular matrix and b is a [n] column vector.",examples:["a = [-2, 3; 2, 1]","b = [11, 9]","x = lsolve(a, b)"],seealso:["lsolveAll","lup","lusolve","usolve","matrix","sparse"]},lsolveAll:{name:"lsolveAll",category:"Algebra",syntax:["x=lsolveAll(L, b)"],description:"Finds all solutions of the linear system L * x = b where L is an [n x n] lower triangular matrix and b is a [n] column vector.",examples:["a = [-2, 3; 2, 1]","b = [11, 9]","x = lsolve(a, b)"],seealso:["lsolve","lup","lusolve","usolve","matrix","sparse"]},lup:{name:"lup",category:"Algebra",syntax:["lup(m)"],description:"Calculate the Matrix LU decomposition with partial pivoting. Matrix A is decomposed in three matrices (L, U, P) where P * A = L * U",examples:["lup([[2, 1], [1, 4]])","lup(matrix([[2, 1], [1, 4]]))","lup(sparse([[2, 1], [1, 4]]))"],seealso:["lusolve","lsolve","usolve","matrix","sparse","slu","qr"]},lusolve:{name:"lusolve",category:"Algebra",syntax:["x=lusolve(A, b)","x=lusolve(lu, b)"],description:"Solves the linear system A * x = b where A is an [n x n] matrix and b is a [n] column vector.",examples:["a = [-2, 3; 2, 1]","b = [11, 9]","x = lusolve(a, b)"],seealso:["lup","slu","lsolve","usolve","matrix","sparse"]},leafCount:{name:"leafCount",category:"Algebra",syntax:["leafCount(expr)"],description:"Computes the number of leaves in the parse tree of the given expression",examples:['leafCount("e^(i*pi)-1")','leafCount(parse("{a: 22/7, b: 10^(1/2)}"))'],seealso:["simplify"]},polynomialRoot:{name:"polynomialRoot",category:"Algebra",syntax:["x=polynomialRoot(-6, 3)","x=polynomialRoot(4, -4, 1)","x=polynomialRoot(-8, 12, -6, 1)"],description:"Finds the roots of a univariate polynomial given by its coefficients starting from constant, linear, and so on, increasing in degree.",examples:["a = polynomialRoot(-6, 11, -6, 1)"],seealso:["cbrt","sqrt"]},resolve:{name:"resolve",category:"Algebra",syntax:["resolve(node, scope)"],description:"Recursively substitute variables in an expression tree.",examples:['resolve(parse("1 + x"), { x: 7 })','resolve(parse("size(text)"), { text: "Hello World" })','resolve(parse("x + y"), { x: parse("3z") })','resolve(parse("3x"), { x: parse("y+z"), z: parse("w^y") })'],seealso:["simplify","evaluate"],mayThrow:["ReferenceError"]},simplify:{name:"simplify",category:"Algebra",syntax:["simplify(expr)","simplify(expr, rules)"],description:"Simplify an expression tree.",examples:['simplify("3 + 2 / 4")','simplify("2x + x")','f = parse("x * (x + 2 + x)")',"simplified = simplify(f)","simplified.evaluate({x: 2})"],seealso:["simplifyCore","derivative","evaluate","parse","rationalize","resolve"]},simplifyConstant:{name:"simplifyConstant",category:"Algebra",syntax:["simplifyConstant(expr)","simplifyConstant(expr, options)"],description:"Replace constant subexpressions of node with their values.",examples:['simplifyConstant("(3-3)*x")','simplifyConstant(parse("z-cos(tau/8)"))'],seealso:["simplify","simplifyCore","evaluate"]},simplifyCore:{name:"simplifyCore",category:"Algebra",syntax:["simplifyCore(node)"],description:"Perform simple one-pass simplifications on an expression tree.",examples:['simplifyCore(parse("0*x"))','simplifyCore(parse("(x+0)*2"))'],seealso:["simplify","simplifyConstant","evaluate"]},symbolicEqual:{name:"symbolicEqual",category:"Algebra",syntax:["symbolicEqual(expr1, expr2)","symbolicEqual(expr1, expr2, options)"],description:"Returns true if the difference of the expressions simplifies to 0",examples:['symbolicEqual("x*y","y*x")','symbolicEqual("abs(x^2)", "x^2")','symbolicEqual("abs(x)", "x", {context: {abs: {trivial: true}}})'],seealso:["simplify","evaluate"]},rationalize:{name:"rationalize",category:"Algebra",syntax:["rationalize(expr)","rationalize(expr, scope)","rationalize(expr, scope, detailed)"],description:"Transform a rationalizable expression in a rational fraction. If rational fraction is one variable polynomial then converts the numerator and denominator in canonical form, with decreasing exponents, returning the coefficients of numerator.",examples:['rationalize("2x/y - y/(x+1)")','rationalize("2x/y - y/(x+1)", true)'],seealso:["simplify"]},slu:{name:"slu",category:"Algebra",syntax:["slu(A, order, threshold)"],description:"Calculate the Matrix LU decomposition with full pivoting. Matrix A is decomposed in two matrices (L, U) and two permutation vectors (pinv, q) where P * A * Q = L * U",examples:["slu(sparse([4.5, 0, 3.2, 0; 3.1, 2.9, 0, 0.9; 0, 1.7, 3, 0; 3.5, 0.4, 0, 1]), 1, 0.001)"],seealso:["lusolve","lsolve","usolve","matrix","sparse","lup","qr"]},usolve:{name:"usolve",category:"Algebra",syntax:["x=usolve(U, b)"],description:"Finds one solution of the linear system U * x = b where U is an [n x n] upper triangular matrix and b is a [n] column vector.",examples:["x=usolve(sparse([1, 1, 1, 1; 0, 1, 1, 1; 0, 0, 1, 1; 0, 0, 0, 1]), [1; 2; 3; 4])"],seealso:["usolveAll","lup","lusolve","lsolve","matrix","sparse"]},usolveAll:{name:"usolveAll",category:"Algebra",syntax:["x=usolve(U, b)"],description:"Finds all solutions of the linear system U * x = b where U is an [n x n] upper triangular matrix and b is a [n] column vector.",examples:["x=usolve(sparse([1, 1, 1, 1; 0, 1, 1, 1; 0, 0, 1, 1; 0, 0, 0, 1]), [1; 2; 3; 4])"],seealso:["usolve","lup","lusolve","lsolve","matrix","sparse"]},qr:{name:"qr",category:"Algebra",syntax:["qr(A)"],description:"Calculates the Matrix QR decomposition. Matrix `A` is decomposed in two matrices (`Q`, `R`) where `Q` is an orthogonal matrix and `R` is an upper triangular matrix.",examples:["qr([[1, -1, 4], [1, 4, -2], [1, 4, 2], [1, -1, 0]])"],seealso:["lup","slu","matrix"]},abs:{name:"abs",category:"Arithmetic",syntax:["abs(x)"],description:"Compute the absolute value.",examples:["abs(3.5)","abs(-4.2)"],seealso:["sign"]},add:{name:"add",category:"Operators",syntax:["x + y","add(x, y)"],description:"Add two values.",examples:["a = 2.1 + 3.6","a - 3.6","3 + 2i","3 cm + 2 inch",'"2.3" + "4"'],seealso:["subtract"]},cbrt:{name:"cbrt",category:"Arithmetic",syntax:["cbrt(x)","cbrt(x, allRoots)"],description:"Compute the cubic root value. If x = y * y * y, then y is the cubic root of x. When `x` is a number or complex number, an optional second argument `allRoots` can be provided to return all three cubic roots. If not provided, the principal root is returned",examples:["cbrt(64)","cube(4)","cbrt(-8)","cbrt(2 + 3i)","cbrt(8i)","cbrt(8i, true)","cbrt(27 m^3)"],seealso:["square","sqrt","cube","multiply"]},ceil:{name:"ceil",category:"Arithmetic",syntax:["ceil(x)"],description:"Round a value towards plus infinity. If x is complex, both real and imaginary part are rounded towards plus infinity.",examples:["ceil(3.2)","ceil(3.8)","ceil(-4.2)"],seealso:["floor","fix","round"]},cube:{name:"cube",category:"Arithmetic",syntax:["cube(x)"],description:"Compute the cube of a value. The cube of x is x * x * x.",examples:["cube(2)","2^3","2 * 2 * 2"],seealso:["multiply","square","pow"]},divide:{name:"divide",category:"Operators",syntax:["x / y","divide(x, y)"],description:"Divide two values.",examples:["a = 2 / 3","a * 3","4.5 / 2","3 + 4 / 2","(3 + 4) / 2","18 km / 4.5"],seealso:["multiply"]},dotDivide:{name:"dotDivide",category:"Operators",syntax:["x ./ y","dotDivide(x, y)"],description:"Divide two values element wise.",examples:["a = [1, 2, 3; 4, 5, 6]","b = [2, 1, 1; 3, 2, 5]","a ./ b"],seealso:["multiply","dotMultiply","divide"]},dotMultiply:{name:"dotMultiply",category:"Operators",syntax:["x .* y","dotMultiply(x, y)"],description:"Multiply two values element wise.",examples:["a = [1, 2, 3; 4, 5, 6]","b = [2, 1, 1; 3, 2, 5]","a .* b"],seealso:["multiply","divide","dotDivide"]},dotPow:{name:"dotPow",category:"Operators",syntax:["x .^ y","dotPow(x, y)"],description:"Calculates the power of x to y element wise.",examples:["a = [1, 2, 3; 4, 5, 6]","a .^ 2"],seealso:["pow"]},exp:{name:"exp",category:"Arithmetic",syntax:["exp(x)"],description:"Calculate the exponent of a value.",examples:["exp(1.3)","e ^ 1.3","log(exp(1.3))","x = 2.4","(exp(i*x) == cos(x) + i*sin(x)) # Euler's formula"],seealso:["expm","expm1","pow","log"]},expm:{name:"expm",category:"Arithmetic",syntax:["exp(x)"],description:"Compute the matrix exponential, expm(A) = e^A. The matrix must be square. Not to be confused with exp(a), which performs element-wise exponentiation.",examples:["expm([[0,2],[0,0]])"],seealso:["exp"]},expm1:{name:"expm1",category:"Arithmetic",syntax:["expm1(x)"],description:"Calculate the value of subtracting 1 from the exponential value.",examples:["expm1(2)","pow(e, 2) - 1","log(expm1(2) + 1)"],seealso:["exp","pow","log"]},fix:{name:"fix",category:"Arithmetic",syntax:["fix(x)"],description:"Round a value towards zero. If x is complex, both real and imaginary part are rounded towards zero.",examples:["fix(3.2)","fix(3.8)","fix(-4.2)","fix(-4.8)"],seealso:["ceil","floor","round"]},floor:{name:"floor",category:"Arithmetic",syntax:["floor(x)"],description:"Round a value towards minus infinity.If x is complex, both real and imaginary part are rounded towards minus infinity.",examples:["floor(3.2)","floor(3.8)","floor(-4.2)"],seealso:["ceil","fix","round"]},gcd:{name:"gcd",category:"Arithmetic",syntax:["gcd(a, b)","gcd(a, b, c, ...)"],description:"Compute the greatest common divisor.",examples:["gcd(8, 12)","gcd(-4, 6)","gcd(25, 15, -10)"],seealso:["lcm","xgcd"]},hypot:{name:"hypot",category:"Arithmetic",syntax:["hypot(a, b, c, ...)","hypot([a, b, c, ...])"],description:"Calculate the hypotenuse of a list with values.",examples:["hypot(3, 4)","sqrt(3^2 + 4^2)","hypot(-2)","hypot([3, 4, 5])"],seealso:["abs","norm"]},lcm:{name:"lcm",category:"Arithmetic",syntax:["lcm(x, y)"],description:"Compute the least common multiple.",examples:["lcm(4, 6)","lcm(6, 21)","lcm(6, 21, 5)"],seealso:["gcd"]},log:{name:"log",category:"Arithmetic",syntax:["log(x)","log(x, base)"],description:"Compute the logarithm of a value. If no base is provided, the natural logarithm of x is calculated. If base if provided, the logarithm is calculated for the specified base. log(x, base) is defined as log(x) / log(base).",examples:["log(3.5)","a = log(2.4)","exp(a)","10 ^ 4","log(10000, 10)","log(10000) / log(10)","b = log(1024, 2)","2 ^ b"],seealso:["exp","log1p","log2","log10"]},log2:{name:"log2",category:"Arithmetic",syntax:["log2(x)"],description:"Calculate the 2-base of a value. This is the same as calculating `log(x, 2)`.",examples:["log2(0.03125)","log2(16)","log2(16) / log2(2)","pow(2, 4)"],seealso:["exp","log1p","log","log10"]},log1p:{name:"log1p",category:"Arithmetic",syntax:["log1p(x)","log1p(x, base)"],description:"Calculate the logarithm of a `value+1`",examples:["log1p(2.5)","exp(log1p(1.4))","pow(10, 4)","log1p(9999, 10)","log1p(9999) / log(10)"],seealso:["exp","log","log2","log10"]},log10:{name:"log10",category:"Arithmetic",syntax:["log10(x)"],description:"Compute the 10-base logarithm of a value.",examples:["log10(0.00001)","log10(10000)","10 ^ 4","log(10000) / log(10)","log(10000, 10)"],seealso:["exp","log"]},mod:{name:"mod",category:"Operators",syntax:["x % y","x mod y","mod(x, y)"],description:"Calculates the modulus, the remainder of an integer division.",examples:["7 % 3","11 % 2","10 mod 4","isOdd(x) = x % 2","isOdd(2)","isOdd(3)"],seealso:["divide"]},multiply:{name:"multiply",category:"Operators",syntax:["x * y","multiply(x, y)"],description:"multiply two values.",examples:["a = 2.1 * 3.4","a / 3.4","2 * 3 + 4","2 * (3 + 4)","3 * 2.1 km"],seealso:["divide"]},norm:{name:"norm",category:"Arithmetic",syntax:["norm(x)","norm(x, p)"],description:"Calculate the norm of a number, vector or matrix.",examples:["abs(-3.5)","norm(-3.5)","norm(3 - 4i)","norm([1, 2, -3], Infinity)","norm([1, 2, -3], -Infinity)","norm([3, 4], 2)","norm([[1, 2], [3, 4]], 1)",'norm([[1, 2], [3, 4]], "inf")','norm([[1, 2], [3, 4]], "fro")']},nthRoot:{name:"nthRoot",category:"Arithmetic",syntax:["nthRoot(a)","nthRoot(a, root)"],description:'Calculate the nth root of a value. The principal nth root of a positive real number A, is the positive real solution of the equation "x^root = A".',examples:["4 ^ 3","nthRoot(64, 3)","nthRoot(9, 2)","sqrt(9)"],seealso:["nthRoots","pow","sqrt"]},nthRoots:{name:"nthRoots",category:"Arithmetic",syntax:["nthRoots(A)","nthRoots(A, root)"],description:'Calculate the nth roots of a value. An nth root of a positive real number A, is a positive real solution of the equation "x^root = A". This function returns an array of complex values.',examples:["nthRoots(1)","nthRoots(1, 3)"],seealso:["sqrt","pow","nthRoot"]},pow:{name:"pow",category:"Operators",syntax:["x ^ y","pow(x, y)"],description:"Calculates the power of x to y, x^y.",examples:["2^3","2*2*2","1 + e ^ (pi * i)","pow([[1, 2], [4, 3]], 2)","pow([[1, 2], [4, 3]], -1)"],seealso:["multiply","nthRoot","nthRoots","sqrt"]},round:{name:"round",category:"Arithmetic",syntax:["round(x)","round(x, n)","round(unit, valuelessUnit)","round(unit, n, valuelessUnit)"],description:"round a value towards the nearest integer.If x is complex, both real and imaginary part are rounded towards the nearest integer. When n is specified, the value is rounded to n decimals.",examples:["round(3.2)","round(3.8)","round(-4.2)","round(-4.8)","round(pi, 3)","round(123.45678, 2)","round(3.241cm, 2, cm)","round([3.2, 3.8, -4.7])"],seealso:["ceil","floor","fix"]},sign:{name:"sign",category:"Arithmetic",syntax:["sign(x)"],description:"Compute the sign of a value. The sign of a value x is 1 when x>1, -1 when x<0, and 0 when x=0.",examples:["sign(3.5)","sign(-4.2)","sign(0)"],seealso:["abs"]},sqrt:{name:"sqrt",category:"Arithmetic",syntax:["sqrt(x)"],description:"Compute the square root value. If x = y * y, then y is the square root of x.",examples:["sqrt(25)","5 * 5","sqrt(-1)"],seealso:["square","sqrtm","multiply","nthRoot","nthRoots","pow"]},sqrtm:{name:"sqrtm",category:"Arithmetic",syntax:["sqrtm(x)"],description:"Calculate the principal square root of a square matrix. The principal square root matrix `X` of another matrix `A` is such that `X * X = A`.",examples:["sqrtm([[33, 24], [48, 57]])"],seealso:["sqrt","abs","square","multiply"]},square:{name:"square",category:"Arithmetic",syntax:["square(x)"],description:"Compute the square of a value. The square of x is x * x.",examples:["square(3)","sqrt(9)","3^2","3 * 3"],seealso:["multiply","pow","sqrt","cube"]},subtract:{name:"subtract",category:"Operators",syntax:["x - y","subtract(x, y)"],description:"subtract two values.",examples:["a = 5.3 - 2","a + 2","2/3 - 1/6","2 * 3 - 3","2.1 km - 500m"],seealso:["add"]},unaryMinus:{name:"unaryMinus",category:"Operators",syntax:["-x","unaryMinus(x)"],description:"Inverse the sign of a value. Converts booleans and strings to numbers.",examples:["-4.5","-(-5.6)",'-"22"'],seealso:["add","subtract","unaryPlus"]},unaryPlus:{name:"unaryPlus",category:"Operators",syntax:["+x","unaryPlus(x)"],description:"Converts booleans and strings to numbers.",examples:["+true",'+"2"'],seealso:["add","subtract","unaryMinus"]},xgcd:{name:"xgcd",category:"Arithmetic",syntax:["xgcd(a, b)"],description:"Calculate the extended greatest common divisor for two values. The result is an array [d, x, y] with 3 entries, where d is the greatest common divisor, and d = x * a + y * b.",examples:["xgcd(8, 12)","gcd(8, 12)","xgcd(36163, 21199)"],seealso:["gcd","lcm"]},invmod:{name:"invmod",category:"Arithmetic",syntax:["invmod(a, b)"],description:"Calculate the (modular) multiplicative inverse of a modulo b. Solution to the equation ax ≣ 1 (mod b)",examples:["invmod(8, 12)","invmod(7, 13)","invmod(15151, 15122)"],seealso:["gcd","xgcd"]},bitAnd:{name:"bitAnd",category:"Bitwise",syntax:["x & y","bitAnd(x, y)"],description:"Bitwise AND operation. Performs the logical AND operation on each pair of the corresponding bits of the two given values by multiplying them. If both bits in the compared position are 1, the bit in the resulting binary representation is 1, otherwise, the result is 0",examples:["5 & 3","bitAnd(53, 131)","[1, 12, 31] & 42"],seealso:["bitNot","bitOr","bitXor","leftShift","rightArithShift","rightLogShift"]},bitNot:{name:"bitNot",category:"Bitwise",syntax:["~x","bitNot(x)"],description:"Bitwise NOT operation. Performs a logical negation on each bit of the given value. Bits that are 0 become 1, and those that are 1 become 0.",examples:["~1","~2","bitNot([2, -3, 4])"],seealso:["bitAnd","bitOr","bitXor","leftShift","rightArithShift","rightLogShift"]},bitOr:{name:"bitOr",category:"Bitwise",syntax:["x | y","bitOr(x, y)"],description:"Bitwise OR operation. Performs the logical inclusive OR operation on each pair of corresponding bits of the two given values. The result in each position is 1 if the first bit is 1 or the second bit is 1 or both bits are 1, otherwise, the result is 0.",examples:["5 | 3","bitOr([1, 2, 3], 4)"],seealso:["bitAnd","bitNot","bitXor","leftShift","rightArithShift","rightLogShift"]},bitXor:{name:"bitXor",category:"Bitwise",syntax:["bitXor(x, y)"],description:"Bitwise XOR operation, exclusive OR. Performs the logical exclusive OR operation on each pair of corresponding bits of the two given values. The result in each position is 1 if only the first bit is 1 or only the second bit is 1, but will be 0 if both are 0 or both are 1.",examples:["bitOr(1, 2)","bitXor([2, 3, 4], 4)"],seealso:["bitAnd","bitNot","bitOr","leftShift","rightArithShift","rightLogShift"]},leftShift:{name:"leftShift",category:"Bitwise",syntax:["x << y","leftShift(x, y)"],description:"Bitwise left logical shift of a value x by y number of bits.",examples:["4 << 1","8 >> 1"],seealso:["bitAnd","bitNot","bitOr","bitXor","rightArithShift","rightLogShift"]},rightArithShift:{name:"rightArithShift",category:"Bitwise",syntax:["x >> y","rightArithShift(x, y)"],description:"Bitwise right arithmetic shift of a value x by y number of bits.",examples:["8 >> 1","4 << 1","-12 >> 2"],seealso:["bitAnd","bitNot","bitOr","bitXor","leftShift","rightLogShift"]},rightLogShift:{name:"rightLogShift",category:"Bitwise",syntax:["x >>> y","rightLogShift(x, y)"],description:"Bitwise right logical shift of a value x by y number of bits.",examples:["8 >>> 1","4 << 1","-12 >>> 2"],seealso:["bitAnd","bitNot","bitOr","bitXor","leftShift","rightArithShift"]},bellNumbers:{name:"bellNumbers",category:"Combinatorics",syntax:["bellNumbers(n)"],description:"The Bell Numbers count the number of partitions of a set. A partition is a pairwise disjoint subset of S whose union is S. `bellNumbers` only takes integer arguments. The following condition must be enforced: n >= 0.",examples:["bellNumbers(3)","bellNumbers(8)"],seealso:["stirlingS2"]},catalan:{name:"catalan",category:"Combinatorics",syntax:["catalan(n)"],description:"The Catalan Numbers enumerate combinatorial structures of many different types. catalan only takes integer arguments. The following condition must be enforced: n >= 0.",examples:["catalan(3)","catalan(8)"],seealso:["bellNumbers"]},composition:{name:"composition",category:"Combinatorics",syntax:["composition(n, k)"],description:"The composition counts of n into k parts. composition only takes integer arguments. The following condition must be enforced: k <= n.",examples:["composition(5, 3)"],seealso:["combinations"]},stirlingS2:{name:"stirlingS2",category:"Combinatorics",syntax:["stirlingS2(n, k)"],description:"he Stirling numbers of the second kind, counts the number of ways to partition a set of n labelled objects into k nonempty unlabelled subsets. `stirlingS2` only takes integer arguments. The following condition must be enforced: k <= n. If n = k or k = 1, then s(n,k) = 1.",examples:["stirlingS2(5, 3)"],seealso:["bellNumbers"]},config:{name:"config",category:"Core",syntax:["config()","config(options)"],description:"Get configuration or change configuration.",examples:["config()","1/3 + 1/4",'config({number: "Fraction"})',"1/3 + 1/4"],seealso:[]},import:{name:"import",category:"Core",syntax:["import(functions)","import(functions, options)"],description:"Import functions or constants from an object.",examples:["import({myFn: f(x)=x^2, myConstant: 32 })","myFn(2)","myConstant"],seealso:[]},typed:{name:"typed",category:"Core",syntax:["typed(signatures)","typed(name, signatures)"],description:"Create a typed function.",examples:['double = typed({ "number": f(x)=x+x, "string": f(x)=concat(x,x) })',"double(2)",'double("hello")'],seealso:[]},arg:{name:"arg",category:"Complex",syntax:["arg(x)"],description:"Compute the argument of a complex value. If x = a+bi, the argument is computed as atan2(b, a).",examples:["arg(2 + 2i)","atan2(3, 2)","arg(2 + 3i)"],seealso:["re","im","conj","abs"]},conj:{name:"conj",category:"Complex",syntax:["conj(x)"],description:"Compute the complex conjugate of a complex value. If x = a+bi, the complex conjugate is a-bi.",examples:["conj(2 + 3i)","conj(2 - 3i)","conj(-5.2i)"],seealso:["re","im","abs","arg"]},re:{name:"re",category:"Complex",syntax:["re(x)"],description:"Get the real part of a complex number.",examples:["re(2 + 3i)","im(2 + 3i)","re(-5.2i)","re(2.4)"],seealso:["im","conj","abs","arg"]},im:{name:"im",category:"Complex",syntax:["im(x)"],description:"Get the imaginary part of a complex number.",examples:["im(2 + 3i)","re(2 + 3i)","im(-5.2i)","im(2.4)"],seealso:["re","conj","abs","arg"]},evaluate:{name:"evaluate",category:"Expression",syntax:["evaluate(expression)","evaluate(expression, scope)","evaluate([expr1, expr2, expr3, ...])","evaluate([expr1, expr2, expr3, ...], scope)"],description:"Evaluate an expression or an array with expressions.",examples:['evaluate("2 + 3")','evaluate("sqrt(16)")','evaluate("2 inch to cm")','evaluate("sin(x * pi)", { "x": 1/2 })','evaluate(["width=2", "height=4","width*height"])'],seealso:[]},help:{name:"help",category:"Expression",syntax:["help(object)","help(string)"],description:"Display documentation on a function or data type.",examples:["help(sqrt)",'help("complex")'],seealso:[]},distance:{name:"distance",category:"Geometry",syntax:["distance([x1, y1], [x2, y2])","distance([[x1, y1], [x2, y2]])"],description:"Calculates the Euclidean distance between two points.",examples:["distance([0,0], [4,4])","distance([[0,0], [4,4]])"],seealso:[]},intersect:{name:"intersect",category:"Geometry",syntax:["intersect(expr1, expr2, expr3, expr4)","intersect(expr1, expr2, expr3)"],description:"Computes the intersection point of lines and/or planes.",examples:["intersect([0, 0], [10, 10], [10, 0], [0, 10])","intersect([1, 0, 1], [4, -2, 2], [1, 1, 1, 6])"],seealso:[]},and:{name:"and",category:"Logical",syntax:["x and y","and(x, y)"],description:"Logical and. Test whether two values are both defined with a nonzero/nonempty value.",examples:["true and false","true and true","2 and 4"],seealso:["not","or","xor"]},not:{name:"not",category:"Logical",syntax:["not x","not(x)"],description:"Logical not. Flips the boolean value of given argument.",examples:["not true","not false","not 2","not 0"],seealso:["and","or","xor"]},or:{name:"or",category:"Logical",syntax:["x or y","or(x, y)"],description:"Logical or. Test if at least one value is defined with a nonzero/nonempty value.",examples:["true or false","false or false","0 or 4"],seealso:["not","and","xor"]},xor:{name:"xor",category:"Logical",syntax:["x xor y","xor(x, y)"],description:"Logical exclusive or, xor. Test whether one and only one value is defined with a nonzero/nonempty value.",examples:["true xor false","false xor false","true xor true","0 xor 4"],seealso:["not","and","or"]},concat:{name:"concat",category:"Matrix",syntax:["concat(A, B, C, ...)","concat(A, B, C, ..., dim)"],description:"Concatenate matrices. By default, the matrices are concatenated by the last dimension. The dimension on which to concatenate can be provided as last argument.",examples:["A = [1, 2; 5, 6]","B = [3, 4; 7, 8]","concat(A, B)","concat(A, B, 1)","concat(A, B, 2)"],seealso:["det","diag","identity","inv","ones","range","size","squeeze","subset","trace","transpose","zeros"]},count:{name:"count",category:"Matrix",syntax:["count(x)"],description:"Count the number of elements of a matrix, array or string.",examples:["a = [1, 2; 3, 4; 5, 6]","count(a)","size(a)",'count("hello world")'],seealso:["size"]},cross:{name:"cross",category:"Matrix",syntax:["cross(A, B)"],description:"Calculate the cross product for two vectors in three dimensional space.",examples:["cross([1, 1, 0], [0, 1, 1])","cross([3, -3, 1], [4, 9, 2])","cross([2, 3, 4], [5, 6, 7])"],seealso:["multiply","dot"]},column:{name:"column",category:"Matrix",syntax:["column(x, index)"],description:"Return a column from a matrix or array.",examples:["A = [[1, 2], [3, 4]]","column(A, 1)","column(A, 2)"],seealso:["row","matrixFromColumns"]},ctranspose:{name:"ctranspose",category:"Matrix",syntax:["x'","ctranspose(x)"],description:"Complex Conjugate and Transpose a matrix",examples:["a = [1, 2, 3; 4, 5, 6]","a'","ctranspose(a)"],seealso:["concat","det","diag","identity","inv","ones","range","size","squeeze","subset","trace","zeros"]},det:{name:"det",category:"Matrix",syntax:["det(x)"],description:"Calculate the determinant of a matrix",examples:["det([1, 2; 3, 4])","det([-2, 2, 3; -1, 1, 3; 2, 0, -1])"],seealso:["concat","diag","identity","inv","ones","range","size","squeeze","subset","trace","transpose","zeros"]},diag:{name:"diag",category:"Matrix",syntax:["diag(x)","diag(x, k)"],description:"Create a diagonal matrix or retrieve the diagonal of a matrix. When x is a vector, a matrix with the vector values on the diagonal will be returned. When x is a matrix, a vector with the diagonal values of the matrix is returned. When k is provided, the k-th diagonal will be filled in or retrieved, if k is positive, the values are placed on the super diagonal. When k is negative, the values are placed on the sub diagonal.",examples:["diag(1:3)","diag(1:3, 1)","a = [1, 2, 3; 4, 5, 6; 7, 8, 9]","diag(a)"],seealso:["concat","det","identity","inv","ones","range","size","squeeze","subset","trace","transpose","zeros"]},diff:{name:"diff",category:"Matrix",syntax:["diff(arr)","diff(arr, dim)"],description:["Create a new matrix or array with the difference of the passed matrix or array.","Dim parameter is optional and used to indicate the dimension of the array/matrix to apply the difference","If no dimension parameter is passed it is assumed as dimension 0","Dimension is zero-based in javascript and one-based in the parser","Arrays must be 'rectangular' meaning arrays like [1, 2]","If something is passed as a matrix it will be returned as a matrix but other than that all matrices are converted to arrays"],examples:["A = [1, 2, 4, 7, 0]","diff(A)","diff(A, 1)","B = [[1, 2], [3, 4]]","diff(B)","diff(B, 1)","diff(B, 2)","diff(B, bignumber(2))","diff([[1, 2], matrix([3, 4])], 2)"],seealso:["subtract","partitionSelect"]},dot:{name:"dot",category:"Matrix",syntax:["dot(A, B)","A * B"],description:"Calculate the dot product of two vectors. The dot product of A = [a1, a2, a3, ..., an] and B = [b1, b2, b3, ..., bn] is defined as dot(A, B) = a1 * b1 + a2 * b2 + a3 * b3 + ... + an * bn",examples:["dot([2, 4, 1], [2, 2, 3])","[2, 4, 1] * [2, 2, 3]"],seealso:["multiply","cross"]},getMatrixDataType:{name:"getMatrixDataType",category:"Matrix",syntax:["getMatrixDataType(x)"],description:'Find the data type of all elements in a matrix or array, for example "number" if all items are a number and "Complex" if all values are complex numbers. If a matrix contains more than one data type, it will return "mixed".',examples:["getMatrixDataType([1, 2, 3])","getMatrixDataType([[5 cm], [2 inch]])",'getMatrixDataType([1, "text"])',"getMatrixDataType([1, bignumber(4)])"],seealso:["matrix","sparse","typeOf"]},identity:{name:"identity",category:"Matrix",syntax:["identity(n)","identity(m, n)","identity([m, n])"],description:"Returns the identity matrix with size m-by-n. The matrix has ones on the diagonal and zeros elsewhere.",examples:["identity(3)","identity(3, 5)","a = [1, 2, 3; 4, 5, 6]","identity(size(a))"],seealso:["concat","det","diag","inv","ones","range","size","squeeze","subset","trace","transpose","zeros"]},filter:{name:"filter",category:"Matrix",syntax:["filter(x, test)"],description:"Filter items in a matrix.",examples:["isPositive(x) = x > 0","filter([6, -2, -1, 4, 3], isPositive)","filter([6, -2, 0, 1, 0], x != 0)"],seealso:["sort","map","forEach"]},flatten:{name:"flatten",category:"Matrix",syntax:["flatten(x)"],description:"Flatten a multi dimensional matrix into a single dimensional matrix.",examples:["a = [1, 2, 3; 4, 5, 6]","size(a)","b = flatten(a)","size(b)"],seealso:["concat","resize","size","squeeze"]},forEach:{name:"forEach",category:"Matrix",syntax:["forEach(x, callback)"],description:"Iterates over all elements of a matrix/array, and executes the given callback function.",examples:["numberOfPets = {}","addPet(n) = numberOfPets[n] = (numberOfPets[n] ? numberOfPets[n]:0 ) + 1;",'forEach(["Dog","Cat","Cat"], addPet)',"numberOfPets"],seealso:["map","sort","filter"]},inv:{name:"inv",category:"Matrix",syntax:["inv(x)"],description:"Calculate the inverse of a matrix",examples:["inv([1, 2; 3, 4])","inv(4)","1 / 4"],seealso:["concat","det","diag","identity","ones","range","size","squeeze","subset","trace","transpose","zeros"]},pinv:{name:"pinv",category:"Matrix",syntax:["pinv(x)"],description:"Calculate the Moore–Penrose inverse of a matrix",examples:["pinv([1, 2; 3, 4])","pinv([[1, 0], [0, 1], [0, 1]])","pinv(4)"],seealso:["inv"]},eigs:{name:"eigs",category:"Matrix",syntax:["eigs(x)"],description:"Calculate the eigenvalues and optionally eigenvectors of a square matrix",examples:["eigs([[5, 2.3], [2.3, 1]])","eigs([[1, 2, 3], [4, 5, 6], [7, 8, 9]], { precision: 1e-6, eigenvectors: false })"],seealso:["inv"]},kron:{name:"kron",category:"Matrix",syntax:["kron(x, y)"],description:"Calculates the Kronecker product of 2 matrices or vectors.",examples:["kron([[1, 0], [0, 1]], [[1, 2], [3, 4]])","kron([1,1], [2,3,4])"],seealso:["multiply","dot","cross"]},matrixFromFunction:{name:"matrixFromFunction",category:"Matrix",syntax:["matrixFromFunction(size, fn)","matrixFromFunction(size, fn, format)","matrixFromFunction(size, fn, format, datatype)","matrixFromFunction(size, format, fn)","matrixFromFunction(size, format, datatype, fn)"],description:"Create a matrix by evaluating a generating function at each index.",examples:["f(I) = I[1] - I[2]","matrixFromFunction([3,3], f)","g(I) = I[1] - I[2] == 1 ? 4 : 0",'matrixFromFunction([100, 100], "sparse", g)',"matrixFromFunction([5], random)"],seealso:["matrix","matrixFromRows","matrixFromColumns","zeros"]},matrixFromRows:{name:"matrixFromRows",category:"Matrix",syntax:["matrixFromRows(...arr)","matrixFromRows(row1, row2)","matrixFromRows(row1, row2, row3)"],description:"Create a dense matrix from vectors as individual rows.",examples:["matrixFromRows([1, 2, 3], [[4],[5],[6]])"],seealso:["matrix","matrixFromColumns","matrixFromFunction","zeros"]},matrixFromColumns:{name:"matrixFromColumns",category:"Matrix",syntax:["matrixFromColumns(...arr)","matrixFromColumns(row1, row2)","matrixFromColumns(row1, row2, row3)"],description:"Create a dense matrix from vectors as individual columns.",examples:["matrixFromColumns([1, 2, 3], [[4],[5],[6]])"],seealso:["matrix","matrixFromRows","matrixFromFunction","zeros"]},map:{name:"map",category:"Matrix",syntax:["map(x, callback)","map(x, y, ..., callback)"],description:"Create a new matrix or array with the results of the callback function executed on each entry of the matrix/array or the matrices/arrays.",examples:["map([1, 2, 3], square)","map([1, 2], [3, 4], f(a,b) = a + b)"],seealso:["filter","forEach"]},ones:{name:"ones",category:"Matrix",syntax:["ones(m)","ones(m, n)","ones(m, n, p, ...)","ones([m])","ones([m, n])","ones([m, n, p, ...])"],description:"Create a matrix containing ones.",examples:["ones(3)","ones(3, 5)","ones([2,3]) * 4.5","a = [1, 2, 3; 4, 5, 6]","ones(size(a))"],seealso:["concat","det","diag","identity","inv","range","size","squeeze","subset","trace","transpose","zeros"]},partitionSelect:{name:"partitionSelect",category:"Matrix",syntax:["partitionSelect(x, k)","partitionSelect(x, k, compare)"],description:"Partition-based selection of an array or 1D matrix. Will find the kth smallest value, and mutates the input array. Uses Quickselect.",examples:["partitionSelect([5, 10, 1], 2)",'partitionSelect(["C", "B", "A", "D"], 1, compareText)',"arr = [5, 2, 1]","partitionSelect(arr, 0) # returns 1, arr is now: [1, 2, 5]","arr","partitionSelect(arr, 1, 'desc') # returns 2, arr is now: [5, 2, 1]","arr"],seealso:["sort"]},range:{name:"range",category:"Type",syntax:["start:end","start:step:end","range(start, end)","range(start, end, step)","range(string)"],description:"Create a range. Lower bound of the range is included, upper bound is excluded.",examples:["1:5","3:-1:-3","range(3, 7)","range(0, 12, 2)",'range("4:10")',"range(1m, 1m, 3m)","a = [1, 2, 3, 4; 5, 6, 7, 8]","a[1:2, 1:2]"],seealso:["concat","det","diag","identity","inv","ones","size","squeeze","subset","trace","transpose","zeros"]},resize:{name:"resize",category:"Matrix",syntax:["resize(x, size)","resize(x, size, defaultValue)"],description:"Resize a matrix.",examples:["resize([1,2,3,4,5], [3])","resize([1,2,3], [5])","resize([1,2,3], [5], -1)","resize(2, [2, 3])",'resize("hello", [8], "!")'],seealso:["size","subset","squeeze","reshape"]},reshape:{name:"reshape",category:"Matrix",syntax:["reshape(x, sizes)"],description:"Reshape a multi dimensional array to fit the specified dimensions.",examples:["reshape([1, 2, 3, 4, 5, 6], [2, 3])","reshape([[1, 2], [3, 4]], [1, 4])","reshape([[1, 2], [3, 4]], [4])","reshape([1, 2, 3, 4], [-1, 2])"],seealso:["size","squeeze","resize"]},rotate:{name:"rotate",category:"Matrix",syntax:["rotate(w, theta)","rotate(w, theta, v)"],description:"Returns a 2-D rotation matrix (2x2) for a given angle (in radians). Returns a 2-D rotation matrix (3x3) of a given angle (in radians) around given axis.",examples:["rotate([1, 0], pi / 2)",'rotate(matrix([1, 0]), unit("35deg"))','rotate([1, 0, 0], unit("90deg"), [0, 0, 1])','rotate(matrix([1, 0, 0]), unit("90deg"), matrix([0, 0, 1]))'],seealso:["matrix","rotationMatrix"]},rotationMatrix:{name:"rotationMatrix",category:"Matrix",syntax:["rotationMatrix(theta)","rotationMatrix(theta, v)","rotationMatrix(theta, v, format)"],description:"Returns a 2-D rotation matrix (2x2) for a given angle (in radians). Returns a 2-D rotation matrix (3x3) of a given angle (in radians) around given axis.",examples:["rotationMatrix(pi / 2)",'rotationMatrix(unit("45deg"), [0, 0, 1])','rotationMatrix(1, matrix([0, 0, 1]), "sparse")'],seealso:["cos","sin"]},row:{name:"row",category:"Matrix",syntax:["row(x, index)"],description:"Return a row from a matrix or array.",examples:["A = [[1, 2], [3, 4]]","row(A, 1)","row(A, 2)"],seealso:["column","matrixFromRows"]},size:{name:"size",category:"Matrix",syntax:["size(x)"],description:"Calculate the size of a matrix.",examples:["size(2.3)",'size("hello world")',"a = [1, 2; 3, 4; 5, 6]","size(a)","size(1:6)"],seealso:["concat","count","det","diag","identity","inv","ones","range","squeeze","subset","trace","transpose","zeros"]},sort:{name:"sort",category:"Matrix",syntax:["sort(x)","sort(x, compare)"],description:'Sort the items in a matrix. Compare can be a string "asc", "desc", "natural", or a custom sort function.',examples:["sort([5, 10, 1])",'sort(["C", "B", "A", "D"], "natural")',"sortByLength(a, b) = size(a)[1] - size(b)[1]",'sort(["Langdon", "Tom", "Sara"], sortByLength)','sort(["10", "1", "2"], "natural")'],seealso:["map","filter","forEach"]},squeeze:{name:"squeeze",category:"Matrix",syntax:["squeeze(x)"],description:"Remove inner and outer singleton dimensions from a matrix.",examples:["a = zeros(3,2,1)","size(squeeze(a))","b = zeros(1,1,3)","size(squeeze(b))"],seealso:["concat","det","diag","identity","inv","ones","range","size","subset","trace","transpose","zeros"]},subset:{name:"subset",category:"Matrix",syntax:["value(index)","value(index) = replacement","subset(value, [index])","subset(value, [index], replacement)"],description:"Get or set a subset of the entries of a matrix or characters of a string. Indexes are one-based. There should be one index specification for each dimension of the target. Each specification can be a single index, a list of indices, or a range in colon notation `l:u`. In a range, both the lower bound l and upper bound u are included; and if a bound is omitted it defaults to the most extreme valid value. The cartesian product of the indices specified in each dimension determines the target of the operation.",examples:["d = [1, 2; 3, 4]","e = []","e[1, 1:2] = [5, 6]","e[2, :] = [7, 8]","f = d * e","f[2, 1]","f[:, 1]","f[[1,2], [1,3]] = [9, 10; 11, 12]","f"],seealso:["concat","det","diag","identity","inv","ones","range","size","squeeze","trace","transpose","zeros"]},trace:{name:"trace",category:"Matrix",syntax:["trace(A)"],description:"Calculate the trace of a matrix: the sum of the elements on the main diagonal of a square matrix.",examples:["A = [1, 2, 3; -1, 2, 3; 2, 0, 3]","trace(A)"],seealso:["concat","det","diag","identity","inv","ones","range","size","squeeze","subset","transpose","zeros"]},transpose:{name:"transpose",category:"Matrix",syntax:["x'","transpose(x)"],description:"Transpose a matrix",examples:["a = [1, 2, 3; 4, 5, 6]","a'","transpose(a)"],seealso:["concat","det","diag","identity","inv","ones","range","size","squeeze","subset","trace","zeros"]},zeros:{name:"zeros",category:"Matrix",syntax:["zeros(m)","zeros(m, n)","zeros(m, n, p, ...)","zeros([m])","zeros([m, n])","zeros([m, n, p, ...])"],description:"Create a matrix containing zeros.",examples:["zeros(3)","zeros(3, 5)","a = [1, 2, 3; 4, 5, 6]","zeros(size(a))"],seealso:["concat","det","diag","identity","inv","ones","range","size","squeeze","subset","trace","transpose"]},fft:{name:"fft",category:"Matrix",syntax:["fft(x)"],description:"Calculate N-dimensional Fourier transform",examples:["fft([[1, 0], [1, 0]])"],seealso:["ifft"]},ifft:{name:"ifft",category:"Matrix",syntax:["ifft(x)"],description:"Calculate N-dimensional inverse Fourier transform",examples:["ifft([[2, 2], [0, 0]])"],seealso:["fft"]},sylvester:{name:"sylvester",category:"Algebra",syntax:["sylvester(A,B,C)"],description:"Solves the real-valued Sylvester equation AX+XB=C for X",examples:["sylvester([[-1, -2], [1, 1]], [[-2, 1], [-1, 2]], [[-3, 2], [3, 0]])","A = [[-1, -2], [1, 1]]; B = [[2, -1], [1, -2]]; C = [[-3, 2], [3, 0]]","sylvester(A, B, C)"],seealso:["schur","lyap"]},schur:{name:"schur",category:"Algebra",syntax:["schur(A)"],description:"Performs a real Schur decomposition of the real matrix A = UTU'",examples:["schur([[1, 0], [-4, 3]])","A = [[1, 0], [-4, 3]]","schur(A)"],seealso:["lyap","sylvester"]},lyap:{name:"lyap",category:"Algebra",syntax:["lyap(A,Q)"],description:"Solves the Continuous-time Lyapunov equation AP+PA'+Q=0 for P",examples:["lyap([[-2, 0], [1, -4]], [[3, 1], [1, 3]])","A = [[-2, 0], [1, -4]]","Q = [[3, 1], [1, 3]]","lyap(A,Q)"],seealso:["schur","sylvester"]},solveODE:{name:"solveODE",category:"Numeric",syntax:["solveODE(func, tspan, y0)","solveODE(func, tspan, y0, options)"],description:"Numerical Integration of Ordinary Differential Equations.",examples:["f(t,y) = y","tspan = [0, 4]","solveODE(f, tspan, 1)","solveODE(f, tspan, [1, 2])",'solveODE(f, tspan, 1, { method:"RK23", maxStep:0.1 })'],seealso:["derivative","simplifyCore"]},combinations:{name:"combinations",category:"Probability",syntax:["combinations(n, k)"],description:"Compute the number of combinations of n items taken k at a time",examples:["combinations(7, 5)"],seealso:["combinationsWithRep","permutations","factorial"]},combinationsWithRep:{name:"combinationsWithRep",category:"Probability",syntax:["combinationsWithRep(n, k)"],description:"Compute the number of combinations of n items taken k at a time with replacements.",examples:["combinationsWithRep(7, 5)"],seealso:["combinations","permutations","factorial"]},factorial:{name:"factorial",category:"Probability",syntax:["n!","factorial(n)"],description:"Compute the factorial of a value",examples:["5!","5 * 4 * 3 * 2 * 1","3!"],seealso:["combinations","combinationsWithRep","permutations","gamma"]},gamma:{name:"gamma",category:"Probability",syntax:["gamma(n)"],description:"Compute the gamma function. For small values, the Lanczos approximation is used, and for large values the extended Stirling approximation.",examples:["gamma(4)","3!","gamma(1/2)","sqrt(pi)"],seealso:["factorial"]},kldivergence:{name:"kldivergence",category:"Probability",syntax:["kldivergence(x, y)"],description:"Calculate the Kullback-Leibler (KL) divergence between two distributions.",examples:["kldivergence([0.7,0.5,0.4], [0.2,0.9,0.5])"],seealso:[]},lgamma:{name:"lgamma",category:"Probability",syntax:["lgamma(n)"],description:"Logarithm of the gamma function for real, positive numbers and complex numbers, using Lanczos approximation for numbers and Stirling series for complex numbers.",examples:["lgamma(4)","lgamma(1/2)","lgamma(i)","lgamma(complex(1.1, 2))"],seealso:["gamma"]},multinomial:{name:"multinomial",category:"Probability",syntax:["multinomial(A)"],description:"Multinomial Coefficients compute the number of ways of picking a1, a2, ..., ai unordered outcomes from `n` possibilities. multinomial takes one array of integers as an argument. The following condition must be enforced: every ai > 0.",examples:["multinomial([1, 2, 1])"],seealso:["combinations","factorial"]},permutations:{name:"permutations",category:"Probability",syntax:["permutations(n)","permutations(n, k)"],description:"Compute the number of permutations of n items taken k at a time",examples:["permutations(5)","permutations(5, 3)"],seealso:["combinations","combinationsWithRep","factorial"]},pickRandom:{name:"pickRandom",category:"Probability",syntax:["pickRandom(array)","pickRandom(array, number)","pickRandom(array, weights)","pickRandom(array, number, weights)","pickRandom(array, weights, number)"],description:"Pick a random entry from a given array.",examples:["pickRandom(0:10)","pickRandom([1, 3, 1, 6])","pickRandom([1, 3, 1, 6], 2)","pickRandom([1, 3, 1, 6], [2, 3, 2, 1])","pickRandom([1, 3, 1, 6], 2, [2, 3, 2, 1])","pickRandom([1, 3, 1, 6], [2, 3, 2, 1], 2)"],seealso:["random","randomInt"]},random:{name:"random",category:"Probability",syntax:["random()","random(max)","random(min, max)","random(size)","random(size, max)","random(size, min, max)"],description:"Return a random number.",examples:["random()","random(10, 20)","random([2, 3])"],seealso:["pickRandom","randomInt"]},randomInt:{name:"randomInt",category:"Probability",syntax:["randomInt(max)","randomInt(min, max)","randomInt(size)","randomInt(size, max)","randomInt(size, min, max)"],description:"Return a random integer number",examples:["randomInt(10, 20)","randomInt([2, 3], 10)"],seealso:["pickRandom","random"]},compare:{name:"compare",category:"Relational",syntax:["compare(x, y)"],description:"Compare two values. Returns 1 when x > y, -1 when x < y, and 0 when x == y.",examples:["compare(2, 3)","compare(3, 2)","compare(2, 2)","compare(5cm, 40mm)","compare(2, [1, 2, 3])"],seealso:["equal","unequal","smaller","smallerEq","largerEq","compareNatural","compareText"]},compareNatural:{name:"compareNatural",category:"Relational",syntax:["compareNatural(x, y)"],description:"Compare two values of any type in a deterministic, natural way. Returns 1 when x > y, -1 when x < y, and 0 when x == y.",examples:["compareNatural(2, 3)","compareNatural(3, 2)","compareNatural(2, 2)","compareNatural(5cm, 40mm)",'compareNatural("2", "10")',"compareNatural(2 + 3i, 2 + 4i)","compareNatural([1, 2, 4], [1, 2, 3])","compareNatural([1, 5], [1, 2, 3])","compareNatural([1, 2], [1, 2])","compareNatural({a: 2}, {a: 4})"],seealso:["equal","unequal","smaller","smallerEq","largerEq","compare","compareText"]},compareText:{name:"compareText",category:"Relational",syntax:["compareText(x, y)"],description:"Compare two strings lexically. Comparison is case sensitive. Returns 1 when x > y, -1 when x < y, and 0 when x == y.",examples:['compareText("B", "A")','compareText("A", "B")','compareText("A", "A")','compareText("2", "10")','compare("2", "10")',"compare(2, 10)",'compareNatural("2", "10")','compareText("B", ["A", "B", "C"])'],seealso:["compare","compareNatural"]},deepEqual:{name:"deepEqual",category:"Relational",syntax:["deepEqual(x, y)"],description:"Check equality of two matrices element wise. Returns true if the size of both matrices is equal and when and each of the elements are equal.",examples:["deepEqual([1,3,4], [1,3,4])","deepEqual([1,3,4], [1,3])"],seealso:["equal","unequal","smaller","larger","smallerEq","largerEq","compare"]},equal:{name:"equal",category:"Relational",syntax:["x == y","equal(x, y)"],description:"Check equality of two values. Returns true if the values are equal, and false if not.",examples:["2+2 == 3","2+2 == 4","a = 3.2","b = 6-2.8","a == b","50cm == 0.5m"],seealso:["unequal","smaller","larger","smallerEq","largerEq","compare","deepEqual","equalText"]},equalText:{name:"equalText",category:"Relational",syntax:["equalText(x, y)"],description:"Check equality of two strings. Comparison is case sensitive. Returns true if the values are equal, and false if not.",examples:['equalText("Hello", "Hello")','equalText("a", "A")','equal("2e3", "2000")','equalText("2e3", "2000")','equalText("B", ["A", "B", "C"])'],seealso:["compare","compareNatural","compareText","equal"]},larger:{name:"larger",category:"Relational",syntax:["x > y","larger(x, y)"],description:"Check if value x is larger than y. Returns true if x is larger than y, and false if not.",examples:["2 > 3","5 > 2*2","a = 3.3","b = 6-2.8","(a > b)","(b < a)","5 cm > 2 inch"],seealso:["equal","unequal","smaller","smallerEq","largerEq","compare"]},largerEq:{name:"largerEq",category:"Relational",syntax:["x >= y","largerEq(x, y)"],description:"Check if value x is larger or equal to y. Returns true if x is larger or equal to y, and false if not.",examples:["2 >= 1+1","2 > 1+1","a = 3.2","b = 6-2.8","(a >= b)"],seealso:["equal","unequal","smallerEq","smaller","compare"]},smaller:{name:"smaller",category:"Relational",syntax:["x < y","smaller(x, y)"],description:"Check if value x is smaller than value y. Returns true if x is smaller than y, and false if not.",examples:["2 < 3","5 < 2*2","a = 3.3","b = 6-2.8","(a < b)","5 cm < 2 inch"],seealso:["equal","unequal","larger","smallerEq","largerEq","compare"]},smallerEq:{name:"smallerEq",category:"Relational",syntax:["x <= y","smallerEq(x, y)"],description:"Check if value x is smaller or equal to value y. Returns true if x is smaller than y, and false if not.",examples:["2 <= 1+1","2 < 1+1","a = 3.2","b = 6-2.8","(a <= b)"],seealso:["equal","unequal","larger","smaller","largerEq","compare"]},unequal:{name:"unequal",category:"Relational",syntax:["x != y","unequal(x, y)"],description:"Check unequality of two values. Returns true if the values are unequal, and false if they are equal.",examples:["2+2 != 3","2+2 != 4","a = 3.2","b = 6-2.8","a != b","50cm != 0.5m","5 cm != 2 inch"],seealso:["equal","smaller","larger","smallerEq","largerEq","compare","deepEqual"]},setCartesian:{name:"setCartesian",category:"Set",syntax:["setCartesian(set1, set2)"],description:"Create the cartesian product of two (multi)sets. Multi-dimension arrays will be converted to single-dimension arrays and the values will be sorted in ascending order before the operation.",examples:["setCartesian([1, 2], [3, 4])"],seealso:["setUnion","setIntersect","setDifference","setPowerset"]},setDifference:{name:"setDifference",category:"Set",syntax:["setDifference(set1, set2)"],description:"Create the difference of two (multi)sets: every element of set1, that is not the element of set2. Multi-dimension arrays will be converted to single-dimension arrays before the operation.",examples:["setDifference([1, 2, 3, 4], [3, 4, 5, 6])","setDifference([[1, 2], [3, 4]], [[3, 4], [5, 6]])"],seealso:["setUnion","setIntersect","setSymDifference"]},setDistinct:{name:"setDistinct",category:"Set",syntax:["setDistinct(set)"],description:"Collect the distinct elements of a multiset. A multi-dimension array will be converted to a single-dimension array before the operation.",examples:["setDistinct([1, 1, 1, 2, 2, 3])"],seealso:["setMultiplicity"]},setIntersect:{name:"setIntersect",category:"Set",syntax:["setIntersect(set1, set2)"],description:"Create the intersection of two (multi)sets. Multi-dimension arrays will be converted to single-dimension arrays before the operation.",examples:["setIntersect([1, 2, 3, 4], [3, 4, 5, 6])","setIntersect([[1, 2], [3, 4]], [[3, 4], [5, 6]])"],seealso:["setUnion","setDifference"]},setIsSubset:{name:"setIsSubset",category:"Set",syntax:["setIsSubset(set1, set2)"],description:"Check whether a (multi)set is a subset of another (multi)set: every element of set1 is the element of set2. Multi-dimension arrays will be converted to single-dimension arrays before the operation.",examples:["setIsSubset([1, 2], [3, 4, 5, 6])","setIsSubset([3, 4], [3, 4, 5, 6])"],seealso:["setUnion","setIntersect","setDifference"]},setMultiplicity:{name:"setMultiplicity",category:"Set",syntax:["setMultiplicity(element, set)"],description:"Count the multiplicity of an element in a multiset. A multi-dimension array will be converted to a single-dimension array before the operation.",examples:["setMultiplicity(1, [1, 2, 2, 4])","setMultiplicity(2, [1, 2, 2, 4])"],seealso:["setDistinct","setSize"]},setPowerset:{name:"setPowerset",category:"Set",syntax:["setPowerset(set)"],description:"Create the powerset of a (multi)set: the powerset contains very possible subsets of a (multi)set. A multi-dimension array will be converted to a single-dimension array before the operation.",examples:["setPowerset([1, 2, 3])"],seealso:["setCartesian"]},setSize:{name:"setSize",category:"Set",syntax:["setSize(set)","setSize(set, unique)"],description:'Count the number of elements of a (multi)set. When the second parameter "unique" is true, count only the unique values. A multi-dimension array will be converted to a single-dimension array before the operation.',examples:["setSize([1, 2, 2, 4])","setSize([1, 2, 2, 4], true)"],seealso:["setUnion","setIntersect","setDifference"]},setSymDifference:{name:"setSymDifference",category:"Set",syntax:["setSymDifference(set1, set2)"],description:"Create the symmetric difference of two (multi)sets. Multi-dimension arrays will be converted to single-dimension arrays before the operation.",examples:["setSymDifference([1, 2, 3, 4], [3, 4, 5, 6])","setSymDifference([[1, 2], [3, 4]], [[3, 4], [5, 6]])"],seealso:["setUnion","setIntersect","setDifference"]},setUnion:{name:"setUnion",category:"Set",syntax:["setUnion(set1, set2)"],description:"Create the union of two (multi)sets. Multi-dimension arrays will be converted to single-dimension arrays before the operation.",examples:["setUnion([1, 2, 3, 4], [3, 4, 5, 6])","setUnion([[1, 2], [3, 4]], [[3, 4], [5, 6]])"],seealso:["setIntersect","setDifference"]},zpk2tf:{name:"zpk2tf",category:"Signal",syntax:["zpk2tf(z, p, k)"],description:"Compute the transfer function of a zero-pole-gain model.",examples:["zpk2tf([1, 2], [-1, -2], 1)","zpk2tf([1, 2], [-1, -2])","zpk2tf([1 - 3i, 2 + 2i], [-1, -2])"],seealso:[]},freqz:{name:"freqz",category:"Signal",syntax:["freqz(b, a)","freqz(b, a, w)"],description:"Calculates the frequency response of a filter given its numerator and denominator coefficients.",examples:["freqz([1, 2], [1, 2, 3])","freqz([1, 2], [1, 2, 3], [0, 1])","freqz([1, 2], [1, 2, 3], 512)"],seealso:[]},erf:{name:"erf",category:"Special",syntax:["erf(x)"],description:"Compute the erf function of a value using a rational Chebyshev approximations for different intervals of x",examples:["erf(0.2)","erf(-0.5)","erf(4)"],seealso:[]},zeta:{name:"zeta",category:"Special",syntax:["zeta(s)"],description:"Compute the Riemann Zeta Function using an infinite series and Riemann's Functional Equation for the entire complex plane",examples:["zeta(0.2)","zeta(-0.5)","zeta(4)"],seealso:[]},cumsum:{name:"cumsum",category:"Statistics",syntax:["cumsum(a, b, c, ...)","cumsum(A)"],description:"Compute the cumulative sum of all values.",examples:["cumsum(2, 3, 4, 1)","cumsum([2, 3, 4, 1])","cumsum([1, 2; 3, 4])","cumsum([1, 2; 3, 4], 1)","cumsum([1, 2; 3, 4], 2)"],seealso:["max","mean","median","min","prod","std","sum","variance"]},mad:{name:"mad",category:"Statistics",syntax:["mad(a, b, c, ...)","mad(A)"],description:"Compute the median absolute deviation of a matrix or a list with values. The median absolute deviation is defined as the median of the absolute deviations from the median.",examples:["mad(10, 20, 30)","mad([1, 2, 3])"],seealso:["mean","median","std","abs"]},max:{name:"max",category:"Statistics",syntax:["max(a, b, c, ...)","max(A)","max(A, dimension)"],description:"Compute the maximum value of a list of values.",examples:["max(2, 3, 4, 1)","max([2, 3, 4, 1])","max([2, 5; 4, 3])","max([2, 5; 4, 3], 1)","max([2, 5; 4, 3], 2)","max(2.7, 7.1, -4.5, 2.0, 4.1)","min(2.7, 7.1, -4.5, 2.0, 4.1)"],seealso:["mean","median","min","prod","std","sum","variance"]},mean:{name:"mean",category:"Statistics",syntax:["mean(a, b, c, ...)","mean(A)","mean(A, dimension)"],description:"Compute the arithmetic mean of a list of values.",examples:["mean(2, 3, 4, 1)","mean([2, 3, 4, 1])","mean([2, 5; 4, 3])","mean([2, 5; 4, 3], 1)","mean([2, 5; 4, 3], 2)","mean([1.0, 2.7, 3.2, 4.0])"],seealso:["max","median","min","prod","std","sum","variance"]},median:{name:"median",category:"Statistics",syntax:["median(a, b, c, ...)","median(A)"],description:"Compute the median of all values. The values are sorted and the middle value is returned. In case of an even number of values, the average of the two middle values is returned.",examples:["median(5, 2, 7)","median([3, -1, 5, 7])"],seealso:["max","mean","min","prod","std","sum","variance","quantileSeq"]},min:{name:"min",category:"Statistics",syntax:["min(a, b, c, ...)","min(A)","min(A, dimension)"],description:"Compute the minimum value of a list of values.",examples:["min(2, 3, 4, 1)","min([2, 3, 4, 1])","min([2, 5; 4, 3])","min([2, 5; 4, 3], 1)","min([2, 5; 4, 3], 2)","min(2.7, 7.1, -4.5, 2.0, 4.1)","max(2.7, 7.1, -4.5, 2.0, 4.1)"],seealso:["max","mean","median","prod","std","sum","variance"]},mode:{name:"mode",category:"Statistics",syntax:["mode(a, b, c, ...)","mode(A)","mode(A, a, b, B, c, ...)"],description:"Computes the mode of all values as an array. In case mode being more than one, multiple values are returned in an array.",examples:["mode(2, 1, 4, 3, 1)","mode([1, 2.7, 3.2, 4, 2.7])","mode(1, 4, 6, 1, 6)"],seealso:["max","mean","min","median","prod","std","sum","variance"]},prod:{name:"prod",category:"Statistics",syntax:["prod(a, b, c, ...)","prod(A)"],description:"Compute the product of all values.",examples:["prod(2, 3, 4)","prod([2, 3, 4])","prod([2, 5; 4, 3])"],seealso:["max","mean","min","median","min","std","sum","variance"]},quantileSeq:{name:"quantileSeq",category:"Statistics",syntax:["quantileSeq(A, prob[, sorted])","quantileSeq(A, [prob1, prob2, ...][, sorted])","quantileSeq(A, N[, sorted])"],description:"Compute the prob order quantile of a matrix or a list with values. The sequence is sorted and the middle value is returned. Supported types of sequence values are: Number, BigNumber, Unit Supported types of probability are: Number, BigNumber. \n\nIn case of a (multi dimensional) array or matrix, the prob order quantile of all elements will be calculated.",examples:["quantileSeq([3, -1, 5, 7], 0.5)","quantileSeq([3, -1, 5, 7], [1/3, 2/3])","quantileSeq([3, -1, 5, 7], 2)","quantileSeq([-1, 3, 5, 7], 0.5, true)"],seealso:["mean","median","min","max","prod","std","sum","variance"]},std:{name:"std",category:"Statistics",syntax:["std(a, b, c, ...)","std(A)","std(A, dimension)","std(A, normalization)","std(A, dimension, normalization)"],description:'Compute the standard deviation of all values, defined as std(A) = sqrt(variance(A)). Optional parameter normalization can be "unbiased" (default), "uncorrected", or "biased".',examples:["std(2, 4, 6)","std([2, 4, 6, 8])",'std([2, 4, 6, 8], "uncorrected")','std([2, 4, 6, 8], "biased")',"std([1, 2, 3; 4, 5, 6])"],seealso:["max","mean","min","median","prod","sum","variance"]},sum:{name:"sum",category:"Statistics",syntax:["sum(a, b, c, ...)","sum(A)","sum(A, dimension)"],description:"Compute the sum of all values.",examples:["sum(2, 3, 4, 1)","sum([2, 3, 4, 1])","sum([2, 5; 4, 3])"],seealso:["max","mean","median","min","prod","std","sum","variance"]},variance:{name:"variance",category:"Statistics",syntax:["variance(a, b, c, ...)","variance(A)","variance(A, dimension)","variance(A, normalization)","variance(A, dimension, normalization)"],description:'Compute the variance of all values. Optional parameter normalization can be "unbiased" (default), "uncorrected", or "biased".',examples:["variance(2, 4, 6)","variance([2, 4, 6, 8])",'variance([2, 4, 6, 8], "uncorrected")','variance([2, 4, 6, 8], "biased")',"variance([1, 2, 3; 4, 5, 6])"],seealso:["max","mean","min","median","min","prod","std","sum"]},corr:{name:"corr",category:"Statistics",syntax:["corr(A,B)"],description:"Compute the correlation coefficient of a two list with values, For matrices, the matrix correlation coefficient is calculated.",examples:["corr([2, 4, 6, 8],[1, 2, 3, 6])","corr(matrix([[1, 2.2, 3, 4.8, 5], [1, 2, 3, 4, 5]]), matrix([[4, 5.3, 6.6, 7, 8], [1, 2, 3, 4, 5]]))"],seealso:["max","mean","min","median","min","prod","std","sum"]},acos:{name:"acos",category:"Trigonometry",syntax:["acos(x)"],description:"Compute the inverse cosine of a value in radians.",examples:["acos(0.5)","acos(cos(2.3))"],seealso:["cos","atan","asin"]},acosh:{name:"acosh",category:"Trigonometry",syntax:["acosh(x)"],description:"Calculate the hyperbolic arccos of a value, defined as `acosh(x) = ln(sqrt(x^2 - 1) + x)`.",examples:["acosh(1.5)"],seealso:["cosh","asinh","atanh"]},acot:{name:"acot",category:"Trigonometry",syntax:["acot(x)"],description:"Calculate the inverse cotangent of a value.",examples:["acot(0.5)","acot(cot(0.5))","acot(2)"],seealso:["cot","atan"]},acoth:{name:"acoth",category:"Trigonometry",syntax:["acoth(x)"],description:"Calculate the inverse hyperbolic tangent of a value, defined as `acoth(x) = (ln((x+1)/x) + ln(x/(x-1))) / 2`.",examples:["acoth(2)","acoth(0.5)"],seealso:["acsch","asech"]},acsc:{name:"acsc",category:"Trigonometry",syntax:["acsc(x)"],description:"Calculate the inverse cotangent of a value.",examples:["acsc(2)","acsc(csc(0.5))","acsc(0.5)"],seealso:["csc","asin","asec"]},acsch:{name:"acsch",category:"Trigonometry",syntax:["acsch(x)"],description:"Calculate the inverse hyperbolic cosecant of a value, defined as `acsch(x) = ln(1/x + sqrt(1/x^2 + 1))`.",examples:["acsch(0.5)"],seealso:["asech","acoth"]},asec:{name:"asec",category:"Trigonometry",syntax:["asec(x)"],description:"Calculate the inverse secant of a value.",examples:["asec(0.5)","asec(sec(0.5))","asec(2)"],seealso:["acos","acot","acsc"]},asech:{name:"asech",category:"Trigonometry",syntax:["asech(x)"],description:"Calculate the inverse secant of a value.",examples:["asech(0.5)"],seealso:["acsch","acoth"]},asin:{name:"asin",category:"Trigonometry",syntax:["asin(x)"],description:"Compute the inverse sine of a value in radians.",examples:["asin(0.5)","asin(sin(0.5))"],seealso:["sin","acos","atan"]},asinh:{name:"asinh",category:"Trigonometry",syntax:["asinh(x)"],description:"Calculate the hyperbolic arcsine of a value, defined as `asinh(x) = ln(x + sqrt(x^2 + 1))`.",examples:["asinh(0.5)"],seealso:["acosh","atanh"]},atan:{name:"atan",category:"Trigonometry",syntax:["atan(x)"],description:"Compute the inverse tangent of a value in radians.",examples:["atan(0.5)","atan(tan(0.5))"],seealso:["tan","acos","asin"]},atanh:{name:"atanh",category:"Trigonometry",syntax:["atanh(x)"],description:"Calculate the hyperbolic arctangent of a value, defined as `atanh(x) = ln((1 + x)/(1 - x)) / 2`.",examples:["atanh(0.5)"],seealso:["acosh","asinh"]},atan2:{name:"atan2",category:"Trigonometry",syntax:["atan2(y, x)"],description:"Computes the principal value of the arc tangent of y/x in radians.",examples:["atan2(2, 2) / pi","angle = 60 deg in rad","x = cos(angle)","y = sin(angle)","atan2(y, x)"],seealso:["sin","cos","tan"]},cos:{name:"cos",category:"Trigonometry",syntax:["cos(x)"],description:"Compute the cosine of x in radians.",examples:["cos(2)","cos(pi / 4) ^ 2","cos(180 deg)","cos(60 deg)","sin(0.2)^2 + cos(0.2)^2"],seealso:["acos","sin","tan"]},cosh:{name:"cosh",category:"Trigonometry",syntax:["cosh(x)"],description:"Compute the hyperbolic cosine of x in radians.",examples:["cosh(0.5)"],seealso:["sinh","tanh","coth"]},cot:{name:"cot",category:"Trigonometry",syntax:["cot(x)"],description:"Compute the cotangent of x in radians. Defined as 1/tan(x)",examples:["cot(2)","1 / tan(2)"],seealso:["sec","csc","tan"]},coth:{name:"coth",category:"Trigonometry",syntax:["coth(x)"],description:"Compute the hyperbolic cotangent of x in radians.",examples:["coth(2)","1 / tanh(2)"],seealso:["sech","csch","tanh"]},csc:{name:"csc",category:"Trigonometry",syntax:["csc(x)"],description:"Compute the cosecant of x in radians. Defined as 1/sin(x)",examples:["csc(2)","1 / sin(2)"],seealso:["sec","cot","sin"]},csch:{name:"csch",category:"Trigonometry",syntax:["csch(x)"],description:"Compute the hyperbolic cosecant of x in radians. Defined as 1/sinh(x)",examples:["csch(2)","1 / sinh(2)"],seealso:["sech","coth","sinh"]},sec:{name:"sec",category:"Trigonometry",syntax:["sec(x)"],description:"Compute the secant of x in radians. Defined as 1/cos(x)",examples:["sec(2)","1 / cos(2)"],seealso:["cot","csc","cos"]},sech:{name:"sech",category:"Trigonometry",syntax:["sech(x)"],description:"Compute the hyperbolic secant of x in radians. Defined as 1/cosh(x)",examples:["sech(2)","1 / cosh(2)"],seealso:["coth","csch","cosh"]},sin:{name:"sin",category:"Trigonometry",syntax:["sin(x)"],description:"Compute the sine of x in radians.",examples:["sin(2)","sin(pi / 4) ^ 2","sin(90 deg)","sin(30 deg)","sin(0.2)^2 + cos(0.2)^2"],seealso:["asin","cos","tan"]},sinh:{name:"sinh",category:"Trigonometry",syntax:["sinh(x)"],description:"Compute the hyperbolic sine of x in radians.",examples:["sinh(0.5)"],seealso:["cosh","tanh"]},tan:{name:"tan",category:"Trigonometry",syntax:["tan(x)"],description:"Compute the tangent of x in radians.",examples:["tan(0.5)","sin(0.5) / cos(0.5)","tan(pi / 4)","tan(45 deg)"],seealso:["atan","sin","cos"]},tanh:{name:"tanh",category:"Trigonometry",syntax:["tanh(x)"],description:"Compute the hyperbolic tangent of x in radians.",examples:["tanh(0.5)","sinh(0.5) / cosh(0.5)"],seealso:["sinh","cosh"]},to:{name:"to",category:"Units",syntax:["x to unit","to(x, unit)"],description:"Change the unit of a value.",examples:["5 inch to cm","3.2kg to g","16 bytes in bits"],seealso:[]},clone:{name:"clone",category:"Utils",syntax:["clone(x)"],description:"Clone a variable. Creates a copy of primitive variables, and a deep copy of matrices",examples:["clone(3.5)","clone(2 - 4i)","clone(45 deg)","clone([1, 2; 3, 4])",'clone("hello world")'],seealso:[]},format:{name:"format",category:"Utils",syntax:["format(value)","format(value, precision)"],description:"Format a value of any type as string.",examples:["format(2.3)","format(3 - 4i)","format([])","format(pi, 3)"],seealso:["print"]},bin:{name:"bin",category:"Utils",syntax:["bin(value)"],description:"Format a number as binary",examples:["bin(2)"],seealso:["oct","hex"]},oct:{name:"oct",category:"Utils",syntax:["oct(value)"],description:"Format a number as octal",examples:["oct(56)"],seealso:["bin","hex"]},hex:{name:"hex",category:"Utils",syntax:["hex(value)"],description:"Format a number as hexadecimal",examples:["hex(240)"],seealso:["bin","oct"]},isNaN:{name:"isNaN",category:"Utils",syntax:["isNaN(x)"],description:"Test whether a value is NaN (not a number)",examples:["isNaN(2)","isNaN(0 / 0)","isNaN(NaN)","isNaN(Infinity)"],seealso:["isNegative","isNumeric","isPositive","isZero"]},isInteger:{name:"isInteger",category:"Utils",syntax:["isInteger(x)"],description:"Test whether a value is an integer number.",examples:["isInteger(2)","isInteger(3.5)","isInteger([3, 0.5, -2])"],seealso:["isNegative","isNumeric","isPositive","isZero"]},isNegative:{name:"isNegative",category:"Utils",syntax:["isNegative(x)"],description:"Test whether a value is negative: smaller than zero.",examples:["isNegative(2)","isNegative(0)","isNegative(-4)","isNegative([3, 0.5, -2])"],seealso:["isInteger","isNumeric","isPositive","isZero"]},isNumeric:{name:"isNumeric",category:"Utils",syntax:["isNumeric(x)"],description:"Test whether a value is a numeric value. Returns true when the input is a number, BigNumber, Fraction, or boolean.",examples:["isNumeric(2)",'isNumeric("2")','hasNumericValue("2")',"isNumeric(0)","isNumeric(bignumber(500))","isNumeric(fraction(0.125))","isNumeric(2 + 3i)",'isNumeric([2.3, "foo", false])'],seealso:["isInteger","isZero","isNegative","isPositive","isNaN","hasNumericValue"]},hasNumericValue:{name:"hasNumericValue",category:"Utils",syntax:["hasNumericValue(x)"],description:"Test whether a value is an numeric value. In case of a string, true is returned if the string contains a numeric value.",examples:["hasNumericValue(2)",'hasNumericValue("2")','isNumeric("2")',"hasNumericValue(0)","hasNumericValue(bignumber(500))","hasNumericValue(fraction(0.125))","hasNumericValue(2 + 3i)",'hasNumericValue([2.3, "foo", false])'],seealso:["isInteger","isZero","isNegative","isPositive","isNaN","isNumeric"]},isPositive:{name:"isPositive",category:"Utils",syntax:["isPositive(x)"],description:"Test whether a value is positive: larger than zero.",examples:["isPositive(2)","isPositive(0)","isPositive(-4)","isPositive([3, 0.5, -2])"],seealso:["isInteger","isNumeric","isNegative","isZero"]},isPrime:{name:"isPrime",category:"Utils",syntax:["isPrime(x)"],description:"Test whether a value is prime: has no divisors other than itself and one.",examples:["isPrime(3)","isPrime(-2)","isPrime([2, 17, 100])"],seealso:["isInteger","isNumeric","isNegative","isZero"]},isZero:{name:"isZero",category:"Utils",syntax:["isZero(x)"],description:"Test whether a value is zero.",examples:["isZero(2)","isZero(0)","isZero(-4)","isZero([3, 0, -2, 0])"],seealso:["isInteger","isNumeric","isNegative","isPositive"]},print:{name:"print",category:"Utils",syntax:["print(template, values)","print(template, values, precision)"],description:"Interpolate values into a string template.",examples:['print("Lucy is $age years old", {age: 5})','print("The value of pi is $pi", {pi: pi}, 3)','print("Hello, $user.name!", {user: {name: "John"}})','print("Values: $1, $2, $3", [6, 9, 4])'],seealso:["format"]},typeOf:{name:"typeOf",category:"Utils",syntax:["typeOf(x)"],description:"Get the type of a variable.",examples:["typeOf(3.5)","typeOf(2 - 4i)","typeOf(45 deg)",'typeOf("hello world")'],seealso:["getMatrixDataType"]},numeric:{name:"numeric",category:"Utils",syntax:["numeric(x)"],description:"Convert a numeric input to a specific numeric type: number, BigNumber, bigint, or Fraction.",examples:['numeric("4")','numeric("4", "number")','numeric("4", "bigint")','numeric("4", "BigNumber")','numeric("4", "Fraction")','numeric(4, "Fraction")','numeric(fraction(2, 5), "number")'],seealso:["number","bigint","fraction","bignumber","string","format"]}},Im="help",km=de(Im,["typed","mathWithTransform","Help"],(e=>{let{typed:t,mathWithTransform:r,Help:n}=e;return t(Im,{any:function(e){let t,o=e;if("string"!=typeof e)for(t in r)if(me(r,t)&&e===r[t]){o=t;break}const a=i(zm,o);if(!a){const e="function"==typeof o?o.name:o;throw new Error('No documentation found on "'+e+'"')}return new n(a)}})})),qm="chain",Rm=de(qm,["typed","Chain"],(e=>{let{typed:t,Chain:r}=e;return t(qm,{"":function(){return new r},any:function(e){return new r(e)}})})),Pm=de("det",["typed","matrix","subtractScalar","multiply","divideScalar","isZero","unaryMinus"],(e=>{let{typed:t,matrix:r,subtractScalar:n,multiply:i,divideScalar:o,isZero:a,unaryMinus:s}=e;return t("det",{any:function(e){return ae(e)},"Array | Matrix":function(e){let t;switch(t=E(e)?e.size():Array.isArray(e)?(e=r(e)).size():[],t.length){case 0:return ae(e);case 1:if(1===t[0])return ae(e.valueOf()[0]);if(0===t[0])return 1;throw new RangeError("Matrix must be square (size: "+Kr(t)+")");case 2:{const r=t[0],u=t[1];if(r===u)return function(e,t){if(1===t)return ae(e[0][0]);if(2===t)return n(i(e[0][0],e[1][1]),i(e[1][0],e[0][1]));{let r=!1;const u=new Array(t).fill(0).map(((e,t)=>t));for(let s=0;s<t;s++){let c=u[s];if(a(e[c][s])){let n;for(n=s+1;n<t;n++)if(!a(e[u[n]][s])){c=u[n],u[n]=u[s],u[s]=c,r=!r;break}if(n===t)return e[c][s]}const l=e[c][s],f=0===s?1:e[u[s-1]][s-1];for(let r=s+1;r<t;r++){const a=u[r];for(let r=s+1;r<t;r++)e[a][r]=o(n(i(e[a][r],l),i(e[a][s],e[c][r])),f)}}const c=e[u[t-1]][t-1];return r?s(c):c}}(e.clone().valueOf(),r);if(0===u)return 1;throw new RangeError("Matrix must be square (size: "+Kr(t)+")")}default:throw new RangeError("Matrix must be two dimensional (size: "+Kr(t)+")")}}})})),jm=de("inv",["typed","matrix","divideScalar","addScalar","multiply","unaryMinus","det","identity","abs"],(e=>{let{typed:t,matrix:r,divideScalar:n,addScalar:i,multiply:o,unaryMinus:a,det:s,identity:u,abs:c}=e;return t("inv",{"Array | Matrix":function(e){const t=E(e)?e.size():un(e);switch(t.length){case 1:if(1===t[0])return E(e)?r([n(1,e.valueOf()[0])]):[n(1,e[0])];throw new RangeError("Matrix must be square (size: "+Kr(t)+")");case 2:{const n=t[0],i=t[1];if(n===i)return E(e)?r(l(e.valueOf(),n,i),e.storage()):l(e,n,i);throw new RangeError("Matrix must be square (size: "+Kr(t)+")")}default:throw new RangeError("Matrix must be two dimensional (size: "+Kr(t)+")")}},any:function(e){return n(1,e)}});function l(e,t,r){let l,f,p,m,d;if(1===t){if(m=e[0][0],0===m)throw Error("Cannot calculate inverse, determinant is zero");return[[n(1,m)]]}if(2===t){const t=s(e);if(0===t)throw Error("Cannot calculate inverse, determinant is zero");return[[n(e[1][1],t),n(a(e[0][1]),t)],[n(a(e[1][0]),t),n(e[0][0],t)]]}{const s=e.concat();for(l=0;l<t;l++)s[l]=s[l].concat();const m=u(t).valueOf();for(let e=0;e<r;e++){let u=c(s[e][e]),h=e;for(l=e+1;l<t;)c(s[l][e])>u&&(u=c(s[l][e]),h=l),l++;if(0===u)throw Error("Cannot calculate inverse, determinant is zero");l=h,l!==e&&(d=s[e],s[e]=s[l],s[l]=d,d=m[e],m[e]=m[l],m[l]=d);const g=s[e],y=m[e];for(l=0;l<t;l++){const t=s[l],u=m[l];if(l!==e){if(0!==t[e]){for(p=n(a(t[e]),g[e]),f=e;f<r;f++)t[f]=i(t[f],o(p,g[f]));for(f=0;f<r;f++)u[f]=i(u[f],o(p,y[f]))}}else{for(p=g[e],f=e;f<r;f++)t[f]=n(t[f],p);for(f=0;f<r;f++)u[f]=n(u[f],p)}}}return m}}})),Um="pinv",Lm=de(Um,["typed","matrix","inv","deepEqual","equal","dotDivide","dot","ctranspose","divideScalar","multiply","add","Complex"],(e=>{let{typed:t,matrix:r,inv:n,deepEqual:i,equal:o,dotDivide:a,dot:s,ctranspose:u,divideScalar:c,multiply:l,add:f,Complex:p}=e;return t(Um,{"Array | Matrix":function(e){const t=E(e)?e.size():un(e);switch(t.length){case 1:return h(e)?u(e):1===t[0]?n(e):a(u(e),s(e,e));case 2:{if(h(e))return u(e);const i=t[0],o=t[1];if(i===o)try{return n(e)}catch(e){if(!(e instanceof Error&&e.message.match(/Cannot calculate inverse, determinant is zero/)))throw e}return E(e)?r(m(e.valueOf(),i,o),e.storage()):m(e,i,o)}default:throw new RangeError("Matrix must be two dimensional (size: "+Kr(t)+")")}},any:function(e){return o(e,0)?ae(e):c(1,e)}});function m(e,t,r){const{C:i,F:o}=function(e,t,r){const n=function(e,t,r){const n=ae(e);let i=0;for(let e=0;e<t;e++){if(r<=i)return n;let o=e;for(;d(n[o][i]);)if(o++,t===o&&(o=e,i++,r===i))return n;[n[o],n[e]]=[n[e],n[o]];let s=n[e][i];for(let t=0;t<r;t++)n[e][t]=a(n[e][t],s);for(let o=0;o<t;o++)if(o!==e){s=n[o][i];for(let t=0;t<r;t++)n[o][t]=f(n[o][t],l(-1,l(s,n[e][t])))}i++}return n}(e,t,r);return{C:e.map(((e,r)=>e.filter(((e,r)=>r<t&&!d(s(n[r],n[r])))))),F:n.filter(((e,t)=>!d(s(n[t],n[t]))))}}(e,t,r),c=l(n(l(u(i),i)),u(i)),p=l(u(o),n(l(o,u(o))));return l(p,c)}function d(e){return o(f(e,p(1,1)),f(0,p(1,1)))}function h(e){return i(f(e,p(1,1)),f(l(e,0),p(1,1)))}}));const $m=de("eigs",["config","typed","matrix","addScalar","equal","subtract","abs","atan","cos","sin","multiplyScalar","divideScalar","inv","bignumber","multiply","add","larger","column","flatten","number","complex","sqrt","diag","size","reshape","qr","usolve","usolveAll","im","re","smaller","matrixFromColumns","dot"],(e=>{let{config:t,typed:r,matrix:n,addScalar:i,subtract:o,equal:a,abs:s,atan:u,cos:c,sin:l,multiplyScalar:f,divideScalar:p,inv:m,bignumber:d,multiply:y,add:v,larger:w,column:N,flatten:E,number:A,complex:S,sqrt:M,diag:C,size:T,reshape:D,qr:F,usolve:B,usolveAll:O,im:_,re:z,smaller:I,matrixFromColumns:k,dot:q}=e;const R=function(e){let{config:t,addScalar:r,subtract:n,abs:i,atan:o,cos:a,sin:s,multiplyScalar:u,inv:c,bignumber:l,multiply:f,add:p}=e;function m(e,r,n){const i=r-e;return Math.abs(i)<=t.relTol?Math.PI/4:.5*Math.atan(2*n/(r-e))}function d(e,r,a){const s=n(r,e);return i(s)<=t.relTol?l(-1).acos().div(4):u(.5,o(f(2,a,c(s))))}function h(e,t,r,n){const i=e.length,o=Math.cos(t),a=Math.sin(t),s=Array(i).fill(0),u=Array(i).fill(0);for(let t=0;t<i;t++)s[t]=o*e[t][r]-a*e[t][n],u[t]=a*e[t][r]+o*e[t][n];for(let t=0;t<i;t++)e[t][r]=s[t],e[t][n]=u[t];return e}function g(e,t,i,o){const c=e.length,f=a(t),p=s(t),m=Array(c).fill(l(0)),d=Array(c).fill(l(0));for(let t=0;t<c;t++)m[t]=n(u(f,e[t][i]),u(p,e[t][o])),d[t]=r(u(p,e[t][i]),u(f,e[t][o]));for(let t=0;t<c;t++)e[t][i]=m[t],e[t][o]=d[t];return e}function y(e,t,i,o){const c=e.length,m=l(a(t)),d=l(s(t)),h=u(m,m),g=u(d,d),y=Array(c).fill(l(0)),x=Array(c).fill(l(0)),b=f(l(2),m,d,e[i][o]),v=r(n(u(h,e[i][i]),b),u(g,e[o][o])),w=p(u(g,e[i][i]),b,u(h,e[o][o]));for(let t=0;t<c;t++)y[t]=n(u(m,e[i][t]),u(d,e[o][t])),x[t]=r(u(d,e[i][t]),u(m,e[o][t]));e[i][i]=v,e[o][o]=w,e[i][o]=l(0),e[o][i]=l(0);for(let t=0;t<c;t++)t!==i&&t!==o&&(e[i][t]=y[t],e[t][i]=y[t],e[o][t]=x[t],e[t][o]=x[t]);return e}function x(e,t,r,n){const i=e.length,o=Math.cos(t),a=Math.sin(t),s=o*o,u=a*a,c=Array(i).fill(0),l=Array(i).fill(0),f=s*e[r][r]-2*o*a*e[r][n]+u*e[n][n],p=u*e[r][r]+2*o*a*e[r][n]+s*e[n][n];for(let t=0;t<i;t++)c[t]=o*e[r][t]-a*e[n][t],l[t]=a*e[r][t]+o*e[n][t];e[r][r]=f,e[n][n]=p,e[r][n]=0,e[n][r]=0;for(let t=0;t<i;t++)t!==r&&t!==n&&(e[r][t]=c[t],e[t][r]=c[t],e[n][t]=l[t],e[t][n]=l[t]);return e}function b(e){const t=e.length;let r=0,n=[0,1];for(let i=0;i<t;i++)for(let o=i+1;o<t;o++)Math.abs(r)<Math.abs(e[i][o])&&(r=Math.abs(e[i][o]),n=[i,o]);return[n,r]}function v(e){const t=e.length;let r=0,n=[0,1];for(let o=0;o<t;o++)for(let a=o+1;a<t;a++)i(r)<i(e[o][a])&&(r=i(e[o][a]),n=[o,a]);return[n,r]}function w(e,t,r){const n=e.length,o=Array(n);let a;if(r){a=Array(n);for(let e=0;e<n;e++)a[e]=Array(n)}for(let s=0;s<n;s++){let u=0,c=e[0];for(let t=0;t<e.length;t++)i(e[t])<i(c)&&(u=t,c=e[u]);if(o[s]=e.splice(u,1)[0],r)for(let e=0;e<n;e++)a[s][e]=t[e][u],t[e].splice(u,1)}if(!r)return{values:o};const s=a.map(((e,t)=>({value:o[t],vector:e})));return{values:o,eigenvectors:s}}return function(e,r){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t.relTol,o=arguments.length>3?arguments[3]:void 0,a=arguments.length>4?arguments[4]:void 0;if("number"===o)return function(e,t,r){const n=e.length,i=Math.abs(t/n);let o,a;if(r){a=new Array(n);for(let e=0;e<n;e++)a[e]=Array(n).fill(0),a[e][e]=1}let s=b(e);for(;Math.abs(s[1])>=Math.abs(i);){const t=s[0][0],n=s[0][1];o=m(e[t][t],e[n][n],e[t][n]),e=x(e,o,t,n),r&&(a=h(a,o,t,n)),s=b(e)}const u=Array(n).fill(0);for(let t=0;t<n;t++)u[t]=e[t][t];return w(ae(u),a,r)}(e,n,a);if("BigNumber"===o)return function(e,t,r){const n=e.length,o=i(t/n);let a,s;if(r){s=new Array(n);for(let e=0;e<n;e++)s[e]=Array(n).fill(0),s[e][e]=1}let u=v(e);for(;i(u[1])>=i(o);){const t=u[0][0],n=u[0][1];a=d(e[t][t],e[n][n],e[t][n]),e=y(e,a,t,n),r&&(s=g(s,a,t,n)),u=v(e)}const c=Array(n).fill(0);for(let t=0;t<n;t++)c[t]=e[t][t];return w(ae(c),s,r)}(e,n,a);throw TypeError("Unsupported data type: "+o)}}({config:t,addScalar:i,subtract:o,column:N,flatten:E,equal:a,abs:s,atan:u,cos:c,sin:l,multiplyScalar:f,inv:m,bignumber:d,complex:S,multiply:y,add:v}),P=function(e){let{addScalar:t,subtract:r,flatten:n,multiply:i,multiplyScalar:o,divideScalar:a,sqrt:s,abs:u,bignumber:c,diag:l,size:f,reshape:p,inv:m,qr:d,usolve:h,usolveAll:g,equal:y,complex:x,larger:b,smaller:v,matrixFromColumns:w,dot:N}=e;function E(e,n,i,a){const u=t(e,a),c=r(o(e,a),o(n,i)),l=o(u,.5),f=o(s(r(o(u,u),o(4,c))),.5);return[t(l,f),r(l,f)]}function A(e,t,n,i,o,a,s,l){const f="BigNumber"===l,p="Complex"===l,m=f?c(0):p?x(0):0,d=f?c(1):p?x(1):1;if(v(u(n),s))return[[d,m],[m,d]];if(b(u(r(o,a)),s))return[[r(o,i),r(a,i)],[n,n]];const h=r(e,o),g=r(i,o);return v(u(t),s)&&v(u(g),s)?[[h,d],[n,m]]:[[t,m],[g,d]]}function S(e,t){for(let r=0;r<e.length;r++)e[r].push(...Array(t-e[r].length).fill(0));for(let r=e.length;r<t;r++)e.push(Array(t).fill(0)),e[r][r]=1;return e}function M(e,t,r){for(let n=0;n<e.length;n++)if(r(e[n],t))return n;return-1}function C(e,t,r,n,i){const o="BigNumber"===i?c(1e3):1e3;let a,s=0;for(;s<5;++s){a=T(t,r,i);try{a=h(e,a)}catch(e){continue}if(b(F(a),o))break}if(s>=5)return null;for(s=0;;){const t=h(e,a);if(v(F(D(a,[t])),n))break;if(++s>=10)return null;a=B(t)}return a}function T(e,t,r){const n="BigNumber"===r,i="Complex"===r;let o=Array(e).fill(0).map((e=>2*Math.random()-1));return n&&(o=o.map((e=>c(e)))),i&&(o=o.map((e=>x(e)))),o=D(o,t),B(o,r)}function D(e,t){const n=f(e);for(let o of t)o=p(o,n),e=r(e,i(a(N(o,e),N(o,o)),o));return e}function F(e){return u(s(N(e,e)))}function B(e,t){const r="Complex"===t,n="BigNumber"===t?c(1):r?x(1):1;return i(a(n,F(e)),e)}return function(e,s,f,p){let h=!(arguments.length>4&&void 0!==arguments[4])||arguments[4];const w=function(e,r,n,i,s){const f="BigNumber"===i,p="Complex"===i,m=f?c(0):0,d=f?c(1):p?x(1):1,h=f?c(1):1,g=f?c(10):2,w=o(g,g);let N;s&&(N=Array(r).fill(d));let E=!1;for(;!E;){E=!0;for(let n=0;n<r;n++){let i=m,c=m;for(let o=0;o<r;o++)n!==o&&(i=t(i,u(e[o][n])),c=t(c,u(e[n][o])));if(!y(i,0)&&!y(c,0)){let u=h,l=i;const f=a(c,g),p=o(c,g);for(;v(l,f);)l=o(l,w),u=o(u,g);for(;b(l,p);)l=a(l,w),u=a(u,g);if(v(a(t(l,c),u),o(t(i,c),.95))){E=!1;const t=a(1,u);for(let i=0;i<r;i++)n!==i&&(e[n][i]=o(e[n][i],t),e[i][n]=o(e[i][n],u));s&&(N[n]=o(N[n],t))}}}}return s?l(N):null}(e,s,0,p,h);!function(e,n,i,s,l,f){const p="BigNumber"===s,m="Complex"===s,d=p?c(0):m?x(0):0;p&&(i=c(i));for(let s=0;s<n-2;s++){let c=0,p=d;for(let t=s+1;t<n;t++){const r=e[t][s];v(u(p),u(r))&&(p=r,c=t)}if(!v(u(p),i)){if(c!==s+1){const t=e[c];e[c]=e[s+1],e[s+1]=t;for(let t=0;t<n;t++){const r=e[t][c];e[t][c]=e[t][s+1],e[t][s+1]=r}if(l){const e=f[c];f[c]=f[s+1],f[s+1]=e}}for(let i=s+2;i<n;i++){const u=a(e[i][s],p);if(0!==u){for(let t=0;t<n;t++)e[i][t]=r(e[i][t],o(u,e[s+1][t]));for(let r=0;r<n;r++)e[r][s+1]=t(e[r][s+1],o(u,e[r][i]));if(l)for(let e=0;e<n;e++)f[i][e]=r(f[i][e],o(u,f[s+1][e]))}}}}}(e,s,f,p,h,w);const{values:N,C:T}=function(e,n,o,a,s){const f="BigNumber"===a,p="Complex"===a,m=f?c(1):p?x(1):1;f&&(o=c(o));let h=ae(e);const g=[];let y=n;const b=[];let w=s?l(Array(n).fill(m)):void 0,N=s?l(Array(y).fill(m)):void 0,M=0;for(;M<=100;){M+=1;const e=h[y-1][y-1];for(let t=0;t<y;t++)h[t][t]=r(h[t][t],e);const{Q:c,R:f}=d(h);h=i(f,c);for(let r=0;r<y;r++)h[r][r]=t(h[r][r],e);if(s&&(N=i(N,c)),1===y||v(u(h[y-1][y-2]),o)){M=0,g.push(h[y-1][y-1]),s&&(b.unshift([[1]]),S(N,n),w=i(w,N),y>1&&(N=l(Array(y-1).fill(m)))),y-=1,h.pop();for(let e=0;e<y;e++)h[e].pop()}else if(2===y||v(u(h[y-2][y-3]),o)){M=0;const e=E(h[y-2][y-2],h[y-2][y-1],h[y-1][y-2],h[y-1][y-1]);g.push(...e),s&&(b.unshift(A(h[y-2][y-2],h[y-2][y-1],h[y-1][y-2],h[y-1][y-1],e[0],e[1],o,a)),S(N,n),w=i(w,N),y>2&&(N=l(Array(y-2).fill(m)))),y-=2,h.pop(),h.pop();for(let e=0;e<y;e++)h[e].pop(),h[e].pop()}if(0===y)break}if(g.sort(((e,t)=>+r(u(e),u(t)))),M>100){const e=Error("The eigenvalues failed to converge. Only found these eigenvalues: "+g.join(", "));throw e.values=g,e.vectors=[],e}const C=s?i(w,function(e,t){const r=[];for(let e=0;e<t;e++)r[e]=Array(t).fill(0);let n=0;for(const t of e){const e=t.length;for(let i=0;i<e;i++)for(let o=0;o<e;o++)r[n+i][n+o]=t[i][o];n+=e}return r}(b,n)):void 0;return{values:g,C}}(e,s,f,p,h);if(h){const t=function(e,t,o,a,s,u,f){const p=m(o),d=i(p,e,o),h="BigNumber"===f,b="Complex"===f,v=h?c(0):b?x(0):0,w=h?c(1):b?x(1):1,N=[],E=[];for(const e of s){const t=M(N,e,y);-1===t?(N.push(e),E.push(1)):E[t]+=1}const A=[],S=N.length,T=Array(t).fill(v),D=l(Array(t).fill(w));for(let e=0;e<S;e++){const s=N[e],c=r(d,i(s,D));let l=g(c,T);for(l.shift();l.length<E[e];){const e=C(c,t,l,u,f);if(null===e)break;l.push(e)}const p=i(m(a),o);l=l.map((e=>i(p,e))),A.push(...l.map((e=>({value:s,vector:n(e)}))))}return A}(e,s,T,w,N,f,p);return{values:N,eigenvectors:t}}return{values:N}}}({config:t,addScalar:i,subtract:o,multiply:y,multiplyScalar:f,flatten:E,divideScalar:p,sqrt:M,abs:s,bignumber:d,diag:C,size:T,reshape:D,qr:F,inv:m,usolve:B,usolveAll:O,equal:a,complex:S,larger:w,smaller:I,matrixFromColumns:k,dot:q});return r("eigs",{Array:function(e){return j(n(e))},"Array, number|BigNumber":function(e,t){return j(n(e),{precision:t})},"Array, Object":(e,t)=>j(n(e),t),Matrix:function(e){return j(e,{matricize:!0})},"Matrix, number|BigNumber":function(e,t){return j(e,{precision:t,matricize:!0})},"Matrix, Object":function(e,t){const r={matricize:!0};return Wr(r,t),j(e,r)}});function j(e){var r;let i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const a=!("eigenvectors"in i)||i.eigenvectors,u=function(e,t,r){const n=e.toArray(),i=e.size();if(2!==i.length||i[0]!==i[1])throw new RangeError(`Matrix must be square (size: ${Kr(i)})`);const a=i[0];if(function(e,t,r){for(let n=0;n<t;n++)for(let i=0;i<t;i++)if(w(d(s(_(e[n][i]))),r))return!1;return!0}(n,a,t)&&(function(e,t){for(let r=0;r<t;r++)for(let n=0;n<t;n++)e[r][n]=z(e[r][n])}(n,a),function(e,t,r){for(let n=0;n<t;n++)for(let i=n;i<t;i++)if(w(d(s(o(e[n][i],e[i][n]))),r))return!1;return!0}(n,a,t))){const i=U(e,n,a);return R(n,a,t,i,r)}const u=U(e,n,a);return P(n,a,t,u,r)}(e,null!==(r=i.precision)&&void 0!==r?r:t.relTol,a);return i.matricize&&(u.values=n(u.values),a&&(u.eigenvectors=u.eigenvectors.map((e=>{let{value:t,vector:r}=e;return{value:t,vector:n(r)}})))),a&&Object.defineProperty(u,"vectors",{enumerable:!1,get:()=>{throw new Error("eigs(M).vectors replaced with eigs(M).eigenvectors")}}),u}function U(e,t,r){const n=e.datatype();if("number"===n||"BigNumber"===n||"Complex"===n)return n;let i=!1,o=!1,a=!1;for(let e=0;e<r;e++)for(let n=0;n<r;n++){const r=t[e][n];if(h(r)||b(r))i=!0;else if(g(r))o=!0;else{if(!x(r))throw TypeError("Unsupported type in Matrix: "+oe(r));a=!0}}if(o&&a&&console.warn("Complex BigNumbers not supported, this operation will lose precission."),a){for(let e=0;e<r;e++)for(let n=0;n<r;n++)t[e][n]=S(t[e][n]);return"Complex"}if(o){for(let e=0;e<r;e++)for(let n=0;n<r;n++)t[e][n]=d(t[e][n]);return"BigNumber"}if(i){for(let e=0;e<r;e++)for(let n=0;n<r;n++)t[e][n]=A(t[e][n]);return"number"}throw TypeError("Matrix contains unsupported types only.")}})),Hm="expm",Gm=de(Hm,["typed","abs","add","identity","inv","multiply"],(e=>{let{typed:t,abs:r,add:n,identity:i,inv:o,multiply:a}=e;return t(Hm,{Matrix:function(e){const t=e.size();if(2!==t.length||t[0]!==t[1])throw new RangeError("Matrix must be square (size: "+Kr(t)+")");const u=t[0],c=function(e){const t=e.size()[0];let n=0;for(let i=0;i<t;i++){let o=0;for(let n=0;n<t;n++)o+=r(e.get([i,n]));n=Math.max(o,n)}return n}(e),l=function(e){for(let t=0;t<30;t++)for(let r=0;r<=t;r++){const n=t-r;if(s(e,r,n)<1e-15)return{q:r,j:n}}throw new Error("Could not find acceptable parameters to compute the matrix exponential (try increasing maxSearchSize in expm.js)")}(c),f=l.q,p=l.j,m=a(e,Math.pow(2,-p));let d=i(u),h=i(u),g=1,y=m,x=-1;for(let e=1;e<=f;e++)e>1&&(y=a(y,m),x=-x),g=g*(f-e+1)/((2*f-e+1)*e),d=n(d,a(g,y)),h=n(h,a(g*x,y));let b=a(o(h),d);for(let e=0;e<p;e++)b=a(b,b);return M(e)?e.createSparseMatrix(b):b}});function s(e,t,r){let n=1;for(let e=2;e<=t;e++)n*=e;let i=n;for(let e=t+1;e<=2*t;e++)i*=e;const o=i*(2*t+1);return 8*Math.pow(e/Math.pow(2,r),2*t)*n*n/(i*o)}})),Zm="sqrtm",Vm=de(Zm,["typed","abs","add","multiply","map","sqrt","subtract","inv","size","max","identity"],(e=>{let{typed:t,abs:r,add:n,multiply:i,map:o,sqrt:a,subtract:s,inv:u,size:c,max:l,identity:f}=e;const p=1e-6;function m(e){let t,o=0,a=e,m=f(c(e));do{const e=a;if(a=i(.5,n(e,u(m))),m=i(.5,n(m,u(e))),t=l(r(s(a,e))),t>p&&++o>1e3)throw new Error("computing square root of matrix: iterative method could not converge")}while(t>p);return a}return t(Zm,{"Array | Matrix":function(e){const t=E(e)?e.size():un(e);switch(t.length){case 1:if(1===t[0])return o(e,a);throw new RangeError("Matrix must be square (size: "+Kr(t)+")");case 2:if(t[0]===t[1])return m(e);throw new RangeError("Matrix must be square (size: "+Kr(t)+")");default:throw new RangeError("Matrix must be at most two dimensional (size: "+Kr(t)+")")}}})})),Wm="sylvester",Ym=de(Wm,["typed","schur","matrixFromColumns","matrix","multiply","range","concat","transpose","index","subset","add","subtract","identity","lusolve","abs"],(e=>{let{typed:t,schur:r,matrixFromColumns:n,matrix:i,multiply:o,range:a,concat:s,transpose:u,index:c,subset:l,add:f,subtract:p,identity:m,lusolve:d,abs:h}=e;return t(Wm,{"Matrix, Matrix, Matrix":g,"Array, Matrix, Matrix":function(e,t,r){return g(i(e),t,r)},"Array, Array, Matrix":function(e,t,r){return g(i(e),i(t),r)},"Array, Matrix, Array":function(e,t,r){return g(i(e),t,i(r))},"Matrix, Array, Matrix":function(e,t,r){return g(e,i(t),r)},"Matrix, Array, Array":function(e,t,r){return g(e,i(t),i(r))},"Matrix, Matrix, Array":function(e,t,r){return g(e,t,i(r))},"Array, Array, Array":function(e,t,r){return g(i(e),i(t),i(r)).toArray()}});function g(e,t,g){const y=t.size()[0],x=e.size()[0],b=r(e),v=b.T,w=b.U,N=r(o(-1,t)),E=N.T,A=N.U,S=o(o(u(w),g),A),M=a(0,x),C=[],T=(e,t)=>s(e,t,1),D=(e,t)=>s(e,t,0);for(let e=0;e<y;e++)if(e<y-1&&h(l(E,c(e+1,e)))>1e-5){let t=D(l(S,c(M,e)),l(S,c(M,e+1)));for(let r=0;r<e;r++)t=f(t,D(o(C[r],l(E,c(r,e))),o(C[r],l(E,c(r,e+1)))));const r=o(m(x),o(-1,l(E,c(e,e)))),n=o(m(x),o(-1,l(E,c(e+1,e)))),i=o(m(x),o(-1,l(E,c(e,e+1)))),s=o(m(x),o(-1,l(E,c(e+1,e+1)))),u=D(T(f(v,r),n),T(i,f(v,s))),p=d(u,t);C[e]=p.subset(c(a(0,x),0)),C[e+1]=p.subset(c(a(x,2*x),0)),e++}else{let t=l(S,c(M,e));for(let r=0;r<e;r++)t=f(t,o(C[r],l(E,c(r,e))));const r=l(E,c(e,e)),n=p(v,o(r,m(x)));C[e]=d(n,t)}const F=i(n(...C));return o(w,o(F,u(A)))}})),Jm="schur",Xm=de(Jm,["typed","matrix","identity","multiply","qr","norm","subtract"],(e=>{let{typed:t,matrix:r,identity:n,multiply:i,qr:o,norm:a,subtract:s}=e;return t(Jm,{Array:function(e){const t=u(r(e));return{U:t.U.valueOf(),T:t.T.valueOf()}},Matrix:function(e){return u(e)}});function u(e){const t=e.size()[0];let r,u=e,c=n(t),l=0;do{r=u;const e=o(u),t=e.Q,n=e.R;if(u=i(n,t),c=i(c,t),l++>100)break}while(a(s(u,r))>1e-4);return{U:c,T:u}}})),Qm="lyap",Km=de(Qm,["typed","matrix","sylvester","multiply","transpose"],(e=>{let{typed:t,matrix:r,sylvester:n,multiply:i,transpose:o}=e;return t(Qm,{"Matrix, Matrix":function(e,t){return n(e,o(e),i(-1,t))},"Array, Matrix":function(e,t){return n(r(e),o(r(e)),i(-1,t))},"Matrix, Array":function(e,t){return n(e,o(r(e)),r(i(-1,t)))},"Array, Array":function(e,t){return n(r(e),o(r(e)),r(i(-1,t))).toArray()}})})),ed=de("divide",["typed","matrix","multiply","equalScalar","divideScalar","inv"],(e=>{let{typed:t,matrix:r,multiply:n,equalScalar:i,divideScalar:o,inv:a}=e;const s=wo({typed:t,equalScalar:i}),u=Eo({typed:t});return t("divide",se({"Array | Matrix, Array | Matrix":function(e,t){return n(e,a(t))},"DenseMatrix, any":function(e,t){return u(e,t,o,!1)},"SparseMatrix, any":function(e,t){return s(e,t,o,!1)},"Array, any":function(e,t){return u(r(e),t,o,!1).valueOf()},"any, Array | Matrix":function(e,t){return n(e,a(t))}},o.signatures))})),td="distance",rd=de(td,["typed","addScalar","subtractScalar","divideScalar","multiplyScalar","deepEqual","sqrt","abs"],(e=>{let{typed:t,addScalar:r,subtractScalar:n,multiplyScalar:i,divideScalar:o,deepEqual:a,sqrt:s,abs:u}=e;return t(td,{"Array, Array, Array":function(e,t,r){if(2===e.length&&2===t.length&&2===r.length){if(!l(e))throw new TypeError("Array with 2 numbers or BigNumbers expected for first argument");if(!l(t))throw new TypeError("Array with 2 numbers or BigNumbers expected for second argument");if(!l(r))throw new TypeError("Array with 2 numbers or BigNumbers expected for third argument");if(a(t,r))throw new TypeError("LinePoint1 should not be same with LinePoint2");const o=n(r[1],t[1]),s=n(t[0],r[0]),u=n(i(r[0],t[1]),i(t[0],r[1]));return h(e[0],e[1],o,s,u)}throw new TypeError("Invalid Arguments: Try again")},"Object, Object, Object":function(e,t,r){if(2===Object.keys(e).length&&2===Object.keys(t).length&&2===Object.keys(r).length){if(!l(e))throw new TypeError("Values of pointX and pointY should be numbers or BigNumbers");if(!l(t))throw new TypeError("Values of lineOnePtX and lineOnePtY should be numbers or BigNumbers");if(!l(r))throw new TypeError("Values of lineTwoPtX and lineTwoPtY should be numbers or BigNumbers");if(a(d(t),d(r)))throw new TypeError("LinePoint1 should not be same with LinePoint2");if("pointX"in e&&"pointY"in e&&"lineOnePtX"in t&&"lineOnePtY"in t&&"lineTwoPtX"in r&&"lineTwoPtY"in r){const o=n(r.lineTwoPtY,t.lineOnePtY),a=n(t.lineOnePtX,r.lineTwoPtX),s=n(i(r.lineTwoPtX,t.lineOnePtY),i(t.lineOnePtX,r.lineTwoPtY));return h(e.pointX,e.pointY,o,a,s)}throw new TypeError("Key names do not match")}throw new TypeError("Invalid Arguments: Try again")},"Array, Array":function(e,t){if(2===e.length&&3===t.length){if(!l(e))throw new TypeError("Array with 2 numbers or BigNumbers expected for first argument");if(!f(t))throw new TypeError("Array with 3 numbers or BigNumbers expected for second argument");return h(e[0],e[1],t[0],t[1],t[2])}if(3===e.length&&6===t.length){if(!f(e))throw new TypeError("Array with 3 numbers or BigNumbers expected for first argument");if(!m(t))throw new TypeError("Array with 6 numbers or BigNumbers expected for second argument");return y(e[0],e[1],e[2],t[0],t[1],t[2],t[3],t[4],t[5])}if(e.length===t.length&&e.length>0){if(!p(e))throw new TypeError("All values of an array should be numbers or BigNumbers");if(!p(t))throw new TypeError("All values of an array should be numbers or BigNumbers");return x(e,t)}throw new TypeError("Invalid Arguments: Try again")},"Object, Object":function(e,t){if(2===Object.keys(e).length&&3===Object.keys(t).length){if(!l(e))throw new TypeError("Values of pointX and pointY should be numbers or BigNumbers");if(!f(t))throw new TypeError("Values of xCoeffLine, yCoeffLine and constant should be numbers or BigNumbers");if("pointX"in e&&"pointY"in e&&"xCoeffLine"in t&&"yCoeffLine"in t&&"constant"in t)return h(e.pointX,e.pointY,t.xCoeffLine,t.yCoeffLine,t.constant);throw new TypeError("Key names do not match")}if(3===Object.keys(e).length&&6===Object.keys(t).length){if(!f(e))throw new TypeError("Values of pointX, pointY and pointZ should be numbers or BigNumbers");if(!m(t))throw new TypeError("Values of x0, y0, z0, a, b and c should be numbers or BigNumbers");if("pointX"in e&&"pointY"in e&&"x0"in t&&"y0"in t&&"z0"in t&&"a"in t&&"b"in t&&"c"in t)return y(e.pointX,e.pointY,e.pointZ,t.x0,t.y0,t.z0,t.a,t.b,t.c);throw new TypeError("Key names do not match")}if(2===Object.keys(e).length&&2===Object.keys(t).length){if(!l(e))throw new TypeError("Values of pointOneX and pointOneY should be numbers or BigNumbers");if(!l(t))throw new TypeError("Values of pointTwoX and pointTwoY should be numbers or BigNumbers");if("pointOneX"in e&&"pointOneY"in e&&"pointTwoX"in t&&"pointTwoY"in t)return x([e.pointOneX,e.pointOneY],[t.pointTwoX,t.pointTwoY]);throw new TypeError("Key names do not match")}if(3===Object.keys(e).length&&3===Object.keys(t).length){if(!f(e))throw new TypeError("Values of pointOneX, pointOneY and pointOneZ should be numbers or BigNumbers");if(!f(t))throw new TypeError("Values of pointTwoX, pointTwoY and pointTwoZ should be numbers or BigNumbers");if("pointOneX"in e&&"pointOneY"in e&&"pointOneZ"in e&&"pointTwoX"in t&&"pointTwoY"in t&&"pointTwoZ"in t)return x([e.pointOneX,e.pointOneY,e.pointOneZ],[t.pointTwoX,t.pointTwoY,t.pointTwoZ]);throw new TypeError("Key names do not match")}throw new TypeError("Invalid Arguments: Try again")},Array:function(e){if(!function(e){if(2===e[0].length&&c(e[0][0])&&c(e[0][1])){if(e.some((e=>2!==e.length||!c(e[0])||!c(e[1]))))return!1}else{if(!(3===e[0].length&&c(e[0][0])&&c(e[0][1])&&c(e[0][2])))return!1;if(e.some((e=>3!==e.length||!c(e[0])||!c(e[1])||!c(e[2]))))return!1}return!0}(e))throw new TypeError("Incorrect array format entered for pairwise distance calculation");return function(e){const t=[];let r=[],n=[];for(let i=0;i<e.length-1;i++)for(let o=i+1;o<e.length;o++)2===e[0].length?(r=[e[i][0],e[i][1]],n=[e[o][0],e[o][1]]):3===e[0].length&&(r=[e[i][0],e[i][1],e[i][2]],n=[e[o][0],e[o][1],e[o][2]]),t.push(x(r,n));return t}(e)}});function c(e){return"number"==typeof e||g(e)}function l(e){return e.constructor!==Array&&(e=d(e)),c(e[0])&&c(e[1])}function f(e){return e.constructor!==Array&&(e=d(e)),c(e[0])&&c(e[1])&&c(e[2])}function p(e){return Array.isArray(e)||(e=d(e)),e.every(c)}function m(e){return e.constructor!==Array&&(e=d(e)),c(e[0])&&c(e[1])&&c(e[2])&&c(e[3])&&c(e[4])&&c(e[5])}function d(e){const t=Object.keys(e),r=[];for(let n=0;n<t.length;n++)r.push(e[t[n]]);return r}function h(e,t,n,a,c){const l=u(r(r(i(n,e),i(a,t)),c)),f=s(r(i(n,n),i(a,a)));return o(l,f)}function y(e,t,a,u,c,l,f,p,m){let d=[n(i(n(c,t),m),i(n(l,a),p)),n(i(n(l,a),f),i(n(u,e),m)),n(i(n(u,e),p),i(n(c,t),f))];d=s(r(r(i(d[0],d[0]),i(d[1],d[1])),i(d[2],d[2])));const h=s(r(r(i(f,f),i(p,p)),i(m,m)));return o(d,h)}function x(e,t){const o=e.length;let a=0,u=0;for(let s=0;s<o;s++)u=n(e[s],t[s]),a=r(i(u,u),a);return s(a)}})),nd=de("intersect",["typed","config","abs","add","addScalar","matrix","multiply","multiplyScalar","divideScalar","subtract","smaller","equalScalar","flatten","isZero","isNumeric"],(e=>{let{typed:t,config:r,abs:n,add:i,addScalar:o,matrix:a,multiply:s,multiplyScalar:u,divideScalar:c,subtract:l,smaller:f,equalScalar:p,flatten:m,isZero:d,isNumeric:h}=e;return t("intersect",{"Array, Array, Array":g,"Array, Array, Array, Array":y,"Matrix, Matrix, Matrix":function(e,t,r){const n=g(e.valueOf(),t.valueOf(),r.valueOf());return null===n?null:a(n)},"Matrix, Matrix, Matrix, Matrix":function(e,t,r,n){const i=y(e.valueOf(),t.valueOf(),r.valueOf(),n.valueOf());return null===i?null:a(i)}});function g(e,t,r){if(e=x(e),t=x(t),r=x(r),!v(e))throw new TypeError("Array with 3 numbers or BigNumbers expected for first argument");if(!v(t))throw new TypeError("Array with 3 numbers or BigNumbers expected for second argument");if(!function(e){return 4===e.length&&h(e[0])&&h(e[1])&&h(e[2])&&h(e[3])}(r))throw new TypeError("Array with 4 numbers expected as third argument");return function(e,t,r,n,i,a,s,f,p,m){const d=u(e,s),h=u(n,s),g=u(t,f),y=u(i,f),x=u(r,p),b=u(a,p),v=l(l(l(m,d),g),x),w=l(l(l(o(o(h,y),b),d),g),x),N=c(v,w);return[o(e,u(N,l(n,e))),o(t,u(N,l(i,t))),o(r,u(N,l(a,r)))]}(e[0],e[1],e[2],t[0],t[1],t[2],r[0],r[1],r[2],r[3])}function y(e,t,a,m){if(e=x(e),t=x(t),a=x(a),m=x(m),2===e.length){if(!b(e))throw new TypeError("Array with 2 numbers or BigNumbers expected for first argument");if(!b(t))throw new TypeError("Array with 2 numbers or BigNumbers expected for second argument");if(!b(a))throw new TypeError("Array with 2 numbers or BigNumbers expected for third argument");if(!b(m))throw new TypeError("Array with 2 numbers or BigNumbers expected for fourth argument");return function(e,t,a,p){const m=e,h=a,g=l(m,t),y=l(h,p),x=l(u(g[0],y[1]),u(y[0],g[1]));if(d(x))return null;if(f(n(x),r.relTol))return null;const b=u(y[0],m[1]),v=u(y[1],m[0]),w=u(y[0],h[1]),N=u(y[1],h[0]),E=c(o(l(l(b,v),w),N),x);return i(s(g,E),m)}(e,t,a,m)}if(3===e.length){if(!v(e))throw new TypeError("Array with 3 numbers or BigNumbers expected for first argument");if(!v(t))throw new TypeError("Array with 3 numbers or BigNumbers expected for second argument");if(!v(a))throw new TypeError("Array with 3 numbers or BigNumbers expected for third argument");if(!v(m))throw new TypeError("Array with 3 numbers or BigNumbers expected for fourth argument");return function(e,t,r,n,i,a,s,f,m,h,g,y){const x=w(e,s,h,s,t,f,g,f,r,m,y,m),b=w(h,s,n,e,g,f,i,t,y,m,a,r),v=w(e,s,n,e,t,f,i,t,r,m,a,r),N=w(h,s,h,s,g,f,g,f,y,m,y,m),E=w(n,e,n,e,i,t,i,t,a,r,a,r),A=l(u(x,b),u(v,N)),S=l(u(E,N),u(b,b));if(d(S))return null;const M=c(A,S),C=c(o(x,u(M,b)),N),T=o(e,u(M,l(n,e))),D=o(t,u(M,l(i,t))),F=o(r,u(M,l(a,r))),B=o(s,u(C,l(h,s))),O=o(f,u(C,l(g,f))),_=o(m,u(C,l(y,m)));return p(T,B)&&p(D,O)&&p(F,_)?[T,D,F]:null}(e[0],e[1],e[2],t[0],t[1],t[2],a[0],a[1],a[2],m[0],m[1],m[2])}throw new TypeError("Arrays with two or thee dimensional points expected")}function x(e){return 1===e.length?e[0]:e.length>1&&Array.isArray(e[0])&&e.every((e=>Array.isArray(e)&&1===e.length))?m(e):e}function b(e){return 2===e.length&&h(e[0])&&h(e[1])}function v(e){return 3===e.length&&h(e[0])&&h(e[1])&&h(e[2])}function w(e,t,r,n,i,a,s,c,f,p,m,d){const h=u(l(e,t),l(r,n)),g=u(l(i,a),l(s,c)),y=u(l(f,p),l(m,d));return o(o(h,g),y)}})),id=de("sum",["typed","config","add","numeric"],(e=>{let{typed:t,config:r,add:n,numeric:i}=e;return t("sum",{"Array | Matrix":o,"Array | Matrix, number | BigNumber":function(e,t){try{return Zn(e,t,n)}catch(e){throw Du(e,"sum")}},"...":function(e){if($n(e))throw new TypeError("Scalar values expected in function sum");return o(e)}});function o(e){let t;return Hn(e,(function(e){try{t=void 0===t?e:n(t,e)}catch(t){throw Du(t,"sum",e)}})),void 0===t&&(t=i(0,r.number)),"string"==typeof t&&(t=i(t,xe(t,r))),t}})),od="cumsum",ad=de(od,["typed","add","unaryPlus"],(e=>{let{typed:t,add:r,unaryPlus:n}=e;return t(od,{Array:i,Matrix:function(e){return e.create(i(e.valueOf(),e.datatype()))},"Array, number | BigNumber":a,"Matrix, number | BigNumber":function(e,t){return e.create(a(e.valueOf(),t),e.datatype())},"...":function(e){if($n(e))throw new TypeError("All values expected to be scalar in function cumsum");return i(e)}});function i(e){try{return o(e)}catch(e){throw Du(e,od)}}function o(e){if(0===e.length)return[];const t=[n(e[0])];for(let n=1;n<e.length;++n)t.push(r(t[n-1],e[n]));return t}function a(e,t){const r=un(e);if(t<0||t>=r.length)throw new sn(t,r.length);try{return s(e,t)}catch(e){throw Du(e,od)}}function s(e,t){let r,n,i;if(t<=0){const a=e[0][0];if(Array.isArray(a)){for(i=Ln(e),n=[],r=0;r<i.length;r++)n[r]=s(i[r],t-1);return n}return o(e)}for(n=[],r=0;r<e.length;r++)n[r]=s(e[r],t-1);return n}})),sd="mean",ud=de(sd,["typed","add","divide"],(e=>{let{typed:t,add:r,divide:n}=e;return t(sd,{"Array | Matrix":i,"Array | Matrix, number | BigNumber":function(e,t){try{const i=Zn(e,t,r),o=Array.isArray(e)?un(e):e.size();return n(i,o[t])}catch(e){throw Du(e,"mean")}},"...":function(e){if($n(e))throw new TypeError("Scalar values expected in function mean");return i(e)}});function i(e){let t,i=0;if(Hn(e,(function(e){try{t=void 0===t?e:r(t,e),i++}catch(t){throw Du(t,"mean",e)}})),0===i)throw new Error("Cannot calculate the mean of an empty array");return n(t,i)}})),cd="median",ld=de(cd,["typed","add","divide","compare","partitionSelect"],(e=>{let{typed:t,add:r,divide:n,compare:i,partitionSelect:o}=e;function a(e){try{const t=(e=En(e.valueOf())).length;if(0===t)throw new Error("Cannot calculate median of an empty array");if(t%2==0){const r=t/2-1,n=o(e,r+1);let a=e[r];for(let t=0;t<r;++t)i(e[t],a)>0&&(a=e[t]);return u(a,n)}{const r=o(e,(t-1)/2);return s(r)}}catch(e){throw Du(e,"median")}}const s=t({"number | BigNumber | Complex | Unit":function(e){return e}}),u=t({"number | BigNumber | Complex | Unit, number | BigNumber | Complex | Unit":function(e,t){return n(r(e,t),2)}});return t(cd,{"Array | Matrix":a,"Array | Matrix, number | BigNumber":function(e,t){throw new Error("median(A, dim) is not yet supported")},"...":function(e){if($n(e))throw new TypeError("Scalar values expected in function median");return a(e)}})})),fd=de("mad",["typed","abs","map","median","subtract"],(e=>{let{typed:t,abs:r,map:n,median:i,subtract:o}=e;return t("mad",{"Array | Matrix":a,"...":function(e){return a(e)}});function a(e){if(0===(e=En(e.valueOf())).length)throw new Error("Cannot calculate median absolute deviation (mad) of an empty array");try{const t=i(e);return i(n(e,(function(e){return r(o(e,t))})))}catch(e){throw e instanceof TypeError&&e.message.includes("median")?new TypeError(e.message.replace("median","mad")):Du(e,"mad")}}})),pd="unbiased",md="variance",dd=de(md,["typed","add","subtract","multiply","divide","apply","isNaN"],(e=>{let{typed:t,add:r,subtract:n,multiply:i,divide:o,apply:a,isNaN:s}=e;return t(md,{"Array | Matrix":function(e){return u(e,pd)},"Array | Matrix, string":u,"Array | Matrix, number | BigNumber":function(e,t){return c(e,t,pd)},"Array | Matrix, number | BigNumber, string":c,"...":function(e){return u(e,pd)}});function u(e,t){let a,u=0;if(0===e.length)throw new SyntaxError("Function variance requires one or more parameters (0 provided)");if(Hn(e,(function(e){try{a=void 0===a?e:r(a,e),u++}catch(t){throw Du(t,"variance",e)}})),0===u)throw new Error("Cannot calculate variance of an empty array");const c=o(a,u);if(a=void 0,Hn(e,(function(e){const t=n(e,c);a=void 0===a?i(t,t):r(a,i(t,t))})),s(a))return a;switch(t){case"uncorrected":return o(a,u);case"biased":return o(a,u+1);case"unbiased":{const e=g(a)?a.mul(0):0;return 1===u?e:o(a,u-1)}default:throw new Error('Unknown normalization "'+t+'". Choose "unbiased" (default), "uncorrected", or "biased".')}}function c(e,t,r){try{if(0===e.length)throw new SyntaxError("Function variance requires one or more parameters (0 provided)");return a(e,t,(e=>u(e,r)))}catch(e){throw Du(e,"variance")}}})),hd="quantileSeq",gd=de(hd,["typed","?bignumber","add","subtract","divide","multiply","partitionSelect","compare","isInteger","smaller","smallerEq","larger"],(e=>{let{typed:t,bignumber:r,add:n,subtract:i,divide:o,multiply:a,partitionSelect:s,compare:u,isInteger:c,smaller:l,smallerEq:f,larger:p}=e;const m=po({typed:t,isInteger:c});return t(hd,{"Array | Matrix, number | BigNumber":(e,t)=>g(e,t,!1),"Array | Matrix, number | BigNumber, number":(e,t,r)=>d(e,t,!1,r,g),"Array | Matrix, number | BigNumber, boolean":g,"Array | Matrix, number | BigNumber, boolean, number":(e,t,r,n)=>d(e,t,r,n,g),"Array | Matrix, Array | Matrix":(e,t)=>y(e,t,!1),"Array | Matrix, Array | Matrix, number":(e,t,r)=>d(e,t,!1,r,y),"Array | Matrix, Array | Matrix, boolean":y,"Array | Matrix, Array | Matrix, boolean, number":(e,t,r,n)=>d(e,t,r,n,y)});function d(e,t,r,n,i){return m(e,n,(e=>i(e,t,r)))}function g(e,t,i){let a;const s=e.valueOf();if(l(t,0))throw new Error("N/prob must be non-negative");if(f(t,1))return h(t)?x(s,t,i):r(x(s,t,i));if(p(t,1)){if(!c(t))throw new Error("N must be a positive integer");if(p(t,4294967295))throw new Error("N must be less than or equal to 2^32-1, as that is the maximum length of an Array");const e=n(t,1);a=[];for(let r=0;l(r,t);r++){const t=o(r+1,e);a.push(x(s,t,i))}return h(t)?a:r(a)}}function y(e,t,r){const n=e.valueOf(),i=t.valueOf(),o=[];for(let e=0;e<i.length;++e)o.push(x(n,i[e],r));return o}function x(e,t,r){const o=En(e),l=o.length;if(0===l)throw new Error("Cannot calculate quantile of an empty sequence");const f=h(t)?t*(l-1):t.times(l-1),p=h(t)?Math.floor(f):f.floor().toNumber(),m=h(t)?f%1:f.minus(p);if(c(f))return r?o[f]:s(o,h(t)?f:f.valueOf());let d,g;if(r)d=o[p],g=o[p+1];else{g=s(o,p+1),d=o[p];for(let e=0;e<p;++e)u(o[e],d)>0&&(d=o[e])}return n(a(d,i(1,m)),a(g,m))}})),yd=de("std",["typed","map","sqrt","variance"],(e=>{let{typed:t,map:r,sqrt:n,variance:i}=e;return t("std",{"Array | Matrix":o,"Array | Matrix, string":o,"Array | Matrix, number | BigNumber":o,"Array | Matrix, number | BigNumber, string":o,"...":function(e){return o(e)}});function o(e,t){if(0===e.length)throw new SyntaxError("Function std requires one or more parameters (0 provided)");try{const e=i.apply(null,arguments);return A(e)?r(e,n):n(e)}catch(e){throw e instanceof TypeError&&e.message.includes(" variance")?new TypeError(e.message.replace(" variance"," std")):e}}})),xd="corr",bd=de(xd,["typed","matrix","mean","sqrt","sum","add","subtract","multiply","pow","divide"],(e=>{let{typed:t,matrix:r,sqrt:n,sum:i,add:o,subtract:a,multiply:s,pow:u,divide:c}=e;return t(xd,{"Array, Array":function(e,t){return l(e,t)},"Matrix, Matrix":function(e,t){const n=l(e.toArray(),t.toArray());return Array.isArray(n)?r(n):n}});function l(e,t){const r=[];if(Array.isArray(e[0])&&Array.isArray(t[0])){if(e.length!==t.length)throw new SyntaxError("Dimension mismatch. Array A and B must have the same length.");for(let n=0;n<e.length;n++){if(e[n].length!==t[n].length)throw new SyntaxError("Dimension mismatch. Array A and B must have the same number of elements.");r.push(f(e[n],t[n]))}return r}if(e.length!==t.length)throw new SyntaxError("Dimension mismatch. Array A and B must have the same number of elements.");return f(e,t)}function f(e,t){const r=e.length,l=i(e),f=i(t),p=e.reduce(((e,r,n)=>o(e,s(r,t[n]))),0),m=i(e.map((e=>u(e,2)))),d=i(t.map((e=>u(e,2)))),h=a(s(r,p),s(l,f)),g=n(s(a(s(r,m),u(l,2)),a(s(r,d),u(f,2))));return c(h,g)}}));function vd(e,t){if(t<e)return 1;if(t===e)return t;const r=t+e>>1;return vd(e,r)*vd(r+1,t)}function wd(e,t){if(!ye(e)||e<0)throw new TypeError("Positive integer value expected in function combinations");if(!ye(t)||t<0)throw new TypeError("Positive integer value expected in function combinations");if(t>e)throw new TypeError("k must be less than or equal to n");const r=e-t;let n=1,i=2;const o=t<r?t:r;for(let a=t<r?r+1:t+1;a<=e;++a)for(n*=a;i<=o&&n%i==0;)n/=i,++i;return i<=o&&(n/=vd(i,o)),n}wd.signature="number, number";const Nd="combinations",Ed=de(Nd,["typed"],(e=>{let{typed:t}=e;return t(Nd,{"number, number":wd,"BigNumber, BigNumber":function(e,t){const r=e.constructor;let n,i;const o=e.minus(t),a=new r(1);if(!Ad(e)||!Ad(t))throw new TypeError("Positive integer value expected in function combinations");if(t.gt(e))throw new TypeError("k must be less than n in function combinations");if(n=a,t.lt(o))for(i=a;i.lte(o);i=i.plus(a))n=n.times(t.plus(i)).dividedBy(i);else for(i=a;i.lte(t);i=i.plus(a))n=n.times(o.plus(i)).dividedBy(i);return n}})}));function Ad(e){return e.isInteger()&&e.gte(0)}const Sd="combinationsWithRep",Md=de(Sd,["typed"],(e=>{let{typed:t}=e;return t(Sd,{"number, number":function(e,t){if(!ye(e)||e<0)throw new TypeError("Positive integer value expected in function combinationsWithRep");if(!ye(t)||t<0)throw new TypeError("Positive integer value expected in function combinationsWithRep");if(e<1)throw new TypeError("k must be less than or equal to n + k - 1");return t<e-1?vd(e,e+t-1)/vd(1,t):vd(t+1,e+t-1)/vd(1,e-1)},"BigNumber, BigNumber":function(e,t){let r,n;const i=new(0,e.constructor)(1),o=e.minus(i);if(!Cd(e)||!Cd(t))throw new TypeError("Positive integer value expected in function combinationsWithRep");if(e.lt(i))throw new TypeError("k must be less than or equal to n + k - 1 in function combinationsWithRep");if(r=i,t.lt(o))for(n=i;n.lte(o);n=n.plus(i))r=r.times(t.plus(n)).dividedBy(n);else for(n=i;n.lte(t);n=n.plus(i))r=r.times(o.plus(n)).dividedBy(n);return r}})}));function Cd(e){return e.isInteger()&&e.gte(0)}function Td(e){let t;if(ye(e))return e<=0?isFinite(e)?1/0:NaN:e>171?1/0:vd(1,e-1);if(e<.5)return Math.PI/(Math.sin(Math.PI*e)*Td(1-e));if(e>=171.35)return 1/0;if(e>85){const t=e*e,r=t*e,n=r*e,i=n*e;return Math.sqrt(2*Math.PI/e)*Math.pow(e/Math.E,e)*(1+1/(12*e)+1/(288*t)-139/(51840*r)-571/(2488320*n)+163879/(209018880*i)+5246819/(75246796800*i*e))}--e,t=Fd[0];for(let r=1;r<Fd.length;++r)t+=Fd[r]/(e+r);const r=e+Dd+.5;return Math.sqrt(2*Math.PI)*Math.pow(r,e+.5)*Math.exp(-r)*t}Td.signature="number";const Dd=4.7421875,Fd=[.9999999999999971,57.15623566586292,-59.59796035547549,14.136097974741746,-.4919138160976202,3399464998481189e-20,4652362892704858e-20,-9837447530487956e-20,.0001580887032249125,-.00021026444172410488,.00021743961811521265,-.0001643181065367639,8441822398385275e-20,-26190838401581408e-21,36899182659531625e-22],Bd=.9189385332046728,Od=[1.000000000190015,76.18009172947146,-86.50532032941678,24.01409824083091,-1.231739572450155,.001208650973866179,-5395239384953e-18];function _d(e){if(e<0)return NaN;if(0===e)return 1/0;if(!isFinite(e))return e;if(e<.5)return Math.log(Math.PI/Math.sin(Math.PI*e))-_d(1-e);const t=5+(e-=1)+.5;let r=Od[0];for(let t=6;t>=1;t--)r+=Od[t]/(e+t);return Bd+(e+.5)*Math.log(t)-t+Math.log(r)}_d.signature="number";const zd="gamma",Id=de(zd,["typed","config","multiplyScalar","pow","BigNumber","Complex"],(e=>{let{typed:t,config:r,multiplyScalar:n,pow:i,BigNumber:o,Complex:a}=e;return t(zd,{number:Td,Complex:function e(t){if(0===t.im)return Td(t.re);if(t.re<.5){const r=new a(1-t.re,-t.im),n=new a(Math.PI*t.re,Math.PI*t.im);return new a(Math.PI).div(n.sin()).div(e(r))}t=new a(t.re-1,t.im);let r=new a(Fd[0],0);for(let e=1;e<Fd.length;++e){const n=new a(Fd[e],0);r=r.add(n.div(t.add(e)))}const n=new a(t.re+Dd+.5,t.im),i=Math.sqrt(2*Math.PI),o=n.pow(t.add(.5)),s=n.neg().exp();return r.mul(i).mul(o).mul(s)},BigNumber:function(e){if(e.isInteger())return e.isNegative()||e.isZero()?new o(1/0):s(e.minus(1));if(!e.isFinite())return new o(e.isNegative()?NaN:1/0);throw new Error("Integer BigNumber expected")}});function s(e){if(e<8)return new o([1,1,2,6,24,120,720,5040][e]);const t=r.precision+(0|Math.log(e.toNumber())),n=o.clone({precision:t});if(e%2==1)return e.times(s(new o(e-1)));let i=e,a=new n(e),u=e.toNumber();for(;i>2;)i-=2,u+=i,a=a.times(u);return new o(a.toPrecision(o.precision))}})),kd="lgamma",qd=de(kd,["Complex","typed"],(e=>{let{Complex:t,typed:r}=e;const n=[-.029550653594771242,.00641025641025641,-.0019175269175269176,.0008417508417508417,-.0005952380952380953,.0007936507936507937,-.002777777777777778,.08333333333333333];return r(kd,{number:_d,Complex:function e(r){if(r.isNaN())return new t(NaN,NaN);if(0===r.im)return new t(_d(r.re),0);if(r.re>=7||Math.abs(r.im)>=7)return i(r);if(r.re<=.1){const i=(n=6.283185307179586,(!0^((a=r.im)>0||!(a<0)&&1/a==1/0)?-n:n)*Math.floor(.5*r.re+.25)),o=r.mul(Math.PI).sin().log(),s=e(new t(1-r.re,-r.im));return new t(1.1447298858494002,i).sub(o).sub(s)}return r.im>=0?o(r):o(r.conjugate()).conjugate();var n,a},BigNumber:function(){throw new Error("mathjs doesn't yet provide an implementation of the algorithm lgamma for BigNumber")}});function i(e){const r=e.sub(.5).mul(e.log()).sub(e).add(Bd),i=new t(1,0).div(e),o=i.div(e);let a=n[0],s=n[1];const u=2*o.re,c=o.re*o.re+o.im*o.im;for(let e=2;e<8;e++){const t=s;s=-c*a+n[e],a=u*a+t}const l=i.mul(o.mul(a).add(s));return r.add(l)}function o(e){let r=0,n=0,o=e;for(e=e.add(1);e.re<=7;){o=o.mul(e);const t=o.im<0?1:0;0!==t&&0===n&&r++,n=t,e=e.add(1)}return i(e).sub(o.log()).sub(new t(0,2*r*Math.PI*1))}})),Rd="factorial",Pd=de(Rd,["typed","gamma"],(e=>{let{typed:t,gamma:r}=e;return t(Rd,{number:function(e){if(e<0)throw new Error("Value must be non-negative");return r(e+1)},BigNumber:function(e){if(e.isNegative())throw new Error("Value must be non-negative");return r(e.plus(1))},"Array | Matrix":t.referToSelf((e=>t=>Gn(t,e)))})})),jd="kldivergence",Ud=de(jd,["typed","matrix","divide","sum","multiply","map","dotDivide","log","isNumeric"],(e=>{let{typed:t,matrix:r,divide:n,sum:i,multiply:o,map:a,dotDivide:s,log:u,isNumeric:c}=e;return t(jd,{"Array, Array":function(e,t){return l(r(e),r(t))},"Matrix, Array":function(e,t){return l(e,r(t))},"Array, Matrix":function(e,t){return l(r(e),t)},"Matrix, Matrix":function(e,t){return l(e,t)}});function l(e,t){const r=t.size().length,l=e.size().length;if(r>1)throw new Error("first object must be one dimensional");if(l>1)throw new Error("second object must be one dimensional");if(r!==l)throw new Error("Length of two vectors must be equal");if(0===i(e))throw new Error("Sum of elements in first object must be non zero");if(0===i(t))throw new Error("Sum of elements in second object must be non zero");const f=n(e,i(e)),p=n(t,i(t)),m=i(o(f,a(s(f,p),(e=>u(e)))));return c(m)?m:Number.NaN}})),Ld="multinomial",$d=de(Ld,["typed","add","divide","multiply","factorial","isInteger","isPositive"],(e=>{let{typed:t,add:r,divide:n,multiply:i,factorial:o,isInteger:a,isPositive:s}=e;return t(Ld,{"Array | Matrix":function(e){let t=0,u=1;return Hn(e,(function(e){if(!a(e)||!s(e))throw new TypeError("Positive integer value expected in function multinomial");t=r(t,e),u=i(u,o(e))})),n(o(t),u)}})})),Hd="permutations",Gd=de(Hd,["typed","factorial"],(e=>{let{typed:t,factorial:r}=e;return t(Hd,{"number | BigNumber":r,"number, number":function(e,t){if(!ye(e)||e<0)throw new TypeError("Positive integer value expected in function permutations");if(!ye(t)||t<0)throw new TypeError("Positive integer value expected in function permutations");if(t>e)throw new TypeError("second argument k must be less than or equal to first argument n");return vd(e-t+1,e)},"BigNumber, BigNumber":function(e,t){let r,n;if(!Zd(e)||!Zd(t))throw new TypeError("Positive integer value expected in function permutations");if(t.gt(e))throw new TypeError("second argument k must be less than or equal to first argument n");for(r=e.mul(0).add(1),n=e.minus(t).plus(1);n.lte(e);n=n.plus(1))r=r.times(n);return r}})}));function Zd(e){return e.isInteger()&&e.gte(0)}var Vd=r(7391);const Wd=Vd(Date.now());function Yd(e){let t;var r;return t=null===(r=e)?Wd:Vd(String(r)),function(){return t()}}const Jd="pickRandom",Xd=de(Jd,["typed","config","?on"],(e=>{let{typed:t,config:r,on:n}=e,i=Yd(r.randomSeed);return n&&n("config",(function(e,t){e.randomSeed!==t.randomSeed&&(i=Yd(e.randomSeed))})),t(Jd,{"Array | Matrix":function(e){return o(e,{})},"Array | Matrix, Object":function(e,t){return o(e,t)},"Array | Matrix, number":function(e,t){return o(e,{number:t})},"Array | Matrix, Array | Matrix":function(e,t){return o(e,{weights:t})},"Array | Matrix, Array | Matrix, number":function(e,t,r){return o(e,{number:r,weights:t})},"Array | Matrix, number, Array | Matrix":function(e,t,r){return o(e,{number:t,weights:r})}});function o(e,t){let{number:r,weights:n,elementWise:o=!0}=t;const a=void 0===r;a&&(r=1);const s=E(e)?e.create:E(n)?n.create:null;e=e.valueOf(),n&&(n=n.valueOf()),!0===o&&(e=En(e),n=En(n));let u=0;if(void 0!==n){if(n.length!==e.length)throw new Error("Weights must have the same length as possibles");for(let e=0,t=n.length;e<t;e++){if(!h(n[e])||n[e]<0)throw new Error("Weights must be an array of positive numbers");u+=n[e]}}const c=e.length,l=[];let f;for(;l.length<r;){if(void 0===n)f=e[Math.floor(i()*c)];else{let t=i()*u;for(let r=0,i=e.length;r<i;r++)if(t-=n[r],t<0){f=e[r];break}}l.push(f)}return a?l[0]:s?s(l):l}}));function Qd(e,t){const r=[];if((e=e.slice(0)).length>1)for(let n=0,i=e.shift();n<i;n++)r.push(Qd(e,t));else for(let n=0,i=e.shift();n<i;n++)r.push(t());return r}const Kd="random",eh=de(Kd,["typed","config","?on"],(e=>{let{typed:t,config:r,on:n}=e,i=Yd(r.randomSeed);return n&&n("config",(function(e,t){e.randomSeed!==t.randomSeed&&(i=Yd(e.randomSeed))})),t(Kd,{"":()=>a(0,1),number:e=>a(0,e),"number, number":(e,t)=>a(e,t),"Array | Matrix":e=>o(e,0,1),"Array | Matrix, number":(e,t)=>o(e,0,t),"Array | Matrix, number, number":(e,t,r)=>o(e,t,r)});function o(e,t,r){const n=Qd(e.valueOf(),(()=>a(t,r)));return E(e)?e.create(n,"number"):n}function a(e,t){return e+i()*(t-e)}})),th="randomInt",rh=de(th,["typed","config","?on"],(e=>{let{typed:t,config:r,on:n}=e,i=Yd(r.randomSeed);return n&&n("config",(function(e,t){e.randomSeed!==t.randomSeed&&(i=Yd(e.randomSeed))})),t(th,{"":()=>a(0,1),number:e=>a(0,e),"number, number":(e,t)=>a(e,t),"Array | Matrix":e=>o(e,0,1),"Array | Matrix, number":(e,t)=>o(e,0,t),"Array | Matrix, number, number":(e,t,r)=>o(e,t,r)});function o(e,t,r){const n=Qd(e.valueOf(),(()=>a(t,r)));return E(e)?e.create(n,"number"):n}function a(e,t){return Math.floor(e+i()*(t-e))}})),nh="stirlingS2",ih=de(nh,["typed","addScalar","subtractScalar","multiplyScalar","divideScalar","pow","factorial","combinations","isNegative","isInteger","number","?bignumber","larger"],(e=>{let{typed:t,addScalar:r,subtractScalar:n,multiplyScalar:i,divideScalar:o,pow:a,factorial:s,combinations:u,isNegative:c,isInteger:l,number:f,bignumber:p,larger:m}=e;const d=[],g=[];return t(nh,{"number | BigNumber, number | BigNumber":function(e,t){if(!l(e)||c(e)||!l(t)||c(t))throw new TypeError("Non-negative integer value expected in function stirlingS2");if(m(t,e))throw new TypeError("k must be less than or equal to n in function stirlingS2");const n=!(h(e)&&h(t)),o=n?g:d,a=n?p:f,s=f(e),u=f(t);if(o[s]&&o[s].length>u)return o[s][u];for(let e=0;e<=s;++e){if(o[e]||(o[e]=[a(0===e?1:0)]),0===e)continue;const t=o[e],n=o[e-1];for(let o=t.length;o<=e&&o<=u;++o)t[o]=o===e?1:r(i(a(o),n[o]),n[o-1])}return o[s][u]}})})),oh="bellNumbers",ah=de(oh,["typed","addScalar","isNegative","isInteger","stirlingS2"],(e=>{let{typed:t,addScalar:r,isNegative:n,isInteger:i,stirlingS2:o}=e;return t(oh,{"number | BigNumber":function(e){if(!i(e)||n(e))throw new TypeError("Non-negative integer value expected in function bellNumbers");let t=0;for(let n=0;n<=e;n++)t=r(t,o(e,n));return t}})})),sh="catalan",uh=de(sh,["typed","addScalar","divideScalar","multiplyScalar","combinations","isNegative","isInteger"],(e=>{let{typed:t,addScalar:r,divideScalar:n,multiplyScalar:i,combinations:o,isNegative:a,isInteger:s}=e;return t(sh,{"number | BigNumber":function(e){if(!s(e)||a(e))throw new TypeError("Non-negative integer value expected in function catalan");return n(o(i(e,2),e),r(e,1))}})})),ch="composition",lh=de(ch,["typed","addScalar","combinations","isNegative","isPositive","isInteger","larger"],(e=>{let{typed:t,addScalar:r,combinations:n,isPositive:i,isNegative:o,isInteger:a,larger:s}=e;return t(ch,{"number | BigNumber, number | BigNumber":function(e,t){if(!(a(e)&&i(e)&&a(t)&&i(t)))throw new TypeError("Positive integer value expected in function composition");if(s(t,e))throw new TypeError("k must be less than or equal to n in function composition");return n(r(e,-1),r(t,-1))}})})),fh="leafCount",ph=de(fh,["parse","typed"],(e=>{let{parse:t,typed:r}=e;function n(e){let t=0;return e.forEach((e=>{t+=n(e)})),t||1}return r(fh,{Node:function(e){return n(e)}})}));function mh(e){return Z(e)||K(e)&&e.isUnary()&&Z(e.args[0])}function dh(e){return!!Z(e)||!(!Y(e)&&!K(e)||!e.args.every(dh))||!(!ee(e)||!dh(e.content))}const hh=de("simplifyUtil",["FunctionNode","OperatorNode","SymbolNode"],(e=>{let{FunctionNode:t,OperatorNode:r,SymbolNode:n}=e;const i=!0,o=!1,a="defaultF",s={add:{trivial:i,total:i,commutative:i,associative:i},unaryPlus:{trivial:i,total:i,commutative:i,associative:i},subtract:{trivial:o,total:i,commutative:o,associative:o},multiply:{trivial:i,total:i,commutative:i,associative:i},divide:{trivial:o,total:i,commutative:o,associative:o},paren:{trivial:i,total:i,commutative:i,associative:o},defaultF:{trivial:o,total:i,commutative:o,associative:o}};function u(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:s,n=a;if("string"==typeof e?n=e:K(e)?n=e.fn.toString():Y(e)?n=e.name:ee(e)&&(n="paren"),me(r,n)){const e=r[n];if(me(e,t))return e[t];if(me(s,n))return s[n][t]}if(me(r,a)){const e=r[a];return me(e,t)?e[t]:s[a][t]}if(me(s,n)){const e=s[n];if(me(e,t))return e[t]}return s[a][t]}function c(e){return u(e,"associative",arguments.length>1&&void 0!==arguments[1]?arguments[1]:s)}function l(e,t){let r;const n=[],i=function(e){for(let t=0;t<e.args.length;t++){const o=e.args[t];K(o)&&r===o.op?i(o):n.push(o)}};return c(e,t)?(r=e.op,i(e),n):e.args}function f(e){return K(e)?function(t){try{return new r(e.op,e.fn,t,e.implicit)}catch(e){return console.error(e),[]}}:function(r){return new t(new n(e.name),r)}}return{createMakeNodeFunction:f,hasProperty:u,isCommutative:function(e){return u(e,"commutative",arguments.length>1&&void 0!==arguments[1]?arguments[1]:s)},isAssociative:c,mergeContext:function(e,t){const r={...e};for(const n in t)me(e,n)?r[n]={...t[n],...e[n]}:r[n]=t[n];return r},flatten:function e(t,r){if(!t.args||0===t.args.length)return t;t.args=l(t,r);for(let n=0;n<t.args.length;n++)e(t.args[n],r)},allChildren:l,unflattenr:function e(t,r){if(!t.args||0===t.args.length)return;const n=f(t),i=t.args.length;for(let n=0;n<i;n++)e(t.args[n],r);if(i>2&&c(t,r)){let e=t.args.pop();for(;t.args.length>0;)e=n([t.args.pop(),e]);t.args=e.args}},unflattenl:function e(t,r){if(!t.args||0===t.args.length)return;const n=f(t),i=t.args.length;for(let n=0;n<i;n++)e(t.args[n],r);if(i>2&&c(t,r)){let e=t.args.shift();for(;t.args.length>0;)e=n([e,t.args.shift()]);t.args=e.args}},defaultContext:s,realContext:{divide:{total:o},log:{total:o}},positiveContext:{subtract:{total:o},abs:{trivial:i},log:{total:i}}}})),gh=de("simplify",["config","typed","parse","add","subtract","multiply","divide","pow","isZero","equal","resolve","simplifyConstant","simplifyCore","?fraction","?bignumber","mathWithTransform","matrix","AccessorNode","ArrayNode","ConstantNode","FunctionNode","IndexNode","ObjectNode","OperatorNode","ParenthesisNode","SymbolNode"],(e=>{let{config:t,typed:r,parse:n,add:i,subtract:o,multiply:a,divide:s,pow:u,isZero:c,equal:l,resolve:f,simplifyConstant:p,simplifyCore:h,fraction:g,bignumber:y,mathWithTransform:x,matrix:b,AccessorNode:v,ArrayNode:w,ConstantNode:N,FunctionNode:E,IndexNode:A,ObjectNode:S,OperatorNode:M,ParenthesisNode:C,SymbolNode:T}=e;const{hasProperty:D,isCommutative:F,isAssociative:B,mergeContext:O,flatten:_,unflattenr:z,unflattenl:I,createMakeNodeFunction:k,defaultContext:q,realContext:R,positiveContext:P}=hh({FunctionNode:E,OperatorNode:M,SymbolNode:T});r.addConversion({from:"Object",to:"Map",convert:d});const j=r("simplify",{Node:V,"Node, Map":(e,t)=>V(e,!1,t),"Node, Map, Object":(e,t,r)=>V(e,!1,t,r),"Node, Array":V,"Node, Array, Map":V,"Node, Array, Map, Object":V});function U(e){return e.transform((function(e,t,r){return ee(e)?U(e.content):e}))}r.removeConversion({from:"Object",to:"Map",convert:d}),j.defaultContext=q,j.realContext=R,j.positiveContext=P;const L={true:!0,false:!0,e:!0,i:!0,Infinity:!0,LN2:!0,LN10:!0,LOG2E:!0,LOG10E:!0,NaN:!0,phi:!0,pi:!0,SQRT1_2:!0,SQRT2:!0,tau:!0};function $(e,t){const r={};if(e.s){const t=e.s.split("->");if(2!==t.length)throw SyntaxError("Could not parse rule: "+e.s);r.l=t[0],r.r=t[1]}else r.l=e.l,r.r=e.r;r.l=U(n(r.l)),r.r=U(n(r.r));for(const t of["imposeContext","repeat","assuming"])t in e&&(r[t]=e[t]);if(e.evaluate&&(r.evaluate=n(e.evaluate)),B(r.l,t)){const e=!F(r.l,t);let n;e&&(n=G());const i=k(r.l),o=G();r.expanded={},r.expanded.l=i([r.l,o]),_(r.expanded.l,t),z(r.expanded.l,t),r.expanded.r=i([r.r,o]),e&&(r.expandedNC1={},r.expandedNC1.l=i([n,r.l]),r.expandedNC1.r=i([n,r.r]),r.expandedNC2={},r.expandedNC2.l=i([n,r.expanded.l]),r.expandedNC2.r=i([n,r.expanded.r]))}return r}j.rules=[h,{l:"log(e)",r:"1"},{s:"n-n1 -> n+-n1",assuming:{subtract:{total:!0}}},{s:"n-n -> 0",assuming:{subtract:{total:!1}}},{s:"-(cl*v) -> v * (-cl)",assuming:{multiply:{commutative:!0},subtract:{total:!0}}},{s:"-(cl*v) -> (-cl) * v",assuming:{multiply:{commutative:!1},subtract:{total:!0}}},{s:"-(v*cl) -> v * (-cl)",assuming:{multiply:{commutative:!1},subtract:{total:!0}}},{l:"-(n1/n2)",r:"-n1/n2"},{l:"-v",r:"v * (-1)"},{l:"(n1 + n2)*(-1)",r:"n1*(-1) + n2*(-1)",repeat:!0},{l:"n/n1^n2",r:"n*n1^-n2"},{l:"n/n1",r:"n*n1^-1"},{s:"(n1*n2)^n3 -> n1^n3 * n2^n3",assuming:{multiply:{commutative:!0}}},{s:"(n1*n2)^(-1) -> n2^(-1) * n1^(-1)",assuming:{multiply:{commutative:!1}}},{s:"(n ^ n1) ^ n2 -> n ^ (n1 * n2)",assuming:{divide:{total:!0}}},{l:" vd * ( vd * n1 + n2)",r:"vd^2 * n1 + vd * n2"},{s:" vd * (vd^n4 * n1 + n2) -> vd^(1+n4) * n1 + vd * n2",assuming:{divide:{total:!0}}},{s:"vd^n3 * ( vd * n1 + n2) -> vd^(n3+1) * n1 + vd^n3 * n2",assuming:{divide:{total:!0}}},{s:"vd^n3 * (vd^n4 * n1 + n2) -> vd^(n3+n4) * n1 + vd^n3 * n2",assuming:{divide:{total:!0}}},{l:"n*n",r:"n^2"},{s:"n * n^n1 -> n^(n1+1)",assuming:{divide:{total:!0}}},{s:"n^n1 * n^n2 -> n^(n1+n2)",assuming:{divide:{total:!0}}},p,{s:"n+n -> 2*n",assuming:{add:{total:!0}}},{l:"n+-n",r:"0"},{l:"vd*n + vd",r:"vd*(n+1)"},{l:"n3*n1 + n3*n2",r:"n3*(n1+n2)"},{l:"n3^(-n4)*n1 + n3 * n2",r:"n3^(-n4)*(n1 + n3^(n4+1) *n2)"},{l:"n3^(-n4)*n1 + n3^n5 * n2",r:"n3^(-n4)*(n1 + n3^(n4+n5)*n2)"},{s:"n*vd + vd -> (n+1)*vd",assuming:{multiply:{commutative:!1}}},{s:"vd + n*vd -> (1+n)*vd",assuming:{multiply:{commutative:!1}}},{s:"n1*n3 + n2*n3 -> (n1+n2)*n3",assuming:{multiply:{commutative:!1}}},{s:"n^n1 * n -> n^(n1+1)",assuming:{divide:{total:!0},multiply:{commutative:!1}}},{s:"n1*n3^(-n4) + n2 * n3 -> (n1 + n2*n3^(n4 + 1))*n3^(-n4)",assuming:{multiply:{commutative:!1}}},{s:"n1*n3^(-n4) + n2 * n3^n5 -> (n1 + n2*n3^(n4 + n5))*n3^(-n4)",assuming:{multiply:{commutative:!1}}},{l:"n*cd + cd",r:"(n+1)*cd"},{s:"cd*n + cd -> cd*(n+1)",assuming:{multiply:{commutative:!1}}},{s:"cd + cd*n -> cd*(1+n)",assuming:{multiply:{commutative:!1}}},p,{s:"(-n)*n1 -> -(n*n1)",assuming:{subtract:{total:!0}}},{s:"n1*(-n) -> -(n1*n)",assuming:{subtract:{total:!0},multiply:{commutative:!1}}},{s:"ce+ve -> ve+ce",assuming:{add:{commutative:!0}},imposeContext:{add:{commutative:!1}}},{s:"vd*cd -> cd*vd",assuming:{multiply:{commutative:!0}},imposeContext:{multiply:{commutative:!1}}},{l:"n+-n1",r:"n-n1"},{l:"n+-(n1)",r:"n-(n1)"},{s:"n*(n1^-1) -> n/n1",assuming:{multiply:{commutative:!0}}},{s:"n*n1^-n2 -> n/n1^n2",assuming:{multiply:{commutative:!0}}},{s:"n^-1 -> 1/n",assuming:{multiply:{commutative:!0}}},{l:"n^1",r:"n"},{s:"n*(n1/n2) -> (n*n1)/n2",assuming:{multiply:{associative:!0}}},{s:"n-(n1+n2) -> n-n1-n2",assuming:{addition:{associative:!0,commutative:!0}}},{l:"1*n",r:"n",imposeContext:{multiply:{commutative:!0}}},{s:"n1/(n2/n3) -> (n1*n3)/n2",assuming:{multiply:{associative:!0}}},{l:"n1/(-n2)",r:"-n1/n2"}];let H=0;function G(){return new T("_p"+H++)}function V(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:m(),n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};const i=n.consoleDebug;t=function(e,t){const r=[];for(let n=0;n<e.length;n++){let i,o=e[n];const a=typeof o;switch(a){case"string":o={s:o};case"object":i=$(o,t);break;case"function":i=o;break;default:throw TypeError("Unsupported type of rule: "+a)}r.push(i)}return r}(t||j.rules,n.context);let o=f(e,r);o=U(o);const a={};let s=o.toString({parenthesis:"all"});for(;!a[s];){a[s]=!0,H=0;let e=s;i&&console.log("Working on: ",s);for(let r=0;r<t.length;r++){let a="";if("function"==typeof t[r]?(o=t[r](o,n),i&&(a=t[r].name)):(_(o,n.context),o=Y(o,t[r],n.context),i&&(a=`${t[r].l.toString()} -> ${t[r].r.toString()}`)),i){const t=o.toString({parenthesis:"all"});t!==e&&(console.log("Applying",a,"produced",t),e=t)}I(o,n.context)}s=o.toString({parenthesis:"all"})}return o}function W(e,t,r){let n=e;if(e)for(let i=0;i<e.length;++i){const o=Y(e[i],t,r);o!==e[i]&&(n===e&&(n=e.slice()),n[i]=o)}return n}function Y(e,t,r){if(t.assuming)for(const n in t.assuming)for(const i in t.assuming[n])if(D(n,i,r)!==t.assuming[n][i])return e;const n=O(t.imposeContext,r);let i=e;if(i instanceof M||i instanceof E){const e=W(i.args,t,r);e!==i.args&&(i=i.clone(),i.args=e)}else if(i instanceof C){if(i.content){const e=Y(i.content,t,r);e!==i.content&&(i=new C(e))}}else if(i instanceof w){const e=W(i.items,t,r);e!==i.items&&(i=new w(e))}else if(i instanceof v){let e=i.object;i.object&&(e=Y(i.object,t,r));let n=i.index;i.index&&(n=Y(i.index,t,r)),e===i.object&&n===i.index||(i=new v(e,n))}else if(i instanceof A){const e=W(i.dimensions,t,r);e!==i.dimensions&&(i=new A(e))}else if(i instanceof S){let e=!1;const n={};for(const o in i.properties)n[o]=Y(i.properties[o],t,r),n[o]!==i.properties[o]&&(e=!0);e&&(i=new S(n))}let o=t.r,a=Q(t.l,i,n)[0];if(!a&&t.expanded&&(o=t.expanded.r,a=Q(t.expanded.l,i,n)[0]),!a&&t.expandedNC1&&(o=t.expandedNC1.r,a=Q(t.expandedNC1.l,i,n)[0],a||(o=t.expandedNC2.r,a=Q(t.expandedNC2.l,i,n)[0])),a){const e=i.implicit;i=o.clone(),e&&"implicit"in o&&(i.implicit=!0),i=i.transform((function(e){return e.isSymbolNode&&me(a.placeholders,e.name)?a.placeholders[e.name].clone():e}))}return t.repeat&&i!==e&&(i=Y(i,t,r)),i}function J(e,t){const r={placeholders:{}};if(!e.placeholders&&!t.placeholders)return r;if(!e.placeholders)return t;if(!t.placeholders)return e;for(const n in e.placeholders)if(me(e.placeholders,n)&&(r.placeholders[n]=e.placeholders[n],me(t.placeholders,n)&&!K(e.placeholders[n],t.placeholders[n])))return null;for(const e in t.placeholders)me(t.placeholders,e)&&(r.placeholders[e]=t.placeholders[e]);return r}function X(e,t){const r=[];if(0===e.length||0===t.length)return r;let n;for(let i=0;i<e.length;i++)for(let o=0;o<t.length;o++)n=J(e[i],t[o]),n&&r.push(n);return r}function Q(e,t,r,n){let i=[{placeholders:{}}];if(e instanceof M&&t instanceof M||e instanceof E&&t instanceof E){if(e instanceof M){if(e.op!==t.op||e.fn!==t.fn)return[]}else if(e instanceof E&&e.name!==t.name)return[];if(!(1===t.args.length&&1===e.args.length||!B(t,r)&&t.args.length===e.args.length||n)){if(t.args.length>=2&&2===e.args.length){const n=function(e,t){const r=[];let n,i;const o=k(e);if(F(e,t))for(let t=0;t<e.args.length;t++)i=e.args.slice(0),i.splice(t,1),n=1===i.length?i[0]:o(i),r.push(o([e.args[t],n]));else for(let t=1;t<e.args.length;t++){let a=e.args[0];t>1&&(a=o(e.args.slice(0,t))),i=e.args.slice(t),n=1===i.length?i[0]:o(i),r.push(o([a,n]))}return r}(t,r);let i=[];for(let t=0;t<n.length;t++){const o=Q(e,n[t],r,!0);i=i.concat(o)}return i}if(e.args.length>2)throw Error("Unexpected non-binary associative function: "+e.toString());return[]}{let n=[];for(let i=0;i<e.args.length;i++){const o=Q(e.args[i],t.args[i],r);if(0===o.length)break;n.push(o)}if(n.length!==e.args.length){if(!F(t,r)||1===e.args.length)return[];if(e.args.length>2)throw new Error("permuting >2 commutative non-associative rule arguments not yet implemented");const i=Q(e.args[0],t.args[1],r);if(0===i.length)return[];const o=Q(e.args[1],t.args[0],r);if(0===o.length)return[];n=[i,o]}i=function(e){if(0===e.length)return e;const t=e.reduce(X),r=[],n={};for(let e=0;e<t.length;e++){const i=JSON.stringify(t[e]);n[i]||(n[i]=!0,r.push(t[e]))}return r}(n)}}else if(e instanceof T){if(0===e.name.length)throw new Error("Symbol in rule has 0 length...!?");if(L[e.name]){if(e.name!==t.name)return[]}else switch(e.name[1]>="a"&&e.name[1]<="z"?e.name.substring(0,2):e.name[0]){case"n":case"_p":i[0].placeholders[e.name]=t;break;case"c":case"cl":if(!Z(t))return[];i[0].placeholders[e.name]=t;break;case"v":if(Z(t))return[];i[0].placeholders[e.name]=t;break;case"vl":if(!ne(t))return[];i[0].placeholders[e.name]=t;break;case"cd":if(!mh(t))return[];i[0].placeholders[e.name]=t;break;case"vd":if(mh(t))return[];i[0].placeholders[e.name]=t;break;case"ce":if(!dh(t))return[];i[0].placeholders[e.name]=t;break;case"ve":if(dh(t))return[];i[0].placeholders[e.name]=t;break;default:throw new Error("Invalid symbol in rule: "+e.name)}}else{if(!(e instanceof N))return[];if(!l(e.value,t.value))return[]}return i}function K(e,t){if(e instanceof N&&t instanceof N){if(!l(e.value,t.value))return!1}else if(e instanceof T&&t instanceof T){if(e.name!==t.name)return!1}else{if(!(e instanceof M&&t instanceof M||e instanceof E&&t instanceof E))return!1;if(e instanceof M){if(e.op!==t.op||e.fn!==t.fn)return!1}else if(e instanceof E&&e.name!==t.name)return!1;if(e.args.length!==t.args.length)return!1;for(let r=0;r<e.args.length;r++)if(!K(e.args[r],t.args[r]))return!1}return!0}return j})),yh=de("simplifyConstant",["typed","config","mathWithTransform","matrix","?fraction","?bignumber","AccessorNode","ArrayNode","ConstantNode","FunctionNode","IndexNode","ObjectNode","OperatorNode","SymbolNode"],(e=>{let{typed:t,config:r,mathWithTransform:n,matrix:i,fraction:o,bignumber:a,AccessorNode:s,ArrayNode:u,ConstantNode:c,FunctionNode:l,IndexNode:f,ObjectNode:p,OperatorNode:m,SymbolNode:d}=e;const{isCommutative:h,isAssociative:g,allChildren:y,createMakeNodeFunction:x}=hh({FunctionNode:l,OperatorNode:m,SymbolNode:d}),v=t("simplifyConstant",{Node:e=>S(F(e,{})),"Node, Object":function(e,t){return S(F(e,t))}});function w(e){return b(e)?e.valueOf():e instanceof Array?e.map(w):E(e)?i(w(e.valueOf())):e}function N(e,t,r){try{return n[e].apply(null,t)}catch(i){return t=t.map(w),C(n[e].apply(null,t),r)}}const A=t({Fraction:function(e){let t;const r=e.s*e.n;return t=r<0?new m("-","unaryMinus",[new c(-r)]):new c(r),1===e.d?t:new m("/","divide",[t,new c(e.d)])},number:function(e){return e<0?T(new c(-e)):new c(e)},BigNumber:function(e){return e<0?T(new c(-e)):new c(e)},bigint:function(e){return e<0n?T(new c(-e)):new c(e)},Complex:function(e){throw new Error("Cannot convert Complex number to Node")},string:function(e){return new c(e)},Matrix:function(e){return new u(e.valueOf().map((e=>A(e))))}});function S(e){return X(e)?e:A(e)}function M(e,t){if(t&&!1!==t.exactFractions&&isFinite(e)&&o){const r=o(e),n=t&&"number"==typeof t.fractionsLimit?t.fractionsLimit:1/0;if(r.valueOf()===e&&r.n<n&&r.d<n)return r}return e}const C=t({"string, Object":function(e,t){const n=xe(e,r);return"BigNumber"===n?(void 0===a&&js(),a(e)):"bigint"===n?BigInt(e):"Fraction"===n?(void 0===o&&Us(),o(e)):M(parseFloat(e),t)},"Fraction, Object":function(e,t){return e},"BigNumber, Object":function(e,t){return e},"number, Object":function(e,t){return M(e,t)},"bigint, Object":function(e,t){return e},"Complex, Object":function(e,t){return 0!==e.im?e:M(e.re,t)},"Matrix, Object":function(e,t){return i(M(e.valueOf()))},"Array, Object":function(e,t){return e.map(M)}});function T(e){return new m("-","unaryMinus",[e])}function D(e,t,r,n){const i=t.shift(),o=t.reduce(((t,i)=>{if(!X(i)){const r=t.pop();if(X(r))return[r,i];try{return t.push(N(e,[r,i],n)),t}catch(e){t.push(r)}}t.push(S(t.pop()));const o=1===t.length?t[0]:r(t);return[r([o,S(i)])]}),[i]);return 1===o.length?o[0]:r([o[0],A(o[1])])}function F(e,t){switch(e.type){case"SymbolNode":return e;case"ConstantNode":switch(typeof e.value){case"number":case"bigint":return C(e.value,t);case"string":return e.value;default:if(!isNaN(e.value))return C(e.value,t)}return e;case"FunctionNode":if(n[e.name]&&n[e.name].rawArgs)return e;if(!["add","multiply"].includes(e.name)){const r=e.args.map((e=>F(e,t)));if(!r.some(X))try{return N(e.name,r,t)}catch(e){}if("size"===e.name&&1===r.length&&L(r[0])){const e=[];let t=r[0];for(;L(t);)e.push(t.items.length),t=t.items[0];return i(e)}return new l(e.name,r.map(S))}case"OperatorNode":{const r=e.fn.toString();let n,i;const o=x(e);if(K(e)&&e.isUnary())n=[F(e.args[0],t)],i=X(n[0])?o(n):N(r,n,t);else if(g(e,t.context))if(n=y(e,t.context),n=n.map((e=>F(e,t))),h(r,t.context)){const e=[],a=[];for(let t=0;t<n.length;t++)X(n[t])?a.push(n[t]):e.push(n[t]);e.length>1?(i=D(r,e,o,t),a.unshift(i),i=D(r,a,o,t)):i=D(r,n,o,t)}else i=D(r,n,o,t);else n=e.args.map((e=>F(e,t))),i=D(r,n,o,t);return i}case"ParenthesisNode":return F(e.content,t);case"AccessorNode":return function(e,t,r){if(!J(t))return new s(S(e),S(t));if(L(e)||E(e)){const n=Array.from(t.dimensions);for(;n.length>0;)if(Z(n[0])&&"string"!=typeof n[0].value){const t=C(n.shift().value,r);L(e)?e=e.items[t-1]:(e=e.valueOf()[t-1])instanceof Array&&(e=i(e))}else{if(!(n.length>1&&Z(n[1])&&"string"!=typeof n[1].value))break;{const t=C(n[1].value,r),o=[],a=L(e)?e.items:e.valueOf();for(const r of a)if(L(r))o.push(r.items[t-1]);else{if(!E(e))break;o.push(r[t-1])}if(o.length!==a.length)break;e=L(e)?new u(o):i(o),n.splice(1,1)}}return n.length===t.dimensions.length?new s(S(e),t):n.length>0?(t=new f(n),new s(S(e),t)):e}if(Q(e)&&1===t.dimensions.length&&Z(t.dimensions[0])){const r=t.dimensions[0].value;return r in e.properties?e.properties[r]:new c}return new s(S(e),t)}(F(e.object,t),F(e.index,t),t);case"ArrayNode":{const r=e.items.map((e=>F(e,t)));return r.some(X)?new u(r.map(S)):i(r)}case"IndexNode":return new f(e.dimensions.map((e=>v(e,t))));case"ObjectNode":{const r={};for(const n in e.properties)r[n]=v(e.properties[n],t);return new p(r)}default:throw new Error(`Unimplemented node type in simplifyConstant: ${e.type}`)}}return v})),xh="simplifyCore",bh=de(xh,["typed","parse","equal","isZero","add","subtract","multiply","divide","pow","AccessorNode","ArrayNode","ConstantNode","FunctionNode","IndexNode","ObjectNode","OperatorNode","ParenthesisNode","SymbolNode"],(e=>{let{typed:t,parse:r,equal:n,isZero:i,add:o,subtract:a,multiply:s,divide:u,pow:c,AccessorNode:l,ArrayNode:f,ConstantNode:p,FunctionNode:m,IndexNode:d,ObjectNode:h,OperatorNode:g,ParenthesisNode:y,SymbolNode:x}=e;const b=new p(0),v=new p(1),w=new p(!0),N=new p(!1);function E(e){return K(e)&&["and","not","or"].includes(e.op)}const{hasProperty:A,isCommutative:S}=hh({FunctionNode:m,OperatorNode:g,SymbolNode:x});function M(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const r=t?t.context:void 0;if(A(e,"trivial",r)){if(Y(e)&&1===e.args.length)return M(e.args[0],t);let r=!1,n=0;if(e.forEach((e=>{++n,1===n&&(r=M(e,t))})),1===n)return r}let o=e;if(Y(o)){const e=function(e){const t="OperatorNode:"+e;for(const e of yp)if(t in e)return e[t].op;return null}(o.name);if(!e)return new m(M(o.fn),o.args.map((e=>M(e,t))));if(o.args.length>2&&A(o,"associative",r))for(;o.args.length>2;){const t=o.args.pop(),r=o.args.pop();o.args.push(new g(e,o.name,[t,r]))}o=new g(e,o.name,o.args)}if(K(o)&&o.isUnary()){const e=M(o.args[0],t);if("~"===o.op&&K(e)&&e.isUnary()&&"~"===e.op)return e.args[0];if("not"===o.op&&K(e)&&e.isUnary()&&"not"===e.op&&E(e.args[0]))return e.args[0];let r=!0;if("-"===o.op&&K(e)&&(e.isBinary()&&"subtract"===e.fn&&(o=new g("-","subtract",[e.args[1],e.args[0]]),r=!1),e.isUnary()&&"-"===e.op))return e.args[0];if(r)return new g(o.op,o.fn,[e])}if(K(o)&&o.isBinary()){const e=M(o.args[0],t);let a=M(o.args[1],t);if("+"===o.op){if(Z(e)&&i(e.value))return a;if(Z(a)&&i(a.value))return e;K(a)&&a.isUnary()&&"-"===a.op&&(a=a.args[0],o=new g("-","subtract",[e,a]))}if("-"===o.op)return K(a)&&a.isUnary()&&"-"===a.op?M(new g("+","add",[e,a.args[0]]),t):Z(e)&&i(e.value)?M(new g("-","unaryMinus",[a])):Z(a)&&i(a.value)?e:new g(o.op,o.fn,[e,a]);if("*"===o.op){if(Z(e)){if(i(e.value))return b;if(n(e.value,1))return a}if(Z(a)){if(i(a.value))return b;if(n(a.value,1))return e;if(S(o,r))return new g(o.op,o.fn,[a,e],o.implicit)}return new g(o.op,o.fn,[e,a],o.implicit)}if("/"===o.op)return Z(e)&&i(e.value)?b:Z(a)&&n(a.value,1)?e:new g(o.op,o.fn,[e,a]);if("^"===o.op&&Z(a)){if(i(a.value))return v;if(n(a.value,1))return e}if("and"===o.op){if(Z(e)){if(!e.value)return N;if(E(a))return a;if(Z(a))return a.value?w:N}if(Z(a)){if(!a.value)return N;if(E(e))return e}}if("or"===o.op){if(Z(e)){if(e.value)return w;if(E(a))return a}if(Z(a)){if(a.value)return w;if(E(e))return e}}return new g(o.op,o.fn,[e,a])}if(K(o))return new g(o.op,o.fn,o.args.map((e=>M(e,t))));if(L(o))return new f(o.items.map((e=>M(e,t))));if(U(o))return new l(M(o.object,t),M(o.index,t));if(J(o))return new d(o.dimensions.map((e=>M(e,t))));if(Q(o)){const e={};for(const r in o.properties)e[r]=M(o.properties[r],t);return new h(e)}return o}return t(xh,{Node:M,"Node,Object":M})})),vh=de("resolve",["typed","parse","ConstantNode","FunctionNode","OperatorNode","ParenthesisNode"],(e=>{let{typed:t,parse:r,ConstantNode:n,FunctionNode:i,OperatorNode:o,ParenthesisNode:a}=e;function s(e,t){let u=arguments.length>2&&void 0!==arguments[2]?arguments[2]:new Set;if(!t)return e;if(ne(e)){if(u.has(e.name)){const e=Array.from(u).join(", ");throw new ReferenceError(`recursive loop of variable definitions among {${e}}`)}const i=t.get(e.name);if(X(i)){const r=new Set(u);return r.add(e.name),s(i,t,r)}return"number"==typeof i?r(String(i)):void 0!==i?new n(i):e}if(K(e)){const r=e.args.map((function(e){return s(e,t,u)}));return new o(e.op,e.fn,r,e.implicit)}if(ee(e))return new a(s(e.content,t,u));if(Y(e)){const r=e.args.map((function(e){return s(e,t,u)}));return new i(e.name,r)}return e.map((e=>s(e,t,u)))}return t("resolve",{Node:s,"Node, Map | null | undefined":s,"Node, Object":(e,t)=>s(e,d(t)),"Array | Matrix":t.referToSelf((e=>t=>t.map((t=>e(t))))),"Array | Matrix, null | undefined":t.referToSelf((e=>t=>t.map((t=>e(t))))),"Array, Object":t.referTo("Array,Map",(e=>(t,r)=>e(t,d(r)))),"Matrix, Object":t.referTo("Matrix,Map",(e=>(t,r)=>e(t,d(r)))),"Array | Matrix, Map":t.referToSelf((e=>(t,r)=>t.map((t=>e(t,r)))))})})),wh="symbolicEqual",Nh=de(wh,["parse","simplify","typed","OperatorNode"],(e=>{let{parse:t,simplify:r,typed:n,OperatorNode:i}=e;function o(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};const o=new i("-","subtract",[e,t]),a=r(o,{},n);return Z(a)&&!a.value}return n(wh,{"Node, Node":o,"Node, Node, Object":o})})),Eh="derivative",Ah=de(Eh,["typed","config","parse","simplify","equal","isZero","numeric","ConstantNode","FunctionNode","OperatorNode","ParenthesisNode","SymbolNode"],(e=>{let{typed:t,config:r,parse:n,simplify:i,equal:o,isZero:a,numeric:s,ConstantNode:u,FunctionNode:c,OperatorNode:l,ParenthesisNode:f,SymbolNode:p}=e;function m(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{simplify:!0};const n={};g(n,e,t.name);const o=y(e,n);return r.simplify?i(o):o}t.addConversion({from:"identifier",to:"SymbolNode",convert:n});const d=t(Eh,{"Node, SymbolNode":m,"Node, SymbolNode, Object":m});t.removeConversion({from:"identifier",to:"SymbolNode",convert:n}),d._simplify=!0,d.toTex=function(e){return h.apply(null,e.args)};const h=t("_derivTex",{"Node, SymbolNode":function(e,t){return Z(e)&&"string"===oe(e.value)?h(n(e.value).toString(),t.toString(),1):h(e.toTex(),t.toString(),1)},"Node, ConstantNode":function(e,t){if("string"===oe(t.value))return h(e,n(t.value));throw new Error("The second parameter to 'derivative' is a non-string constant")},"Node, SymbolNode, ConstantNode":function(e,t,r){return h(e.toString(),t.name,r.value)},"string, string, number":function(e,t,r){let n;return n=1===r?"{d\\over d"+t+"}":"{d^{"+r+"}\\over d"+t+"^{"+r+"}}",n+`\\left[${e}\\right]`}}),g=t("constTag",{"Object, ConstantNode, string":function(e,t){return e[t]=!0,!0},"Object, SymbolNode, string":function(e,t,r){return t.name!==r&&(e[t]=!0,!0)},"Object, ParenthesisNode, string":function(e,t,r){return g(e,t.content,r)},"Object, FunctionAssignmentNode, string":function(e,t,r){return t.params.includes(r)?g(e,t.expr,r):(e[t]=!0,!0)},"Object, FunctionNode | OperatorNode, string":function(e,t,r){if(t.args.length>0){let n=g(e,t.args[0],r);for(let i=1;i<t.args.length;++i)n=g(e,t.args[i],r)&&n;if(n)return e[t]=!0,!0}return!1}}),y=t("_derivative",{"ConstantNode, Object":function(e){return x(0)},"SymbolNode, Object":function(e,t){return void 0!==t[e]?x(0):x(1)},"ParenthesisNode, Object":function(e,t){return new f(y(e.content,t))},"FunctionAssignmentNode, Object":function(e,t){return void 0!==t[e]?x(0):y(e.expr,t)},"FunctionNode, Object":function(e,t){if(void 0!==t[e])return x(0);const r=e.args[0];let n,i,o,a,s=!1,u=!1;switch(e.name){case"cbrt":s=!0,i=new l("*","multiply",[x(3),new l("^","pow",[r,new l("/","divide",[x(2),x(3)])])]);break;case"sqrt":case"nthRoot":if(1===e.args.length)s=!0,i=new l("*","multiply",[x(2),new c("sqrt",[r])]);else if(2===e.args.length)return n=new l("/","divide",[x(1),e.args[1]]),t[n]=t[e.args[1]],y(new l("^","pow",[r,n]),t);break;case"log10":n=x(10);case"log":if(n||1!==e.args.length){if(1===e.args.length&&n||2===e.args.length&&void 0!==t[e.args[1]])i=new l("*","multiply",[r.clone(),new c("log",[n||e.args[1]])]),s=!0;else if(2===e.args.length)return y(new l("/","divide",[new c("log",[r]),new c("log",[e.args[1]])]),t)}else i=r.clone(),s=!0;break;case"pow":if(2===e.args.length)return t[n]=t[e.args[1]],y(new l("^","pow",[r,e.args[1]]),t);break;case"exp":i=new c("exp",[r.clone()]);break;case"sin":i=new c("cos",[r.clone()]);break;case"cos":i=new l("-","unaryMinus",[new c("sin",[r.clone()])]);break;case"tan":i=new l("^","pow",[new c("sec",[r.clone()]),x(2)]);break;case"sec":i=new l("*","multiply",[e,new c("tan",[r.clone()])]);break;case"csc":u=!0,i=new l("*","multiply",[e,new c("cot",[r.clone()])]);break;case"cot":u=!0,i=new l("^","pow",[new c("csc",[r.clone()]),x(2)]);break;case"asin":s=!0,i=new c("sqrt",[new l("-","subtract",[x(1),new l("^","pow",[r.clone(),x(2)])])]);break;case"acos":s=!0,u=!0,i=new c("sqrt",[new l("-","subtract",[x(1),new l("^","pow",[r.clone(),x(2)])])]);break;case"atan":s=!0,i=new l("+","add",[new l("^","pow",[r.clone(),x(2)]),x(1)]);break;case"asec":s=!0,i=new l("*","multiply",[new c("abs",[r.clone()]),new c("sqrt",[new l("-","subtract",[new l("^","pow",[r.clone(),x(2)]),x(1)])])]);break;case"acsc":s=!0,u=!0,i=new l("*","multiply",[new c("abs",[r.clone()]),new c("sqrt",[new l("-","subtract",[new l("^","pow",[r.clone(),x(2)]),x(1)])])]);break;case"acot":s=!0,u=!0,i=new l("+","add",[new l("^","pow",[r.clone(),x(2)]),x(1)]);break;case"sinh":i=new c("cosh",[r.clone()]);break;case"cosh":i=new c("sinh",[r.clone()]);break;case"tanh":i=new l("^","pow",[new c("sech",[r.clone()]),x(2)]);break;case"sech":u=!0,i=new l("*","multiply",[e,new c("tanh",[r.clone()])]);break;case"csch":u=!0,i=new l("*","multiply",[e,new c("coth",[r.clone()])]);break;case"coth":u=!0,i=new l("^","pow",[new c("csch",[r.clone()]),x(2)]);break;case"asinh":s=!0,i=new c("sqrt",[new l("+","add",[new l("^","pow",[r.clone(),x(2)]),x(1)])]);break;case"acosh":s=!0,i=new c("sqrt",[new l("-","subtract",[new l("^","pow",[r.clone(),x(2)]),x(1)])]);break;case"atanh":s=!0,i=new l("-","subtract",[x(1),new l("^","pow",[r.clone(),x(2)])]);break;case"asech":s=!0,u=!0,i=new l("*","multiply",[r.clone(),new c("sqrt",[new l("-","subtract",[x(1),new l("^","pow",[r.clone(),x(2)])])])]);break;case"acsch":s=!0,u=!0,i=new l("*","multiply",[new c("abs",[r.clone()]),new c("sqrt",[new l("+","add",[new l("^","pow",[r.clone(),x(2)]),x(1)])])]);break;case"acoth":s=!0,u=!0,i=new l("-","subtract",[x(1),new l("^","pow",[r.clone(),x(2)])]);break;case"abs":i=new l("/","divide",[new c(new p("abs"),[r.clone()]),r.clone()]);break;default:throw new Error('Cannot process function "'+e.name+'" in derivative: the function is not supported, undefined, or the number of arguments passed to it are not supported')}s?(o="/",a="divide"):(o="*",a="multiply");let f=y(r,t);return u&&(f=new l("-","unaryMinus",[f])),new l(o,a,[f,i])},"OperatorNode, Object":function(e,t){if(void 0!==t[e])return x(0);if("+"===e.op)return new l(e.op,e.fn,e.args.map((function(e){return y(e,t)})));if("-"===e.op){if(e.isUnary())return new l(e.op,e.fn,[y(e.args[0],t)]);if(e.isBinary())return new l(e.op,e.fn,[y(e.args[0],t),y(e.args[1],t)])}if("*"===e.op){const r=e.args.filter((function(e){return void 0!==t[e]}));if(r.length>0){const n=e.args.filter((function(e){return void 0===t[e]})),i=1===n.length?n[0]:new l("*","multiply",n),o=r.concat(y(i,t));return new l("*","multiply",o)}return new l("+","add",e.args.map((function(r){return new l("*","multiply",e.args.map((function(e){return e===r?y(e,t):e.clone()})))})))}if("/"===e.op&&e.isBinary()){const r=e.args[0],n=e.args[1];return void 0!==t[n]?new l("/","divide",[y(r,t),n]):void 0!==t[r]?new l("*","multiply",[new l("-","unaryMinus",[r]),new l("/","divide",[y(n,t),new l("^","pow",[n.clone(),x(2)])])]):new l("/","divide",[new l("-","subtract",[new l("*","multiply",[y(r,t),n.clone()]),new l("*","multiply",[r.clone(),y(n,t)])]),new l("^","pow",[n.clone(),x(2)])])}if("^"===e.op&&e.isBinary()){const r=e.args[0],n=e.args[1];if(void 0!==t[r])return Z(r)&&(a(r.value)||o(r.value,1))?x(0):new l("*","multiply",[e,new l("*","multiply",[new c("log",[r.clone()]),y(n.clone(),t)])]);if(void 0!==t[n]){if(Z(n)){if(a(n.value))return x(0);if(o(n.value,1))return y(r,t)}const e=new l("^","pow",[r.clone(),new l("-","subtract",[n,x(1)])]);return new l("*","multiply",[n.clone(),new l("*","multiply",[y(r,t),e])])}return new l("*","multiply",[new l("^","pow",[r.clone(),n.clone()]),new l("+","add",[new l("*","multiply",[y(r,t),new l("/","divide",[n.clone(),r.clone()])]),new l("*","multiply",[y(n,t),new c("log",[r.clone()])])])])}throw new Error('Cannot process operator "'+e.op+'" in derivative: the operator is not supported, undefined, or the number of arguments passed to it are not supported')}});function x(e,t){return new u(s(e,t||xe(String(e),r)))}return d})),Sh="rationalize",Mh=de(Sh,["config","typed","equal","isZero","add","subtract","multiply","divide","pow","parse","simplifyConstant","simplifyCore","simplify","?bignumber","?fraction","mathWithTransform","matrix","AccessorNode","ArrayNode","ConstantNode","FunctionNode","IndexNode","ObjectNode","OperatorNode","SymbolNode","ParenthesisNode"],(e=>{let{config:t,typed:r,equal:n,isZero:i,add:o,subtract:a,multiply:s,divide:u,pow:c,parse:l,simplifyConstant:f,simplifyCore:p,simplify:m,fraction:d,bignumber:h,mathWithTransform:g,matrix:y,AccessorNode:x,ArrayNode:b,ConstantNode:v,FunctionNode:w,IndexNode:N,ObjectNode:E,OperatorNode:A,SymbolNode:S,ParenthesisNode:M}=e;function C(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];const n=function(){const e=[p,{l:"n+n",r:"2*n"},{l:"n+-n",r:"0"},f,{l:"n*(n1^-1)",r:"n/n1"},{l:"n*n1^-n2",r:"n/n1^n2"},{l:"n1^-1",r:"1/n1"},{l:"n*(n1/n2)",r:"(n*n1)/n2"},{l:"1*n",r:"n"}],t=[{l:"(-n1)/(-n2)",r:"n1/n2"},{l:"(-n1)*(-n2)",r:"n1*n2"},{l:"n1--n2",r:"n1+n2"},{l:"n1-n2",r:"n1+(-n2)"},{l:"(n1+n2)*n3",r:"(n1*n3 + n2*n3)"},{l:"n1*(n2+n3)",r:"(n1*n2+n1*n3)"},{l:"c1*n + c2*n",r:"(c1+c2)*n"},{l:"c1*n + n",r:"(c1+1)*n"},{l:"c1*n - c2*n",r:"(c1-c2)*n"},{l:"c1*n - n",r:"(c1-1)*n"},{l:"v/c",r:"(1/c)*v"},{l:"v/-c",r:"-(1/c)*v"},{l:"-v*-c",r:"c*v"},{l:"-v*c",r:"-c*v"},{l:"v*-c",r:"-c*v"},{l:"v*c",r:"c*v"},{l:"-(-n1*n2)",r:"(n1*n2)"},{l:"-(n1*n2)",r:"(-n1*n2)"},{l:"-(-n1+n2)",r:"(n1-n2)"},{l:"-(n1+n2)",r:"(-n1-n2)"},{l:"(n1^n2)^n3",r:"(n1^(n2*n3))"},{l:"-(-n1/n2)",r:"(n1/n2)"},{l:"-(n1/n2)",r:"(-n1/n2)"}],r=[{l:"(n1/(n2/n3))",r:"((n1*n3)/n2)"},{l:"(n1/n2/n3)",r:"(n1/(n2*n3))"}],n={};return n.firstRules=e.concat(t,r),n.distrDivRules=[{l:"(n1/n2 + n3/n4)",r:"((n1*n4 + n3*n2)/(n2*n4))"},{l:"(n1/n2 + n3)",r:"((n1 + n3*n2)/n2)"},{l:"(n1 + n2/n3)",r:"((n1*n3 + n2)/n3)"}],n.sucDivRules=r,n.firstRulesAgain=e.concat(t),n.finalRules=[p,{l:"n*-n",r:"-n^2"},{l:"n*n",r:"n^2"},f,{l:"n*-n^n1",r:"-n^(n1+1)"},{l:"n*n^n1",r:"n^(n1+1)"},{l:"n^n1*-n^n2",r:"-n^(n1+n2)"},{l:"n^n1*n^n2",r:"n^(n1+n2)"},{l:"n^n1*-n",r:"-n^(n1+1)"},{l:"n^n1*n",r:"n^(n1+1)"},{l:"n^n1/-n",r:"-n^(n1-1)"},{l:"n^n1/n",r:"n^(n1-1)"},{l:"n/-n^n1",r:"-n^(1-n1)"},{l:"n/n^n1",r:"n^(1-n1)"},{l:"n^n1/-n^n2",r:"n^(n1-n2)"},{l:"n^n1/n^n2",r:"n^(n1-n2)"},{l:"n1+(-n2*n3)",r:"n1-n2*n3"},{l:"v*(-c)",r:"-c*v"},{l:"n1+-n2",r:"n1-n2"},{l:"v*c",r:"c*v"},{l:"(n1^n2)^n3",r:"(n1^(n2*n3))"}],n}(),i=function(e,t,r,n){const i=[],o=m(e,n,t,{exactFractions:!1}),a="+-*"+((r=!!r)?"/":"");!function e(t){const r=t.type;if("FunctionNode"===r)throw new Error("There is an unsolved function call");if("OperatorNode"===r)if("^"===t.op){if("ConstantNode"!==t.args[1].type||!ye(parseFloat(t.args[1].value)))throw new Error("There is a non-integer exponent");e(t.args[0])}else{if(!a.includes(t.op))throw new Error("Operator "+t.op+" invalid in polynomial expression");for(let r=0;r<t.args.length;r++)e(t.args[r])}else if("SymbolNode"===r){const e=t.name;-1===i.indexOf(e)&&i.push(e)}else if("ParenthesisNode"===r)e(t.content);else if("ConstantNode"!==r)throw new Error("type "+r+" is not allowed in polynomial expression")}(o);const s={};return s.expression=o,s.variables=i,s}(e,t,!0,n.firstRules),o=i.variables.length,a={exactFractions:!1},s={exactFractions:!0};if(e=i.expression,o>=1){let t,r;e=T(e);let i,o=!0,u=!1;for(e=m(e,n.firstRules,{},a);r=o?n.distrDivRules:n.sucDivRules,o=!o,i=(e=m(e,r,{},s)).toString(),i!==t;)u=!0,t=i;u&&(e=m(e,n.firstRulesAgain,{},a)),e=m(e,n.finalRules,{},a)}const u=[],c={};return"OperatorNode"===e.type&&e.isBinary()&&"/"===e.op?(1===o&&(e.args[0]=D(e.args[0],u),e.args[1]=D(e.args[1])),r&&(c.numerator=e.args[0],c.denominator=e.args[1])):(1===o&&(e=D(e,u)),r&&(c.numerator=e,c.denominator=null)),r?(c.coefficients=u,c.variables=i.variables,c.expression=e,c):e}return r(Sh,{Node:C,"Node, boolean":(e,t)=>C(e,{},t),"Node, Object":C,"Node, Object, boolean":C});function T(e,t,r){const n=e.type,i=arguments.length>1;if("OperatorNode"===n&&e.isBinary()){let n,o=!1;if("^"===e.op&&("ParenthesisNode"!==e.args[0].type&&"OperatorNode"!==e.args[0].type||"ConstantNode"!==e.args[1].type||(n=parseFloat(e.args[1].value),o=n>=2&&ye(n))),o){if(n>2){const t=e.args[0],r=new A("^","pow",[e.args[0].cloneDeep(),new v(n-1)]);e=new A("*","multiply",[t,r])}else e=new A("*","multiply",[e.args[0],e.args[0].cloneDeep()]);i&&("content"===r?t.content=e:t.args[r]=e)}}if("ParenthesisNode"===n)T(e.content,e,"content");else if("ConstantNode"!==n&&"SymbolNode"!==n)for(let t=0;t<e.args.length;t++)T(e.args[t],e,t);if(!i)return e}function D(e,t){void 0===t&&(t=[]),t[0]=0;let r=0,n="";!function e(i,o,a){const s=i.type;if("FunctionNode"===s)throw new Error("There is an unsolved function call");if("OperatorNode"===s){if(!"+-*^".includes(i.op))throw new Error("Operator "+i.op+" invalid");if(null!==o){if(("unaryMinus"===i.fn||"pow"===i.fn)&&"add"!==o.fn&&"subtract"!==o.fn&&"multiply"!==o.fn)throw new Error("Invalid "+i.op+" placing");if(("subtract"===i.fn||"add"===i.fn||"multiply"===i.fn)&&"add"!==o.fn&&"subtract"!==o.fn)throw new Error("Invalid "+i.op+" placing");if(("subtract"===i.fn||"add"===i.fn||"unaryMinus"===i.fn)&&0!==a.noFil)throw new Error("Invalid "+i.op+" placing")}"^"!==i.op&&"*"!==i.op||(a.fire=i.op);for(let t=0;t<i.args.length;t++)"unaryMinus"===i.fn&&(a.oper="-"),"+"!==i.op&&"subtract"!==i.fn||(a.fire="",a.cte=1,a.oper=0===t?"+":i.op),a.noFil=t,e(i.args[t],i,a)}else if("SymbolNode"===s){if(i.name!==n&&""!==n)throw new Error("There is more than one variable");if(n=i.name,null===o)return void(t[1]=1);if("^"===o.op&&0!==a.noFil)throw new Error("In power the variable should be the first parameter");if("*"===o.op&&1!==a.noFil)throw new Error("In multiply the variable should be the second parameter");""!==a.fire&&"*"!==a.fire||(r<1&&(t[1]=0),t[1]+=a.cte*("+"===a.oper?1:-1),r=Math.max(1,r))}else{if("ConstantNode"!==s)throw new Error("Type "+s+" is not allowed");{const e=parseFloat(i.value);if(null===o)return void(t[0]=e);if("^"===o.op){if(1!==a.noFil)throw new Error("Constant cannot be powered");if(!ye(e)||e<=0)throw new Error("Non-integer exponent is not allowed");for(let n=r+1;n<e;n++)t[n]=0;return e>r&&(t[e]=0),t[e]+=a.cte*("+"===a.oper?1:-1),void(r=Math.max(e,r))}a.cte=e,""===a.fire&&(t[0]+=a.cte*("+"===a.oper?1:-1))}}}(e,null,{cte:1,oper:"+",fire:""}),r=t.length-1;let i,o=!0;for(let e=r;e>=0;e--){if(0===t[e])continue;let r=new v(o?t[e]:Math.abs(t[e]));const a=t[e]<0?"-":"+";if(e>0){let i=new S(n);if(e>1){const t=new v(e);i=new A("^","pow",[i,t])}r=-1===t[e]&&o?new A("-","unaryMinus",[i]):1===Math.abs(t[e])?i:new A("*","multiply",[r,i])}i=o?r:"+"===a?new A("+","add",[i,r]):new A("-","subtract",[i,r]),o=!1}return o?new v(0):i}})),Ch="zpk2tf",Th=de(Ch,["typed","add","multiply","Complex","number"],(e=>{let{typed:t,add:r,multiply:n,Complex:i,number:o}=e;return t(Ch,{"Array,Array,number":function(e,t,r){return a(e,t,r)},"Array,Array":function(e,t){return a(e,t,1)},"Matrix,Matrix,number":function(e,t,r){return a(e.valueOf(),t.valueOf(),r)},"Matrix,Matrix":function(e,t){return a(e.valueOf(),t.valueOf(),1)}});function a(e,t,r){e.some((e=>"BigNumber"===e.type))&&(e=e.map((e=>o(e)))),t.some((e=>"BigNumber"===e.type))&&(t=t.map((e=>o(e))));let a=[i(1,0)],u=[i(1,0)];for(let t=0;t<e.length;t++){let r=e[t];"number"==typeof r&&(r=i(r,0)),a=s(a,[i(1,0),i(-r.re,-r.im)])}for(let e=0;e<t.length;e++){let r=t[e];"number"==typeof r&&(r=i(r,0)),u=s(u,[i(1,0),i(-r.re,-r.im)])}for(let e=0;e<a.length;e++)a[e]=n(a[e],r);return[a,u]}function s(e,t){const o=[];for(let a=0;a<e.length+t.length-1;a++){o[a]=i(0,0);for(let i=0;i<e.length;i++)a-i>=0&&a-i<t.length&&(o[a]=r(o[a],n(e[i],t[a-i])))}return o}})),Dh="freqz",Fh=de(Dh,["typed","add","multiply","Complex","divide","matrix"],(e=>{let{typed:t,add:r,multiply:n,Complex:i,divide:o,matrix:a}=e;return t(Dh,{"Array, Array":function(e,t){return s(e,t,u(512))},"Array, Array, Array":function(e,t,r){return s(e,t,r)},"Array, Array, number":function(e,t,r){if(r<0)throw new Error("w must be a positive number");return s(e,t,u(r))},"Matrix, Matrix":function(e,t){const r=u(512),{w:n,h:i}=s(e.valueOf(),t.valueOf(),r);return{w:a(n),h:a(i)}},"Matrix, Matrix, Matrix":function(e,t,r){const{h:n}=s(e.valueOf(),t.valueOf(),r.valueOf());return{h:a(n),w:a(r)}},"Matrix, Matrix, number":function(e,t,r){if(r<0)throw new Error("w must be a positive number");const n=u(r),{h:i}=s(e.valueOf(),t.valueOf(),n);return{h:a(i),w:a(n)}}});function s(e,t,a){const s=[],u=[];for(let o=0;o<a.length;o++){let c=i(0,0),l=i(0,0);for(let t=0;t<e.length;t++)c=r(c,n(e[t],i(Math.cos(-t*a[o]),Math.sin(-t*a[o]))));for(let e=0;e<t.length;e++)l=r(l,n(t[e],i(Math.cos(-e*a[o]),Math.sin(-e*a[o]))));s.push(c),u.push(l)}const c=[];for(let e=0;e<s.length;e++)c.push(o(s[e],u[e]));return{h:c,w:a}}function u(e){const t=[];for(let r=0;r<e;r++)t.push(r/e*Math.PI);return t}})),Bh=de("reviver",["classes"],(e=>{let{classes:t}=e;return function(e,r){const n=t[r&&r.mathjs];return n&&"function"==typeof n.fromJSON?n.fromJSON(r):r}})),Oh=de("replacer",[],(()=>function(e,t){return"number"!=typeof t||isFinite(t)&&!isNaN(t)?"bigint"==typeof t?{mathjs:"bigint",value:String(t)}:t:{mathjs:"number",value:String(t)}})),_h=Math.PI,zh=2*Math.PI,Ih=Math.E,kh=de("true",[],(()=>!0)),qh=de("false",[],(()=>!1)),Rh=de("null",[],(()=>null)),Ph=tg("Infinity",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(1/0):1/0})),jh=tg("NaN",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(NaN):NaN})),Uh=tg("pi",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?gl(r):_h})),Lh=tg("tau",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?yl(r):zh})),$h=tg("e",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?dl(r):Ih})),Hh=tg("phi",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?hl(r):1.618033988749895})),Gh=tg("LN2",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(2).ln():Math.LN2})),Zh=tg("LN10",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(10).ln():Math.LN10})),Vh=tg("LOG2E",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(1).div(new r(2).ln()):Math.LOG2E})),Wh=tg("LOG10E",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(1).div(new r(10).ln()):Math.LOG10E})),Yh=tg("SQRT1_2",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r("0.5").sqrt():Math.SQRT1_2})),Jh=tg("SQRT2",["config","?BigNumber"],(e=>{let{config:t,BigNumber:r}=e;return"BigNumber"===t.number?new r(2).sqrt():Math.SQRT2})),Xh=tg("i",["Complex"],(e=>{let{Complex:t}=e;return t.I})),Qh=de("PI",["pi"],(e=>{let{pi:t}=e;return t})),Kh=de("E",["e"],(e=>{let{e:t}=e;return t})),eg=de("version",[],(()=>"13.1.1"));function tg(e,t,r){return de(e,t,r,{recreateOnConfigChange:!0})}const rg=Qg("speedOfLight","299792458","m s^-1"),ng=Qg("gravitationConstant","6.67430e-11","m^3 kg^-1 s^-2"),ig=Qg("planckConstant","6.62607015e-34","J s"),og=Qg("reducedPlanckConstant","1.0545718176461565e-34","J s"),ag=Qg("magneticConstant","1.25663706212e-6","N A^-2"),sg=Qg("electricConstant","8.8541878128e-12","F m^-1"),ug=Qg("vacuumImpedance","376.730313667","ohm"),cg=Qg("coulomb","8.987551792261171e9","N m^2 C^-2"),lg=Qg("elementaryCharge","1.602176634e-19","C"),fg=Qg("bohrMagneton","9.2740100783e-24","J T^-1"),pg=Qg("conductanceQuantum","7.748091729863649e-5","S"),mg=Qg("inverseConductanceQuantum","12906.403729652257","ohm"),dg=Qg("magneticFluxQuantum","2.0678338484619295e-15","Wb"),hg=Qg("nuclearMagneton","5.0507837461e-27","J T^-1"),gg=Qg("klitzing","25812.807459304513","ohm"),yg=Qg("bohrRadius","5.29177210903e-11","m"),xg=Qg("classicalElectronRadius","2.8179403262e-15","m"),bg=Qg("electronMass","9.1093837015e-31","kg"),vg=Qg("fermiCoupling","1.1663787e-5","GeV^-2"),wg=Kg("fineStructure",.0072973525693),Ng=Qg("hartreeEnergy","4.3597447222071e-18","J"),Eg=Qg("protonMass","1.67262192369e-27","kg"),Ag=Qg("deuteronMass","3.3435830926e-27","kg"),Sg=Qg("neutronMass","1.6749271613e-27","kg"),Mg=Qg("quantumOfCirculation","3.6369475516e-4","m^2 s^-1"),Cg=Qg("rydberg","10973731.568160","m^-1"),Tg=Qg("thomsonCrossSection","6.6524587321e-29","m^2"),Dg=Kg("weakMixingAngle",.2229),Fg=Kg("efimovFactor",22.7),Bg=Qg("atomicMass","1.66053906660e-27","kg"),Og=Qg("avogadro","6.02214076e23","mol^-1"),_g=Qg("boltzmann","1.380649e-23","J K^-1"),zg=Qg("faraday","96485.33212331001","C mol^-1"),Ig=Qg("firstRadiation","3.7417718521927573e-16","W m^2"),kg=Qg("loschmidt","2.686780111798444e25","m^-3"),qg=Qg("gasConstant","8.31446261815324","J K^-1 mol^-1"),Rg=Qg("molarPlanckConstant","3.990312712893431e-10","J s mol^-1"),Pg=Qg("molarVolume","0.022413969545014137","m^3 mol^-1"),jg=Kg("sackurTetrode",-1.16487052358),Ug=Qg("secondRadiation","0.014387768775039337","m K"),Lg=Qg("stefanBoltzmann","5.67037441918443e-8","W m^-2 K^-4"),$g=Qg("wienDisplacement","2.897771955e-3","m K"),Hg=Qg("molarMass","0.99999999965e-3","kg mol^-1"),Gg=Qg("molarMassC12","11.9999999958e-3","kg mol^-1"),Zg=Qg("gravity","9.80665","m s^-2"),Vg=Qg("planckLength","1.616255e-35","m"),Wg=Qg("planckMass","2.176435e-8","kg"),Yg=Qg("planckTime","5.391245e-44","s"),Jg=Qg("planckCharge","1.87554603778e-18","C"),Xg=Qg("planckTemperature","1.416785e+32","K");function Qg(e,t,r){return de(e,["config","Unit","BigNumber"],(e=>{let{config:n,Unit:i,BigNumber:o}=e;const a=new i("BigNumber"===n.number?new o(t):parseFloat(t),r);return a.fixPrefix=!0,a}))}function Kg(e,t){return de(e,["config","BigNumber"],(e=>{let{config:r,BigNumber:n}=e;return"BigNumber"===r.number?new n(t):t}))}const ey=de("apply",["typed","isInteger"],(e=>{let{typed:t,isInteger:r}=e;const n=po({typed:t,isInteger:r});return t("apply",{"...any":function(e){const t=e[1];h(t)?e[1]=t-1:g(t)&&(e[1]=t.minus(1));try{return n.apply(null,e)}catch(e){throw fp(e)}}})}),{isTransformFunction:!0}),ty=de("column",["typed","Index","matrix","range"],(e=>{let{typed:t,Index:r,matrix:n,range:i}=e;const o=ds({typed:t,Index:r,matrix:n,range:i});return t("column",{"...any":function(e){const t=e.length-1,r=e[t];h(r)&&(e[t]=r-1);try{return o.apply(null,e)}catch(e){throw fp(e)}}})}),{isTransformFunction:!0});function ry(e,t,r){const n=e.filter((function(e){return ne(e)&&!(e.name in t)&&!r.has(e.name)}))[0];if(!n)throw new Error('No undefined variable found in inline expression "'+e+'"');const i=n.name,o=new Map,a=new f(r,o,new Set([i])),s=e.compile();return function(e){return o.set(i,e),s.evaluate(a)}}const ny=de("filter",["typed"],(e=>{let{typed:t}=e;function r(e,t,r){let i,o;return e[0]&&(i=e[0].compile().evaluate(r)),e[1]&&(o=ne(e[1])||W(e[1])?e[1].compile().evaluate(r):ry(e[1],t,r)),n(i,o)}r.rawArgs=!0;const n=t("filter",{"Array, function":iy,"Matrix, function":function(e,t){return e.create(iy(e.toArray(),t),e.datatype())},"Array, RegExp":Cn,"Matrix, RegExp":function(e,t){return e.create(Cn(e.toArray(),t),e.datatype())}});return r}),{isTransformFunction:!0});function iy(e,t){return Mn(e,(function(e,r,n){return Rn(t,e,[r+1],n,"filter")}))}const oy=de("forEach",["typed"],(e=>{let{typed:t}=e;function r(e,t,r){let i,o;return e[0]&&(i=e[0].compile().evaluate(r)),e[1]&&(o=ne(e[1])||W(e[1])?e[1].compile().evaluate(r):ry(e[1],t,r)),n(i,o)}r.rawArgs=!0;const n=t("forEach",{"Array | Matrix, function":function(e,t){const r=function(n,i){if(!Array.isArray(n))return Rn(t,n,i,e,"forEach");Sn(n,(function(e,t){r(e,i.concat(t+1))}))};r(e.valueOf(),[])}});return r}),{isTransformFunction:!0}),ay=de("index",["Index","getMatrixDataType"],(e=>{let{Index:t,getMatrixDataType:r}=e;return function(){const e=[];for(let t=0,n=arguments.length;t<n;t++){let n=arguments[t];if(C(n))n.start--,n.end-=n.step>0?0:2;else if(n&&!0===n.isSet)n=n.map((function(e){return e-1}));else if(N(n)||E(n))"boolean"!==r(n)&&(n=n.map((function(e){return e-1})));else if(h(n))n--;else if(g(n))n=n.toNumber()-1;else if("string"!=typeof n)throw new TypeError("Dimension must be an Array, Matrix, number, string, or Range");e[t]=n}const n=new t;return t.apply(n,e),n}}),{isTransformFunction:!0});r(3921);const sy=de("map",["typed"],(e=>{let{typed:t}=e;const r=zs({typed:t});function n(e,n,o){if(0===e.length)return r();if(1===e.length)return r(e[0]);const a=e.length-1;let s,u;return u=e[a],s=e.slice(0,a),s=s.map((e=>c(e,o))),u&&(u=ne(u)||W(u)?c(u,o):ry(u,n,o)),r(...s,function(e,r){return t.isTypedFunction(e)?i(e,r):uy(e,e.length,r)}(u,a));function c(e,t){return e.compile().evaluate(t)}}return n.rawArgs=!0,n;function i(e,r){const n=Object.fromEntries(Object.entries(e.signatures).map((e=>{let[n,o]=e;const a=n.split(",").length;return t.isTypedFunction(o)?[n,i(o,r)]:[n,uy(o,a,r)]})));return"string"==typeof e.name?t(e.name,n):t(n)}}),{isTransformFunction:!0});function uy(e,t,r){return t===r?e:t===r+1?function(){for(var t=arguments.length,n=new Array(t),i=0;i<t;i++)n[i]=arguments[i];const o=n.slice(0,r),a=cy(n[r]);return e(...o,a)}:t>r+1?function(){for(var t=arguments.length,n=new Array(t),i=0;i<t;i++)n[i]=arguments[i];const o=n.slice(0,r),a=cy(n[r]),s=n.slice(r+1);return e(...o,a,...s)}:e}function cy(e){return e.map((e=>e.isBigNumber?e.plus(1):e+1))}function ly(e){if(2===e.length&&A(e[0])){const r=(e=e.slice())[1];(h(t=r)||g(t))&&(e[1]=function(e){return h(e)?e-1:g(e)?e.minus(1):e}(r))}var t;return e}const fy=de("max",["typed","config","numeric","larger"],(e=>{let{typed:t,config:r,numeric:n,larger:i}=e;const o=ol({typed:t,config:r,numeric:n,larger:i});return t("max",{"...any":function(e){e=ly(e);try{return o.apply(null,e)}catch(e){throw fp(e)}}})}),{isTransformFunction:!0}),py=de("mean",["typed","add","divide"],(e=>{let{typed:t,add:r,divide:n}=e;const i=ud({typed:t,add:r,divide:n});return t("mean",{"...any":function(e){e=ly(e);try{return i.apply(null,e)}catch(e){throw fp(e)}}})}),{isTransformFunction:!0}),my=de("min",["typed","config","numeric","smaller"],(e=>{let{typed:t,config:r,numeric:n,smaller:i}=e;const o=al({typed:t,config:r,numeric:n,smaller:i});return t("min",{"...any":function(e){e=ly(e);try{return o.apply(null,e)}catch(e){throw fp(e)}}})}),{isTransformFunction:!0}),dy=de("range",["typed","config","?matrix","?bignumber","smaller","smallerEq","larger","largerEq","add","isPositive"],(e=>{let{typed:t,config:r,matrix:n,bignumber:i,smaller:o,smallerEq:a,larger:s,largerEq:u,add:c,isPositive:l}=e;const f=Hs({typed:t,config:r,matrix:n,bignumber:i,smaller:o,smallerEq:a,larger:s,largerEq:u,add:c,isPositive:l});return t("range",{"...any":function(e){return"boolean"!=typeof e[e.length-1]&&e.push(!0),f.apply(null,e)}})}),{isTransformFunction:!0}),hy=de("row",["typed","Index","matrix","range"],(e=>{let{typed:t,Index:r,matrix:n,range:i}=e;const o=Qs({typed:t,Index:r,matrix:n,range:i});return t("row",{"...any":function(e){const t=e.length-1,r=e[t];h(r)&&(e[t]=r-1);try{return o.apply(null,e)}catch(e){throw fp(e)}}})}),{isTransformFunction:!0}),gy=de("subset",["typed","matrix","zeros","add"],(e=>{let{typed:t,matrix:r,zeros:n,add:i}=e;const o=iu({typed:t,matrix:r,zeros:n,add:i});return t("subset",{"...any":function(e){try{return o.apply(null,e)}catch(e){throw fp(e)}}})}),{isTransformFunction:!0}),yy=de("concat",["typed","matrix","isInteger"],(e=>{let{typed:t,matrix:r,isInteger:n}=e;const i=ps({typed:t,matrix:r,isInteger:n});return t("concat",{"...any":function(e){const t=e.length-1,r=e[t];h(r)?e[t]=r-1:g(r)&&(e[t]=r.minus(1));try{return i.apply(null,e)}catch(e){throw fp(e)}}})}),{isTransformFunction:!0}),xy="diff",by=de(xy,["typed","matrix","subtract","number","bignumber"],(e=>{let{typed:t,matrix:r,subtract:n,number:i,bignumber:o}=e;const a=Rs({typed:t,matrix:r,subtract:n,number:i,bignumber:o});return t(xy,{"...any":function(e){e=ly(e);try{return a.apply(null,e)}catch(e){throw fp(e)}}})}),{isTransformFunction:!0}),vy=de("std",["typed","map","sqrt","variance"],(e=>{let{typed:t,map:r,sqrt:n,variance:i}=e;const o=yd({typed:t,map:r,sqrt:n,variance:i});return t("std",{"...any":function(e){e=ly(e);try{return o.apply(null,e)}catch(e){throw fp(e)}}})}),{isTransformFunction:!0}),wy=de("sum",["typed","config","add","numeric"],(e=>{let{typed:t,config:r,add:n,numeric:i}=e;const o=id({typed:t,config:r,add:n,numeric:i});return t("sum",{"...any":function(e){e=ly(e);try{return o.apply(null,e)}catch(e){throw fp(e)}}})}),{isTransformFunction:!0}),Ny=de("quantileSeq",["typed","bignumber","add","subtract","divide","multiply","partitionSelect","compare","isInteger","smaller","smallerEq","larger"],(e=>{let{typed:t,bignumber:r,add:n,subtract:i,divide:o,multiply:a,partitionSelect:s,compare:u,isInteger:c,smaller:l,smallerEq:f,larger:p}=e;const m=gd({typed:t,bignumber:r,add:n,subtract:i,divide:o,multiply:a,partitionSelect:s,compare:u,isInteger:c,smaller:l,smallerEq:f,larger:p});return t("quantileSeq",{"Array | Matrix, number | BigNumber":m,"Array | Matrix, number | BigNumber, number":(e,t,r)=>m(e,t,d(r)),"Array | Matrix, number | BigNumber, boolean":m,"Array | Matrix, number | BigNumber, boolean, number":(e,t,r,n)=>m(e,t,r,d(n)),"Array | Matrix, Array | Matrix":m,"Array | Matrix, Array | Matrix, number":(e,t,r)=>m(e,t,d(r)),"Array | Matrix, Array | Matrix, boolean":m,"Array | Matrix, Array | Matrix, boolean, number":(e,t,r,n)=>m(e,t,r,d(n))});function d(e){return ly([[],e])[1]}}),{isTransformFunction:!0}),Ey="cumsum",Ay=de(Ey,["typed","add","unaryPlus"],(e=>{let{typed:t,add:r,unaryPlus:n}=e;const i=ad({typed:t,add:r,unaryPlus:n});return t(Ey,{"...any":function(e){if(2===e.length&&A(e[0])){const t=e[1];h(t)?e[1]=t-1:g(t)&&(e[1]=t.minus(1))}try{return i.apply(null,e)}catch(e){throw fp(e)}}})}),{isTransformFunction:!0}),Sy="variance",My=de(Sy,["typed","add","subtract","multiply","divide","apply","isNaN"],(e=>{let{typed:t,add:r,subtract:n,multiply:i,divide:o,apply:a,isNaN:s}=e;const u=dd({typed:t,add:r,subtract:n,multiply:i,divide:o,apply:a,isNaN:s});return t(Sy,{"...any":function(e){e=ly(e);try{return u.apply(null,e)}catch(e){throw fp(e)}}})}),{isTransformFunction:!0}),Cy="print",Ty=de(Cy,["typed","matrix","zeros","add"],(e=>{let{typed:t,matrix:r,zeros:n,add:i}=e;const o=Pu({typed:t,matrix:r,zeros:n,add:i});return t(Cy,{"string, Object | Array":function(e,t){return o(a(e),t)},"string, Object | Array, number | Object":function(e,t,r){return o(a(e),t,r)}});function a(e){return e.replace(qu,(e=>"$"+e.slice(1).split(".").map((function(e){return!isNaN(e)&&e.length>0?parseInt(e)-1:e})).join(".")))}}),{isTransformFunction:!0}),Dy=de("and",["typed","matrix","zeros","add","equalScalar","not","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,zeros:i,not:o,concat:a}=e;const s=Ec({typed:t,matrix:r,equalScalar:n,zeros:i,not:o,concat:a});function u(e,t,r){const n=e[0].compile().evaluate(r);if(!A(n)&&!s(n,!0))return!1;const i=e[1].compile().evaluate(r);return s(n,i)}return u.rawArgs=!0,u}),{isTransformFunction:!0}),Fy=de("or",["typed","matrix","equalScalar","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o}=e;const a=cs({typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o});function s(e,t,r){const n=e[0].compile().evaluate(r);if(!A(n)&&a(n,!1))return!0;const i=e[1].compile().evaluate(r);return a(n,i)}return s.rawArgs=!0,s}),{isTransformFunction:!0}),By=de("bitAnd",["typed","matrix","zeros","add","equalScalar","not","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,zeros:i,not:o,concat:a}=e;const s=Ha({typed:t,matrix:r,equalScalar:n,zeros:i,not:o,concat:a});function u(e,t,r){const n=e[0].compile().evaluate(r);if(!A(n)){if(isNaN(n))return NaN;if(0===n||!1===n)return 0}const i=e[1].compile().evaluate(r);return s(n,i)}return u.rawArgs=!0,u}),{isTransformFunction:!0}),Oy=de("bitOr",["typed","matrix","equalScalar","DenseMatrix","concat"],(e=>{let{typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o}=e;const a=Wa({typed:t,matrix:r,equalScalar:n,DenseMatrix:i,concat:o});function s(e,t,r){const n=e[0].compile().evaluate(r);if(!A(n)){if(isNaN(n))return NaN;if(-1===n)return-1;if(!0===n)return 1}const i=e[1].compile().evaluate(r);return a(n,i)}return s.rawArgs=!0,s}),{isTransformFunction:!0});var _y=r(1504);const zy={relTol:1e-12,absTol:1e-15,matrix:"Matrix",number:"number",numberFallback:"number",precision:64,predictable:!1,randomSeed:null},Iy=["Matrix","Array"],ky=["number","BigNumber","Fraction"];function qy(e,t){function r(n){if(n){if(void 0!==n.epsilon){console.warn('Warning: The configuration option "epsilon" is deprecated. Use "relTol" and "absTol" instead.');const e=ae(n);return e.relTol=n.epsilon,e.absTol=.001*n.epsilon,delete e.epsilon,r(e)}const i=ae(e);Ry(n,"matrix",Iy),Ry(n,"number",ky),ue(e,n);const o=ae(e),a=ae(n);return t("config",o,i,a),o}return ae(e)}return r.MATRIX_OPTIONS=Iy,r.NUMBER_OPTIONS=ky,Object.keys(zy).forEach((t=>{Object.defineProperty(r,t,{get:()=>e[t],enumerable:!0,configurable:!0})})),r}function Ry(e,t,r){void 0===e[t]||r.includes(e[t])||console.warn('Warning: Unknown value "'+e[t]+'" for configuration option "'+t+'". Available options: '+r.map((e=>JSON.stringify(e))).join(", ")+".")}const Py=function e(r,n){const i=Wr({},zy,n);if("function"!=typeof Object.create)throw new Error("ES5 not supported by this JavaScript engine. Please load the es5-shim and es5-sham library for compatibility.");const o=function(e){const t=new _y;return e.on=t.on.bind(t),e.off=t.off.bind(t),e.once=t.once.bind(t),e.emit=t.emit.bind(t),e}({isNumber:h,isComplex:x,isBigNumber:g,isBigInt:y,isFraction:b,isUnit:v,isString:w,isArray:N,isMatrix:E,isCollection:A,isDenseMatrix:S,isSparseMatrix:M,isRange:C,isIndex:T,isBoolean:D,isResultSet:F,isHelp:B,isFunction:O,isDate:_,isRegExp:z,isObject:I,isMap:k,isPartitionedMap:q,isObjectWrappingMap:R,isNull:P,isUndefined:j,isAccessorNode:U,isArrayNode:L,isAssignmentNode:$,isBlockNode:H,isConditionalNode:G,isConstantNode:Z,isFunctionAssignmentNode:W,isFunctionNode:Y,isIndexNode:J,isNode:X,isObjectNode:Q,isOperatorNode:K,isParenthesisNode:ee,isRangeNode:te,isRelationalNode:re,isSymbolNode:ne,isChain:ie});o.config=qy(i,o.emit),o.expression={transform:{},mathWithTransform:{config:o.config}};const a={};function s(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return o.typed.apply(o.typed,t)}s.isTypedFunction=t.isTypedFunction;const u=function(e,t,r,n){function i(t,i,a){var s;if(a.wrap&&"function"==typeof i&&(i=function(e){const t=function(){const t=[];for(let e=0,r=arguments.length;e<r;e++){const r=arguments[e];t[e]=r&&r.valueOf()}return e.apply(r,t)};return e.transform&&(t.transform=e.transform),t}(i)),"function"==typeof(s=i)&&"string"==typeof s.signature&&(i=e(t,{[i.signature]:i})),e.isTypedFunction(r[t])&&e.isTypedFunction(i))return i=a.override?e(t,i.signatures):e(r[t],i),r[t]=i,delete n[t],o(t,i),void r.emit("import",t,(function(){return i}));if(void 0===r[t]||a.override)return r[t]=i,delete n[t],o(t,i),void r.emit("import",t,(function(){return i}));if(!a.silent)throw new Error('Cannot import "'+t+'": already exists')}function o(e,t){t&&"function"==typeof t.transform?(r.expression.transform[e]=t.transform,u(e)&&(r.expression.mathWithTransform[e]=t.transform)):(delete r.expression.transform[e],u(e)&&(r.expression.mathWithTransform[e]=t))}function a(e){delete r.expression.transform[e],u(e)?r.expression.mathWithTransform[e]=r[e]:delete r.expression.mathWithTransform[e]}function s(t,i){let o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t.fn;if(o.includes("."))throw new Error("Factory name should not contain a nested path. Name: "+JSON.stringify(o));const s=l(t)?r.expression.transform:r,u=o in r.expression.transform,f=me(s,o)?s[o]:void 0,p=function(){const n={};t.dependencies.map(ge).forEach((e=>{if(e.includes("."))throw new Error("Factory dependency should not contain a nested path. Name: "+JSON.stringify(e));"math"===e?n.math=r:"mathWithTransform"===e?n.mathWithTransform=r.expression.mathWithTransform:"classes"===e?n.classes=r:n[e]=r[e]}));const a=t(n);if(a&&"function"==typeof a.transform)throw new Error('Transforms cannot be attached to factory functions. Please create a separate function for it with export const path = "expression.transform"');if(void 0===f||i.override)return a;if(e.isTypedFunction(f)&&e.isTypedFunction(a))return e(f,a);if(i.silent)return f;throw new Error('Cannot import "'+o+'": already exists')};t.meta&&!1===t.meta.lazy?(s[o]=p(),f&&u?a(o):(l(t)||c(t))&&pe(r.expression.mathWithTransform,o,(()=>s[o]))):(pe(s,o,p),f&&u?a(o):(l(t)||c(t))&&pe(r.expression.mathWithTransform,o,(()=>s[o]))),n[o]=t,r.emit("import",o,p)}function u(e){return!me(f,e)}function c(e){return!(e.fn.includes(".")||me(f,e.fn)||e.meta&&e.meta.isClass)}function l(e){return void 0!==e&&void 0!==e.meta&&!0===e.meta.isTransformFunction||!1}const f={expression:!0,type:!0,docs:!0,error:!0,json:!0,chain:!0};return function(e,t){const r=arguments.length;if(1!==r&&2!==r)throw new Xo("import",r,1,2);t||(t={});const n={};!function e(r,n,i){if(Array.isArray(n))n.forEach((t=>e(r,t)));else if("object"==typeof n)for(const t in n)me(n,t)&&e(r,n[t],t);else if(he(n)||void 0!==i){const e=he(n)?l(n)?n.fn+".transform":n.fn:i;if(me(r,e)&&r[e]!==n&&!t.silent)throw new Error('Cannot import "'+e+'" twice');r[e]=n}else if(!t.silent)throw new TypeError("Factory, Object, or Array expected")}(n,e);for(const e in n)if(me(n,e)){const r=n[e];if(he(r))s(r,t);else if("function"==typeof(o=r)||"number"==typeof o||"string"==typeof o||"boolean"==typeof o||null===o||v(o)||x(o)||g(o)||b(o)||E(o)||Array.isArray(o))i(e,r,t);else if(!t.silent)throw new TypeError("Factory, Object, or Array expected")}var o}}(s,0,o,a);return o.import=u,o.on("config",(()=>{Object.values(a).forEach((e=>{e&&e.meta&&e.meta.recreateOnConfigChange&&u(e,{override:!0})}))})),o.create=e.bind(null,r),o.factory=de,o.import(Object.values(le(r))),o.ArgumentsError=Xo,o.DimensionError=an,o.IndexError=sn,o}(e)})(),n.default})()));
3
3
  //# sourceMappingURL=math.js.map