This repository was archived by the owner on Jun 8, 2026. It is now read-only.
forked from iancoleman/blsttc_ui
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbls-sdk.html
More file actions
4726 lines (4455 loc) · 307 KB
/
Copy pathbls-sdk.html
File metadata and controls
4726 lines (4455 loc) · 307 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>BLS - Threshold Crypto</title>
<link rel="stylesheet" href="css/app.css">
<meta content="BLS threshold crypto interface" name="description"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="Ian Coleman" name="author" />
<link type="image/x-icon" rel="icon" href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQEAYAAABPYyMiAAAABmJLR0T///////8JWPfcAAAACXBIWXMAAABIAAAASABGyWs+AAAAF0lEQVRIx2NgGAWjYBSMglEwCkbBSAcACBAAAeaR9cIAAAAASUVORK5CYII=" />
</head>
<body>
<p class="version">v0.3.1</p>
<h1>BLS Threshold Crypto</h1>
<p>
Interface for rust library
<a href="https://github.com/poanetwork/threshold_crypto">threshold_crypto</a>.
Read more about this tool in the
<a href="#info">info section</a>.
</p>
<p>
This tool was created to be interoperable with SAFE Network
<a href="https://github.com/maidsafe/safe-api">safe-api</a>
and
<a href="https://github.com/maidsafe/safe-vault">safe-vault</a>.
</p>
<h1 class="text-red">WARNING: PROTOTYPE</h1>
<p class="text-red">
This is a prototype tool and will definitely change in incompatible ways
in the future.
</p>
<p class="text-red">
Do not ever use this tool for anything.
</p>
<hr>
<div id="encoding">
<p id="binary">
Encoding for binary data:
<div class="option">
<input type="radio" name="binary-encoding" id="binary-hex" value="hex" checked>
<label for="binary-hex">hex</label>
</div>
<div class="option">
<input type="radio" name="binary-encoding" id="binary-bytes" value="bytes">
<label for="binary-bytes">bytes</label>
</div>
</p>
<p id="message">
Encoding for messages:
<div class="option">
<input type="radio" name="message-encoding" id="message-ascii" value="ascii" checked>
<label for="message-ascii">ascii</label>
</div>
<div class="option">
<input type="radio" name="message-encoding" id="message-hex" value="hex">
<label for="message-hex">hex</label>
</div>
<div class="option">
<input type="radio" name="message-encoding" id="message-bytes" value="bytes">
<label for="message-bytes">bytes</label>
</div>
</p>
</div>
<hr>
<div id="sk-to-pk">
<h2>Derive Public Key From Secret Key</h2>
<p>
Input: Secret Key,
32 bytes or 64 hex chars, or
<button class="generate">generate</button> a random key.
</p>
<input type="text" class="sk" placeholder="eg 7b4ecc..." data-encoding-type="binary">
<p>Output: Public Key Hex, 48 bytes or 96 hex chars.</p>
<input type="text" class="pk" placeholder="eg a32fc9..." data-encoding-type="binary">
<p class="error text-red hidden"></p>
</div>
<hr>
<div id="sign-msg">
<h2>Sign Message</h2>
<p>
Input: Secret Key.
32 bytes or 64 hex chars.
</p>
<input type="text" class="sk" placeholder="eg 7b4ecc..." data-encoding-type="binary">
<p>
Input: Message.
Copy and Paste from a text editor rather than typing manually is
recommended here.
</p>
<input type="text" class="msg" placeholder="eg This is my message" data-encoding-type="message">
<p>
Output: The signature for this message will appear here, 96 bytes ie
192 hex chars.
</p>
<input type="text" class="sig" placeholder="Signature will appear here." data-encoding-type="binary">
<p class="error text-red hidden"></p>
<hr>
<div id="verify">
<h2>Verify Signature</h2>
<p>Input: Public Key, 48 bytes or 96 hex chars.</p>
<input type="text" class="pk" placeholder="eg a32fc9..." data-encoding-type="binary">
<p>
Input: Message.
Copy and Paste from a text editor rather than typing manually is
recommended here.
</p>
<input type="text" class="msg" placeholder="eg This is my message" data-encoding-type="message">
<p>
Input: The signature for this message.
</p>
<input type="text" class="sig" placeholder="eg 8ad3c2..." data-encoding-type="binary">
<p>
Output: Whether the signature is valid or not.
</p>
<input type="text" class="valid" placeholder="Will show 'valid' or 'invalid'">
<p class="error text-red hidden"></p>
</div>
<hr>
<div id="encrypt">
<h2>Encrypt Message</h2>
<p>Input: Recipient Public Key, 48 bytes or 96 hex chars.</p>
<input type="text" class="pk" placeholder="eg a32fc9..." data-encoding-type="binary">
<p>
Input: Message.
Copy and Paste from a text editor rather than typing manually is
recommended here.
</p>
<input type="text" class="msg" placeholder="eg This is my message" data-encoding-type="message">
<p>
Output: The encrypted version of this message for sending to the
recipient.
</p>
<input type="text" class="ct" placeholder="Encrypted message will appear here." data-encoding-type="binary">
<p class="error text-red hidden"></p>
</div>
<hr>
<div id="decrypt">
<h2>Decrypt Message</h2>
<p>
Input: Secret Key.
32 bytes or 64 hex chars.
</p>
<input type="text" class="sk" placeholder="eg 7b4ecc..." data-encoding-type="binary">
<p>
Input: The encrypted message.
</p>
<input type="text" class="ct" placeholder="eg 82a99b..." data-encoding-type="binary">
<p>
Output: The decrypted message.
</p>
<input type="text" class="msg" placeholder="eg This is my message" data-encoding-type="message">
<p class="error text-red hidden"></p>
</div>
<hr>
<div id="simple-threshold-keys">
<h2>Simple Threshold Keys</h2>
<p>
This type of key generation is useful when one person is in control
of all aspects of the keys, eg a multisig wallet.
</p>
<p>
Input: Poly Hex (as per bincode serialization), or
<button class="generate">generate</button> a random poly needing at
least
<input class="m" value="3" type="number" min="2" max="10">
keys to sign or decrypt a message
(this is the m in m-of-n). Minimum 2, maximum 10. Make a secure backup
of poly if you want to derive key shares in the future.
</p>
<input type="text" class="poly-hex" placeholder="eg 7b4ecc...">
<p>
Output: Master Secret Key Hex, 48 bytes ie 96 hex chars.
Never used for anything and should never be shared, just shown here
for information.
</p>
<input type="text" class="msk-hex" placeholder="eg 39f3bb0...">
<p>
Output: Master Public Key Hex, 48 bytes ie 96 hex chars.
This is used to verify a combined signature.
A group of people will each individually sign a message, then those
signatures will be aggregated to produce a combined signature which
can be verified with this master public key.
</p>
<input type="text" class="mpk-hex" placeholder="eg a32fc9...">
<p>
Output: Master Commitment Hex.
This is the basis of the Master Public Key and is needed for
combining signature or decryption shares.
</p>
<input type="text" class="mc-hex" placeholder="eg b43a04...">
<p>
Show
<input class="total-keys" value="7" type="number" min="2" max="10">
key shares (this is the n in m-of-n).
</p>
<p>
Output: Secret Key Shares.
Each line is a secret key.
</p>
<textarea class="skset"></textarea>
<p>
Output: Public Key Shares.
Each line is the public key corresponding to the secret key on each
line above.
</p>
<textarea class="pkset"></textarea>
<p class="error text-red hidden"></p>
</div>
<hr>
<div id="dkg-keys">
<h2>Distributed Key Generation (DKG)</h2>
<p>
A way to generate a group public key by coordinated action rather
than a
trusted dealer.
</p>
<p>This is how
a group of untrusted nodes
(eg elders in a section on the SAFE network)
can form a group key without giving away
any individual secrets or trusting any individual participant.
</p>
<p>
Some details are not included (such as handling faulty nodes or
the encryption of shares) but they can be seen in the
<a href="https://github.com/maidsafe/BLS-DKG">
BLS-DKG</a>
crate which this example is based on, as well as
<a href="https://github.com/dashpay/dips/blob/master/dip-0006/bls_m-of-n_threshold_scheme_and_dkg.md#distributed-key-generation-dkg-protocol">
DIP-0006</a>
which BLS-DKG is based on.
There is also
<a href="https://github.com/poanetwork/threshold_crypto/blob/d81953b55d181311c2a4eed2b6c34059fcf3fdae/src/poly.rs#L967">
an example of DKG</a>
in the threshold_crypto crate.
</p>
<p>
Input: Shares Matrix -
<button class="generate">Generate</button>
a group of
<input class="total-nodes" type="number" min="3" max="10" value="4">
nodes with at least
<input class="m" type="number" min="2" max="10" value="2">
nodes required to sign or decrypt messages (maximum 10 nodes).
</p>
<p class="error text-red hidden"></p>
<p>
Output: The group master public key used for encrypting and verifying
messages. This is generated in Step 5, shown below the table, but is
shown here because it's known by all participants.
</p>
<input type="text" class="mpk-hex" placeholder="eg a32fc9...">
<p>
Output: The group master commitment used when decrypting and signing
messages. This is generated in Step 5, shown below the table, but is
shown here because it's known by all participants.
</p>
<input type="text" class="mc-hex" placeholder="eg b43ad0...">
<p>
Hover on a cell, the details of the relevant shares will
display below the table.
</p>
<p>
Click a cell to retain the details while scrolling, click again to
unlock.
</p>
<p>
Cell F3T2 should be read as
"Share sent
<b>F</b>rom node <b>3</b>
<b>T</b>o node <b>2</b>".
</p>
<p>
Every node is responsible for
generating
their row of shares in the table, and
combining
their column of received shares.
</p>
<table class="shares"><tbody>
<!-- populated by javascript depending on number of nodes -->
<tr>
<td>F1T1</td><td>F1T2</td><td>F1T3</td><td>F1T4</td>
</tr>
<tr>
<td>F2T1</td><td>F2T2</td><td>F2T3</td><td>F2T4</td>
</tr>
<tr>
<td>F3T1</td><td>F3T2</td><td>F3T3</td><td>F3T4</td>
</tr>
<tr>
<td>F4T1</td><td>F4T2</td><td>F4T3</td><td>F4T4</td>
</tr>
</tbody></table>
<p>
Step 1: All nodes generate their own unique secret (called a
BivarPoly).
This is used to derive the list of shares for
the other nodes, shown in Step 2.
</p>
<p>
The value shown below is the public portion of node
<span class="sender-id">0</span>'s BivarPoly.
The public portion is shared to all nodes and combined into
the group master public key in Step 5.
</p>
<input type="text" class="share-creation">
<p>
Step 2: Listed below are shares node
<span class="sender-id">0</span>
will <b>send</b> to every other node.
Only node
<span class="sender-id">0</span>
has this list of shares.
</p>
<p>
These are derived from the secret in Step 1 that only node
<span class="sender-id">0</span>
knows.
</p>
<p>
Even though only one row is currently highlighted, all rows
contribute to the DKG process.
</p>
<div class="shares-created" contenteditable="true"></div>
<p>
Step 3: Listed below are shares node
<span class="receiver-id">0</span>
will <b>receive</b> from every other node.
Only node
<span class="receiver-id">0</span>
has this list of shares.
</p>
<p>
These are used by node
<span class="receiver-id">0</span>
to generate their secret key share, shown in Step 4.
</p>
<p>
Even though only one column is currently highlighted, all columns
contribute to the DKG process.
</p>
<div class="shares-received" contenteditable="true"></div>
<p>
Step 4: Secret Key Share for node
<span class="receiver-id">0</span>.
32 bytes ie 64 hex chars.
This is created by combining the shares received by node
<span class="receiver-id">0</span>
in Step 3.
</p>
<input type="text" class="skshare-hex" placeholder="eg 9bb286...">
<p>
Step 4b: Public Key Share for node
<span class="receiver-id">0</span>.
This is derived from the secret key in Step 4.
</p>
<input type="text" class="pkshare-hex" placeholder="eg 209a48...">
<p>
Step 5: The group master public key can be derived by any node by
combining all the public portions of the BivarPolys (see Step 1
above and Bonus #2 below). The group master public key is shown
above the table.
</p>
<p>
Bonus #1: The complete list of Secret Key Shares is shown below. This
would never be seen in real life since each node derives their own
secret key from information sent to it by other nodes (see Step 4).
But it's handy to have this list here for using elsewhere in this tool.
</p>
<textarea class="all-skshares"></textarea>
<p>
Bonus #2: The complete list of Public Key Shares is shown below.
</p>
<textarea class="all-pkshares"></textarea>
<p>
Bonus #3: The complete list of BivarPoly public portions
- ie <code>BivarPoly.commitment()</code> -
is shown below. This list is known by all nodes, and can be combined to
generate the group master commitment and group master public key
(both shown above the table).
</p>
<textarea class="all-share-creations"></textarea>
<p>
Bonus #4: The Master Secret Key Poly is shown below. This would
never be seen in real life since no node has all the secrets needed
to generate it.
But it's handy for using elsewhere in this tool,
such as the input for Simple Threshold Keys.
</p>
<input type="text" class="msk-poly-hex">
</div>
<hr>
<div id="thresh-sig">
<h2>Sign Group Message</h2>
<p>
Input: Secret Key Shares. There must be at least m secret keys
of an m-of-n group to be able to sign the message.
The keys do not need to be sequential or in any particular order.
The format of each line should match those generated in
Simple Threshold Keys or DKG, ie
<code>shareIndex:hexEncodedSecretKey</code>.
</p>
<textarea class="skshares"></textarea>
<p>
Input: Master Commitment. This can be found in
<a href="#simple-threshold-keys">Simple Threshold Keys</a>
or
<a href="#dkg">DKG</a>
and should be known by all nodes in the group.
</p>
<input type="text" class="mc-hex" placeholder="eg 800bfc9...">
<p>
Input: Message.
Copy and Paste from a text editor rather than typing manually is
recommended here.
</p>
<input type="text" class="msg" placeholder="eg This group formed in August 2020">
<p>
Output: Signature Shares. These are combined into the group signature
shown below.
</p>
<textarea class="sig-shares"></textarea>
<p>
Output: Signature. This can be used with the
<a href="#simple-threshold-keys">Group Master Public Key</a>
and the message to
<a href="#verify">verify</a>
the message was signed by at least
m-of-n members of the group.
If less than m signatures are combined the signature will be invalid.
Any combination of signers will produce the same signature. This means
the signature can serve as a pseudorandom number unknown to anyone
until m participants agree to reveal it.
</p>
<input type="text" class="sig">
</div>
<hr>
<div id="thresh-verify">
<h2>Verify Group Signature</h2>
<p>
Use the master public key from
<a href="#simple-threshold-keys">simple threshold keys</a>
or
<a href="#dkg-keys">DKG keys</a>
to verify the signature using the
<a href="#verify">verify section</a>.
</p>
</div>
<hr>
<div id="thresh-encrypt">
<h2>Encrypt Group Message</h2>
<p>
Create a master public key using
<a href="#simple-threshold-keys">simple threshold keys</a>
or
<a href="#dkg-keys">DKG keys</a>.
</p>
<p>
Use the master public key to encrypt a message in the
<a href="#encrypt">encrypt section</a>.
</p>
</div>
<hr>
<div id="thresh-decryption">
<h2>Decrypt Group Message</h2>
<p>
Input: Secret Key Shares. There must be at least m secret keys
of an m-of-n group to be able to sign the message.
The keys do not need to be sequential or in any particular order.
The format of each line should match those generated in
Simple Threshold Keys or DKG, ie
<code>shareIndex:hexEncodedSecretKey</code>.
</p>
<textarea class="skshares"></textarea>
<p>
Input: Master Commitment. This can be found in
<a href="#simple-threshold-keys">Simple Threshold Keys</a>
or
<a href="#dkg">DKG</a>
and should be known by all nodes in the group.
</p>
<input type="text" class="mc-hex" placeholder="eg 800bfc9...">
<p>
Input: Ciphertext. This is text encrypted using the group Master
Public Key. Encryption can be done in the
<a href="#encrypt">encrypt</a>
section.
</p>
<input type="text" class="ct">
<p>
Output: Decryption Shares. These are combined into the decrypted
message shown below.
</p>
<textarea class="msg-shares"></textarea>
<p>
Output: Message. This is created by combining the
decryption shares above into the message.
This can only be done when
m-of-n members of the group have provided their decryption share.
If less than m shares are combined the message will be invalid.
</p>
<input type="text" class="msg">
</div>
<hr>
<div id="info">
<h2>Info</h2>
<p>
This tool is based on
<a href="https://github.com/poanetwork/threshold_crypto/tree/7709462f2df487ada3bb3243060504b5881f2628">
threshold_crypto v0.4.0</a>.
</p>
<p>
Since wasm is quite limited in the interface between javascript and rust,
this tool uses a rust wrapper around threshold_crypto which is relatively
awkward, but this is just an implementation detail. Not all
threshold_crypto functions are available in the wasm or this tool.
</p>
<p>
threshold_crypto is very cautious about revealing secret keys. You should
be too. You may find the secret keys in this tool are not compatible with
other BLS tools. That's probably because secret keys are serialized from
threshold_crypto using bincode.
</p>
<p>
threshold_crypto uses curve
<a href="https://github.com/poanetwork/threshold_crypto/blob/7709462f2df487ada3bb3243060504b5881f2628/src/lib.rs#L67">
BLS12-381</a>.
</p>
<p>
Since it's not abundantly obvious which source of randomness is used by
threshold_crypto in SecretKey::random when compiled to wasm, the tool uses
javascript Crypto.getRandomValues which has known assurances around the
strength of the random values generated.
</p>
<p>
You can use this tool without having to be online. In your browser, select
file save-as, and save this page as a file. Double-click that file to open
it in a browser on any offline computer.
</p>
</div>
<script>// https://github.com/nodeca/pako/blob/c715679bfdc3f15faba6628c2311ca7dc6bfeb7f/dist/pako.min.js
!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).pako=t()}}(function(){return function r(s,o,l){function h(e,t){if(!o[e]){if(!s[e]){var a="function"==typeof require&&require;if(!t&&a)return a(e,!0);if(d)return d(e,!0);var i=new Error("Cannot find module '"+e+"'");throw i.code="MODULE_NOT_FOUND",i}var n=o[e]={exports:{}};s[e][0].call(n.exports,function(t){return h(s[e][1][t]||t)},n,n.exports,r,s,o,l)}return o[e].exports}for(var d="function"==typeof require&&require,t=0;t<l.length;t++)h(l[t]);return h}({1:[function(t,e,a){"use strict";var s=t("./zlib/deflate"),o=t("./utils/common"),l=t("./utils/strings"),n=t("./zlib/messages"),r=t("./zlib/zstream"),h=Object.prototype.toString,d=0,f=-1,_=0,u=8;function c(t){if(!(this instanceof c))return new c(t);this.options=o.assign({level:f,method:u,chunkSize:16384,windowBits:15,memLevel:8,strategy:_,to:""},t||{});var e=this.options;e.raw&&0<e.windowBits?e.windowBits=-e.windowBits:e.gzip&&0<e.windowBits&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new r,this.strm.avail_out=0;var a=s.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(a!==d)throw new Error(n[a]);if(e.header&&s.deflateSetHeader(this.strm,e.header),e.dictionary){var i;if(i="string"==typeof e.dictionary?l.string2buf(e.dictionary):"[object ArrayBuffer]"===h.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,(a=s.deflateSetDictionary(this.strm,i))!==d)throw new Error(n[a]);this._dict_set=!0}}function i(t,e){var a=new c(e);if(a.push(t,!0),a.err)throw a.msg||n[a.err];return a.result}c.prototype.push=function(t,e){var a,i,n=this.strm,r=this.options.chunkSize;if(this.ended)return!1;i=e===~~e?e:!0===e?4:0,"string"==typeof t?n.input=l.string2buf(t):"[object ArrayBuffer]"===h.call(t)?n.input=new Uint8Array(t):n.input=t,n.next_in=0,n.avail_in=n.input.length;do{if(0===n.avail_out&&(n.output=new o.Buf8(r),n.next_out=0,n.avail_out=r),1!==(a=s.deflate(n,i))&&a!==d)return this.onEnd(a),!(this.ended=!0);0!==n.avail_out&&(0!==n.avail_in||4!==i&&2!==i)||("string"===this.options.to?this.onData(l.buf2binstring(o.shrinkBuf(n.output,n.next_out))):this.onData(o.shrinkBuf(n.output,n.next_out)))}while((0<n.avail_in||0===n.avail_out)&&1!==a);return 4===i?(a=s.deflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===d):2!==i||(this.onEnd(d),!(n.avail_out=0))},c.prototype.onData=function(t){this.chunks.push(t)},c.prototype.onEnd=function(t){t===d&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=o.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},a.Deflate=c,a.deflate=i,a.deflateRaw=function(t,e){return(e=e||{}).raw=!0,i(t,e)},a.gzip=function(t,e){return(e=e||{}).gzip=!0,i(t,e)}},{"./utils/common":3,"./utils/strings":4,"./zlib/deflate":8,"./zlib/messages":13,"./zlib/zstream":15}],2:[function(t,e,a){"use strict";var f=t("./zlib/inflate"),_=t("./utils/common"),u=t("./utils/strings"),c=t("./zlib/constants"),i=t("./zlib/messages"),n=t("./zlib/zstream"),r=t("./zlib/gzheader"),b=Object.prototype.toString;function s(t){if(!(this instanceof s))return new s(t);this.options=_.assign({chunkSize:16384,windowBits:0,to:""},t||{});var e=this.options;e.raw&&0<=e.windowBits&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(0<=e.windowBits&&e.windowBits<16)||t&&t.windowBits||(e.windowBits+=32),15<e.windowBits&&e.windowBits<48&&0==(15&e.windowBits)&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new n,this.strm.avail_out=0;var a=f.inflateInit2(this.strm,e.windowBits);if(a!==c.Z_OK)throw new Error(i[a]);if(this.header=new r,f.inflateGetHeader(this.strm,this.header),e.dictionary&&("string"==typeof e.dictionary?e.dictionary=u.string2buf(e.dictionary):"[object ArrayBuffer]"===b.call(e.dictionary)&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(a=f.inflateSetDictionary(this.strm,e.dictionary))!==c.Z_OK))throw new Error(i[a])}function o(t,e){var a=new s(e);if(a.push(t,!0),a.err)throw a.msg||i[a.err];return a.result}s.prototype.push=function(t,e){var a,i,n,r,s,o=this.strm,l=this.options.chunkSize,h=this.options.dictionary,d=!1;if(this.ended)return!1;i=e===~~e?e:!0===e?c.Z_FINISH:c.Z_NO_FLUSH,"string"==typeof t?o.input=u.binstring2buf(t):"[object ArrayBuffer]"===b.call(t)?o.input=new Uint8Array(t):o.input=t,o.next_in=0,o.avail_in=o.input.length;do{if(0===o.avail_out&&(o.output=new _.Buf8(l),o.next_out=0,o.avail_out=l),(a=f.inflate(o,c.Z_NO_FLUSH))===c.Z_NEED_DICT&&h&&(a=f.inflateSetDictionary(this.strm,h)),a===c.Z_BUF_ERROR&&!0===d&&(a=c.Z_OK,d=!1),a!==c.Z_STREAM_END&&a!==c.Z_OK)return this.onEnd(a),!(this.ended=!0);o.next_out&&(0!==o.avail_out&&a!==c.Z_STREAM_END&&(0!==o.avail_in||i!==c.Z_FINISH&&i!==c.Z_SYNC_FLUSH)||("string"===this.options.to?(n=u.utf8border(o.output,o.next_out),r=o.next_out-n,s=u.buf2string(o.output,n),o.next_out=r,o.avail_out=l-r,r&&_.arraySet(o.output,o.output,n,r,0),this.onData(s)):this.onData(_.shrinkBuf(o.output,o.next_out)))),0===o.avail_in&&0===o.avail_out&&(d=!0)}while((0<o.avail_in||0===o.avail_out)&&a!==c.Z_STREAM_END);return a===c.Z_STREAM_END&&(i=c.Z_FINISH),i===c.Z_FINISH?(a=f.inflateEnd(this.strm),this.onEnd(a),this.ended=!0,a===c.Z_OK):i!==c.Z_SYNC_FLUSH||(this.onEnd(c.Z_OK),!(o.avail_out=0))},s.prototype.onData=function(t){this.chunks.push(t)},s.prototype.onEnd=function(t){t===c.Z_OK&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=_.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg},a.Inflate=s,a.inflate=o,a.inflateRaw=function(t,e){return(e=e||{}).raw=!0,o(t,e)},a.ungzip=o},{"./utils/common":3,"./utils/strings":4,"./zlib/constants":6,"./zlib/gzheader":9,"./zlib/inflate":11,"./zlib/messages":13,"./zlib/zstream":15}],3:[function(t,e,a){"use strict";var i="undefined"!=typeof Uint8Array&&"undefined"!=typeof Uint16Array&&"undefined"!=typeof Int32Array;a.assign=function(t){for(var e,a,i=Array.prototype.slice.call(arguments,1);i.length;){var n=i.shift();if(n){if("object"!=typeof n)throw new TypeError(n+"must be non-object");for(var r in n)e=n,a=r,Object.prototype.hasOwnProperty.call(e,a)&&(t[r]=n[r])}}return t},a.shrinkBuf=function(t,e){return t.length===e?t:t.subarray?t.subarray(0,e):(t.length=e,t)};var n={arraySet:function(t,e,a,i,n){if(e.subarray&&t.subarray)t.set(e.subarray(a,a+i),n);else for(var r=0;r<i;r++)t[n+r]=e[a+r]},flattenChunks:function(t){var e,a,i,n,r,s;for(e=i=0,a=t.length;e<a;e++)i+=t[e].length;for(s=new Uint8Array(i),e=n=0,a=t.length;e<a;e++)r=t[e],s.set(r,n),n+=r.length;return s}},r={arraySet:function(t,e,a,i,n){for(var r=0;r<i;r++)t[n+r]=e[a+r]},flattenChunks:function(t){return[].concat.apply([],t)}};a.setTyped=function(t){t?(a.Buf8=Uint8Array,a.Buf16=Uint16Array,a.Buf32=Int32Array,a.assign(a,n)):(a.Buf8=Array,a.Buf16=Array,a.Buf32=Array,a.assign(a,r))},a.setTyped(i)},{}],4:[function(t,e,a){"use strict";var l=t("./common"),n=!0,r=!0;try{String.fromCharCode.apply(null,[0])}catch(t){n=!1}try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(t){r=!1}for(var h=new l.Buf8(256),i=0;i<256;i++)h[i]=252<=i?6:248<=i?5:240<=i?4:224<=i?3:192<=i?2:1;function d(t,e){if(e<65534&&(t.subarray&&r||!t.subarray&&n))return String.fromCharCode.apply(null,l.shrinkBuf(t,e));for(var a="",i=0;i<e;i++)a+=String.fromCharCode(t[i]);return a}h[254]=h[254]=1,a.string2buf=function(t){var e,a,i,n,r,s=t.length,o=0;for(n=0;n<s;n++)55296==(64512&(a=t.charCodeAt(n)))&&n+1<s&&56320==(64512&(i=t.charCodeAt(n+1)))&&(a=65536+(a-55296<<10)+(i-56320),n++),o+=a<128?1:a<2048?2:a<65536?3:4;for(e=new l.Buf8(o),n=r=0;r<o;n++)55296==(64512&(a=t.charCodeAt(n)))&&n+1<s&&56320==(64512&(i=t.charCodeAt(n+1)))&&(a=65536+(a-55296<<10)+(i-56320),n++),a<128?e[r++]=a:(a<2048?e[r++]=192|a>>>6:(a<65536?e[r++]=224|a>>>12:(e[r++]=240|a>>>18,e[r++]=128|a>>>12&63),e[r++]=128|a>>>6&63),e[r++]=128|63&a);return e},a.buf2binstring=function(t){return d(t,t.length)},a.binstring2buf=function(t){for(var e=new l.Buf8(t.length),a=0,i=e.length;a<i;a++)e[a]=t.charCodeAt(a);return e},a.buf2string=function(t,e){var a,i,n,r,s=e||t.length,o=new Array(2*s);for(a=i=0;a<s;)if((n=t[a++])<128)o[i++]=n;else if(4<(r=h[n]))o[i++]=65533,a+=r-1;else{for(n&=2===r?31:3===r?15:7;1<r&&a<s;)n=n<<6|63&t[a++],r--;1<r?o[i++]=65533:n<65536?o[i++]=n:(n-=65536,o[i++]=55296|n>>10&1023,o[i++]=56320|1023&n)}return d(o,i)},a.utf8border=function(t,e){var a;for((e=e||t.length)>t.length&&(e=t.length),a=e-1;0<=a&&128==(192&t[a]);)a--;return a<0?e:0===a?e:a+h[t[a]]>e?a:e}},{"./common":3}],5:[function(t,e,a){"use strict";e.exports=function(t,e,a,i){for(var n=65535&t|0,r=t>>>16&65535|0,s=0;0!==a;){for(a-=s=2e3<a?2e3:a;r=r+(n=n+e[i++]|0)|0,--s;);n%=65521,r%=65521}return n|r<<16|0}},{}],6:[function(t,e,a){"use strict";e.exports={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8}},{}],7:[function(t,e,a){"use strict";var o=function(){for(var t,e=[],a=0;a<256;a++){t=a;for(var i=0;i<8;i++)t=1&t?3988292384^t>>>1:t>>>1;e[a]=t}return e}();e.exports=function(t,e,a,i){var n=o,r=i+a;t^=-1;for(var s=i;s<r;s++)t=t>>>8^n[255&(t^e[s])];return-1^t}},{}],8:[function(t,e,a){"use strict";var l,_=t("../utils/common"),h=t("./trees"),u=t("./adler32"),c=t("./crc32"),i=t("./messages"),d=0,f=4,b=0,g=-2,m=-1,w=4,n=2,p=8,v=9,r=286,s=30,o=19,k=2*r+1,y=15,x=3,z=258,B=z+x+1,S=42,E=113,A=1,Z=2,R=3,C=4;function N(t,e){return t.msg=i[e],e}function O(t){return(t<<1)-(4<t?9:0)}function D(t){for(var e=t.length;0<=--e;)t[e]=0}function I(t){var e=t.state,a=e.pending;a>t.avail_out&&(a=t.avail_out),0!==a&&(_.arraySet(t.output,e.pending_buf,e.pending_out,a,t.next_out),t.next_out+=a,e.pending_out+=a,t.total_out+=a,t.avail_out-=a,e.pending-=a,0===e.pending&&(e.pending_out=0))}function U(t,e){h._tr_flush_block(t,0<=t.block_start?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,I(t.strm)}function T(t,e){t.pending_buf[t.pending++]=e}function F(t,e){t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e}function L(t,e){var a,i,n=t.max_chain_length,r=t.strstart,s=t.prev_length,o=t.nice_match,l=t.strstart>t.w_size-B?t.strstart-(t.w_size-B):0,h=t.window,d=t.w_mask,f=t.prev,_=t.strstart+z,u=h[r+s-1],c=h[r+s];t.prev_length>=t.good_match&&(n>>=2),o>t.lookahead&&(o=t.lookahead);do{if(h[(a=e)+s]===c&&h[a+s-1]===u&&h[a]===h[r]&&h[++a]===h[r+1]){r+=2,a++;do{}while(h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&h[++r]===h[++a]&&r<_);if(i=z-(_-r),r=_-z,s<i){if(t.match_start=e,o<=(s=i))break;u=h[r+s-1],c=h[r+s]}}}while((e=f[e&d])>l&&0!=--n);return s<=t.lookahead?s:t.lookahead}function H(t){var e,a,i,n,r,s,o,l,h,d,f=t.w_size;do{if(n=t.window_size-t.lookahead-t.strstart,t.strstart>=f+(f-B)){for(_.arraySet(t.window,t.window,f,f,0),t.match_start-=f,t.strstart-=f,t.block_start-=f,e=a=t.hash_size;i=t.head[--e],t.head[e]=f<=i?i-f:0,--a;);for(e=a=f;i=t.prev[--e],t.prev[e]=f<=i?i-f:0,--a;);n+=f}if(0===t.strm.avail_in)break;if(s=t.strm,o=t.window,l=t.strstart+t.lookahead,h=n,d=void 0,d=s.avail_in,h<d&&(d=h),a=0===d?0:(s.avail_in-=d,_.arraySet(o,s.input,s.next_in,d,l),1===s.state.wrap?s.adler=u(s.adler,o,d,l):2===s.state.wrap&&(s.adler=c(s.adler,o,d,l)),s.next_in+=d,s.total_in+=d,d),t.lookahead+=a,t.lookahead+t.insert>=x)for(r=t.strstart-t.insert,t.ins_h=t.window[r],t.ins_h=(t.ins_h<<t.hash_shift^t.window[r+1])&t.hash_mask;t.insert&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[r+x-1])&t.hash_mask,t.prev[r&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=r,r++,t.insert--,!(t.lookahead+t.insert<x)););}while(t.lookahead<B&&0!==t.strm.avail_in)}function j(t,e){for(var a,i;;){if(t.lookahead<B){if(H(t),t.lookahead<B&&e===d)return A;if(0===t.lookahead)break}if(a=0,t.lookahead>=x&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+x-1])&t.hash_mask,a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!==a&&t.strstart-a<=t.w_size-B&&(t.match_length=L(t,a)),t.match_length>=x)if(i=h._tr_tally(t,t.strstart-t.match_start,t.match_length-x),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=x){for(t.match_length--;t.strstart++,t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+x-1])&t.hash_mask,a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart,0!=--t.match_length;);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+1])&t.hash_mask;else i=h._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(i&&(U(t,!1),0===t.strm.avail_out))return A}return t.insert=t.strstart<x-1?t.strstart:x-1,e===f?(U(t,!0),0===t.strm.avail_out?R:C):t.last_lit&&(U(t,!1),0===t.strm.avail_out)?A:Z}function K(t,e){for(var a,i,n;;){if(t.lookahead<B){if(H(t),t.lookahead<B&&e===d)return A;if(0===t.lookahead)break}if(a=0,t.lookahead>=x&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+x-1])&t.hash_mask,a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=x-1,0!==a&&t.prev_length<t.max_lazy_match&&t.strstart-a<=t.w_size-B&&(t.match_length=L(t,a),t.match_length<=5&&(1===t.strategy||t.match_length===x&&4096<t.strstart-t.match_start)&&(t.match_length=x-1)),t.prev_length>=x&&t.match_length<=t.prev_length){for(n=t.strstart+t.lookahead-x,i=h._tr_tally(t,t.strstart-1-t.prev_match,t.prev_length-x),t.lookahead-=t.prev_length-1,t.prev_length-=2;++t.strstart<=n&&(t.ins_h=(t.ins_h<<t.hash_shift^t.window[t.strstart+x-1])&t.hash_mask,a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!=--t.prev_length;);if(t.match_available=0,t.match_length=x-1,t.strstart++,i&&(U(t,!1),0===t.strm.avail_out))return A}else if(t.match_available){if((i=h._tr_tally(t,0,t.window[t.strstart-1]))&&U(t,!1),t.strstart++,t.lookahead--,0===t.strm.avail_out)return A}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(i=h._tr_tally(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<x-1?t.strstart:x-1,e===f?(U(t,!0),0===t.strm.avail_out?R:C):t.last_lit&&(U(t,!1),0===t.strm.avail_out)?A:Z}function M(t,e,a,i,n){this.good_length=t,this.max_lazy=e,this.nice_length=a,this.max_chain=i,this.func=n}function P(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=p,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new _.Buf16(2*k),this.dyn_dtree=new _.Buf16(2*(2*s+1)),this.bl_tree=new _.Buf16(2*(2*o+1)),D(this.dyn_ltree),D(this.dyn_dtree),D(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new _.Buf16(y+1),this.heap=new _.Buf16(2*r+1),D(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new _.Buf16(2*r+1),D(this.depth),this.l_buf=0,this.lit_bufsize=0,this.last_lit=0,this.d_buf=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}function Y(t){var e;return t&&t.state?(t.total_in=t.total_out=0,t.data_type=n,(e=t.state).pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=e.wrap?S:E,t.adler=2===e.wrap?0:1,e.last_flush=d,h._tr_init(e),b):N(t,g)}function q(t){var e,a=Y(t);return a===b&&((e=t.state).window_size=2*e.w_size,D(e.head),e.max_lazy_match=l[e.level].max_lazy,e.good_match=l[e.level].good_length,e.nice_match=l[e.level].nice_length,e.max_chain_length=l[e.level].max_chain,e.strstart=0,e.block_start=0,e.lookahead=0,e.insert=0,e.match_length=e.prev_length=x-1,e.match_available=0,e.ins_h=0),a}function G(t,e,a,i,n,r){if(!t)return g;var s=1;if(e===m&&(e=6),i<0?(s=0,i=-i):15<i&&(s=2,i-=16),n<1||v<n||a!==p||i<8||15<i||e<0||9<e||r<0||w<r)return N(t,g);8===i&&(i=9);var o=new P;return(t.state=o).strm=t,o.wrap=s,o.gzhead=null,o.w_bits=i,o.w_size=1<<o.w_bits,o.w_mask=o.w_size-1,o.hash_bits=n+7,o.hash_size=1<<o.hash_bits,o.hash_mask=o.hash_size-1,o.hash_shift=~~((o.hash_bits+x-1)/x),o.window=new _.Buf8(2*o.w_size),o.head=new _.Buf16(o.hash_size),o.prev=new _.Buf16(o.w_size),o.lit_bufsize=1<<n+6,o.pending_buf_size=4*o.lit_bufsize,o.pending_buf=new _.Buf8(o.pending_buf_size),o.d_buf=1*o.lit_bufsize,o.l_buf=3*o.lit_bufsize,o.level=e,o.strategy=r,o.method=a,q(t)}l=[new M(0,0,0,0,function(t,e){var a=65535;for(a>t.pending_buf_size-5&&(a=t.pending_buf_size-5);;){if(t.lookahead<=1){if(H(t),0===t.lookahead&&e===d)return A;if(0===t.lookahead)break}t.strstart+=t.lookahead,t.lookahead=0;var i=t.block_start+a;if((0===t.strstart||t.strstart>=i)&&(t.lookahead=t.strstart-i,t.strstart=i,U(t,!1),0===t.strm.avail_out))return A;if(t.strstart-t.block_start>=t.w_size-B&&(U(t,!1),0===t.strm.avail_out))return A}return t.insert=0,e===f?(U(t,!0),0===t.strm.avail_out?R:C):(t.strstart>t.block_start&&(U(t,!1),t.strm.avail_out),A)}),new M(4,4,8,4,j),new M(4,5,16,8,j),new M(4,6,32,32,j),new M(4,4,16,16,K),new M(8,16,32,32,K),new M(8,16,128,128,K),new M(8,32,128,256,K),new M(32,128,258,1024,K),new M(32,258,258,4096,K)],a.deflateInit=function(t,e){return G(t,e,p,15,8,0)},a.deflateInit2=G,a.deflateReset=q,a.deflateResetKeep=Y,a.deflateSetHeader=function(t,e){return t&&t.state?2!==t.state.wrap?g:(t.state.gzhead=e,b):g},a.deflate=function(t,e){var a,i,n,r;if(!t||!t.state||5<e||e<0)return t?N(t,g):g;if(i=t.state,!t.output||!t.input&&0!==t.avail_in||666===i.status&&e!==f)return N(t,0===t.avail_out?-5:g);if(i.strm=t,a=i.last_flush,i.last_flush=e,i.status===S)if(2===i.wrap)t.adler=0,T(i,31),T(i,139),T(i,8),i.gzhead?(T(i,(i.gzhead.text?1:0)+(i.gzhead.hcrc?2:0)+(i.gzhead.extra?4:0)+(i.gzhead.name?8:0)+(i.gzhead.comment?16:0)),T(i,255&i.gzhead.time),T(i,i.gzhead.time>>8&255),T(i,i.gzhead.time>>16&255),T(i,i.gzhead.time>>24&255),T(i,9===i.level?2:2<=i.strategy||i.level<2?4:0),T(i,255&i.gzhead.os),i.gzhead.extra&&i.gzhead.extra.length&&(T(i,255&i.gzhead.extra.length),T(i,i.gzhead.extra.length>>8&255)),i.gzhead.hcrc&&(t.adler=c(t.adler,i.pending_buf,i.pending,0)),i.gzindex=0,i.status=69):(T(i,0),T(i,0),T(i,0),T(i,0),T(i,0),T(i,9===i.level?2:2<=i.strategy||i.level<2?4:0),T(i,3),i.status=E);else{var s=p+(i.w_bits-8<<4)<<8;s|=(2<=i.strategy||i.level<2?0:i.level<6?1:6===i.level?2:3)<<6,0!==i.strstart&&(s|=32),s+=31-s%31,i.status=E,F(i,s),0!==i.strstart&&(F(i,t.adler>>>16),F(i,65535&t.adler)),t.adler=1}if(69===i.status)if(i.gzhead.extra){for(n=i.pending;i.gzindex<(65535&i.gzhead.extra.length)&&(i.pending!==i.pending_buf_size||(i.gzhead.hcrc&&i.pending>n&&(t.adler=c(t.adler,i.pending_buf,i.pending-n,n)),I(t),n=i.pending,i.pending!==i.pending_buf_size));)T(i,255&i.gzhead.extra[i.gzindex]),i.gzindex++;i.gzhead.hcrc&&i.pending>n&&(t.adler=c(t.adler,i.pending_buf,i.pending-n,n)),i.gzindex===i.gzhead.extra.length&&(i.gzindex=0,i.status=73)}else i.status=73;if(73===i.status)if(i.gzhead.name){n=i.pending;do{if(i.pending===i.pending_buf_size&&(i.gzhead.hcrc&&i.pending>n&&(t.adler=c(t.adler,i.pending_buf,i.pending-n,n)),I(t),n=i.pending,i.pending===i.pending_buf_size)){r=1;break}T(i,r=i.gzindex<i.gzhead.name.length?255&i.gzhead.name.charCodeAt(i.gzindex++):0)}while(0!==r);i.gzhead.hcrc&&i.pending>n&&(t.adler=c(t.adler,i.pending_buf,i.pending-n,n)),0===r&&(i.gzindex=0,i.status=91)}else i.status=91;if(91===i.status)if(i.gzhead.comment){n=i.pending;do{if(i.pending===i.pending_buf_size&&(i.gzhead.hcrc&&i.pending>n&&(t.adler=c(t.adler,i.pending_buf,i.pending-n,n)),I(t),n=i.pending,i.pending===i.pending_buf_size)){r=1;break}T(i,r=i.gzindex<i.gzhead.comment.length?255&i.gzhead.comment.charCodeAt(i.gzindex++):0)}while(0!==r);i.gzhead.hcrc&&i.pending>n&&(t.adler=c(t.adler,i.pending_buf,i.pending-n,n)),0===r&&(i.status=103)}else i.status=103;if(103===i.status&&(i.gzhead.hcrc?(i.pending+2>i.pending_buf_size&&I(t),i.pending+2<=i.pending_buf_size&&(T(i,255&t.adler),T(i,t.adler>>8&255),t.adler=0,i.status=E)):i.status=E),0!==i.pending){if(I(t),0===t.avail_out)return i.last_flush=-1,b}else if(0===t.avail_in&&O(e)<=O(a)&&e!==f)return N(t,-5);if(666===i.status&&0!==t.avail_in)return N(t,-5);if(0!==t.avail_in||0!==i.lookahead||e!==d&&666!==i.status){var o=2===i.strategy?function(t,e){for(var a;;){if(0===t.lookahead&&(H(t),0===t.lookahead)){if(e===d)return A;break}if(t.match_length=0,a=h._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,a&&(U(t,!1),0===t.strm.avail_out))return A}return t.insert=0,e===f?(U(t,!0),0===t.strm.avail_out?R:C):t.last_lit&&(U(t,!1),0===t.strm.avail_out)?A:Z}(i,e):3===i.strategy?function(t,e){for(var a,i,n,r,s=t.window;;){if(t.lookahead<=z){if(H(t),t.lookahead<=z&&e===d)return A;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=x&&0<t.strstart&&(i=s[n=t.strstart-1])===s[++n]&&i===s[++n]&&i===s[++n]){r=t.strstart+z;do{}while(i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&i===s[++n]&&n<r);t.match_length=z-(r-n),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=x?(a=h._tr_tally(t,1,t.match_length-x),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(a=h._tr_tally(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),a&&(U(t,!1),0===t.strm.avail_out))return A}return t.insert=0,e===f?(U(t,!0),0===t.strm.avail_out?R:C):t.last_lit&&(U(t,!1),0===t.strm.avail_out)?A:Z}(i,e):l[i.level].func(i,e);if(o!==R&&o!==C||(i.status=666),o===A||o===R)return 0===t.avail_out&&(i.last_flush=-1),b;if(o===Z&&(1===e?h._tr_align(i):5!==e&&(h._tr_stored_block(i,0,0,!1),3===e&&(D(i.head),0===i.lookahead&&(i.strstart=0,i.block_start=0,i.insert=0))),I(t),0===t.avail_out))return i.last_flush=-1,b}return e!==f?b:i.wrap<=0?1:(2===i.wrap?(T(i,255&t.adler),T(i,t.adler>>8&255),T(i,t.adler>>16&255),T(i,t.adler>>24&255),T(i,255&t.total_in),T(i,t.total_in>>8&255),T(i,t.total_in>>16&255),T(i,t.total_in>>24&255)):(F(i,t.adler>>>16),F(i,65535&t.adler)),I(t),0<i.wrap&&(i.wrap=-i.wrap),0!==i.pending?b:1)},a.deflateEnd=function(t){var e;return t&&t.state?(e=t.state.status)!==S&&69!==e&&73!==e&&91!==e&&103!==e&&e!==E&&666!==e?N(t,g):(t.state=null,e===E?N(t,-3):b):g},a.deflateSetDictionary=function(t,e){var a,i,n,r,s,o,l,h,d=e.length;if(!t||!t.state)return g;if(2===(r=(a=t.state).wrap)||1===r&&a.status!==S||a.lookahead)return g;for(1===r&&(t.adler=u(t.adler,e,d,0)),a.wrap=0,d>=a.w_size&&(0===r&&(D(a.head),a.strstart=0,a.block_start=0,a.insert=0),h=new _.Buf8(a.w_size),_.arraySet(h,e,d-a.w_size,a.w_size,0),e=h,d=a.w_size),s=t.avail_in,o=t.next_in,l=t.input,t.avail_in=d,t.next_in=0,t.input=e,H(a);a.lookahead>=x;){for(i=a.strstart,n=a.lookahead-(x-1);a.ins_h=(a.ins_h<<a.hash_shift^a.window[i+x-1])&a.hash_mask,a.prev[i&a.w_mask]=a.head[a.ins_h],a.head[a.ins_h]=i,i++,--n;);a.strstart=i,a.lookahead=x-1,H(a)}return a.strstart+=a.lookahead,a.block_start=a.strstart,a.insert=a.lookahead,a.lookahead=0,a.match_length=a.prev_length=x-1,a.match_available=0,t.next_in=o,t.input=l,t.avail_in=s,a.wrap=r,b},a.deflateInfo="pako deflate (from Nodeca project)"},{"../utils/common":3,"./adler32":5,"./crc32":7,"./messages":13,"./trees":14}],9:[function(t,e,a){"use strict";e.exports=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1}},{}],10:[function(t,e,a){"use strict";e.exports=function(t,e){var a,i,n,r,s,o,l,h,d,f,_,u,c,b,g,m,w,p,v,k,y,x,z,B,S;a=t.state,i=t.next_in,B=t.input,n=i+(t.avail_in-5),r=t.next_out,S=t.output,s=r-(e-t.avail_out),o=r+(t.avail_out-257),l=a.dmax,h=a.wsize,d=a.whave,f=a.wnext,_=a.window,u=a.hold,c=a.bits,b=a.lencode,g=a.distcode,m=(1<<a.lenbits)-1,w=(1<<a.distbits)-1;t:do{c<15&&(u+=B[i++]<<c,c+=8,u+=B[i++]<<c,c+=8),p=b[u&m];e:for(;;){if(u>>>=v=p>>>24,c-=v,0===(v=p>>>16&255))S[r++]=65535&p;else{if(!(16&v)){if(0==(64&v)){p=b[(65535&p)+(u&(1<<v)-1)];continue e}if(32&v){a.mode=12;break t}t.msg="invalid literal/length code",a.mode=30;break t}k=65535&p,(v&=15)&&(c<v&&(u+=B[i++]<<c,c+=8),k+=u&(1<<v)-1,u>>>=v,c-=v),c<15&&(u+=B[i++]<<c,c+=8,u+=B[i++]<<c,c+=8),p=g[u&w];a:for(;;){if(u>>>=v=p>>>24,c-=v,!(16&(v=p>>>16&255))){if(0==(64&v)){p=g[(65535&p)+(u&(1<<v)-1)];continue a}t.msg="invalid distance code",a.mode=30;break t}if(y=65535&p,c<(v&=15)&&(u+=B[i++]<<c,(c+=8)<v&&(u+=B[i++]<<c,c+=8)),l<(y+=u&(1<<v)-1)){t.msg="invalid distance too far back",a.mode=30;break t}if(u>>>=v,c-=v,(v=r-s)<y){if(d<(v=y-v)&&a.sane){t.msg="invalid distance too far back",a.mode=30;break t}if(z=_,(x=0)===f){if(x+=h-v,v<k){for(k-=v;S[r++]=_[x++],--v;);x=r-y,z=S}}else if(f<v){if(x+=h+f-v,(v-=f)<k){for(k-=v;S[r++]=_[x++],--v;);if(x=0,f<k){for(k-=v=f;S[r++]=_[x++],--v;);x=r-y,z=S}}}else if(x+=f-v,v<k){for(k-=v;S[r++]=_[x++],--v;);x=r-y,z=S}for(;2<k;)S[r++]=z[x++],S[r++]=z[x++],S[r++]=z[x++],k-=3;k&&(S[r++]=z[x++],1<k&&(S[r++]=z[x++]))}else{for(x=r-y;S[r++]=S[x++],S[r++]=S[x++],S[r++]=S[x++],2<(k-=3););k&&(S[r++]=S[x++],1<k&&(S[r++]=S[x++]))}break}}break}}while(i<n&&r<o);i-=k=c>>3,u&=(1<<(c-=k<<3))-1,t.next_in=i,t.next_out=r,t.avail_in=i<n?n-i+5:5-(i-n),t.avail_out=r<o?o-r+257:257-(r-o),a.hold=u,a.bits=c}},{}],11:[function(t,e,a){"use strict";var Z=t("../utils/common"),R=t("./adler32"),C=t("./crc32"),N=t("./inffast"),O=t("./inftrees"),D=1,I=2,U=0,T=-2,F=1,i=852,n=592;function L(t){return(t>>>24&255)+(t>>>8&65280)+((65280&t)<<8)+((255&t)<<24)}function r(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Z.Buf16(320),this.work=new Z.Buf16(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}function s(t){var e;return t&&t.state?(e=t.state,t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=1&e.wrap),e.mode=F,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new Z.Buf32(i),e.distcode=e.distdyn=new Z.Buf32(n),e.sane=1,e.back=-1,U):T}function o(t){var e;return t&&t.state?((e=t.state).wsize=0,e.whave=0,e.wnext=0,s(t)):T}function l(t,e){var a,i;return t&&t.state?(i=t.state,e<0?(a=0,e=-e):(a=1+(e>>4),e<48&&(e&=15)),e&&(e<8||15<e)?T:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=a,i.wbits=e,o(t))):T}function h(t,e){var a,i;return t?(i=new r,(t.state=i).window=null,(a=l(t,e))!==U&&(t.state=null),a):T}var d,f,_=!0;function H(t){if(_){var e;for(d=new Z.Buf32(512),f=new Z.Buf32(32),e=0;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(O(D,t.lens,0,288,d,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;O(I,t.lens,0,32,f,0,t.work,{bits:5}),_=!1}t.lencode=d,t.lenbits=9,t.distcode=f,t.distbits=5}function j(t,e,a,i){var n,r=t.state;return null===r.window&&(r.wsize=1<<r.wbits,r.wnext=0,r.whave=0,r.window=new Z.Buf8(r.wsize)),i>=r.wsize?(Z.arraySet(r.window,e,a-r.wsize,r.wsize,0),r.wnext=0,r.whave=r.wsize):(i<(n=r.wsize-r.wnext)&&(n=i),Z.arraySet(r.window,e,a-i,n,r.wnext),(i-=n)?(Z.arraySet(r.window,e,a-i,i,0),r.wnext=i,r.whave=r.wsize):(r.wnext+=n,r.wnext===r.wsize&&(r.wnext=0),r.whave<r.wsize&&(r.whave+=n))),0}a.inflateReset=o,a.inflateReset2=l,a.inflateResetKeep=s,a.inflateInit=function(t){return h(t,15)},a.inflateInit2=h,a.inflate=function(t,e){var a,i,n,r,s,o,l,h,d,f,_,u,c,b,g,m,w,p,v,k,y,x,z,B,S=0,E=new Z.Buf8(4),A=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];if(!t||!t.state||!t.output||!t.input&&0!==t.avail_in)return T;12===(a=t.state).mode&&(a.mode=13),s=t.next_out,n=t.output,l=t.avail_out,r=t.next_in,i=t.input,o=t.avail_in,h=a.hold,d=a.bits,f=o,_=l,x=U;t:for(;;)switch(a.mode){case F:if(0===a.wrap){a.mode=13;break}for(;d<16;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}if(2&a.wrap&&35615===h){E[a.check=0]=255&h,E[1]=h>>>8&255,a.check=C(a.check,E,2,0),d=h=0,a.mode=2;break}if(a.flags=0,a.head&&(a.head.done=!1),!(1&a.wrap)||(((255&h)<<8)+(h>>8))%31){t.msg="incorrect header check",a.mode=30;break}if(8!=(15&h)){t.msg="unknown compression method",a.mode=30;break}if(d-=4,y=8+(15&(h>>>=4)),0===a.wbits)a.wbits=y;else if(y>a.wbits){t.msg="invalid window size",a.mode=30;break}a.dmax=1<<y,t.adler=a.check=1,a.mode=512&h?10:12,d=h=0;break;case 2:for(;d<16;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}if(a.flags=h,8!=(255&a.flags)){t.msg="unknown compression method",a.mode=30;break}if(57344&a.flags){t.msg="unknown header flags set",a.mode=30;break}a.head&&(a.head.text=h>>8&1),512&a.flags&&(E[0]=255&h,E[1]=h>>>8&255,a.check=C(a.check,E,2,0)),d=h=0,a.mode=3;case 3:for(;d<32;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}a.head&&(a.head.time=h),512&a.flags&&(E[0]=255&h,E[1]=h>>>8&255,E[2]=h>>>16&255,E[3]=h>>>24&255,a.check=C(a.check,E,4,0)),d=h=0,a.mode=4;case 4:for(;d<16;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}a.head&&(a.head.xflags=255&h,a.head.os=h>>8),512&a.flags&&(E[0]=255&h,E[1]=h>>>8&255,a.check=C(a.check,E,2,0)),d=h=0,a.mode=5;case 5:if(1024&a.flags){for(;d<16;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}a.length=h,a.head&&(a.head.extra_len=h),512&a.flags&&(E[0]=255&h,E[1]=h>>>8&255,a.check=C(a.check,E,2,0)),d=h=0}else a.head&&(a.head.extra=null);a.mode=6;case 6:if(1024&a.flags&&(o<(u=a.length)&&(u=o),u&&(a.head&&(y=a.head.extra_len-a.length,a.head.extra||(a.head.extra=new Array(a.head.extra_len)),Z.arraySet(a.head.extra,i,r,u,y)),512&a.flags&&(a.check=C(a.check,i,u,r)),o-=u,r+=u,a.length-=u),a.length))break t;a.length=0,a.mode=7;case 7:if(2048&a.flags){if(0===o)break t;for(u=0;y=i[r+u++],a.head&&y&&a.length<65536&&(a.head.name+=String.fromCharCode(y)),y&&u<o;);if(512&a.flags&&(a.check=C(a.check,i,u,r)),o-=u,r+=u,y)break t}else a.head&&(a.head.name=null);a.length=0,a.mode=8;case 8:if(4096&a.flags){if(0===o)break t;for(u=0;y=i[r+u++],a.head&&y&&a.length<65536&&(a.head.comment+=String.fromCharCode(y)),y&&u<o;);if(512&a.flags&&(a.check=C(a.check,i,u,r)),o-=u,r+=u,y)break t}else a.head&&(a.head.comment=null);a.mode=9;case 9:if(512&a.flags){for(;d<16;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}if(h!==(65535&a.check)){t.msg="header crc mismatch",a.mode=30;break}d=h=0}a.head&&(a.head.hcrc=a.flags>>9&1,a.head.done=!0),t.adler=a.check=0,a.mode=12;break;case 10:for(;d<32;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}t.adler=a.check=L(h),d=h=0,a.mode=11;case 11:if(0===a.havedict)return t.next_out=s,t.avail_out=l,t.next_in=r,t.avail_in=o,a.hold=h,a.bits=d,2;t.adler=a.check=1,a.mode=12;case 12:if(5===e||6===e)break t;case 13:if(a.last){h>>>=7&d,d-=7&d,a.mode=27;break}for(;d<3;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}switch(a.last=1&h,d-=1,3&(h>>>=1)){case 0:a.mode=14;break;case 1:if(H(a),a.mode=20,6!==e)break;h>>>=2,d-=2;break t;case 2:a.mode=17;break;case 3:t.msg="invalid block type",a.mode=30}h>>>=2,d-=2;break;case 14:for(h>>>=7&d,d-=7&d;d<32;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}if((65535&h)!=(h>>>16^65535)){t.msg="invalid stored block lengths",a.mode=30;break}if(a.length=65535&h,d=h=0,a.mode=15,6===e)break t;case 15:a.mode=16;case 16:if(u=a.length){if(o<u&&(u=o),l<u&&(u=l),0===u)break t;Z.arraySet(n,i,r,u,s),o-=u,r+=u,l-=u,s+=u,a.length-=u;break}a.mode=12;break;case 17:for(;d<14;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}if(a.nlen=257+(31&h),h>>>=5,d-=5,a.ndist=1+(31&h),h>>>=5,d-=5,a.ncode=4+(15&h),h>>>=4,d-=4,286<a.nlen||30<a.ndist){t.msg="too many length or distance symbols",a.mode=30;break}a.have=0,a.mode=18;case 18:for(;a.have<a.ncode;){for(;d<3;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}a.lens[A[a.have++]]=7&h,h>>>=3,d-=3}for(;a.have<19;)a.lens[A[a.have++]]=0;if(a.lencode=a.lendyn,a.lenbits=7,z={bits:a.lenbits},x=O(0,a.lens,0,19,a.lencode,0,a.work,z),a.lenbits=z.bits,x){t.msg="invalid code lengths set",a.mode=30;break}a.have=0,a.mode=19;case 19:for(;a.have<a.nlen+a.ndist;){for(;m=(S=a.lencode[h&(1<<a.lenbits)-1])>>>16&255,w=65535&S,!((g=S>>>24)<=d);){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}if(w<16)h>>>=g,d-=g,a.lens[a.have++]=w;else{if(16===w){for(B=g+2;d<B;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}if(h>>>=g,d-=g,0===a.have){t.msg="invalid bit length repeat",a.mode=30;break}y=a.lens[a.have-1],u=3+(3&h),h>>>=2,d-=2}else if(17===w){for(B=g+3;d<B;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}d-=g,y=0,u=3+(7&(h>>>=g)),h>>>=3,d-=3}else{for(B=g+7;d<B;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}d-=g,y=0,u=11+(127&(h>>>=g)),h>>>=7,d-=7}if(a.have+u>a.nlen+a.ndist){t.msg="invalid bit length repeat",a.mode=30;break}for(;u--;)a.lens[a.have++]=y}}if(30===a.mode)break;if(0===a.lens[256]){t.msg="invalid code -- missing end-of-block",a.mode=30;break}if(a.lenbits=9,z={bits:a.lenbits},x=O(D,a.lens,0,a.nlen,a.lencode,0,a.work,z),a.lenbits=z.bits,x){t.msg="invalid literal/lengths set",a.mode=30;break}if(a.distbits=6,a.distcode=a.distdyn,z={bits:a.distbits},x=O(I,a.lens,a.nlen,a.ndist,a.distcode,0,a.work,z),a.distbits=z.bits,x){t.msg="invalid distances set",a.mode=30;break}if(a.mode=20,6===e)break t;case 20:a.mode=21;case 21:if(6<=o&&258<=l){t.next_out=s,t.avail_out=l,t.next_in=r,t.avail_in=o,a.hold=h,a.bits=d,N(t,_),s=t.next_out,n=t.output,l=t.avail_out,r=t.next_in,i=t.input,o=t.avail_in,h=a.hold,d=a.bits,12===a.mode&&(a.back=-1);break}for(a.back=0;m=(S=a.lencode[h&(1<<a.lenbits)-1])>>>16&255,w=65535&S,!((g=S>>>24)<=d);){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}if(m&&0==(240&m)){for(p=g,v=m,k=w;m=(S=a.lencode[k+((h&(1<<p+v)-1)>>p)])>>>16&255,w=65535&S,!(p+(g=S>>>24)<=d);){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}h>>>=p,d-=p,a.back+=p}if(h>>>=g,d-=g,a.back+=g,a.length=w,0===m){a.mode=26;break}if(32&m){a.back=-1,a.mode=12;break}if(64&m){t.msg="invalid literal/length code",a.mode=30;break}a.extra=15&m,a.mode=22;case 22:if(a.extra){for(B=a.extra;d<B;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}a.length+=h&(1<<a.extra)-1,h>>>=a.extra,d-=a.extra,a.back+=a.extra}a.was=a.length,a.mode=23;case 23:for(;m=(S=a.distcode[h&(1<<a.distbits)-1])>>>16&255,w=65535&S,!((g=S>>>24)<=d);){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}if(0==(240&m)){for(p=g,v=m,k=w;m=(S=a.distcode[k+((h&(1<<p+v)-1)>>p)])>>>16&255,w=65535&S,!(p+(g=S>>>24)<=d);){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}h>>>=p,d-=p,a.back+=p}if(h>>>=g,d-=g,a.back+=g,64&m){t.msg="invalid distance code",a.mode=30;break}a.offset=w,a.extra=15&m,a.mode=24;case 24:if(a.extra){for(B=a.extra;d<B;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}a.offset+=h&(1<<a.extra)-1,h>>>=a.extra,d-=a.extra,a.back+=a.extra}if(a.offset>a.dmax){t.msg="invalid distance too far back",a.mode=30;break}a.mode=25;case 25:if(0===l)break t;if(u=_-l,a.offset>u){if((u=a.offset-u)>a.whave&&a.sane){t.msg="invalid distance too far back",a.mode=30;break}u>a.wnext?(u-=a.wnext,c=a.wsize-u):c=a.wnext-u,u>a.length&&(u=a.length),b=a.window}else b=n,c=s-a.offset,u=a.length;for(l<u&&(u=l),l-=u,a.length-=u;n[s++]=b[c++],--u;);0===a.length&&(a.mode=21);break;case 26:if(0===l)break t;n[s++]=a.length,l--,a.mode=21;break;case 27:if(a.wrap){for(;d<32;){if(0===o)break t;o--,h|=i[r++]<<d,d+=8}if(_-=l,t.total_out+=_,a.total+=_,_&&(t.adler=a.check=a.flags?C(a.check,n,_,s-_):R(a.check,n,_,s-_)),_=l,(a.flags?h:L(h))!==a.check){t.msg="incorrect data check",a.mode=30;break}d=h=0}a.mode=28;case 28:if(a.wrap&&a.flags){for(;d<32;){if(0===o)break t;o--,h+=i[r++]<<d,d+=8}if(h!==(4294967295&a.total)){t.msg="incorrect length check",a.mode=30;break}d=h=0}a.mode=29;case 29:x=1;break t;case 30:x=-3;break t;case 31:return-4;case 32:default:return T}return t.next_out=s,t.avail_out=l,t.next_in=r,t.avail_in=o,a.hold=h,a.bits=d,(a.wsize||_!==t.avail_out&&a.mode<30&&(a.mode<27||4!==e))&&j(t,t.output,t.next_out,_-t.avail_out)?(a.mode=31,-4):(f-=t.avail_in,_-=t.avail_out,t.total_in+=f,t.total_out+=_,a.total+=_,a.wrap&&_&&(t.adler=a.check=a.flags?C(a.check,n,_,t.next_out-_):R(a.check,n,_,t.next_out-_)),t.data_type=a.bits+(a.last?64:0)+(12===a.mode?128:0)+(20===a.mode||15===a.mode?256:0),(0===f&&0===_||4===e)&&x===U&&(x=-5),x)},a.inflateEnd=function(t){if(!t||!t.state)return T;var e=t.state;return e.window&&(e.window=null),t.state=null,U},a.inflateGetHeader=function(t,e){var a;return t&&t.state?0==(2&(a=t.state).wrap)?T:((a.head=e).done=!1,U):T},a.inflateSetDictionary=function(t,e){var a,i=e.length;return t&&t.state?0!==(a=t.state).wrap&&11!==a.mode?T:11===a.mode&&R(1,e,i,0)!==a.check?-3:j(t,e,i,i)?(a.mode=31,-4):(a.havedict=1,U):T},a.inflateInfo="pako inflate (from Nodeca project)"},{"../utils/common":3,"./adler32":5,"./crc32":7,"./inffast":10,"./inftrees":12}],12:[function(t,e,a){"use strict";var D=t("../utils/common"),I=[3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0],U=[16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78],T=[1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0],F=[16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64];e.exports=function(t,e,a,i,n,r,s,o){var l,h,d,f,_,u,c,b,g,m=o.bits,w=0,p=0,v=0,k=0,y=0,x=0,z=0,B=0,S=0,E=0,A=null,Z=0,R=new D.Buf16(16),C=new D.Buf16(16),N=null,O=0;for(w=0;w<=15;w++)R[w]=0;for(p=0;p<i;p++)R[e[a+p]]++;for(y=m,k=15;1<=k&&0===R[k];k--);if(k<y&&(y=k),0===k)return n[r++]=20971520,n[r++]=20971520,o.bits=1,0;for(v=1;v<k&&0===R[v];v++);for(y<v&&(y=v),w=B=1;w<=15;w++)if(B<<=1,(B-=R[w])<0)return-1;if(0<B&&(0===t||1!==k))return-1;for(C[1]=0,w=1;w<15;w++)C[w+1]=C[w]+R[w];for(p=0;p<i;p++)0!==e[a+p]&&(s[C[e[a+p]]++]=p);if(0===t?(A=N=s,u=19):1===t?(A=I,Z-=257,N=U,O-=257,u=256):(A=T,N=F,u=-1),w=v,_=r,z=p=E=0,d=-1,f=(S=1<<(x=y))-1,1===t&&852<S||2===t&&592<S)return 1;for(;;){for(c=w-z,s[p]<u?(b=0,g=s[p]):s[p]>u?(b=N[O+s[p]],g=A[Z+s[p]]):(b=96,g=0),l=1<<w-z,v=h=1<<x;n[_+(E>>z)+(h-=l)]=c<<24|b<<16|g|0,0!==h;);for(l=1<<w-1;E&l;)l>>=1;if(0!==l?(E&=l-1,E+=l):E=0,p++,0==--R[w]){if(w===k)break;w=e[a+s[p]]}if(y<w&&(E&f)!==d){for(0===z&&(z=y),_+=v,B=1<<(x=w-z);x+z<k&&!((B-=R[x+z])<=0);)x++,B<<=1;if(S+=1<<x,1===t&&852<S||2===t&&592<S)return 1;n[d=E&f]=y<<24|x<<16|_-r|0}}return 0!==E&&(n[_+E]=w-z<<24|64<<16|0),o.bits=y,0}},{"../utils/common":3}],13:[function(t,e,a){"use strict";e.exports={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"}},{}],14:[function(t,e,a){"use strict";var l=t("../utils/common"),o=0,h=1;function i(t){for(var e=t.length;0<=--e;)t[e]=0}var d=0,s=29,f=256,_=f+1+s,u=30,c=19,g=2*_+1,m=15,n=16,b=7,w=256,p=16,v=17,k=18,y=[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0],x=[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13],z=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7],B=[16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15],S=new Array(2*(_+2));i(S);var E=new Array(2*u);i(E);var A=new Array(512);i(A);var Z=new Array(256);i(Z);var R=new Array(s);i(R);var C,N,O,D=new Array(u);function I(t,e,a,i,n){this.static_tree=t,this.extra_bits=e,this.extra_base=a,this.elems=i,this.max_length=n,this.has_stree=t&&t.length}function r(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}function U(t){return t<256?A[t]:A[256+(t>>>7)]}function T(t,e){t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255}function F(t,e,a){t.bi_valid>n-a?(t.bi_buf|=e<<t.bi_valid&65535,T(t,t.bi_buf),t.bi_buf=e>>n-t.bi_valid,t.bi_valid+=a-n):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=a)}function L(t,e,a){F(t,a[2*e],a[2*e+1])}function H(t,e){for(var a=0;a|=1&t,t>>>=1,a<<=1,0<--e;);return a>>>1}function j(t,e,a){var i,n,r=new Array(m+1),s=0;for(i=1;i<=m;i++)r[i]=s=s+a[i-1]<<1;for(n=0;n<=e;n++){var o=t[2*n+1];0!==o&&(t[2*n]=H(r[o]++,o))}}function K(t){var e;for(e=0;e<_;e++)t.dyn_ltree[2*e]=0;for(e=0;e<u;e++)t.dyn_dtree[2*e]=0;for(e=0;e<c;e++)t.bl_tree[2*e]=0;t.dyn_ltree[2*w]=1,t.opt_len=t.static_len=0,t.last_lit=t.matches=0}function M(t){8<t.bi_valid?T(t,t.bi_buf):0<t.bi_valid&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0}function P(t,e,a,i){var n=2*e,r=2*a;return t[n]<t[r]||t[n]===t[r]&&i[e]<=i[a]}function Y(t,e,a){for(var i=t.heap[a],n=a<<1;n<=t.heap_len&&(n<t.heap_len&&P(e,t.heap[n+1],t.heap[n],t.depth)&&n++,!P(e,i,t.heap[n],t.depth));)t.heap[a]=t.heap[n],a=n,n<<=1;t.heap[a]=i}function q(t,e,a){var i,n,r,s,o=0;if(0!==t.last_lit)for(;i=t.pending_buf[t.d_buf+2*o]<<8|t.pending_buf[t.d_buf+2*o+1],n=t.pending_buf[t.l_buf+o],o++,0===i?L(t,n,e):(L(t,(r=Z[n])+f+1,e),0!==(s=y[r])&&F(t,n-=R[r],s),L(t,r=U(--i),a),0!==(s=x[r])&&F(t,i-=D[r],s)),o<t.last_lit;);L(t,w,e)}function G(t,e){var a,i,n,r=e.dyn_tree,s=e.stat_desc.static_tree,o=e.stat_desc.has_stree,l=e.stat_desc.elems,h=-1;for(t.heap_len=0,t.heap_max=g,a=0;a<l;a++)0!==r[2*a]?(t.heap[++t.heap_len]=h=a,t.depth[a]=0):r[2*a+1]=0;for(;t.heap_len<2;)r[2*(n=t.heap[++t.heap_len]=h<2?++h:0)]=1,t.depth[n]=0,t.opt_len--,o&&(t.static_len-=s[2*n+1]);for(e.max_code=h,a=t.heap_len>>1;1<=a;a--)Y(t,r,a);for(n=l;a=t.heap[1],t.heap[1]=t.heap[t.heap_len--],Y(t,r,1),i=t.heap[1],t.heap[--t.heap_max]=a,t.heap[--t.heap_max]=i,r[2*n]=r[2*a]+r[2*i],t.depth[n]=(t.depth[a]>=t.depth[i]?t.depth[a]:t.depth[i])+1,r[2*a+1]=r[2*i+1]=n,t.heap[1]=n++,Y(t,r,1),2<=t.heap_len;);t.heap[--t.heap_max]=t.heap[1],function(t,e){var a,i,n,r,s,o,l=e.dyn_tree,h=e.max_code,d=e.stat_desc.static_tree,f=e.stat_desc.has_stree,_=e.stat_desc.extra_bits,u=e.stat_desc.extra_base,c=e.stat_desc.max_length,b=0;for(r=0;r<=m;r++)t.bl_count[r]=0;for(l[2*t.heap[t.heap_max]+1]=0,a=t.heap_max+1;a<g;a++)c<(r=l[2*l[2*(i=t.heap[a])+1]+1]+1)&&(r=c,b++),l[2*i+1]=r,h<i||(t.bl_count[r]++,s=0,u<=i&&(s=_[i-u]),o=l[2*i],t.opt_len+=o*(r+s),f&&(t.static_len+=o*(d[2*i+1]+s)));if(0!==b){do{for(r=c-1;0===t.bl_count[r];)r--;t.bl_count[r]--,t.bl_count[r+1]+=2,t.bl_count[c]--,b-=2}while(0<b);for(r=c;0!==r;r--)for(i=t.bl_count[r];0!==i;)h<(n=t.heap[--a])||(l[2*n+1]!==r&&(t.opt_len+=(r-l[2*n+1])*l[2*n],l[2*n+1]=r),i--)}}(t,e),j(r,h,t.bl_count)}function X(t,e,a){var i,n,r=-1,s=e[1],o=0,l=7,h=4;for(0===s&&(l=138,h=3),e[2*(a+1)+1]=65535,i=0;i<=a;i++)n=s,s=e[2*(i+1)+1],++o<l&&n===s||(o<h?t.bl_tree[2*n]+=o:0!==n?(n!==r&&t.bl_tree[2*n]++,t.bl_tree[2*p]++):o<=10?t.bl_tree[2*v]++:t.bl_tree[2*k]++,r=n,(o=0)===s?(l=138,h=3):n===s?(l=6,h=3):(l=7,h=4))}function W(t,e,a){var i,n,r=-1,s=e[1],o=0,l=7,h=4;for(0===s&&(l=138,h=3),i=0;i<=a;i++)if(n=s,s=e[2*(i+1)+1],!(++o<l&&n===s)){if(o<h)for(;L(t,n,t.bl_tree),0!=--o;);else 0!==n?(n!==r&&(L(t,n,t.bl_tree),o--),L(t,p,t.bl_tree),F(t,o-3,2)):o<=10?(L(t,v,t.bl_tree),F(t,o-3,3)):(L(t,k,t.bl_tree),F(t,o-11,7));r=n,(o=0)===s?(l=138,h=3):n===s?(l=6,h=3):(l=7,h=4)}}i(D);var J=!1;function Q(t,e,a,i){var n,r,s,o;F(t,(d<<1)+(i?1:0),3),r=e,s=a,o=!0,M(n=t),o&&(T(n,s),T(n,~s)),l.arraySet(n.pending_buf,n.window,r,s,n.pending),n.pending+=s}a._tr_init=function(t){J||(function(){var t,e,a,i,n,r=new Array(m+1);for(i=a=0;i<s-1;i++)for(R[i]=a,t=0;t<1<<y[i];t++)Z[a++]=i;for(Z[a-1]=i,i=n=0;i<16;i++)for(D[i]=n,t=0;t<1<<x[i];t++)A[n++]=i;for(n>>=7;i<u;i++)for(D[i]=n<<7,t=0;t<1<<x[i]-7;t++)A[256+n++]=i;for(e=0;e<=m;e++)r[e]=0;for(t=0;t<=143;)S[2*t+1]=8,t++,r[8]++;for(;t<=255;)S[2*t+1]=9,t++,r[9]++;for(;t<=279;)S[2*t+1]=7,t++,r[7]++;for(;t<=287;)S[2*t+1]=8,t++,r[8]++;for(j(S,_+1,r),t=0;t<u;t++)E[2*t+1]=5,E[2*t]=H(t,5);C=new I(S,y,f+1,_,m),N=new I(E,x,0,u,m),O=new I(new Array(0),z,0,c,b)}(),J=!0),t.l_desc=new r(t.dyn_ltree,C),t.d_desc=new r(t.dyn_dtree,N),t.bl_desc=new r(t.bl_tree,O),t.bi_buf=0,t.bi_valid=0,K(t)},a._tr_stored_block=Q,a._tr_flush_block=function(t,e,a,i){var n,r,s=0;0<t.level?(2===t.strm.data_type&&(t.strm.data_type=function(t){var e,a=4093624447;for(e=0;e<=31;e++,a>>>=1)if(1&a&&0!==t.dyn_ltree[2*e])return o;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return h;for(e=32;e<f;e++)if(0!==t.dyn_ltree[2*e])return h;return o}(t)),G(t,t.l_desc),G(t,t.d_desc),s=function(t){var e;for(X(t,t.dyn_ltree,t.l_desc.max_code),X(t,t.dyn_dtree,t.d_desc.max_code),G(t,t.bl_desc),e=c-1;3<=e&&0===t.bl_tree[2*B[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e}(t),n=t.opt_len+3+7>>>3,(r=t.static_len+3+7>>>3)<=n&&(n=r)):n=r=a+5,a+4<=n&&-1!==e?Q(t,e,a,i):4===t.strategy||r===n?(F(t,2+(i?1:0),3),q(t,S,E)):(F(t,4+(i?1:0),3),function(t,e,a,i){var n;for(F(t,e-257,5),F(t,a-1,5),F(t,i-4,4),n=0;n<i;n++)F(t,t.bl_tree[2*B[n]+1],3);W(t,t.dyn_ltree,e-1),W(t,t.dyn_dtree,a-1)}(t,t.l_desc.max_code+1,t.d_desc.max_code+1,s+1),q(t,t.dyn_ltree,t.dyn_dtree)),K(t),i&&M(t)},a._tr_tally=function(t,e,a){return t.pending_buf[t.d_buf+2*t.last_lit]=e>>>8&255,t.pending_buf[t.d_buf+2*t.last_lit+1]=255&e,t.pending_buf[t.l_buf+t.last_lit]=255&a,t.last_lit++,0===e?t.dyn_ltree[2*a]++:(t.matches++,e--,t.dyn_ltree[2*(Z[a]+f+1)]++,t.dyn_dtree[2*U(e)]++),t.last_lit===t.lit_bufsize-1},a._tr_align=function(t){var e;F(t,2,3),L(t,w,S),16===(e=t).bi_valid?(T(e,e.bi_buf),e.bi_buf=0,e.bi_valid=0):8<=e.bi_valid&&(e.pending_buf[e.pending++]=255&e.bi_buf,e.bi_buf>>=8,e.bi_valid-=8)}},{"../utils/common":3}],15:[function(t,e,a){"use strict";e.exports=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0}},{}],"/":[function(t,e,a){"use strict";var i={};(0,t("./lib/utils/common").assign)(i,t("./lib/deflate"),t("./lib/inflate"),t("./lib/zlib/constants")),e.exports=i},{"./lib/deflate":1,"./lib/inflate":2,"./lib/utils/common":3,"./lib/zlib/constants":6}]},{},[])("/")});
</script>
<script>// Encoding conversions
// modified from https://stackoverflow.com/a/11058858
function asciiToUint8Array(a) {
let b = new Uint8Array(a.length);
for (let i=0; i<a.length; i++) {
b[i] = a.charCodeAt(i);
}
return b;
}
// https://stackoverflow.com/a/19102224
// TODO resolve RangeError possibility here, see SO comments
function uint8ArrayToAscii(a) {
return String.fromCharCode.apply(null, a);
}
// https://stackoverflow.com/a/50868276
function hexToUint8Array(h) {
if (h.length == 0) {
return new Uint8Array();
}
return new Uint8Array(h.match(/.{1,2}/g).map(byte => parseInt(byte, 16)));
}
function uint8ArrayToHex(a) {
return a.reduce((str, byte) => str + byte.toString(16).padStart(2, '0'), '');
}
function uint8ArrayToByteStr(a) {
return "[" + a.join(", ") + "]";
}
// https://stackoverflow.com/a/12713326
function uint8ArrayToBase64(a) {
return btoa(String.fromCharCode.apply(null, a));
}
function base64ToUint8Array(b) {
return new Uint8Array(atob(b).split("").map(function(c) {
return c.charCodeAt(0);
}));
}
</script>
<script type="module" data-info="https://stackoverflow.com/a/43834063">
let l,e,t ='script',p=/(from\s+|import\s+)['"](#[\w\-]+)['"]/g;
let x='textContent',d=document, s,o;for(o of d.querySelectorAll(t+'[type=inline-module]'))l=d.createElement(t),o.id?l.id=o.id:0,l.type='module',l[x]=o[x].replace(p,(u,a,z)=>(e=d.querySelector(t+z+'[type=module][src]'))?a+`/* ${z} */'${e.src}'`:u),l.src=URL.createObjectURL(new Blob([l[x]],{type:'application/java'+t})),o.replaceWith(l)//inline
</script>
<script type="inline-module" id="wasm_loader">
let wasm;
async function load(module, imports) {
const instance = await WebAssembly.instantiate(module, imports);
if (instance instanceof WebAssembly.Instance) {
return { instance, module };
} else {
return instance;
}
}
async function init() {
var b = "";
b+="eNrsvQt4XtdVIHre5/wv6bct27LkxzknTpHzaJXElp3EcXycOI7rpEnbtA1toWkbN8nvPPxqaS9"
b+="u/AOeji64oJnxpWrHAwI8WIBTBLgX06ap2hpGkJSKwb1RueGO5vvMHQEBBDcMgnHru177PP7/6O"
b+="HIcUIqP/6z9177ufZaa++19zrraB8+8ISuaZo+rK98yDh8WHtIh/8Q0A8/ZB7GOP5CRMcf6/Bhz"
b+="qI//ZB9mCMapGsagyDoHJZ0CUCSe/jw04elrqef5tqfxlTJWeDA0wyDH1uVhPz8OMStH+KuPI1p"
b+="T8d9hMog6Wnz2+63XEOL/+imo+m67mmabToQJtAi0zR1zdR026tohmMammlqmlGyzIpj6hA0l+u"
b+="aoTueZyHYXGYbEIC/OlQBWUuQC6oxLdOGWipQwPZMbs+Bf6ZVNG1bCjimBlVCpSZETa0IFTo2do"
b+="yyYykbatQXQ24L/kN5KKWZtgHpUKoN8nF2Q7fLWAr+lbEyHccC2Vdohmk68Mcsl7ENGgt1H/oKI"
b+="OhPwdIcowrNO05Vs3XEASJAa7Eos4l/WvSCaeidGlULQMvyPKjC1nXsJebQNA+Q4RAODcPQHF2H"
b+="WgCn0FseOaQD3Kb+GhhcgkMxk8nAP9ALzbUd0/NwEFCHDnkREWYFRg5VQrcxG7QBEBPqMWEYug5"
b+="oonY0rWRCCd1QdboeB1yDBm9A17FSvRUr0KlTHqLYMWyDhqLpFg0HxmvzZJjcM8xLQ8XRwUAxoE"
b+="Mu6IOBo+JZhzHpMHbNtm19KQ7B07CjMGTNMnQPeuNh2KaJ1YjUNNtCarNL2C42hYPRhQR0s6hL+"
b+="4RsA+vEsK3bQL+WY1mGjT3hAVvYJx2zIrFohIoCTgnSAVVLfzyq0Ybc8Kcd6QGRgpijqrHhDldL"
b+="MYpmA4KSP5hUQCrTmVhtQL4BJFqAPyZWY5SwrzgLQFGWQTNlCGm0wvChMh17h+OGWBELc28g3aC"
b+="mYCwaF8BUu6AjSuEf/CkUXfoDhOjqe/X/BH+BH7QbnQLInaheH9ZK7s97Pc4Tu594av+nDG3JI7"
b+="sPfmj/k4986BMffvzjuw986MBj/9tu7Ztu5UA6WfsFp4QJB/Z86COfOrhb+zWn9Egq+nsM3SvRX"
b+="2eoin7ZKVPZxx7h+G845UfS8a8w/IkDEj/F8Dj+LNf+0YMcfYZrV9GvOovVCJ7c/UlIf+rjTx7U"
b+="fpcHsPepxz/F2b7oVB7JJDynWpVe/qZqVeJfE7gaxZDAVXyYe/XERzn6W9wrFf26U2V8HXj0w/t"
b+="3c9pvO9VHGtO+wfn2ptN+h/Nl0r7pLMZ8H3nsEx/e/6H9T/0Yp/6xTWNvSP1zuyPJ+9GnnnjisY"
b+="NP7H7y4AGGTtkdj0wPPZpuB3rKqf+cbidO/Ww6716V+i/pvHHqzzrtQgNPfvjgx2FUqbH9L7v9k"
b+="elgP+csonKU8tiTD+/+5O4D2i86ix5pSvxlh0b98O6P7v/U3oOPPfUkw6X9CzzqaaB9zqKHd+9/"
b+="7BO7kWY/tv+pJ2CQ2lnXwy4hHWpnXOcTkOFjn9J+z3V3P0mVaF92XalP+4oL1PXk7v0fPribSEx"
b+="71m2Nye3h3Y/s3w2E6laEQiThOVe1+sSHDxzcvf9De3Z/SvuaW5VEiHEntd/AyqR2wusB7ZTbDn"
b+="P3kcee3N2ItwPaM+7yj+7fjZkbh6t90V2hijWhQvu8W3gOxFakl47rf2h+wX3ePeY87/6U/fPu3"
b+="zvvOe7+NUT+b+f78PsX5vMA/Gfn1+D5D84x43nreXcIUn7TxfT/CP//CnL9if28+x34/wsQ/09u"
b+="vzvgPmcPu5OQchyg/wVS/wD+/z78P2oeNf+nNaz/vj1pf939W/j/D/T8hvtN81vG8+6U9W3nJ51"
b+="/gPjP27/tfgOgz7u/DOXO2dzKiPtHzhln2P5p41+c89Z564w5ZP6WybC/cl7Avlrf0f/Y+o79R+"
b+="53nX/v/JM1BvX9k/0n9i+7R6DMP9oDzk+6v+T8N/2bxtfsn3L/EGr8CftPna9Yv+Ked7D0f3BHr"
b+="X/jfs46o/8fgIyvw3j/yD2v/67+nPGn1t/pn3PPGH9i/br7i0bxF/9m2bfc//g+Y89h7+mrtGjS"
b+="3RMaazVf7zLqRqD5RjSi1Xy9WneNrcZWHxK6jHvus7YCYOseSce0OyFJj44ZtS5Dg2J61MdBC4J"
b+="HOWhCcNCohbsw4kDkFKe7EBwyautMLXgS2+01Ahuq79drYSuABgBkaOETG03szSCk3uNL5AxEii"
b+="oyApGCRKBYP7R0vxTs0yEJngPyHJLnMDyjURifEfXptWhYq37L7vAL/pNYSZEf9/DD8J1nfPeZb"
b+="f5njoRPbDMPhU9tMaj4Wb3mP7XN791iYKYnthkEwhai0w0g/VD4xBYDOxGdANATMQha6McuuT3G"
b+="MXw6PQZ2ORqypGvVL5kc4ETVU8CAU/PvAcyFTwoSIF7EuCBlDOIFjD8l6HOwijNWLfQwdS8PzVg"
b+="HqAn3AWIcjg3p4X5Aj8SG9fDARnNUwazwIKDSwQE6NIFLIPgsB29FjHBwMwRf4OBtEDzHwS0QfI"
b+="mDtyPdnHACop9TThABaFMt0qJi9R+RPHqNWvBO/6mTwTb/wMngDv+Jk8Gd/v6TwXb/yZPBXf6+k"
b+="8EOf+/J4G7/4MlgJ9axKXTwsTl0gUCjV/7oJ77rBKujv5j8+s84QVf0tyM/8XkzWBf99p/1Pu8G"
b+="10j6tZJ+naRfL+VuEPiNAr9J4OsFvkHgPQLfKPBNAr/Zt4HGTSBuKyj6WlCAeBvEl0J8GcSXQ7w"
b+="d4qsgXoL4irJRQmJ0akEZnsPwrOBkw7PFd31nT/AuTAaUrMFkePrwBN4IAiwGz7cjXK8FIcLheR"
b+="XC4bkW4fC8BSkI8r0bnuNWLahiOjwXYTl4LsZ0txYgWQ3A816Ew7MTy8HzHZgPnivhWYfnfUhId"
b+="i14K5IVPN+GPAvP7lkxA6OlUePoEQuIDcQKYgexhNhCrCH2AIsxxtUMqBlRM6RmTM2gmlE1w7NQ"
b+="grnVb/Wv6SFOXNFjHAUq90s9IIbguarHOILP9h4Qh/Bc3mNcQA5d1mNM4XNpj/EKPtt6jEl8Fnq"
b+="Ml/FZ7DEmhKPPC0eP41PrMV7Cp9VjjOHT7DHO4dPuMUbxeXOP8QI+N/UYI/jc2GOcxWdPD0kbf0"
b+="OP8Sw+1/cYZ/B5U49xGp839pDI8W/oMU7h8/oeYxCf1/UYJ/B5bQ/JHX91j3Ecn+tE0nSRpHk3i"
b+="0EWK4B8w78d8AAix98GeMDnFsADPu8APODzNsAD4uNOwAM+NwMe8Lkd8IDPWwEP+LwL8IDPJYAH"
b+="fO4APOAzAjzg827AAz63Ah7wuRPwYIjkuyUl5txaqPmtILJigdWng7hykTbtWmhDZq8WtoG85wy"
b+="3UKjXTqSmi7+9dq36VRtWsbWYvSvOvpZCUJ3tL0aIE0MWq4rWNldyFWZdF2e9KqlkEULcGLJIVX"
b+="JVcyUhZr0mzhomlVQRUowhVVVJ2FgJBfy3J+iK140kqd+shRbkgSqXxlW+nUJ9uLaMAdxsxvAow"
b+="gZo0egz8XfUrFVPmL7ld2NVy+OqulVVpt+IPKijpbn827B8e5z1bUn5RrxB+Upz+bdi+VVx1rcm"
b+="5RtRBuXLjeUVBmFoCkeer6VHP+TCNFjx6AGl1T+zIdNKbPfquImVPF8WDTHO1ImZ3hJn6lSZKul"
b+="MHZjph+JMHSpTOclkRJNOQzd5dt/OIE4MSwqo+QWsdFlcaSEhp2TaS4qSCs3kGGD5a+OsQVI+hy"
b+="eC5vI+lr8uzuon5XPYwW8uvwbLXx9nXZOUz+GENfmccEsWVwUVtfxGAUH00oit6Wl+HuQ+D0q/s"
b+="kT+XSTNGeib4DOQNsFnoOrvzkDVt2SoekVC1XmS307N5opZxH2upJ+bkM+V73MT7blSfe4CvTSD"
b+="QLea2Jmo4hLk9w8CLb84Cy2/OAstvzgLLb84Ay2XMrS8OqHlWYTz6hmE8zzk8jxE8jykMeJmRQo"
b+="v7jTSeMWrkcb34VJxQ5z9vqSOxinPJ+N3YPkb46zvSMo3kkQ+Ld+L5W+Ks96blG8kmWkI2mogHM"
b+="33MgRtyQ5XCNqtVcdwPhonHPK0pOGNswrwShreOHUALydwlj2Zfq3gRFEPSn4rau8rUNXu01H57"
b+="wJdIliPz+N6sAGfA3rQQ9q9HmzE56AebCItXwf1D55DOp4UdIHugscEXaDL4BlBF+g2eEDQBboO"
b+="nw6c1fl0YETH04Eu0I2Cbfg8pwd34HNMD+7E50t6sB2fo3pwFz7P68EOfE7owd34fFnnE4JxPXg"
b+="An6/owXvwOaUH78XnBT14Hz4n9eBBfB4xgh/GZ68RvB+fR43gA/isG8EH5cgopmNs3gh+hJo3gh"
b+="+l7hnBh6h7RvAQNW8EH6bmjeAj1D0j+Ch1zwgepuaNYDc1bwQfo+4ZwSPUPSN4lJo3g8eoeTOoU"
b+="ffMYA91zwwej5kuVuBQMsKGXqulien+JuH4ZWtm4UjwGYQjwWcQjl+2pheOKdHYAcr3Cla+PyjK"
b+="9wdE+X6/KN8/LMr3g6J8v0+U7/eK8v0eUb4fEOV7pyjfd4vyvUOU77tE+d4uyvedonzfIcr3NlG"
b+="+I1G+t4ryfbso31tE+b5NlO/NonzfKsr3zaJ8bxLle6Mo3z2ifG8Q5Xu9KN9LSPkupM/0kJ38x0"
b+="X53iPKd02U78dE+X5UlO9HRPn+mCjfu0X5fliU74+K8v0RUb4/LMr3Q6J8f0iU7x8V5ftHUsp3a"
b+="e6br9KbcfO1eo6br9ULm6+ZtOXZFOXZdORXqR6vzmy+CnmbryV5m6+Cooolb4LNV44OsSRv81XK"
b+="23wtWVCFX1dVuDTdAc8PpDQuzFEaFxak8RtQFS4sSGPGTSmrCl8+aTwPLXgeCvAPgu5bSuu+Haz"
b+="6XiOqb5eovutE9V0tqu+1ovpeJ6rv9aL63iCq742i+t4kqu96UX03iOrbI6rvRlF9N4nqe7OouK"
b+="aowJaowJqowLaouK6owEVRgQuiAjui4i4VFXiZqMDLRQVuExV3lajAJVGBV4gK3N64i2DVdJuoo"
b+="ltENb1DVNXbRbW9U1TZzaLabhdV9zZRje8SVXiJqMY7RFW+VVTru0WV3iqq9U5RtaOYyVImEa3N"
b+="dESmFMI2OumlrU28AXla0vBGBgB4JQ1vpHKAlxP43PReZXqS6v27osO18F0VrVTWS9GRwWEt2hA"
b+="9C4/qM7ZW8vV15qCBNjIwLiN4Au0rgKtuJuU5GoHgJg6eheBGDj4LwQ0cPAPB9Rw8DcGbOHgKgj"
b+="dwcBCC13PwBASvY6Ucb55NuWE25SbZlJtkfF7TY/SbcqNsyo0ycvhRGC7r9VEv7mc4eASCqzh4A"
b+="dpYzsEpCC7j4CsQXMrBlyFY4OAEBIscPA9Bl7uGl/KWXL6bcsluyiW7KZfsplyym3LJnojQ1HkJ"
b+="oAHo6HZBAwS3CRoguIWDxyF4Gwf7IXgnB49BcDMHj0LwVhkvBO+S8aKY597eAYhz+fShz+VTibr"
b+="Lpw0XHD6tmHL41OEVh08xJtHIph9Q9s7IS05z3kmhPiSzQYDdn4bdT6EBhE1A08oKKAmOJMEzEN"
b+="yFZ5jJ3uFJsWwaR9F73k2bLz0plk2jCDrXANLZHgpBZzOgXVQ1SnJslYycntxmHQqf3EIWThDBn"
b+="Meyxk6jTmo52KXYGLvcrRaRv3FiYR2vLCgWuvFnfbVu+/fgRNtoaMQzMUCb4X5b4aqVTQfSwqLX"
b+="FmHRJczLzcQdw7pJ5l9X/XkrY4/VLWTkC4tn+scFffxZW/0NK64Rl5WzigDb1TJHJeOasVA7/qy"
b+="snrIySPqsm+nBWHIYqYcaLwQ7yUzvnF7DlYBsg3AndgqebWxfFyyNtMA2tyLPRHqNj8dUh0d0X6"
b+="uFLq9VNTatAiSGZvWiA0vPUp8Cpt/mOxhwYJvnYsD1i76GAaI8uxYu800kUSUwTd4W4Go7AdDlv"
b+="pOG8gI/jtApgLb7bhrKy/skrdQOdk5LQzUK1RGBEw4ajFhpqMU1A3QbGv78ly9+vu+vkY+gsm1o"
b+="GfT/fvbzfTcpzYkkxLiT2sHZUd24q2KKwQk++x00FElrGY4UTwq+7Pi6D/mxJ7xH16BbmHncwSD"
b+="ugVM1jNrUQ5PZPlO3NX3XUFmZtRsWkljcg6haS3diebr8eNKJwWwnBubfia50J/xMJ9rT5SdVJ9"
b+="x0at2Zdwc2pTvQneqAHW3dw1uoFAfBUow7wCqbwELII96o4k9b9Ttopqjh6XQJbU4xB9nNcnErt"
b+="O+r6BiC0UXGQZRFQA3MaXigHU26tbVaayl6+Vdhpb82eulX1UqPvXnlJMS+ammlL73XeJyNc8fF"
b+="ONegUcS2t5t9fRewuqbMb00Iivkt7HmV+a0FQTS/vYdtbjVlfgu6ozK/fcrXaMNHwgtYvQogMb8"
b+="V+1I0yr1XLGLJFrekImyLK7ayGpnfvlMK1nW2ce2T54A8yUh26x60J0zU+aJPpqolftzLD+D8Z3"
b+="yPrW9pjdqbMrHdm12j9qZMbPdm1yhZdaJjAHoyBkELvdgjr8c4IjZ7ddoykqytK+vbOsnagbT1L"
b+="VrT3puyrkVr3FKeNe5ewR6RIjBVSDa5+1LnE2hvO+DEtrgHMra4BxNb3AEr/DhgEmfoBJvRoiw/"
b+="lZjcnk5Mbp9NTG7Pxia3yiaXKOeYw/dqxx3cxQM7KOtbjaxv34X2tXegfe2daHO7He1w70KL3B1"
b+="oh3s3muDu9D9+Ek1PYenltWJ96CXWt2vE5nKd2FxeIzaX10r6dZJ+vaS/VcrdKPCbBL5e4BsE3i"
b+="PwjQLfJPCbBX6L75DlrefbZGdahDhb3tqg7ZigyThkg7oa4mWId7D1bdbqlrYAASgUvruHrGYbr"
b+="W7RmjYUq9xdOVa3sJAGV8vKi4bRdcj3QI7VLazfZEM9m7UtbA9QN8MNRnB/o9Uty7jYbnl6zMBo"
b+="adQ4esQCYsMWC1zEEmILsYbYAyzGGFczoGZEzZCaMTWDakbVDM9CCbD7qKJSQbqUXPCV5YJvtVz"
b+="wrZALvna54FsuF3zL5IJvqVzwFeWCryQXfJ5c8LlywWfKBZ8tF3yWXPA5csF3i1zw3SwXfJvkgm"
b+="+jXPD1yAXfBrngWy8XfDfJBd+NcsH3VtCJxAr3mFjhkuxb02Mc1VlnOiJWuCBpHiApKPd/RdYA6"
b+="H7vDrnfu13u9+6U+70tcr+3Xe73bpP7vbvkfm+z3O/tkPu9Nrnfu5vv9+ieU4xtR8QY9yw+3w5o"
b+="METw3ZqSci7ud6qZdVgHaYXLYd3GneGtWbPSWyk0ZSVCk7T0KUvW6auzdrOsi0N1jr8kaze7RFV"
b+="0dXMla7N2s2uTSsiC12s4KIJK1jZXclXW2vGqpBKy4C01nCZBJVc1VkIB0KNidMXLRpLUa6KJ8q"
b+="6saeYu3q2arLuHVjOGh814p1MnJWeYj89s/4as8ewNqirLb0Qe1NHaXJ6Md1c0HHtT+Ua8DfOhY"
b+="UN5Mt5d3XD2TeUbUTbMJ4eZ8gqDfU7qnRszs9F0RYnl0Q/wdV/BX5W1q+Uj9AGLhhhnWpm1q12p"
b+="MrWkM3VmDcA7VaZKkkltHfvSRzY4u7sYJOfZZQU0/WLWJrqYkFMy7WVFScVmcgyzxrNhUj6HJ8L"
b+="m8kHWeDZIyuewQ9Bcnox339pwPE7lczjBz+eEW7O4Kqpo+mD/1oReGrE1Pc3Pg9znQelXlsi/i6"
b+="Q5A30TfAbSJvgMVP3dGaj61gxVdyRUnSf5ndRsdswi7nMl/dyEfK58n5toz5Xqcxfo5RkEut3Ez"
b+="kQVlyC/fxBo+cVZaPnFWWj5xVlo+cUZaLmcoeU1CS3PIpzXzCCc5yGX5yGS5yGNETcdKby400jj"
b+="jlcjje/PGs/en9TROOX5ZHxf1nj2vqR8I0nk0zIZ765vuLuk8o0kMw1BWw2EY9J7spmjLtrhCkH"
b+="zBaHZNOGQpzUNb5zVAb6gjOGNUzfAF5QD6gJyqrFfHZwo6kHZr6LyTge9dbmxOyI3h0fl5rBPbg"
b+="6Pyc1hv9wcHtfxHVC6odwsN5S3yQ3lFrmhvF1uKLfKDWUkN5Tb5IbyDrmZvFNuJrfLzeRdcnO5Q"
b+="24m75abyZ1yM/l2ubl8j9xMvlduJt8nN5MPys3lD8vN5PvlZvIDcjP5Qbm5/BE+MCqmLiBfEJvb"
b+="YbG5PSs2tyNic/uS2NyOis3tObG5HROb25fF5nZcbG7Pi83thME2txcMtrmdNNjm9hUDbW7pQvO"
b+="JmOeU+tZBtg4jWdPbrU2i8cvWzKKR4DOIRoLPIBrpCnIa0ZgSjB2geXew5v0jonl/UDTvD4jm/X"
b+="7RvH9YNO8HRfN+n2je7xXN+z2ieb9dNO+donnfLZr3DtG87xLNe7to3neK5n2HaN7bRPOORPPeK"
b+="pr37aJ5bxHN+zbRvDeL5n2LaN43i+a9STTvjaJ594jmvUE07zbSvIvpAz1kJv8JUb0fF9V7j6je"
b+="NVG9HxPV+1FRvR8R1ftjonrvFtX7YVG9Pyqq90dE9f6wqN4Pier9IVG9fzSlepfnvvUqvxm3Xmv"
b+="muPVas7D1mklXnk1Nnk1DfpXK8ZrM1quYt/Vqy9t6FRVVtL0Jtl45GkRb3tarnLf1altQhF9XRb"
b+="g83fHOD6Q0Ls5RGhcXpPEbUBEuLkhjxk05qwhfPmk8Dx14HurvD4LmW05rvh2s+F4riu86UXyvE"
b+="cV3jSi+14nie70ovm8VxfdGUXxvEsV3vSi+G0Tx7RHFd6MovptE8b1ZFN9bRMG1RAG2RQE2RQF2"
b+="RMH1RAEuiQJcFAXYFQV3mSjAy0UBbhcFeKkouKtFAS6LAtwhCvCKxl0Ea6Z3iCZ6u2imd4qmulU"
b+="02+2iyd4mmu1douluEc14h2jCbaIZ3y2a8mbRrHeKJh2JZv120bS3xUyWsoeoNtMR2VEI27BpbL"
b+="WJNyBPaxreyAB1Ns2N4Y1UXmfT3Lp+CXqvmJ2kOv9utLx9t1jeDv8mWd5O/WZsj0OWt0/hcwgtc"
b+="Nmw9pbEsPbmxLB2U2JY25MY1m5IDGvFCPc4BG8Ui1IIvlUsSmMjXLp1NuV22ZRbZFNukcUSt1cs"
b+="cI+IBS7dJqJhbUdiWFtODGtXJ4a17Ylh7fLEsFaMcF9KzG3HzNh29xwEvdhNFlncLhWLW5cta+m"
b+="CXSxtR8QC96xY5qYkaHJawna1WxO72jsSu9rbE7vaLYld7fbErlbMcS84sQ3uFAR3yHAh2MadvV"
b+="MMbu8Sg9u72bAWzxpeFkPbCYfPHM47fIYx7ojZ8rvSxrXvohCaHM9olIvWtk8m1rZPJta2ym4Kg"
b+="vfg+WWyc3hKjJpi69rEcukpMWqKrWvTIJ1NoRB0OgO6hw2BXba0Ivump9Dw9qktZNwkJrpHsnZO"
b+="o05qMbhHMbGmLGKHleEti+p4XUnZxdZt/142kYwNb9lGtTc2ta2y2UBaVEwpUeEL63IzccdS9rM"
b+="/b2VMsbrT5rPjTrZ/etp8lgxvuUZcVGLD26pa5KhkXHPKyu+UlUESGd4mPWDDWzbEe0EPTV4I2P"
b+="T2rF7DlYAMg3AndhxNbtm2LlgWaYFDprcmGQTi8Zjq8hndN2uhx2uV2OACGkMLzWph0+1bygY3t"
b+="rj1MOD5JWWVC7RHxrU5JrDDthjm5hrXxoa5K3wvDfWyhrlenlEvGeaOOWguYqehNtfcaHpbbzC9"
b+="Zc2JjfOd1A7OIdNbQ8xNLGX822gYSsWTgi+jFTnkw57wHh2NPMnKluw9zazV67BNPbSY8TN1W9N"
b+="3zfLn0A0byTPugZjeqk60N9r/Sidy7H/n2YmudCf8TCdWNNr/Uie8RoPceXZgU7oD3akOOGh66z"
b+="RwkJjeemzpijV3GcQSZbS71XxdjGjHxYj21Ckyoj1+ShbtF99r7D1sotnscEF82qJVanAfu6EN7"
b+="hcXow8w3+GdBC6deCeByyK97QRLHt5NoJAjf5lA+XhHEU1YbPk3ZrHF34jFFn8wVLLcg1WT/GiO"
b+="wHMFr8NkqXcG4O/HPutsAYh+OReLhSC95FhgC8BJD12fgoApsAXguFcj/599BbYAHPXYjyesiLj"
b+="VxYWP/HBOwHMdlvPYjWifxwaNdXi2oANfFDj02pFe/bT/Xvoli+WUn98ZPfzC5tpAR74gj9BMWK"
b+="f3wqzYay88YZ9EVtCnDBBH/KbSfpD5dN/3ATQIPoB0soJUnvDgRlgiViBos38Awx0+JZFrvNs4q"
b+="Z2T2jFpCycZkGSeQSE3ZdR4BxbvKPz9IIdMfo7Lc1Se9CITbGGelT3LGTNjWbwfF+EDW4wJTD5A"
b+="C+TLVBJXYEgfS9Jf4nRYfvdv4a3Ofkp/wWRxz51iw+EztE4OpQ3CpmjvjCbTZAi8H1FSQVK/Tfi"
b+="o4ndIqAWTN6tIzKllTN6iIlkpMkT2w5M0k6+4vLm/4LKScNxj5aDf4039MY8v9/o8ViaOeqxE9H"
b+="qsPBzxWGmoe6wsDHisJJzwWDk45bFSMOiRCWziv3f/yeAetBe+lz3zuuyZN2UbfLVYhF4jFqHXi"
b+="kWo8tvaLenKr6vy86r8vio/sMovbI/ANwp8k8BvFvgtAr/Vt8U22CEfsyWILxXrV7QNXgNxH+IB"
b+="xFshvhptg8kG+D2z1mySTW0rlcZasDZHbGttsq0tUatsmezGPVYjUCNSI1QjVhhQGFEYmgWTZFs"
b+="r7/HB3v80vizXCloFPoMeAzc2vt9jDFqsVZyw2LYWz69QFThu8Ra/32Kb2mMW29jiLhfZ6KjFbN"
b+="Rr8db/iMVbfXopD7b+F0QVmDLZSc4rJt/UEXuCxkTMBeoS8RtoO+dNvqkjtt0gL/Gtl5f4bpKX+"
b+="G4UVeMGUTW6RdW4WlSNa4W9ryH2fj/LiNh1Fe3uT9tofgl4sHn3f8pmrWDQ5hvHEzZrAwM2awnH"
b+="bb6h7LdZmzhmy2t8NmsVR22+4cTXTVBtOYLPewAPNt80XkB83At4sEQ4vC1lGlpoMq49Y8LWqMD"
b+="72VBsLZc2nFiOObFgqRdqvOvic7LNDU7VoCY7364W6ljRXP62RruQgnKK23jAA+U7mstviXO1J+"
b+="UXZV3ZLlLl2xvLs8fyd6TemtUbBXw0TDbH78ha0/Ix2BmbNyiN1rSI0imb37hht9W8mOOJmOOvw"
b+="6rWxFWtU1U1n0RDHS3N5ckVrd/gzoHKNx1t2nRW0VD+eiwfxFmvT8o3ogzKlxvLKwzC0KY5k64X"
b+="5F0bHj2gdAZr2iE+bokz5VrTDvGZS5wp15p2iN+Jlkwwb15DN3l238EgOaJuTU4lS1lr2lJCTsm"
b+="0typKKjVTYq6FOJXP4YS1zeVzjcOpfA4nXNVcPteal8rncEKYzwlvy+IqdiCRvnZ6W0Ivjdianu"
b+="bnQe7zoPQrS+S5l4gp+s69REyRdu4lYoqqvzsDVb8tQ9Wrp7lEFFHf7P/zEuX7PET7PKT63AV66"
b+="wwC3WliZ6KKS5DfPwi0/OIstPziLLT84iy0/OIMtNyaoeWr8y4Rc4Xz1TMI53nI5XmI5HlIY8RN"
b+="yikgQnOl8epXI43fjUtFd5z93UkdjVOeT8bvyrrCfVdSvpEk8mn5nVlr3ncm5RtJJp+gmalThNN"
b+="wpziky5aWRw/Iy79ThDwtaXjjrAK8koY3Th3AywmcZU+mX6s5UfSBVr5UpEu3MyYrys+afEl41u"
b+="RLwhGTLwlfMPmScNTkS8JzJl8Sjpl8SfiSyZeE4yY7rjkvDnAmTLmNM1nhnhSHOa+Io5wLJivcd"
b+="UsUbosV7imTFe6jFivcfRYr3McsVrh7LVS4QaG3QM9GxdxiVfuExday/Rb7pD1lsX3skMX2sact"
b+="to8dtNA+lg5QSqlLxSM2m8tOWWwue8Fic9m6zeayx2w2l+212Vz2qM3msn02m8uesNlctt9mc9n"
b+="jNpvLDthoLgvN23h9Bs3bwVPUPTvYS92zg30x08UaG9vT1s3sbYHRJB1zDWpT0jHXoDYlHXMNal"
b+="PSkS4Wp5GOKdmId6B8x4aGnqRuPyTq9odE3f5RUbd/RNTtD4q6fa+o2/eIur1L1O23i7q9U9Ttu"
b+="0Xd3iHq9l2ibm8XdftOUbfvEHV7m6jbkajbW0Xdvl3U7VtF3b5F1O2bRd3eJOr2RlG3e0Td3iDq"
b+="9npRt28SdbuN1O1S+qCLDGr3ibq9V9Ttp0TdflLU7SdE3X5c1O09om7XRN1+TNTtR0XdfkTU7Y+"
b+="Jur1b1O2HRd3+qKjbH0mp261z3321vhl3X1fPcfd19cLuayZ1eTZNeTYl+VXqx1dndl+l6U24Gn"
b+="ZfJUUVbW+C3VeOEtGWt/tqzdt9tS3owq+rLtw63QnPD6Q0Ls1RGpcWpPEbUBcuLUhjxk1rVhe+f"
b+="NJ4HmrwPDTgHwTltzWt/IpB7XWi+14juu+1ovteLbpvt+i+N4jue6PovjeJ7rtedN8Novv2iO67"
b+="UXTfTaL73iy67y2i+94qOq4lOrAjOrApOrAtOq4nOnBRdOCS6MCu6LjLRAdeLjrwGtGBl4qOG4g"
b+="O3Co68GrRgf3GXQTrprtEF90puundoqu+XXTbSHTZbaLb3iG67lbRjbeLLnyX6MY7RFe+U3Tre0"
b+="SXbhPd+l7RtW+PmSxlJ1BtpiMyehC2MacxqD3DFuMxvJEBzrBZeAxvpPIz7LFZ4HPTe5UlRqr37"
b+="0GL2veIRe3x3yGL2nO/k/Vlu18sRA7IBbEtF8S2XBDbckFsywWxLRfEtlwQ23JBbMsFsS0XxLZc"
b+="ENtyQWzLBbHNZrRoAUcXxbZcFNtyQe7IBbkjF+SOXJA7ckHuyAW5IxfkjlyQO3JB7sgFuSMX5I5"
b+="ckDtyQe7IBbkjF+S2XJAnwjB19EHK/wWPDwOmPD4EeMUTC1aPlfmXPVbuJzxW9s97rPyPe3wY8J"
b+="InH7zx+LDgnMeHB6MeHwK84PGhw4jHSvxZjw8jhj32hxaW/AfSdq4PUOiMw9Zd4VL/AzHoPgqNO"
b+="HyrzR4CkqX8AJQq8HNQnv2F2GMtykef7G8ObjGGMHKQ7GlOF5T9DaQPJOknCsr+BtL7kvRjUvUw"
b+="m+RYZJ9zJrHPeTZrn5MxeL1fMVnsaRZFPJmFsihFuf/DWS+z4ngWXbKJwesK2Hglhq7jjT5Cxxx"
b+="h4i5hKvExq7rU6GM2MR7K+JgF1sv0zGz2MavLkt3gYxaXh79x0jU3+ZiN0UOmrkkPEh+zRyw20+"
b+="u1dlpbYx+ybMh6xEo6NGmiISu/BKEsWtHZlcv2q1Vlv/qgsl9t94sYKPrvSwxZ0f/YsjxTVXpLB"
b+="T8NvDzPVJWMokdcbLWYhopnC5cttaFzed5pqWak3zwD2iGvwZCVnMqmDFlJYxnn/aqX2jmxD1nL"
b+="d9g9c9aEddyVgkmRjPdYM+09dshjw81lje+eQd8c8kGZ6AvO9B1y/Dl0wUqbryrPsaoDy5u+O+H"
b+="RFjCVOjL/DnSlO+BnOpAxUh1WHShmrGrdeXdgU7oD3akOJF5jUzzxKr3GmrHXWIO9xpriNRYtK4"
b+="W7yFSTWRIdmI83qZLQI31f9edAY7pemzQioDctw8QjunxvgVn8Lyxfq/66BT1GqVJgU9ojv02mt"
b+="K/8llqt0Z776O+IP9o/vFqvHr5Ki+qO8kY7hqajMEmKT9jCFCYqTiDjUqCjOAFNSwFBcXwTwlOc"
b+="plOoG2cF8A1cWoyG/mxYC/Uq+qkaIod6wMs+xyd1cslM6CQ/VuS52o7jowYuZPjinMBJGLmQIuW"
b+="tWtiKxvMSH0Zje9+L43UTTY5a4/iojc5xrTjeB+XLvpPEoXwFxFtcH7p8hV2VxKGkJZABqGkR6r"
b+="wqDj1twV0Bxck+Vcrw6D74OoSql7kHziXXd3lwULrM4yjMoz5zxrL2Zemp9QaqxZtjLfZlnqNL7"
b+="/3lGa9zWWpZNMdaiq+ZjLDeQDzT+gai55ZLrsV7zeao5XWi8cszq3MNlV8ziXm514XLvWJfHsqZ"
b+="zxy1zKNs+XUqe2U5oHIFOGA+a4r1Oq2/l957+w3JPVditb88NGS+ZrvSy1329afJy821/3pwf+k"
b+="UW3oD4arlXw2ef9DKWq+TJOQ9lxanafS3OaROjOpOba1W+mLTUVa/3XCU1Wc3HGX12g1HWXVKSJ"
b+="1lofuJnMOsSYtOs/CsqcVvSR9n1eU4qyV1/JQ+zurOnmbhGVExdZo11HCaNUynWcXMaVT6NAtPw"
b+="2Y6zcLTsVLqNAtP08qp06w+Os0qzeE0a5LOwRZOs14L/aC4cJq1cJr1pjzNalk4zXrDr7feG2hP"
b+="/q/xNKv0mknM4sJp1muo9ZXeQOeMrx0HlBdOsxZOs94QNLRwmvX6ce2b+TSr+AbCVWXhVOlNfZp"
b+="VnudpVnJe9a21RoF9Gk5ae0JzrWZs9fXrtYcqWjSuBfjd7XGtFrji569Pv6uiYy01MkELjHWmdj"
b+="9aepl4wuS7YlJKsWorPCd1PLhSqRhjmAvPAYNgtRiMCW4MkozQH42LQr7/YFfwy+fdNc4Tp1RL6"
b+="FLNxHOoOC/ZpEHWwI66AkMG8EnVf3SSV5YSHCs9gJ9Wjz4JowL8lh7kYZ2Buupf+boWDcEPeqEz"
b+="0Xs3/p7RQ2tPZH4i1CM0v3N2dob69oq2TQukJ4FBNqwGN1U6FFZ8C8KHwhL74ys/8Axs4CoPPHM"
b+="oKAk6yTYUvR+ipbtORn8mGeJpvi2Nn6bGh3Iat7ZO2zY1HGIXPs1tl6DtMrW9TX/nMzO3j155qd"
b+="J4oiCFZneIIBBjCDYfadQ0wwyoxCfLfGh8m/6ZI/Qd9m2390qDoRF174BW0hO0w0pKc+8NmgA1R"
b+="0ZmjnTq4WDOJJ0iPA3OOEnQymVD1Os2+IGcwZ+gwQ9cscFDdeNNVMIp0AyxdJ+VMC2zJgoWj1m0"
b+="EI1pMRa6sjwKUraGdU3Po/05GDhOGOifEQPQpcvFo+iSuuB70vgxarxvJh5tbvsykR7i+dWTHpe"
b+="eK+n15iD+KI299xIRPy/SG4ZOa8nSYyVkp3FjBAstklnYdrFxRWBiTSjOmoHa6jmDPkKDruuhNt"
b+="2grRxK02ajNA0fWnawU1pNuluUxg/hzyebmxZaa2yZmp0LqvNanwTsOc3YG7bmir1JrRl7B/Fn7"
b+="xXA3QThDjvrSNOP48+jVwB388HZeA7OHsafh64AzsaacPZB/HnwytAb0nmh6mYkHLNqqMVVX5KE"
b+="G7+kxXU0B/UP4M/906Oe2rh8SCgw+kmGAe/dD5nsQONBbcePHd21H9dL6HqocWsehr0UPXlZehr"
b+="JGdQ9+HN37qDo/ZTAwLFdAknJQKTxzKRu3QNqkNrP3ok/W/Ooabp2Z8fltG07vADAymAhYQfIh7"
b+="0g0rQo2X7cn91+6DOqB5uaMbkZfzZdGUx2N64F6/Gn+wph06S3qETpQp2A+3Ad/nRN0wfc9F02B"
b+="Fj03YvM5CGTp/aO0eAsDO43T+Ba/PGnm8D8AcwDiy5sS3ggSI0TOCDWYUFxfZVU2d48qJX4035p"
b+="g3rVZFkV7T1m8jb8qV4SScwDowk2B03GJuo6rxqbXjM2y/jjXRlsigauUGnhj5bXtH75cVnWS2j"
b+="pRGsPCpvUcY0bjX7567Lrlp3hWq30p1ep46RRm46TGk6RZjtH0imjDc8+/MKNrPmwmNPXWnz7Us"
b+="6d7PS5E6XisZKWOW5imCtSLDmpGjXSJ1WIf9RTw0L6CASmxI2PR1Q1qLtnDrUwwY1ByaGWan80O"
b+="cZSdQ2ZzSdbzeo1nvJ4zdvKgeRAK7vbSdF2yS/P83ireYcDZC2qc4X2YkTeRGlzON7ibntzP+Jq"
b+="ap/0xwp149PcfoVovDQnDZIPJ8ZzD7Iul0JdSm83y6nViGZjfgdZTQr1vNFB/DKcRUucwlso4vm"
b+="YXGNqzyPKupkmyklrZqJ8tSdak9ZlI8p+XfY0MVFOf6AUE+XkZZyFDAlOzosEJy+JBPtykD/9ed"
b+="YMyJ8fCQ7Y2eNClcKkp3GDfK6jscSf7WSilCz4uVT36g6ztMtFcXW9Uc+OD5WmozjtciJ81M7FH"
b+="2J9bvibytEq5WjqtcfeJJ1SYGed7KHSa4+7+eBsIgdnciT12uNsvAlncqh0BeitwC0zAzukmUb3"
b+="QxbeZQU6IdTajhfxdLyh45GGrmQYhI0YqVJ5gtSxHKTKmVUeUvkGIm+/PhNepdU87QddVWh+IXt"
b+="alIPTaRqeA1qnbdxhQZjalw5jLLOY1Od1N5VeyWdfTGY4aZphKalfzs2dFh/0oDJoNSqB8clrrA"
b+="Tmc+rWPU0DkZOrK0JTmxq3I3LKdGXIig6a7MZDpvy2p1N+X9XANdbkGw949BQJDs5Cgl3NFCgHV"
b+="NNMXO4A5oM9PODRMgc81nQHPHOlxulPrS5lUK+eHNsbD3jkeOkSSGI+GE2wiZ/ftHij+OqxWW3G"
b+="phxYXRlsejV1YpE9XrpC2HRZx6u66rSnT1eHOrApXKuVvr/GMA6vwkOdvoJ6q20U30jDRi0+XLK"
b+="rn6FPpXOyFzq+pExyShXfN+MUerttndkeeiqlj1P8sKBSBjilKyyqlCFI0bBm27ekHgeFksORUY"
b+="q4UtrFiCcdoEiBI+h5EgUZR7jKalJlX7rK8XSVQ+kq616qytF0laNcZXtS5UC6ysl0lcPpKvvSV"
b+="Y6nqxznKv2kyqF0lXU3VeVousqBdJWT6SonucqupMrhdJV96SrH01UOpatE76IJLi3++q4V2tu+"
b+="d/H/u/jtixf/+X8//HRobfuN73z/4sWLX7v4e4elDshpbbt48ds//dcXL35ntRQ3MfHEy9/80s+"
b+="dO93/PzQZjoGpX/vPx45/e/K/fuW8pI7rmPrid7/4hfP/8y8/+7ykogZgbfvCty4+/ytfPVvvEB"
b+="TQN7ZHSAzwl5qHrdA65FvAFvgB0XXmkHUoJMCQjc4E15njVljg7/ASKxcPheVDoTPLmPryxlS38"
b+="sY0aeaOycwb06iZMyY8RgTuAvamr//yyFwYEB4w4whNGVHdoQVygvMU/QIOuoW+vAyDbiUEoAfK"
b+="dfS9V49q8PjD1YfC6iFEA34l+hB6W4wGuRb6gDvwvMM4nB0zA2YOZvpyZ7uei5lJIw8z40YOZoY"
b+="NxEyRMNOfHvWhcBF/dhvHUhDcjZiCuwrlWEzkaxDu8H1bhLX6LYizVipsC0ZGnUN4x4oo5++GY0"
b+="6XJO0hIao+h+YCP5i+jtx2ppA7yshdgqsFYtOkOUHPeYLfIfNS8Dtk5OB3wMjDb18uN9Vz8Tup5"
b+="+B3VEf8ttC4B7m/LTzusI2GTWMpyQz0qhlYRDmWEuGZOANLZAbGDJmBxckMjOs8A72MuoLfijOw"
b+="hKq3Fc5cnBOX1lfyqMgUXOAZoEkal0mqMDFwlgqziUzSgEzSWM4kjUNTyw6Fyw+F7TBbNCsGEVE"
b+="0Yqh5GjYuZZ6G9Zx5GtLz5mlAz5unvlypV8+bJ1TsHUQ70hX3d5FfpW6uoJHTWKoyk/1qJtsoRw"
b+="cRO81ku8zklCkzuTSZyXGayeUyk7CpTc/kcsyxlyeyn9Fb8pfgRLZT+7YgddLFWac5Zq+szHTCS"
b+="iV2AJqe64m8uZ7MzPVg3lwPyVxPcGeWped6kue681C48lC4SmhtWCeajsZ0Nd2j+qVM96iWM91o"
b+="99A02915k+3nzXW1aapxIzahqR4+lHQwXI0J9x/CFJxXJFweSRvNgzDsEIzSAXZkUhlUpLIiIZU"
b+="+IpVVQiq9ilQ6ElKZNJBUVgqpTOSQyqgpS4hitPaYEoY9xHcJyYa/YY4ZFjOtCo3UvTSNnMmjke"
b+="EMjUzl0UjdTdPImTwaGRYamWqkkU4h8ilNiHw5l4plhJAO7rsRDOXCNTDMJYx3cnUNSG6n6mjYo"
b+="x7yhhp2r5cz7L7MsEfyhj2aGXavmzPsvsywRxqG7ePIl8nMjWVmTslBg7mcp3/KSE+/bDfqNP+d"
b+="QkP9GRqSdXdAx1le6TuMfCZEh+UNEiBk2YoUuQppl52/Yg7LX805lm40PR/X2DUApoUXMA8IllX"
b+="Ek2lpT2TPuIekrxDc34Bg2h0NeDh6heCxPASPE4J9QXB/A4IXI44riu4NwZ6Xwt6kjthbpJhHYa"
b+="/CWco0QTqi0RFaGdSFVhZxFtqsdSNFLFVcrAkXO4LfjWYVDxv9ZYSaAi+WtiBywhNELk94flJQw"
b+="9uXQU+2L3YKNUMezspiQc1EI2oQb2W1NOg5467riJoWtfjqQnVlzlLELD6OnxYl8tTLcqFFyGqj"
b+="2U7TvSSZ7pZ4TFNqTLxc8d6swGMSAvOEwOy4wzZvBHEWdNlXeCnqq+KQKjLPXTLNRRnRRtMntsZ"
b+="Z5DrRXJkrK0hfWilvvClsF6TyJG00u6IuOdLW+RwVtOwaK896coZq4wEWHnQHOtrH8QGW0WR+Yu"
b+="D5gIHnAzqdD5gRnvri+YDJR6iWiQ2wVs46uuPDzteigwGLkETI5IMBixzLBLoyATHxYMAUf9N9h"
b+="QX9f0H/X9D/F/T/Bf1/Qf9f0P8X9P8F/X9B/1/Q/xf0/wX9f0H/X9D/L4f+3/vVWfV/zBKd+eqC"
b+="/r+g/y/o/wv6/4L+v6D/L+j/C/r/gv6/oP8v6P8L+v+C/r+g/y/o//9a9f+J52bV/zFL1P+1Bf1"
b+="/Qf9f0P8X9P8F/X9B/1/Q/xf0/wX9f0H/X9D/F/T/Bf1/Qf9f0P//ter/Q9+YVf/HLNH4N14v/f"
b+="8fAsMTp44m6//shcCWIXWjswXdt2tSlXLOyBsc5XCRYtVWUeDI0Y8Tg8YF1EceIcfjD3hQCkGGj"
b+="XRVwClSEedgvJzS8XdQD80GzwmWtZWrCHTsMWMFSALp1Ex8chaIqkvERkFBIQYdNASmbyFiLPH4"
b+="lJlN7hzPaCH9RkcxNaNQt5rRJv92Bvm3M8i/XVPXeVILef032bsFDuPT3H907Mk6D03u9GPg6tR"
b+="0BG56TOQ7g+ZOjSk9wuID4o9JDYpmuj9nTMdpTP2XNqZXOSeyQ+Zuu9KBY9SBvlx6eM1wSv4PG3"
b+="DZZ1wKLntzcHmUhtJ7pXBZV5zFDocM8kZnkDe6K4NLrDLSqDqFMJCWBXZ0UlAuqwrosoorgR4pl"
b+="1XzYs4mN3YGurEz0I3dlWPNSUNIOfZHmiBjcl7ImLwkZEzmIOMg/uydCRmTlxcZ+NWGLF8/jj+P"
b+="zkCJk5ePE7Aqd754HM/B48P489AVxCMexVGl8So6QN9xwnNfV5Z0K0VqsAvBj8gXfHs2MhOHTOh"
b+="cTaFJ/HRZMYoGZ0HRWA6KPog/D+aiSPqrY38vEUWCG8FUCkUao0S8iqpPhzWI8rQ00WYU46M5I3"
b+="oAf+6fftK1y0W2I8Q0w0bCNPfgz93TMo122UhtPjhrdLNnoJs9A93svfYo29SIsc34s+kKYAz0C"
b+="mo55Q4TOAiy2IFFmDS3QzvsCdNC75eW4irlFZOwKfUm2OxuJsD1+NM9HUt153DULAidlptQk1Lf"
b+="rTPQ6Z6BTvfydub57c6Hkx0WdOT5Mlk5++a1cvZdksT3m1G/Fn/8mQR+32u1gbqSI29vHvlK/Gl"
b+="/04+82jzyNvypXqmRi7NTi8/9ySFivB4rHV0GIytzvhSe3uXAlZAbDYqHhT/apbQ8H8lBl65rtd"
b+="J/W2OsPGzhmcdwUb6Lmvzlhtbcv93aytYOgQpWw5CCa/zwUOj7a95P4eDT/poHMcN1WkewyNffp"
b+="rcHDk4OerAs1CItGtCrP+N0+M4z27o/s6373/r+tsOHPvXpbd/4wtcnrKe31X/pWwOnjUPb/N6T"
b+="oR1VD0bVjwetviOhAtciS4XO30+0/DVbDPwYicX+cMlf5hqoAbvNbi+t/dL8APp7DJbi12x7DC2"
b+="vX7kNBM0NBNhAoBrArxlkG+ngNgb1OTcSNjcSYiOhagQ/iZHbyKiBLnMtbOC4NLDtJ+r1enWjOW"
b+="XCHBaiw/eQS+Mp2PIBkexhdFaP6egH04RN8TGdB6GCaI6AwRKUbo20d6jSvh1dvGjuq/4Sl4TKW"
b+="qWyUIdEqUSC9J0RCJboOy6BIz2HISxNuu/0GP0FoTXyCDpqhB5+62tXZwjKyL3QsltBJLplo1Tm"
b+="LxZQJYEeowQQ5gY28wUyUNW34FELK36xFhZgov2KX90JzFHZuT8oAnItZgVCtY0cYSOGi8hnbvR"
b+="Du2A63Ajdqtei49AWkgok4NkRYsvFHmNPp0xoyfXhP/RVj9btRLqHcijkkHOAO6LDgCK9M7AYXd"
b+="BzH6sRZOr8/ZdDuAc67NvY9YLv4sPegcoI8z5I3AxHWv6iuy2cFijeivU60br7KjbiD1sERMusQ"
b+="ldCIAr6cgXiC4THGkbSBkPbVnzaXwOMi0QnCPGB2oI1gJdDLCL8NSfZDayDOLGJZSAMzTolnjlN"
b+="vtdRwB4QpXEPCtyDgvTgFDn8Zx6ZRzcK2A3mXAhDNwrUCDKZ72EPFkEPPO6Bxz3wpAfn4g/QzKs"
b+="HHvbA4B542AOPGkEOlC85MIMin1n7wyUib1ZApmqPMWBLHr3Kn5mYMomIRxwqpnILU484AjKyuS"
b+="fdTO5Ozj3pCsiE3ClioS8oufiYdMM2oNY2oFWH+SrmpJUJbqpMK4VkvlZJ24vpqyR2sAyfI06wH"
b+="DBYCipEZtNTPJqkIZ4A2WYztVu+J9Rupagdpq8MyL+o74t07KcDterAtwUYP1TsO2le94jXo8MH"
b+="arAOAru7ODcl39uJhiqzsXuHouPIgyYd5G/XX47/CUtAUitmGR9M0CWPD3mYR7cLpRvza3qQHa/"
b+="NIP0yzmcZdYZl+B/GSGyznNhk+jGShSKtSnljdKlvOEZ32jE6zI9eaowroD4vPUa3YYwOj9HdCV"