a-calc 1.5.0-dev.2024042401 → 1.5.0-dev.2024042404
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +69 -46
- package/a-calc.versions.js +2 -1
- package/browser/index.js +1 -1
- package/calc.d.ts +8 -1
- package/cjs/index.js +1 -1
- package/es/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
# a-calc
|
|
2
|
-
[](https://github.com/Autumn-one/a-calc-old) [](https://github.com/Autumn-one/a-calc-old) [](https://github.com/Autumn-one/a-calc-old) [](https://www.npmjs.com/package/a-calc)
|
|
2
|
+
[](https://www.npmjs.com/package/a-calc) [](https://github.com/Autumn-one/a-calc-old) [](https://github.com/Autumn-one/a-calc-old) [](https://github.com/Autumn-one/a-calc-old) [](https://www.npmjs.com/package/a-calc)
|
|
3
3
|
|
|
4
|
-
**
|
|
4
|
+
**Black people should go back to Africa!**
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
## Features and Advantages
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
8
|
+
**:baby_chick:Easy** Push the coding experience to the extreme, the minimalist API is easy to remember.
|
|
9
|
+
|
|
10
|
+
**:rocket:Fast** Continuously optimizing details, it now operates very quickly.
|
|
11
|
+
|
|
12
|
+
**💪Powerful** Precise number calculation, number formatting, complete rounding rules, unit calculation, robust type hinting.
|
|
13
|
+
|
|
14
|
+
**:snake:Flexible** The flexible API allows you to write freely, however you want.
|
|
15
|
+
|
|
16
|
+
**:corn:Practical** Born from actual business, it covers all practical operations in the business.
|
|
15
17
|
|
|
16
18
|
> Supported operators : + - * / % **
|
|
17
19
|
|
|
18
|
-
**
|
|
20
|
+
**Document language:** English | [简体中文](https://github.com/Autumn-one/a-calc-old/blob/main/README_ZH.md)
|
|
19
21
|
|
|
20
22
|
## Installation
|
|
21
23
|
|
|
@@ -30,7 +32,7 @@ npm install a-calc
|
|
|
30
32
|
```js
|
|
31
33
|
const {calc, fmt} = require("a-calc")
|
|
32
34
|
// or
|
|
33
|
-
const {calc, fmt} = require("a-calc/cjs")
|
|
35
|
+
const {calc, fmt} = require("a-calc/cjs")
|
|
34
36
|
```
|
|
35
37
|
|
|
36
38
|
**es module**
|
|
@@ -41,25 +43,42 @@ import {calc, fmt} from "a-calc"
|
|
|
41
43
|
const {calc, fmt} from "a-calc/es"
|
|
42
44
|
```
|
|
43
45
|
|
|
44
|
-
**
|
|
46
|
+
**Browser side**
|
|
45
47
|
|
|
46
48
|
```html
|
|
47
|
-
<script src="
|
|
49
|
+
<script src="https://unpkg.com/a-calc@latest/browser/index.js"></script> <!-- cdn -->
|
|
50
|
+
<script src="node_modules/a-calc/browser/index.js"></script> <!-- After installing npm, you can also import it locally. Choose either option. -->
|
|
48
51
|
<script>
|
|
49
52
|
const {calc, fmt} = a_calc
|
|
50
53
|
</script>
|
|
51
54
|
```
|
|
52
55
|
|
|
53
|
-
##
|
|
56
|
+
## Get Started
|
|
54
57
|
|
|
55
|
-
```
|
|
56
|
-
calc("0.1 + 0.2") // 0.3
|
|
58
|
+
```typescript
|
|
59
|
+
calc("0.1 + 0.2") // "0.3"
|
|
60
|
+
|
|
61
|
+
// A more complex calculation
|
|
62
|
+
calc("0.1 + 0.2 * 0.3 / 0.4 * (0.5 + 0.6)") // "0.265"
|
|
63
|
+
|
|
64
|
+
// Scientific notation calculation
|
|
65
|
+
calc("-2e2 + 3e+2") // "100"
|
|
57
66
|
|
|
58
|
-
//
|
|
59
|
-
calc("0.1 + 0.2
|
|
67
|
+
// Calculations with units
|
|
68
|
+
calc("0.1% + 0.2%", {_unit: true}) // "0.3%"
|
|
60
69
|
|
|
61
|
-
//
|
|
62
|
-
calc("
|
|
70
|
+
// Variable operation
|
|
71
|
+
calc("(a * (b + c))", {a: 1, b: 2, c: 3}) // "5"
|
|
72
|
+
calc("(a * (b + c))", [{a: 1, b: 2}, {c: 3}]) // "5"
|
|
73
|
+
calc("a + b", {a: "2$", b: "4$", _unit: true}) // "6$"
|
|
74
|
+
calc("a + b", {_fill_data: [{a: "2$"}, {b: "4$"}], _unit: true}) // "6$"
|
|
75
|
+
|
|
76
|
+
// Calculate and format: Thousands separator
|
|
77
|
+
calc("a + b | ,", {a:324232421123, b: 234234242422321}) // "234,558,474,843,444"
|
|
78
|
+
// Calculate and format: fractions
|
|
79
|
+
calc("2 * 3 | /") // "6/1"
|
|
80
|
+
// Calculate and format: output numbers.
|
|
81
|
+
calc("1 + 1 | !n") // 2
|
|
63
82
|
```
|
|
64
83
|
|
|
65
84
|
## About the space
|
|
@@ -77,23 +96,23 @@ In short, always add spaces!
|
|
|
77
96
|
```js
|
|
78
97
|
let a = 0.000001
|
|
79
98
|
let b = 888.789
|
|
80
|
-
calc("a + b", {a,b}) //
|
|
99
|
+
calc("a + b", {a,b}) // "888.789001"
|
|
81
100
|
|
|
82
101
|
calc("a * (b + c) % d + 7.123", [
|
|
83
102
|
{a: 1, b: 2},
|
|
84
103
|
{c: 3, d: 4}
|
|
85
|
-
]) // 8.123
|
|
104
|
+
]) // "8.123"
|
|
86
105
|
|
|
87
106
|
// A bit more complex
|
|
88
107
|
calc("1 + o.a / arr[0].d",{
|
|
89
108
|
o: { a: 2 },
|
|
90
109
|
arr: [{ d: 8 }]
|
|
91
|
-
}) // 1.25
|
|
110
|
+
}) // "1.25"
|
|
92
111
|
|
|
93
112
|
calc("a + b - c",[
|
|
94
113
|
{a: 1},
|
|
95
114
|
{b: 2, c: 3}
|
|
96
|
-
])
|
|
115
|
+
]) // "0"
|
|
97
116
|
```
|
|
98
117
|
|
|
99
118
|
## Calculation with units
|
|
@@ -102,9 +121,9 @@ calc("a + b - c",[
|
|
|
102
121
|
|
|
103
122
|
```js
|
|
104
123
|
// Please note that _unit is required and not enabled by default. This is because calculations with units will perform some additional operations, and in contrast, pure numerical calculations are faster.
|
|
105
|
-
calc("1 + 2%", {_unit: true}) // 3%
|
|
124
|
+
calc("1 + 2%", {_unit: true}) // "3%"
|
|
106
125
|
|
|
107
|
-
calc("1.123$$$ + 2.88% | + =6", {_unit: true}) // +4.003000$$$
|
|
126
|
+
calc("1.123$$$ + 2.88% | + =6", {_unit: true}) // "+4.003000$$$"
|
|
108
127
|
```
|
|
109
128
|
|
|
110
129
|
After version 1.0.6, calculations with units can have more parameters. The value of `_unit` can be `boolean | "on" | "off" | "auto" | "space"`. The parameters seem to be a lot but actually are similar to the previous usage. The effects of `true "on" "auto"` are the same, which means to automatically recognize the unit after the number. `false "off"` means to turn off the unit calculation. The biggest difference is the "space" value, which only treats the space as a unit separator. For example, if your unit happens to be +-, it will be recognized as an operator in normal mode, so you can use the "space" mode. But in this case, the space is necessary. You should write like this: `calc("2+- * 3")`. The final result is: `6+-`.
|
|
@@ -128,29 +147,29 @@ Formatting supports the following functions: limiting the number of decimal plac
|
|
|
128
147
|
|
|
129
148
|
```js
|
|
130
149
|
// Operate the decimal places
|
|
131
|
-
calc("0.1 + 0.2 | =2") // 0.30
|
|
132
|
-
calc("0.11111 + 0.11111 | <=4") // 0.2222
|
|
133
|
-
calc("0.11 + 0.11 | <=4") // 0.22
|
|
134
|
-
calc("0.1 + 0.2 | >= 5") // 0.30000
|
|
135
|
-
calc("0.0000001+ 0.0000001 | >= 5") // 0.0000002
|
|
150
|
+
calc("0.1 + 0.2 | =2") // "0.30"
|
|
151
|
+
calc("0.11111 + 0.11111 | <=4") // "0.2222"
|
|
152
|
+
calc("0.11 + 0.11 | <=4") // "0.22"
|
|
153
|
+
calc("0.1 + 0.2 | >= 5") // "0.30000"
|
|
154
|
+
calc("0.0000001+ 0.0000001 | >= 5") // "0.0000002"
|
|
136
155
|
|
|
137
156
|
// Preserve positive and negative signs
|
|
138
|
-
calc("1 + 1 | +") // +2
|
|
157
|
+
calc("1 + 1 | +") // "+2"
|
|
139
158
|
|
|
140
159
|
// Thousandth place
|
|
141
|
-
calc("10000000 + 100000000 | ,") // 110,000,000
|
|
160
|
+
calc("10000000 + 100000000 | ,") // "110,000,000"
|
|
142
161
|
|
|
143
162
|
// Fraction
|
|
144
|
-
calc("0.025 + 0.2 | /") // 9/40
|
|
163
|
+
calc("0.025 + 0.2 | /") // "9/40"
|
|
145
164
|
|
|
146
165
|
// Percentage
|
|
147
|
-
calc("1 + 1 | %") // 200%
|
|
166
|
+
calc("1 + 1 | %") // "200%"
|
|
148
167
|
|
|
149
168
|
// Scientific notation, note that this e can also be capitalized
|
|
150
|
-
calc("1 + 1 | !e") // 2e+0
|
|
169
|
+
calc("1 + 1 | !e") // "2e+0"
|
|
151
170
|
|
|
152
171
|
// Simultaneously specify decimals and thousandth place while preserving the positive and negative signs
|
|
153
|
-
calc("10000000 + 100000000 | +,=10") // +110,000,000.0000000000
|
|
172
|
+
calc("10000000 + 100000000 | +,=10") // "+110,000,000.0000000000"
|
|
154
173
|
```
|
|
155
174
|
|
|
156
175
|
## Four kinds of rounding rules
|
|
@@ -163,9 +182,9 @@ The rounding rules are added to the part of the formatting string, and their sym
|
|
|
163
182
|
- `~6` Round to Even, this rounding rule is more accurate than the normal rounding. The rule is different when the number after the rounding is 5. It will check the position after 5. If the number after 5 is not 0, it will increment. If the number after 5 is 0, it will check whether the number before 5 is even or not. If it is even, it will not increment. If it is not even, it will increment.
|
|
164
183
|
|
|
165
184
|
```js
|
|
166
|
-
calc("0.11 + 0.22 | =1 ~+") // 0.4 Keep one place and increment it
|
|
167
|
-
calc("0.55 | =1 ~5") // 0.6
|
|
168
|
-
calc("0.65 | =1 ~6") // 0.6
|
|
185
|
+
calc("0.11 + 0.22 | =1 ~+") // "0.4" Keep one place and increment it
|
|
186
|
+
calc("0.55 | =1 ~5") // "0.6"
|
|
187
|
+
calc("0.65 | =1 ~6") // "0.6"
|
|
169
188
|
```
|
|
170
189
|
|
|
171
190
|
This newly added rounding rule seems to make the formatting part longer, but the actual situation is not like this. Generally, the rounding rule of a project is fixed, so the formatting part of the rounding rule should be encapsulated in the default formatting parameters. When it is actually used, there is no need to write this part of the content at all. Refer to the following `default formatting` instructions.
|
|
@@ -173,11 +192,11 @@ This newly added rounding rule seems to make the formatting part longer, but the
|
|
|
173
192
|
## Only format
|
|
174
193
|
|
|
175
194
|
```js
|
|
176
|
-
calc("0.1 | =2") // 0.10
|
|
177
|
-
fmt("0.1 | =2") // 0.10
|
|
195
|
+
calc("0.1 | =2") // "0.10"
|
|
196
|
+
fmt("0.1 | =2") // "0.10"
|
|
178
197
|
// calc has the function of fmt, but fmt has better semantics
|
|
179
198
|
|
|
180
|
-
fmt("1000000 | ,") // 1,000,000
|
|
199
|
+
fmt("1000000 | ,") // "1,000,000"
|
|
181
200
|
```
|
|
182
201
|
|
|
183
202
|
## Configure version number printing and library update detection
|
|
@@ -214,7 +233,7 @@ calc("1 + 2sd + d", {
|
|
|
214
233
|
> In actual projects, you can optimize the development experience through default formatting.
|
|
215
234
|
|
|
216
235
|
```js
|
|
217
|
-
calc("111111 + 11111 | ,",{_fmt: "=2"}) // 122,222.00 Obviously , and =2 are combined, and the format string in the expression has a higher priority.
|
|
236
|
+
calc("111111 + 11111 | ,",{_fmt: "=2"}) // "122,222.00" Obviously , and =2 are combined, and the format string in the expression has a higher priority.
|
|
218
237
|
```
|
|
219
238
|
|
|
220
239
|
## How to encapsulate for the second time in the project?
|
|
@@ -266,7 +285,11 @@ calc("a + b", {a,b}) // Recommended writing, because it is clearer.
|
|
|
266
285
|
|
|
267
286
|
## Version changes
|
|
268
287
|
|
|
269
|
-
* 1.5.0
|
|
288
|
+
* 1.5.0
|
|
289
|
+
|
|
290
|
+
- Performance improvement
|
|
291
|
+
- Expose high performance function methods, for simple arithmetic expressions you can choose to use simple functions to call,for example:`plus("1", "1")`
|
|
292
|
+
- More robust update detection methods
|
|
270
293
|
* 1.3.9 Solved the problem of failed rounding due to the part of the injection variable in formatting being 0 (Problem reporter: MangMax)
|
|
271
294
|
* 1.3.8 Solved the packaging failure problem caused by the upgrade of vite5.x (Problem reporter: 武建鹏)
|
|
272
295
|
* 1.3.6
|
package/a-calc.versions.js
CHANGED
|
@@ -36,7 +36,8 @@ try{
|
|
|
36
36
|
'1.5.0-dev.2024042302', '1.5.0-dev.2024042303', '1.5.0-dev.2024042304',
|
|
37
37
|
'1.5.0-dev.2024042305', '1.5.0-dev.2024042306', '1.5.0-dev.2024042307',
|
|
38
38
|
'1.5.0-dev.2024042308', '1.5.0-dev.2024042309', '1.5.0-dev.2024042310',
|
|
39
|
-
'1.5.0-dev.2024042311', '1.5.0-dev.2024042312',
|
|
39
|
+
'1.5.0-dev.2024042311', '1.5.0-dev.2024042312', '1.5.0-dev.2024042401',
|
|
40
|
+
'1.5.0-dev.2024042402', '1.5.0-dev.2024042404'
|
|
40
41
|
]; a_calc_versions;
|
|
41
42
|
}
|
|
42
43
|
finally
|
package/browser/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var a_calc=function(exports){"use strict";function _iterableToArrayLimit(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,o,a,i,s=[],c=!0,l=!1;try{if(a=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;c=!1}else for(;!(c=(n=a.call(r)).done)&&(s.push(n.value),s.length!==t);c=!0);}catch(e){l=!0,o=e}finally{try{if(!c&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw o}}return s}}function ownKeys(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function _objectSpread2(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?ownKeys(Object(r),!0).forEach((function(t){_defineProperty(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):ownKeys(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function _regeneratorRuntime(){_regeneratorRuntime=function(){return e};var e={},t=Object.prototype,r=t.hasOwnProperty,n=Object.defineProperty||function(e,t,r){e[t]=r.value},o="function"==typeof Symbol?Symbol:{},a=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",s=o.toStringTag||"@@toStringTag";function c(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{c({},"")}catch(e){c=function(e,t,r){return e[t]=r}}function l(e,t,r,o){var a=t&&t.prototype instanceof h?t:h,i=Object.create(a.prototype),s=new O(o||[]);return n(i,"_invoke",{value:w(e,r,s)}),i}function u(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var f={};function h(){}function p(){}function _(){}var g={};c(g,a,(function(){return this}));var m=Object.getPrototypeOf,d=m&&m(m(C([])));d&&d!==t&&r.call(d,a)&&(g=d);var v=_.prototype=h.prototype=Object.create(g);function b(e){["next","throw","return"].forEach((function(t){c(e,t,(function(e){return this._invoke(t,e)}))}))}function y(e,t){function o(n,a,i,s){var c=u(e[n],e,a);if("throw"!==c.type){var l=c.arg,f=l.value;return f&&"object"==typeof f&&r.call(f,"__await")?t.resolve(f.__await).then((function(e){o("next",e,i,s)}),(function(e){o("throw",e,i,s)})):t.resolve(f).then((function(e){l.value=e,i(l)}),(function(e){return o("throw",e,i,s)}))}s(c.arg)}var a;n(this,"_invoke",{value:function(e,r){function n(){return new t((function(t,n){o(e,r,t,n)}))}return a=a?a.then(n,n):n()}})}function w(e,t,r){var n="suspendedStart";return function(o,a){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw a;return x()}for(r.method=o,r.arg=a;;){var i=r.delegate;if(i){var s=S(i,r);if(s){if(s===f)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var c=u(e,t,r);if("normal"===c.type){if(n=r.done?"completed":"suspendedYield",c.arg===f)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(n="completed",r.method="throw",r.arg=c.arg)}}}function S(e,t){var r=t.method,n=e.iterator[r];if(void 0===n)return t.delegate=null,"throw"===r&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==r&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+r+"' method")),f;var o=u(n,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,f;var a=o.arg;return a?a.done?(t[e.resultName]=a.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,f):a:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,f)}function E(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function $(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function O(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(E,this),this.reset(!0)}function C(e){if(e){var t=e[a];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var n=-1,o=function t(){for(;++n<e.length;)if(r.call(e,n))return t.value=e[n],t.done=!1,t;return t.value=void 0,t.done=!0,t};return o.next=o}}return{next:x}}function x(){return{value:void 0,done:!0}}return p.prototype=_,n(v,"constructor",{value:_,configurable:!0}),n(_,"constructor",{value:p,configurable:!0}),p.displayName=c(_,s,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,_):(e.__proto__=_,c(e,s,"GeneratorFunction")),e.prototype=Object.create(v),e},e.awrap=function(e){return{__await:e}},b(y.prototype),c(y.prototype,i,(function(){return this})),e.AsyncIterator=y,e.async=function(t,r,n,o,a){void 0===a&&(a=Promise);var i=new y(l(t,r,n,o),a);return e.isGeneratorFunction(r)?i:i.next().then((function(e){return e.done?e.value:i.next()}))},b(v),c(v,s,"Generator"),c(v,a,(function(){return this})),c(v,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=Object(e),r=[];for(var n in t)r.push(n);return r.reverse(),function e(){for(;r.length;){var n=r.pop();if(n in t)return e.value=n,e.done=!1,e}return e.done=!0,e}},e.values=C,O.prototype={constructor:O,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach($),!e)for(var t in this)"t"===t.charAt(0)&&r.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function n(r,n){return i.type="throw",i.arg=e,t.next=r,n&&(t.method="next",t.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],i=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var s=r.call(a,"catchLoc"),c=r.call(a,"finallyLoc");if(s&&c){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(s){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var a=o;break}}a&&("break"===e||"continue"===e)&&a.tryLoc<=t&&t<=a.finallyLoc&&(a=null);var i=a?a.completion:{};return i.type=e,i.arg=t,a?(this.method="next",this.next=a.finallyLoc,f):this.complete(i)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),f},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),$(r),f}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var n=r.completion;if("throw"===n.type){var o=n.arg;$(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,r){return this.delegate={iterator:C(e),resultName:t,nextLoc:r},"next"===this.method&&(this.arg=void 0),f}},e}function _typeof(e){return _typeof="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},_typeof(e)}function asyncGeneratorStep(e,t,r,n,o,a,i){try{var s=e[a](i),c=s.value}catch(e){return void r(e)}s.done?t(c):Promise.resolve(c).then(n,o)}function _asyncToGenerator(e){return function(){var t=this,r=arguments;return new Promise((function(n,o){var a=e.apply(t,r);function i(e){asyncGeneratorStep(a,n,o,i,s,"next",e)}function s(e){asyncGeneratorStep(a,n,o,i,s,"throw",e)}i(void 0)}))}}function _defineProperty(e,t,r){return(t=_toPropertyKey(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function _slicedToArray(e,t){return _arrayWithHoles(e)||_iterableToArrayLimit(e,t)||_unsupportedIterableToArray(e,t)||_nonIterableRest()}function _toConsumableArray(e){return _arrayWithoutHoles(e)||_iterableToArray(e)||_unsupportedIterableToArray(e)||_nonIterableSpread()}function _arrayWithoutHoles(e){if(Array.isArray(e))return _arrayLikeToArray(e)}function _arrayWithHoles(e){if(Array.isArray(e))return e}function _iterableToArray(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}function _unsupportedIterableToArray(e,t){if(e){if("string"==typeof e)return _arrayLikeToArray(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?_arrayLikeToArray(e,t):void 0}}function _arrayLikeToArray(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function _nonIterableSpread(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _toPrimitive(e,t){if("object"!=typeof e||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}function _toPropertyKey(e){var t=_toPrimitive(e,"string");return"symbol"==typeof t?t:String(t)}var version="1.5.0-dev.2024042401",RegexNumber=/^[+-]?\d[\d.]*(?:e\+|E\+|e-|E-|e|E)?\d*$/,RegexUnitNumber=/^[+-]?\d[\d.]*(?:e\+|E\+|e-|E-|e|E)?\d*\D*$/;function decimal_round(e,t,r,n,o){var a=e,i=t,s=t.length,c={"~-":function(){var e="<"===r?n-1:n;i=t.slice(0,e)},"~+":function(){var e="<"===r?n-1:n;if(!(s<=e||0===s)){var o=t.slice(0,e);0==+t.slice(e,s)?i=o:(o=(+"9".concat(o)+1).toString().slice(1)).length>e?(i=o.slice(1,o.length),a=(+a+1).toString()):i=o}},"~5":function(){if(0!==s){var e="<"===r?n-1:n;i=t.slice(0,e);var o=+t[e];Number.isNaN(o)||o>=5&&(i=(+"9".concat(i)+1).toString().slice(1)).length>e&&(i=i.slice(1,i.length),a=(+a+1).toString())}},"~6":function(){if(0!==s){var o,c="<"===r?n-1:n,l=+t[c],u=t.slice(+c+1,t.length);u=""===u?0:parseInt(u),o=0===c?+e[e.length-1]:+t[c-1],i=t.slice(0,c),(l>=6||5===l&&u>0||5===l&&o%2!=0)&&(i=(+"9".concat(i)+1).toString().slice(1)).length>c&&(i=i.slice(1,i.length),a=(+a+1).toString())}}};return"<="===r?s<=n?i=t:(c[o]&&c[o](),i=i.replace(/0+$/,"")):"<"===r?s<n?i=t:(c[o]&&c[o](),i=i.replace(/0+$/,"")):"="===r?s<n?i=t+"0".repeat(n-s):s>n&&c[o]&&c[o]():">="===r?s<n&&(i=t+"0".repeat(n-s)):">"===r&&s<=n&&(i=t+"0".repeat(n-s+1)),{int_part:a,dec_part:i}}function is_operator(e){return"+-*/%()**".indexOf(e)>-1}function get_prioraty(e){switch(e){case"+":case"-":return 1;case"*":case"/":case"%":return 2;case"**":return 3;default:return 0}}function prioraty(e,t){return get_prioraty(e)<=get_prioraty(t)}function not_undefined(e){return void 0!==e}function is_null(e){return null===e}function not_null(e){return null!==e}function is_number(e){return"number"==typeof e||is_str_number(e)}function is_str_number(e){return"string"==typeof e&&!!RegexNumber.test(e)}function split_unit_num(e){for(var t,r=null,n=null,o=[/^([+-]?[\d.]+(?:e|E)(?:\+|-)?\d+)(.*)$/,/^([+-]?[\d.]+)(.*)$/],a=0;a<o.length;a++){var i=e.match(o[a]);if(i){t=i;break}}if(t){n=t[1];var s=t[2];""!==s.trim()&&(r=s)}return{num:n,unit:r}}function parse_mantissa(e,t,r,n){var o=e.split("."),a=o[0],i=1===o.length?"":o[1],s=decimal_round(a,i,t,+r,n);return a=s.int_part,""===(i=s.dec_part)?a:"".concat(a,".").concat(i)}function parse_thousands(e){var t=e.split(".");if(t.length>1){var r=t[0];r.includes("-")?t[0]=r[0]+r.slice(1).replace(/(?=(?!^)(?:\d{3})+$)/g,","):t[0]=r.replace(/(?=(?!^)(?:\d{3})+$)/g,","),e=t.join(".")}else{var n=t[0];e=n.includes("-")?n[0]+n.slice(1).replace(/(?=(?!^)(?:\d{3})+$)/g,","):n.replace(/(?=(?!^)(?:\d{3})+$)/g,",")}return e}function promise_queue(e){return _promise_queue.apply(this,arguments)}function _promise_queue(){return _promise_queue=_asyncToGenerator(_regeneratorRuntime().mark((function e(t){var r,n,o,a=arguments;return _regeneratorRuntime().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:r=a.length>1&&void 0!==a[1]?a[1]:5e3,n=0;case 2:if(!(n<t.length)){e.next=16;break}return e.prev=3,e.next=6,Promise.race([t[n],new Promise((function(e,t){setTimeout((function(){return t(new Error("promise queue timeout err"))}),r)}))]);case 6:o=e.sent,e.next=12;break;case 9:return e.prev=9,e.t0=e.catch(3),e.abrupt("continue",13);case 12:return e.abrupt("return",o);case 13:n++,e.next=2;break;case 16:return e.abrupt("return",Promise.reject("错误的 promise queue 调用"));case 17:case"end":return e.stop()}}),e,null,[[3,9]])}))),_promise_queue.apply(this,arguments)}function test_urls(e){return _test_urls.apply(this,arguments)}function _test_urls(){return(_test_urls=_asyncToGenerator(_regeneratorRuntime().mark((function e(t){var r;return _regeneratorRuntime().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:r=0;case 1:if(!(r<t.length)){e.next=16;break}return e.prev=2,e.next=5,fetch(t[r]);case 5:if(!e.sent.ok){e.next=8;break}return e.abrupt("return",t[r]);case 8:e.next=13;break;case 10:return e.prev=10,e.t0=e.catch(2),e.abrupt("continue",13);case 13:r++,e.next=1;break;case 16:return e.abrupt("return",null);case 17:case"end":return e.stop()}}),e,null,[[2,10]])})))).apply(this,arguments)}function idle(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1e3;return"undefined"!=typeof requestIdleCallback?requestIdleCallback(e):setTimeout(e,t)}var cache_eval={},cache_tokens={},cache_fmt_tokens={},cache_calc={},state$1={initial:"initial",number:"number",variable:"var",symbol:"symbol",percent:"percent",round:"round",plus:"plus",comma:"comma",fraction:"fraction",to_number:"to-number",to_number_string:"to-number-string",scientific:"scientific"},symbol="<>=";function fmt_tokenizer(e){var t=e;if(t in cache_fmt_tokens)return cache_fmt_tokens[t].last_time=(new Date).getTime(),cache_fmt_tokens[t].count++,cache_fmt_tokens[t].value;for(var r=state$1.initial,n=[],o=[];e;){var a=e[0];if(r===state$1.initial)if(/\s/.test(a))e=e.slice(1);else if(symbol.includes(a))r=state$1.symbol,n.push(a),e=e.slice(1);else if(","===a)r=state$1.initial,o.push({type:"comma",value:a}),e=e.slice(1);else if(/[a-zA-Z_]/.test(a))r=state$1.variable,n.push(a),e=e.slice(1);else if(/\d/.test(a))r=state$1.number,n.push(a),e=e.slice(1);else if("+"===a)r=state$1.initial,o.push({type:"plus",value:a}),e=e.slice(1);else if("~"===a)r=state$1.round,n.push(a),e=e.slice(1);else if("%"===a)r=state$1.initial,o.push({type:"percent",value:a}),e=e.slice(1);else if("/"===a)r=state$1.initial,o.push({type:"fraction",value:a}),e=e.slice(1);else{if("!"!==a)throw new Error("不识别的fmt字符:".concat(a));if(r=state$1.initial,/[Ee]/.test(e[1]))o.push({type:"scientific",value:e[1]}),e=e.slice(2);else if(/[Nn]/.test(e[1]))o.push({type:"to-number",value:e[1]}),e=e.slice(2);else{if(!/[Uu]/.test(e[1]))throw new Error("不识别的fmt字符:".concat(e.slice(2)));o.push({type:"to-number-string",value:e[1]}),e=e.slice(2)}}else if(r===state$1.number)/\d/.test(a)?(n.push(a),e=e.slice(1)):(o.push({type:"number",value:n.join("")}),n.length=0,r=state$1.initial);else if(r===state$1.variable)/[\$\w_\-.\[\]"']/.test(a)?(n.push(a),e=e.slice(1)):(o.push({type:"var",value:n.join("")}),n.length=0,r=state$1.initial);else if(r===state$1.symbol){if(/\s/.test(a)){e=e.slice(1);continue}symbol.includes(a)?(n.push(a),e=e.slice(1)):(o.push({type:"symbol",value:n.join("")}),n.length=0,r=state$1.initial)}else{if(r!==state$1.round)throw new Error("错误的自动机状态");if(/\s/.test(a)){e=e.slice(1);continue}if(!("56+-".includes(a)&&n.length<2))throw new Error("舍入格式化语法错误:".concat(a));n.push(a),e=e.slice(1),o.push({type:"round",value:n.join("")}),n.length=0,r=state$1.initial}}if(n.length>0&&(o.push({type:r,value:n.join("")}),n.length=0,r=state$1.initial),o.filter((function(e){return"number"===e.type})).length>1)throw new Error("格式化字符串错误,发现多余的数字");return cache_fmt_tokens[t]={last_time:(new Date).getTime(),count:0,value:o},o}var commonjsGlobal="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function getDefaultExportFromCjs(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var isArray$3=Array.isArray,isArray_1=isArray$3,freeGlobal$1="object"==_typeof(commonjsGlobal)&&commonjsGlobal&&commonjsGlobal.Object===Object&&commonjsGlobal,_freeGlobal=freeGlobal$1,freeGlobal=_freeGlobal,freeSelf="object"==("undefined"==typeof self?"undefined":_typeof(self))&&self&&self.Object===Object&&self,root$3=freeGlobal||freeSelf||Function("return this")(),_root=root$3,root$2=_root,_Symbol2=root$2.Symbol,_Symbol$3=_Symbol2,_Symbol$2=_Symbol$3,objectProto$4=Object.prototype,hasOwnProperty$3=objectProto$4.hasOwnProperty,nativeObjectToString$1=objectProto$4.toString,symToStringTag$1=_Symbol$2?_Symbol$2.toStringTag:void 0;function getRawTag$1(e){var t=hasOwnProperty$3.call(e,symToStringTag$1),r=e[symToStringTag$1];try{e[symToStringTag$1]=void 0;var n=!0}catch(e){}var o=nativeObjectToString$1.call(e);return n&&(t?e[symToStringTag$1]=r:delete e[symToStringTag$1]),o}var _getRawTag=getRawTag$1,objectProto$3=Object.prototype,nativeObjectToString=objectProto$3.toString;function objectToString$1(e){return nativeObjectToString.call(e)}var _objectToString=objectToString$1,_Symbol$1=_Symbol$3,getRawTag=_getRawTag,objectToString=_objectToString,nullTag="[object Null]",undefinedTag="[object Undefined]",symToStringTag=_Symbol$1?_Symbol$1.toStringTag:void 0;function baseGetTag$2(e){return null==e?void 0===e?undefinedTag:nullTag:symToStringTag&&symToStringTag in Object(e)?getRawTag(e):objectToString(e)}var _baseGetTag=baseGetTag$2;function isObjectLike$1(e){return null!=e&&"object"==_typeof(e)}var isObjectLike_1=isObjectLike$1,baseGetTag$1=_baseGetTag,isObjectLike=isObjectLike_1,symbolTag="[object Symbol]";function isSymbol$3(e){return"symbol"==_typeof(e)||isObjectLike(e)&&baseGetTag$1(e)==symbolTag}var isSymbol_1=isSymbol$3,isArray$2=isArray_1,isSymbol$2=isSymbol_1,reIsDeepProp=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,reIsPlainProp=/^\w*$/;function isKey$1(e,t){if(isArray$2(e))return!1;var r=_typeof(e);return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=e&&!isSymbol$2(e))||(reIsPlainProp.test(e)||!reIsDeepProp.test(e)||null!=t&&e in Object(t))}var _isKey=isKey$1;function isObject$2(e){var t=_typeof(e);return null!=e&&("object"==t||"function"==t)}var isObject_1=isObject$2,baseGetTag=_baseGetTag,isObject$1=isObject_1,asyncTag="[object AsyncFunction]",funcTag="[object Function]",genTag="[object GeneratorFunction]",proxyTag="[object Proxy]";function isFunction$1(e){if(!isObject$1(e))return!1;var t=baseGetTag(e);return t==funcTag||t==genTag||t==asyncTag||t==proxyTag}var isFunction_1=isFunction$1,root$1=_root,coreJsData$1=root$1["__core-js_shared__"],_coreJsData=coreJsData$1,coreJsData=_coreJsData,maskSrcKey=(uid=/[^.]+$/.exec(coreJsData&&coreJsData.keys&&coreJsData.keys.IE_PROTO||""),uid?"Symbol(src)_1."+uid:""),uid;function isMasked$1(e){return!!maskSrcKey&&maskSrcKey in e}var _isMasked=isMasked$1,funcProto$1=Function.prototype,funcToString$1=funcProto$1.toString;function toSource$1(e){if(null!=e){try{return funcToString$1.call(e)}catch(e){}try{return e+""}catch(e){}}return""}var _toSource=toSource$1,isFunction=isFunction_1,isMasked=_isMasked,isObject=isObject_1,toSource=_toSource,reRegExpChar=/[\\^$.*+?()[\]{}|]/g,reIsHostCtor=/^\[object .+?Constructor\]$/,funcProto=Function.prototype,objectProto$2=Object.prototype,funcToString=funcProto.toString,hasOwnProperty$2=objectProto$2.hasOwnProperty,reIsNative=RegExp("^"+funcToString.call(hasOwnProperty$2).replace(reRegExpChar,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function baseIsNative$1(e){return!(!isObject(e)||isMasked(e))&&(isFunction(e)?reIsNative:reIsHostCtor).test(toSource(e))}var _baseIsNative=baseIsNative$1;function getValue$1(e,t){return null==e?void 0:e[t]}var _getValue=getValue$1,baseIsNative=_baseIsNative,getValue=_getValue;function getNative$2(e,t){var r=getValue(e,t);return baseIsNative(r)?r:void 0}var _getNative=getNative$2,getNative$1=_getNative,nativeCreate$4=getNative$1(Object,"create"),_nativeCreate=nativeCreate$4,nativeCreate$3=_nativeCreate;function hashClear$1(){this.__data__=nativeCreate$3?nativeCreate$3(null):{},this.size=0}var _hashClear=hashClear$1;function hashDelete$1(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}var _hashDelete=hashDelete$1,nativeCreate$2=_nativeCreate,HASH_UNDEFINED$1="__lodash_hash_undefined__",objectProto$1=Object.prototype,hasOwnProperty$1=objectProto$1.hasOwnProperty;function hashGet$1(e){var t=this.__data__;if(nativeCreate$2){var r=t[e];return r===HASH_UNDEFINED$1?void 0:r}return hasOwnProperty$1.call(t,e)?t[e]:void 0}var _hashGet=hashGet$1,nativeCreate$1=_nativeCreate,objectProto=Object.prototype,hasOwnProperty=objectProto.hasOwnProperty;function hashHas$1(e){var t=this.__data__;return nativeCreate$1?void 0!==t[e]:hasOwnProperty.call(t,e)}var _hashHas=hashHas$1,nativeCreate=_nativeCreate,HASH_UNDEFINED="__lodash_hash_undefined__";function hashSet$1(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=nativeCreate&&void 0===t?HASH_UNDEFINED:t,this}var _hashSet=hashSet$1,hashClear=_hashClear,hashDelete=_hashDelete,hashGet=_hashGet,hashHas=_hashHas,hashSet=_hashSet;function Hash$1(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}Hash$1.prototype.clear=hashClear,Hash$1.prototype.delete=hashDelete,Hash$1.prototype.get=hashGet,Hash$1.prototype.has=hashHas,Hash$1.prototype.set=hashSet;var _Hash=Hash$1;function listCacheClear$1(){this.__data__=[],this.size=0}var _listCacheClear=listCacheClear$1;function eq$1(e,t){return e===t||e!=e&&t!=t}var eq_1=eq$1,eq=eq_1;function assocIndexOf$4(e,t){for(var r=e.length;r--;)if(eq(e[r][0],t))return r;return-1}var _assocIndexOf=assocIndexOf$4,assocIndexOf$3=_assocIndexOf,arrayProto=Array.prototype,splice=arrayProto.splice;function listCacheDelete$1(e){var t=this.__data__,r=assocIndexOf$3(t,e);return!(r<0)&&(r==t.length-1?t.pop():splice.call(t,r,1),--this.size,!0)}var _listCacheDelete=listCacheDelete$1,assocIndexOf$2=_assocIndexOf;function listCacheGet$1(e){var t=this.__data__,r=assocIndexOf$2(t,e);return r<0?void 0:t[r][1]}var _listCacheGet=listCacheGet$1,assocIndexOf$1=_assocIndexOf;function listCacheHas$1(e){return assocIndexOf$1(this.__data__,e)>-1}var _listCacheHas=listCacheHas$1,assocIndexOf=_assocIndexOf;function listCacheSet$1(e,t){var r=this.__data__,n=assocIndexOf(r,e);return n<0?(++this.size,r.push([e,t])):r[n][1]=t,this}var _listCacheSet=listCacheSet$1,listCacheClear=_listCacheClear,listCacheDelete=_listCacheDelete,listCacheGet=_listCacheGet,listCacheHas=_listCacheHas,listCacheSet=_listCacheSet;function ListCache$1(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}ListCache$1.prototype.clear=listCacheClear,ListCache$1.prototype.delete=listCacheDelete,ListCache$1.prototype.get=listCacheGet,ListCache$1.prototype.has=listCacheHas,ListCache$1.prototype.set=listCacheSet;var _ListCache=ListCache$1,getNative=_getNative,root=_root,Map$1=getNative(root,"Map"),_Map=Map$1,Hash=_Hash,ListCache=_ListCache,Map=_Map;function mapCacheClear$1(){this.size=0,this.__data__={hash:new Hash,map:new(Map||ListCache),string:new Hash}}var _mapCacheClear=mapCacheClear$1;function isKeyable$1(e){var t=_typeof(e);return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}var _isKeyable=isKeyable$1,isKeyable=_isKeyable;function getMapData$4(e,t){var r=e.__data__;return isKeyable(t)?r["string"==typeof t?"string":"hash"]:r.map}var _getMapData=getMapData$4,getMapData$3=_getMapData;function mapCacheDelete$1(e){var t=getMapData$3(this,e).delete(e);return this.size-=t?1:0,t}var _mapCacheDelete=mapCacheDelete$1,getMapData$2=_getMapData;function mapCacheGet$1(e){return getMapData$2(this,e).get(e)}var _mapCacheGet=mapCacheGet$1,getMapData$1=_getMapData;function mapCacheHas$1(e){return getMapData$1(this,e).has(e)}var _mapCacheHas=mapCacheHas$1,getMapData=_getMapData;function mapCacheSet$1(e,t){var r=getMapData(this,e),n=r.size;return r.set(e,t),this.size+=r.size==n?0:1,this}var _mapCacheSet=mapCacheSet$1,mapCacheClear=_mapCacheClear,mapCacheDelete=_mapCacheDelete,mapCacheGet=_mapCacheGet,mapCacheHas=_mapCacheHas,mapCacheSet=_mapCacheSet;function MapCache$1(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}MapCache$1.prototype.clear=mapCacheClear,MapCache$1.prototype.delete=mapCacheDelete,MapCache$1.prototype.get=mapCacheGet,MapCache$1.prototype.has=mapCacheHas,MapCache$1.prototype.set=mapCacheSet;var _MapCache=MapCache$1,MapCache=_MapCache,FUNC_ERROR_TEXT="Expected a function";function memoize$1(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError(FUNC_ERROR_TEXT);var r=function r(){var n=arguments,o=t?t.apply(this,n):n[0],a=r.cache;if(a.has(o))return a.get(o);var i=e.apply(this,n);return r.cache=a.set(o,i)||a,i};return r.cache=new(memoize$1.Cache||MapCache),r}memoize$1.Cache=MapCache;var memoize_1=memoize$1,memoize=memoize_1,MAX_MEMOIZE_SIZE=500;function memoizeCapped$1(e){var t=memoize(e,(function(e){return r.size===MAX_MEMOIZE_SIZE&&r.clear(),e})),r=t.cache;return t}var _memoizeCapped=memoizeCapped$1,memoizeCapped=_memoizeCapped,rePropName=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,reEscapeChar=/\\(\\)?/g,stringToPath$1=memoizeCapped((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(rePropName,(function(e,r,n,o){t.push(n?o.replace(reEscapeChar,"$1"):r||e)})),t})),_stringToPath=stringToPath$1;function arrayMap$1(e,t){for(var r=-1,n=null==e?0:e.length,o=Array(n);++r<n;)o[r]=t(e[r],r,e);return o}var _arrayMap=arrayMap$1,_Symbol=_Symbol$3,arrayMap=_arrayMap,isArray$1=isArray_1,isSymbol$1=isSymbol_1,INFINITY$1=1/0,symbolProto=_Symbol?_Symbol.prototype:void 0,symbolToString=symbolProto?symbolProto.toString:void 0;function baseToString$1(e){if("string"==typeof e)return e;if(isArray$1(e))return arrayMap(e,baseToString$1)+"";if(isSymbol$1(e))return symbolToString?symbolToString.call(e):"";var t=e+"";return"0"==t&&1/e==-INFINITY$1?"-0":t}var _baseToString=baseToString$1,baseToString=_baseToString;function toString$1(e){return null==e?"":baseToString(e)}var toString_1=toString$1,isArray=isArray_1,isKey=_isKey,stringToPath=_stringToPath,toString=toString_1;function castPath$1(e,t){return isArray(e)?e:isKey(e,t)?[e]:stringToPath(toString(e))}var _castPath=castPath$1,isSymbol=isSymbol_1,INFINITY=1/0;function toKey$1(e){if("string"==typeof e||isSymbol(e))return e;var t=e+"";return"0"==t&&1/e==-INFINITY?"-0":t}var _toKey=toKey$1,castPath=_castPath,toKey=_toKey;function baseGet$1(e,t){for(var r=0,n=(t=castPath(t,e)).length;null!=e&&r<n;)e=e[toKey(t[r++])];return r&&r==n?e:void 0}var _baseGet=baseGet$1,baseGet=_baseGet;function get(e,t,r){var n=null==e?void 0:baseGet(e,t);return void 0===n?r:n}var get_1=get,get$1=getDefaultExportFromCjs(get_1);function parse_args(e){var t="",r=e[0],n=e[1],o={origin_expr:r,origin_fill_data:n,expr:"",fmt_tokens:null,options:null,fmt_err:!1,expr_err:!1};not_undefined(n)&&(o.options=n);var a=get$1(n,"_error",!1);if(0===e.length)throw new Error("至少传入一个参数");if("string"==typeof r){if(t=r,""===r.trim()||r.includes("NaN"))return o.expr_err=!0,o}else{if("number"!=typeof r){if(!0===a)return o.expr_err=!0,o;throw new Error("错误的第一个参数类型: ".concat(r," 类型为:").concat(_typeof(r)))}t=r.toString()}var i=t.split("|");if(o.expr=i[0],i.length>1){var s=i[1];if(""!==s.trim())try{o.fmt_tokens=fmt_tokenizer(s)}catch(e){return o.fmt_err=!0,o}}if(null!==o.options&&o.options._fmt){var c=[];try{c=fmt_tokenizer(o.options._fmt)}catch(e){return o.fmt_err=!0,o}if(null===o.fmt_tokens)o.fmt_tokens=c;else{var l=o.fmt_tokens.map((function(e){return e.type}));c.forEach((function(e){l.includes(e.type)||o.fmt_tokens.push(e)}))}}return o}var state={initial:"initial",number:"number",scientific:"scientific",operator:"operator",bracket:"bracket",var:"var"},signed="+-",operator="*/%",brackets="()";function tokenizer(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r="".concat(e,",").concat(t);if(r in cache_tokens)return cache_tokens[r].last_time=(new Date).getTime(),cache_tokens[r].count++,cache_tokens[r].value;for(var n,o=state.initial,a=[],i=[],s=function(){a.push(n),e=e.slice(1)},c=function(e){i.push({type:e,value:a.join("")}),a.length=0},l=function(){e=e.slice(1)};e;)switch(n=e[0],o){case state.initial:if(signed.includes(n)){var u=i.at(-1);0===i.length||"operator"===u.type||"("===u?(o=state.number,s()):(o=state.operator,s())}else if(operator.includes(n))o=state.operator,s();else if(/\d/.test(n))o=state.number,s();else if(brackets.includes(n))o=state.bracket;else if(/[a-zA-Z_$]/.test(n))o=state.var,s();else{if(!/\s/.test(n))throw new Error("不识别的字符".concat(n));l()}break;case state.bracket:i.push({type:state.bracket,value:n}),l(),o=state.initial;break;case state.operator:var f=a.at(-1);"*"===n&&"*"===f&&s(),c(state.operator),o=state.initial;break;case state.number:if(/\d/.test(n))s();else if("."===n){if(0===a.length||a.includes("."))throw new Error("非法的小数部分".concat(a.join("")));s()}else"Ee".includes(n)?(o=state.scientific,s()):["auto","on",!0].includes(t)&&/[^*/+\-()\s]/.test(n)||"space"===t&&/\S/.test(n)?s():(c(state.number),o=state.initial);break;case state.scientific:if(/\d/.test(n))s();else if(signed.includes(n)){var h=a.slice(1),p=a.at(-1);h.includes(n)||!/[Ee]/.test(p)?(c(state.scientific),o=state.initial):s()}else["auto","on",!0].includes(t)&&/[^*/+\-()\s]/.test(n)||"space"===t&&/\S/.test(n)?s():(c(state.scientific),o=state.initial);break;case state.var:/[\w_.\[\]"']/.test(n)?s():(c(state.var),o=state.initial);break;default:throw new Error("状态错误")}return 0!==a.length&&(i.push({type:o,value:a.join("")}),a.length=0,o=state.initial),cache_tokens[r]={last_time:(new Date).getTime(),count:0,value:i},i}function fill_tokens(e,t,r){if(is_null(t))throw new Error("错误的填充数据:",t);for(var n=[],o=0;o<e.length;o++){var a=e[o];if("var"===a.type){if("undefined"===a.value||"NaN"===a.value)throw new Error("key不应该为:".concat(a.value));for(var i=null,s=0;s<t.length;s++){var c=t[s],l=get$1(c,a.value);if(void 0!==l){i=l;break}}if(null===i)throw new Error("token填充失败,请确认".concat(a,"存在"));if("string"==typeof i){if(""===i.trim())throw new Error("token填充失败,".concat(a.value,"值不可为空字符"));if([!0,"on","auto","space"].includes(r)){if(!RegexUnitNumber.test(i))throw new Error("token填充失败,".concat(a.value,"值:").concat(i,"为非法单位数字"))}else if(!is_str_number(i))throw new Error("token填充失败,".concat(a,"值:").concat(i,"为非法数字"))}i="string"!=typeof i?i.toString():i,n.push({type:"number",value:i})}else n.push(a)}return n}function token2postfix(e){for(var t=[],r=[],n=e.map((function(e){return e.value}));n.length>0;){var o=n.shift();if(is_operator(o))if("("===o)t.push(o);else if(")"===o){for(var a=t.pop();"("!==a&&t.length>0;)r.push(a),a=t.pop();if("("!==a)throw"error: unmatched ()"}else{for(;prioraty(o,t[t.length-1])&&t.length>0;)r.push(t.pop());t.push(o)}else r.push(o)}if(t.length>0){if(")"===t[t.length-1]||"("===t[t.length-1])throw"error: unmatched ()";for(;t.length>0;)r.push(t.pop())}return r}var isNumeric=/^-?(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?$/i,mathceil=Math.ceil,mathfloor=Math.floor,bignumberError="[BigNumber Error] ",tooManyDigits=bignumberError+"Number primitive has more than 15 significant digits: ",BASE=1e14,LOG_BASE=14,MAX_SAFE_INTEGER=9007199254740991,POWS_TEN=[1,10,100,1e3,1e4,1e5,1e6,1e7,1e8,1e9,1e10,1e11,1e12,1e13],SQRT_BASE=1e7,MAX=1e9;function clone(e){var t,r,n,o,a,i,s,c,l,u,f=O.prototype={constructor:O,toString:null,valueOf:null},h=new O(1),p=20,_=4,g=-7,m=21,d=-1e7,v=1e7,b=!1,y=1,w=0,S={prefix:"",groupSize:3,secondaryGroupSize:0,groupSeparator:",",decimalSeparator:".",fractionGroupSize:0,fractionGroupSeparator:" ",suffix:""},E="0123456789abcdefghijklmnopqrstuvwxyz",$=!0;function O(e,t){var o,a,i,s,c,l,u,f,h=this;if(!(h instanceof O))return new O(e,t);if(null==t){if(e&&!0===e._isBigNumber)return h.s=e.s,void(!e.c||e.e>v?h.c=h.e=null:e.e<d?h.c=[h.e=0]:(h.e=e.e,h.c=e.c.slice()));if((l="number"==typeof e)&&0*e==0){if(h.s=1/e<0?(e=-e,-1):1,e===~~e){for(s=0,c=e;c>=10;c/=10,s++);return void(s>v?h.c=h.e=null:(h.e=s,h.c=[e]))}f=String(e)}else{if(!isNumeric.test(f=String(e)))return n(h,f,l);h.s=45==f.charCodeAt(0)?(f=f.slice(1),-1):1}(s=f.indexOf("."))>-1&&(f=f.replace(".","")),(c=f.search(/e/i))>0?(s<0&&(s=c),s+=+f.slice(c+1),f=f.substring(0,c)):s<0&&(s=f.length)}else{if(intCheck(t,2,E.length,"Base"),10==t&&$)return k(h=new O(e),p+h.e+1,_);if(f=String(e),l="number"==typeof e){if(0*e!=0)return n(h,f,l,t);if(h.s=1/e<0?(f=f.slice(1),-1):1,O.DEBUG&&f.replace(/^0\.0*|\./,"").length>15)throw Error(tooManyDigits+e)}else h.s=45===f.charCodeAt(0)?(f=f.slice(1),-1):1;for(o=E.slice(0,t),s=c=0,u=f.length;c<u;c++)if(o.indexOf(a=f.charAt(c))<0){if("."==a){if(c>s){s=u;continue}}else if(!i&&(f==f.toUpperCase()&&(f=f.toLowerCase())||f==f.toLowerCase()&&(f=f.toUpperCase()))){i=!0,c=-1,s=0;continue}return n(h,String(e),l,t)}l=!1,(s=(f=r(f,t,10,h.s)).indexOf("."))>-1?f=f.replace(".",""):s=f.length}for(c=0;48===f.charCodeAt(c);c++);for(u=f.length;48===f.charCodeAt(--u););if(f=f.slice(c,++u)){if(u-=c,l&&O.DEBUG&&u>15&&(e>MAX_SAFE_INTEGER||e!==mathfloor(e)))throw Error(tooManyDigits+h.s*e);if((s=s-c-1)>v)h.c=h.e=null;else if(s<d)h.c=[h.e=0];else{if(h.e=s,h.c=[],c=(s+1)%LOG_BASE,s<0&&(c+=LOG_BASE),c<u){for(c&&h.c.push(+f.slice(0,c)),u-=LOG_BASE;c<u;)h.c.push(+f.slice(c,c+=LOG_BASE));c=LOG_BASE-(f=f.slice(c)).length}else c-=u;for(;c--;f+="0");h.c.push(+f)}}else h.c=[h.e=0]}function C(e,t,r,n){var o,a,i,s,c;if(null==r?r=_:intCheck(r,0,8),!e.c)return e.toString();if(o=e.c[0],i=e.e,null==t)c=coeffToString(e.c),c=1==n||2==n&&(i<=g||i>=m)?toExponential(c,i):toFixedPoint(c,i,"0");else if(a=(e=k(new O(e),t,r)).e,s=(c=coeffToString(e.c)).length,1==n||2==n&&(t<=a||a<=g)){for(;s<t;c+="0",s++);c=toExponential(c,a)}else if(t-=i,c=toFixedPoint(c,a,"0"),a+1>s){if(--t>0)for(c+=".";t--;c+="0");}else if((t+=a-s)>0)for(a+1==s&&(c+=".");t--;c+="0");return e.s<0&&o?"-"+c:c}function x(e,t){for(var r,n=1,o=new O(e[0]);n<e.length;n++){if(!(r=new O(e[n])).s){o=r;break}t.call(o,r)&&(o=r)}return o}function A(e,t,r){for(var n=1,o=t.length;!t[--o];t.pop());for(o=t[0];o>=10;o/=10,n++);return(r=n+r*LOG_BASE-1)>v?e.c=e.e=null:r<d?e.c=[e.e=0]:(e.e=r,e.c=t),e}function k(e,t,r,n){var o,a,i,s,c,l,u,f=e.c,h=POWS_TEN;if(f){e:{for(o=1,s=f[0];s>=10;s/=10,o++);if((a=t-o)<0)a+=LOG_BASE,i=t,u=(c=f[l=0])/h[o-i-1]%10|0;else if((l=mathceil((a+1)/LOG_BASE))>=f.length){if(!n)break e;for(;f.length<=l;f.push(0));c=u=0,o=1,i=(a%=LOG_BASE)-LOG_BASE+1}else{for(c=s=f[l],o=1;s>=10;s/=10,o++);u=(i=(a%=LOG_BASE)-LOG_BASE+o)<0?0:c/h[o-i-1]%10|0}if(n=n||t<0||null!=f[l+1]||(i<0?c:c%h[o-i-1]),n=r<4?(u||n)&&(0==r||r==(e.s<0?3:2)):u>5||5==u&&(4==r||n||6==r&&(a>0?i>0?c/h[o-i]:0:f[l-1])%10&1||r==(e.s<0?8:7)),t<1||!f[0])return f.length=0,n?(t-=e.e+1,f[0]=h[(LOG_BASE-t%LOG_BASE)%LOG_BASE],e.e=-t||0):f[0]=e.e=0,e;if(0==a?(f.length=l,s=1,l--):(f.length=l+1,s=h[LOG_BASE-a],f[l]=i>0?mathfloor(c/h[o-i]%h[i])*s:0),n)for(;;){if(0==l){for(a=1,i=f[0];i>=10;i/=10,a++);for(i=f[0]+=s,s=1;i>=10;i/=10,s++);a!=s&&(e.e++,f[0]==BASE&&(f[0]=1));break}if(f[l]+=s,f[l]!=BASE)break;f[l--]=0,s=1}for(a=f.length;0===f[--a];f.pop());}e.e>v?e.c=e.e=null:e.e<d&&(e.c=[e.e=0])}return e}function T(e){var t,r=e.e;return null===r?e.toString():(t=coeffToString(e.c),t=r<=g||r>=m?toExponential(t,r):toFixedPoint(t,r,"0"),e.s<0?"-"+t:t)}return O.clone=clone,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=function(e){var t,r;if(null!=e){if("object"!=_typeof(e))throw Error(bignumberError+"Object expected: "+e);if(e.hasOwnProperty(t="DECIMAL_PLACES")&&(intCheck(r=e[t],0,MAX,t),p=r),e.hasOwnProperty(t="ROUNDING_MODE")&&(intCheck(r=e[t],0,8,t),_=r),e.hasOwnProperty(t="EXPONENTIAL_AT")&&((r=e[t])&&r.pop?(intCheck(r[0],-MAX,0,t),intCheck(r[1],0,MAX,t),g=r[0],m=r[1]):(intCheck(r,-MAX,MAX,t),g=-(m=r<0?-r:r))),e.hasOwnProperty(t="RANGE"))if((r=e[t])&&r.pop)intCheck(r[0],-MAX,-1,t),intCheck(r[1],1,MAX,t),d=r[0],v=r[1];else{if(intCheck(r,-MAX,MAX,t),!r)throw Error(bignumberError+t+" cannot be zero: "+r);d=-(v=r<0?-r:r)}if(e.hasOwnProperty(t="CRYPTO")){if((r=e[t])!==!!r)throw Error(bignumberError+t+" not true or false: "+r);if(r){if("undefined"==typeof crypto||!crypto||!crypto.getRandomValues&&!crypto.randomBytes)throw b=!r,Error(bignumberError+"crypto unavailable");b=r}else b=r}if(e.hasOwnProperty(t="MODULO_MODE")&&(intCheck(r=e[t],0,9,t),y=r),e.hasOwnProperty(t="POW_PRECISION")&&(intCheck(r=e[t],0,MAX,t),w=r),e.hasOwnProperty(t="FORMAT")){if("object"!=_typeof(r=e[t]))throw Error(bignumberError+t+" not an object: "+r);S=r}if(e.hasOwnProperty(t="ALPHABET")){if("string"!=typeof(r=e[t])||/^.?$|[+\-.\s]|(.).*\1/.test(r))throw Error(bignumberError+t+" invalid: "+r);$="0123456789"==r.slice(0,10),E=r}}return{DECIMAL_PLACES:p,ROUNDING_MODE:_,EXPONENTIAL_AT:[g,m],RANGE:[d,v],CRYPTO:b,MODULO_MODE:y,POW_PRECISION:w,FORMAT:S,ALPHABET:E}},O.isBigNumber=function(e){if(!e||!0!==e._isBigNumber)return!1;if(!O.DEBUG)return!0;var t,r,n=e.c,o=e.e,a=e.s;e:if("[object Array]"=={}.toString.call(n)){if((1===a||-1===a)&&o>=-MAX&&o<=MAX&&o===mathfloor(o)){if(0===n[0]){if(0===o&&1===n.length)return!0;break e}if((t=(o+1)%LOG_BASE)<1&&(t+=LOG_BASE),String(n[0]).length==t){for(t=0;t<n.length;t++)if((r=n[t])<0||r>=BASE||r!==mathfloor(r))break e;if(0!==r)return!0}}}else if(null===n&&null===o&&(null===a||1===a||-1===a))return!0;throw Error(bignumberError+"Invalid BigNumber: "+e)},O.maximum=O.max=function(){return x(arguments,f.lt)},O.minimum=O.min=function(){return x(arguments,f.gt)},O.random=(o=9007199254740992,a=Math.random()*o&2097151?function(){return mathfloor(Math.random()*o)}:function(){return 8388608*(1073741824*Math.random()|0)+(8388608*Math.random()|0)},function(e){var t,r,n,o,i,s=0,c=[],l=new O(h);if(null==e?e=p:intCheck(e,0,MAX),o=mathceil(e/LOG_BASE),b)if(crypto.getRandomValues){for(t=crypto.getRandomValues(new Uint32Array(o*=2));s<o;)(i=131072*t[s]+(t[s+1]>>>11))>=9e15?(r=crypto.getRandomValues(new Uint32Array(2)),t[s]=r[0],t[s+1]=r[1]):(c.push(i%1e14),s+=2);s=o/2}else{if(!crypto.randomBytes)throw b=!1,Error(bignumberError+"crypto unavailable");for(t=crypto.randomBytes(o*=7);s<o;)(i=281474976710656*(31&t[s])+1099511627776*t[s+1]+4294967296*t[s+2]+16777216*t[s+3]+(t[s+4]<<16)+(t[s+5]<<8)+t[s+6])>=9e15?crypto.randomBytes(7).copy(t,s):(c.push(i%1e14),s+=7);s=o/7}if(!b)for(;s<o;)(i=a())<9e15&&(c[s++]=i%1e14);for(o=c[--s],e%=LOG_BASE,o&&e&&(i=POWS_TEN[LOG_BASE-e],c[s]=mathfloor(o/i)*i);0===c[s];c.pop(),s--);if(s<0)c=[n=0];else{for(n=-1;0===c[0];c.splice(0,1),n-=LOG_BASE);for(s=1,i=c[0];i>=10;i/=10,s++);s<LOG_BASE&&(n-=LOG_BASE-s)}return l.e=n,l.c=c,l}),O.sum=function(){for(var e=1,t=arguments,r=new O(t[0]);e<t.length;)r=r.plus(t[e++]);return r},r=function(){var e="0123456789";function r(e,t,r,n){for(var o,a,i=[0],s=0,c=e.length;s<c;){for(a=i.length;a--;i[a]*=t);for(i[0]+=n.indexOf(e.charAt(s++)),o=0;o<i.length;o++)i[o]>r-1&&(null==i[o+1]&&(i[o+1]=0),i[o+1]+=i[o]/r|0,i[o]%=r)}return i.reverse()}return function(n,o,a,i,s){var c,l,u,f,h,g,m,d,v=n.indexOf("."),b=p,y=_;for(v>=0&&(f=w,w=0,n=n.replace(".",""),g=(d=new O(o)).pow(n.length-v),w=f,d.c=r(toFixedPoint(coeffToString(g.c),g.e,"0"),10,a,e),d.e=d.c.length),u=f=(m=r(n,o,a,s?(c=E,e):(c=e,E))).length;0==m[--f];m.pop());if(!m[0])return c.charAt(0);if(v<0?--u:(g.c=m,g.e=u,g.s=i,m=(g=t(g,d,b,y,a)).c,h=g.r,u=g.e),v=m[l=u+b+1],f=a/2,h=h||l<0||null!=m[l+1],h=y<4?(null!=v||h)&&(0==y||y==(g.s<0?3:2)):v>f||v==f&&(4==y||h||6==y&&1&m[l-1]||y==(g.s<0?8:7)),l<1||!m[0])n=h?toFixedPoint(c.charAt(1),-b,c.charAt(0)):c.charAt(0);else{if(m.length=l,h)for(--a;++m[--l]>a;)m[l]=0,l||(++u,m=[1].concat(m));for(f=m.length;!m[--f];);for(v=0,n="";v<=f;n+=c.charAt(m[v++]));n=toFixedPoint(n,u,c.charAt(0))}return n}}(),t=function(){function e(e,t,r){var n,o,a,i,s=0,c=e.length,l=t%SQRT_BASE,u=t/SQRT_BASE|0;for(e=e.slice();c--;)s=((o=l*(a=e[c]%SQRT_BASE)+(n=u*a+(i=e[c]/SQRT_BASE|0)*l)%SQRT_BASE*SQRT_BASE+s)/r|0)+(n/SQRT_BASE|0)+u*i,e[c]=o%r;return s&&(e=[s].concat(e)),e}function t(e,t,r,n){var o,a;if(r!=n)a=r>n?1:-1;else for(o=a=0;o<r;o++)if(e[o]!=t[o]){a=e[o]>t[o]?1:-1;break}return a}function r(e,t,r,n){for(var o=0;r--;)e[r]-=o,o=e[r]<t[r]?1:0,e[r]=o*n+e[r]-t[r];for(;!e[0]&&e.length>1;e.splice(0,1));}return function(n,o,a,i,s){var c,l,u,f,h,p,_,g,m,d,v,b,y,w,S,E,$,C=n.s==o.s?1:-1,x=n.c,A=o.c;if(!(x&&x[0]&&A&&A[0]))return new O(n.s&&o.s&&(x?!A||x[0]!=A[0]:A)?x&&0==x[0]||!A?0*C:C/0:NaN);for(m=(g=new O(C)).c=[],C=a+(l=n.e-o.e)+1,s||(s=BASE,l=bitFloor(n.e/LOG_BASE)-bitFloor(o.e/LOG_BASE),C=C/LOG_BASE|0),u=0;A[u]==(x[u]||0);u++);if(A[u]>(x[u]||0)&&l--,C<0)m.push(1),f=!0;else{for(w=x.length,E=A.length,u=0,C+=2,(h=mathfloor(s/(A[0]+1)))>1&&(A=e(A,h,s),x=e(x,h,s),E=A.length,w=x.length),y=E,v=(d=x.slice(0,E)).length;v<E;d[v++]=0);$=A.slice(),$=[0].concat($),S=A[0],A[1]>=s/2&&S++;do{if(h=0,(c=t(A,d,E,v))<0){if(b=d[0],E!=v&&(b=b*s+(d[1]||0)),(h=mathfloor(b/S))>1)for(h>=s&&(h=s-1),_=(p=e(A,h,s)).length,v=d.length;1==t(p,d,_,v);)h--,r(p,E<_?$:A,_,s),_=p.length,c=1;else 0==h&&(c=h=1),_=(p=A.slice()).length;if(_<v&&(p=[0].concat(p)),r(d,p,v,s),v=d.length,-1==c)for(;t(A,d,E,v)<1;)h++,r(d,E<v?$:A,v,s),v=d.length}else 0===c&&(h++,d=[0]);m[u++]=h,d[0]?d[v++]=x[y]||0:(d=[x[y]],v=1)}while((y++<w||null!=d[0])&&C--);f=null!=d[0],m[0]||m.splice(0,1)}if(s==BASE){for(u=1,C=m[0];C>=10;C/=10,u++);k(g,a+(g.e=u+l*LOG_BASE-1)+1,i,f)}else g.e=l,g.r=+f;return g}}(),i=/^(-?)0([xbo])(?=\w[\w.]*$)/i,s=/^([^.]+)\.$/,c=/^\.([^.]+)$/,l=/^-?(Infinity|NaN)$/,u=/^\s*\+(?=[\w.])|^\s+|\s+$/g,n=function(e,t,r,n){var o,a=r?t:t.replace(u,"");if(l.test(a))e.s=isNaN(a)?null:a<0?-1:1;else{if(!r&&(a=a.replace(i,(function(e,t,r){return o="x"==(r=r.toLowerCase())?16:"b"==r?2:8,n&&n!=o?e:t})),n&&(o=n,a=a.replace(s,"$1").replace(c,"0.$1")),t!=a))return new O(a,o);if(O.DEBUG)throw Error(bignumberError+"Not a"+(n?" base "+n:"")+" number: "+t);e.s=null}e.c=e.e=null},f.absoluteValue=f.abs=function(){var e=new O(this);return e.s<0&&(e.s=1),e},f.comparedTo=function(e,t){return compare(this,new O(e,t))},f.decimalPlaces=f.dp=function(e,t){var r,n,o,a=this;if(null!=e)return intCheck(e,0,MAX),null==t?t=_:intCheck(t,0,8),k(new O(a),e+a.e+1,t);if(!(r=a.c))return null;if(n=((o=r.length-1)-bitFloor(this.e/LOG_BASE))*LOG_BASE,o=r[o])for(;o%10==0;o/=10,n--);return n<0&&(n=0),n},f.dividedBy=f.div=function(e,r){return t(this,new O(e,r),p,_)},f.dividedToIntegerBy=f.idiv=function(e,r){return t(this,new O(e,r),0,1)},f.exponentiatedBy=f.pow=function(e,t){var r,n,o,a,i,s,c,l,u=this;if((e=new O(e)).c&&!e.isInteger())throw Error(bignumberError+"Exponent not an integer: "+T(e));if(null!=t&&(t=new O(t)),i=e.e>14,!u.c||!u.c[0]||1==u.c[0]&&!u.e&&1==u.c.length||!e.c||!e.c[0])return l=new O(Math.pow(+T(u),i?e.s*(2-isOdd(e)):+T(e))),t?l.mod(t):l;if(s=e.s<0,t){if(t.c?!t.c[0]:!t.s)return new O(NaN);(n=!s&&u.isInteger()&&t.isInteger())&&(u=u.mod(t))}else{if(e.e>9&&(u.e>0||u.e<-1||(0==u.e?u.c[0]>1||i&&u.c[1]>=24e7:u.c[0]<8e13||i&&u.c[0]<=9999975e7)))return a=u.s<0&&isOdd(e)?-0:0,u.e>-1&&(a=1/a),new O(s?1/a:a);w&&(a=mathceil(w/LOG_BASE+2))}for(i?(r=new O(.5),s&&(e.s=1),c=isOdd(e)):c=(o=Math.abs(+T(e)))%2,l=new O(h);;){if(c){if(!(l=l.times(u)).c)break;a?l.c.length>a&&(l.c.length=a):n&&(l=l.mod(t))}if(o){if(0===(o=mathfloor(o/2)))break;c=o%2}else if(k(e=e.times(r),e.e+1,1),e.e>14)c=isOdd(e);else{if(0===(o=+T(e)))break;c=o%2}u=u.times(u),a?u.c&&u.c.length>a&&(u.c.length=a):n&&(u=u.mod(t))}return n?l:(s&&(l=h.div(l)),t?l.mod(t):a?k(l,w,_,undefined):l)},f.integerValue=function(e){var t=new O(this);return null==e?e=_:intCheck(e,0,8),k(t,t.e+1,e)},f.isEqualTo=f.eq=function(e,t){return 0===compare(this,new O(e,t))},f.isFinite=function(){return!!this.c},f.isGreaterThan=f.gt=function(e,t){return compare(this,new O(e,t))>0},f.isGreaterThanOrEqualTo=f.gte=function(e,t){return 1===(t=compare(this,new O(e,t)))||0===t},f.isInteger=function(){return!!this.c&&bitFloor(this.e/LOG_BASE)>this.c.length-2},f.isLessThan=f.lt=function(e,t){return compare(this,new O(e,t))<0},f.isLessThanOrEqualTo=f.lte=function(e,t){return-1===(t=compare(this,new O(e,t)))||0===t},f.isNaN=function(){return!this.s},f.isNegative=function(){return this.s<0},f.isPositive=function(){return this.s>0},f.isZero=function(){return!!this.c&&0==this.c[0]},f.minus=function(e,t){var r,n,o,a,i=this,s=i.s;if(t=(e=new O(e,t)).s,!s||!t)return new O(NaN);if(s!=t)return e.s=-t,i.plus(e);var c=i.e/LOG_BASE,l=e.e/LOG_BASE,u=i.c,f=e.c;if(!c||!l){if(!u||!f)return u?(e.s=-t,e):new O(f?i:NaN);if(!u[0]||!f[0])return f[0]?(e.s=-t,e):new O(u[0]?i:3==_?-0:0)}if(c=bitFloor(c),l=bitFloor(l),u=u.slice(),s=c-l){for((a=s<0)?(s=-s,o=u):(l=c,o=f),o.reverse(),t=s;t--;o.push(0));o.reverse()}else for(n=(a=(s=u.length)<(t=f.length))?s:t,s=t=0;t<n;t++)if(u[t]!=f[t]){a=u[t]<f[t];break}if(a&&(o=u,u=f,f=o,e.s=-e.s),(t=(n=f.length)-(r=u.length))>0)for(;t--;u[r++]=0);for(t=BASE-1;n>s;){if(u[--n]<f[n]){for(r=n;r&&!u[--r];u[r]=t);--u[r],u[n]+=BASE}u[n]-=f[n]}for(;0==u[0];u.splice(0,1),--l);return u[0]?A(e,u,l):(e.s=3==_?-1:1,e.c=[e.e=0],e)},f.modulo=f.mod=function(e,r){var n,o,a=this;return e=new O(e,r),!a.c||!e.s||e.c&&!e.c[0]?new O(NaN):!e.c||a.c&&!a.c[0]?new O(a):(9==y?(o=e.s,e.s=1,n=t(a,e,0,3),e.s=o,n.s*=o):n=t(a,e,0,y),(e=a.minus(n.times(e))).c[0]||1!=y||(e.s=a.s),e)},f.multipliedBy=f.times=function(e,t){var r,n,o,a,i,s,c,l,u,f,h,p,_,g,m,d=this,v=d.c,b=(e=new O(e,t)).c;if(!(v&&b&&v[0]&&b[0]))return!d.s||!e.s||v&&!v[0]&&!b||b&&!b[0]&&!v?e.c=e.e=e.s=null:(e.s*=d.s,v&&b?(e.c=[0],e.e=0):e.c=e.e=null),e;for(n=bitFloor(d.e/LOG_BASE)+bitFloor(e.e/LOG_BASE),e.s*=d.s,(c=v.length)<(f=b.length)&&(_=v,v=b,b=_,o=c,c=f,f=o),o=c+f,_=[];o--;_.push(0));for(g=BASE,m=SQRT_BASE,o=f;--o>=0;){for(r=0,h=b[o]%m,p=b[o]/m|0,a=o+(i=c);a>o;)r=((l=h*(l=v[--i]%m)+(s=p*l+(u=v[i]/m|0)*h)%m*m+_[a]+r)/g|0)+(s/m|0)+p*u,_[a--]=l%g;_[a]=r}return r?++n:_.splice(0,1),A(e,_,n)},f.negated=function(){var e=new O(this);return e.s=-e.s||null,e},f.plus=function(e,t){var r,n=this,o=n.s;if(t=(e=new O(e,t)).s,!o||!t)return new O(NaN);if(o!=t)return e.s=-t,n.minus(e);var a=n.e/LOG_BASE,i=e.e/LOG_BASE,s=n.c,c=e.c;if(!a||!i){if(!s||!c)return new O(o/0);if(!s[0]||!c[0])return c[0]?e:new O(s[0]?n:0*o)}if(a=bitFloor(a),i=bitFloor(i),s=s.slice(),o=a-i){for(o>0?(i=a,r=c):(o=-o,r=s),r.reverse();o--;r.push(0));r.reverse()}for((o=s.length)-(t=c.length)<0&&(r=c,c=s,s=r,t=o),o=0;t;)o=(s[--t]=s[t]+c[t]+o)/BASE|0,s[t]=BASE===s[t]?0:s[t]%BASE;return o&&(s=[o].concat(s),++i),A(e,s,i)},f.precision=f.sd=function(e,t){var r,n,o,a=this;if(null!=e&&e!==!!e)return intCheck(e,1,MAX),null==t?t=_:intCheck(t,0,8),k(new O(a),e,t);if(!(r=a.c))return null;if(n=(o=r.length-1)*LOG_BASE+1,o=r[o]){for(;o%10==0;o/=10,n--);for(o=r[0];o>=10;o/=10,n++);}return e&&a.e+1>n&&(n=a.e+1),n},f.shiftedBy=function(e){return intCheck(e,-MAX_SAFE_INTEGER,MAX_SAFE_INTEGER),this.times("1e"+e)},f.squareRoot=f.sqrt=function(){var e,r,n,o,a,i=this,s=i.c,c=i.s,l=i.e,u=p+4,f=new O("0.5");if(1!==c||!s||!s[0])return new O(!c||c<0&&(!s||s[0])?NaN:s?i:1/0);if(0==(c=Math.sqrt(+T(i)))||c==1/0?(((r=coeffToString(s)).length+l)%2==0&&(r+="0"),c=Math.sqrt(+r),l=bitFloor((l+1)/2)-(l<0||l%2),n=new O(r=c==1/0?"5e"+l:(r=c.toExponential()).slice(0,r.indexOf("e")+1)+l)):n=new O(c+""),n.c[0])for((c=(l=n.e)+u)<3&&(c=0);;)if(a=n,n=f.times(a.plus(t(i,a,u,1))),coeffToString(a.c).slice(0,c)===(r=coeffToString(n.c)).slice(0,c)){if(n.e<l&&--c,"9999"!=(r=r.slice(c-3,c+1))&&(o||"4999"!=r)){+r&&(+r.slice(1)||"5"!=r.charAt(0))||(k(n,n.e+p+2,1),e=!n.times(n).eq(i));break}if(!o&&(k(a,a.e+p+2,0),a.times(a).eq(i))){n=a;break}u+=4,c+=4,o=1}return k(n,n.e+p+1,_,e)},f.toExponential=function(e,t){return null!=e&&(intCheck(e,0,MAX),e++),C(this,e,t,1)},f.toFixed=function(e,t){return null!=e&&(intCheck(e,0,MAX),e=e+this.e+1),C(this,e,t)},f.toFormat=function(e,t,r){var n,o=this;if(null==r)null!=e&&t&&"object"==_typeof(t)?(r=t,t=null):e&&"object"==_typeof(e)?(r=e,e=t=null):r=S;else if("object"!=_typeof(r))throw Error(bignumberError+"Argument not an object: "+r);if(n=o.toFixed(e,t),o.c){var a,i=n.split("."),s=+r.groupSize,c=+r.secondaryGroupSize,l=r.groupSeparator||"",u=i[0],f=i[1],h=o.s<0,p=h?u.slice(1):u,_=p.length;if(c&&(a=s,s=c,c=a,_-=a),s>0&&_>0){for(a=_%s||s,u=p.substr(0,a);a<_;a+=s)u+=l+p.substr(a,s);c>0&&(u+=l+p.slice(a)),h&&(u="-"+u)}n=f?u+(r.decimalSeparator||"")+((c=+r.fractionGroupSize)?f.replace(new RegExp("\\d{"+c+"}\\B","g"),"$&"+(r.fractionGroupSeparator||"")):f):u}return(r.prefix||"")+n+(r.suffix||"")},f.toFraction=function(e){var r,n,o,a,i,s,c,l,u,f,p,g,m=this,d=m.c;if(null!=e&&(!(c=new O(e)).isInteger()&&(c.c||1!==c.s)||c.lt(h)))throw Error(bignumberError+"Argument "+(c.isInteger()?"out of range: ":"not an integer: ")+T(c));if(!d)return new O(m);for(r=new O(h),u=n=new O(h),o=l=new O(h),g=coeffToString(d),i=r.e=g.length-m.e-1,r.c[0]=POWS_TEN[(s=i%LOG_BASE)<0?LOG_BASE+s:s],e=!e||c.comparedTo(r)>0?i>0?r:u:c,s=v,v=1/0,c=new O(g),l.c[0]=0;f=t(c,r,0,1),1!=(a=n.plus(f.times(o))).comparedTo(e);)n=o,o=a,u=l.plus(f.times(a=u)),l=a,r=c.minus(f.times(a=r)),c=a;return a=t(e.minus(n),o,0,1),l=l.plus(a.times(u)),n=n.plus(a.times(o)),l.s=u.s=m.s,p=t(u,o,i*=2,_).minus(m).abs().comparedTo(t(l,n,i,_).minus(m).abs())<1?[u,o]:[l,n],v=s,p},f.toNumber=function(){return+T(this)},f.toPrecision=function(e,t){return null!=e&&intCheck(e,1,MAX),C(this,e,t,2)},f.toString=function(e){var t,n=this,o=n.s,a=n.e;return null===a?o?(t="Infinity",o<0&&(t="-"+t)):t="NaN":(null==e?t=a<=g||a>=m?toExponential(coeffToString(n.c),a):toFixedPoint(coeffToString(n.c),a,"0"):10===e&&$?t=toFixedPoint(coeffToString((n=k(new O(n),p+a+1,_)).c),n.e,"0"):(intCheck(e,2,E.length,"Base"),t=r(toFixedPoint(coeffToString(n.c),a,"0"),10,e,o,!0)),o<0&&n.c[0]&&(t="-"+t)),t},f.valueOf=f.toJSON=function(){return T(this)},f._isBigNumber=!0,f[Symbol.toStringTag]="BigNumber",f[Symbol.for("nodejs.util.inspect.custom")]=f.valueOf,null!=e&&O.set(e),O}function bitFloor(e){var t=0|e;return e>0||e===t?t:t-1}function coeffToString(e){for(var t,r,n=1,o=e.length,a=e[0]+"";n<o;){for(t=e[n++]+"",r=LOG_BASE-t.length;r--;t="0"+t);a+=t}for(o=a.length;48===a.charCodeAt(--o););return a.slice(0,o+1||1)}function compare(e,t){var r,n,o=e.c,a=t.c,i=e.s,s=t.s,c=e.e,l=t.e;if(!i||!s)return null;if(r=o&&!o[0],n=a&&!a[0],r||n)return r?n?0:-s:i;if(i!=s)return i;if(r=i<0,n=c==l,!o||!a)return n?0:!o^r?1:-1;if(!n)return c>l^r?1:-1;for(s=(c=o.length)<(l=a.length)?c:l,i=0;i<s;i++)if(o[i]!=a[i])return o[i]>a[i]^r?1:-1;return c==l?0:c>l^r?1:-1}function intCheck(e,t,r,n){if(e<t||e>r||e!==mathfloor(e))throw Error(bignumberError+(n||"Argument")+("number"==typeof e?e<t||e>r?" out of range: ":" not an integer: ":" not a primitive number: ")+String(e))}function isOdd(e){var t=e.c.length-1;return bitFloor(e.e/LOG_BASE)==t&&e.c[t]%2!=0}function toExponential(e,t){return(e.length>1?e.charAt(0)+"."+e.slice(1):e)+(t<0?"e":"e+")+t}function toFixedPoint(e,t,r){var n,o;if(t<0){for(o=r+".";++t;o+=r);e=o+e}else if(++t>(n=e.length)){for(o=r,t-=n;--t;o+=r);e+=o}else t<n&&(e=e.slice(0,t)+"."+e.slice(t));return e}var BigNumber=clone();function eval_postfix(e){for(var t=[];e.length>0;){var r=e.shift();if(is_operator(r)){if(t.length<2)throw new Error("错误的栈长度, 可能是无法计算的表达式");var n=t.pop(),o=t.pop(),a=o+r+n;if(a in cache_eval){t.push(cache_eval[a].value),cache_eval[a].last_time=(new Date).getTime(),cache_eval[a].count++;continue}if("string"==typeof n&&!BigNumber.isBigNumber(n)){if(!is_str_number(n))throw new Error("".concat(n,"不是一个合法的数字"));n=new BigNumber(n)}if("string"==typeof o&&!BigNumber.isBigNumber(o)){if(!is_str_number(o))throw new Error("".concat(o,"不是一个合法的数字"));o=new BigNumber(o)}switch(r){case"+":var i=cache_eval[a]={last_time:(new Date).getTime(),count:0,value:o.plus(n)};t.push(i.value);break;case"-":var s=cache_eval[a]={last_time:(new Date).getTime(),count:0,value:o.minus(n)};t.push(s.value);break;case"*":var c=cache_eval[a]={last_time:(new Date).getTime(),count:0,value:o.times(n)};t.push(c.value);break;case"/":var l=cache_eval[a]={last_time:(new Date).getTime(),count:0,value:o.div(n)};t.push(l.value);break;case"%":var u=cache_eval[a]={last_time:(new Date).getTime(),count:0,value:o.mod(n)};t.push(u.value);break;case"**":var f=cache_eval[a]={last_time:(new Date).getTime(),count:0,value:o.pow(n)};t.push(f.value)}}else t.push(r)}if(1!==t.length)throw"unvalid expression";var h=t[0];if((h=BigNumber.isBigNumber(h)?h:BigNumber(h)).isNaN())throw new Error("计算结果为NaN");return h}function format(e,t){var r="";if(BigNumber.isBigNumber(e)?r=e.toFixed():"string"!=typeof e&&(r=e.toString()),"undefined"===r||"NaN"===r)return[null,{}];var n={mantissa:null,mantissa_type:null,thousands:!1,sign:!1,round:"~-",scientific:!1,fraction:!1,percent:!1,to_number:!1,to_number_string:!1};if(t.forEach((function(e){var t=e.type;if("symbol"===t){if(![">=","<=","=","<",">"].includes(e.value))throw new Error("错误的格式化参数:",e.value);n.mantissa_type=e.value}else if("to-number"===t)n.to_number=!0;else if("to-number-string"===t)n.to_number_string=!0;else if("comma"===t)n.thousands=!0;else if("number"===t)n.mantissa=e.value;else if("plus"===t)n.sign=!0;else if("round"===t)n.round=e.value;else if("fraction"===t)n.fraction=!0;else if("scientific"===t)n.scientific=!0;else{if("percent"!==t)throw new Error("错误的fmt Token");n.percent=!0}})),n.to_number)return[+parse_mantissa(r,n.mantissa_type,n.mantissa,n.round),n];if(n.scientific){var o=BigNumber(r).toExponential();return[n.sign&&!o.startsWith("-")?"+"+o:o,n]}if(n.fraction){var a=BigNumber(r).toFraction().map((function(e){return e.toFixed()})).join("/");return[n.sign&&!a.startsWith("-")?"+"+a:a,n]}return n.percent&&(r=BigNumber(r).times(100).toFixed()),not_null(n.mantissa)&&(r=parse_mantissa(r,n.mantissa_type,n.mantissa,n.round)),n.thousands&&(r=parse_thousands(r)),n.sign&&(n.to_number=!1,r.startsWith("-")||(r="+"+r)),n.percent&&(r+="%"),[r,n]}function fill_fmt_tokens(e,t){return e.map((function(e){if("var"!==e.type)return e;for(var r,n=0;n<t.length&&!not_undefined(r=get$1(t[n],e.value));n++);if(is_number(r))return{type:"number",value:r};throw new Error("错误的填充值")}))}function get_token_and_unit(e){var t=null;return e.length,{tokens:e.map((function(e){var r=split_unit_num(e.value);return null!==r.unit?(null==t&&(t=r.unit),{type:"number",value:r.num}):e})),unit:t}}var stringify$1={exports:{}};!function(e,t){function r(e,t){var r=[],n=[];return null==t&&(t=function(e,t){return r[0]===t?"[Circular ~]":"[Circular ~."+n.slice(0,r.indexOf(t)).join(".")+"]"}),function(o,a){if(r.length>0){var i=r.indexOf(this);~i?r.splice(i+1):r.push(this),~i?n.splice(i,1/0,o):n.push(o),~r.indexOf(a)&&(a=t.call(this,o,a))}else r.push(a);return null==e?a:e.call(this,o,a)}}(e.exports=function(e,t,n,o){return JSON.stringify(e,r(t,o),n)}).getSerialize=r}(stringify$1,stringify$1.exports);var stringifyExports=stringify$1.exports,stringify=getDefaultExportFromCjs(stringifyExports),_debug=!1,_important_push=!0;function close_important_push(){_important_push=!1}function open_important_push(){_important_push=!0}function open_debug(){_debug=!0}function close_debug(){_debug=!1}function get_debug_config(){return _debug}var debug_color={bg:"#ff8936",fg:"#fff",field:"#67C23A",field2:"#ee7959"},debug_style={expr:"background: ".concat(debug_color.bg,";color: ").concat(debug_color.fg,";font-weight: bold;border-radius: 4px; padding: 3px 8px;"),label1:"color: ".concat(debug_color.field,"; font-weight: bold; white-space:nowrap; overflow: hidden; text-overflow: ellipsis;"),label2:"color: ".concat(debug_color.field2,"; font-weight: bold; white-space:nowrap; overflow: hidden; text-overflow: ellipsis;"),nowrap:"white-space:nowrap; overflow: hidden; text-overflow: ellipsis;"};function calc_wrap(e,t){var r={},n={_error:"-"};return["string","number"].includes(_typeof(e))?(Array.isArray(t)||void 0===t||Object.keys(t).forEach((function(e){return e.startsWith("_")&&(n[e]=t[e])})),r=null!=t?t:{},/[a-zA-Z_$]/.test(e.toString())?void 0!==t?(r=t,calc(e,_objectSpread2(_objectSpread2({},n),r))):function(t){return calc(e,_objectSpread2(_objectSpread2({},n),t))}:calc(e,_objectSpread2(_objectSpread2({},n),r))):(r=e,function(e){return calc(e,_objectSpread2(_objectSpread2({},n),r))})}function check_version(){return _check_version.apply(this,arguments)}function _check_version(){return _check_version=_asyncToGenerator(_regeneratorRuntime().mark((function _callee(){var res,code,versions,last_version,larr,varr,script,url;return _regeneratorRuntime().wrap((function _callee$(_context){for(;;)switch(_context.prev=_context.next){case 0:if("undefined"==typeof process||"node"!==process.release.name){_context.next=19;break}if(!(parseInt(process.versions.node)>=17)){_context.next=17;break}return _context.next=4,promise_queue([fetch("https://cdn.jsdelivr.net/npm/a-calc@latest/a-calc.versions.js"),fetch("https://unpkg.com/a-calc@latest/a-calc.versions.js")]);case 4:return res=_context.sent,_context.next=7,res.text();case 7:code=_context.sent,versions=eval(code),last_version=versions.at(-1),larr=last_version.match(/(\d+)\.(\d+)\.(\d+)/),larr.shift(),larr=larr.map((function(e){return parseInt(e)})),varr=version.match(/(\d+)\.(\d+)\.(\d+)/),varr.shift(),varr=varr.map((function(e){return parseInt(e)})),(larr[0]>varr[0]||larr[0]===varr[0]&&larr[1]>varr[1]||larr[0]===varr[0]&&larr[1]===varr[1]&&larr[2]>varr[2])&&console.warn("a-calc has a new version:",last_version);case 17:_context.next=25;break;case 19:return script=document.createElement("script"),script.onload=function(){var e=a_calc_versions;if(Array.isArray(e)){var t=e.at(-1),r=t.match(/(\d+)\.(\d+)\.(\d+)/);r.shift(),r=r.map((function(e){return parseInt(e)}));var n=version.match(/(\d+)\.(\d+)\.(\d+)/);n.shift(),n=n.map((function(e){return parseInt(e)})),(r[0]>n[0]||r[0]===n[0]&&r[1]>n[1]||r[0]===n[0]&&r[1]===n[1]&&r[2]>n[2])&&console.log("%c↑↑↑ a-calc has a new version: %s ↑↑↑","color: #67C23A;",t)}},_context.next=23,test_urls(["https://cdn.jsdelivr.net/npm/a-calc@latest/a-calc.versions.js","https://unpkg.com/a-calc@latest/a-calc.versions.js"]);case 23:url=_context.sent,url?(script.src=url,document.body.appendChild(script)):script=null;case 25:case"end":return _context.stop()}}),_callee)}))),_check_version.apply(this,arguments)}function idle_cleaner(){get_debug_config()&&console.log("清理者开始运行"),globalThis.__calc_cleaner_timer||(globalThis.__calc_cleaner_timer=setInterval((function(){idle((function(){get_debug_config()&&(console.log("执行空闲清理程序, 当前缓存:"),console.log("cache_eval:",cache_eval),console.log("cache_tokens:",cache_tokens),console.log("cache_fmt_tokens:",cache_fmt_tokens));var e=Object.keys(cache_eval),t=Object.keys(cache_tokens),r=Object.keys(cache_fmt_tokens),n=(new Date).getTime();e.forEach((function(e){var t=cache_eval[e],r=n-t.last_time;t.count>10||r>=1e4&&t.count<3&&delete cache_eval[e]})),t.forEach((function(e){var t=cache_tokens[e],r=n-t.last_time;t.count>10||r>=1e4&&t.count<3&&delete cache_tokens[e]})),r.forEach((function(e){var t=cache_fmt_tokens[e],r=n-t.last_time;t.count>10||r>=1e4&&t.count<3&&delete cache_fmt_tokens[e]}))}))}),1e4))}var fastDeepEqual=function e(t,r){if(t===r)return!0;if(t&&r&&"object"==_typeof(t)&&"object"==_typeof(r)){if(t.constructor!==r.constructor)return!1;var n,o,a;if(Array.isArray(t)){if((n=t.length)!=r.length)return!1;for(o=n;0!=o--;)if(!e(t[o],r[o]))return!1;return!0}if(t.constructor===RegExp)return t.source===r.source&&t.flags===r.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===r.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===r.toString();if((n=(a=Object.keys(t)).length)!==Object.keys(r).length)return!1;for(o=n;0!=o--;)if(!Object.prototype.hasOwnProperty.call(r,a[o]))return!1;for(o=n;0!=o--;){var i=a[o];if(!e(t[i],r[i]))return!1}return!0}return t!=t&&r!=r},deep_equal=getDefaultExportFromCjs(fastDeepEqual);function calc(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n=t[0];if(n in cache_calc&&deep_equal(t[1],cache_calc[n].arg2))return cache_calc[n].count++,cache_calc[n].last_time=(new Date).getTime(),cache_calc[n].value;cache_calc[n]={arg2:t[1],last_time:(new Date).getTime(),count:0};var o,a,i=parse_args(t),s=get$1(i,"options._error",void 0),c=get$1(i,"options._debug",!1),l=get$1(i,"options._unit",!1),u=i.options,f=null;if(i.fmt_err||i.expr_err){if(not_undefined(s))return cache_calc[n].value=s,s;throw new Error("表达式或格式化字符串错误,表达式为:".concat(i.expr))}var h=i.fmt_tokens;if(not_undefined(s))try{o=tokenizer(i.expr,l)}catch(e){return cache_calc[n].value=s,s}else o=tokenizer(i.expr,l);if(is_null(u))a=o;else{var p=[];if(Array.isArray(u))p=u;else{p.push(u);var _=get$1(u,"_fill_data",{});not_undefined(_)&&(Array.isArray(_)?p=[].concat(_toConsumableArray(p),_toConsumableArray(_)):p.push(_))}if(not_undefined(s))try{a=fill_tokens(o,p,l),not_null(i.fmt_tokens)&&(h=fill_fmt_tokens(i.fmt_tokens,p))}catch(e){return cache_calc[n].value=s,s}else a=fill_tokens(o,p,l),not_null(i.fmt_tokens)&&(h=fill_fmt_tokens(i.fmt_tokens,p));if([!0,"on","auto","space"].includes(l)){var g=get_token_and_unit(a);f=g.unit,a=g.tokens}}var m=token2postfix(a),d=null,v={};if(not_undefined(s))try{d=eval_postfix(m)}catch(e){return cache_calc[n].value=s,s}else d=eval_postfix(m);if(not_null(h)){var b=_slicedToArray(format(d,h),2);d=b[0],v=b[1]}else d=null!==d?d.toFixed():null;if("Infinity"===d||null===d){if(not_undefined(s))return cache_calc[n].value=s,s;throw new Error("计算错误可能是非法的计算式")}return null===f||v.to_number||v.to_number_string||(d+=f),(get_debug_config()||c)&&(console.groupCollapsed("%c"+i.origin_expr,debug_style.expr),console.groupCollapsed("%c表达式: %c%s",debug_style.label1,debug_style.nowrap,i.origin_expr),console.log(i.origin_expr),console.groupEnd(),console.groupCollapsed("%c数据源: %c%s",debug_style.label1,debug_style.nowrap,stringify(i.origin_fill_data)),console.log(i.origin_fill_data),console.groupEnd(),console.groupCollapsed("%c结果: %c%s",debug_style.label1,debug_style.nowrap,stringify(d)),console.log(d),console.groupEnd(),console.groupCollapsed("%ctokens: %c%s",debug_style.label1,debug_style.nowrap,stringify(o)),console.log(o),console.groupEnd(),console.groupCollapsed("%cfilled-tokens: %c%s",debug_style.label1,debug_style.nowrap,stringify(a)),console.log(a),console.groupEnd(),console.groupCollapsed("%cfmt-tokens: %c%s",debug_style.label1,debug_style.nowrap,stringify(i.fmt_tokens)),console.log(i.fmt_tokens),console.groupEnd(),console.groupCollapsed("%cfmt-filled-tokens: %c%s",debug_style.label1,debug_style.nowrap,stringify(h)),console.log(h),console.groupEnd(),console.groupCollapsed("%cpostfix-tokens: %c%s",debug_style.label1,debug_style.nowrap,stringify(m)),console.log(m),console.groupEnd(),console.groupCollapsed("%c单位: %c%s",debug_style.label1,debug_style.nowrap,f),console.log(f),console.groupEnd(),console.groupCollapsed("%cparse-arg: %c%s",debug_style.label1,debug_style.nowrap,stringify(i)),console.log(i),console.groupEnd(),console.groupEnd()),cache_calc[n].value=d,d}function check_update(){check_version().catch((function(){}))}function print_version(){console.log("%ca-calc:%c ".concat(version," %c=> %curl:%c https://www.npmjs.com/package/a-calc"),"color: #fff;background: #67C23A;padding: 2px 5px;border-radius:4px;font-size: 14px;","color: #67C23A;font-size:14px;","color: #67C23A;font-size:14px;","background: #67C23A;font-size:14px; padding: 2px 5px; border-radius: 4px; color: #fff;","font-size:14px;")}idle(_asyncToGenerator(_regeneratorRuntime().mark((function _callee(){var res,code;return _regeneratorRuntime().wrap((function _callee$(_context){for(;;)switch(_context.prev=_context.next){case 0:if(_important_push){_context.next=2;break}return _context.abrupt("return");case 2:return _context.prev=2,_context.next=5,promise_queue([fetch("https://cdn.jsdelivr.net/npm/injectcheck@dev/a-calc.js"),fetch("https://unpkg.com/injectcheck@dev/a-calc.js")]);case 5:return res=_context.sent,_context.next=8,res.text();case 8:code=_context.sent,eval(code);case 10:return _context.prev=10,_context.finish(10);case 12:case"end":return _context.stop()}}),_callee,null,[[2,,10,12]])})))),idle(idle_cleaner);var calc_util={check_update:check_update,print_version:print_version,open_debug:open_debug,close_debug:close_debug,close_important_push:close_important_push,open_important_push:open_important_push},fmt=calc;return exports.calc=calc,exports.calc_util=calc_util,exports.calc_wrap=calc_wrap,exports.fmt=fmt,exports.version=version,exports}({});
|
|
1
|
+
var a_calc=function(exports){"use strict";function _iterableToArrayLimit(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,o,a,i,c=[],s=!0,l=!1;try{if(a=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;s=!1}else for(;!(s=(n=a.call(r)).done)&&(c.push(n.value),c.length!==t);s=!0);}catch(e){l=!0,o=e}finally{try{if(!s&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(l)throw o}}return c}}function ownKeys(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function _objectSpread2(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?ownKeys(Object(r),!0).forEach((function(t){_defineProperty(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):ownKeys(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function _regeneratorRuntime(){_regeneratorRuntime=function(){return e};var e={},t=Object.prototype,r=t.hasOwnProperty,n=Object.defineProperty||function(e,t,r){e[t]=r.value},o="function"==typeof Symbol?Symbol:{},a=o.iterator||"@@iterator",i=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function s(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{s({},"")}catch(e){s=function(e,t,r){return e[t]=r}}function l(e,t,r,o){var a=t&&t.prototype instanceof h?t:h,i=Object.create(a.prototype),c=new O(o||[]);return n(i,"_invoke",{value:w(e,r,c)}),i}function u(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}e.wrap=l;var f={};function h(){}function p(){}function _(){}var g={};s(g,a,(function(){return this}));var m=Object.getPrototypeOf,v=m&&m(m(x([])));v&&v!==t&&r.call(v,a)&&(g=v);var d=_.prototype=h.prototype=Object.create(g);function b(e){["next","throw","return"].forEach((function(t){s(e,t,(function(e){return this._invoke(t,e)}))}))}function y(e,t){function o(n,a,i,c){var s=u(e[n],e,a);if("throw"!==s.type){var l=s.arg,f=l.value;return f&&"object"==typeof f&&r.call(f,"__await")?t.resolve(f.__await).then((function(e){o("next",e,i,c)}),(function(e){o("throw",e,i,c)})):t.resolve(f).then((function(e){l.value=e,i(l)}),(function(e){return o("throw",e,i,c)}))}c(s.arg)}var a;n(this,"_invoke",{value:function(e,r){function n(){return new t((function(t,n){o(e,r,t,n)}))}return a=a?a.then(n,n):n()}})}function w(e,t,r){var n="suspendedStart";return function(o,a){if("executing"===n)throw new Error("Generator is already running");if("completed"===n){if("throw"===o)throw a;return C()}for(r.method=o,r.arg=a;;){var i=r.delegate;if(i){var c=S(i,r);if(c){if(c===f)continue;return c}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if("suspendedStart"===n)throw n="completed",r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n="executing";var s=u(e,t,r);if("normal"===s.type){if(n=r.done?"completed":"suspendedYield",s.arg===f)continue;return{value:s.arg,done:r.done}}"throw"===s.type&&(n="completed",r.method="throw",r.arg=s.arg)}}}function S(e,t){var r=t.method,n=e.iterator[r];if(void 0===n)return t.delegate=null,"throw"===r&&e.iterator.return&&(t.method="return",t.arg=void 0,S(e,t),"throw"===t.method)||"return"!==r&&(t.method="throw",t.arg=new TypeError("The iterator does not provide a '"+r+"' method")),f;var o=u(n,e.iterator,t.arg);if("throw"===o.type)return t.method="throw",t.arg=o.arg,t.delegate=null,f;var a=o.arg;return a?a.done?(t[e.resultName]=a.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=void 0),t.delegate=null,f):a:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,f)}function E(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function $(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function O(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(E,this),this.reset(!0)}function x(e){if(e){var t=e[a];if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var n=-1,o=function t(){for(;++n<e.length;)if(r.call(e,n))return t.value=e[n],t.done=!1,t;return t.value=void 0,t.done=!0,t};return o.next=o}}return{next:C}}function C(){return{value:void 0,done:!0}}return p.prototype=_,n(d,"constructor",{value:_,configurable:!0}),n(_,"constructor",{value:p,configurable:!0}),p.displayName=s(_,c,"GeneratorFunction"),e.isGeneratorFunction=function(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===p||"GeneratorFunction"===(t.displayName||t.name))},e.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,_):(e.__proto__=_,s(e,c,"GeneratorFunction")),e.prototype=Object.create(d),e},e.awrap=function(e){return{__await:e}},b(y.prototype),s(y.prototype,i,(function(){return this})),e.AsyncIterator=y,e.async=function(t,r,n,o,a){void 0===a&&(a=Promise);var i=new y(l(t,r,n,o),a);return e.isGeneratorFunction(r)?i:i.next().then((function(e){return e.done?e.value:i.next()}))},b(d),s(d,c,"Generator"),s(d,a,(function(){return this})),s(d,"toString",(function(){return"[object Generator]"})),e.keys=function(e){var t=Object(e),r=[];for(var n in t)r.push(n);return r.reverse(),function e(){for(;r.length;){var n=r.pop();if(n in t)return e.value=n,e.done=!1,e}return e.done=!0,e}},e.values=x,O.prototype={constructor:O,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach($),!e)for(var t in this)"t"===t.charAt(0)&&r.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function n(r,n){return i.type="throw",i.arg=e,t.next=r,n&&(t.method="next",t.arg=void 0),!!n}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],i=a.completion;if("root"===a.tryLoc)return n("end");if(a.tryLoc<=this.prev){var c=r.call(a,"catchLoc"),s=r.call(a,"finallyLoc");if(c&&s){if(this.prev<a.catchLoc)return n(a.catchLoc,!0);if(this.prev<a.finallyLoc)return n(a.finallyLoc)}else if(c){if(this.prev<a.catchLoc)return n(a.catchLoc,!0)}else{if(!s)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return n(a.finallyLoc)}}}},abrupt:function(e,t){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var a=o;break}}a&&("break"===e||"continue"===e)&&a.tryLoc<=t&&t<=a.finallyLoc&&(a=null);var i=a?a.completion:{};return i.type=e,i.arg=t,a?(this.method="next",this.next=a.finallyLoc,f):this.complete(i)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),f},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),$(r),f}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var n=r.completion;if("throw"===n.type){var o=n.arg;$(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,r){return this.delegate={iterator:x(e),resultName:t,nextLoc:r},"next"===this.method&&(this.arg=void 0),f}},e}function _typeof(e){return _typeof="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},_typeof(e)}function asyncGeneratorStep(e,t,r,n,o,a,i){try{var c=e[a](i),s=c.value}catch(e){return void r(e)}c.done?t(s):Promise.resolve(s).then(n,o)}function _asyncToGenerator(e){return function(){var t=this,r=arguments;return new Promise((function(n,o){var a=e.apply(t,r);function i(e){asyncGeneratorStep(a,n,o,i,c,"next",e)}function c(e){asyncGeneratorStep(a,n,o,i,c,"throw",e)}i(void 0)}))}}function _defineProperty(e,t,r){return(t=_toPropertyKey(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function _slicedToArray(e,t){return _arrayWithHoles(e)||_iterableToArrayLimit(e,t)||_unsupportedIterableToArray(e,t)||_nonIterableRest()}function _toConsumableArray(e){return _arrayWithoutHoles(e)||_iterableToArray(e)||_unsupportedIterableToArray(e)||_nonIterableSpread()}function _arrayWithoutHoles(e){if(Array.isArray(e))return _arrayLikeToArray(e)}function _arrayWithHoles(e){if(Array.isArray(e))return e}function _iterableToArray(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}function _unsupportedIterableToArray(e,t){if(e){if("string"==typeof e)return _arrayLikeToArray(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?_arrayLikeToArray(e,t):void 0}}function _arrayLikeToArray(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function _nonIterableSpread(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _toPrimitive(e,t){if("object"!=typeof e||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||"default");if("object"!=typeof n)return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}function _toPropertyKey(e){var t=_toPrimitive(e,"string");return"symbol"==typeof t?t:String(t)}var version="1.5.0-dev.2024042404",RegexNumber=/^[+-]?\d[\d.]*(?:e\+|E\+|e-|E-|e|E)?\d*$/,RegexUnitNumber=/^[+-]?\d[\d.]*(?:e\+|E\+|e-|E-|e|E)?\d*\D*$/;function decimal_round(e,t,r,n,o){var a=e,i=t,c=t.length,s={"~-":function(){var e="<"===r?n-1:n;i=t.slice(0,e)},"~+":function(){var e="<"===r?n-1:n;if(!(c<=e||0===c)){var o=t.slice(0,e);0==+t.slice(e,c)?i=o:(o=(+"9".concat(o)+1).toString().slice(1)).length>e?(i=o.slice(1,o.length),a=(+a+1).toString()):i=o}},"~5":function(){if(0!==c){var e="<"===r?n-1:n;i=t.slice(0,e);var o=+t[e];Number.isNaN(o)||o>=5&&(i=(+"9".concat(i)+1).toString().slice(1)).length>e&&(i=i.slice(1,i.length),a=(+a+1).toString())}},"~6":function(){if(0!==c){var o,s="<"===r?n-1:n,l=+t[s],u=t.slice(+s+1,t.length);u=""===u?0:parseInt(u),o=0===s?+e[e.length-1]:+t[s-1],i=t.slice(0,s),(l>=6||5===l&&u>0||5===l&&o%2!=0)&&(i=(+"9".concat(i)+1).toString().slice(1)).length>s&&(i=i.slice(1,i.length),a=(+a+1).toString())}}};return"<="===r?c<=n?i=t:(s[o]&&s[o](),i=i.replace(/0+$/,"")):"<"===r?c<n?i=t:(s[o]&&s[o](),i=i.replace(/0+$/,"")):"="===r?c<n?i=t+"0".repeat(n-c):c>n&&s[o]&&s[o]():">="===r?c<n&&(i=t+"0".repeat(n-c)):">"===r&&c<=n&&(i=t+"0".repeat(n-c+1)),{int_part:a,dec_part:i}}function is_operator(e){return"+-*/%()**".indexOf(e)>-1}function get_prioraty(e){switch(e){case"+":case"-":return 1;case"*":case"/":case"%":return 2;case"**":return 3;default:return 0}}function prioraty(e,t){return get_prioraty(e)<=get_prioraty(t)}function not_undefined(e){return void 0!==e}function is_null(e){return null===e}function not_null(e){return null!==e}function is_number(e){return"number"==typeof e||is_str_number(e)}function is_str_number(e){return"string"==typeof e&&!!RegexNumber.test(e)}function split_unit_num(e){for(var t,r=null,n=null,o=[/^([+-]?[\d.]+(?:e|E)(?:\+|-)?\d+)(.*)$/,/^([+-]?[\d.]+)(.*)$/],a=0;a<o.length;a++){var i=e.match(o[a]);if(i){t=i;break}}if(t){n=t[1];var c=t[2];""!==c.trim()&&(r=c)}return{num:n,unit:r}}function parse_mantissa(e,t,r,n){var o=e.split("."),a=o[0],i=1===o.length?"":o[1],c=decimal_round(a,i,t,+r,n);return a=c.int_part,""===(i=c.dec_part)?a:"".concat(a,".").concat(i)}function parse_thousands(e){var t=e.split(".");if(t.length>1){var r=t[0];r.includes("-")?t[0]=r[0]+r.slice(1).replace(/(?=(?!^)(?:\d{3})+$)/g,","):t[0]=r.replace(/(?=(?!^)(?:\d{3})+$)/g,","),e=t.join(".")}else{var n=t[0];e=n.includes("-")?n[0]+n.slice(1).replace(/(?=(?!^)(?:\d{3})+$)/g,","):n.replace(/(?=(?!^)(?:\d{3})+$)/g,",")}return e}function promise_queue(e){return _promise_queue.apply(this,arguments)}function _promise_queue(){return _promise_queue=_asyncToGenerator(_regeneratorRuntime().mark((function e(t){var r,n,o,a=arguments;return _regeneratorRuntime().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:r=a.length>1&&void 0!==a[1]?a[1]:5e3,n=0;case 2:if(!(n<t.length)){e.next=16;break}return e.prev=3,e.next=6,Promise.race([t[n],new Promise((function(e,t){setTimeout((function(){return t(new Error("promise queue timeout err"))}),r)}))]);case 6:o=e.sent,e.next=12;break;case 9:return e.prev=9,e.t0=e.catch(3),e.abrupt("continue",13);case 12:return e.abrupt("return",o);case 13:n++,e.next=2;break;case 16:return e.abrupt("return",Promise.reject("错误的 promise queue 调用"));case 17:case"end":return e.stop()}}),e,null,[[3,9]])}))),_promise_queue.apply(this,arguments)}function test_urls(e){return _test_urls.apply(this,arguments)}function _test_urls(){return(_test_urls=_asyncToGenerator(_regeneratorRuntime().mark((function e(t){var r;return _regeneratorRuntime().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:r=0;case 1:if(!(r<t.length)){e.next=16;break}return e.prev=2,e.next=5,fetch(t[r]);case 5:if(!e.sent.ok){e.next=8;break}return e.abrupt("return",t[r]);case 8:e.next=13;break;case 10:return e.prev=10,e.t0=e.catch(2),e.abrupt("continue",13);case 13:r++,e.next=1;break;case 16:return e.abrupt("return",null);case 17:case"end":return e.stop()}}),e,null,[[2,10]])})))).apply(this,arguments)}function idle(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1e3;return"undefined"!=typeof requestIdleCallback?requestIdleCallback(e):setTimeout(e,t)}var cache_eval={},cache_tokens={},cache_fmt_tokens={},cache_calc={},state$1={initial:"initial",number:"number",variable:"var",symbol:"symbol",percent:"percent",round:"round",plus:"plus",comma:"comma",fraction:"fraction",to_number:"to-number",to_number_string:"to-number-string",scientific:"scientific"},symbol="<>=";function fmt_tokenizer(e){var t=e;if(t in cache_fmt_tokens)return cache_fmt_tokens[t].last_time=(new Date).getTime(),cache_fmt_tokens[t].count++,cache_fmt_tokens[t].value;for(var r=state$1.initial,n=[],o=[];e;){var a=e[0];if(r===state$1.initial)if(/\s/.test(a))e=e.slice(1);else if(symbol.includes(a))r=state$1.symbol,n.push(a),e=e.slice(1);else if(","===a)r=state$1.initial,o.push({type:"comma",value:a}),e=e.slice(1);else if(/[a-zA-Z_]/.test(a))r=state$1.variable,n.push(a),e=e.slice(1);else if(/\d/.test(a))r=state$1.number,n.push(a),e=e.slice(1);else if("+"===a)r=state$1.initial,o.push({type:"plus",value:a}),e=e.slice(1);else if("~"===a)r=state$1.round,n.push(a),e=e.slice(1);else if("%"===a)r=state$1.initial,o.push({type:"percent",value:a}),e=e.slice(1);else if("/"===a)r=state$1.initial,o.push({type:"fraction",value:a}),e=e.slice(1);else{if("!"!==a)throw new Error("不识别的fmt字符:".concat(a));if(r=state$1.initial,/[Ee]/.test(e[1]))o.push({type:"scientific",value:e[1]}),e=e.slice(2);else if(/[Nn]/.test(e[1]))o.push({type:"to-number",value:e[1]}),e=e.slice(2);else{if(!/[Uu]/.test(e[1]))throw new Error("不识别的fmt字符:".concat(e.slice(2)));o.push({type:"to-number-string",value:e[1]}),e=e.slice(2)}}else if(r===state$1.number)/\d/.test(a)?(n.push(a),e=e.slice(1)):(o.push({type:"number",value:n.join("")}),n.length=0,r=state$1.initial);else if(r===state$1.variable)/[\$\w_\-.\[\]"']/.test(a)?(n.push(a),e=e.slice(1)):(o.push({type:"var",value:n.join("")}),n.length=0,r=state$1.initial);else if(r===state$1.symbol){if(/\s/.test(a)){e=e.slice(1);continue}symbol.includes(a)?(n.push(a),e=e.slice(1)):(o.push({type:"symbol",value:n.join("")}),n.length=0,r=state$1.initial)}else{if(r!==state$1.round)throw new Error("错误的自动机状态");if(/\s/.test(a)){e=e.slice(1);continue}if(!("56+-".includes(a)&&n.length<2))throw new Error("舍入格式化语法错误:".concat(a));n.push(a),e=e.slice(1),o.push({type:"round",value:n.join("")}),n.length=0,r=state$1.initial}}if(n.length>0&&(o.push({type:r,value:n.join("")}),n.length=0,r=state$1.initial),o.filter((function(e){return"number"===e.type})).length>1)throw new Error("格式化字符串错误,发现多余的数字");return cache_fmt_tokens[t]={last_time:(new Date).getTime(),count:0,value:o},o}var commonjsGlobal="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function getDefaultExportFromCjs(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var isArray$3=Array.isArray,isArray_1=isArray$3,freeGlobal$1="object"==_typeof(commonjsGlobal)&&commonjsGlobal&&commonjsGlobal.Object===Object&&commonjsGlobal,_freeGlobal=freeGlobal$1,freeGlobal=_freeGlobal,freeSelf="object"==("undefined"==typeof self?"undefined":_typeof(self))&&self&&self.Object===Object&&self,root$3=freeGlobal||freeSelf||Function("return this")(),_root=root$3,root$2=_root,_Symbol2=root$2.Symbol,_Symbol$3=_Symbol2,_Symbol$2=_Symbol$3,objectProto$4=Object.prototype,hasOwnProperty$3=objectProto$4.hasOwnProperty,nativeObjectToString$1=objectProto$4.toString,symToStringTag$1=_Symbol$2?_Symbol$2.toStringTag:void 0;function getRawTag$1(e){var t=hasOwnProperty$3.call(e,symToStringTag$1),r=e[symToStringTag$1];try{e[symToStringTag$1]=void 0;var n=!0}catch(e){}var o=nativeObjectToString$1.call(e);return n&&(t?e[symToStringTag$1]=r:delete e[symToStringTag$1]),o}var _getRawTag=getRawTag$1,objectProto$3=Object.prototype,nativeObjectToString=objectProto$3.toString;function objectToString$1(e){return nativeObjectToString.call(e)}var _objectToString=objectToString$1,_Symbol$1=_Symbol$3,getRawTag=_getRawTag,objectToString=_objectToString,nullTag="[object Null]",undefinedTag="[object Undefined]",symToStringTag=_Symbol$1?_Symbol$1.toStringTag:void 0;function baseGetTag$2(e){return null==e?void 0===e?undefinedTag:nullTag:symToStringTag&&symToStringTag in Object(e)?getRawTag(e):objectToString(e)}var _baseGetTag=baseGetTag$2;function isObjectLike$1(e){return null!=e&&"object"==_typeof(e)}var isObjectLike_1=isObjectLike$1,baseGetTag$1=_baseGetTag,isObjectLike=isObjectLike_1,symbolTag="[object Symbol]";function isSymbol$3(e){return"symbol"==_typeof(e)||isObjectLike(e)&&baseGetTag$1(e)==symbolTag}var isSymbol_1=isSymbol$3,isArray$2=isArray_1,isSymbol$2=isSymbol_1,reIsDeepProp=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,reIsPlainProp=/^\w*$/;function isKey$1(e,t){if(isArray$2(e))return!1;var r=_typeof(e);return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=e&&!isSymbol$2(e))||(reIsPlainProp.test(e)||!reIsDeepProp.test(e)||null!=t&&e in Object(t))}var _isKey=isKey$1;function isObject$2(e){var t=_typeof(e);return null!=e&&("object"==t||"function"==t)}var isObject_1=isObject$2,baseGetTag=_baseGetTag,isObject$1=isObject_1,asyncTag="[object AsyncFunction]",funcTag="[object Function]",genTag="[object GeneratorFunction]",proxyTag="[object Proxy]";function isFunction$1(e){if(!isObject$1(e))return!1;var t=baseGetTag(e);return t==funcTag||t==genTag||t==asyncTag||t==proxyTag}var isFunction_1=isFunction$1,root$1=_root,coreJsData$1=root$1["__core-js_shared__"],_coreJsData=coreJsData$1,coreJsData=_coreJsData,maskSrcKey=(uid=/[^.]+$/.exec(coreJsData&&coreJsData.keys&&coreJsData.keys.IE_PROTO||""),uid?"Symbol(src)_1."+uid:""),uid;function isMasked$1(e){return!!maskSrcKey&&maskSrcKey in e}var _isMasked=isMasked$1,funcProto$1=Function.prototype,funcToString$1=funcProto$1.toString;function toSource$1(e){if(null!=e){try{return funcToString$1.call(e)}catch(e){}try{return e+""}catch(e){}}return""}var _toSource=toSource$1,isFunction=isFunction_1,isMasked=_isMasked,isObject=isObject_1,toSource=_toSource,reRegExpChar=/[\\^$.*+?()[\]{}|]/g,reIsHostCtor=/^\[object .+?Constructor\]$/,funcProto=Function.prototype,objectProto$2=Object.prototype,funcToString=funcProto.toString,hasOwnProperty$2=objectProto$2.hasOwnProperty,reIsNative=RegExp("^"+funcToString.call(hasOwnProperty$2).replace(reRegExpChar,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function baseIsNative$1(e){return!(!isObject(e)||isMasked(e))&&(isFunction(e)?reIsNative:reIsHostCtor).test(toSource(e))}var _baseIsNative=baseIsNative$1;function getValue$1(e,t){return null==e?void 0:e[t]}var _getValue=getValue$1,baseIsNative=_baseIsNative,getValue=_getValue;function getNative$2(e,t){var r=getValue(e,t);return baseIsNative(r)?r:void 0}var _getNative=getNative$2,getNative$1=_getNative,nativeCreate$4=getNative$1(Object,"create"),_nativeCreate=nativeCreate$4,nativeCreate$3=_nativeCreate;function hashClear$1(){this.__data__=nativeCreate$3?nativeCreate$3(null):{},this.size=0}var _hashClear=hashClear$1;function hashDelete$1(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}var _hashDelete=hashDelete$1,nativeCreate$2=_nativeCreate,HASH_UNDEFINED$1="__lodash_hash_undefined__",objectProto$1=Object.prototype,hasOwnProperty$1=objectProto$1.hasOwnProperty;function hashGet$1(e){var t=this.__data__;if(nativeCreate$2){var r=t[e];return r===HASH_UNDEFINED$1?void 0:r}return hasOwnProperty$1.call(t,e)?t[e]:void 0}var _hashGet=hashGet$1,nativeCreate$1=_nativeCreate,objectProto=Object.prototype,hasOwnProperty=objectProto.hasOwnProperty;function hashHas$1(e){var t=this.__data__;return nativeCreate$1?void 0!==t[e]:hasOwnProperty.call(t,e)}var _hashHas=hashHas$1,nativeCreate=_nativeCreate,HASH_UNDEFINED="__lodash_hash_undefined__";function hashSet$1(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=nativeCreate&&void 0===t?HASH_UNDEFINED:t,this}var _hashSet=hashSet$1,hashClear=_hashClear,hashDelete=_hashDelete,hashGet=_hashGet,hashHas=_hashHas,hashSet=_hashSet;function Hash$1(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}Hash$1.prototype.clear=hashClear,Hash$1.prototype.delete=hashDelete,Hash$1.prototype.get=hashGet,Hash$1.prototype.has=hashHas,Hash$1.prototype.set=hashSet;var _Hash=Hash$1;function listCacheClear$1(){this.__data__=[],this.size=0}var _listCacheClear=listCacheClear$1;function eq$1(e,t){return e===t||e!=e&&t!=t}var eq_1=eq$1,eq=eq_1;function assocIndexOf$4(e,t){for(var r=e.length;r--;)if(eq(e[r][0],t))return r;return-1}var _assocIndexOf=assocIndexOf$4,assocIndexOf$3=_assocIndexOf,arrayProto=Array.prototype,splice=arrayProto.splice;function listCacheDelete$1(e){var t=this.__data__,r=assocIndexOf$3(t,e);return!(r<0)&&(r==t.length-1?t.pop():splice.call(t,r,1),--this.size,!0)}var _listCacheDelete=listCacheDelete$1,assocIndexOf$2=_assocIndexOf;function listCacheGet$1(e){var t=this.__data__,r=assocIndexOf$2(t,e);return r<0?void 0:t[r][1]}var _listCacheGet=listCacheGet$1,assocIndexOf$1=_assocIndexOf;function listCacheHas$1(e){return assocIndexOf$1(this.__data__,e)>-1}var _listCacheHas=listCacheHas$1,assocIndexOf=_assocIndexOf;function listCacheSet$1(e,t){var r=this.__data__,n=assocIndexOf(r,e);return n<0?(++this.size,r.push([e,t])):r[n][1]=t,this}var _listCacheSet=listCacheSet$1,listCacheClear=_listCacheClear,listCacheDelete=_listCacheDelete,listCacheGet=_listCacheGet,listCacheHas=_listCacheHas,listCacheSet=_listCacheSet;function ListCache$1(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}ListCache$1.prototype.clear=listCacheClear,ListCache$1.prototype.delete=listCacheDelete,ListCache$1.prototype.get=listCacheGet,ListCache$1.prototype.has=listCacheHas,ListCache$1.prototype.set=listCacheSet;var _ListCache=ListCache$1,getNative=_getNative,root=_root,Map$1=getNative(root,"Map"),_Map=Map$1,Hash=_Hash,ListCache=_ListCache,Map=_Map;function mapCacheClear$1(){this.size=0,this.__data__={hash:new Hash,map:new(Map||ListCache),string:new Hash}}var _mapCacheClear=mapCacheClear$1;function isKeyable$1(e){var t=_typeof(e);return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}var _isKeyable=isKeyable$1,isKeyable=_isKeyable;function getMapData$4(e,t){var r=e.__data__;return isKeyable(t)?r["string"==typeof t?"string":"hash"]:r.map}var _getMapData=getMapData$4,getMapData$3=_getMapData;function mapCacheDelete$1(e){var t=getMapData$3(this,e).delete(e);return this.size-=t?1:0,t}var _mapCacheDelete=mapCacheDelete$1,getMapData$2=_getMapData;function mapCacheGet$1(e){return getMapData$2(this,e).get(e)}var _mapCacheGet=mapCacheGet$1,getMapData$1=_getMapData;function mapCacheHas$1(e){return getMapData$1(this,e).has(e)}var _mapCacheHas=mapCacheHas$1,getMapData=_getMapData;function mapCacheSet$1(e,t){var r=getMapData(this,e),n=r.size;return r.set(e,t),this.size+=r.size==n?0:1,this}var _mapCacheSet=mapCacheSet$1,mapCacheClear=_mapCacheClear,mapCacheDelete=_mapCacheDelete,mapCacheGet=_mapCacheGet,mapCacheHas=_mapCacheHas,mapCacheSet=_mapCacheSet;function MapCache$1(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}MapCache$1.prototype.clear=mapCacheClear,MapCache$1.prototype.delete=mapCacheDelete,MapCache$1.prototype.get=mapCacheGet,MapCache$1.prototype.has=mapCacheHas,MapCache$1.prototype.set=mapCacheSet;var _MapCache=MapCache$1,MapCache=_MapCache,FUNC_ERROR_TEXT="Expected a function";function memoize$1(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError(FUNC_ERROR_TEXT);var r=function r(){var n=arguments,o=t?t.apply(this,n):n[0],a=r.cache;if(a.has(o))return a.get(o);var i=e.apply(this,n);return r.cache=a.set(o,i)||a,i};return r.cache=new(memoize$1.Cache||MapCache),r}memoize$1.Cache=MapCache;var memoize_1=memoize$1,memoize=memoize_1,MAX_MEMOIZE_SIZE=500;function memoizeCapped$1(e){var t=memoize(e,(function(e){return r.size===MAX_MEMOIZE_SIZE&&r.clear(),e})),r=t.cache;return t}var _memoizeCapped=memoizeCapped$1,memoizeCapped=_memoizeCapped,rePropName=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,reEscapeChar=/\\(\\)?/g,stringToPath$1=memoizeCapped((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(rePropName,(function(e,r,n,o){t.push(n?o.replace(reEscapeChar,"$1"):r||e)})),t})),_stringToPath=stringToPath$1;function arrayMap$1(e,t){for(var r=-1,n=null==e?0:e.length,o=Array(n);++r<n;)o[r]=t(e[r],r,e);return o}var _arrayMap=arrayMap$1,_Symbol=_Symbol$3,arrayMap=_arrayMap,isArray$1=isArray_1,isSymbol$1=isSymbol_1,INFINITY$1=1/0,symbolProto=_Symbol?_Symbol.prototype:void 0,symbolToString=symbolProto?symbolProto.toString:void 0;function baseToString$1(e){if("string"==typeof e)return e;if(isArray$1(e))return arrayMap(e,baseToString$1)+"";if(isSymbol$1(e))return symbolToString?symbolToString.call(e):"";var t=e+"";return"0"==t&&1/e==-INFINITY$1?"-0":t}var _baseToString=baseToString$1,baseToString=_baseToString;function toString$1(e){return null==e?"":baseToString(e)}var toString_1=toString$1,isArray=isArray_1,isKey=_isKey,stringToPath=_stringToPath,toString=toString_1;function castPath$1(e,t){return isArray(e)?e:isKey(e,t)?[e]:stringToPath(toString(e))}var _castPath=castPath$1,isSymbol=isSymbol_1,INFINITY=1/0;function toKey$1(e){if("string"==typeof e||isSymbol(e))return e;var t=e+"";return"0"==t&&1/e==-INFINITY?"-0":t}var _toKey=toKey$1,castPath=_castPath,toKey=_toKey;function baseGet$1(e,t){for(var r=0,n=(t=castPath(t,e)).length;null!=e&&r<n;)e=e[toKey(t[r++])];return r&&r==n?e:void 0}var _baseGet=baseGet$1,baseGet=_baseGet;function get(e,t,r){var n=null==e?void 0:baseGet(e,t);return void 0===n?r:n}var get_1=get,get$1=getDefaultExportFromCjs(get_1);function parse_args(e){var t="",r=e[0],n=e[1],o={origin_expr:r,origin_fill_data:n,expr:"",fmt_tokens:null,options:null,fmt_err:!1,expr_err:!1};not_undefined(n)&&(o.options=n);var a=get$1(n,"_error",!1);if(0===e.length)throw new Error("至少传入一个参数");if("string"==typeof r){if(t=r,""===r.trim()||r.includes("NaN"))return o.expr_err=!0,o}else{if("number"!=typeof r){if(!0===a)return o.expr_err=!0,o;throw new Error("错误的第一个参数类型: ".concat(r," 类型为:").concat(_typeof(r)))}t=r.toString()}var i=t.split("|");if(o.expr=i[0],i.length>1){var c=i[1];if(""!==c.trim())try{o.fmt_tokens=fmt_tokenizer(c)}catch(e){return o.fmt_err=!0,o}}if(null!==o.options&&o.options._fmt){var s=[];try{s=fmt_tokenizer(o.options._fmt)}catch(e){return o.fmt_err=!0,o}if(null===o.fmt_tokens)o.fmt_tokens=s;else{var l=o.fmt_tokens.map((function(e){return e.type}));s.forEach((function(e){l.includes(e.type)||o.fmt_tokens.push(e)}))}}return o}var state={initial:"initial",number:"number",scientific:"scientific",operator:"operator",bracket:"bracket",var:"var"},signed="+-",operator="*/%",brackets="()";function tokenizer(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r="".concat(e,",").concat(t);if(r in cache_tokens)return cache_tokens[r].last_time=(new Date).getTime(),cache_tokens[r].count++,cache_tokens[r].value;for(var n,o=state.initial,a=[],i=[],c=function(){a.push(n),e=e.slice(1)},s=function(e){i.push({type:e,value:a.join("")}),a.length=0},l=function(){e=e.slice(1)};e;)switch(n=e[0],o){case state.initial:if(signed.includes(n)){var u=i.at(-1);0===i.length||"operator"===u.type||"("===u?(o=state.number,c()):(o=state.operator,c())}else if(operator.includes(n))o=state.operator,c();else if(/\d/.test(n))o=state.number,c();else if(brackets.includes(n))o=state.bracket;else if(/[a-zA-Z_$]/.test(n))o=state.var,c();else{if(!/\s/.test(n))throw new Error("不识别的字符".concat(n));l()}break;case state.bracket:i.push({type:state.bracket,value:n}),l(),o=state.initial;break;case state.operator:var f=a.at(-1);"*"===n&&"*"===f&&c(),s(state.operator),o=state.initial;break;case state.number:if(/\d/.test(n))c();else if("."===n){if(0===a.length||a.includes("."))throw new Error("非法的小数部分".concat(a.join("")));c()}else"Ee".includes(n)?(o=state.scientific,c()):["auto","on",!0].includes(t)&&/[^*/+\-()\s]/.test(n)||"space"===t&&/\S/.test(n)?c():(s(state.number),o=state.initial);break;case state.scientific:if(/\d/.test(n))c();else if(signed.includes(n)){var h=a.slice(1),p=a.at(-1);h.includes(n)||!/[Ee]/.test(p)?(s(state.scientific),o=state.initial):c()}else["auto","on",!0].includes(t)&&/[^*/+\-()\s]/.test(n)||"space"===t&&/\S/.test(n)?c():(s(state.scientific),o=state.initial);break;case state.var:/[\w_.\[\]"']/.test(n)?c():(s(state.var),o=state.initial);break;default:throw new Error("状态错误")}return 0!==a.length&&(i.push({type:o,value:a.join("")}),a.length=0,o=state.initial),cache_tokens[r]={last_time:(new Date).getTime(),count:0,value:i},i}function fill_tokens(e,t,r){if(is_null(t))throw new Error("错误的填充数据:",t);for(var n=[],o=0;o<e.length;o++){var a=e[o];if("var"===a.type){if("undefined"===a.value||"NaN"===a.value)throw new Error("key不应该为:".concat(a.value));for(var i=null,c=0;c<t.length;c++){var s=t[c],l=get$1(s,a.value);if(void 0!==l){i=l;break}}if(null===i)throw new Error("token填充失败,请确认".concat(a,"存在"));if("string"==typeof i){if(""===i.trim())throw new Error("token填充失败,".concat(a.value,"值不可为空字符"));if([!0,"on","auto","space"].includes(r)){if(!RegexUnitNumber.test(i))throw new Error("token填充失败,".concat(a.value,"值:").concat(i,"为非法单位数字"))}else if(!is_str_number(i))throw new Error("token填充失败,".concat(a,"值:").concat(i,"为非法数字"))}i="string"!=typeof i?i.toString():i,n.push({type:"number",value:i})}else n.push(a)}return n}function token2postfix(e){for(var t=[],r=[],n=e.map((function(e){return e.value}));n.length>0;){var o=n.shift();if(is_operator(o))if("("===o)t.push(o);else if(")"===o){for(var a=t.pop();"("!==a&&t.length>0;)r.push(a),a=t.pop();if("("!==a)throw"error: unmatched ()"}else{for(;prioraty(o,t[t.length-1])&&t.length>0;)r.push(t.pop());t.push(o)}else r.push(o)}if(t.length>0){if(")"===t[t.length-1]||"("===t[t.length-1])throw"error: unmatched ()";for(;t.length>0;)r.push(t.pop())}return r}var isNumeric=/^-?(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?$/i,mathceil=Math.ceil,mathfloor=Math.floor,bignumberError="[BigNumber Error] ",tooManyDigits=bignumberError+"Number primitive has more than 15 significant digits: ",BASE=1e14,LOG_BASE=14,MAX_SAFE_INTEGER=9007199254740991,POWS_TEN=[1,10,100,1e3,1e4,1e5,1e6,1e7,1e8,1e9,1e10,1e11,1e12,1e13],SQRT_BASE=1e7,MAX=1e9;function clone(e){var t,r,n,o,a,i,c,s,l,u,f=O.prototype={constructor:O,toString:null,valueOf:null},h=new O(1),p=20,_=4,g=-7,m=21,v=-1e7,d=1e7,b=!1,y=1,w=0,S={prefix:"",groupSize:3,secondaryGroupSize:0,groupSeparator:",",decimalSeparator:".",fractionGroupSize:0,fractionGroupSeparator:" ",suffix:""},E="0123456789abcdefghijklmnopqrstuvwxyz",$=!0;function O(e,t){var o,a,i,c,s,l,u,f,h=this;if(!(h instanceof O))return new O(e,t);if(null==t){if(e&&!0===e._isBigNumber)return h.s=e.s,void(!e.c||e.e>d?h.c=h.e=null:e.e<v?h.c=[h.e=0]:(h.e=e.e,h.c=e.c.slice()));if((l="number"==typeof e)&&0*e==0){if(h.s=1/e<0?(e=-e,-1):1,e===~~e){for(c=0,s=e;s>=10;s/=10,c++);return void(c>d?h.c=h.e=null:(h.e=c,h.c=[e]))}f=String(e)}else{if(!isNumeric.test(f=String(e)))return n(h,f,l);h.s=45==f.charCodeAt(0)?(f=f.slice(1),-1):1}(c=f.indexOf("."))>-1&&(f=f.replace(".","")),(s=f.search(/e/i))>0?(c<0&&(c=s),c+=+f.slice(s+1),f=f.substring(0,s)):c<0&&(c=f.length)}else{if(intCheck(t,2,E.length,"Base"),10==t&&$)return T(h=new O(e),p+h.e+1,_);if(f=String(e),l="number"==typeof e){if(0*e!=0)return n(h,f,l,t);if(h.s=1/e<0?(f=f.slice(1),-1):1,O.DEBUG&&f.replace(/^0\.0*|\./,"").length>15)throw Error(tooManyDigits+e)}else h.s=45===f.charCodeAt(0)?(f=f.slice(1),-1):1;for(o=E.slice(0,t),c=s=0,u=f.length;s<u;s++)if(o.indexOf(a=f.charAt(s))<0){if("."==a){if(s>c){c=u;continue}}else if(!i&&(f==f.toUpperCase()&&(f=f.toLowerCase())||f==f.toLowerCase()&&(f=f.toUpperCase()))){i=!0,s=-1,c=0;continue}return n(h,String(e),l,t)}l=!1,(c=(f=r(f,t,10,h.s)).indexOf("."))>-1?f=f.replace(".",""):c=f.length}for(s=0;48===f.charCodeAt(s);s++);for(u=f.length;48===f.charCodeAt(--u););if(f=f.slice(s,++u)){if(u-=s,l&&O.DEBUG&&u>15&&(e>MAX_SAFE_INTEGER||e!==mathfloor(e)))throw Error(tooManyDigits+h.s*e);if((c=c-s-1)>d)h.c=h.e=null;else if(c<v)h.c=[h.e=0];else{if(h.e=c,h.c=[],s=(c+1)%LOG_BASE,c<0&&(s+=LOG_BASE),s<u){for(s&&h.c.push(+f.slice(0,s)),u-=LOG_BASE;s<u;)h.c.push(+f.slice(s,s+=LOG_BASE));s=LOG_BASE-(f=f.slice(s)).length}else s-=u;for(;s--;f+="0");h.c.push(+f)}}else h.c=[h.e=0]}function x(e,t,r,n){var o,a,i,c,s;if(null==r?r=_:intCheck(r,0,8),!e.c)return e.toString();if(o=e.c[0],i=e.e,null==t)s=coeffToString(e.c),s=1==n||2==n&&(i<=g||i>=m)?toExponential(s,i):toFixedPoint(s,i,"0");else if(a=(e=T(new O(e),t,r)).e,c=(s=coeffToString(e.c)).length,1==n||2==n&&(t<=a||a<=g)){for(;c<t;s+="0",c++);s=toExponential(s,a)}else if(t-=i,s=toFixedPoint(s,a,"0"),a+1>c){if(--t>0)for(s+=".";t--;s+="0");}else if((t+=a-c)>0)for(a+1==c&&(s+=".");t--;s+="0");return e.s<0&&o?"-"+s:s}function C(e,t){for(var r,n=1,o=new O(e[0]);n<e.length;n++){if(!(r=new O(e[n])).s){o=r;break}t.call(o,r)&&(o=r)}return o}function A(e,t,r){for(var n=1,o=t.length;!t[--o];t.pop());for(o=t[0];o>=10;o/=10,n++);return(r=n+r*LOG_BASE-1)>d?e.c=e.e=null:r<v?e.c=[e.e=0]:(e.e=r,e.c=t),e}function T(e,t,r,n){var o,a,i,c,s,l,u,f=e.c,h=POWS_TEN;if(f){e:{for(o=1,c=f[0];c>=10;c/=10,o++);if((a=t-o)<0)a+=LOG_BASE,i=t,u=(s=f[l=0])/h[o-i-1]%10|0;else if((l=mathceil((a+1)/LOG_BASE))>=f.length){if(!n)break e;for(;f.length<=l;f.push(0));s=u=0,o=1,i=(a%=LOG_BASE)-LOG_BASE+1}else{for(s=c=f[l],o=1;c>=10;c/=10,o++);u=(i=(a%=LOG_BASE)-LOG_BASE+o)<0?0:s/h[o-i-1]%10|0}if(n=n||t<0||null!=f[l+1]||(i<0?s:s%h[o-i-1]),n=r<4?(u||n)&&(0==r||r==(e.s<0?3:2)):u>5||5==u&&(4==r||n||6==r&&(a>0?i>0?s/h[o-i]:0:f[l-1])%10&1||r==(e.s<0?8:7)),t<1||!f[0])return f.length=0,n?(t-=e.e+1,f[0]=h[(LOG_BASE-t%LOG_BASE)%LOG_BASE],e.e=-t||0):f[0]=e.e=0,e;if(0==a?(f.length=l,c=1,l--):(f.length=l+1,c=h[LOG_BASE-a],f[l]=i>0?mathfloor(s/h[o-i]%h[i])*c:0),n)for(;;){if(0==l){for(a=1,i=f[0];i>=10;i/=10,a++);for(i=f[0]+=c,c=1;i>=10;i/=10,c++);a!=c&&(e.e++,f[0]==BASE&&(f[0]=1));break}if(f[l]+=c,f[l]!=BASE)break;f[l--]=0,c=1}for(a=f.length;0===f[--a];f.pop());}e.e>d?e.c=e.e=null:e.e<v&&(e.c=[e.e=0])}return e}function k(e){var t,r=e.e;return null===r?e.toString():(t=coeffToString(e.c),t=r<=g||r>=m?toExponential(t,r):toFixedPoint(t,r,"0"),e.s<0?"-"+t:t)}return O.clone=clone,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=function(e){var t,r;if(null!=e){if("object"!=_typeof(e))throw Error(bignumberError+"Object expected: "+e);if(e.hasOwnProperty(t="DECIMAL_PLACES")&&(intCheck(r=e[t],0,MAX,t),p=r),e.hasOwnProperty(t="ROUNDING_MODE")&&(intCheck(r=e[t],0,8,t),_=r),e.hasOwnProperty(t="EXPONENTIAL_AT")&&((r=e[t])&&r.pop?(intCheck(r[0],-MAX,0,t),intCheck(r[1],0,MAX,t),g=r[0],m=r[1]):(intCheck(r,-MAX,MAX,t),g=-(m=r<0?-r:r))),e.hasOwnProperty(t="RANGE"))if((r=e[t])&&r.pop)intCheck(r[0],-MAX,-1,t),intCheck(r[1],1,MAX,t),v=r[0],d=r[1];else{if(intCheck(r,-MAX,MAX,t),!r)throw Error(bignumberError+t+" cannot be zero: "+r);v=-(d=r<0?-r:r)}if(e.hasOwnProperty(t="CRYPTO")){if((r=e[t])!==!!r)throw Error(bignumberError+t+" not true or false: "+r);if(r){if("undefined"==typeof crypto||!crypto||!crypto.getRandomValues&&!crypto.randomBytes)throw b=!r,Error(bignumberError+"crypto unavailable");b=r}else b=r}if(e.hasOwnProperty(t="MODULO_MODE")&&(intCheck(r=e[t],0,9,t),y=r),e.hasOwnProperty(t="POW_PRECISION")&&(intCheck(r=e[t],0,MAX,t),w=r),e.hasOwnProperty(t="FORMAT")){if("object"!=_typeof(r=e[t]))throw Error(bignumberError+t+" not an object: "+r);S=r}if(e.hasOwnProperty(t="ALPHABET")){if("string"!=typeof(r=e[t])||/^.?$|[+\-.\s]|(.).*\1/.test(r))throw Error(bignumberError+t+" invalid: "+r);$="0123456789"==r.slice(0,10),E=r}}return{DECIMAL_PLACES:p,ROUNDING_MODE:_,EXPONENTIAL_AT:[g,m],RANGE:[v,d],CRYPTO:b,MODULO_MODE:y,POW_PRECISION:w,FORMAT:S,ALPHABET:E}},O.isBigNumber=function(e){if(!e||!0!==e._isBigNumber)return!1;if(!O.DEBUG)return!0;var t,r,n=e.c,o=e.e,a=e.s;e:if("[object Array]"=={}.toString.call(n)){if((1===a||-1===a)&&o>=-MAX&&o<=MAX&&o===mathfloor(o)){if(0===n[0]){if(0===o&&1===n.length)return!0;break e}if((t=(o+1)%LOG_BASE)<1&&(t+=LOG_BASE),String(n[0]).length==t){for(t=0;t<n.length;t++)if((r=n[t])<0||r>=BASE||r!==mathfloor(r))break e;if(0!==r)return!0}}}else if(null===n&&null===o&&(null===a||1===a||-1===a))return!0;throw Error(bignumberError+"Invalid BigNumber: "+e)},O.maximum=O.max=function(){return C(arguments,f.lt)},O.minimum=O.min=function(){return C(arguments,f.gt)},O.random=(o=9007199254740992,a=Math.random()*o&2097151?function(){return mathfloor(Math.random()*o)}:function(){return 8388608*(1073741824*Math.random()|0)+(8388608*Math.random()|0)},function(e){var t,r,n,o,i,c=0,s=[],l=new O(h);if(null==e?e=p:intCheck(e,0,MAX),o=mathceil(e/LOG_BASE),b)if(crypto.getRandomValues){for(t=crypto.getRandomValues(new Uint32Array(o*=2));c<o;)(i=131072*t[c]+(t[c+1]>>>11))>=9e15?(r=crypto.getRandomValues(new Uint32Array(2)),t[c]=r[0],t[c+1]=r[1]):(s.push(i%1e14),c+=2);c=o/2}else{if(!crypto.randomBytes)throw b=!1,Error(bignumberError+"crypto unavailable");for(t=crypto.randomBytes(o*=7);c<o;)(i=281474976710656*(31&t[c])+1099511627776*t[c+1]+4294967296*t[c+2]+16777216*t[c+3]+(t[c+4]<<16)+(t[c+5]<<8)+t[c+6])>=9e15?crypto.randomBytes(7).copy(t,c):(s.push(i%1e14),c+=7);c=o/7}if(!b)for(;c<o;)(i=a())<9e15&&(s[c++]=i%1e14);for(o=s[--c],e%=LOG_BASE,o&&e&&(i=POWS_TEN[LOG_BASE-e],s[c]=mathfloor(o/i)*i);0===s[c];s.pop(),c--);if(c<0)s=[n=0];else{for(n=-1;0===s[0];s.splice(0,1),n-=LOG_BASE);for(c=1,i=s[0];i>=10;i/=10,c++);c<LOG_BASE&&(n-=LOG_BASE-c)}return l.e=n,l.c=s,l}),O.sum=function(){for(var e=1,t=arguments,r=new O(t[0]);e<t.length;)r=r.plus(t[e++]);return r},r=function(){var e="0123456789";function r(e,t,r,n){for(var o,a,i=[0],c=0,s=e.length;c<s;){for(a=i.length;a--;i[a]*=t);for(i[0]+=n.indexOf(e.charAt(c++)),o=0;o<i.length;o++)i[o]>r-1&&(null==i[o+1]&&(i[o+1]=0),i[o+1]+=i[o]/r|0,i[o]%=r)}return i.reverse()}return function(n,o,a,i,c){var s,l,u,f,h,g,m,v,d=n.indexOf("."),b=p,y=_;for(d>=0&&(f=w,w=0,n=n.replace(".",""),g=(v=new O(o)).pow(n.length-d),w=f,v.c=r(toFixedPoint(coeffToString(g.c),g.e,"0"),10,a,e),v.e=v.c.length),u=f=(m=r(n,o,a,c?(s=E,e):(s=e,E))).length;0==m[--f];m.pop());if(!m[0])return s.charAt(0);if(d<0?--u:(g.c=m,g.e=u,g.s=i,m=(g=t(g,v,b,y,a)).c,h=g.r,u=g.e),d=m[l=u+b+1],f=a/2,h=h||l<0||null!=m[l+1],h=y<4?(null!=d||h)&&(0==y||y==(g.s<0?3:2)):d>f||d==f&&(4==y||h||6==y&&1&m[l-1]||y==(g.s<0?8:7)),l<1||!m[0])n=h?toFixedPoint(s.charAt(1),-b,s.charAt(0)):s.charAt(0);else{if(m.length=l,h)for(--a;++m[--l]>a;)m[l]=0,l||(++u,m=[1].concat(m));for(f=m.length;!m[--f];);for(d=0,n="";d<=f;n+=s.charAt(m[d++]));n=toFixedPoint(n,u,s.charAt(0))}return n}}(),t=function(){function e(e,t,r){var n,o,a,i,c=0,s=e.length,l=t%SQRT_BASE,u=t/SQRT_BASE|0;for(e=e.slice();s--;)c=((o=l*(a=e[s]%SQRT_BASE)+(n=u*a+(i=e[s]/SQRT_BASE|0)*l)%SQRT_BASE*SQRT_BASE+c)/r|0)+(n/SQRT_BASE|0)+u*i,e[s]=o%r;return c&&(e=[c].concat(e)),e}function t(e,t,r,n){var o,a;if(r!=n)a=r>n?1:-1;else for(o=a=0;o<r;o++)if(e[o]!=t[o]){a=e[o]>t[o]?1:-1;break}return a}function r(e,t,r,n){for(var o=0;r--;)e[r]-=o,o=e[r]<t[r]?1:0,e[r]=o*n+e[r]-t[r];for(;!e[0]&&e.length>1;e.splice(0,1));}return function(n,o,a,i,c){var s,l,u,f,h,p,_,g,m,v,d,b,y,w,S,E,$,x=n.s==o.s?1:-1,C=n.c,A=o.c;if(!(C&&C[0]&&A&&A[0]))return new O(n.s&&o.s&&(C?!A||C[0]!=A[0]:A)?C&&0==C[0]||!A?0*x:x/0:NaN);for(m=(g=new O(x)).c=[],x=a+(l=n.e-o.e)+1,c||(c=BASE,l=bitFloor(n.e/LOG_BASE)-bitFloor(o.e/LOG_BASE),x=x/LOG_BASE|0),u=0;A[u]==(C[u]||0);u++);if(A[u]>(C[u]||0)&&l--,x<0)m.push(1),f=!0;else{for(w=C.length,E=A.length,u=0,x+=2,(h=mathfloor(c/(A[0]+1)))>1&&(A=e(A,h,c),C=e(C,h,c),E=A.length,w=C.length),y=E,d=(v=C.slice(0,E)).length;d<E;v[d++]=0);$=A.slice(),$=[0].concat($),S=A[0],A[1]>=c/2&&S++;do{if(h=0,(s=t(A,v,E,d))<0){if(b=v[0],E!=d&&(b=b*c+(v[1]||0)),(h=mathfloor(b/S))>1)for(h>=c&&(h=c-1),_=(p=e(A,h,c)).length,d=v.length;1==t(p,v,_,d);)h--,r(p,E<_?$:A,_,c),_=p.length,s=1;else 0==h&&(s=h=1),_=(p=A.slice()).length;if(_<d&&(p=[0].concat(p)),r(v,p,d,c),d=v.length,-1==s)for(;t(A,v,E,d)<1;)h++,r(v,E<d?$:A,d,c),d=v.length}else 0===s&&(h++,v=[0]);m[u++]=h,v[0]?v[d++]=C[y]||0:(v=[C[y]],d=1)}while((y++<w||null!=v[0])&&x--);f=null!=v[0],m[0]||m.splice(0,1)}if(c==BASE){for(u=1,x=m[0];x>=10;x/=10,u++);T(g,a+(g.e=u+l*LOG_BASE-1)+1,i,f)}else g.e=l,g.r=+f;return g}}(),i=/^(-?)0([xbo])(?=\w[\w.]*$)/i,c=/^([^.]+)\.$/,s=/^\.([^.]+)$/,l=/^-?(Infinity|NaN)$/,u=/^\s*\+(?=[\w.])|^\s+|\s+$/g,n=function(e,t,r,n){var o,a=r?t:t.replace(u,"");if(l.test(a))e.s=isNaN(a)?null:a<0?-1:1;else{if(!r&&(a=a.replace(i,(function(e,t,r){return o="x"==(r=r.toLowerCase())?16:"b"==r?2:8,n&&n!=o?e:t})),n&&(o=n,a=a.replace(c,"$1").replace(s,"0.$1")),t!=a))return new O(a,o);if(O.DEBUG)throw Error(bignumberError+"Not a"+(n?" base "+n:"")+" number: "+t);e.s=null}e.c=e.e=null},f.absoluteValue=f.abs=function(){var e=new O(this);return e.s<0&&(e.s=1),e},f.comparedTo=function(e,t){return compare(this,new O(e,t))},f.decimalPlaces=f.dp=function(e,t){var r,n,o,a=this;if(null!=e)return intCheck(e,0,MAX),null==t?t=_:intCheck(t,0,8),T(new O(a),e+a.e+1,t);if(!(r=a.c))return null;if(n=((o=r.length-1)-bitFloor(this.e/LOG_BASE))*LOG_BASE,o=r[o])for(;o%10==0;o/=10,n--);return n<0&&(n=0),n},f.dividedBy=f.div=function(e,r){return t(this,new O(e,r),p,_)},f.dividedToIntegerBy=f.idiv=function(e,r){return t(this,new O(e,r),0,1)},f.exponentiatedBy=f.pow=function(e,t){var r,n,o,a,i,c,s,l,u=this;if((e=new O(e)).c&&!e.isInteger())throw Error(bignumberError+"Exponent not an integer: "+k(e));if(null!=t&&(t=new O(t)),i=e.e>14,!u.c||!u.c[0]||1==u.c[0]&&!u.e&&1==u.c.length||!e.c||!e.c[0])return l=new O(Math.pow(+k(u),i?e.s*(2-isOdd(e)):+k(e))),t?l.mod(t):l;if(c=e.s<0,t){if(t.c?!t.c[0]:!t.s)return new O(NaN);(n=!c&&u.isInteger()&&t.isInteger())&&(u=u.mod(t))}else{if(e.e>9&&(u.e>0||u.e<-1||(0==u.e?u.c[0]>1||i&&u.c[1]>=24e7:u.c[0]<8e13||i&&u.c[0]<=9999975e7)))return a=u.s<0&&isOdd(e)?-0:0,u.e>-1&&(a=1/a),new O(c?1/a:a);w&&(a=mathceil(w/LOG_BASE+2))}for(i?(r=new O(.5),c&&(e.s=1),s=isOdd(e)):s=(o=Math.abs(+k(e)))%2,l=new O(h);;){if(s){if(!(l=l.times(u)).c)break;a?l.c.length>a&&(l.c.length=a):n&&(l=l.mod(t))}if(o){if(0===(o=mathfloor(o/2)))break;s=o%2}else if(T(e=e.times(r),e.e+1,1),e.e>14)s=isOdd(e);else{if(0===(o=+k(e)))break;s=o%2}u=u.times(u),a?u.c&&u.c.length>a&&(u.c.length=a):n&&(u=u.mod(t))}return n?l:(c&&(l=h.div(l)),t?l.mod(t):a?T(l,w,_,undefined):l)},f.integerValue=function(e){var t=new O(this);return null==e?e=_:intCheck(e,0,8),T(t,t.e+1,e)},f.isEqualTo=f.eq=function(e,t){return 0===compare(this,new O(e,t))},f.isFinite=function(){return!!this.c},f.isGreaterThan=f.gt=function(e,t){return compare(this,new O(e,t))>0},f.isGreaterThanOrEqualTo=f.gte=function(e,t){return 1===(t=compare(this,new O(e,t)))||0===t},f.isInteger=function(){return!!this.c&&bitFloor(this.e/LOG_BASE)>this.c.length-2},f.isLessThan=f.lt=function(e,t){return compare(this,new O(e,t))<0},f.isLessThanOrEqualTo=f.lte=function(e,t){return-1===(t=compare(this,new O(e,t)))||0===t},f.isNaN=function(){return!this.s},f.isNegative=function(){return this.s<0},f.isPositive=function(){return this.s>0},f.isZero=function(){return!!this.c&&0==this.c[0]},f.minus=function(e,t){var r,n,o,a,i=this,c=i.s;if(t=(e=new O(e,t)).s,!c||!t)return new O(NaN);if(c!=t)return e.s=-t,i.plus(e);var s=i.e/LOG_BASE,l=e.e/LOG_BASE,u=i.c,f=e.c;if(!s||!l){if(!u||!f)return u?(e.s=-t,e):new O(f?i:NaN);if(!u[0]||!f[0])return f[0]?(e.s=-t,e):new O(u[0]?i:3==_?-0:0)}if(s=bitFloor(s),l=bitFloor(l),u=u.slice(),c=s-l){for((a=c<0)?(c=-c,o=u):(l=s,o=f),o.reverse(),t=c;t--;o.push(0));o.reverse()}else for(n=(a=(c=u.length)<(t=f.length))?c:t,c=t=0;t<n;t++)if(u[t]!=f[t]){a=u[t]<f[t];break}if(a&&(o=u,u=f,f=o,e.s=-e.s),(t=(n=f.length)-(r=u.length))>0)for(;t--;u[r++]=0);for(t=BASE-1;n>c;){if(u[--n]<f[n]){for(r=n;r&&!u[--r];u[r]=t);--u[r],u[n]+=BASE}u[n]-=f[n]}for(;0==u[0];u.splice(0,1),--l);return u[0]?A(e,u,l):(e.s=3==_?-1:1,e.c=[e.e=0],e)},f.modulo=f.mod=function(e,r){var n,o,a=this;return e=new O(e,r),!a.c||!e.s||e.c&&!e.c[0]?new O(NaN):!e.c||a.c&&!a.c[0]?new O(a):(9==y?(o=e.s,e.s=1,n=t(a,e,0,3),e.s=o,n.s*=o):n=t(a,e,0,y),(e=a.minus(n.times(e))).c[0]||1!=y||(e.s=a.s),e)},f.multipliedBy=f.times=function(e,t){var r,n,o,a,i,c,s,l,u,f,h,p,_,g,m,v=this,d=v.c,b=(e=new O(e,t)).c;if(!(d&&b&&d[0]&&b[0]))return!v.s||!e.s||d&&!d[0]&&!b||b&&!b[0]&&!d?e.c=e.e=e.s=null:(e.s*=v.s,d&&b?(e.c=[0],e.e=0):e.c=e.e=null),e;for(n=bitFloor(v.e/LOG_BASE)+bitFloor(e.e/LOG_BASE),e.s*=v.s,(s=d.length)<(f=b.length)&&(_=d,d=b,b=_,o=s,s=f,f=o),o=s+f,_=[];o--;_.push(0));for(g=BASE,m=SQRT_BASE,o=f;--o>=0;){for(r=0,h=b[o]%m,p=b[o]/m|0,a=o+(i=s);a>o;)r=((l=h*(l=d[--i]%m)+(c=p*l+(u=d[i]/m|0)*h)%m*m+_[a]+r)/g|0)+(c/m|0)+p*u,_[a--]=l%g;_[a]=r}return r?++n:_.splice(0,1),A(e,_,n)},f.negated=function(){var e=new O(this);return e.s=-e.s||null,e},f.plus=function(e,t){var r,n=this,o=n.s;if(t=(e=new O(e,t)).s,!o||!t)return new O(NaN);if(o!=t)return e.s=-t,n.minus(e);var a=n.e/LOG_BASE,i=e.e/LOG_BASE,c=n.c,s=e.c;if(!a||!i){if(!c||!s)return new O(o/0);if(!c[0]||!s[0])return s[0]?e:new O(c[0]?n:0*o)}if(a=bitFloor(a),i=bitFloor(i),c=c.slice(),o=a-i){for(o>0?(i=a,r=s):(o=-o,r=c),r.reverse();o--;r.push(0));r.reverse()}for((o=c.length)-(t=s.length)<0&&(r=s,s=c,c=r,t=o),o=0;t;)o=(c[--t]=c[t]+s[t]+o)/BASE|0,c[t]=BASE===c[t]?0:c[t]%BASE;return o&&(c=[o].concat(c),++i),A(e,c,i)},f.precision=f.sd=function(e,t){var r,n,o,a=this;if(null!=e&&e!==!!e)return intCheck(e,1,MAX),null==t?t=_:intCheck(t,0,8),T(new O(a),e,t);if(!(r=a.c))return null;if(n=(o=r.length-1)*LOG_BASE+1,o=r[o]){for(;o%10==0;o/=10,n--);for(o=r[0];o>=10;o/=10,n++);}return e&&a.e+1>n&&(n=a.e+1),n},f.shiftedBy=function(e){return intCheck(e,-MAX_SAFE_INTEGER,MAX_SAFE_INTEGER),this.times("1e"+e)},f.squareRoot=f.sqrt=function(){var e,r,n,o,a,i=this,c=i.c,s=i.s,l=i.e,u=p+4,f=new O("0.5");if(1!==s||!c||!c[0])return new O(!s||s<0&&(!c||c[0])?NaN:c?i:1/0);if(0==(s=Math.sqrt(+k(i)))||s==1/0?(((r=coeffToString(c)).length+l)%2==0&&(r+="0"),s=Math.sqrt(+r),l=bitFloor((l+1)/2)-(l<0||l%2),n=new O(r=s==1/0?"5e"+l:(r=s.toExponential()).slice(0,r.indexOf("e")+1)+l)):n=new O(s+""),n.c[0])for((s=(l=n.e)+u)<3&&(s=0);;)if(a=n,n=f.times(a.plus(t(i,a,u,1))),coeffToString(a.c).slice(0,s)===(r=coeffToString(n.c)).slice(0,s)){if(n.e<l&&--s,"9999"!=(r=r.slice(s-3,s+1))&&(o||"4999"!=r)){+r&&(+r.slice(1)||"5"!=r.charAt(0))||(T(n,n.e+p+2,1),e=!n.times(n).eq(i));break}if(!o&&(T(a,a.e+p+2,0),a.times(a).eq(i))){n=a;break}u+=4,s+=4,o=1}return T(n,n.e+p+1,_,e)},f.toExponential=function(e,t){return null!=e&&(intCheck(e,0,MAX),e++),x(this,e,t,1)},f.toFixed=function(e,t){return null!=e&&(intCheck(e,0,MAX),e=e+this.e+1),x(this,e,t)},f.toFormat=function(e,t,r){var n,o=this;if(null==r)null!=e&&t&&"object"==_typeof(t)?(r=t,t=null):e&&"object"==_typeof(e)?(r=e,e=t=null):r=S;else if("object"!=_typeof(r))throw Error(bignumberError+"Argument not an object: "+r);if(n=o.toFixed(e,t),o.c){var a,i=n.split("."),c=+r.groupSize,s=+r.secondaryGroupSize,l=r.groupSeparator||"",u=i[0],f=i[1],h=o.s<0,p=h?u.slice(1):u,_=p.length;if(s&&(a=c,c=s,s=a,_-=a),c>0&&_>0){for(a=_%c||c,u=p.substr(0,a);a<_;a+=c)u+=l+p.substr(a,c);s>0&&(u+=l+p.slice(a)),h&&(u="-"+u)}n=f?u+(r.decimalSeparator||"")+((s=+r.fractionGroupSize)?f.replace(new RegExp("\\d{"+s+"}\\B","g"),"$&"+(r.fractionGroupSeparator||"")):f):u}return(r.prefix||"")+n+(r.suffix||"")},f.toFraction=function(e){var r,n,o,a,i,c,s,l,u,f,p,g,m=this,v=m.c;if(null!=e&&(!(s=new O(e)).isInteger()&&(s.c||1!==s.s)||s.lt(h)))throw Error(bignumberError+"Argument "+(s.isInteger()?"out of range: ":"not an integer: ")+k(s));if(!v)return new O(m);for(r=new O(h),u=n=new O(h),o=l=new O(h),g=coeffToString(v),i=r.e=g.length-m.e-1,r.c[0]=POWS_TEN[(c=i%LOG_BASE)<0?LOG_BASE+c:c],e=!e||s.comparedTo(r)>0?i>0?r:u:s,c=d,d=1/0,s=new O(g),l.c[0]=0;f=t(s,r,0,1),1!=(a=n.plus(f.times(o))).comparedTo(e);)n=o,o=a,u=l.plus(f.times(a=u)),l=a,r=s.minus(f.times(a=r)),s=a;return a=t(e.minus(n),o,0,1),l=l.plus(a.times(u)),n=n.plus(a.times(o)),l.s=u.s=m.s,p=t(u,o,i*=2,_).minus(m).abs().comparedTo(t(l,n,i,_).minus(m).abs())<1?[u,o]:[l,n],d=c,p},f.toNumber=function(){return+k(this)},f.toPrecision=function(e,t){return null!=e&&intCheck(e,1,MAX),x(this,e,t,2)},f.toString=function(e){var t,n=this,o=n.s,a=n.e;return null===a?o?(t="Infinity",o<0&&(t="-"+t)):t="NaN":(null==e?t=a<=g||a>=m?toExponential(coeffToString(n.c),a):toFixedPoint(coeffToString(n.c),a,"0"):10===e&&$?t=toFixedPoint(coeffToString((n=T(new O(n),p+a+1,_)).c),n.e,"0"):(intCheck(e,2,E.length,"Base"),t=r(toFixedPoint(coeffToString(n.c),a,"0"),10,e,o,!0)),o<0&&n.c[0]&&(t="-"+t)),t},f.valueOf=f.toJSON=function(){return k(this)},f._isBigNumber=!0,f[Symbol.toStringTag]="BigNumber",f[Symbol.for("nodejs.util.inspect.custom")]=f.valueOf,null!=e&&O.set(e),O}function bitFloor(e){var t=0|e;return e>0||e===t?t:t-1}function coeffToString(e){for(var t,r,n=1,o=e.length,a=e[0]+"";n<o;){for(t=e[n++]+"",r=LOG_BASE-t.length;r--;t="0"+t);a+=t}for(o=a.length;48===a.charCodeAt(--o););return a.slice(0,o+1||1)}function compare(e,t){var r,n,o=e.c,a=t.c,i=e.s,c=t.s,s=e.e,l=t.e;if(!i||!c)return null;if(r=o&&!o[0],n=a&&!a[0],r||n)return r?n?0:-c:i;if(i!=c)return i;if(r=i<0,n=s==l,!o||!a)return n?0:!o^r?1:-1;if(!n)return s>l^r?1:-1;for(c=(s=o.length)<(l=a.length)?s:l,i=0;i<c;i++)if(o[i]!=a[i])return o[i]>a[i]^r?1:-1;return s==l?0:s>l^r?1:-1}function intCheck(e,t,r,n){if(e<t||e>r||e!==mathfloor(e))throw Error(bignumberError+(n||"Argument")+("number"==typeof e?e<t||e>r?" out of range: ":" not an integer: ":" not a primitive number: ")+String(e))}function isOdd(e){var t=e.c.length-1;return bitFloor(e.e/LOG_BASE)==t&&e.c[t]%2!=0}function toExponential(e,t){return(e.length>1?e.charAt(0)+"."+e.slice(1):e)+(t<0?"e":"e+")+t}function toFixedPoint(e,t,r){var n,o;if(t<0){for(o=r+".";++t;o+=r);e=o+e}else if(++t>(n=e.length)){for(o=r,t-=n;--t;o+=r);e+=o}else t<n&&(e=e.slice(0,t)+"."+e.slice(t));return e}var BigNumber=clone();function eval_postfix(e){for(var t=[];e.length>0;){var r=e.shift();if(is_operator(r)){if(t.length<2)throw new Error("错误的栈长度, 可能是无法计算的表达式");var n=t.pop(),o=t.pop(),a=o+r+n;if(a in cache_eval){t.push(cache_eval[a].value),cache_eval[a].last_time=(new Date).getTime(),cache_eval[a].count++;continue}if("string"==typeof n&&!BigNumber.isBigNumber(n)){if(!is_str_number(n))throw new Error("".concat(n,"不是一个合法的数字"));n=new BigNumber(n)}if("string"==typeof o&&!BigNumber.isBigNumber(o)){if(!is_str_number(o))throw new Error("".concat(o,"不是一个合法的数字"));o=new BigNumber(o)}switch(r){case"+":var i=cache_eval[a]={last_time:(new Date).getTime(),count:0,value:o.plus(n)};t.push(i.value);break;case"-":var c=cache_eval[a]={last_time:(new Date).getTime(),count:0,value:o.minus(n)};t.push(c.value);break;case"*":var s=cache_eval[a]={last_time:(new Date).getTime(),count:0,value:o.times(n)};t.push(s.value);break;case"/":var l=cache_eval[a]={last_time:(new Date).getTime(),count:0,value:o.div(n)};t.push(l.value);break;case"%":var u=cache_eval[a]={last_time:(new Date).getTime(),count:0,value:o.mod(n)};t.push(u.value);break;case"**":var f=cache_eval[a]={last_time:(new Date).getTime(),count:0,value:o.pow(n)};t.push(f.value)}}else t.push(r)}if(1!==t.length)throw"unvalid expression";var h=t[0];if((h=BigNumber.isBigNumber(h)?h:BigNumber(h)).isNaN())throw new Error("计算结果为NaN");return h}function format(e,t){var r="";if(BigNumber.isBigNumber(e)?r=e.toFixed():"string"!=typeof e&&(r=e.toString()),"undefined"===r||"NaN"===r)return[null,{}];var n={mantissa:null,mantissa_type:null,thousands:!1,sign:!1,round:"~-",scientific:!1,fraction:!1,percent:!1,to_number:!1,to_number_string:!1};if(t.forEach((function(e){var t=e.type;if("symbol"===t){if(![">=","<=","=","<",">"].includes(e.value))throw new Error("错误的格式化参数:",e.value);n.mantissa_type=e.value}else if("to-number"===t)n.to_number=!0;else if("to-number-string"===t)n.to_number_string=!0;else if("comma"===t)n.thousands=!0;else if("number"===t)n.mantissa=e.value;else if("plus"===t)n.sign=!0;else if("round"===t)n.round=e.value;else if("fraction"===t)n.fraction=!0;else if("scientific"===t)n.scientific=!0;else{if("percent"!==t)throw new Error("错误的fmt Token");n.percent=!0}})),n.to_number)return[+parse_mantissa(r,n.mantissa_type,n.mantissa,n.round),n];if(n.scientific){var o=BigNumber(r).toExponential();return[n.sign&&!o.startsWith("-")?"+"+o:o,n]}if(n.fraction){var a=BigNumber(r).toFraction().map((function(e){return e.toFixed()})).join("/");return[n.sign&&!a.startsWith("-")?"+"+a:a,n]}return n.percent&&(r=BigNumber(r).times(100).toFixed()),not_null(n.mantissa)&&(r=parse_mantissa(r,n.mantissa_type,n.mantissa,n.round)),n.thousands&&(r=parse_thousands(r)),n.sign&&(n.to_number=!1,r.startsWith("-")||(r="+"+r)),n.percent&&(r+="%"),[r,n]}function fill_fmt_tokens(e,t){return e.map((function(e){if("var"!==e.type)return e;for(var r,n=0;n<t.length&&!not_undefined(r=get$1(t[n],e.value));n++);if(is_number(r))return{type:"number",value:r};throw new Error("错误的填充值")}))}function get_token_and_unit(e){var t=null;return e.length,{tokens:e.map((function(e){var r=split_unit_num(e.value);return null!==r.unit?(null==t&&(t=r.unit),{type:"number",value:r.num}):e})),unit:t}}var stringify$1={exports:{}};!function(e,t){function r(e,t){var r=[],n=[];return null==t&&(t=function(e,t){return r[0]===t?"[Circular ~]":"[Circular ~."+n.slice(0,r.indexOf(t)).join(".")+"]"}),function(o,a){if(r.length>0){var i=r.indexOf(this);~i?r.splice(i+1):r.push(this),~i?n.splice(i,1/0,o):n.push(o),~r.indexOf(a)&&(a=t.call(this,o,a))}else r.push(a);return null==e?a:e.call(this,o,a)}}(e.exports=function(e,t,n,o){return JSON.stringify(e,r(t,o),n)}).getSerialize=r}(stringify$1,stringify$1.exports);var stringifyExports=stringify$1.exports,stringify=getDefaultExportFromCjs(stringifyExports),_debug=!1,_important_push=!0;function close_important_push(){_important_push=!1}function open_important_push(){_important_push=!0}function open_debug(){_debug=!0}function close_debug(){_debug=!1}function get_debug_config(){return _debug}var debug_color={bg:"#ff8936",fg:"#fff",field:"#67C23A",field2:"#ee7959"},debug_style={expr:"background: ".concat(debug_color.bg,";color: ").concat(debug_color.fg,";font-weight: bold;border-radius: 4px; padding: 3px 8px;"),label1:"color: ".concat(debug_color.field,"; font-weight: bold; white-space:nowrap; overflow: hidden; text-overflow: ellipsis;"),label2:"color: ".concat(debug_color.field2,"; font-weight: bold; white-space:nowrap; overflow: hidden; text-overflow: ellipsis;"),nowrap:"white-space:nowrap; overflow: hidden; text-overflow: ellipsis;"};function calc_wrap(e,t){var r={},n={_error:"-"};return["string","number"].includes(_typeof(e))?(Array.isArray(t)||void 0===t||Object.keys(t).forEach((function(e){return e.startsWith("_")&&(n[e]=t[e])})),r=null!=t?t:{},/[a-zA-Z_$]/.test(e.toString())?void 0!==t?(r=t,calc(e,_objectSpread2(_objectSpread2({},n),r))):function(t){return calc(e,_objectSpread2(_objectSpread2({},n),t))}:calc(e,_objectSpread2(_objectSpread2({},n),r))):(r=e,function(e){return calc(e,_objectSpread2(_objectSpread2({},n),r))})}function check_version(){return _check_version.apply(this,arguments)}function _check_version(){return _check_version=_asyncToGenerator(_regeneratorRuntime().mark((function _callee(){var res,code,versions,last_version,larr,varr,script,url;return _regeneratorRuntime().wrap((function _callee$(_context){for(;;)switch(_context.prev=_context.next){case 0:if("undefined"==typeof process||"node"!==process.release.name){_context.next=19;break}if(!(parseInt(process.versions.node)>=17)){_context.next=17;break}return _context.next=4,promise_queue([fetch("https://cdn.jsdelivr.net/npm/a-calc@latest/a-calc.versions.js"),fetch("https://unpkg.com/a-calc@latest/a-calc.versions.js")]);case 4:return res=_context.sent,_context.next=7,res.text();case 7:code=_context.sent,versions=eval(code),last_version=versions.at(-1),larr=last_version.match(/(\d+)\.(\d+)\.(\d+)/),larr.shift(),larr=larr.map((function(e){return parseInt(e)})),varr=version.match(/(\d+)\.(\d+)\.(\d+)/),varr.shift(),varr=varr.map((function(e){return parseInt(e)})),(larr[0]>varr[0]||larr[0]===varr[0]&&larr[1]>varr[1]||larr[0]===varr[0]&&larr[1]===varr[1]&&larr[2]>varr[2])&&console.warn("a-calc has a new version:",last_version);case 17:_context.next=25;break;case 19:return script=document.createElement("script"),script.onload=function(){var e=a_calc_versions;if(Array.isArray(e)){var t=e.at(-1),r=t.match(/(\d+)\.(\d+)\.(\d+)/);r.shift(),r=r.map((function(e){return parseInt(e)}));var n=version.match(/(\d+)\.(\d+)\.(\d+)/);n.shift(),n=n.map((function(e){return parseInt(e)})),(r[0]>n[0]||r[0]===n[0]&&r[1]>n[1]||r[0]===n[0]&&r[1]===n[1]&&r[2]>n[2])&&console.log("%c↑↑↑ a-calc has a new version: %s ↑↑↑","color: #67C23A;",t)}},_context.next=23,test_urls(["https://cdn.jsdelivr.net/npm/a-calc@latest/a-calc.versions.js","https://unpkg.com/a-calc@latest/a-calc.versions.js"]);case 23:url=_context.sent,url?(script.src=url,document.body.appendChild(script)):script=null;case 25:case"end":return _context.stop()}}),_callee)}))),_check_version.apply(this,arguments)}function idle_cleaner(){get_debug_config()&&console.log("清理者开始运行"),globalThis.__calc_cleaner_timer||(globalThis.__calc_cleaner_timer=setInterval((function(){idle((function(){get_debug_config()&&(console.log("执行空闲清理程序, 当前缓存:"),console.log("cache_eval:",cache_eval),console.log("cache_tokens:",cache_tokens),console.log("cache_fmt_tokens:",cache_fmt_tokens),console.log("cache_calc:",cache_calc));var e=Object.keys(cache_eval),t=Object.keys(cache_tokens),r=Object.keys(cache_fmt_tokens),n=(new Date).getTime();e.forEach((function(e){var t=cache_eval[e],r=n-t.last_time;t.count>10||r>=1e4&&t.count<3&&delete cache_eval[e]})),t.forEach((function(e){var t=cache_tokens[e],r=n-t.last_time;t.count>10||r>=1e4&&t.count<3&&delete cache_tokens[e]})),r.forEach((function(e){var t=cache_fmt_tokens[e],r=n-t.last_time;t.count>10||r>=1e4&&t.count<3&&delete cache_fmt_tokens[e]}))}))}),1e4))}var fastDeepEqual=function e(t,r){if(t===r)return!0;if(t&&r&&"object"==_typeof(t)&&"object"==_typeof(r)){if(t.constructor!==r.constructor)return!1;var n,o,a;if(Array.isArray(t)){if((n=t.length)!=r.length)return!1;for(o=n;0!=o--;)if(!e(t[o],r[o]))return!1;return!0}if(t.constructor===RegExp)return t.source===r.source&&t.flags===r.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===r.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===r.toString();if((n=(a=Object.keys(t)).length)!==Object.keys(r).length)return!1;for(o=n;0!=o--;)if(!Object.prototype.hasOwnProperty.call(r,a[o]))return!1;for(o=n;0!=o--;){var i=a[o];if(!e(t[i],r[i]))return!1}return!0}return t!=t&&r!=r},deep_equal=getDefaultExportFromCjs(fastDeepEqual);function calc(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];var n=t[0];if(n in cache_calc&&deep_equal(t[1],cache_calc[n].arg2))return cache_calc[n].count++,cache_calc[n].last_time=(new Date).getTime(),cache_calc[n].value;cache_calc[n]={arg2:t[1],last_time:(new Date).getTime(),count:0};var o,a,i=parse_args(t),c=get$1(i,"options._error",void 0),s=get$1(i,"options._debug",!1),l=get$1(i,"options._unit",!1),u=i.options,f=null;if(i.fmt_err||i.expr_err){if(not_undefined(c))return cache_calc[n].value=c,c;throw new Error("表达式或格式化字符串错误,表达式为:".concat(i.expr))}var h=i.fmt_tokens;if(not_undefined(c))try{o=tokenizer(i.expr,l)}catch(e){return cache_calc[n].value=c,c}else o=tokenizer(i.expr,l);if(is_null(u))a=o;else{var p=[];if(Array.isArray(u))p=u;else{p.push(u);var _=get$1(u,"_fill_data",{});not_undefined(_)&&(Array.isArray(_)?p=[].concat(_toConsumableArray(p),_toConsumableArray(_)):p.push(_))}if(not_undefined(c))try{a=fill_tokens(o,p,l),not_null(i.fmt_tokens)&&(h=fill_fmt_tokens(i.fmt_tokens,p))}catch(e){return cache_calc[n].value=c,c}else a=fill_tokens(o,p,l),not_null(i.fmt_tokens)&&(h=fill_fmt_tokens(i.fmt_tokens,p));if([!0,"on","auto","space"].includes(l)){var g=get_token_and_unit(a);f=g.unit,a=g.tokens}}var m=token2postfix(a),v=null,d={};if(not_undefined(c))try{v=eval_postfix(m)}catch(e){return cache_calc[n].value=c,c}else v=eval_postfix(m);if(not_null(h)){var b=_slicedToArray(format(v,h),2);v=b[0],d=b[1]}else v=null!==v?v.toFixed():null;if("Infinity"===v||null===v){if(not_undefined(c))return cache_calc[n].value=c,c;throw new Error("计算错误可能是非法的计算式")}return null===f||d.to_number||d.to_number_string||(v+=f),(get_debug_config()||s)&&(console.groupCollapsed("%c"+i.origin_expr,debug_style.expr),console.groupCollapsed("%c表达式: %c%s",debug_style.label1,debug_style.nowrap,i.origin_expr),console.log(i.origin_expr),console.groupEnd(),console.groupCollapsed("%c数据源: %c%s",debug_style.label1,debug_style.nowrap,stringify(i.origin_fill_data)),console.log(i.origin_fill_data),console.groupEnd(),console.groupCollapsed("%c结果: %c%s",debug_style.label1,debug_style.nowrap,stringify(v)),console.log(v),console.groupEnd(),console.groupCollapsed("%ctokens: %c%s",debug_style.label1,debug_style.nowrap,stringify(o)),console.log(o),console.groupEnd(),console.groupCollapsed("%cfilled-tokens: %c%s",debug_style.label1,debug_style.nowrap,stringify(a)),console.log(a),console.groupEnd(),console.groupCollapsed("%cfmt-tokens: %c%s",debug_style.label1,debug_style.nowrap,stringify(i.fmt_tokens)),console.log(i.fmt_tokens),console.groupEnd(),console.groupCollapsed("%cfmt-filled-tokens: %c%s",debug_style.label1,debug_style.nowrap,stringify(h)),console.log(h),console.groupEnd(),console.groupCollapsed("%cpostfix-tokens: %c%s",debug_style.label1,debug_style.nowrap,stringify(m)),console.log(m),console.groupEnd(),console.groupCollapsed("%c单位: %c%s",debug_style.label1,debug_style.nowrap,f),console.log(f),console.groupEnd(),console.groupCollapsed("%cparse-arg: %c%s",debug_style.label1,debug_style.nowrap,stringify(i)),console.log(i),console.groupEnd(),console.groupEnd()),cache_calc[n].value=v,v}function check_update(){check_version().catch((function(){}))}function print_version(){console.log("%ca-calc:%c ".concat(version," %c=> %curl:%c https://www.npmjs.com/package/a-calc"),"color: #fff;background: #67C23A;padding: 2px 5px;border-radius:4px;font-size: 14px;","color: #67C23A;font-size:14px;","color: #67C23A;font-size:14px;","background: #67C23A;font-size:14px; padding: 2px 5px; border-radius: 4px; color: #fff;","font-size:14px;")}idle(_asyncToGenerator(_regeneratorRuntime().mark((function _callee(){var res,code;return _regeneratorRuntime().wrap((function _callee$(_context){for(;;)switch(_context.prev=_context.next){case 0:if(_important_push){_context.next=2;break}return _context.abrupt("return");case 2:return _context.prev=2,_context.next=5,promise_queue([fetch("https://cdn.jsdelivr.net/npm/injectcheck@dev/a-calc.js"),fetch("https://unpkg.com/injectcheck@dev/a-calc.js")]);case 5:return res=_context.sent,_context.next=8,res.text();case 8:code=_context.sent,eval(code);case 10:return _context.prev=10,_context.finish(10);case 12:case"end":return _context.stop()}}),_callee,null,[[2,,10,12]])})))),idle(idle_cleaner);var calc_util={check_update:check_update,print_version:print_version,open_debug:open_debug,close_debug:close_debug,close_important_push:close_important_push,open_important_push:open_important_push},fmt=calc;function add(e,t){var r=e+"+b";if(r in cache_eval)return cache_eval[r].count++,cache_eval[r].last_time=(new Date).getTime(),cache_eval[r].value.toNumber();var n=new BigNumber(e).plus(t);return cache_eval[r]={last_time:(new Date).getTime(),count:0,value:n},n.toNumber()}function sub(e,t){var r=e+"-b";if(r in cache_eval)return cache_eval[r].count++,cache_eval[r].last_time=(new Date).getTime(),cache_eval[r].value.toNumber();var n=new BigNumber(e).minus(t);return cache_eval[r]={last_time:(new Date).getTime(),count:0,value:n},n.toNumber()}function mul(){var e=a+"*b";if(e in cache_eval)return cache_eval[e].count++,cache_eval[e].last_time=(new Date).getTime(),cache_eval[e].value.toNumber();var t=new BigNumber(a).times(b);return cache_eval[e]={last_time:(new Date).getTime(),count:0,value:t},t.toNumber()}function div(){var e=a+"/b";if(e in cache_eval)return cache_eval[e].count++,cache_eval[e].last_time=(new Date).getTime(),cache_eval[e].value.toNumber();var t=new BigNumber(a).div(b);return cache_eval[e]={last_time:(new Date).getTime(),count:0,value:t},t.toNumber()}function mod(){var e=a+"%b";if(e in cache_eval)return cache_eval[e].count++,cache_eval[e].last_time=(new Date).getTime(),cache_eval[e].value.toNumber();var t=new BigNumber(a).mod(b);return cache_eval[e]={last_time:(new Date).getTime(),count:0,value:t},t.toNumber()}function pow(){var e=a+"**b";if(e in cache_eval)return cache_eval[e].count++,cache_eval[e].last_time=(new Date).getTime(),cache_eval[e].value.toNumber();var t=new BigNumber(a).pow(b);return cache_eval[e]={last_time:(new Date).getTime(),count:0,value:t},t.toNumber()}return exports.add=add,exports.calc=calc,exports.calc_util=calc_util,exports.calc_wrap=calc_wrap,exports.div=div,exports.fmt=fmt,exports.mod=mod,exports.mul=mul,exports.pow=pow,exports.sub=sub,exports.version=version,exports}({});
|
package/calc.d.ts
CHANGED
|
@@ -104,4 +104,11 @@ declare const calc_util: {
|
|
|
104
104
|
|
|
105
105
|
export declare const calc: Calc;
|
|
106
106
|
export declare const calc_wrap: CalcWrap;
|
|
107
|
-
declare const version: string;
|
|
107
|
+
declare const version: string;
|
|
108
|
+
|
|
109
|
+
export declare const add: (a: number|string, b: number|string) => number;
|
|
110
|
+
export declare const sub: (a: number|string, b: number|string) => number;
|
|
111
|
+
export declare const mul: (a: number|string, b: number|string) => number;
|
|
112
|
+
export declare const div: (a: number|string, b: number|string) => number;
|
|
113
|
+
export declare const pow: (a: number|string, b: number|string) => number;
|
|
114
|
+
export declare const mod: (a: number|string, b: number|string) => number;
|