@nsshunt/stsfhirpg 1.2.22 → 1.2.24

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/dist/index.mjs CHANGED
@@ -13,27 +13,7 @@ import cluster from "cluster";
13
13
  import { Pool } from "pg";
14
14
  import { TinyEmitter } from "tiny-emitter";
15
15
  //#region \0rolldown/runtime.js
16
- var __create = Object.create;
17
- var __defProp = Object.defineProperty;
18
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
19
- var __getOwnPropNames = Object.getOwnPropertyNames;
20
- var __getProtoOf = Object.getPrototypeOf;
21
- var __hasOwnProp = Object.prototype.hasOwnProperty;
22
16
  var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
23
- var __copyProps = (to, from, except, desc) => {
24
- if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
25
- key = keys[i];
26
- if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
27
- get: ((k) => from[k]).bind(null, key),
28
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
29
- });
30
- }
31
- return to;
32
- };
33
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
34
- value: mod,
35
- enumerable: true
36
- }) : target, mod));
37
17
  //#endregion
38
18
  //#region src/fhir-utils/fhirDateUtils.ts
39
19
  var FHIRDateUtils = class {
@@ -92,1309 +72,3218 @@ var FHIRDateUtils = class {
92
72
  }
93
73
  };
94
74
  //#endregion
95
- //#region node_modules/cuint/lib/uint32.js
96
- var require_uint32 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
97
- (function(root) {
98
- UINT32(Math.pow(36, 5)), UINT32(Math.pow(16, 7)), UINT32(Math.pow(10, 9)), UINT32(Math.pow(2, 30));
99
- UINT32(36), UINT32(16), UINT32(10), UINT32(2);
100
- /**
101
- * Represents an unsigned 32 bits integer
102
- * @constructor
103
- * @param {Number|String|Number} low bits | integer as a string | integer as a number
104
- * @param {Number|Number|Undefined} high bits | radix (optional, default=10)
105
- * @return
106
- */
107
- function UINT32(l, h) {
108
- if (!(this instanceof UINT32)) return new UINT32(l, h);
109
- this._low = 0;
110
- this._high = 0;
111
- this.remainder = null;
112
- if (typeof h == "undefined") return fromNumber.call(this, l);
113
- if (typeof l == "string") return fromString.call(this, l, h);
114
- fromBits.call(this, l, h);
115
- }
116
- /**
117
- * Set the current _UINT32_ object with its low and high bits
118
- * @method fromBits
119
- * @param {Number} low bits
120
- * @param {Number} high bits
121
- * @return ThisExpression
122
- */
123
- function fromBits(l, h) {
124
- this._low = l | 0;
125
- this._high = h | 0;
126
- return this;
127
- }
128
- UINT32.prototype.fromBits = fromBits;
129
- /**
130
- * Set the current _UINT32_ object from a number
131
- * @method fromNumber
132
- * @param {Number} number
133
- * @return ThisExpression
134
- */
135
- function fromNumber(value) {
136
- this._low = value & 65535;
137
- this._high = value >>> 16;
138
- return this;
139
- }
140
- UINT32.prototype.fromNumber = fromNumber;
141
- /**
142
- * Set the current _UINT32_ object from a string
143
- * @method fromString
144
- * @param {String} integer as a string
145
- * @param {Number} radix (optional, default=10)
146
- * @return ThisExpression
147
- */
148
- function fromString(s, radix) {
149
- var value = parseInt(s, radix || 10);
150
- this._low = value & 65535;
151
- this._high = value >>> 16;
152
- return this;
153
- }
154
- UINT32.prototype.fromString = fromString;
155
- /**
156
- * Convert this _UINT32_ to a number
157
- * @method toNumber
158
- * @return {Number} the converted UINT32
159
- */
160
- UINT32.prototype.toNumber = function() {
161
- return this._high * 65536 + this._low;
162
- };
163
- /**
164
- * Convert this _UINT32_ to a string
165
- * @method toString
166
- * @param {Number} radix (optional, default=10)
167
- * @return {String} the converted UINT32
168
- */
169
- UINT32.prototype.toString = function(radix) {
170
- return this.toNumber().toString(radix || 10);
171
- };
172
- /**
173
- * Add two _UINT32_. The current _UINT32_ stores the result
174
- * @method add
175
- * @param {Object} other UINT32
176
- * @return ThisExpression
177
- */
178
- UINT32.prototype.add = function(other) {
179
- var a00 = this._low + other._low;
180
- var a16 = a00 >>> 16;
181
- a16 += this._high + other._high;
182
- this._low = a00 & 65535;
183
- this._high = a16 & 65535;
184
- return this;
185
- };
186
- /**
187
- * Subtract two _UINT32_. The current _UINT32_ stores the result
188
- * @method subtract
189
- * @param {Object} other UINT32
190
- * @return ThisExpression
191
- */
192
- UINT32.prototype.subtract = function(other) {
193
- return this.add(other.clone().negate());
194
- };
195
- /**
196
- * Multiply two _UINT32_. The current _UINT32_ stores the result
197
- * @method multiply
198
- * @param {Object} other UINT32
199
- * @return ThisExpression
200
- */
201
- UINT32.prototype.multiply = function(other) {
202
- var a16 = this._high;
203
- var a00 = this._low;
204
- var b16 = other._high;
205
- var b00 = other._low;
206
- var c16, c00 = a00 * b00;
207
- c16 = c00 >>> 16;
208
- c16 += a16 * b00;
209
- c16 &= 65535;
210
- c16 += a00 * b16;
211
- this._low = c00 & 65535;
212
- this._high = c16 & 65535;
213
- return this;
214
- };
215
- /**
216
- * Divide two _UINT32_. The current _UINT32_ stores the result.
217
- * The remainder is made available as the _remainder_ property on
218
- * the _UINT32_ object. It can be null, meaning there are no remainder.
219
- * @method div
220
- * @param {Object} other UINT32
221
- * @return ThisExpression
222
- */
223
- UINT32.prototype.div = function(other) {
224
- if (other._low == 0 && other._high == 0) throw Error("division by zero");
225
- if (other._high == 0 && other._low == 1) {
226
- this.remainder = new UINT32(0);
227
- return this;
228
- }
229
- if (other.gt(this)) {
230
- this.remainder = this.clone();
231
- this._low = 0;
232
- this._high = 0;
233
- return this;
234
- }
235
- if (this.eq(other)) {
236
- this.remainder = new UINT32(0);
237
- this._low = 1;
238
- this._high = 0;
239
- return this;
240
- }
241
- var _other = other.clone();
242
- var i = -1;
243
- while (!this.lt(_other)) {
244
- _other.shiftLeft(1, true);
245
- i++;
246
- }
247
- this.remainder = this.clone();
248
- this._low = 0;
249
- this._high = 0;
250
- for (; i >= 0; i--) {
251
- _other.shiftRight(1);
252
- if (!this.remainder.lt(_other)) {
253
- this.remainder.subtract(_other);
254
- if (i >= 16) this._high |= 1 << i - 16;
255
- else this._low |= 1 << i;
256
- }
257
- }
258
- return this;
259
- };
260
- /**
261
- * Negate the current _UINT32_
262
- * @method negate
263
- * @return ThisExpression
264
- */
265
- UINT32.prototype.negate = function() {
266
- var v = (~this._low & 65535) + 1;
267
- this._low = v & 65535;
268
- this._high = ~this._high + (v >>> 16) & 65535;
269
- return this;
270
- };
271
- /**
272
- * Equals
273
- * @method eq
274
- * @param {Object} other UINT32
275
- * @return {Boolean}
276
- */
277
- UINT32.prototype.equals = UINT32.prototype.eq = function(other) {
278
- return this._low == other._low && this._high == other._high;
279
- };
280
- /**
281
- * Greater than (strict)
282
- * @method gt
283
- * @param {Object} other UINT32
284
- * @return {Boolean}
285
- */
286
- UINT32.prototype.greaterThan = UINT32.prototype.gt = function(other) {
287
- if (this._high > other._high) return true;
288
- if (this._high < other._high) return false;
289
- return this._low > other._low;
290
- };
291
- /**
292
- * Less than (strict)
293
- * @method lt
294
- * @param {Object} other UINT32
295
- * @return {Boolean}
296
- */
297
- UINT32.prototype.lessThan = UINT32.prototype.lt = function(other) {
298
- if (this._high < other._high) return true;
299
- if (this._high > other._high) return false;
300
- return this._low < other._low;
301
- };
302
- /**
303
- * Bitwise OR
304
- * @method or
305
- * @param {Object} other UINT32
306
- * @return ThisExpression
307
- */
308
- UINT32.prototype.or = function(other) {
309
- this._low |= other._low;
310
- this._high |= other._high;
311
- return this;
312
- };
313
- /**
314
- * Bitwise AND
315
- * @method and
316
- * @param {Object} other UINT32
317
- * @return ThisExpression
318
- */
319
- UINT32.prototype.and = function(other) {
320
- this._low &= other._low;
321
- this._high &= other._high;
322
- return this;
323
- };
324
- /**
325
- * Bitwise NOT
326
- * @method not
327
- * @return ThisExpression
328
- */
329
- UINT32.prototype.not = function() {
330
- this._low = ~this._low & 65535;
331
- this._high = ~this._high & 65535;
332
- return this;
333
- };
334
- /**
335
- * Bitwise XOR
336
- * @method xor
337
- * @param {Object} other UINT32
338
- * @return ThisExpression
339
- */
340
- UINT32.prototype.xor = function(other) {
341
- this._low ^= other._low;
342
- this._high ^= other._high;
343
- return this;
344
- };
345
- /**
346
- * Bitwise shift right
347
- * @method shiftRight
348
- * @param {Number} number of bits to shift
349
- * @return ThisExpression
350
- */
351
- UINT32.prototype.shiftRight = UINT32.prototype.shiftr = function(n) {
352
- if (n > 16) {
353
- this._low = this._high >> n - 16;
354
- this._high = 0;
355
- } else if (n == 16) {
356
- this._low = this._high;
357
- this._high = 0;
358
- } else {
359
- this._low = this._low >> n | this._high << 16 - n & 65535;
360
- this._high >>= n;
75
+ //#region node_modules/xxhash-wasm/esm/xxhash-wasm.js
76
+ var t = new Uint8Array([
77
+ 0,
78
+ 97,
79
+ 115,
80
+ 109,
81
+ 1,
82
+ 0,
83
+ 0,
84
+ 0,
85
+ 1,
86
+ 48,
87
+ 8,
88
+ 96,
89
+ 3,
90
+ 127,
91
+ 127,
92
+ 127,
93
+ 1,
94
+ 127,
95
+ 96,
96
+ 3,
97
+ 127,
98
+ 127,
99
+ 127,
100
+ 0,
101
+ 96,
102
+ 2,
103
+ 127,
104
+ 127,
105
+ 0,
106
+ 96,
107
+ 1,
108
+ 127,
109
+ 1,
110
+ 127,
111
+ 96,
112
+ 3,
113
+ 127,
114
+ 127,
115
+ 126,
116
+ 1,
117
+ 126,
118
+ 96,
119
+ 3,
120
+ 126,
121
+ 127,
122
+ 127,
123
+ 1,
124
+ 126,
125
+ 96,
126
+ 2,
127
+ 127,
128
+ 126,
129
+ 0,
130
+ 96,
131
+ 1,
132
+ 127,
133
+ 1,
134
+ 126,
135
+ 3,
136
+ 11,
137
+ 10,
138
+ 0,
139
+ 0,
140
+ 2,
141
+ 1,
142
+ 3,
143
+ 4,
144
+ 5,
145
+ 6,
146
+ 1,
147
+ 7,
148
+ 5,
149
+ 3,
150
+ 1,
151
+ 0,
152
+ 1,
153
+ 7,
154
+ 85,
155
+ 9,
156
+ 3,
157
+ 109,
158
+ 101,
159
+ 109,
160
+ 2,
161
+ 0,
162
+ 5,
163
+ 120,
164
+ 120,
165
+ 104,
166
+ 51,
167
+ 50,
168
+ 0,
169
+ 0,
170
+ 6,
171
+ 105,
172
+ 110,
173
+ 105,
174
+ 116,
175
+ 51,
176
+ 50,
177
+ 0,
178
+ 2,
179
+ 8,
180
+ 117,
181
+ 112,
182
+ 100,
183
+ 97,
184
+ 116,
185
+ 101,
186
+ 51,
187
+ 50,
188
+ 0,
189
+ 3,
190
+ 8,
191
+ 100,
192
+ 105,
193
+ 103,
194
+ 101,
195
+ 115,
196
+ 116,
197
+ 51,
198
+ 50,
199
+ 0,
200
+ 4,
201
+ 5,
202
+ 120,
203
+ 120,
204
+ 104,
205
+ 54,
206
+ 52,
207
+ 0,
208
+ 5,
209
+ 6,
210
+ 105,
211
+ 110,
212
+ 105,
213
+ 116,
214
+ 54,
215
+ 52,
216
+ 0,
217
+ 7,
218
+ 8,
219
+ 117,
220
+ 112,
221
+ 100,
222
+ 97,
223
+ 116,
224
+ 101,
225
+ 54,
226
+ 52,
227
+ 0,
228
+ 8,
229
+ 8,
230
+ 100,
231
+ 105,
232
+ 103,
233
+ 101,
234
+ 115,
235
+ 116,
236
+ 54,
237
+ 52,
238
+ 0,
239
+ 9,
240
+ 10,
241
+ 251,
242
+ 22,
243
+ 10,
244
+ 242,
245
+ 1,
246
+ 1,
247
+ 4,
248
+ 127,
249
+ 32,
250
+ 0,
251
+ 32,
252
+ 1,
253
+ 106,
254
+ 33,
255
+ 3,
256
+ 32,
257
+ 1,
258
+ 65,
259
+ 16,
260
+ 79,
261
+ 4,
262
+ 127,
263
+ 32,
264
+ 3,
265
+ 65,
266
+ 16,
267
+ 107,
268
+ 33,
269
+ 6,
270
+ 32,
271
+ 2,
272
+ 65,
273
+ 168,
274
+ 136,
275
+ 141,
276
+ 161,
277
+ 2,
278
+ 106,
279
+ 33,
280
+ 3,
281
+ 32,
282
+ 2,
283
+ 65,
284
+ 137,
285
+ 235,
286
+ 208,
287
+ 208,
288
+ 7,
289
+ 107,
290
+ 33,
291
+ 4,
292
+ 32,
293
+ 2,
294
+ 65,
295
+ 207,
296
+ 140,
297
+ 162,
298
+ 142,
299
+ 6,
300
+ 106,
301
+ 33,
302
+ 5,
303
+ 3,
304
+ 64,
305
+ 32,
306
+ 3,
307
+ 32,
308
+ 0,
309
+ 40,
310
+ 2,
311
+ 0,
312
+ 65,
313
+ 247,
314
+ 148,
315
+ 175,
316
+ 175,
317
+ 120,
318
+ 108,
319
+ 106,
320
+ 65,
321
+ 13,
322
+ 119,
323
+ 65,
324
+ 177,
325
+ 243,
326
+ 221,
327
+ 241,
328
+ 121,
329
+ 108,
330
+ 33,
331
+ 3,
332
+ 32,
333
+ 4,
334
+ 32,
335
+ 0,
336
+ 65,
337
+ 4,
338
+ 106,
339
+ 34,
340
+ 0,
341
+ 40,
342
+ 2,
343
+ 0,
344
+ 65,
345
+ 247,
346
+ 148,
347
+ 175,
348
+ 175,
349
+ 120,
350
+ 108,
351
+ 106,
352
+ 65,
353
+ 13,
354
+ 119,
355
+ 65,
356
+ 177,
357
+ 243,
358
+ 221,
359
+ 241,
360
+ 121,
361
+ 108,
362
+ 33,
363
+ 4,
364
+ 32,
365
+ 2,
366
+ 32,
367
+ 0,
368
+ 65,
369
+ 4,
370
+ 106,
371
+ 34,
372
+ 0,
373
+ 40,
374
+ 2,
375
+ 0,
376
+ 65,
377
+ 247,
378
+ 148,
379
+ 175,
380
+ 175,
381
+ 120,
382
+ 108,
383
+ 106,
384
+ 65,
385
+ 13,
386
+ 119,
387
+ 65,
388
+ 177,
389
+ 243,
390
+ 221,
391
+ 241,
392
+ 121,
393
+ 108,
394
+ 33,
395
+ 2,
396
+ 32,
397
+ 5,
398
+ 32,
399
+ 0,
400
+ 65,
401
+ 4,
402
+ 106,
403
+ 34,
404
+ 0,
405
+ 40,
406
+ 2,
407
+ 0,
408
+ 65,
409
+ 247,
410
+ 148,
411
+ 175,
412
+ 175,
413
+ 120,
414
+ 108,
415
+ 106,
416
+ 65,
417
+ 13,
418
+ 119,
419
+ 65,
420
+ 177,
421
+ 243,
422
+ 221,
423
+ 241,
424
+ 121,
425
+ 108,
426
+ 33,
427
+ 5,
428
+ 32,
429
+ 6,
430
+ 32,
431
+ 0,
432
+ 65,
433
+ 4,
434
+ 106,
435
+ 34,
436
+ 0,
437
+ 79,
438
+ 13,
439
+ 0,
440
+ 11,
441
+ 32,
442
+ 2,
443
+ 65,
444
+ 12,
445
+ 119,
446
+ 32,
447
+ 5,
448
+ 65,
449
+ 18,
450
+ 119,
451
+ 106,
452
+ 32,
453
+ 4,
454
+ 65,
455
+ 7,
456
+ 119,
457
+ 106,
458
+ 32,
459
+ 3,
460
+ 65,
461
+ 1,
462
+ 119,
463
+ 106,
464
+ 5,
465
+ 32,
466
+ 2,
467
+ 65,
468
+ 177,
469
+ 207,
470
+ 217,
471
+ 178,
472
+ 1,
473
+ 106,
474
+ 11,
475
+ 32,
476
+ 1,
477
+ 106,
478
+ 32,
479
+ 0,
480
+ 32,
481
+ 1,
482
+ 65,
483
+ 15,
484
+ 113,
485
+ 16,
486
+ 1,
487
+ 11,
488
+ 146,
489
+ 1,
490
+ 0,
491
+ 32,
492
+ 1,
493
+ 32,
494
+ 2,
495
+ 106,
496
+ 33,
497
+ 2,
498
+ 3,
499
+ 64,
500
+ 32,
501
+ 1,
502
+ 65,
503
+ 4,
504
+ 106,
505
+ 32,
506
+ 2,
507
+ 75,
508
+ 69,
509
+ 4,
510
+ 64,
511
+ 32,
512
+ 0,
513
+ 32,
514
+ 1,
515
+ 40,
516
+ 2,
517
+ 0,
518
+ 65,
519
+ 189,
520
+ 220,
521
+ 202,
522
+ 149,
523
+ 124,
524
+ 108,
525
+ 106,
526
+ 65,
527
+ 17,
528
+ 119,
529
+ 65,
530
+ 175,
531
+ 214,
532
+ 211,
533
+ 190,
534
+ 2,
535
+ 108,
536
+ 33,
537
+ 0,
538
+ 32,
539
+ 1,
540
+ 65,
541
+ 4,
542
+ 106,
543
+ 33,
544
+ 1,
545
+ 12,
546
+ 1,
547
+ 11,
548
+ 11,
549
+ 3,
550
+ 64,
551
+ 32,
552
+ 1,
553
+ 32,
554
+ 2,
555
+ 79,
556
+ 69,
557
+ 4,
558
+ 64,
559
+ 32,
560
+ 0,
561
+ 32,
562
+ 1,
563
+ 45,
564
+ 0,
565
+ 0,
566
+ 65,
567
+ 177,
568
+ 207,
569
+ 217,
570
+ 178,
571
+ 1,
572
+ 108,
573
+ 106,
574
+ 65,
575
+ 11,
576
+ 119,
577
+ 65,
578
+ 177,
579
+ 243,
580
+ 221,
581
+ 241,
582
+ 121,
583
+ 108,
584
+ 33,
585
+ 0,
586
+ 32,
587
+ 1,
588
+ 65,
589
+ 1,
590
+ 106,
591
+ 33,
592
+ 1,
593
+ 12,
594
+ 1,
595
+ 11,
596
+ 11,
597
+ 32,
598
+ 0,
599
+ 32,
600
+ 0,
601
+ 65,
602
+ 15,
603
+ 118,
604
+ 115,
605
+ 65,
606
+ 247,
607
+ 148,
608
+ 175,
609
+ 175,
610
+ 120,
611
+ 108,
612
+ 34,
613
+ 0,
614
+ 65,
615
+ 13,
616
+ 118,
617
+ 32,
618
+ 0,
619
+ 115,
620
+ 65,
621
+ 189,
622
+ 220,
623
+ 202,
624
+ 149,
625
+ 124,
626
+ 108,
627
+ 34,
628
+ 0,
629
+ 65,
630
+ 16,
631
+ 118,
632
+ 32,
633
+ 0,
634
+ 115,
635
+ 11,
636
+ 63,
637
+ 0,
638
+ 32,
639
+ 0,
640
+ 65,
641
+ 8,
642
+ 106,
643
+ 32,
644
+ 1,
645
+ 65,
646
+ 168,
647
+ 136,
648
+ 141,
649
+ 161,
650
+ 2,
651
+ 106,
652
+ 54,
653
+ 2,
654
+ 0,
655
+ 32,
656
+ 0,
657
+ 65,
658
+ 12,
659
+ 106,
660
+ 32,
661
+ 1,
662
+ 65,
663
+ 137,
664
+ 235,
665
+ 208,
666
+ 208,
667
+ 7,
668
+ 107,
669
+ 54,
670
+ 2,
671
+ 0,
672
+ 32,
673
+ 0,
674
+ 65,
675
+ 16,
676
+ 106,
677
+ 32,
678
+ 1,
679
+ 54,
680
+ 2,
681
+ 0,
682
+ 32,
683
+ 0,
684
+ 65,
685
+ 20,
686
+ 106,
687
+ 32,
688
+ 1,
689
+ 65,
690
+ 207,
691
+ 140,
692
+ 162,
693
+ 142,
694
+ 6,
695
+ 106,
696
+ 54,
697
+ 2,
698
+ 0,
699
+ 11,
700
+ 195,
701
+ 4,
702
+ 1,
703
+ 6,
704
+ 127,
705
+ 32,
706
+ 1,
707
+ 32,
708
+ 2,
709
+ 106,
710
+ 33,
711
+ 6,
712
+ 32,
713
+ 0,
714
+ 65,
715
+ 24,
716
+ 106,
717
+ 33,
718
+ 4,
719
+ 32,
720
+ 0,
721
+ 65,
722
+ 40,
723
+ 106,
724
+ 40,
725
+ 2,
726
+ 0,
727
+ 33,
728
+ 3,
729
+ 32,
730
+ 0,
731
+ 32,
732
+ 0,
733
+ 40,
734
+ 2,
735
+ 0,
736
+ 32,
737
+ 2,
738
+ 106,
739
+ 54,
740
+ 2,
741
+ 0,
742
+ 32,
743
+ 0,
744
+ 65,
745
+ 4,
746
+ 106,
747
+ 34,
748
+ 5,
749
+ 32,
750
+ 5,
751
+ 40,
752
+ 2,
753
+ 0,
754
+ 32,
755
+ 2,
756
+ 65,
757
+ 16,
758
+ 79,
759
+ 32,
760
+ 0,
761
+ 40,
762
+ 2,
763
+ 0,
764
+ 65,
765
+ 16,
766
+ 79,
767
+ 114,
768
+ 114,
769
+ 54,
770
+ 2,
771
+ 0,
772
+ 32,
773
+ 2,
774
+ 32,
775
+ 3,
776
+ 106,
777
+ 65,
778
+ 16,
779
+ 73,
780
+ 4,
781
+ 64,
782
+ 32,
783
+ 3,
784
+ 32,
785
+ 4,
786
+ 106,
787
+ 32,
788
+ 1,
789
+ 32,
790
+ 2,
791
+ 252,
792
+ 10,
793
+ 0,
794
+ 0,
795
+ 32,
796
+ 0,
797
+ 65,
798
+ 40,
799
+ 106,
800
+ 32,
801
+ 2,
802
+ 32,
803
+ 3,
804
+ 106,
805
+ 54,
806
+ 2,
807
+ 0,
808
+ 15,
809
+ 11,
810
+ 32,
811
+ 3,
812
+ 4,
813
+ 64,
814
+ 32,
815
+ 3,
816
+ 32,
817
+ 4,
818
+ 106,
819
+ 32,
820
+ 1,
821
+ 65,
822
+ 16,
823
+ 32,
824
+ 3,
825
+ 107,
826
+ 34,
827
+ 2,
828
+ 252,
829
+ 10,
830
+ 0,
831
+ 0,
832
+ 32,
833
+ 0,
834
+ 65,
835
+ 8,
836
+ 106,
837
+ 34,
838
+ 3,
839
+ 32,
840
+ 3,
841
+ 40,
842
+ 2,
843
+ 0,
844
+ 32,
845
+ 4,
846
+ 40,
847
+ 2,
848
+ 0,
849
+ 65,
850
+ 247,
851
+ 148,
852
+ 175,
853
+ 175,
854
+ 120,
855
+ 108,
856
+ 106,
857
+ 65,
858
+ 13,
859
+ 119,
860
+ 65,
861
+ 177,
862
+ 243,
863
+ 221,
864
+ 241,
865
+ 121,
866
+ 108,
867
+ 54,
868
+ 2,
869
+ 0,
870
+ 32,
871
+ 0,
872
+ 65,
873
+ 12,
874
+ 106,
875
+ 34,
876
+ 3,
877
+ 32,
878
+ 3,
879
+ 40,
880
+ 2,
881
+ 0,
882
+ 32,
883
+ 4,
884
+ 65,
885
+ 4,
886
+ 106,
887
+ 40,
888
+ 2,
889
+ 0,
890
+ 65,
891
+ 247,
892
+ 148,
893
+ 175,
894
+ 175,
895
+ 120,
896
+ 108,
897
+ 106,
898
+ 65,
899
+ 13,
900
+ 119,
901
+ 65,
902
+ 177,
903
+ 243,
904
+ 221,
905
+ 241,
906
+ 121,
907
+ 108,
908
+ 54,
909
+ 2,
910
+ 0,
911
+ 32,
912
+ 0,
913
+ 65,
914
+ 16,
915
+ 106,
916
+ 34,
917
+ 3,
918
+ 32,
919
+ 3,
920
+ 40,
921
+ 2,
922
+ 0,
923
+ 32,
924
+ 4,
925
+ 65,
926
+ 8,
927
+ 106,
928
+ 40,
929
+ 2,
930
+ 0,
931
+ 65,
932
+ 247,
933
+ 148,
934
+ 175,
935
+ 175,
936
+ 120,
937
+ 108,
938
+ 106,
939
+ 65,
940
+ 13,
941
+ 119,
942
+ 65,
943
+ 177,
944
+ 243,
945
+ 221,
946
+ 241,
947
+ 121,
948
+ 108,
949
+ 54,
950
+ 2,
951
+ 0,
952
+ 32,
953
+ 0,
954
+ 65,
955
+ 20,
956
+ 106,
957
+ 34,
958
+ 3,
959
+ 32,
960
+ 3,
961
+ 40,
962
+ 2,
963
+ 0,
964
+ 32,
965
+ 4,
966
+ 65,
967
+ 12,
968
+ 106,
969
+ 40,
970
+ 2,
971
+ 0,
972
+ 65,
973
+ 247,
974
+ 148,
975
+ 175,
976
+ 175,
977
+ 120,
978
+ 108,
979
+ 106,
980
+ 65,
981
+ 13,
982
+ 119,
983
+ 65,
984
+ 177,
985
+ 243,
986
+ 221,
987
+ 241,
988
+ 121,
989
+ 108,
990
+ 54,
991
+ 2,
992
+ 0,
993
+ 32,
994
+ 0,
995
+ 65,
996
+ 40,
997
+ 106,
998
+ 65,
999
+ 0,
1000
+ 54,
1001
+ 2,
1002
+ 0,
1003
+ 32,
1004
+ 1,
1005
+ 32,
1006
+ 2,
1007
+ 106,
1008
+ 33,
1009
+ 1,
1010
+ 11,
1011
+ 32,
1012
+ 1,
1013
+ 32,
1014
+ 6,
1015
+ 65,
1016
+ 16,
1017
+ 107,
1018
+ 77,
1019
+ 4,
1020
+ 64,
1021
+ 32,
1022
+ 6,
1023
+ 65,
1024
+ 16,
1025
+ 107,
1026
+ 33,
1027
+ 8,
1028
+ 32,
1029
+ 0,
1030
+ 65,
1031
+ 8,
1032
+ 106,
1033
+ 40,
1034
+ 2,
1035
+ 0,
1036
+ 33,
1037
+ 2,
1038
+ 32,
1039
+ 0,
1040
+ 65,
1041
+ 12,
1042
+ 106,
1043
+ 40,
1044
+ 2,
1045
+ 0,
1046
+ 33,
1047
+ 3,
1048
+ 32,
1049
+ 0,
1050
+ 65,
1051
+ 16,
1052
+ 106,
1053
+ 40,
1054
+ 2,
1055
+ 0,
1056
+ 33,
1057
+ 5,
1058
+ 32,
1059
+ 0,
1060
+ 65,
1061
+ 20,
1062
+ 106,
1063
+ 40,
1064
+ 2,
1065
+ 0,
1066
+ 33,
1067
+ 7,
1068
+ 3,
1069
+ 64,
1070
+ 32,
1071
+ 2,
1072
+ 32,
1073
+ 1,
1074
+ 40,
1075
+ 2,
1076
+ 0,
1077
+ 65,
1078
+ 247,
1079
+ 148,
1080
+ 175,
1081
+ 175,
1082
+ 120,
1083
+ 108,
1084
+ 106,
1085
+ 65,
1086
+ 13,
1087
+ 119,
1088
+ 65,
1089
+ 177,
1090
+ 243,
1091
+ 221,
1092
+ 241,
1093
+ 121,
1094
+ 108,
1095
+ 33,
1096
+ 2,
1097
+ 32,
1098
+ 3,
1099
+ 32,
1100
+ 1,
1101
+ 65,
1102
+ 4,
1103
+ 106,
1104
+ 34,
1105
+ 1,
1106
+ 40,
1107
+ 2,
1108
+ 0,
1109
+ 65,
1110
+ 247,
1111
+ 148,
1112
+ 175,
1113
+ 175,
1114
+ 120,
1115
+ 108,
1116
+ 106,
1117
+ 65,
1118
+ 13,
1119
+ 119,
1120
+ 65,
1121
+ 177,
1122
+ 243,
1123
+ 221,
1124
+ 241,
1125
+ 121,
1126
+ 108,
1127
+ 33,
1128
+ 3,
1129
+ 32,
1130
+ 5,
1131
+ 32,
1132
+ 1,
1133
+ 65,
1134
+ 4,
1135
+ 106,
1136
+ 34,
1137
+ 1,
1138
+ 40,
1139
+ 2,
1140
+ 0,
1141
+ 65,
1142
+ 247,
1143
+ 148,
1144
+ 175,
1145
+ 175,
1146
+ 120,
1147
+ 108,
1148
+ 106,
1149
+ 65,
1150
+ 13,
1151
+ 119,
1152
+ 65,
1153
+ 177,
1154
+ 243,
1155
+ 221,
1156
+ 241,
1157
+ 121,
1158
+ 108,
1159
+ 33,
1160
+ 5,
1161
+ 32,
1162
+ 7,
1163
+ 32,
1164
+ 1,
1165
+ 65,
1166
+ 4,
1167
+ 106,
1168
+ 34,
1169
+ 1,
1170
+ 40,
1171
+ 2,
1172
+ 0,
1173
+ 65,
1174
+ 247,
1175
+ 148,
1176
+ 175,
1177
+ 175,
1178
+ 120,
1179
+ 108,
1180
+ 106,
1181
+ 65,
1182
+ 13,
1183
+ 119,
1184
+ 65,
1185
+ 177,
1186
+ 243,
1187
+ 221,
1188
+ 241,
1189
+ 121,
1190
+ 108,
1191
+ 33,
1192
+ 7,
1193
+ 32,
1194
+ 8,
1195
+ 32,
1196
+ 1,
1197
+ 65,
1198
+ 4,
1199
+ 106,
1200
+ 34,
1201
+ 1,
1202
+ 79,
1203
+ 13,
1204
+ 0,
1205
+ 11,
1206
+ 32,
1207
+ 0,
1208
+ 65,
1209
+ 8,
1210
+ 106,
1211
+ 32,
1212
+ 2,
1213
+ 54,
1214
+ 2,
1215
+ 0,
1216
+ 32,
1217
+ 0,
1218
+ 65,
1219
+ 12,
1220
+ 106,
1221
+ 32,
1222
+ 3,
1223
+ 54,
1224
+ 2,
1225
+ 0,
1226
+ 32,
1227
+ 0,
1228
+ 65,
1229
+ 16,
1230
+ 106,
1231
+ 32,
1232
+ 5,
1233
+ 54,
1234
+ 2,
1235
+ 0,
1236
+ 32,
1237
+ 0,
1238
+ 65,
1239
+ 20,
1240
+ 106,
1241
+ 32,
1242
+ 7,
1243
+ 54,
1244
+ 2,
1245
+ 0,
1246
+ 11,
1247
+ 32,
1248
+ 1,
1249
+ 32,
1250
+ 6,
1251
+ 73,
1252
+ 4,
1253
+ 64,
1254
+ 32,
1255
+ 4,
1256
+ 32,
1257
+ 1,
1258
+ 32,
1259
+ 6,
1260
+ 32,
1261
+ 1,
1262
+ 107,
1263
+ 34,
1264
+ 1,
1265
+ 252,
1266
+ 10,
1267
+ 0,
1268
+ 0,
1269
+ 32,
1270
+ 0,
1271
+ 65,
1272
+ 40,
1273
+ 106,
1274
+ 32,
1275
+ 1,
1276
+ 54,
1277
+ 2,
1278
+ 0,
1279
+ 11,
1280
+ 11,
1281
+ 97,
1282
+ 1,
1283
+ 1,
1284
+ 127,
1285
+ 32,
1286
+ 0,
1287
+ 65,
1288
+ 16,
1289
+ 106,
1290
+ 40,
1291
+ 2,
1292
+ 0,
1293
+ 33,
1294
+ 1,
1295
+ 32,
1296
+ 0,
1297
+ 65,
1298
+ 4,
1299
+ 106,
1300
+ 40,
1301
+ 2,
1302
+ 0,
1303
+ 4,
1304
+ 127,
1305
+ 32,
1306
+ 1,
1307
+ 65,
1308
+ 12,
1309
+ 119,
1310
+ 32,
1311
+ 0,
1312
+ 65,
1313
+ 20,
1314
+ 106,
1315
+ 40,
1316
+ 2,
1317
+ 0,
1318
+ 65,
1319
+ 18,
1320
+ 119,
1321
+ 106,
1322
+ 32,
1323
+ 0,
1324
+ 65,
1325
+ 12,
1326
+ 106,
1327
+ 40,
1328
+ 2,
1329
+ 0,
1330
+ 65,
1331
+ 7,
1332
+ 119,
1333
+ 106,
1334
+ 32,
1335
+ 0,
1336
+ 65,
1337
+ 8,
1338
+ 106,
1339
+ 40,
1340
+ 2,
1341
+ 0,
1342
+ 65,
1343
+ 1,
1344
+ 119,
1345
+ 106,
1346
+ 5,
1347
+ 32,
1348
+ 1,
1349
+ 65,
1350
+ 177,
1351
+ 207,
1352
+ 217,
1353
+ 178,
1354
+ 1,
1355
+ 106,
1356
+ 11,
1357
+ 32,
1358
+ 0,
1359
+ 40,
1360
+ 2,
1361
+ 0,
1362
+ 106,
1363
+ 32,
1364
+ 0,
1365
+ 65,
1366
+ 24,
1367
+ 106,
1368
+ 32,
1369
+ 0,
1370
+ 65,
1371
+ 40,
1372
+ 106,
1373
+ 40,
1374
+ 2,
1375
+ 0,
1376
+ 16,
1377
+ 1,
1378
+ 11,
1379
+ 255,
1380
+ 3,
1381
+ 2,
1382
+ 3,
1383
+ 126,
1384
+ 1,
1385
+ 127,
1386
+ 32,
1387
+ 0,
1388
+ 32,
1389
+ 1,
1390
+ 106,
1391
+ 33,
1392
+ 6,
1393
+ 32,
1394
+ 1,
1395
+ 65,
1396
+ 32,
1397
+ 79,
1398
+ 4,
1399
+ 126,
1400
+ 32,
1401
+ 6,
1402
+ 65,
1403
+ 32,
1404
+ 107,
1405
+ 33,
1406
+ 6,
1407
+ 32,
1408
+ 2,
1409
+ 66,
1410
+ 214,
1411
+ 235,
1412
+ 130,
1413
+ 238,
1414
+ 234,
1415
+ 253,
1416
+ 137,
1417
+ 245,
1418
+ 224,
1419
+ 0,
1420
+ 124,
1421
+ 33,
1422
+ 3,
1423
+ 32,
1424
+ 2,
1425
+ 66,
1426
+ 177,
1427
+ 169,
1428
+ 172,
1429
+ 193,
1430
+ 173,
1431
+ 184,
1432
+ 212,
1433
+ 166,
1434
+ 61,
1435
+ 125,
1436
+ 33,
1437
+ 4,
1438
+ 32,
1439
+ 2,
1440
+ 66,
1441
+ 249,
1442
+ 234,
1443
+ 208,
1444
+ 208,
1445
+ 231,
1446
+ 201,
1447
+ 161,
1448
+ 228,
1449
+ 225,
1450
+ 0,
1451
+ 124,
1452
+ 33,
1453
+ 5,
1454
+ 3,
1455
+ 64,
1456
+ 32,
1457
+ 3,
1458
+ 32,
1459
+ 0,
1460
+ 41,
1461
+ 3,
1462
+ 0,
1463
+ 66,
1464
+ 207,
1465
+ 214,
1466
+ 211,
1467
+ 190,
1468
+ 210,
1469
+ 199,
1470
+ 171,
1471
+ 217,
1472
+ 66,
1473
+ 126,
1474
+ 124,
1475
+ 66,
1476
+ 31,
1477
+ 137,
1478
+ 66,
1479
+ 135,
1480
+ 149,
1481
+ 175,
1482
+ 175,
1483
+ 152,
1484
+ 182,
1485
+ 222,
1486
+ 155,
1487
+ 158,
1488
+ 127,
1489
+ 126,
1490
+ 33,
1491
+ 3,
1492
+ 32,
1493
+ 4,
1494
+ 32,
1495
+ 0,
1496
+ 65,
1497
+ 8,
1498
+ 106,
1499
+ 34,
1500
+ 0,
1501
+ 41,
1502
+ 3,
1503
+ 0,
1504
+ 66,
1505
+ 207,
1506
+ 214,
1507
+ 211,
1508
+ 190,
1509
+ 210,
1510
+ 199,
1511
+ 171,
1512
+ 217,
1513
+ 66,
1514
+ 126,
1515
+ 124,
1516
+ 66,
1517
+ 31,
1518
+ 137,
1519
+ 66,
1520
+ 135,
1521
+ 149,
1522
+ 175,
1523
+ 175,
1524
+ 152,
1525
+ 182,
1526
+ 222,
1527
+ 155,
1528
+ 158,
1529
+ 127,
1530
+ 126,
1531
+ 33,
1532
+ 4,
1533
+ 32,
1534
+ 2,
1535
+ 32,
1536
+ 0,
1537
+ 65,
1538
+ 8,
1539
+ 106,
1540
+ 34,
1541
+ 0,
1542
+ 41,
1543
+ 3,
1544
+ 0,
1545
+ 66,
1546
+ 207,
1547
+ 214,
1548
+ 211,
1549
+ 190,
1550
+ 210,
1551
+ 199,
1552
+ 171,
1553
+ 217,
1554
+ 66,
1555
+ 126,
1556
+ 124,
1557
+ 66,
1558
+ 31,
1559
+ 137,
1560
+ 66,
1561
+ 135,
1562
+ 149,
1563
+ 175,
1564
+ 175,
1565
+ 152,
1566
+ 182,
1567
+ 222,
1568
+ 155,
1569
+ 158,
1570
+ 127,
1571
+ 126,
1572
+ 33,
1573
+ 2,
1574
+ 32,
1575
+ 5,
1576
+ 32,
1577
+ 0,
1578
+ 65,
1579
+ 8,
1580
+ 106,
1581
+ 34,
1582
+ 0,
1583
+ 41,
1584
+ 3,
1585
+ 0,
1586
+ 66,
1587
+ 207,
1588
+ 214,
1589
+ 211,
1590
+ 190,
1591
+ 210,
1592
+ 199,
1593
+ 171,
1594
+ 217,
1595
+ 66,
1596
+ 126,
1597
+ 124,
1598
+ 66,
1599
+ 31,
1600
+ 137,
1601
+ 66,
1602
+ 135,
1603
+ 149,
1604
+ 175,
1605
+ 175,
1606
+ 152,
1607
+ 182,
1608
+ 222,
1609
+ 155,
1610
+ 158,
1611
+ 127,
1612
+ 126,
1613
+ 33,
1614
+ 5,
1615
+ 32,
1616
+ 6,
1617
+ 32,
1618
+ 0,
1619
+ 65,
1620
+ 8,
1621
+ 106,
1622
+ 34,
1623
+ 0,
1624
+ 79,
1625
+ 13,
1626
+ 0,
1627
+ 11,
1628
+ 32,
1629
+ 2,
1630
+ 66,
1631
+ 12,
1632
+ 137,
1633
+ 32,
1634
+ 5,
1635
+ 66,
1636
+ 18,
1637
+ 137,
1638
+ 124,
1639
+ 32,
1640
+ 4,
1641
+ 66,
1642
+ 7,
1643
+ 137,
1644
+ 124,
1645
+ 32,
1646
+ 3,
1647
+ 66,
1648
+ 1,
1649
+ 137,
1650
+ 124,
1651
+ 32,
1652
+ 3,
1653
+ 66,
1654
+ 207,
1655
+ 214,
1656
+ 211,
1657
+ 190,
1658
+ 210,
1659
+ 199,
1660
+ 171,
1661
+ 217,
1662
+ 66,
1663
+ 126,
1664
+ 66,
1665
+ 31,
1666
+ 137,
1667
+ 66,
1668
+ 135,
1669
+ 149,
1670
+ 175,
1671
+ 175,
1672
+ 152,
1673
+ 182,
1674
+ 222,
1675
+ 155,
1676
+ 158,
1677
+ 127,
1678
+ 126,
1679
+ 133,
1680
+ 66,
1681
+ 135,
1682
+ 149,
1683
+ 175,
1684
+ 175,
1685
+ 152,
1686
+ 182,
1687
+ 222,
1688
+ 155,
1689
+ 158,
1690
+ 127,
1691
+ 126,
1692
+ 66,
1693
+ 157,
1694
+ 163,
1695
+ 181,
1696
+ 234,
1697
+ 131,
1698
+ 177,
1699
+ 141,
1700
+ 138,
1701
+ 250,
1702
+ 0,
1703
+ 125,
1704
+ 32,
1705
+ 4,
1706
+ 66,
1707
+ 207,
1708
+ 214,
1709
+ 211,
1710
+ 190,
1711
+ 210,
1712
+ 199,
1713
+ 171,
1714
+ 217,
1715
+ 66,
1716
+ 126,
1717
+ 66,
1718
+ 31,
1719
+ 137,
1720
+ 66,
1721
+ 135,
1722
+ 149,
1723
+ 175,
1724
+ 175,
1725
+ 152,
1726
+ 182,
1727
+ 222,
1728
+ 155,
1729
+ 158,
1730
+ 127,
1731
+ 126,
1732
+ 133,
1733
+ 66,
1734
+ 135,
1735
+ 149,
1736
+ 175,
1737
+ 175,
1738
+ 152,
1739
+ 182,
1740
+ 222,
1741
+ 155,
1742
+ 158,
1743
+ 127,
1744
+ 126,
1745
+ 66,
1746
+ 157,
1747
+ 163,
1748
+ 181,
1749
+ 234,
1750
+ 131,
1751
+ 177,
1752
+ 141,
1753
+ 138,
1754
+ 250,
1755
+ 0,
1756
+ 125,
1757
+ 32,
1758
+ 2,
1759
+ 66,
1760
+ 207,
1761
+ 214,
1762
+ 211,
1763
+ 190,
1764
+ 210,
1765
+ 199,
1766
+ 171,
1767
+ 217,
1768
+ 66,
1769
+ 126,
1770
+ 66,
1771
+ 31,
1772
+ 137,
1773
+ 66,
1774
+ 135,
1775
+ 149,
1776
+ 175,
1777
+ 175,
1778
+ 152,
1779
+ 182,
1780
+ 222,
1781
+ 155,
1782
+ 158,
1783
+ 127,
1784
+ 126,
1785
+ 133,
1786
+ 66,
1787
+ 135,
1788
+ 149,
1789
+ 175,
1790
+ 175,
1791
+ 152,
1792
+ 182,
1793
+ 222,
1794
+ 155,
1795
+ 158,
1796
+ 127,
1797
+ 126,
1798
+ 66,
1799
+ 157,
1800
+ 163,
1801
+ 181,
1802
+ 234,
1803
+ 131,
1804
+ 177,
1805
+ 141,
1806
+ 138,
1807
+ 250,
1808
+ 0,
1809
+ 125,
1810
+ 32,
1811
+ 5,
1812
+ 66,
1813
+ 207,
1814
+ 214,
1815
+ 211,
1816
+ 190,
1817
+ 210,
1818
+ 199,
1819
+ 171,
1820
+ 217,
1821
+ 66,
1822
+ 126,
1823
+ 66,
1824
+ 31,
1825
+ 137,
1826
+ 66,
1827
+ 135,
1828
+ 149,
1829
+ 175,
1830
+ 175,
1831
+ 152,
1832
+ 182,
1833
+ 222,
1834
+ 155,
1835
+ 158,
1836
+ 127,
1837
+ 126,
1838
+ 133,
1839
+ 66,
1840
+ 135,
1841
+ 149,
1842
+ 175,
1843
+ 175,
1844
+ 152,
1845
+ 182,
1846
+ 222,
1847
+ 155,
1848
+ 158,
1849
+ 127,
1850
+ 126,
1851
+ 66,
1852
+ 157,
1853
+ 163,
1854
+ 181,
1855
+ 234,
1856
+ 131,
1857
+ 177,
1858
+ 141,
1859
+ 138,
1860
+ 250,
1861
+ 0,
1862
+ 125,
1863
+ 5,
1864
+ 32,
1865
+ 2,
1866
+ 66,
1867
+ 197,
1868
+ 207,
1869
+ 217,
1870
+ 178,
1871
+ 241,
1872
+ 229,
1873
+ 186,
1874
+ 234,
1875
+ 39,
1876
+ 124,
1877
+ 11,
1878
+ 32,
1879
+ 1,
1880
+ 173,
1881
+ 124,
1882
+ 32,
1883
+ 0,
1884
+ 32,
1885
+ 1,
1886
+ 65,
1887
+ 31,
1888
+ 113,
1889
+ 16,
1890
+ 6,
1891
+ 11,
1892
+ 134,
1893
+ 2,
1894
+ 0,
1895
+ 32,
1896
+ 1,
1897
+ 32,
1898
+ 2,
1899
+ 106,
1900
+ 33,
1901
+ 2,
1902
+ 3,
1903
+ 64,
1904
+ 32,
1905
+ 2,
1906
+ 32,
1907
+ 1,
1908
+ 65,
1909
+ 8,
1910
+ 106,
1911
+ 79,
1912
+ 4,
1913
+ 64,
1914
+ 32,
1915
+ 1,
1916
+ 41,
1917
+ 3,
1918
+ 0,
1919
+ 66,
1920
+ 207,
1921
+ 214,
1922
+ 211,
1923
+ 190,
1924
+ 210,
1925
+ 199,
1926
+ 171,
1927
+ 217,
1928
+ 66,
1929
+ 126,
1930
+ 66,
1931
+ 31,
1932
+ 137,
1933
+ 66,
1934
+ 135,
1935
+ 149,
1936
+ 175,
1937
+ 175,
1938
+ 152,
1939
+ 182,
1940
+ 222,
1941
+ 155,
1942
+ 158,
1943
+ 127,
1944
+ 126,
1945
+ 32,
1946
+ 0,
1947
+ 133,
1948
+ 66,
1949
+ 27,
1950
+ 137,
1951
+ 66,
1952
+ 135,
1953
+ 149,
1954
+ 175,
1955
+ 175,
1956
+ 152,
1957
+ 182,
1958
+ 222,
1959
+ 155,
1960
+ 158,
1961
+ 127,
1962
+ 126,
1963
+ 66,
1964
+ 157,
1965
+ 163,
1966
+ 181,
1967
+ 234,
1968
+ 131,
1969
+ 177,
1970
+ 141,
1971
+ 138,
1972
+ 250,
1973
+ 0,
1974
+ 125,
1975
+ 33,
1976
+ 0,
1977
+ 32,
1978
+ 1,
1979
+ 65,
1980
+ 8,
1981
+ 106,
1982
+ 33,
1983
+ 1,
1984
+ 12,
1985
+ 1,
1986
+ 11,
1987
+ 11,
1988
+ 32,
1989
+ 1,
1990
+ 65,
1991
+ 4,
1992
+ 106,
1993
+ 32,
1994
+ 2,
1995
+ 77,
1996
+ 4,
1997
+ 64,
1998
+ 32,
1999
+ 0,
2000
+ 32,
2001
+ 1,
2002
+ 53,
2003
+ 2,
2004
+ 0,
2005
+ 66,
2006
+ 135,
2007
+ 149,
2008
+ 175,
2009
+ 175,
2010
+ 152,
2011
+ 182,
2012
+ 222,
2013
+ 155,
2014
+ 158,
2015
+ 127,
2016
+ 126,
2017
+ 133,
2018
+ 66,
2019
+ 23,
2020
+ 137,
2021
+ 66,
2022
+ 207,
2023
+ 214,
2024
+ 211,
2025
+ 190,
2026
+ 210,
2027
+ 199,
2028
+ 171,
2029
+ 217,
2030
+ 66,
2031
+ 126,
2032
+ 66,
2033
+ 249,
2034
+ 243,
2035
+ 221,
2036
+ 241,
2037
+ 153,
2038
+ 246,
2039
+ 153,
2040
+ 171,
2041
+ 22,
2042
+ 124,
2043
+ 33,
2044
+ 0,
2045
+ 32,
2046
+ 1,
2047
+ 65,
2048
+ 4,
2049
+ 106,
2050
+ 33,
2051
+ 1,
2052
+ 11,
2053
+ 3,
2054
+ 64,
2055
+ 32,
2056
+ 1,
2057
+ 32,
2058
+ 2,
2059
+ 73,
2060
+ 4,
2061
+ 64,
2062
+ 32,
2063
+ 0,
2064
+ 32,
2065
+ 1,
2066
+ 49,
2067
+ 0,
2068
+ 0,
2069
+ 66,
2070
+ 197,
2071
+ 207,
2072
+ 217,
2073
+ 178,
2074
+ 241,
2075
+ 229,
2076
+ 186,
2077
+ 234,
2078
+ 39,
2079
+ 126,
2080
+ 133,
2081
+ 66,
2082
+ 11,
2083
+ 137,
2084
+ 66,
2085
+ 135,
2086
+ 149,
2087
+ 175,
2088
+ 175,
2089
+ 152,
2090
+ 182,
2091
+ 222,
2092
+ 155,
2093
+ 158,
2094
+ 127,
2095
+ 126,
2096
+ 33,
2097
+ 0,
2098
+ 32,
2099
+ 1,
2100
+ 65,
2101
+ 1,
2102
+ 106,
2103
+ 33,
2104
+ 1,
2105
+ 12,
2106
+ 1,
2107
+ 11,
2108
+ 11,
2109
+ 32,
2110
+ 0,
2111
+ 32,
2112
+ 0,
2113
+ 66,
2114
+ 33,
2115
+ 136,
2116
+ 133,
2117
+ 66,
2118
+ 207,
2119
+ 214,
2120
+ 211,
2121
+ 190,
2122
+ 210,
2123
+ 199,
2124
+ 171,
2125
+ 217,
2126
+ 66,
2127
+ 126,
2128
+ 34,
2129
+ 0,
2130
+ 32,
2131
+ 0,
2132
+ 66,
2133
+ 29,
2134
+ 136,
2135
+ 133,
2136
+ 66,
2137
+ 249,
2138
+ 243,
2139
+ 221,
2140
+ 241,
2141
+ 153,
2142
+ 246,
2143
+ 153,
2144
+ 171,
2145
+ 22,
2146
+ 126,
2147
+ 34,
2148
+ 0,
2149
+ 32,
2150
+ 0,
2151
+ 66,
2152
+ 32,
2153
+ 136,
2154
+ 133,
2155
+ 11,
2156
+ 77,
2157
+ 0,
2158
+ 32,
2159
+ 0,
2160
+ 65,
2161
+ 8,
2162
+ 106,
2163
+ 32,
2164
+ 1,
2165
+ 66,
2166
+ 214,
2167
+ 235,
2168
+ 130,
2169
+ 238,
2170
+ 234,
2171
+ 253,
2172
+ 137,
2173
+ 245,
2174
+ 224,
2175
+ 0,
2176
+ 124,
2177
+ 55,
2178
+ 3,
2179
+ 0,
2180
+ 32,
2181
+ 0,
2182
+ 65,
2183
+ 16,
2184
+ 106,
2185
+ 32,
2186
+ 1,
2187
+ 66,
2188
+ 177,
2189
+ 169,
2190
+ 172,
2191
+ 193,
2192
+ 173,
2193
+ 184,
2194
+ 212,
2195
+ 166,
2196
+ 61,
2197
+ 125,
2198
+ 55,
2199
+ 3,
2200
+ 0,
2201
+ 32,
2202
+ 0,
2203
+ 65,
2204
+ 24,
2205
+ 106,
2206
+ 32,
2207
+ 1,
2208
+ 55,
2209
+ 3,
2210
+ 0,
2211
+ 32,
2212
+ 0,
2213
+ 65,
2214
+ 32,
2215
+ 106,
2216
+ 32,
2217
+ 1,
2218
+ 66,
2219
+ 249,
2220
+ 234,
2221
+ 208,
2222
+ 208,
2223
+ 231,
2224
+ 201,
2225
+ 161,
2226
+ 228,
2227
+ 225,
2228
+ 0,
2229
+ 124,
2230
+ 55,
2231
+ 3,
2232
+ 0,
2233
+ 11,
2234
+ 244,
2235
+ 4,
2236
+ 2,
2237
+ 3,
2238
+ 127,
2239
+ 4,
2240
+ 126,
2241
+ 32,
2242
+ 1,
2243
+ 32,
2244
+ 2,
2245
+ 106,
2246
+ 33,
2247
+ 5,
2248
+ 32,
2249
+ 0,
2250
+ 65,
2251
+ 40,
2252
+ 106,
2253
+ 33,
2254
+ 4,
2255
+ 32,
2256
+ 0,
2257
+ 65,
2258
+ 200,
2259
+ 0,
2260
+ 106,
2261
+ 40,
2262
+ 2,
2263
+ 0,
2264
+ 33,
2265
+ 3,
2266
+ 32,
2267
+ 0,
2268
+ 32,
2269
+ 0,
2270
+ 41,
2271
+ 3,
2272
+ 0,
2273
+ 32,
2274
+ 2,
2275
+ 173,
2276
+ 124,
2277
+ 55,
2278
+ 3,
2279
+ 0,
2280
+ 32,
2281
+ 2,
2282
+ 32,
2283
+ 3,
2284
+ 106,
2285
+ 65,
2286
+ 32,
2287
+ 73,
2288
+ 4,
2289
+ 64,
2290
+ 32,
2291
+ 3,
2292
+ 32,
2293
+ 4,
2294
+ 106,
2295
+ 32,
2296
+ 1,
2297
+ 32,
2298
+ 2,
2299
+ 252,
2300
+ 10,
2301
+ 0,
2302
+ 0,
2303
+ 32,
2304
+ 0,
2305
+ 65,
2306
+ 200,
2307
+ 0,
2308
+ 106,
2309
+ 32,
2310
+ 2,
2311
+ 32,
2312
+ 3,
2313
+ 106,
2314
+ 54,
2315
+ 2,
2316
+ 0,
2317
+ 15,
2318
+ 11,
2319
+ 32,
2320
+ 3,
2321
+ 4,
2322
+ 64,
2323
+ 32,
2324
+ 3,
2325
+ 32,
2326
+ 4,
2327
+ 106,
2328
+ 32,
2329
+ 1,
2330
+ 65,
2331
+ 32,
2332
+ 32,
2333
+ 3,
2334
+ 107,
2335
+ 34,
2336
+ 2,
2337
+ 252,
2338
+ 10,
2339
+ 0,
2340
+ 0,
2341
+ 32,
2342
+ 0,
2343
+ 65,
2344
+ 8,
2345
+ 106,
2346
+ 34,
2347
+ 3,
2348
+ 32,
2349
+ 3,
2350
+ 41,
2351
+ 3,
2352
+ 0,
2353
+ 32,
2354
+ 4,
2355
+ 41,
2356
+ 3,
2357
+ 0,
2358
+ 66,
2359
+ 207,
2360
+ 214,
2361
+ 211,
2362
+ 190,
2363
+ 210,
2364
+ 199,
2365
+ 171,
2366
+ 217,
2367
+ 66,
2368
+ 126,
2369
+ 124,
2370
+ 66,
2371
+ 31,
2372
+ 137,
2373
+ 66,
2374
+ 135,
2375
+ 149,
2376
+ 175,
2377
+ 175,
2378
+ 152,
2379
+ 182,
2380
+ 222,
2381
+ 155,
2382
+ 158,
2383
+ 127,
2384
+ 126,
2385
+ 55,
2386
+ 3,
2387
+ 0,
2388
+ 32,
2389
+ 0,
2390
+ 65,
2391
+ 16,
2392
+ 106,
2393
+ 34,
2394
+ 3,
2395
+ 32,
2396
+ 3,
2397
+ 41,
2398
+ 3,
2399
+ 0,
2400
+ 32,
2401
+ 4,
2402
+ 65,
2403
+ 8,
2404
+ 106,
2405
+ 41,
2406
+ 3,
2407
+ 0,
2408
+ 66,
2409
+ 207,
2410
+ 214,
2411
+ 211,
2412
+ 190,
2413
+ 210,
2414
+ 199,
2415
+ 171,
2416
+ 217,
2417
+ 66,
2418
+ 126,
2419
+ 124,
2420
+ 66,
2421
+ 31,
2422
+ 137,
2423
+ 66,
2424
+ 135,
2425
+ 149,
2426
+ 175,
2427
+ 175,
2428
+ 152,
2429
+ 182,
2430
+ 222,
2431
+ 155,
2432
+ 158,
2433
+ 127,
2434
+ 126,
2435
+ 55,
2436
+ 3,
2437
+ 0,
2438
+ 32,
2439
+ 0,
2440
+ 65,
2441
+ 24,
2442
+ 106,
2443
+ 34,
2444
+ 3,
2445
+ 32,
2446
+ 3,
2447
+ 41,
2448
+ 3,
2449
+ 0,
2450
+ 32,
2451
+ 4,
2452
+ 65,
2453
+ 16,
2454
+ 106,
2455
+ 41,
2456
+ 3,
2457
+ 0,
2458
+ 66,
2459
+ 207,
2460
+ 214,
2461
+ 211,
2462
+ 190,
2463
+ 210,
2464
+ 199,
2465
+ 171,
2466
+ 217,
2467
+ 66,
2468
+ 126,
2469
+ 124,
2470
+ 66,
2471
+ 31,
2472
+ 137,
2473
+ 66,
2474
+ 135,
2475
+ 149,
2476
+ 175,
2477
+ 175,
2478
+ 152,
2479
+ 182,
2480
+ 222,
2481
+ 155,
2482
+ 158,
2483
+ 127,
2484
+ 126,
2485
+ 55,
2486
+ 3,
2487
+ 0,
2488
+ 32,
2489
+ 0,
2490
+ 65,
2491
+ 32,
2492
+ 106,
2493
+ 34,
2494
+ 3,
2495
+ 32,
2496
+ 3,
2497
+ 41,
2498
+ 3,
2499
+ 0,
2500
+ 32,
2501
+ 4,
2502
+ 65,
2503
+ 24,
2504
+ 106,
2505
+ 41,
2506
+ 3,
2507
+ 0,
2508
+ 66,
2509
+ 207,
2510
+ 214,
2511
+ 211,
2512
+ 190,
2513
+ 210,
2514
+ 199,
2515
+ 171,
2516
+ 217,
2517
+ 66,
2518
+ 126,
2519
+ 124,
2520
+ 66,
2521
+ 31,
2522
+ 137,
2523
+ 66,
2524
+ 135,
2525
+ 149,
2526
+ 175,
2527
+ 175,
2528
+ 152,
2529
+ 182,
2530
+ 222,
2531
+ 155,
2532
+ 158,
2533
+ 127,
2534
+ 126,
2535
+ 55,
2536
+ 3,
2537
+ 0,
2538
+ 32,
2539
+ 0,
2540
+ 65,
2541
+ 200,
2542
+ 0,
2543
+ 106,
2544
+ 65,
2545
+ 0,
2546
+ 54,
2547
+ 2,
2548
+ 0,
2549
+ 32,
2550
+ 1,
2551
+ 32,
2552
+ 2,
2553
+ 106,
2554
+ 33,
2555
+ 1,
2556
+ 11,
2557
+ 32,
2558
+ 1,
2559
+ 65,
2560
+ 32,
2561
+ 106,
2562
+ 32,
2563
+ 5,
2564
+ 77,
2565
+ 4,
2566
+ 64,
2567
+ 32,
2568
+ 5,
2569
+ 65,
2570
+ 32,
2571
+ 107,
2572
+ 33,
2573
+ 2,
2574
+ 32,
2575
+ 0,
2576
+ 65,
2577
+ 8,
2578
+ 106,
2579
+ 41,
2580
+ 3,
2581
+ 0,
2582
+ 33,
2583
+ 6,
2584
+ 32,
2585
+ 0,
2586
+ 65,
2587
+ 16,
2588
+ 106,
2589
+ 41,
2590
+ 3,
2591
+ 0,
2592
+ 33,
2593
+ 7,
2594
+ 32,
2595
+ 0,
2596
+ 65,
2597
+ 24,
2598
+ 106,
2599
+ 41,
2600
+ 3,
2601
+ 0,
2602
+ 33,
2603
+ 8,
2604
+ 32,
2605
+ 0,
2606
+ 65,
2607
+ 32,
2608
+ 106,
2609
+ 41,
2610
+ 3,
2611
+ 0,
2612
+ 33,
2613
+ 9,
2614
+ 3,
2615
+ 64,
2616
+ 32,
2617
+ 6,
2618
+ 32,
2619
+ 1,
2620
+ 41,
2621
+ 3,
2622
+ 0,
2623
+ 66,
2624
+ 207,
2625
+ 214,
2626
+ 211,
2627
+ 190,
2628
+ 210,
2629
+ 199,
2630
+ 171,
2631
+ 217,
2632
+ 66,
2633
+ 126,
2634
+ 124,
2635
+ 66,
2636
+ 31,
2637
+ 137,
2638
+ 66,
2639
+ 135,
2640
+ 149,
2641
+ 175,
2642
+ 175,
2643
+ 152,
2644
+ 182,
2645
+ 222,
2646
+ 155,
2647
+ 158,
2648
+ 127,
2649
+ 126,
2650
+ 33,
2651
+ 6,
2652
+ 32,
2653
+ 7,
2654
+ 32,
2655
+ 1,
2656
+ 65,
2657
+ 8,
2658
+ 106,
2659
+ 34,
2660
+ 1,
2661
+ 41,
2662
+ 3,
2663
+ 0,
2664
+ 66,
2665
+ 207,
2666
+ 214,
2667
+ 211,
2668
+ 190,
2669
+ 210,
2670
+ 199,
2671
+ 171,
2672
+ 217,
2673
+ 66,
2674
+ 126,
2675
+ 124,
2676
+ 66,
2677
+ 31,
2678
+ 137,
2679
+ 66,
2680
+ 135,
2681
+ 149,
2682
+ 175,
2683
+ 175,
2684
+ 152,
2685
+ 182,
2686
+ 222,
2687
+ 155,
2688
+ 158,
2689
+ 127,
2690
+ 126,
2691
+ 33,
2692
+ 7,
2693
+ 32,
2694
+ 8,
2695
+ 32,
2696
+ 1,
2697
+ 65,
2698
+ 8,
2699
+ 106,
2700
+ 34,
2701
+ 1,
2702
+ 41,
2703
+ 3,
2704
+ 0,
2705
+ 66,
2706
+ 207,
2707
+ 214,
2708
+ 211,
2709
+ 190,
2710
+ 210,
2711
+ 199,
2712
+ 171,
2713
+ 217,
2714
+ 66,
2715
+ 126,
2716
+ 124,
2717
+ 66,
2718
+ 31,
2719
+ 137,
2720
+ 66,
2721
+ 135,
2722
+ 149,
2723
+ 175,
2724
+ 175,
2725
+ 152,
2726
+ 182,
2727
+ 222,
2728
+ 155,
2729
+ 158,
2730
+ 127,
2731
+ 126,
2732
+ 33,
2733
+ 8,
2734
+ 32,
2735
+ 9,
2736
+ 32,
2737
+ 1,
2738
+ 65,
2739
+ 8,
2740
+ 106,
2741
+ 34,
2742
+ 1,
2743
+ 41,
2744
+ 3,
2745
+ 0,
2746
+ 66,
2747
+ 207,
2748
+ 214,
2749
+ 211,
2750
+ 190,
2751
+ 210,
2752
+ 199,
2753
+ 171,
2754
+ 217,
2755
+ 66,
2756
+ 126,
2757
+ 124,
2758
+ 66,
2759
+ 31,
2760
+ 137,
2761
+ 66,
2762
+ 135,
2763
+ 149,
2764
+ 175,
2765
+ 175,
2766
+ 152,
2767
+ 182,
2768
+ 222,
2769
+ 155,
2770
+ 158,
2771
+ 127,
2772
+ 126,
2773
+ 33,
2774
+ 9,
2775
+ 32,
2776
+ 2,
2777
+ 32,
2778
+ 1,
2779
+ 65,
2780
+ 8,
2781
+ 106,
2782
+ 34,
2783
+ 1,
2784
+ 79,
2785
+ 13,
2786
+ 0,
2787
+ 11,
2788
+ 32,
2789
+ 0,
2790
+ 65,
2791
+ 8,
2792
+ 106,
2793
+ 32,
2794
+ 6,
2795
+ 55,
2796
+ 3,
2797
+ 0,
2798
+ 32,
2799
+ 0,
2800
+ 65,
2801
+ 16,
2802
+ 106,
2803
+ 32,
2804
+ 7,
2805
+ 55,
2806
+ 3,
2807
+ 0,
2808
+ 32,
2809
+ 0,
2810
+ 65,
2811
+ 24,
2812
+ 106,
2813
+ 32,
2814
+ 8,
2815
+ 55,
2816
+ 3,
2817
+ 0,
2818
+ 32,
2819
+ 0,
2820
+ 65,
2821
+ 32,
2822
+ 106,
2823
+ 32,
2824
+ 9,
2825
+ 55,
2826
+ 3,
2827
+ 0,
2828
+ 11,
2829
+ 32,
2830
+ 1,
2831
+ 32,
2832
+ 5,
2833
+ 73,
2834
+ 4,
2835
+ 64,
2836
+ 32,
2837
+ 4,
2838
+ 32,
2839
+ 1,
2840
+ 32,
2841
+ 5,
2842
+ 32,
2843
+ 1,
2844
+ 107,
2845
+ 34,
2846
+ 1,
2847
+ 252,
2848
+ 10,
2849
+ 0,
2850
+ 0,
2851
+ 32,
2852
+ 0,
2853
+ 65,
2854
+ 200,
2855
+ 0,
2856
+ 106,
2857
+ 32,
2858
+ 1,
2859
+ 54,
2860
+ 2,
2861
+ 0,
2862
+ 11,
2863
+ 11,
2864
+ 188,
2865
+ 2,
2866
+ 1,
2867
+ 5,
2868
+ 126,
2869
+ 32,
2870
+ 0,
2871
+ 65,
2872
+ 24,
2873
+ 106,
2874
+ 41,
2875
+ 3,
2876
+ 0,
2877
+ 33,
2878
+ 1,
2879
+ 32,
2880
+ 0,
2881
+ 41,
2882
+ 3,
2883
+ 0,
2884
+ 34,
2885
+ 2,
2886
+ 66,
2887
+ 32,
2888
+ 90,
2889
+ 4,
2890
+ 126,
2891
+ 32,
2892
+ 0,
2893
+ 65,
2894
+ 8,
2895
+ 106,
2896
+ 41,
2897
+ 3,
2898
+ 0,
2899
+ 34,
2900
+ 3,
2901
+ 66,
2902
+ 1,
2903
+ 137,
2904
+ 32,
2905
+ 0,
2906
+ 65,
2907
+ 16,
2908
+ 106,
2909
+ 41,
2910
+ 3,
2911
+ 0,
2912
+ 34,
2913
+ 4,
2914
+ 66,
2915
+ 7,
2916
+ 137,
2917
+ 124,
2918
+ 32,
2919
+ 1,
2920
+ 66,
2921
+ 12,
2922
+ 137,
2923
+ 32,
2924
+ 0,
2925
+ 65,
2926
+ 32,
2927
+ 106,
2928
+ 41,
2929
+ 3,
2930
+ 0,
2931
+ 34,
2932
+ 5,
2933
+ 66,
2934
+ 18,
2935
+ 137,
2936
+ 124,
2937
+ 124,
2938
+ 32,
2939
+ 3,
2940
+ 66,
2941
+ 207,
2942
+ 214,
2943
+ 211,
2944
+ 190,
2945
+ 210,
2946
+ 199,
2947
+ 171,
2948
+ 217,
2949
+ 66,
2950
+ 126,
2951
+ 66,
2952
+ 31,
2953
+ 137,
2954
+ 66,
2955
+ 135,
2956
+ 149,
2957
+ 175,
2958
+ 175,
2959
+ 152,
2960
+ 182,
2961
+ 222,
2962
+ 155,
2963
+ 158,
2964
+ 127,
2965
+ 126,
2966
+ 133,
2967
+ 66,
2968
+ 135,
2969
+ 149,
2970
+ 175,
2971
+ 175,
2972
+ 152,
2973
+ 182,
2974
+ 222,
2975
+ 155,
2976
+ 158,
2977
+ 127,
2978
+ 126,
2979
+ 66,
2980
+ 157,
2981
+ 163,
2982
+ 181,
2983
+ 234,
2984
+ 131,
2985
+ 177,
2986
+ 141,
2987
+ 138,
2988
+ 250,
2989
+ 0,
2990
+ 125,
2991
+ 32,
2992
+ 4,
2993
+ 66,
2994
+ 207,
2995
+ 214,
2996
+ 211,
2997
+ 190,
2998
+ 210,
2999
+ 199,
3000
+ 171,
3001
+ 217,
3002
+ 66,
3003
+ 126,
3004
+ 66,
3005
+ 31,
3006
+ 137,
3007
+ 66,
3008
+ 135,
3009
+ 149,
3010
+ 175,
3011
+ 175,
3012
+ 152,
3013
+ 182,
3014
+ 222,
3015
+ 155,
3016
+ 158,
3017
+ 127,
3018
+ 126,
3019
+ 133,
3020
+ 66,
3021
+ 135,
3022
+ 149,
3023
+ 175,
3024
+ 175,
3025
+ 152,
3026
+ 182,
3027
+ 222,
3028
+ 155,
3029
+ 158,
3030
+ 127,
3031
+ 126,
3032
+ 66,
3033
+ 157,
3034
+ 163,
3035
+ 181,
3036
+ 234,
3037
+ 131,
3038
+ 177,
3039
+ 141,
3040
+ 138,
3041
+ 250,
3042
+ 0,
3043
+ 125,
3044
+ 32,
3045
+ 1,
3046
+ 66,
3047
+ 207,
3048
+ 214,
3049
+ 211,
3050
+ 190,
3051
+ 210,
3052
+ 199,
3053
+ 171,
3054
+ 217,
3055
+ 66,
3056
+ 126,
3057
+ 66,
3058
+ 31,
3059
+ 137,
3060
+ 66,
3061
+ 135,
3062
+ 149,
3063
+ 175,
3064
+ 175,
3065
+ 152,
3066
+ 182,
3067
+ 222,
3068
+ 155,
3069
+ 158,
3070
+ 127,
3071
+ 126,
3072
+ 133,
3073
+ 66,
3074
+ 135,
3075
+ 149,
3076
+ 175,
3077
+ 175,
3078
+ 152,
3079
+ 182,
3080
+ 222,
3081
+ 155,
3082
+ 158,
3083
+ 127,
3084
+ 126,
3085
+ 66,
3086
+ 157,
3087
+ 163,
3088
+ 181,
3089
+ 234,
3090
+ 131,
3091
+ 177,
3092
+ 141,
3093
+ 138,
3094
+ 250,
3095
+ 0,
3096
+ 125,
3097
+ 32,
3098
+ 5,
3099
+ 66,
3100
+ 207,
3101
+ 214,
3102
+ 211,
3103
+ 190,
3104
+ 210,
3105
+ 199,
3106
+ 171,
3107
+ 217,
3108
+ 66,
3109
+ 126,
3110
+ 66,
3111
+ 31,
3112
+ 137,
3113
+ 66,
3114
+ 135,
3115
+ 149,
3116
+ 175,
3117
+ 175,
3118
+ 152,
3119
+ 182,
3120
+ 222,
3121
+ 155,
3122
+ 158,
3123
+ 127,
3124
+ 126,
3125
+ 133,
3126
+ 66,
3127
+ 135,
3128
+ 149,
3129
+ 175,
3130
+ 175,
3131
+ 152,
3132
+ 182,
3133
+ 222,
3134
+ 155,
3135
+ 158,
3136
+ 127,
3137
+ 126,
3138
+ 66,
3139
+ 157,
3140
+ 163,
3141
+ 181,
3142
+ 234,
3143
+ 131,
3144
+ 177,
3145
+ 141,
3146
+ 138,
3147
+ 250,
3148
+ 0,
3149
+ 125,
3150
+ 5,
3151
+ 32,
3152
+ 1,
3153
+ 66,
3154
+ 197,
3155
+ 207,
3156
+ 217,
3157
+ 178,
3158
+ 241,
3159
+ 229,
3160
+ 186,
3161
+ 234,
3162
+ 39,
3163
+ 124,
3164
+ 11,
3165
+ 32,
3166
+ 2,
3167
+ 124,
3168
+ 32,
3169
+ 0,
3170
+ 65,
3171
+ 40,
3172
+ 106,
3173
+ 32,
3174
+ 2,
3175
+ 66,
3176
+ 31,
3177
+ 131,
3178
+ 167,
3179
+ 16,
3180
+ 6,
3181
+ 11
3182
+ ]);
3183
+ async function e() {
3184
+ return function(t) {
3185
+ const { exports: { mem: e, xxh32: n, xxh64: r, init32: i, update32: a, digest32: o, init64: s, update64: u, digest64: c } } = t;
3186
+ let h = new Uint8Array(e.buffer);
3187
+ function g(t, n) {
3188
+ if (e.buffer.byteLength < t + n) {
3189
+ const r = Math.ceil((t + n - e.buffer.byteLength) / 65536);
3190
+ e.grow(r), h = new Uint8Array(e.buffer);
361
3191
  }
362
- return this;
363
- };
364
- /**
365
- * Bitwise shift left
366
- * @method shiftLeft
367
- * @param {Number} number of bits to shift
368
- * @param {Boolean} allow overflow
369
- * @return ThisExpression
370
- */
371
- UINT32.prototype.shiftLeft = UINT32.prototype.shiftl = function(n, allowOverflow) {
372
- if (n > 16) {
373
- this._high = this._low << n - 16;
374
- this._low = 0;
375
- if (!allowOverflow) this._high &= 65535;
376
- } else if (n == 16) {
377
- this._high = this._low;
378
- this._low = 0;
379
- } else {
380
- this._high = this._high << n | this._low >> 16 - n;
381
- this._low = this._low << n & 65535;
382
- if (!allowOverflow) this._high &= 65535;
383
- }
384
- return this;
385
- };
386
- /**
387
- * Bitwise rotate left
388
- * @method rotl
389
- * @param {Number} number of bits to rotate
390
- * @return ThisExpression
391
- */
392
- UINT32.prototype.rotateLeft = UINT32.prototype.rotl = function(n) {
393
- var v = this._high << 16 | this._low;
394
- v = v << n | v >>> 32 - n;
395
- this._low = v & 65535;
396
- this._high = v >>> 16;
397
- return this;
398
- };
399
- /**
400
- * Bitwise rotate right
401
- * @method rotr
402
- * @param {Number} number of bits to rotate
403
- * @return ThisExpression
404
- */
405
- UINT32.prototype.rotateRight = UINT32.prototype.rotr = function(n) {
406
- var v = this._high << 16 | this._low;
407
- v = v >>> n | v << 32 - n;
408
- this._low = v & 65535;
409
- this._high = v >>> 16;
410
- return this;
411
- };
412
- /**
413
- * Clone the current _UINT32_
414
- * @method clone
415
- * @return {Object} cloned UINT32
416
- */
417
- UINT32.prototype.clone = function() {
418
- return new UINT32(this._low, this._high);
419
- };
420
- if (typeof define != "undefined" && define.amd) define([], function() {
421
- return UINT32;
422
- });
423
- else if (typeof module != "undefined" && module.exports) module.exports = UINT32;
424
- else root["UINT32"] = UINT32;
425
- })(exports);
426
- }));
427
- //#endregion
428
- //#region node_modules/cuint/lib/uint64.js
429
- var require_uint64 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
430
- (function(root) {
431
- var radixPowerCache = {
432
- 16: UINT64(Math.pow(16, 5)),
433
- 10: UINT64(Math.pow(10, 5)),
434
- 2: UINT64(Math.pow(2, 5))
435
- };
436
- var radixCache = {
437
- 16: UINT64(16),
438
- 10: UINT64(10),
439
- 2: UINT64(2)
440
- };
441
- /**
442
- * Represents an unsigned 64 bits integer
443
- * @constructor
444
- * @param {Number} first low bits (8)
445
- * @param {Number} second low bits (8)
446
- * @param {Number} first high bits (8)
447
- * @param {Number} second high bits (8)
448
- * or
449
- * @param {Number} low bits (32)
450
- * @param {Number} high bits (32)
451
- * or
452
- * @param {String|Number} integer as a string | integer as a number
453
- * @param {Number|Undefined} radix (optional, default=10)
454
- * @return
455
- */
456
- function UINT64(a00, a16, a32, a48) {
457
- if (!(this instanceof UINT64)) return new UINT64(a00, a16, a32, a48);
458
- this.remainder = null;
459
- if (typeof a00 == "string") return fromString.call(this, a00, a16);
460
- if (typeof a16 == "undefined") return fromNumber.call(this, a00);
461
- fromBits.apply(this, arguments);
462
- }
463
- /**
464
- * Set the current _UINT64_ object with its low and high bits
465
- * @method fromBits
466
- * @param {Number} first low bits (8)
467
- * @param {Number} second low bits (8)
468
- * @param {Number} first high bits (8)
469
- * @param {Number} second high bits (8)
470
- * or
471
- * @param {Number} low bits (32)
472
- * @param {Number} high bits (32)
473
- * @return ThisExpression
474
- */
475
- function fromBits(a00, a16, a32, a48) {
476
- if (typeof a32 == "undefined") {
477
- this._a00 = a00 & 65535;
478
- this._a16 = a00 >>> 16;
479
- this._a32 = a16 & 65535;
480
- this._a48 = a16 >>> 16;
481
- return this;
482
- }
483
- this._a00 = a00 | 0;
484
- this._a16 = a16 | 0;
485
- this._a32 = a32 | 0;
486
- this._a48 = a48 | 0;
487
- return this;
488
- }
489
- UINT64.prototype.fromBits = fromBits;
490
- /**
491
- * Set the current _UINT64_ object from a number
492
- * @method fromNumber
493
- * @param {Number} number
494
- * @return ThisExpression
495
- */
496
- function fromNumber(value) {
497
- this._a00 = value & 65535;
498
- this._a16 = value >>> 16;
499
- this._a32 = 0;
500
- this._a48 = 0;
501
- return this;
502
- }
503
- UINT64.prototype.fromNumber = fromNumber;
504
- /**
505
- * Set the current _UINT64_ object from a string
506
- * @method fromString
507
- * @param {String} integer as a string
508
- * @param {Number} radix (optional, default=10)
509
- * @return ThisExpression
510
- */
511
- function fromString(s, radix) {
512
- radix = radix || 10;
513
- this._a00 = 0;
514
- this._a16 = 0;
515
- this._a32 = 0;
516
- this._a48 = 0;
517
- var radixUint = radixPowerCache[radix] || new UINT64(Math.pow(radix, 5));
518
- for (var i = 0, len = s.length; i < len; i += 5) {
519
- var size = Math.min(5, len - i);
520
- var value = parseInt(s.slice(i, i + size), radix);
521
- this.multiply(size < 5 ? new UINT64(Math.pow(radix, size)) : radixUint).add(new UINT64(value));
522
- }
523
- return this;
524
3192
  }
525
- UINT64.prototype.fromString = fromString;
526
- /**
527
- * Convert this _UINT64_ to a number (last 32 bits are dropped)
528
- * @method toNumber
529
- * @return {Number} the converted UINT64
530
- */
531
- UINT64.prototype.toNumber = function() {
532
- return this._a16 * 65536 + this._a00;
533
- };
534
- /**
535
- * Convert this _UINT64_ to a string
536
- * @method toString
537
- * @param {Number} radix (optional, default=10)
538
- * @return {String} the converted UINT64
539
- */
540
- UINT64.prototype.toString = function(radix) {
541
- radix = radix || 10;
542
- var radixUint = radixCache[radix] || new UINT64(radix);
543
- if (!this.gt(radixUint)) return this.toNumber().toString(radix);
544
- var self = this.clone();
545
- var res = new Array(64);
546
- for (var i = 63; i >= 0; i--) {
547
- self.div(radixUint);
548
- res[i] = self.remainder.toNumber().toString(radix);
549
- if (!self.gt(radixUint)) break;
550
- }
551
- res[i - 1] = self.toNumber().toString(radix);
552
- return res.join("");
553
- };
554
- /**
555
- * Add two _UINT64_. The current _UINT64_ stores the result
556
- * @method add
557
- * @param {Object} other UINT64
558
- * @return ThisExpression
559
- */
560
- UINT64.prototype.add = function(other) {
561
- var a00 = this._a00 + other._a00;
562
- var a16 = a00 >>> 16;
563
- a16 += this._a16 + other._a16;
564
- var a32 = a16 >>> 16;
565
- a32 += this._a32 + other._a32;
566
- var a48 = a32 >>> 16;
567
- a48 += this._a48 + other._a48;
568
- this._a00 = a00 & 65535;
569
- this._a16 = a16 & 65535;
570
- this._a32 = a32 & 65535;
571
- this._a48 = a48 & 65535;
572
- return this;
573
- };
574
- /**
575
- * Subtract two _UINT64_. The current _UINT64_ stores the result
576
- * @method subtract
577
- * @param {Object} other UINT64
578
- * @return ThisExpression
579
- */
580
- UINT64.prototype.subtract = function(other) {
581
- return this.add(other.clone().negate());
582
- };
583
- /**
584
- * Multiply two _UINT64_. The current _UINT64_ stores the result
585
- * @method multiply
586
- * @param {Object} other UINT64
587
- * @return ThisExpression
588
- */
589
- UINT64.prototype.multiply = function(other) {
590
- var a00 = this._a00;
591
- var a16 = this._a16;
592
- var a32 = this._a32;
593
- var a48 = this._a48;
594
- var b00 = other._a00;
595
- var b16 = other._a16;
596
- var b32 = other._a32;
597
- var b48 = other._a48;
598
- var c00 = a00 * b00;
599
- var c16 = c00 >>> 16;
600
- c16 += a00 * b16;
601
- var c32 = c16 >>> 16;
602
- c16 &= 65535;
603
- c16 += a16 * b00;
604
- c32 += c16 >>> 16;
605
- c32 += a00 * b32;
606
- var c48 = c32 >>> 16;
607
- c32 &= 65535;
608
- c32 += a16 * b16;
609
- c48 += c32 >>> 16;
610
- c32 &= 65535;
611
- c32 += a32 * b00;
612
- c48 += c32 >>> 16;
613
- c48 += a00 * b48;
614
- c48 &= 65535;
615
- c48 += a16 * b32;
616
- c48 &= 65535;
617
- c48 += a32 * b16;
618
- c48 &= 65535;
619
- c48 += a48 * b00;
620
- this._a00 = c00 & 65535;
621
- this._a16 = c16 & 65535;
622
- this._a32 = c32 & 65535;
623
- this._a48 = c48 & 65535;
624
- return this;
625
- };
626
- /**
627
- * Divide two _UINT64_. The current _UINT64_ stores the result.
628
- * The remainder is made available as the _remainder_ property on
629
- * the _UINT64_ object. It can be null, meaning there are no remainder.
630
- * @method div
631
- * @param {Object} other UINT64
632
- * @return ThisExpression
633
- */
634
- UINT64.prototype.div = function(other) {
635
- if (other._a16 == 0 && other._a32 == 0 && other._a48 == 0) {
636
- if (other._a00 == 0) throw Error("division by zero");
637
- if (other._a00 == 1) {
638
- this.remainder = new UINT64(0);
639
- return this;
640
- }
641
- }
642
- if (other.gt(this)) {
643
- this.remainder = this.clone();
644
- this._a00 = 0;
645
- this._a16 = 0;
646
- this._a32 = 0;
647
- this._a48 = 0;
648
- return this;
649
- }
650
- if (this.eq(other)) {
651
- this.remainder = new UINT64(0);
652
- this._a00 = 1;
653
- this._a16 = 0;
654
- this._a32 = 0;
655
- this._a48 = 0;
656
- return this;
657
- }
658
- var _other = other.clone();
659
- var i = -1;
660
- while (!this.lt(_other)) {
661
- _other.shiftLeft(1, true);
662
- i++;
663
- }
664
- this.remainder = this.clone();
665
- this._a00 = 0;
666
- this._a16 = 0;
667
- this._a32 = 0;
668
- this._a48 = 0;
669
- for (; i >= 0; i--) {
670
- _other.shiftRight(1);
671
- if (!this.remainder.lt(_other)) {
672
- this.remainder.subtract(_other);
673
- if (i >= 48) this._a48 |= 1 << i - 48;
674
- else if (i >= 32) this._a32 |= 1 << i - 32;
675
- else if (i >= 16) this._a16 |= 1 << i - 16;
676
- else this._a00 |= 1 << i;
677
- }
678
- }
679
- return this;
680
- };
681
- /**
682
- * Negate the current _UINT64_
683
- * @method negate
684
- * @return ThisExpression
685
- */
686
- UINT64.prototype.negate = function() {
687
- var v = (~this._a00 & 65535) + 1;
688
- this._a00 = v & 65535;
689
- v = (~this._a16 & 65535) + (v >>> 16);
690
- this._a16 = v & 65535;
691
- v = (~this._a32 & 65535) + (v >>> 16);
692
- this._a32 = v & 65535;
693
- this._a48 = ~this._a48 + (v >>> 16) & 65535;
694
- return this;
695
- };
696
- /**
697
-
698
- * @method eq
699
- * @param {Object} other UINT64
700
- * @return {Boolean}
701
- */
702
- UINT64.prototype.equals = UINT64.prototype.eq = function(other) {
703
- return this._a48 == other._a48 && this._a00 == other._a00 && this._a32 == other._a32 && this._a16 == other._a16;
704
- };
705
- /**
706
- * Greater than (strict)
707
- * @method gt
708
- * @param {Object} other UINT64
709
- * @return {Boolean}
710
- */
711
- UINT64.prototype.greaterThan = UINT64.prototype.gt = function(other) {
712
- if (this._a48 > other._a48) return true;
713
- if (this._a48 < other._a48) return false;
714
- if (this._a32 > other._a32) return true;
715
- if (this._a32 < other._a32) return false;
716
- if (this._a16 > other._a16) return true;
717
- if (this._a16 < other._a16) return false;
718
- return this._a00 > other._a00;
719
- };
720
- /**
721
- * Less than (strict)
722
- * @method lt
723
- * @param {Object} other UINT64
724
- * @return {Boolean}
725
- */
726
- UINT64.prototype.lessThan = UINT64.prototype.lt = function(other) {
727
- if (this._a48 < other._a48) return true;
728
- if (this._a48 > other._a48) return false;
729
- if (this._a32 < other._a32) return true;
730
- if (this._a32 > other._a32) return false;
731
- if (this._a16 < other._a16) return true;
732
- if (this._a16 > other._a16) return false;
733
- return this._a00 < other._a00;
734
- };
735
- /**
736
- * Bitwise OR
737
- * @method or
738
- * @param {Object} other UINT64
739
- * @return ThisExpression
740
- */
741
- UINT64.prototype.or = function(other) {
742
- this._a00 |= other._a00;
743
- this._a16 |= other._a16;
744
- this._a32 |= other._a32;
745
- this._a48 |= other._a48;
746
- return this;
747
- };
748
- /**
749
- * Bitwise AND
750
- * @method and
751
- * @param {Object} other UINT64
752
- * @return ThisExpression
753
- */
754
- UINT64.prototype.and = function(other) {
755
- this._a00 &= other._a00;
756
- this._a16 &= other._a16;
757
- this._a32 &= other._a32;
758
- this._a48 &= other._a48;
759
- return this;
760
- };
761
- /**
762
- * Bitwise XOR
763
- * @method xor
764
- * @param {Object} other UINT64
765
- * @return ThisExpression
766
- */
767
- UINT64.prototype.xor = function(other) {
768
- this._a00 ^= other._a00;
769
- this._a16 ^= other._a16;
770
- this._a32 ^= other._a32;
771
- this._a48 ^= other._a48;
772
- return this;
773
- };
774
- /**
775
- * Bitwise NOT
776
- * @method not
777
- * @return ThisExpression
778
- */
779
- UINT64.prototype.not = function() {
780
- this._a00 = ~this._a00 & 65535;
781
- this._a16 = ~this._a16 & 65535;
782
- this._a32 = ~this._a32 & 65535;
783
- this._a48 = ~this._a48 & 65535;
784
- return this;
785
- };
786
- /**
787
- * Bitwise shift right
788
- * @method shiftRight
789
- * @param {Number} number of bits to shift
790
- * @return ThisExpression
791
- */
792
- UINT64.prototype.shiftRight = UINT64.prototype.shiftr = function(n) {
793
- n %= 64;
794
- if (n >= 48) {
795
- this._a00 = this._a48 >> n - 48;
796
- this._a16 = 0;
797
- this._a32 = 0;
798
- this._a48 = 0;
799
- } else if (n >= 32) {
800
- n -= 32;
801
- this._a00 = (this._a32 >> n | this._a48 << 16 - n) & 65535;
802
- this._a16 = this._a48 >> n & 65535;
803
- this._a32 = 0;
804
- this._a48 = 0;
805
- } else if (n >= 16) {
806
- n -= 16;
807
- this._a00 = (this._a16 >> n | this._a32 << 16 - n) & 65535;
808
- this._a16 = (this._a32 >> n | this._a48 << 16 - n) & 65535;
809
- this._a32 = this._a48 >> n & 65535;
810
- this._a48 = 0;
811
- } else {
812
- this._a00 = (this._a00 >> n | this._a16 << 16 - n) & 65535;
813
- this._a16 = (this._a16 >> n | this._a32 << 16 - n) & 65535;
814
- this._a32 = (this._a32 >> n | this._a48 << 16 - n) & 65535;
815
- this._a48 = this._a48 >> n & 65535;
816
- }
817
- return this;
818
- };
819
- /**
820
- * Bitwise shift left
821
- * @method shiftLeft
822
- * @param {Number} number of bits to shift
823
- * @param {Boolean} allow overflow
824
- * @return ThisExpression
825
- */
826
- UINT64.prototype.shiftLeft = UINT64.prototype.shiftl = function(n, allowOverflow) {
827
- n %= 64;
828
- if (n >= 48) {
829
- this._a48 = this._a00 << n - 48;
830
- this._a32 = 0;
831
- this._a16 = 0;
832
- this._a00 = 0;
833
- } else if (n >= 32) {
834
- n -= 32;
835
- this._a48 = this._a16 << n | this._a00 >> 16 - n;
836
- this._a32 = this._a00 << n & 65535;
837
- this._a16 = 0;
838
- this._a00 = 0;
839
- } else if (n >= 16) {
840
- n -= 16;
841
- this._a48 = this._a32 << n | this._a16 >> 16 - n;
842
- this._a32 = (this._a16 << n | this._a00 >> 16 - n) & 65535;
843
- this._a16 = this._a00 << n & 65535;
844
- this._a00 = 0;
845
- } else {
846
- this._a48 = this._a48 << n | this._a32 >> 16 - n;
847
- this._a32 = (this._a32 << n | this._a16 >> 16 - n) & 65535;
848
- this._a16 = (this._a16 << n | this._a00 >> 16 - n) & 65535;
849
- this._a00 = this._a00 << n & 65535;
850
- }
851
- if (!allowOverflow) this._a48 &= 65535;
852
- return this;
853
- };
854
- /**
855
- * Bitwise rotate left
856
- * @method rotl
857
- * @param {Number} number of bits to rotate
858
- * @return ThisExpression
859
- */
860
- UINT64.prototype.rotateLeft = UINT64.prototype.rotl = function(n) {
861
- n %= 64;
862
- if (n == 0) return this;
863
- if (n >= 32) {
864
- var v = this._a00;
865
- this._a00 = this._a32;
866
- this._a32 = v;
867
- v = this._a48;
868
- this._a48 = this._a16;
869
- this._a16 = v;
870
- if (n == 32) return this;
871
- n -= 32;
872
- }
873
- var high = this._a48 << 16 | this._a32;
874
- var low = this._a16 << 16 | this._a00;
875
- var _high = high << n | low >>> 32 - n;
876
- var _low = low << n | high >>> 32 - n;
877
- this._a00 = _low & 65535;
878
- this._a16 = _low >>> 16;
879
- this._a32 = _high & 65535;
880
- this._a48 = _high >>> 16;
881
- return this;
882
- };
883
- /**
884
- * Bitwise rotate right
885
- * @method rotr
886
- * @param {Number} number of bits to rotate
887
- * @return ThisExpression
888
- */
889
- UINT64.prototype.rotateRight = UINT64.prototype.rotr = function(n) {
890
- n %= 64;
891
- if (n == 0) return this;
892
- if (n >= 32) {
893
- var v = this._a00;
894
- this._a00 = this._a32;
895
- this._a32 = v;
896
- v = this._a48;
897
- this._a48 = this._a16;
898
- this._a16 = v;
899
- if (n == 32) return this;
900
- n -= 32;
901
- }
902
- var high = this._a48 << 16 | this._a32;
903
- var low = this._a16 << 16 | this._a00;
904
- var _high = high >>> n | low << 32 - n;
905
- var _low = low >>> n | high << 32 - n;
906
- this._a00 = _low & 65535;
907
- this._a16 = _low >>> 16;
908
- this._a32 = _high & 65535;
909
- this._a48 = _high >>> 16;
910
- return this;
911
- };
912
- /**
913
- * Clone the current _UINT64_
914
- * @method clone
915
- * @return {Object} cloned UINT64
916
- */
917
- UINT64.prototype.clone = function() {
918
- return new UINT64(this._a00, this._a16, this._a32, this._a48);
919
- };
920
- if (typeof define != "undefined" && define.amd) define([], function() {
921
- return UINT64;
922
- });
923
- else if (typeof module != "undefined" && module.exports) module.exports = UINT64;
924
- else root["UINT64"] = UINT64;
925
- })(exports);
926
- }));
927
- //#endregion
928
- //#region node_modules/cuint/index.js
929
- var require_cuint = /* @__PURE__ */ __commonJSMin(((exports) => {
930
- exports.UINT32 = require_uint32();
931
- exports.UINT64 = require_uint64();
932
- }));
933
- //#endregion
934
- //#region node_modules/xxhashjs/lib/xxhash.js
935
- var require_xxhash = /* @__PURE__ */ __commonJSMin(((exports, module) => {
936
- /**
937
- xxHash implementation in pure Javascript
938
-
939
- Copyright (C) 2013, Pierre Curto
940
- MIT license
941
- */
942
- var UINT32 = require_cuint().UINT32;
943
- UINT32.prototype.xxh_update = function(low, high) {
944
- var b00 = PRIME32_2._low;
945
- var b16 = PRIME32_2._high;
946
- var c16, c00 = low * b00;
947
- c16 = c00 >>> 16;
948
- c16 += high * b00;
949
- c16 &= 65535;
950
- c16 += low * b16;
951
- var a00 = this._low + (c00 & 65535);
952
- var a16 = a00 >>> 16;
953
- a16 += this._high + (c16 & 65535);
954
- var v = a16 << 16 | a00 & 65535;
955
- v = v << 13 | v >>> 19;
956
- a00 = v & 65535;
957
- a16 = v >>> 16;
958
- b00 = PRIME32_1._low;
959
- b16 = PRIME32_1._high;
960
- c00 = a00 * b00;
961
- c16 = c00 >>> 16;
962
- c16 += a16 * b00;
963
- c16 &= 65535;
964
- c16 += a00 * b16;
965
- this._low = c00 & 65535;
966
- this._high = c16 & 65535;
967
- };
968
- var PRIME32_1 = UINT32("2654435761");
969
- var PRIME32_2 = UINT32("2246822519");
970
- var PRIME32_3 = UINT32("3266489917");
971
- var PRIME32_4 = UINT32("668265263");
972
- var PRIME32_5 = UINT32("374761393");
973
- /**
974
- * Convert string to proper UTF-8 array
975
- * @param str Input string
976
- * @returns {Uint8Array} UTF8 array is returned as uint8 array
977
- */
978
- function toUTF8Array(str) {
979
- var utf8 = [];
980
- for (var i = 0, n = str.length; i < n; i++) {
981
- var charcode = str.charCodeAt(i);
982
- if (charcode < 128) utf8.push(charcode);
983
- else if (charcode < 2048) utf8.push(192 | charcode >> 6, 128 | charcode & 63);
984
- else if (charcode < 55296 || charcode >= 57344) utf8.push(224 | charcode >> 12, 128 | charcode >> 6 & 63, 128 | charcode & 63);
985
- else {
986
- i++;
987
- charcode = 65536 + ((charcode & 1023) << 10 | str.charCodeAt(i) & 1023);
988
- utf8.push(240 | charcode >> 18, 128 | charcode >> 12 & 63, 128 | charcode >> 6 & 63, 128 | charcode & 63);
989
- }
990
- }
991
- return new Uint8Array(utf8);
992
- }
993
- /**
994
- * XXH object used as a constructor or a function
995
- * @constructor
996
- * or
997
- * @param {Object|String} input data
998
- * @param {Number|UINT32} seed
999
- * @return ThisExpression
1000
- * or
1001
- * @return {UINT32} xxHash
1002
- */
1003
- function XXH() {
1004
- if (arguments.length == 2) return new XXH(arguments[1]).update(arguments[0]).digest();
1005
- if (!(this instanceof XXH)) return new XXH(arguments[0]);
1006
- init.call(this, arguments[0]);
1007
- }
1008
- /**
1009
- * Initialize the XXH instance with the given seed
1010
- * @method init
1011
- * @param {Number|Object} seed as a number or an unsigned 32 bits integer
1012
- * @return ThisExpression
1013
- */
1014
- function init(seed) {
1015
- this.seed = seed instanceof UINT32 ? seed.clone() : UINT32(seed);
1016
- this.v1 = this.seed.clone().add(PRIME32_1).add(PRIME32_2);
1017
- this.v2 = this.seed.clone().add(PRIME32_2);
1018
- this.v3 = this.seed.clone();
1019
- this.v4 = this.seed.clone().subtract(PRIME32_1);
1020
- this.total_len = 0;
1021
- this.memsize = 0;
1022
- this.memory = null;
1023
- return this;
1024
- }
1025
- XXH.prototype.init = init;
1026
- /**
1027
- * Add data to be computed for the XXH hash
1028
- * @method update
1029
- * @param {String|Buffer|ArrayBuffer} input as a string or nodejs Buffer or ArrayBuffer
1030
- * @return ThisExpression
1031
- */
1032
- XXH.prototype.update = function(input) {
1033
- var isString = typeof input == "string";
1034
- var isArrayBuffer;
1035
- if (isString) {
1036
- input = toUTF8Array(input);
1037
- isString = false;
1038
- isArrayBuffer = true;
1039
- }
1040
- if (typeof ArrayBuffer !== "undefined" && input instanceof ArrayBuffer) {
1041
- isArrayBuffer = true;
1042
- input = new Uint8Array(input);
1043
- }
1044
- var p = 0;
1045
- var len = input.length;
1046
- var bEnd = p + len;
1047
- if (len == 0) return this;
1048
- this.total_len += len;
1049
- if (this.memsize == 0) if (isString) this.memory = "";
1050
- else if (isArrayBuffer) this.memory = new Uint8Array(16);
1051
- else this.memory = new Buffer(16);
1052
- if (this.memsize + len < 16) {
1053
- if (isString) this.memory += input;
1054
- else if (isArrayBuffer) this.memory.set(input.subarray(0, len), this.memsize);
1055
- else input.copy(this.memory, this.memsize, 0, len);
1056
- this.memsize += len;
1057
- return this;
1058
- }
1059
- if (this.memsize > 0) {
1060
- if (isString) this.memory += input.slice(0, 16 - this.memsize);
1061
- else if (isArrayBuffer) this.memory.set(input.subarray(0, 16 - this.memsize), this.memsize);
1062
- else input.copy(this.memory, this.memsize, 0, 16 - this.memsize);
1063
- var p32 = 0;
1064
- if (isString) {
1065
- this.v1.xxh_update(this.memory.charCodeAt(p32 + 1) << 8 | this.memory.charCodeAt(p32), this.memory.charCodeAt(p32 + 3) << 8 | this.memory.charCodeAt(p32 + 2));
1066
- p32 += 4;
1067
- this.v2.xxh_update(this.memory.charCodeAt(p32 + 1) << 8 | this.memory.charCodeAt(p32), this.memory.charCodeAt(p32 + 3) << 8 | this.memory.charCodeAt(p32 + 2));
1068
- p32 += 4;
1069
- this.v3.xxh_update(this.memory.charCodeAt(p32 + 1) << 8 | this.memory.charCodeAt(p32), this.memory.charCodeAt(p32 + 3) << 8 | this.memory.charCodeAt(p32 + 2));
1070
- p32 += 4;
1071
- this.v4.xxh_update(this.memory.charCodeAt(p32 + 1) << 8 | this.memory.charCodeAt(p32), this.memory.charCodeAt(p32 + 3) << 8 | this.memory.charCodeAt(p32 + 2));
1072
- } else {
1073
- this.v1.xxh_update(this.memory[p32 + 1] << 8 | this.memory[p32], this.memory[p32 + 3] << 8 | this.memory[p32 + 2]);
1074
- p32 += 4;
1075
- this.v2.xxh_update(this.memory[p32 + 1] << 8 | this.memory[p32], this.memory[p32 + 3] << 8 | this.memory[p32 + 2]);
1076
- p32 += 4;
1077
- this.v3.xxh_update(this.memory[p32 + 1] << 8 | this.memory[p32], this.memory[p32 + 3] << 8 | this.memory[p32 + 2]);
1078
- p32 += 4;
1079
- this.v4.xxh_update(this.memory[p32 + 1] << 8 | this.memory[p32], this.memory[p32 + 3] << 8 | this.memory[p32 + 2]);
1080
- }
1081
- p += 16 - this.memsize;
1082
- this.memsize = 0;
1083
- if (isString) this.memory = "";
3193
+ function f(t, e, n, r, i, a) {
3194
+ g(t);
3195
+ const o = new Uint8Array(t);
3196
+ return h.set(o), n(0, e), o.set(h.subarray(0, t)), {
3197
+ update(e) {
3198
+ let n;
3199
+ return h.set(o), "string" == typeof e ? (g(3 * e.length, t), n = w.encodeInto(e, h.subarray(t)).written) : (g(e.byteLength, t), h.set(e, t), n = e.byteLength), r(0, t, n), o.set(h.subarray(0, t)), this;
3200
+ },
3201
+ digest: () => (h.set(o), a(i(0)))
3202
+ };
1084
3203
  }
1085
- if (p <= bEnd - 16) {
1086
- var limit = bEnd - 16;
1087
- do {
1088
- if (isString) {
1089
- this.v1.xxh_update(input.charCodeAt(p + 1) << 8 | input.charCodeAt(p), input.charCodeAt(p + 3) << 8 | input.charCodeAt(p + 2));
1090
- p += 4;
1091
- this.v2.xxh_update(input.charCodeAt(p + 1) << 8 | input.charCodeAt(p), input.charCodeAt(p + 3) << 8 | input.charCodeAt(p + 2));
1092
- p += 4;
1093
- this.v3.xxh_update(input.charCodeAt(p + 1) << 8 | input.charCodeAt(p), input.charCodeAt(p + 3) << 8 | input.charCodeAt(p + 2));
1094
- p += 4;
1095
- this.v4.xxh_update(input.charCodeAt(p + 1) << 8 | input.charCodeAt(p), input.charCodeAt(p + 3) << 8 | input.charCodeAt(p + 2));
1096
- } else {
1097
- this.v1.xxh_update(input[p + 1] << 8 | input[p], input[p + 3] << 8 | input[p + 2]);
1098
- p += 4;
1099
- this.v2.xxh_update(input[p + 1] << 8 | input[p], input[p + 3] << 8 | input[p + 2]);
1100
- p += 4;
1101
- this.v3.xxh_update(input[p + 1] << 8 | input[p], input[p + 3] << 8 | input[p + 2]);
1102
- p += 4;
1103
- this.v4.xxh_update(input[p + 1] << 8 | input[p], input[p + 3] << 8 | input[p + 2]);
1104
- }
1105
- p += 4;
1106
- } while (p <= limit);
3204
+ function y(t) {
3205
+ return t >>> 0;
1107
3206
  }
1108
- if (p < bEnd) {
1109
- if (isString) this.memory += input.slice(p);
1110
- else if (isArrayBuffer) this.memory.set(input.subarray(p, bEnd), this.memsize);
1111
- else input.copy(this.memory, this.memsize, p, bEnd);
1112
- this.memsize = bEnd - p;
3207
+ const b = 2n ** 64n - 1n;
3208
+ function d(t) {
3209
+ return t & b;
1113
3210
  }
1114
- return this;
1115
- };
1116
- /**
1117
- * Finalize the XXH computation. The XXH instance is ready for reuse for the given seed
1118
- * @method digest
1119
- * @return {UINT32} xxHash
1120
- */
1121
- XXH.prototype.digest = function() {
1122
- var input = this.memory;
1123
- var isString = typeof input == "string";
1124
- var p = 0;
1125
- var bEnd = this.memsize;
1126
- var h32, h;
1127
- var u = new UINT32();
1128
- if (this.total_len >= 16) h32 = this.v1.rotl(1).add(this.v2.rotl(7).add(this.v3.rotl(12).add(this.v4.rotl(18))));
1129
- else h32 = this.seed.clone().add(PRIME32_5);
1130
- h32.add(u.fromNumber(this.total_len));
1131
- while (p <= bEnd - 4) {
1132
- if (isString) u.fromBits(input.charCodeAt(p + 1) << 8 | input.charCodeAt(p), input.charCodeAt(p + 3) << 8 | input.charCodeAt(p + 2));
1133
- else u.fromBits(input[p + 1] << 8 | input[p], input[p + 3] << 8 | input[p + 2]);
1134
- h32.add(u.multiply(PRIME32_3)).rotl(17).multiply(PRIME32_4);
1135
- p += 4;
3211
+ const w = new TextEncoder(), l = 0, p = 0n;
3212
+ function x(t, e = l) {
3213
+ return g(3 * t.length, 0), y(n(0, w.encodeInto(t, h).written, e));
1136
3214
  }
1137
- while (p < bEnd) {
1138
- u.fromBits(isString ? input.charCodeAt(p++) : input[p++], 0);
1139
- h32.add(u.multiply(PRIME32_5)).rotl(11).multiply(PRIME32_1);
3215
+ function L(t, e = p) {
3216
+ return g(3 * t.length, 0), d(r(0, w.encodeInto(t, h).written, e));
1140
3217
  }
1141
- h = h32.clone().shiftRight(15);
1142
- h32.xor(h).multiply(PRIME32_2);
1143
- h = h32.clone().shiftRight(13);
1144
- h32.xor(h).multiply(PRIME32_3);
1145
- h = h32.clone().shiftRight(16);
1146
- h32.xor(h);
1147
- this.init(this.seed);
1148
- return h32;
1149
- };
1150
- module.exports = XXH;
1151
- }));
3218
+ return {
3219
+ h32: x,
3220
+ h32ToString: (t, e = l) => x(t, e).toString(16).padStart(8, "0"),
3221
+ h32Raw: (t, e = l) => (g(t.byteLength, 0), h.set(t), y(n(0, t.byteLength, e))),
3222
+ create32: (t = l) => f(48, t, i, a, o, y),
3223
+ h64: L,
3224
+ h64ToString: (t, e = p) => L(t, e).toString(16).padStart(16, "0"),
3225
+ h64Raw: (t, e = p) => (g(t.byteLength, 0), h.set(t), d(r(0, t.byteLength, e))),
3226
+ create64: (t = p) => f(88, t, s, u, c, d)
3227
+ };
3228
+ }((await WebAssembly.instantiate(t)).instance);
3229
+ }
1152
3230
  //#endregion
1153
- //#region node_modules/xxhashjs/lib/xxhash64.js
1154
- var require_xxhash64 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
1155
- /**
1156
- xxHash64 implementation in pure Javascript
1157
-
1158
- Copyright (C) 2016, Pierre Curto
1159
- MIT license
1160
- */
1161
- var UINT64 = require_cuint().UINT64;
1162
- var PRIME64_1 = UINT64("11400714785074694791");
1163
- var PRIME64_2 = UINT64("14029467366897019727");
1164
- var PRIME64_3 = UINT64("1609587929392839161");
1165
- var PRIME64_4 = UINT64("9650029242287828579");
1166
- var PRIME64_5 = UINT64("2870177450012600261");
1167
- /**
1168
- * Convert string to proper UTF-8 array
1169
- * @param str Input string
1170
- * @returns {Uint8Array} UTF8 array is returned as uint8 array
1171
- */
1172
- function toUTF8Array(str) {
1173
- var utf8 = [];
1174
- for (var i = 0, n = str.length; i < n; i++) {
1175
- var charcode = str.charCodeAt(i);
1176
- if (charcode < 128) utf8.push(charcode);
1177
- else if (charcode < 2048) utf8.push(192 | charcode >> 6, 128 | charcode & 63);
1178
- else if (charcode < 55296 || charcode >= 57344) utf8.push(224 | charcode >> 12, 128 | charcode >> 6 & 63, 128 | charcode & 63);
1179
- else {
1180
- i++;
1181
- charcode = 65536 + ((charcode & 1023) << 10 | str.charCodeAt(i) & 1023);
1182
- utf8.push(240 | charcode >> 18, 128 | charcode >> 12 & 63, 128 | charcode >> 6 & 63, 128 | charcode & 63);
1183
- }
1184
- }
1185
- return new Uint8Array(utf8);
1186
- }
1187
- /**
1188
- * XXH64 object used as a constructor or a function
1189
- * @constructor
1190
- * or
1191
- * @param {Object|String} input data
1192
- * @param {Number|UINT64} seed
1193
- * @return ThisExpression
1194
- * or
1195
- * @return {UINT64} xxHash
1196
- */
1197
- function XXH64() {
1198
- if (arguments.length == 2) return new XXH64(arguments[1]).update(arguments[0]).digest();
1199
- if (!(this instanceof XXH64)) return new XXH64(arguments[0]);
1200
- init.call(this, arguments[0]);
1201
- }
1202
- /**
1203
- * Initialize the XXH64 instance with the given seed
1204
- * @method init
1205
- * @param {Number|Object} seed as a number or an unsigned 32 bits integer
1206
- * @return ThisExpression
1207
- */
1208
- function init(seed) {
1209
- this.seed = seed instanceof UINT64 ? seed.clone() : UINT64(seed);
1210
- this.v1 = this.seed.clone().add(PRIME64_1).add(PRIME64_2);
1211
- this.v2 = this.seed.clone().add(PRIME64_2);
1212
- this.v3 = this.seed.clone();
1213
- this.v4 = this.seed.clone().subtract(PRIME64_1);
1214
- this.total_len = 0;
1215
- this.memsize = 0;
1216
- this.memory = null;
1217
- return this;
1218
- }
1219
- XXH64.prototype.init = init;
1220
- /**
1221
- * Add data to be computed for the XXH64 hash
1222
- * @method update
1223
- * @param {String|Buffer|ArrayBuffer} input as a string or nodejs Buffer or ArrayBuffer
1224
- * @return ThisExpression
1225
- */
1226
- XXH64.prototype.update = function(input) {
1227
- var isString = typeof input == "string";
1228
- var isArrayBuffer;
1229
- if (isString) {
1230
- input = toUTF8Array(input);
1231
- isString = false;
1232
- isArrayBuffer = true;
1233
- }
1234
- if (typeof ArrayBuffer !== "undefined" && input instanceof ArrayBuffer) {
1235
- isArrayBuffer = true;
1236
- input = new Uint8Array(input);
1237
- }
1238
- var p = 0;
1239
- var len = input.length;
1240
- var bEnd = p + len;
1241
- if (len == 0) return this;
1242
- this.total_len += len;
1243
- if (this.memsize == 0) if (isString) this.memory = "";
1244
- else if (isArrayBuffer) this.memory = new Uint8Array(32);
1245
- else this.memory = new Buffer(32);
1246
- if (this.memsize + len < 32) {
1247
- if (isString) this.memory += input;
1248
- else if (isArrayBuffer) this.memory.set(input.subarray(0, len), this.memsize);
1249
- else input.copy(this.memory, this.memsize, 0, len);
1250
- this.memsize += len;
1251
- return this;
1252
- }
1253
- if (this.memsize > 0) {
1254
- if (isString) this.memory += input.slice(0, 32 - this.memsize);
1255
- else if (isArrayBuffer) this.memory.set(input.subarray(0, 32 - this.memsize), this.memsize);
1256
- else input.copy(this.memory, this.memsize, 0, 32 - this.memsize);
1257
- var p64 = 0;
1258
- if (isString) {
1259
- var other = UINT64(this.memory.charCodeAt(p64 + 1) << 8 | this.memory.charCodeAt(p64), this.memory.charCodeAt(p64 + 3) << 8 | this.memory.charCodeAt(p64 + 2), this.memory.charCodeAt(p64 + 5) << 8 | this.memory.charCodeAt(p64 + 4), this.memory.charCodeAt(p64 + 7) << 8 | this.memory.charCodeAt(p64 + 6));
1260
- this.v1.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1261
- p64 += 8;
1262
- other = UINT64(this.memory.charCodeAt(p64 + 1) << 8 | this.memory.charCodeAt(p64), this.memory.charCodeAt(p64 + 3) << 8 | this.memory.charCodeAt(p64 + 2), this.memory.charCodeAt(p64 + 5) << 8 | this.memory.charCodeAt(p64 + 4), this.memory.charCodeAt(p64 + 7) << 8 | this.memory.charCodeAt(p64 + 6));
1263
- this.v2.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1264
- p64 += 8;
1265
- other = UINT64(this.memory.charCodeAt(p64 + 1) << 8 | this.memory.charCodeAt(p64), this.memory.charCodeAt(p64 + 3) << 8 | this.memory.charCodeAt(p64 + 2), this.memory.charCodeAt(p64 + 5) << 8 | this.memory.charCodeAt(p64 + 4), this.memory.charCodeAt(p64 + 7) << 8 | this.memory.charCodeAt(p64 + 6));
1266
- this.v3.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1267
- p64 += 8;
1268
- other = UINT64(this.memory.charCodeAt(p64 + 1) << 8 | this.memory.charCodeAt(p64), this.memory.charCodeAt(p64 + 3) << 8 | this.memory.charCodeAt(p64 + 2), this.memory.charCodeAt(p64 + 5) << 8 | this.memory.charCodeAt(p64 + 4), this.memory.charCodeAt(p64 + 7) << 8 | this.memory.charCodeAt(p64 + 6));
1269
- this.v4.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1270
- } else {
1271
- var other = UINT64(this.memory[p64 + 1] << 8 | this.memory[p64], this.memory[p64 + 3] << 8 | this.memory[p64 + 2], this.memory[p64 + 5] << 8 | this.memory[p64 + 4], this.memory[p64 + 7] << 8 | this.memory[p64 + 6]);
1272
- this.v1.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1273
- p64 += 8;
1274
- other = UINT64(this.memory[p64 + 1] << 8 | this.memory[p64], this.memory[p64 + 3] << 8 | this.memory[p64 + 2], this.memory[p64 + 5] << 8 | this.memory[p64 + 4], this.memory[p64 + 7] << 8 | this.memory[p64 + 6]);
1275
- this.v2.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1276
- p64 += 8;
1277
- other = UINT64(this.memory[p64 + 1] << 8 | this.memory[p64], this.memory[p64 + 3] << 8 | this.memory[p64 + 2], this.memory[p64 + 5] << 8 | this.memory[p64 + 4], this.memory[p64 + 7] << 8 | this.memory[p64 + 6]);
1278
- this.v3.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1279
- p64 += 8;
1280
- other = UINT64(this.memory[p64 + 1] << 8 | this.memory[p64], this.memory[p64 + 3] << 8 | this.memory[p64 + 2], this.memory[p64 + 5] << 8 | this.memory[p64 + 4], this.memory[p64 + 7] << 8 | this.memory[p64 + 6]);
1281
- this.v4.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1282
- }
1283
- p += 32 - this.memsize;
1284
- this.memsize = 0;
1285
- if (isString) this.memory = "";
1286
- }
1287
- if (p <= bEnd - 32) {
1288
- var limit = bEnd - 32;
1289
- do {
1290
- if (isString) {
1291
- var other = UINT64(input.charCodeAt(p + 1) << 8 | input.charCodeAt(p), input.charCodeAt(p + 3) << 8 | input.charCodeAt(p + 2), input.charCodeAt(p + 5) << 8 | input.charCodeAt(p + 4), input.charCodeAt(p + 7) << 8 | input.charCodeAt(p + 6));
1292
- this.v1.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1293
- p += 8;
1294
- other = UINT64(input.charCodeAt(p + 1) << 8 | input.charCodeAt(p), input.charCodeAt(p + 3) << 8 | input.charCodeAt(p + 2), input.charCodeAt(p + 5) << 8 | input.charCodeAt(p + 4), input.charCodeAt(p + 7) << 8 | input.charCodeAt(p + 6));
1295
- this.v2.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1296
- p += 8;
1297
- other = UINT64(input.charCodeAt(p + 1) << 8 | input.charCodeAt(p), input.charCodeAt(p + 3) << 8 | input.charCodeAt(p + 2), input.charCodeAt(p + 5) << 8 | input.charCodeAt(p + 4), input.charCodeAt(p + 7) << 8 | input.charCodeAt(p + 6));
1298
- this.v3.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1299
- p += 8;
1300
- other = UINT64(input.charCodeAt(p + 1) << 8 | input.charCodeAt(p), input.charCodeAt(p + 3) << 8 | input.charCodeAt(p + 2), input.charCodeAt(p + 5) << 8 | input.charCodeAt(p + 4), input.charCodeAt(p + 7) << 8 | input.charCodeAt(p + 6));
1301
- this.v4.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1302
- } else {
1303
- var other = UINT64(input[p + 1] << 8 | input[p], input[p + 3] << 8 | input[p + 2], input[p + 5] << 8 | input[p + 4], input[p + 7] << 8 | input[p + 6]);
1304
- this.v1.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1305
- p += 8;
1306
- other = UINT64(input[p + 1] << 8 | input[p], input[p + 3] << 8 | input[p + 2], input[p + 5] << 8 | input[p + 4], input[p + 7] << 8 | input[p + 6]);
1307
- this.v2.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1308
- p += 8;
1309
- other = UINT64(input[p + 1] << 8 | input[p], input[p + 3] << 8 | input[p + 2], input[p + 5] << 8 | input[p + 4], input[p + 7] << 8 | input[p + 6]);
1310
- this.v3.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1311
- p += 8;
1312
- other = UINT64(input[p + 1] << 8 | input[p], input[p + 3] << 8 | input[p + 2], input[p + 5] << 8 | input[p + 4], input[p + 7] << 8 | input[p + 6]);
1313
- this.v4.add(other.multiply(PRIME64_2)).rotl(31).multiply(PRIME64_1);
1314
- }
1315
- p += 8;
1316
- } while (p <= limit);
1317
- }
1318
- if (p < bEnd) {
1319
- if (isString) this.memory += input.slice(p);
1320
- else if (isArrayBuffer) this.memory.set(input.subarray(p, bEnd), this.memsize);
1321
- else input.copy(this.memory, this.memsize, p, bEnd);
1322
- this.memsize = bEnd - p;
1323
- }
1324
- return this;
3231
+ //#region src/fhir-utils/hashUtils.ts
3232
+ var import___vite_browser_external = (/* @__PURE__ */ __commonJSMin(((exports, module) => {
3233
+ module.exports = {};
3234
+ })))();
3235
+ var HashUtils = class HashUtils {
3236
+ static instance;
3237
+ HASH_SEED = 43981n;
3238
+ h64;
3239
+ static getInstance() {
3240
+ if (!HashUtils.instance) HashUtils.instance = new HashUtils();
3241
+ return HashUtils.instance;
3242
+ }
3243
+ constructor() {}
3244
+ normalizeStringParam = (input) => {
3245
+ return input.trim().replace(/\s+/g, " ").toLowerCase();
1325
3246
  };
1326
- /**
1327
- * Finalize the XXH64 computation. The XXH64 instance is ready for reuse for the given seed
1328
- * @method digest
1329
- * @return {UINT64} xxHash
1330
- */
1331
- XXH64.prototype.digest = function() {
1332
- var input = this.memory;
1333
- var isString = typeof input == "string";
1334
- var p = 0;
1335
- var bEnd = this.memsize;
1336
- var h64, h;
1337
- var u = new UINT64();
1338
- if (this.total_len >= 32) {
1339
- h64 = this.v1.clone().rotl(1);
1340
- h64.add(this.v2.clone().rotl(7));
1341
- h64.add(this.v3.clone().rotl(12));
1342
- h64.add(this.v4.clone().rotl(18));
1343
- h64.xor(this.v1.multiply(PRIME64_2).rotl(31).multiply(PRIME64_1));
1344
- h64.multiply(PRIME64_1).add(PRIME64_4);
1345
- h64.xor(this.v2.multiply(PRIME64_2).rotl(31).multiply(PRIME64_1));
1346
- h64.multiply(PRIME64_1).add(PRIME64_4);
1347
- h64.xor(this.v3.multiply(PRIME64_2).rotl(31).multiply(PRIME64_1));
1348
- h64.multiply(PRIME64_1).add(PRIME64_4);
1349
- h64.xor(this.v4.multiply(PRIME64_2).rotl(31).multiply(PRIME64_1));
1350
- h64.multiply(PRIME64_1).add(PRIME64_4);
1351
- } else h64 = this.seed.clone().add(PRIME64_5);
1352
- h64.add(u.fromNumber(this.total_len));
1353
- while (p <= bEnd - 8) {
1354
- if (isString) u.fromBits(input.charCodeAt(p + 1) << 8 | input.charCodeAt(p), input.charCodeAt(p + 3) << 8 | input.charCodeAt(p + 2), input.charCodeAt(p + 5) << 8 | input.charCodeAt(p + 4), input.charCodeAt(p + 7) << 8 | input.charCodeAt(p + 6));
1355
- else u.fromBits(input[p + 1] << 8 | input[p], input[p + 3] << 8 | input[p + 2], input[p + 5] << 8 | input[p + 4], input[p + 7] << 8 | input[p + 6]);
1356
- u.multiply(PRIME64_2).rotl(31).multiply(PRIME64_1);
1357
- h64.xor(u).rotl(27).multiply(PRIME64_1).add(PRIME64_4);
1358
- p += 8;
1359
- }
1360
- if (p + 4 <= bEnd) {
1361
- if (isString) u.fromBits(input.charCodeAt(p + 1) << 8 | input.charCodeAt(p), input.charCodeAt(p + 3) << 8 | input.charCodeAt(p + 2), 0, 0);
1362
- else u.fromBits(input[p + 1] << 8 | input[p], input[p + 3] << 8 | input[p + 2], 0, 0);
1363
- h64.xor(u.multiply(PRIME64_1)).rotl(23).multiply(PRIME64_2).add(PRIME64_3);
1364
- p += 4;
1365
- }
1366
- while (p < bEnd) {
1367
- u.fromBits(isString ? input.charCodeAt(p++) : input[p++], 0, 0, 0);
1368
- h64.xor(u.multiply(PRIME64_5)).rotl(11).multiply(PRIME64_1);
1369
- }
1370
- h = h64.clone().shiftRight(33);
1371
- h64.xor(h).multiply(PRIME64_2);
1372
- h = h64.clone().shiftRight(29);
1373
- h64.xor(h).multiply(PRIME64_3);
1374
- h = h64.clone().shiftRight(32);
1375
- h64.xor(h);
1376
- this.init(this.seed);
1377
- return h64;
3247
+ InitHash = async () => {
3248
+ this.h64 = (await e()).h64;
1378
3249
  };
1379
- module.exports = XXH64;
1380
- }));
3250
+ xxhash64Signed(input) {
3251
+ if (this.h64) return BigInt.asIntN(64, this.h64(input, this.HASH_SEED));
3252
+ throw (0, import___vite_browser_external.error)(`h64 not initialized`);
3253
+ }
3254
+ hashStringParam(input, normalize) {
3255
+ if (normalize === true) {
3256
+ const normalized = this.normalizeStringParam(input);
3257
+ return this.xxhash64Signed(normalized);
3258
+ } else return this.xxhash64Signed(input);
3259
+ }
3260
+ hashTokenParam({ system, code }) {
3261
+ const combined = (system ?? "") + "|" + code;
3262
+ return this.xxhash64Signed(combined);
3263
+ }
3264
+ hashReferenceParam(reference) {
3265
+ return this.xxhash64Signed(reference);
3266
+ }
3267
+ hashUriParam(uri, lowercase = false) {
3268
+ return this.xxhash64Signed(lowercase ? uri.toLowerCase() : uri);
3269
+ }
3270
+ };
1381
3271
  //#endregion
1382
3272
  //#region src/fhir-utils/fhirHashUtils.ts
1383
- var import_lib = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
1384
- module.exports = {
1385
- h32: require_xxhash(),
1386
- h64: require_xxhash64()
1387
- };
1388
- })))(), 1);
3273
+ HashUtils.getInstance().InitHash();
3274
+ var HASH_SEED = 43981n;
1389
3275
  /**
1390
3276
  * Normalize string values similar to HAPI FHIR (trim, collapse whitespace, lowercase)
1391
3277
  */
1392
3278
  function normalizeStringParam(input) {
1393
3279
  return input.trim().replace(/\s+/g, " ").toLowerCase();
1394
3280
  }
3281
+ var h64;
3282
+ async function initHash() {
3283
+ h64 = (await e()).h64;
3284
+ }
1395
3285
  function xxhash64Signed(input) {
1396
- const hashHex = import_lib.default.h64(input, 43981).toString(16).padStart(16, "0");
1397
- return Buffer.from(hashHex, "hex").readBigInt64BE(0);
3286
+ return BigInt.asIntN(64, h64(input, HASH_SEED));
1398
3287
  }
1399
3288
  /**
1400
3289
  * Converts first 64 bits of MurmurHash3_x64_128 result into signed BigInt
@@ -1403,8 +3292,7 @@ function xxhash64Signed(input) {
1403
3292
  * Compute hash for a normalized string search parameter
1404
3293
  */
1405
3294
  function hashStringParam(input, normalize) {
1406
- if (normalize === true) return xxhash64Signed(normalizeStringParam(input));
1407
- else return xxhash64Signed(input);
3295
+ return HashUtils.getInstance().hashStringParam(input, normalize);
1408
3296
  }
1409
3297
  /**
1410
3298
  * Compute hash for a token search parameter (system|code)
@@ -4529,6 +6417,6 @@ var PGFhirAccessLayer = class extends TinyEmitter {
4529
6417
  };
4530
6418
  };
4531
6419
  //#endregion
4532
- export { DBSearchIndex, FHIRDateUtils, PGFhirAccessLayer, ResourceHelper, hashReferenceParam, hashStringParam, hashTokenParam, hashUriParam, normalizeStringParam, xxhash64Signed };
6420
+ export { DBSearchIndex, FHIRDateUtils, PGFhirAccessLayer, ResourceHelper, hashReferenceParam, hashStringParam, hashTokenParam, hashUriParam, initHash, normalizeStringParam, xxhash64Signed };
4533
6421
 
4534
6422
  //# sourceMappingURL=index.mjs.map