@bytecodealliance/jco 0.5.4 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.mjs +246 -69
- package/cli.mjs +247 -70
- package/js-component-bindgen-component.core.wasm +0 -0
- package/package.json +1 -1
- package/wasi_snapshot_preview1.command.wasm +0 -0
- package/wasi_snapshot_preview1.reactor.wasm +0 -0
- package/wasm-tools.core.wasm +0 -0
package/cli.mjs
CHANGED
|
@@ -11159,6 +11159,7 @@ class Ora {
|
|
|
11159
11159
|
#indent;
|
|
11160
11160
|
#text;
|
|
11161
11161
|
#prefixText;
|
|
11162
|
+
#suffixText;
|
|
11162
11163
|
|
|
11163
11164
|
color;
|
|
11164
11165
|
|
|
@@ -11192,6 +11193,7 @@ class Ora {
|
|
|
11192
11193
|
// It's important that these use the public setters.
|
|
11193
11194
|
this.text = this.#options.text;
|
|
11194
11195
|
this.prefixText = this.#options.prefixText;
|
|
11196
|
+
this.suffixText = this.#options.suffixText;
|
|
11195
11197
|
this.indent = this.#options.indent;
|
|
11196
11198
|
|
|
11197
11199
|
if (external_node_process_.env.NODE_ENV === 'test') {
|
|
@@ -11282,6 +11284,15 @@ class Ora {
|
|
|
11282
11284
|
this.updateLineCount();
|
|
11283
11285
|
}
|
|
11284
11286
|
|
|
11287
|
+
get suffixText() {
|
|
11288
|
+
return this.#suffixText;
|
|
11289
|
+
}
|
|
11290
|
+
|
|
11291
|
+
set suffixText(value) {
|
|
11292
|
+
this.#suffixText = value || '';
|
|
11293
|
+
this.updateLineCount();
|
|
11294
|
+
}
|
|
11295
|
+
|
|
11285
11296
|
get isSpinning() {
|
|
11286
11297
|
return this.#id !== undefined;
|
|
11287
11298
|
}
|
|
@@ -11299,12 +11310,26 @@ class Ora {
|
|
|
11299
11310
|
return '';
|
|
11300
11311
|
}
|
|
11301
11312
|
|
|
11313
|
+
getFullSuffixText(suffixText = this.#suffixText, prefix = ' ') {
|
|
11314
|
+
if (typeof suffixText === 'string' && suffixText !== '') {
|
|
11315
|
+
return prefix + suffixText;
|
|
11316
|
+
}
|
|
11317
|
+
|
|
11318
|
+
if (typeof suffixText === 'function') {
|
|
11319
|
+
return prefix + suffixText();
|
|
11320
|
+
}
|
|
11321
|
+
|
|
11322
|
+
return '';
|
|
11323
|
+
}
|
|
11324
|
+
|
|
11302
11325
|
updateLineCount() {
|
|
11303
11326
|
const columns = this.#stream.columns || 80;
|
|
11304
11327
|
const fullPrefixText = this.getFullPrefixText(this.#prefixText, '-');
|
|
11328
|
+
const fullSuffixText = this.getFullSuffixText(this.#suffixText, '-');
|
|
11329
|
+
const fullText = ' '.repeat(this.#indent) + fullPrefixText + '--' + this.#text + '--' + fullSuffixText;
|
|
11305
11330
|
|
|
11306
11331
|
this.#lineCount = 0;
|
|
11307
|
-
for (const line of stripAnsi(
|
|
11332
|
+
for (const line of stripAnsi(fullText).split('\n')) {
|
|
11308
11333
|
this.#lineCount += Math.max(1, Math.ceil(wcwidth(line) / columns));
|
|
11309
11334
|
}
|
|
11310
11335
|
}
|
|
@@ -11344,8 +11369,9 @@ class Ora {
|
|
|
11344
11369
|
this.#frameIndex = ++this.#frameIndex % frames.length;
|
|
11345
11370
|
const fullPrefixText = (typeof this.#prefixText === 'string' && this.#prefixText !== '') ? this.#prefixText + ' ' : '';
|
|
11346
11371
|
const fullText = typeof this.text === 'string' ? ' ' + this.text : '';
|
|
11372
|
+
const fullSuffixText = (typeof this.#suffixText === 'string' && this.#suffixText !== '') ? ' ' + this.#suffixText : '';
|
|
11347
11373
|
|
|
11348
|
-
return fullPrefixText + frame + fullText;
|
|
11374
|
+
return fullPrefixText + frame + fullText + fullSuffixText;
|
|
11349
11375
|
}
|
|
11350
11376
|
|
|
11351
11377
|
clear() {
|
|
@@ -11463,12 +11489,21 @@ class Ora {
|
|
|
11463
11489
|
return this;
|
|
11464
11490
|
}
|
|
11465
11491
|
|
|
11466
|
-
const prefixText = options.prefixText
|
|
11467
|
-
const
|
|
11492
|
+
const prefixText = options.prefixText ?? this.#prefixText;
|
|
11493
|
+
const fullPrefixText = this.getFullPrefixText(prefixText, ' ');
|
|
11494
|
+
|
|
11495
|
+
const symbolText = options.symbol ?? ' ';
|
|
11496
|
+
|
|
11497
|
+
const text = options.text ?? this.text;
|
|
11468
11498
|
const fullText = (typeof text === 'string') ? ' ' + text : '';
|
|
11469
11499
|
|
|
11500
|
+
const suffixText = options.suffixText ?? this.#suffixText;
|
|
11501
|
+
const fullSuffixText = this.getFullSuffixText(suffixText, ' ');
|
|
11502
|
+
|
|
11503
|
+
const textToWrite = fullPrefixText + symbolText + fullText + fullSuffixText + '\n';
|
|
11504
|
+
|
|
11470
11505
|
this.stop();
|
|
11471
|
-
this.#stream.write(
|
|
11506
|
+
this.#stream.write(textToWrite);
|
|
11472
11507
|
|
|
11473
11508
|
return this;
|
|
11474
11509
|
}
|
|
@@ -11795,6 +11830,10 @@ function set_annotation(node, annotation) {
|
|
|
11795
11830
|
node._annotations |= annotation;
|
|
11796
11831
|
}
|
|
11797
11832
|
|
|
11833
|
+
function clear_annotation(node, annotation) {
|
|
11834
|
+
node._annotations &= ~annotation;
|
|
11835
|
+
}
|
|
11836
|
+
|
|
11798
11837
|
|
|
11799
11838
|
|
|
11800
11839
|
;// CONCATENATED MODULE: ./node_modules/terser/lib/parse.js
|
|
@@ -13907,6 +13946,7 @@ function parse_parse($TEXT, options) {
|
|
|
13907
13946
|
value : tok.value,
|
|
13908
13947
|
quote : tok.quote
|
|
13909
13948
|
});
|
|
13949
|
+
annotate(ret);
|
|
13910
13950
|
break;
|
|
13911
13951
|
case "regexp":
|
|
13912
13952
|
const [_, source, flags] = tok.value.match(/^\/(.*)\/(\w*)$/);
|
|
@@ -13990,7 +14030,7 @@ function parse_parse($TEXT, options) {
|
|
|
13990
14030
|
return new_(allow_calls);
|
|
13991
14031
|
}
|
|
13992
14032
|
if (is("name", "import") && is_token(peek(), "punc", ".")) {
|
|
13993
|
-
return import_meta();
|
|
14033
|
+
return import_meta(allow_calls);
|
|
13994
14034
|
}
|
|
13995
14035
|
var start = S.token;
|
|
13996
14036
|
var peeked;
|
|
@@ -14483,7 +14523,7 @@ function parse_parse($TEXT, options) {
|
|
|
14483
14523
|
});
|
|
14484
14524
|
}
|
|
14485
14525
|
|
|
14486
|
-
function import_meta() {
|
|
14526
|
+
function import_meta(allow_calls) {
|
|
14487
14527
|
var start = S.token;
|
|
14488
14528
|
expect_token("name", "import");
|
|
14489
14529
|
expect_token("punc", ".");
|
|
@@ -14491,7 +14531,7 @@ function parse_parse($TEXT, options) {
|
|
|
14491
14531
|
return subscripts(new AST_ImportMeta({
|
|
14492
14532
|
start: start,
|
|
14493
14533
|
end: prev()
|
|
14494
|
-
}),
|
|
14534
|
+
}), allow_calls);
|
|
14495
14535
|
}
|
|
14496
14536
|
|
|
14497
14537
|
function map_name(is_import) {
|
|
@@ -14793,6 +14833,10 @@ function parse_parse($TEXT, options) {
|
|
|
14793
14833
|
set_annotation(node, _NOINLINE);
|
|
14794
14834
|
break;
|
|
14795
14835
|
}
|
|
14836
|
+
if (/[@#]__KEY__/.test(comment.value)) {
|
|
14837
|
+
set_annotation(node, _KEY);
|
|
14838
|
+
break;
|
|
14839
|
+
}
|
|
14796
14840
|
}
|
|
14797
14841
|
}
|
|
14798
14842
|
}
|
|
@@ -15395,21 +15439,8 @@ var AST_SimpleStatement = DEFNODE("SimpleStatement", "body", function AST_Simple
|
|
|
15395
15439
|
|
|
15396
15440
|
function walk_body(node, visitor) {
|
|
15397
15441
|
const body = node.body;
|
|
15398
|
-
|
|
15399
|
-
|
|
15400
|
-
if (body[i] instanceof AST_Defun) {
|
|
15401
|
-
body[i]._walk(visitor);
|
|
15402
|
-
}
|
|
15403
|
-
}
|
|
15404
|
-
for (var i = 0, len = body.length; i < len; i++) {
|
|
15405
|
-
if (!(body[i] instanceof AST_Defun)) {
|
|
15406
|
-
body[i]._walk(visitor);
|
|
15407
|
-
}
|
|
15408
|
-
}
|
|
15409
|
-
} else {
|
|
15410
|
-
for (var i = 0, len = body.length; i < len; i++) {
|
|
15411
|
-
body[i]._walk(visitor);
|
|
15412
|
-
}
|
|
15442
|
+
for (var i = 0, len = body.length; i < len; i++) {
|
|
15443
|
+
body[i]._walk(visitor);
|
|
15413
15444
|
}
|
|
15414
15445
|
}
|
|
15415
15446
|
|
|
@@ -16064,11 +16095,14 @@ var AST_Destructuring = DEFNODE("Destructuring", "names is_array", function AST_
|
|
|
16064
16095
|
},
|
|
16065
16096
|
all_symbols: function() {
|
|
16066
16097
|
var out = [];
|
|
16067
|
-
this
|
|
16068
|
-
if (node instanceof
|
|
16098
|
+
ast_walk(this, node => {
|
|
16099
|
+
if (node instanceof AST_SymbolDeclaration) {
|
|
16069
16100
|
out.push(node);
|
|
16070
16101
|
}
|
|
16071
|
-
|
|
16102
|
+
if (node instanceof AST_Lambda) {
|
|
16103
|
+
return true;
|
|
16104
|
+
}
|
|
16105
|
+
});
|
|
16072
16106
|
return out;
|
|
16073
16107
|
}
|
|
16074
16108
|
});
|
|
@@ -16599,6 +16633,13 @@ var AST_VarDef = DEFNODE("VarDef", "name value", function AST_VarDef(props) {
|
|
|
16599
16633
|
if (this.value) push(this.value);
|
|
16600
16634
|
push(this.name);
|
|
16601
16635
|
},
|
|
16636
|
+
declarations_as_names() {
|
|
16637
|
+
if (this.name instanceof AST_SymbolDeclaration) {
|
|
16638
|
+
return [this];
|
|
16639
|
+
} else {
|
|
16640
|
+
return this.name.all_symbols();
|
|
16641
|
+
}
|
|
16642
|
+
}
|
|
16602
16643
|
});
|
|
16603
16644
|
|
|
16604
16645
|
var AST_NameMapping = DEFNODE("NameMapping", "foreign_name name", function AST_NameMapping(props) {
|
|
@@ -17921,6 +17962,7 @@ var AST_String = DEFNODE("String", "value quote", function AST_String(props) {
|
|
|
17921
17962
|
this.quote = props.quote;
|
|
17922
17963
|
this.start = props.start;
|
|
17923
17964
|
this.end = props.end;
|
|
17965
|
+
this._annotations = props._annotations;
|
|
17924
17966
|
}
|
|
17925
17967
|
|
|
17926
17968
|
this.flags = 0;
|
|
@@ -18188,11 +18230,10 @@ const walk_abort = Symbol("abort walk");
|
|
|
18188
18230
|
/* -----[ TreeWalker ]----- */
|
|
18189
18231
|
|
|
18190
18232
|
class TreeWalker {
|
|
18191
|
-
constructor(callback
|
|
18233
|
+
constructor(callback) {
|
|
18192
18234
|
this.visit = callback;
|
|
18193
18235
|
this.stack = [];
|
|
18194
18236
|
this.directives = Object.create(null);
|
|
18195
|
-
this.walk_defun_first = walk_defun_first;
|
|
18196
18237
|
}
|
|
18197
18238
|
|
|
18198
18239
|
_visit(node, descend) {
|
|
@@ -18294,6 +18335,7 @@ class TreeTransformer extends TreeWalker {
|
|
|
18294
18335
|
const _PURE = 0b00000001;
|
|
18295
18336
|
const _INLINE = 0b00000010;
|
|
18296
18337
|
const _NOINLINE = 0b00000100;
|
|
18338
|
+
const _KEY = 0b00001000;
|
|
18297
18339
|
|
|
18298
18340
|
|
|
18299
18341
|
|
|
@@ -21328,6 +21370,12 @@ function output_OutputStream(options) {
|
|
|
21328
21370
|
return true;
|
|
21329
21371
|
});
|
|
21330
21372
|
|
|
21373
|
+
PARENS(AST_Chain, function(output) {
|
|
21374
|
+
var p = output.parent();
|
|
21375
|
+
if (!(p instanceof AST_Call || p instanceof ast_AST_PropAccess)) return false;
|
|
21376
|
+
return p.expression === this;
|
|
21377
|
+
});
|
|
21378
|
+
|
|
21331
21379
|
PARENS(ast_AST_PropAccess, function(output) {
|
|
21332
21380
|
var p = output.parent();
|
|
21333
21381
|
if (p instanceof AST_New && p.expression === this) {
|
|
@@ -24550,7 +24598,8 @@ function maintain_this_binding(parent, orig, val) {
|
|
|
24550
24598
|
parent instanceof AST_UnaryPrefix && parent.operator == "delete"
|
|
24551
24599
|
|| parent instanceof AST_Call && parent.expression === orig
|
|
24552
24600
|
&& (
|
|
24553
|
-
val instanceof
|
|
24601
|
+
val instanceof AST_Chain
|
|
24602
|
+
|| val instanceof ast_AST_PropAccess
|
|
24554
24603
|
|| val instanceof AST_SymbolRef && val.name == "eval"
|
|
24555
24604
|
)
|
|
24556
24605
|
) {
|
|
@@ -26099,6 +26148,25 @@ const regexp_flags = new Set([
|
|
|
26099
26148
|
def_eval(ast_AST_PropAccess, function (compressor, depth) {
|
|
26100
26149
|
let obj = this.expression._eval(compressor, depth + 1);
|
|
26101
26150
|
if (obj === nullish || (this.optional && obj == null)) return nullish;
|
|
26151
|
+
|
|
26152
|
+
// `.length` of strings and arrays is always safe
|
|
26153
|
+
if (this.property === "length") {
|
|
26154
|
+
if (typeof obj === "string") {
|
|
26155
|
+
return obj.length;
|
|
26156
|
+
}
|
|
26157
|
+
|
|
26158
|
+
const is_spreadless_array =
|
|
26159
|
+
obj instanceof ast_AST_Array
|
|
26160
|
+
&& obj.elements.every(el => !(el instanceof AST_Expansion));
|
|
26161
|
+
|
|
26162
|
+
if (
|
|
26163
|
+
is_spreadless_array
|
|
26164
|
+
&& obj.elements.every(el => !el.has_side_effects(compressor))
|
|
26165
|
+
) {
|
|
26166
|
+
return obj.elements.length;
|
|
26167
|
+
}
|
|
26168
|
+
}
|
|
26169
|
+
|
|
26102
26170
|
if (compressor.option("unsafe")) {
|
|
26103
26171
|
var key = this.property;
|
|
26104
26172
|
if (key instanceof ast_AST_Node) {
|
|
@@ -26106,9 +26174,9 @@ def_eval(ast_AST_PropAccess, function (compressor, depth) {
|
|
|
26106
26174
|
if (key === this.property)
|
|
26107
26175
|
return this;
|
|
26108
26176
|
}
|
|
26177
|
+
|
|
26109
26178
|
var exp = this.expression;
|
|
26110
26179
|
if (is_undeclared_ref(exp)) {
|
|
26111
|
-
|
|
26112
26180
|
var aa;
|
|
26113
26181
|
var first_arg = exp.name === "hasOwnProperty"
|
|
26114
26182
|
&& key === "call"
|
|
@@ -27364,9 +27432,7 @@ def_reduce_vars(AST_Default, function(tw, descend) {
|
|
|
27364
27432
|
|
|
27365
27433
|
function mark_lambda(tw, descend, compressor) {
|
|
27366
27434
|
clear_flag(this, INLINED);
|
|
27367
|
-
|
|
27368
27435
|
push(tw);
|
|
27369
|
-
|
|
27370
27436
|
reset_variables(tw, compressor, this);
|
|
27371
27437
|
|
|
27372
27438
|
var iife;
|
|
@@ -27401,9 +27467,86 @@ function mark_lambda(tw, descend, compressor) {
|
|
|
27401
27467
|
descend();
|
|
27402
27468
|
pop(tw);
|
|
27403
27469
|
|
|
27470
|
+
handle_defined_after_hoist(this);
|
|
27471
|
+
|
|
27404
27472
|
return true;
|
|
27405
27473
|
}
|
|
27406
27474
|
|
|
27475
|
+
/**
|
|
27476
|
+
* It's possible for a hoisted function to use something that's not defined yet. Example:
|
|
27477
|
+
*
|
|
27478
|
+
* hoisted();
|
|
27479
|
+
* var defined_after = true;
|
|
27480
|
+
* function hoisted() {
|
|
27481
|
+
* // use defined_after
|
|
27482
|
+
* }
|
|
27483
|
+
*
|
|
27484
|
+
* This function is called on the parent to handle this issue.
|
|
27485
|
+
*/
|
|
27486
|
+
function handle_defined_after_hoist(parent) {
|
|
27487
|
+
const defuns = [];
|
|
27488
|
+
ast_walk(parent, node => {
|
|
27489
|
+
if (node === parent) return;
|
|
27490
|
+
if (node instanceof AST_Defun) defuns.push(node);
|
|
27491
|
+
if (
|
|
27492
|
+
node instanceof AST_Scope
|
|
27493
|
+
|| node instanceof AST_SimpleStatement
|
|
27494
|
+
) return true;
|
|
27495
|
+
});
|
|
27496
|
+
|
|
27497
|
+
for (const defun of defuns) {
|
|
27498
|
+
const fname_def = defun.name.definition();
|
|
27499
|
+
const found_self_ref_in_other_defuns = defuns.some(
|
|
27500
|
+
d => d !== defun && d.enclosed.indexOf(fname_def) !== -1
|
|
27501
|
+
);
|
|
27502
|
+
|
|
27503
|
+
for (const def of defun.enclosed) {
|
|
27504
|
+
if (
|
|
27505
|
+
def.fixed === false
|
|
27506
|
+
|| def === fname_def
|
|
27507
|
+
|| def.scope.get_defun_scope() !== parent
|
|
27508
|
+
) {
|
|
27509
|
+
continue;
|
|
27510
|
+
}
|
|
27511
|
+
|
|
27512
|
+
// defun is hoisted, so always safe
|
|
27513
|
+
if (
|
|
27514
|
+
def.assignments === 0
|
|
27515
|
+
&& def.orig.length === 1
|
|
27516
|
+
&& def.orig[0] instanceof AST_SymbolDefun
|
|
27517
|
+
) {
|
|
27518
|
+
continue;
|
|
27519
|
+
}
|
|
27520
|
+
|
|
27521
|
+
if (found_self_ref_in_other_defuns) {
|
|
27522
|
+
def.fixed = false;
|
|
27523
|
+
continue;
|
|
27524
|
+
}
|
|
27525
|
+
|
|
27526
|
+
// Detect `call_defun(); var used_in_defun = ...`
|
|
27527
|
+
// Because `used_in_defun` can no longer be fixed
|
|
27528
|
+
let found_defun = false;
|
|
27529
|
+
let found_def_after_defun = false;
|
|
27530
|
+
ast_walk(parent, node => {
|
|
27531
|
+
if (node === defun) return true;
|
|
27532
|
+
|
|
27533
|
+
if (node instanceof ast_AST_Symbol) {
|
|
27534
|
+
if (!found_defun && node.thedef === fname_def) {
|
|
27535
|
+
found_defun = true;
|
|
27536
|
+
} else if (found_defun && node.thedef === def) {
|
|
27537
|
+
found_def_after_defun = true;
|
|
27538
|
+
return walk_abort;
|
|
27539
|
+
}
|
|
27540
|
+
}
|
|
27541
|
+
});
|
|
27542
|
+
|
|
27543
|
+
if (found_def_after_defun) {
|
|
27544
|
+
def.fixed = false;
|
|
27545
|
+
}
|
|
27546
|
+
}
|
|
27547
|
+
}
|
|
27548
|
+
}
|
|
27549
|
+
|
|
27407
27550
|
def_reduce_vars(AST_Lambda, mark_lambda);
|
|
27408
27551
|
|
|
27409
27552
|
def_reduce_vars(AST_Do, function(tw, descend, compressor) {
|
|
@@ -27524,6 +27667,9 @@ def_reduce_vars(AST_Toplevel, function(tw, descend, compressor) {
|
|
|
27524
27667
|
reset_def(compressor, def);
|
|
27525
27668
|
});
|
|
27526
27669
|
reset_variables(tw, compressor, this);
|
|
27670
|
+
descend();
|
|
27671
|
+
handle_defined_after_hoist(this);
|
|
27672
|
+
return true;
|
|
27527
27673
|
});
|
|
27528
27674
|
|
|
27529
27675
|
def_reduce_vars(AST_Try, function(tw, descend, compressor) {
|
|
@@ -27679,12 +27825,31 @@ function is_lhs_read_only(lhs) {
|
|
|
27679
27825
|
return false;
|
|
27680
27826
|
}
|
|
27681
27827
|
|
|
27682
|
-
|
|
27828
|
+
/** var a = 1 --> var a*/
|
|
27829
|
+
function remove_initializers(var_statement) {
|
|
27830
|
+
var decls = [];
|
|
27831
|
+
var_statement.definitions.forEach(function(def) {
|
|
27832
|
+
if (def.name instanceof AST_SymbolDeclaration) {
|
|
27833
|
+
def.value = null;
|
|
27834
|
+
decls.push(def);
|
|
27835
|
+
} else {
|
|
27836
|
+
def.declarations_as_names().forEach(name => {
|
|
27837
|
+
decls.push(make_node(AST_VarDef, def, {
|
|
27838
|
+
name,
|
|
27839
|
+
value: null
|
|
27840
|
+
}));
|
|
27841
|
+
});
|
|
27842
|
+
}
|
|
27843
|
+
});
|
|
27844
|
+
return decls.length ? make_node(AST_Var, var_statement, { definitions: decls }) : null;
|
|
27845
|
+
}
|
|
27846
|
+
|
|
27847
|
+
/** Called on code which we know is unreachable, to keep elements that affect outside of it. */
|
|
27683
27848
|
function trim_unreachable_code(compressor, stat, target) {
|
|
27684
27849
|
ast_walk(stat, node => {
|
|
27685
27850
|
if (node instanceof AST_Var) {
|
|
27686
|
-
|
|
27687
|
-
target.push(
|
|
27851
|
+
const no_initializers = remove_initializers(node);
|
|
27852
|
+
if (no_initializers) target.push(no_initializers);
|
|
27688
27853
|
return true;
|
|
27689
27854
|
}
|
|
27690
27855
|
if (
|
|
@@ -29645,6 +29810,7 @@ class Compressor extends TreeWalker {
|
|
|
29645
29810
|
keep_fargs : true,
|
|
29646
29811
|
keep_fnames : false,
|
|
29647
29812
|
keep_infinity : false,
|
|
29813
|
+
lhs_constants : !false_by_default,
|
|
29648
29814
|
loops : !false_by_default,
|
|
29649
29815
|
module : false,
|
|
29650
29816
|
negate_iife : !false_by_default,
|
|
@@ -29939,7 +30105,7 @@ AST_Toplevel.DEFMETHOD("reset_opt_flags", function(compressor) {
|
|
|
29939
30105
|
}
|
|
29940
30106
|
return node.reduce_vars(preparation, descend, compressor);
|
|
29941
30107
|
}
|
|
29942
|
-
}
|
|
30108
|
+
});
|
|
29943
30109
|
// Stack of look-up tables to keep track of whether a `SymbolDef` has been
|
|
29944
30110
|
// properly assigned before use:
|
|
29945
30111
|
// - `push()` & `pop()` when visiting conditional branches
|
|
@@ -30944,26 +31110,6 @@ def_optimize(AST_Try, function(self, compressor) {
|
|
|
30944
31110
|
return self;
|
|
30945
31111
|
});
|
|
30946
31112
|
|
|
30947
|
-
AST_Definitions.DEFMETHOD("remove_initializers", function() {
|
|
30948
|
-
var decls = [];
|
|
30949
|
-
this.definitions.forEach(function(def) {
|
|
30950
|
-
if (def.name instanceof AST_SymbolDeclaration) {
|
|
30951
|
-
def.value = null;
|
|
30952
|
-
decls.push(def);
|
|
30953
|
-
} else {
|
|
30954
|
-
ast_walk(def.name, node => {
|
|
30955
|
-
if (node instanceof AST_SymbolDeclaration) {
|
|
30956
|
-
decls.push(make_node(AST_VarDef, def, {
|
|
30957
|
-
name: node,
|
|
30958
|
-
value: null
|
|
30959
|
-
}));
|
|
30960
|
-
}
|
|
30961
|
-
});
|
|
30962
|
-
}
|
|
30963
|
-
});
|
|
30964
|
-
this.definitions = decls;
|
|
30965
|
-
});
|
|
30966
|
-
|
|
30967
31113
|
AST_Definitions.DEFMETHOD("to_assignments", function(compressor) {
|
|
30968
31114
|
var reduce_vars = compressor.option("reduce_vars");
|
|
30969
31115
|
var assignments = [];
|
|
@@ -31531,7 +31677,7 @@ def_optimize(AST_Binary, function(self, compressor) {
|
|
|
31531
31677
|
self.right = tmp;
|
|
31532
31678
|
}
|
|
31533
31679
|
}
|
|
31534
|
-
if (commutativeOperators.has(self.operator)) {
|
|
31680
|
+
if (compressor.option("lhs_constants") && commutativeOperators.has(self.operator)) {
|
|
31535
31681
|
if (self.right.is_constant()
|
|
31536
31682
|
&& !self.left.is_constant()) {
|
|
31537
31683
|
// if right is a constant, whatever side effects the
|
|
@@ -31561,6 +31707,9 @@ def_optimize(AST_Binary, function(self, compressor) {
|
|
|
31561
31707
|
// void 0 == x => null == x
|
|
31562
31708
|
if (!is_strict_comparison && is_undefined(self.left, compressor)) {
|
|
31563
31709
|
self.left = make_node(AST_Null, self.left);
|
|
31710
|
+
// x == void 0 => x == null
|
|
31711
|
+
} else if (!is_strict_comparison && is_undefined(self.right, compressor)) {
|
|
31712
|
+
self.right = make_node(AST_Null, self.right);
|
|
31564
31713
|
} else if (compressor.option("typeofs")
|
|
31565
31714
|
// "undefined" == typeof x => undefined === x
|
|
31566
31715
|
&& self.left instanceof AST_String
|
|
@@ -31574,6 +31723,19 @@ def_optimize(AST_Binary, function(self, compressor) {
|
|
|
31574
31723
|
self.left = make_node(AST_Undefined, self.left).optimize(compressor);
|
|
31575
31724
|
if (self.operator.length == 2) self.operator += "=";
|
|
31576
31725
|
}
|
|
31726
|
+
} else if (compressor.option("typeofs")
|
|
31727
|
+
// typeof x === "undefined" => x === undefined
|
|
31728
|
+
&& self.left instanceof AST_UnaryPrefix
|
|
31729
|
+
&& self.left.operator == "typeof"
|
|
31730
|
+
&& self.right instanceof AST_String
|
|
31731
|
+
&& self.right.value == "undefined") {
|
|
31732
|
+
var expr = self.left.expression;
|
|
31733
|
+
if (expr instanceof AST_SymbolRef ? expr.is_declared(compressor)
|
|
31734
|
+
: !(expr instanceof ast_AST_PropAccess && compressor.option("ie8"))) {
|
|
31735
|
+
self.left = expr;
|
|
31736
|
+
self.right = make_node(AST_Undefined, self.right).optimize(compressor);
|
|
31737
|
+
if (self.operator.length == 2) self.operator += "=";
|
|
31738
|
+
}
|
|
31577
31739
|
} else if (self.left instanceof AST_SymbolRef
|
|
31578
31740
|
// obj !== obj => false
|
|
31579
31741
|
&& self.right instanceof AST_SymbolRef
|
|
@@ -32165,13 +32327,20 @@ def_optimize(AST_DefaultAssign, function(self, compressor) {
|
|
|
32165
32327
|
|
|
32166
32328
|
// `[x = undefined] = foo` ---> `[x] = foo`
|
|
32167
32329
|
// `(arg = undefined) => ...` ---> `(arg) => ...` (unless `keep_fargs`)
|
|
32168
|
-
|
|
32169
|
-
|
|
32170
|
-
|
|
32171
|
-
|
|
32172
|
-
|
|
32173
|
-
|
|
32174
|
-
|
|
32330
|
+
// `((arg = undefined) => ...)()` ---> `((arg) => ...)()`
|
|
32331
|
+
let lambda, iife;
|
|
32332
|
+
if (evaluateRight === undefined) {
|
|
32333
|
+
if (
|
|
32334
|
+
(lambda = compressor.parent()) instanceof AST_Lambda
|
|
32335
|
+
? (
|
|
32336
|
+
compressor.option("keep_fargs") === false
|
|
32337
|
+
|| (iife = compressor.parent(1)).TYPE === "Call"
|
|
32338
|
+
&& iife.expression === lambda
|
|
32339
|
+
)
|
|
32340
|
+
: true
|
|
32341
|
+
) {
|
|
32342
|
+
self = self.left;
|
|
32343
|
+
}
|
|
32175
32344
|
} else if (evaluateRight !== self.right) {
|
|
32176
32345
|
evaluateRight = make_node_from_constant(evaluateRight, self.right);
|
|
32177
32346
|
self.right = best_of_expression(evaluateRight, self.right);
|
|
@@ -42276,6 +42445,8 @@ function mangle_properties(ast, options) {
|
|
|
42276
42445
|
addStrings(node.args[1], add);
|
|
42277
42446
|
} else if (node instanceof AST_Binary && node.operator === "in") {
|
|
42278
42447
|
addStrings(node.left, add);
|
|
42448
|
+
} else if (node instanceof AST_String && has_annotation(node, _KEY)) {
|
|
42449
|
+
add(node.value);
|
|
42279
42450
|
}
|
|
42280
42451
|
}));
|
|
42281
42452
|
|
|
@@ -42309,6 +42480,10 @@ function mangle_properties(ast, options) {
|
|
|
42309
42480
|
node.args[1] = mangleStrings(node.args[1]);
|
|
42310
42481
|
} else if (node instanceof AST_Binary && node.operator === "in") {
|
|
42311
42482
|
node.left = mangleStrings(node.left);
|
|
42483
|
+
} else if (node instanceof AST_String && has_annotation(node, _KEY)) {
|
|
42484
|
+
// Clear _KEY annotation to prevent double mangling
|
|
42485
|
+
clear_annotation(node, _KEY);
|
|
42486
|
+
node.value = mangle(node.value);
|
|
42312
42487
|
}
|
|
42313
42488
|
}));
|
|
42314
42489
|
|
|
@@ -42374,6 +42549,8 @@ function mangle_properties(ast, options) {
|
|
|
42374
42549
|
var last = node.expressions.length - 1;
|
|
42375
42550
|
node.expressions[last] = mangleStrings(node.expressions[last]);
|
|
42376
42551
|
} else if (node instanceof AST_String) {
|
|
42552
|
+
// Clear _KEY annotation to prevent double mangling
|
|
42553
|
+
clear_annotation(node, _KEY);
|
|
42377
42554
|
node.value = mangle(node.value);
|
|
42378
42555
|
} else if (node instanceof AST_Conditional) {
|
|
42379
42556
|
node.consequent = mangleStrings(node.consequent);
|
|
@@ -43516,8 +43693,8 @@ const exports = {
|
|
|
43516
43693
|
|
|
43517
43694
|
const $init = (async() => {
|
|
43518
43695
|
const module0 = fetchCompile(__nccwpck_require__.ab + "js-component-bindgen-component.core.wasm");
|
|
43519
|
-
const module1 = base64Compile('AGFzbQEAAAABBgFgAn9/
|
|
43520
|
-
const module2 = base64Compile('AGFzbQEAAAABBgFgAn9/
|
|
43696
|
+
const module1 = base64Compile('AGFzbQEAAAABBgFgAn9/AAMCAQAEBQFwAQEBBxACATAAAAgkaW1wb3J0cwEACg0BCwAgACABQQARAAALAC0JcHJvZHVjZXJzAQxwcm9jZXNzZWQtYnkBDXdpdC1jb21wb25lbnQFMC44LjEANQRuYW1lABMSd2l0LWNvbXBvbmVudDpzaGltARkBABZpbmRpcmVjdC1jb25zb2xlLWVycm9y');
|
|
43697
|
+
const module2 = base64Compile('AGFzbQEAAAABBgFgAn9/AAIVAgABMAAAAAgkaW1wb3J0cwFwAQEBCQcBAEEACwEAAC0JcHJvZHVjZXJzAQxwcm9jZXNzZWQtYnkBDXdpdC1jb21wb25lbnQFMC44LjEAHARuYW1lABUUd2l0LWNvbXBvbmVudDpmaXh1cHM=');
|
|
43521
43698
|
Promise.all([module0, module1, module2]).catch(() => {});
|
|
43522
43699
|
({ exports: exports0 } = await instantiateCore(await module1));
|
|
43523
43700
|
({ exports: exports1 } = await instantiateCore(await module0, {
|
|
@@ -44203,8 +44380,8 @@ const exports = {
|
|
|
44203
44380
|
|
|
44204
44381
|
const $init = (async() => {
|
|
44205
44382
|
const module0 = fetchCompile(__nccwpck_require__.ab + "wasm-tools.core.wasm");
|
|
44206
|
-
const module1 = base64Compile('AGFzbQEAAAABBgFgAn9/
|
|
44207
|
-
const module2 = base64Compile('AGFzbQEAAAABBgFgAn9/
|
|
44383
|
+
const module1 = base64Compile('AGFzbQEAAAABBgFgAn9/AAMCAQAEBQFwAQEBBxACATAAAAgkaW1wb3J0cwEACg0BCwAgACABQQARAAALAC0JcHJvZHVjZXJzAQxwcm9jZXNzZWQtYnkBDXdpdC1jb21wb25lbnQFMC44LjEANQRuYW1lABMSd2l0LWNvbXBvbmVudDpzaGltARkBABZpbmRpcmVjdC1jb25zb2xlLWVycm9y');
|
|
44384
|
+
const module2 = base64Compile('AGFzbQEAAAABBgFgAn9/AAIVAgABMAAAAAgkaW1wb3J0cwFwAQEBCQcBAEEACwEAAC0JcHJvZHVjZXJzAQxwcm9jZXNzZWQtYnkBDXdpdC1jb21wb25lbnQFMC44LjEAHARuYW1lABUUd2l0LWNvbXBvbmVudDpmaXh1cHM=');
|
|
44208
44385
|
Promise.all([module0, module1, module2]).catch(() => {});
|
|
44209
44386
|
({ exports: exports0 } = await instantiateCore(await module1));
|
|
44210
44387
|
({ exports: exports1 } = await instantiateCore(await module0, {
|
|
@@ -45138,7 +45315,7 @@ var __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([_cmd
|
|
|
45138
45315
|
commander__WEBPACK_IMPORTED_MODULE_0__/* .program.name */ .Nx.name('jco')
|
|
45139
45316
|
.description(chalk_template__WEBPACK_IMPORTED_MODULE_5__/* ["default"] */ .Z`{bold jco - WebAssembly JS Component Tools}\n JS Component Transpilation Bindgen & Wasm Tools for JS`)
|
|
45140
45317
|
.usage('<command> [options]')
|
|
45141
|
-
.version('0.
|
|
45318
|
+
.version('0.6.0');
|
|
45142
45319
|
|
|
45143
45320
|
function myParseInt(value) {
|
|
45144
45321
|
return parseInt(value, 10);
|
|
@@ -45263,7 +45440,7 @@ __webpack_async_result__();
|
|
|
45263
45440
|
/***/ 6374:
|
|
45264
45441
|
/***/ ((module) => {
|
|
45265
45442
|
|
|
45266
|
-
module.exports = JSON.parse('{"dots":{"interval":80,"frames":["⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏"]},"dots2":{"interval":80,"frames":["⣾","⣽","⣻","⢿","⡿","⣟","⣯","⣷"]},"dots3":{"interval":80,"frames":["⠋","⠙","⠚","⠞","⠖","⠦","⠴","⠲","⠳","⠓"]},"dots4":{"interval":80,"frames":["⠄","⠆","⠇","⠋","⠙","⠸","⠰","⠠","⠰","⠸","⠙","⠋","⠇","⠆"]},"dots5":{"interval":80,"frames":["⠋","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋"]},"dots6":{"interval":80,"frames":["⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠴","⠲","⠒","⠂","⠂","⠒","⠚","⠙","⠉","⠁"]},"dots7":{"interval":80,"frames":["⠈","⠉","⠋","⠓","⠒","⠐","⠐","⠒","⠖","⠦","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈"]},"dots8":{"interval":80,"frames":["⠁","⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈","⠈"]},"dots9":{"interval":80,"frames":["⢹","⢺","⢼","⣸","⣇","⡧","⡗","⡏"]},"dots10":{"interval":80,"frames":["⢄","⢂","⢁","⡁","⡈","⡐","⡠"]},"dots11":{"interval":100,"frames":["⠁","⠂","⠄","⡀","⢀","⠠","⠐","⠈"]},"dots12":{"interval":80,"frames":["⢀⠀","⡀⠀","⠄⠀","⢂⠀","⡂⠀","⠅⠀","⢃⠀","⡃⠀","⠍⠀","⢋⠀","⡋⠀","⠍⠁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⢈⠩","⡀⢙","⠄⡙","⢂⠩","⡂⢘","⠅⡘","⢃⠨","⡃⢐","⠍⡐","⢋⠠","⡋⢀","⠍⡁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⠈⠩","⠀⢙","⠀⡙","⠀⠩","⠀⢘","⠀⡘","⠀⠨","⠀⢐","⠀⡐","⠀⠠","⠀⢀","⠀⡀"]},"dots13":{"interval":80,"frames":["⣼","⣹","⢻","⠿","⡟","⣏","⣧","⣶"]},"dots8Bit":{"interval":80,"frames":["⠀","⠁","⠂","⠃","⠄","⠅","⠆","⠇","⡀","⡁","⡂","⡃","⡄","⡅","⡆","⡇","⠈","⠉","⠊","⠋","⠌","⠍","⠎","⠏","⡈","⡉","⡊","⡋","⡌","⡍","⡎","⡏","⠐","⠑","⠒","⠓","⠔","⠕","⠖","⠗","⡐","⡑","⡒","⡓","⡔","⡕","⡖","⡗","⠘","⠙","⠚","⠛","⠜","⠝","⠞","⠟","⡘","⡙","⡚","⡛","⡜","⡝","⡞","⡟","⠠","⠡","⠢","⠣","⠤","⠥","⠦","⠧","⡠","⡡","⡢","⡣","⡤","⡥","⡦","⡧","⠨","⠩","⠪","⠫","⠬","⠭","⠮","⠯","⡨","⡩","⡪","⡫","⡬","⡭","⡮","⡯","⠰","⠱","⠲","⠳","⠴","⠵","⠶","⠷","⡰","⡱","⡲","⡳","⡴","⡵","⡶","⡷","⠸","⠹","⠺","⠻","⠼","⠽","⠾","⠿","⡸","⡹","⡺","⡻","⡼","⡽","⡾","⡿","⢀","⢁","⢂","⢃","⢄","⢅","⢆","⢇","⣀","⣁","⣂","⣃","⣄","⣅","⣆","⣇","⢈","⢉","⢊","⢋","⢌","⢍","⢎","⢏","⣈","⣉","⣊","⣋","⣌","⣍","⣎","⣏","⢐","⢑","⢒","⢓","⢔","⢕","⢖","⢗","⣐","⣑","⣒","⣓","⣔","⣕","⣖","⣗","⢘","⢙","⢚","⢛","⢜","⢝","⢞","⢟","⣘","⣙","⣚","⣛","⣜","⣝","⣞","⣟","⢠","⢡","⢢","⢣","⢤","⢥","⢦","⢧","⣠","⣡","⣢","⣣","⣤","⣥","⣦","⣧","⢨","⢩","⢪","⢫","⢬","⢭","⢮","⢯","⣨","⣩","⣪","⣫","⣬","⣭","⣮","⣯","⢰","⢱","⢲","⢳","⢴","⢵","⢶","⢷","⣰","⣱","⣲","⣳","⣴","⣵","⣶","⣷","⢸","⢹","⢺","⢻","⢼","⢽","⢾","⢿","⣸","⣹","⣺","⣻","⣼","⣽","⣾","⣿"]},"sand":{"interval":80,"frames":["⠁","⠂","⠄","⡀","⡈","⡐","⡠","⣀","⣁","⣂","⣄","⣌","⣔","⣤","⣥","⣦","⣮","⣶","⣷","⣿","⡿","⠿","⢟","⠟","⡛","⠛","⠫","⢋","⠋","⠍","⡉","⠉","⠑","⠡","⢁"]},"line":{"interval":130,"frames":["-","\\\\","|","/"]},"line2":{"interval":100,"frames":["⠂","-","–","—","–","-"]},"pipe":{"interval":100,"frames":["┤","┘","┴","└","├","┌","┬","┐"]},"simpleDots":{"interval":400,"frames":[". ",".. ","..."," "]},"simpleDotsScrolling":{"interval":200,"frames":[". ",".. ","..."," .."," ."," "]},"star":{"interval":70,"frames":["✶","✸","✹","✺","✹","✷"]},"star2":{"interval":80,"frames":["+","x","*"]},"flip":{"interval":70,"frames":["_","_","_","-","`","`","\'","´","-","_","_","_"]},"hamburger":{"interval":100,"frames":["☱","☲","☴"]},"growVertical":{"interval":120,"frames":["▁","▃","▄","▅","▆","▇","▆","▅","▄","▃"]},"growHorizontal":{"interval":120,"frames":["▏","▎","▍","▌","▋","▊","▉","▊","▋","▌","▍","▎"]},"balloon":{"interval":140,"frames":[" ",".","o","O","@","*"," "]},"balloon2":{"interval":120,"frames":[".","o","O","°","O","o","."]},"noise":{"interval":100,"frames":["▓","▒","░"]},"bounce":{"interval":120,"frames":["⠁","⠂","⠄","⠂"]},"boxBounce":{"interval":120,"frames":["▖","▘","▝","▗"]},"boxBounce2":{"interval":100,"frames":["▌","▀","▐","▄"]},"triangle":{"interval":50,"frames":["◢","◣","◤","◥"]},"arc":{"interval":100,"frames":["◜","◠","◝","◞","◡","◟"]},"circle":{"interval":120,"frames":["◡","⊙","◠"]},"squareCorners":{"interval":180,"frames":["◰","◳","◲","◱"]},"circleQuarters":{"interval":120,"frames":["◴","◷","◶","◵"]},"circleHalves":{"interval":50,"frames":["◐","◓","◑","◒"]},"squish":{"interval":100,"frames":["╫","╪"]},"toggle":{"interval":250,"frames":["⊶","⊷"]},"toggle2":{"interval":80,"frames":["▫","▪"]},"toggle3":{"interval":120,"frames":["□","■"]},"toggle4":{"interval":100,"frames":["■","□","▪","▫"]},"toggle5":{"interval":100,"frames":["▮","▯"]},"toggle6":{"interval":300,"frames":["ဝ","၀"]},"toggle7":{"interval":80,"frames":["⦾","⦿"]},"toggle8":{"interval":100,"frames":["◍","◌"]},"toggle9":{"interval":100,"frames":["◉","◎"]},"toggle10":{"interval":100,"frames":["㊂","㊀","㊁"]},"toggle11":{"interval":50,"frames":["⧇","⧆"]},"toggle12":{"interval":120,"frames":["☗","☖"]},"toggle13":{"interval":80,"frames":["=","*","-"]},"arrow":{"interval":100,"frames":["←","↖","↑","↗","→","↘","↓","↙"]},"arrow2":{"interval":80,"frames":["⬆️ ","↗️ ","➡️ ","↘️ ","⬇️ ","↙️ ","⬅️ ","↖️ "]},"arrow3":{"interval":120,"frames":["▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸"]},"bouncingBar":{"interval":80,"frames":["[ ]","[= ]","[== ]","[=== ]","[ ===]","[ ==]","[ =]","[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]"]},"bouncingBall":{"interval":80,"frames":["( ● )","( ● )","( ● )","( ● )","( ●)","( ● )","( ● )","( ● )","( ● )","(● )"]},"smiley":{"interval":200,"frames":["😄 ","😝 "]},"monkey":{"interval":300,"frames":["🙈 ","🙈 ","🙉 ","🙊 "]},"hearts":{"interval":100,"frames":["💛 ","💙 ","💜 ","💚 ","❤️ "]},"clock":{"interval":100,"frames":["🕛 ","🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 "]},"earth":{"interval":180,"frames":["🌍 ","🌎 ","🌏 "]},"material":{"interval":17,"frames":["█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁","███████▁▁▁▁▁▁▁▁▁▁▁▁▁","████████▁▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","██████████▁▁▁▁▁▁▁▁▁▁","███████████▁▁▁▁▁▁▁▁▁","█████████████▁▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁▁██████████████▁▁▁▁","▁▁▁██████████████▁▁▁","▁▁▁▁█████████████▁▁▁","▁▁▁▁██████████████▁▁","▁▁▁▁██████████████▁▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁▁██████████████","▁▁▁▁▁▁██████████████","▁▁▁▁▁▁▁█████████████","▁▁▁▁▁▁▁█████████████","▁▁▁▁▁▁▁▁████████████","▁▁▁▁▁▁▁▁████████████","▁▁▁▁▁▁▁▁▁███████████","▁▁▁▁▁▁▁▁▁███████████","▁▁▁▁▁▁▁▁▁▁██████████","▁▁▁▁▁▁▁▁▁▁██████████","▁▁▁▁▁▁▁▁▁▁▁▁████████","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","██████▁▁▁▁▁▁▁▁▁▁▁▁▁█","████████▁▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","███████████▁▁▁▁▁▁▁▁▁","████████████▁▁▁▁▁▁▁▁","████████████▁▁▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁▁▁█████████████▁▁▁▁","▁▁▁▁▁████████████▁▁▁","▁▁▁▁▁████████████▁▁▁","▁▁▁▁▁▁███████████▁▁▁","▁▁▁▁▁▁▁▁█████████▁▁▁","▁▁▁▁▁▁▁▁█████████▁▁▁","▁▁▁▁▁▁▁▁▁█████████▁▁","▁▁▁▁▁▁▁▁▁█████████▁▁","▁▁▁▁▁▁▁▁▁▁█████████▁","▁▁▁▁▁▁▁▁▁▁▁████████▁","▁▁▁▁▁▁▁▁▁▁▁████████▁","▁▁▁▁▁▁▁▁▁▁▁▁███████▁","▁▁▁▁▁▁▁▁▁▁▁▁███████▁","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁"]},"moon":{"interval":80,"frames":["🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 "]},"runner":{"interval":140,"frames":["🚶 ","🏃 "]},"pong":{"interval":80,"frames":["▐⠂ ▌","▐⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂▌","▐ ⠠▌","▐ ⡀▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐⠠ ▌"]},"shark":{"interval":120,"frames":["▐|\\\\____________▌","▐_|\\\\___________▌","▐__|\\\\__________▌","▐___|\\\\_________▌","▐____|\\\\________▌","▐_____|\\\\_______▌","▐______|\\\\______▌","▐_______|\\\\_____▌","▐________|\\\\____▌","▐_________|\\\\___▌","▐__________|\\\\__▌","▐___________|\\\\_▌","▐____________|\\\\▌","▐____________/|▌","▐___________/|_▌","▐__________/|__▌","▐_________/|___▌","▐________/|____▌","▐_______/|_____▌","▐______/|______▌","▐_____/|_______▌","▐____/|________▌","▐___/|_________▌","▐__/|__________▌","▐_/|___________▌","▐/|____________▌"]},"dqpb":{"interval":100,"frames":["d","q","p","b"]},"weather":{"interval":100,"frames":["☀️ ","☀️ ","☀️ ","🌤 ","⛅️ ","🌥 ","☁️ ","🌧 ","🌨 ","🌧 ","🌨 ","🌧 ","🌨 ","⛈ ","🌨 ","🌧 ","🌨 ","☁️ ","🌥 ","⛅️ ","🌤 ","☀️ ","☀️ "]},"christmas":{"interval":400,"frames":["🌲","🎄"]},"grenade":{"interval":80,"frames":["، ","′ "," ´ "," ‾ "," ⸌"," ⸊"," |"," ⁎"," ⁕"," ෴ "," ⁓"," "," "," "]},"point":{"interval":125,"frames":["∙∙∙","●∙∙","∙●∙","∙∙●","∙∙∙"]},"layer":{"interval":150,"frames":["-","=","≡"]},"betaWave":{"interval":80,"frames":["ρββββββ","βρβββββ","ββρββββ","βββρβββ","ββββρββ","βββββρβ","ββββββρ"]},"fingerDance":{"interval":160,"frames":["🤘 ","🤟 ","🖖 ","✋ ","🤚 ","👆 "]},"fistBump":{"interval":80,"frames":["🤜 🤛 ","🤜 🤛 ","🤜 🤛 "," 🤜 🤛 "," 🤜🤛 "," 🤜✨🤛 ","🤜 ✨ 🤛 "]},"soccerHeader":{"interval":80,"frames":[" 🧑⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 "]},"mindblown":{"interval":160,"frames":["😐 ","😐 ","😮 ","😮 ","😦 ","😦 ","😧 ","😧 ","🤯 ","💥 ","✨ "," "," "," "]},"speaker":{"interval":160,"frames":["🔈 ","🔉 ","🔊 ","🔉 "]},"orangePulse":{"interval":100,"frames":["🔸 ","🔶 ","🟠 ","🟠 ","🔶 "]},"bluePulse":{"interval":100,"frames":["🔹 ","🔷 ","🔵 ","🔵 ","🔷 "]},"orangeBluePulse":{"interval":100,"frames":["🔸 ","🔶 ","🟠 ","🟠 ","🔶 ","🔹 ","🔷 ","🔵 ","🔵 ","🔷 "]},"timeTravel":{"interval":100,"frames":["🕛 ","🕚 ","🕙 ","🕘 ","🕗 ","🕖 ","🕕 ","🕔 ","🕓 ","🕒 ","🕑 ","🕐 "]},"aesthetic":{"interval":80,"frames":["▰▱▱▱▱▱▱","▰▰▱▱▱▱▱","▰▰▰▱▱▱▱","▰▰▰▰▱▱▱","▰▰▰▰▰▱▱","▰▰▰▰▰▰▱","▰▰▰▰▰▰▰","▰▱▱▱▱▱▱"]}}');
|
|
45443
|
+
module.exports = JSON.parse('{"dots":{"interval":80,"frames":["⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏"]},"dots2":{"interval":80,"frames":["⣾","⣽","⣻","⢿","⡿","⣟","⣯","⣷"]},"dots3":{"interval":80,"frames":["⠋","⠙","⠚","⠞","⠖","⠦","⠴","⠲","⠳","⠓"]},"dots4":{"interval":80,"frames":["⠄","⠆","⠇","⠋","⠙","⠸","⠰","⠠","⠰","⠸","⠙","⠋","⠇","⠆"]},"dots5":{"interval":80,"frames":["⠋","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋"]},"dots6":{"interval":80,"frames":["⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠴","⠲","⠒","⠂","⠂","⠒","⠚","⠙","⠉","⠁"]},"dots7":{"interval":80,"frames":["⠈","⠉","⠋","⠓","⠒","⠐","⠐","⠒","⠖","⠦","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈"]},"dots8":{"interval":80,"frames":["⠁","⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈","⠈"]},"dots9":{"interval":80,"frames":["⢹","⢺","⢼","⣸","⣇","⡧","⡗","⡏"]},"dots10":{"interval":80,"frames":["⢄","⢂","⢁","⡁","⡈","⡐","⡠"]},"dots11":{"interval":100,"frames":["⠁","⠂","⠄","⡀","⢀","⠠","⠐","⠈"]},"dots12":{"interval":80,"frames":["⢀⠀","⡀⠀","⠄⠀","⢂⠀","⡂⠀","⠅⠀","⢃⠀","⡃⠀","⠍⠀","⢋⠀","⡋⠀","⠍⠁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⢈⠩","⡀⢙","⠄⡙","⢂⠩","⡂⢘","⠅⡘","⢃⠨","⡃⢐","⠍⡐","⢋⠠","⡋⢀","⠍⡁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⠈⠩","⠀⢙","⠀⡙","⠀⠩","⠀⢘","⠀⡘","⠀⠨","⠀⢐","⠀⡐","⠀⠠","⠀⢀","⠀⡀"]},"dots13":{"interval":80,"frames":["⣼","⣹","⢻","⠿","⡟","⣏","⣧","⣶"]},"dots8Bit":{"interval":80,"frames":["⠀","⠁","⠂","⠃","⠄","⠅","⠆","⠇","⡀","⡁","⡂","⡃","⡄","⡅","⡆","⡇","⠈","⠉","⠊","⠋","⠌","⠍","⠎","⠏","⡈","⡉","⡊","⡋","⡌","⡍","⡎","⡏","⠐","⠑","⠒","⠓","⠔","⠕","⠖","⠗","⡐","⡑","⡒","⡓","⡔","⡕","⡖","⡗","⠘","⠙","⠚","⠛","⠜","⠝","⠞","⠟","⡘","⡙","⡚","⡛","⡜","⡝","⡞","⡟","⠠","⠡","⠢","⠣","⠤","⠥","⠦","⠧","⡠","⡡","⡢","⡣","⡤","⡥","⡦","⡧","⠨","⠩","⠪","⠫","⠬","⠭","⠮","⠯","⡨","⡩","⡪","⡫","⡬","⡭","⡮","⡯","⠰","⠱","⠲","⠳","⠴","⠵","⠶","⠷","⡰","⡱","⡲","⡳","⡴","⡵","⡶","⡷","⠸","⠹","⠺","⠻","⠼","⠽","⠾","⠿","⡸","⡹","⡺","⡻","⡼","⡽","⡾","⡿","⢀","⢁","⢂","⢃","⢄","⢅","⢆","⢇","⣀","⣁","⣂","⣃","⣄","⣅","⣆","⣇","⢈","⢉","⢊","⢋","⢌","⢍","⢎","⢏","⣈","⣉","⣊","⣋","⣌","⣍","⣎","⣏","⢐","⢑","⢒","⢓","⢔","⢕","⢖","⢗","⣐","⣑","⣒","⣓","⣔","⣕","⣖","⣗","⢘","⢙","⢚","⢛","⢜","⢝","⢞","⢟","⣘","⣙","⣚","⣛","⣜","⣝","⣞","⣟","⢠","⢡","⢢","⢣","⢤","⢥","⢦","⢧","⣠","⣡","⣢","⣣","⣤","⣥","⣦","⣧","⢨","⢩","⢪","⢫","⢬","⢭","⢮","⢯","⣨","⣩","⣪","⣫","⣬","⣭","⣮","⣯","⢰","⢱","⢲","⢳","⢴","⢵","⢶","⢷","⣰","⣱","⣲","⣳","⣴","⣵","⣶","⣷","⢸","⢹","⢺","⢻","⢼","⢽","⢾","⢿","⣸","⣹","⣺","⣻","⣼","⣽","⣾","⣿"]},"sand":{"interval":80,"frames":["⠁","⠂","⠄","⡀","⡈","⡐","⡠","⣀","⣁","⣂","⣄","⣌","⣔","⣤","⣥","⣦","⣮","⣶","⣷","⣿","⡿","⠿","⢟","⠟","⡛","⠛","⠫","⢋","⠋","⠍","⡉","⠉","⠑","⠡","⢁"]},"line":{"interval":130,"frames":["-","\\\\","|","/"]},"line2":{"interval":100,"frames":["⠂","-","–","—","–","-"]},"pipe":{"interval":100,"frames":["┤","┘","┴","└","├","┌","┬","┐"]},"simpleDots":{"interval":400,"frames":[". ",".. ","..."," "]},"simpleDotsScrolling":{"interval":200,"frames":[". ",".. ","..."," .."," ."," "]},"star":{"interval":70,"frames":["✶","✸","✹","✺","✹","✷"]},"star2":{"interval":80,"frames":["+","x","*"]},"flip":{"interval":70,"frames":["_","_","_","-","`","`","\'","´","-","_","_","_"]},"hamburger":{"interval":100,"frames":["☱","☲","☴"]},"growVertical":{"interval":120,"frames":["▁","▃","▄","▅","▆","▇","▆","▅","▄","▃"]},"growHorizontal":{"interval":120,"frames":["▏","▎","▍","▌","▋","▊","▉","▊","▋","▌","▍","▎"]},"balloon":{"interval":140,"frames":[" ",".","o","O","@","*"," "]},"balloon2":{"interval":120,"frames":[".","o","O","°","O","o","."]},"noise":{"interval":100,"frames":["▓","▒","░"]},"bounce":{"interval":120,"frames":["⠁","⠂","⠄","⠂"]},"boxBounce":{"interval":120,"frames":["▖","▘","▝","▗"]},"boxBounce2":{"interval":100,"frames":["▌","▀","▐","▄"]},"triangle":{"interval":50,"frames":["◢","◣","◤","◥"]},"arc":{"interval":100,"frames":["◜","◠","◝","◞","◡","◟"]},"circle":{"interval":120,"frames":["◡","⊙","◠"]},"squareCorners":{"interval":180,"frames":["◰","◳","◲","◱"]},"circleQuarters":{"interval":120,"frames":["◴","◷","◶","◵"]},"circleHalves":{"interval":50,"frames":["◐","◓","◑","◒"]},"squish":{"interval":100,"frames":["╫","╪"]},"toggle":{"interval":250,"frames":["⊶","⊷"]},"toggle2":{"interval":80,"frames":["▫","▪"]},"toggle3":{"interval":120,"frames":["□","■"]},"toggle4":{"interval":100,"frames":["■","□","▪","▫"]},"toggle5":{"interval":100,"frames":["▮","▯"]},"toggle6":{"interval":300,"frames":["ဝ","၀"]},"toggle7":{"interval":80,"frames":["⦾","⦿"]},"toggle8":{"interval":100,"frames":["◍","◌"]},"toggle9":{"interval":100,"frames":["◉","◎"]},"toggle10":{"interval":100,"frames":["㊂","㊀","㊁"]},"toggle11":{"interval":50,"frames":["⧇","⧆"]},"toggle12":{"interval":120,"frames":["☗","☖"]},"toggle13":{"interval":80,"frames":["=","*","-"]},"arrow":{"interval":100,"frames":["←","↖","↑","↗","→","↘","↓","↙"]},"arrow2":{"interval":80,"frames":["⬆️ ","↗️ ","➡️ ","↘️ ","⬇️ ","↙️ ","⬅️ ","↖️ "]},"arrow3":{"interval":120,"frames":["▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸"]},"bouncingBar":{"interval":80,"frames":["[ ]","[= ]","[== ]","[=== ]","[ ===]","[ ==]","[ =]","[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]"]},"bouncingBall":{"interval":80,"frames":["( ● )","( ● )","( ● )","( ● )","( ●)","( ● )","( ● )","( ● )","( ● )","(● )"]},"smiley":{"interval":200,"frames":["😄 ","😝 "]},"monkey":{"interval":300,"frames":["🙈 ","🙈 ","🙉 ","🙊 "]},"hearts":{"interval":100,"frames":["💛 ","💙 ","💜 ","💚 ","❤️ "]},"clock":{"interval":100,"frames":["🕛 ","🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 "]},"earth":{"interval":180,"frames":["🌍 ","🌎 ","🌏 "]},"material":{"interval":17,"frames":["█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","███▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","████▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁","██████▁▁▁▁▁▁▁▁▁▁▁▁▁▁","███████▁▁▁▁▁▁▁▁▁▁▁▁▁","████████▁▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","██████████▁▁▁▁▁▁▁▁▁▁","███████████▁▁▁▁▁▁▁▁▁","█████████████▁▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁▁██████████████▁▁▁▁","▁▁▁██████████████▁▁▁","▁▁▁▁█████████████▁▁▁","▁▁▁▁██████████████▁▁","▁▁▁▁██████████████▁▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁██████████████▁","▁▁▁▁▁▁██████████████","▁▁▁▁▁▁██████████████","▁▁▁▁▁▁▁█████████████","▁▁▁▁▁▁▁█████████████","▁▁▁▁▁▁▁▁████████████","▁▁▁▁▁▁▁▁████████████","▁▁▁▁▁▁▁▁▁███████████","▁▁▁▁▁▁▁▁▁███████████","▁▁▁▁▁▁▁▁▁▁██████████","▁▁▁▁▁▁▁▁▁▁██████████","▁▁▁▁▁▁▁▁▁▁▁▁████████","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁██████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","█▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","███▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","████▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","█████▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","██████▁▁▁▁▁▁▁▁▁▁▁▁▁█","████████▁▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","█████████▁▁▁▁▁▁▁▁▁▁▁","███████████▁▁▁▁▁▁▁▁▁","████████████▁▁▁▁▁▁▁▁","████████████▁▁▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","██████████████▁▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁██████████████▁▁▁▁▁","▁▁▁█████████████▁▁▁▁","▁▁▁▁▁████████████▁▁▁","▁▁▁▁▁████████████▁▁▁","▁▁▁▁▁▁███████████▁▁▁","▁▁▁▁▁▁▁▁█████████▁▁▁","▁▁▁▁▁▁▁▁█████████▁▁▁","▁▁▁▁▁▁▁▁▁█████████▁▁","▁▁▁▁▁▁▁▁▁█████████▁▁","▁▁▁▁▁▁▁▁▁▁█████████▁","▁▁▁▁▁▁▁▁▁▁▁████████▁","▁▁▁▁▁▁▁▁▁▁▁████████▁","▁▁▁▁▁▁▁▁▁▁▁▁███████▁","▁▁▁▁▁▁▁▁▁▁▁▁███████▁","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁███████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁████","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁███","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁██","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁█","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁","▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁"]},"moon":{"interval":80,"frames":["🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 "]},"runner":{"interval":140,"frames":["🚶 ","🏃 "]},"pong":{"interval":80,"frames":["▐⠂ ▌","▐⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂▌","▐ ⠠▌","▐ ⡀▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐⠠ ▌"]},"shark":{"interval":120,"frames":["▐|\\\\____________▌","▐_|\\\\___________▌","▐__|\\\\__________▌","▐___|\\\\_________▌","▐____|\\\\________▌","▐_____|\\\\_______▌","▐______|\\\\______▌","▐_______|\\\\_____▌","▐________|\\\\____▌","▐_________|\\\\___▌","▐__________|\\\\__▌","▐___________|\\\\_▌","▐____________|\\\\▌","▐____________/|▌","▐___________/|_▌","▐__________/|__▌","▐_________/|___▌","▐________/|____▌","▐_______/|_____▌","▐______/|______▌","▐_____/|_______▌","▐____/|________▌","▐___/|_________▌","▐__/|__________▌","▐_/|___________▌","▐/|____________▌"]},"dqpb":{"interval":100,"frames":["d","q","p","b"]},"weather":{"interval":100,"frames":["☀️ ","☀️ ","☀️ ","🌤 ","⛅️ ","🌥 ","☁️ ","🌧 ","🌨 ","🌧 ","🌨 ","🌧 ","🌨 ","⛈ ","🌨 ","🌧 ","🌨 ","☁️ ","🌥 ","⛅️ ","🌤 ","☀️ ","☀️ "]},"christmas":{"interval":400,"frames":["🌲","🎄"]},"grenade":{"interval":80,"frames":["، ","′ "," ´ "," ‾ "," ⸌"," ⸊"," |"," ⁎"," ⁕"," ෴ "," ⁓"," "," "," "]},"point":{"interval":125,"frames":["∙∙∙","●∙∙","∙●∙","∙∙●","∙∙∙"]},"layer":{"interval":150,"frames":["-","=","≡"]},"betaWave":{"interval":80,"frames":["ρββββββ","βρβββββ","ββρββββ","βββρβββ","ββββρββ","βββββρβ","ββββββρ"]},"fingerDance":{"interval":160,"frames":["🤘 ","🤟 ","🖖 ","✋ ","🤚 ","👆 "]},"fistBump":{"interval":80,"frames":["🤜 🤛 ","🤜 🤛 ","🤜 🤛 "," 🤜 🤛 "," 🤜🤛 "," 🤜✨🤛 ","🤜 ✨ 🤛 "]},"soccerHeader":{"interval":80,"frames":[" 🧑⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 ","🧑 ⚽️ 🧑 "]},"mindblown":{"interval":160,"frames":["😐 ","😐 ","😮 ","😮 ","😦 ","😦 ","😧 ","😧 ","🤯 ","💥 ","✨ "," "," "," "]},"speaker":{"interval":160,"frames":["🔈 ","🔉 ","🔊 ","🔉 "]},"orangePulse":{"interval":100,"frames":["🔸 ","🔶 ","🟠 ","🟠 ","🔶 "]},"bluePulse":{"interval":100,"frames":["🔹 ","🔷 ","🔵 ","🔵 ","🔷 "]},"orangeBluePulse":{"interval":100,"frames":["🔸 ","🔶 ","🟠 ","🟠 ","🔶 ","🔹 ","🔷 ","🔵 ","🔵 ","🔷 "]},"timeTravel":{"interval":100,"frames":["🕛 ","🕚 ","🕙 ","🕘 ","🕗 ","🕖 ","🕕 ","🕔 ","🕓 ","🕒 ","🕑 ","🕐 "]},"aesthetic":{"interval":80,"frames":["▰▱▱▱▱▱▱","▰▰▱▱▱▱▱","▰▰▰▱▱▱▱","▰▰▰▰▱▱▱","▰▰▰▰▰▱▱","▰▰▰▰▰▰▱","▰▰▰▰▰▰▰","▰▱▱▱▱▱▱"]},"dwarfFortress":{"interval":80,"frames":[" ██████£££ ","☺██████£££ ","☺██████£££ ","☺▓█████£££ ","☺▓█████£££ ","☺▒█████£££ ","☺▒█████£££ ","☺░█████£££ ","☺░█████£££ ","☺ █████£££ "," ☺█████£££ "," ☺█████£££ "," ☺▓████£££ "," ☺▓████£££ "," ☺▒████£££ "," ☺▒████£££ "," ☺░████£££ "," ☺░████£££ "," ☺ ████£££ "," ☺████£££ "," ☺████£££ "," ☺▓███£££ "," ☺▓███£££ "," ☺▒███£££ "," ☺▒███£££ "," ☺░███£££ "," ☺░███£££ "," ☺ ███£££ "," ☺███£££ "," ☺███£££ "," ☺▓██£££ "," ☺▓██£££ "," ☺▒██£££ "," ☺▒██£££ "," ☺░██£££ "," ☺░██£££ "," ☺ ██£££ "," ☺██£££ "," ☺██£££ "," ☺▓█£££ "," ☺▓█£££ "," ☺▒█£££ "," ☺▒█£££ "," ☺░█£££ "," ☺░█£££ "," ☺ █£££ "," ☺█£££ "," ☺█£££ "," ☺▓£££ "," ☺▓£££ "," ☺▒£££ "," ☺▒£££ "," ☺░£££ "," ☺░£££ "," ☺ £££ "," ☺£££ "," ☺£££ "," ☺▓££ "," ☺▓££ "," ☺▒££ "," ☺▒££ "," ☺░££ "," ☺░££ "," ☺ ££ "," ☺££ "," ☺££ "," ☺▓£ "," ☺▓£ "," ☺▒£ "," ☺▒£ "," ☺░£ "," ☺░£ "," ☺ £ "," ☺£ "," ☺£ "," ☺▓ "," ☺▓ "," ☺▒ "," ☺▒ "," ☺░ "," ☺░ "," ☺ "," ☺ &"," ☺ ☼&"," ☺ ☼ &"," ☺☼ &"," ☺☼ & "," ‼ & "," ☺ & "," ‼ & "," ☺ & "," ‼ & "," ☺ & ","‼ & "," & "," & "," & ░ "," & ▒ "," & ▓ "," & £ "," & ░£ "," & ▒£ "," & ▓£ "," & ££ "," & ░££ "," & ▒££ ","& ▓££ ","& £££ "," ░£££ "," ▒£££ "," ▓£££ "," █£££ "," ░█£££ "," ▒█£££ "," ▓█£££ "," ██£££ "," ░██£££ "," ▒██£££ "," ▓██£££ "," ███£££ "," ░███£££ "," ▒███£££ "," ▓███£££ "," ████£££ "," ░████£££ "," ▒████£££ "," ▓████£££ "," █████£££ "," ░█████£££ "," ▒█████£££ "," ▓█████£££ "," ██████£££ "," ██████£££ "]}}');
|
|
45267
45444
|
|
|
45268
45445
|
/***/ })
|
|
45269
45446
|
|