diff --git a/classes/chillerlan-QRCode-Common-BitBuffer.html b/classes/chillerlan-QRCode-Common-BitBuffer.html index f0c443d18..eda71976d 100644 --- a/classes/chillerlan-QRCode-Common-BitBuffer.html +++ b/classes/chillerlan-QRCode-Common-BitBuffer.html @@ -661,7 +661,7 @@ throws
- InvalidArgumentException + QRCodeException

if numBits isn't in [1,32] or more than is available

diff --git a/classes/chillerlan-QRCode-Common-ECICharset.html b/classes/chillerlan-QRCode-Common-ECICharset.html index 820d48bcb..2da6bfaa4 100644 --- a/classes/chillerlan-QRCode-Common-ECICharset.html +++ b/classes/chillerlan-QRCode-Common-ECICharset.html @@ -1416,6 +1416,20 @@ +
+ Tags + +
+
+
+ throws +
+
+ QRCodeException + + +
+
Return values
mixed diff --git a/classes/chillerlan-QRCode-Common-GF256.html b/classes/chillerlan-QRCode-Common-GF256.html index 9f8d8df3f..8ea48c914 100644 --- a/classes/chillerlan-QRCode-Common-GF256.html +++ b/classes/chillerlan-QRCode-Common-GF256.html @@ -882,7 +882,7 @@ where the least-significant bit represents the constant coefficient

@@ -913,6 +913,20 @@ where the least-significant bit represents the constant coefficient

+
+ Tags + +
+
+
+ throws +
+
+ QRCodeException + + +
+
Return values
GenericGFPoly @@ -935,7 +949,7 @@ where the least-significant bit represents the constant coefficient

@@ -980,7 +994,7 @@ where the least-significant bit represents the constant coefficient

@@ -1003,6 +1017,20 @@ where the least-significant bit represents the constant coefficient

+
+ Tags + +
+
+
+ throws +
+
+ QRCodeException + + +
+
Return values
int @@ -1025,7 +1053,7 @@ where the least-significant bit represents the constant coefficient

@@ -1048,6 +1076,20 @@ where the least-significant bit represents the constant coefficient

+
+ Tags + +
+
+
+ throws +
+
+ QRCodeException + + +
+
Return values
int @@ -1070,7 +1112,7 @@ where the least-significant bit represents the constant coefficient

diff --git a/classes/chillerlan-QRCode-Common-GenericGFPoly.html b/classes/chillerlan-QRCode-Common-GenericGFPoly.html index 9831ea815..492517faa 100644 --- a/classes/chillerlan-QRCode-Common-GenericGFPoly.html +++ b/classes/chillerlan-QRCode-Common-GenericGFPoly.html @@ -353,10 +353,10 @@ from most significant (highest-power term) coefficient to least significant

throws
- InvalidArgumentException + QRCodeException -

if argument is null or empty, or if leading coefficient is 0 and this is not a -constant polynomial (that is, it is not the monomial "0")

+

if argument is null or empty, or if leading coefficient is 0 and this +is not a constant polynomial (that is, it is not the monomial "0")

@@ -381,7 +381,7 @@ constant polynomial (that is, it is not the monomial "0")

@@ -424,7 +424,7 @@ constant polynomial (that is, it is not the monomial "0")

@@ -447,6 +447,20 @@ constant polynomial (that is, it is not the monomial "0")

+
+ Tags + +
+
+
+ throws +
+
+ QRCodeException + + +
+
Return values
array<string|int, GenericGFPoly> @@ -659,7 +673,7 @@ constant polynomial (that is, it is not the monomial "0")

@@ -745,7 +759,7 @@ constant polynomial (that is, it is not the monomial "0")

@@ -776,6 +790,20 @@ constant polynomial (that is, it is not the monomial "0")

+
+ Tags + +
+
+
+ throws +
+
+ QRCodeException + + +
+
Return values
self @@ -796,7 +824,7 @@ constant polynomial (that is, it is not the monomial "0")

diff --git a/classes/chillerlan-QRCode-Common-ReedSolomonDecoder.html b/classes/chillerlan-QRCode-Common-ReedSolomonDecoder.html index ee5e70602..9d98bdd47 100644 --- a/classes/chillerlan-QRCode-Common-ReedSolomonDecoder.html +++ b/classes/chillerlan-QRCode-Common-ReedSolomonDecoder.html @@ -182,6 +182,21 @@ port of his C++ Reed-Solomon implementation.

decode() + +  : array<string|int, mixed> +
+
Error-correct and copy data blocks together into a stream of bytes
+ +
+ correctErrors() + +  : array<string|int, mixed> +
+
Given data and error-correction codewords received, possibly corrupted by errors, attempts to +correct the errors in-place using Reed-Solomon error correction.
+ +
+ decodeWords()  : array<string|int, int>
@@ -236,7 +251,104 @@ in the input. + +

Error-correct and copy data blocks together into a stream of bytes

+ + + public + decode(array<string|int, mixed> $dataBlocks) : array<string|int, mixed> + + +
Parameters
+
+
+ $dataBlocks + : array<string|int, mixed> +
+
+
+ +
+
+ + + +
Return values
+ array<string|int, mixed> + — + + + +
+

+ correctErrors() + +

+ + +

Given data and error-correction codewords received, possibly corrupted by errors, attempts to +correct the errors in-place using Reed-Solomon error correction.

+ + + private + correctErrors(array<string|int, mixed> $codewordBytes, int $numDataCodewords) : array<string|int, mixed> + + +
Parameters
+
+
+ $codewordBytes + : array<string|int, mixed> +
+
+
+ +
+
+ $numDataCodewords + : int +
+
+
+ +
+
+ + + +
Return values
+ array<string|int, mixed> + — + + +
+
+

+ decodeWords() + +

+ @@ -245,8 +357,8 @@ codewords. Really, this means it uses Reed-Solomon to detect and correct errors, in the input.

- public - decode(array<string|int, mixed> $received, int $numEccCodewords) : array<string|int, int> + private + decodeWords(array<string|int, mixed> $received, int $numEccCodewords) : array<string|int, int>
Parameters
@@ -281,7 +393,7 @@ in the input.

throws
- RuntimeException + QRCodeException

if decoding fails for any reason

@@ -308,7 +420,7 @@ in the input.

@@ -340,7 +452,7 @@ in the input.

throws
- RuntimeException + QRCodeException
@@ -365,7 +477,7 @@ in the input.

@@ -416,7 +528,7 @@ in the input.

@@ -464,7 +576,7 @@ in the input.

throws
- RuntimeException + QRCodeException
diff --git a/classes/chillerlan-QRCode-Decoder-BitMatrix.html b/classes/chillerlan-QRCode-Decoder-BitMatrix.html index 59aa54421..2c49beb43 100644 --- a/classes/chillerlan-QRCode-Decoder-BitMatrix.html +++ b/classes/chillerlan-QRCode-Decoder-BitMatrix.html @@ -957,9 +957,9 @@ QR Code.

public setMirror(bool $mirror) : self -

This flag has effect only on the #readFormatInformation() and the -#readVersion(). Before proceeding with #readCodewords() the -#mirror() method should be called.

+

This flag has effect only on the readFormatInformation() and the +readVersion() methods. Before proceeding with readCodewords() the +mirror() method should be called.

Parameters
@@ -1174,7 +1174,7 @@ QR Code.

@@ -1273,7 +1273,7 @@ if doesn't seem to match any known pattern

@@ -1376,7 +1376,7 @@ the valid encoding of format information

@@ -1404,6 +1404,15 @@ the valid encoding of format information

the valid encoding of version information

+ +
+ noinspection +
+
+ +

DuplicatedCode

+
+
@@ -1462,7 +1471,7 @@ make its bits ready to read.

diff --git a/classes/chillerlan-QRCode-Decoder-Decoder.html b/classes/chillerlan-QRCode-Decoder-Decoder.html index 48812ca66..feefb92d0 100644 --- a/classes/chillerlan-QRCode-Decoder-Decoder.html +++ b/classes/chillerlan-QRCode-Decoder-Decoder.html @@ -152,21 +152,34 @@ the QR Code from an image.

-
+
+ $eccLevel + +  : EccLevel +
+
+ +
+ $formatInfo + +  : FormatInformation|null +
+
+ +
+ $version + +  : Version|null +
+
+ +
decode()  : DecoderResult
Decodes a QR Code represented as a BitMatrix.
-
- correctErrors() - -  : array<string|int, mixed> -
-
Given data and error-correction codewords received, possibly corrupted by errors, attempts to -correct the errors in-place using Reed-Solomon error correction.
-
decodeBitStream() @@ -195,6 +208,114 @@ correct the errors in-place using Reed-Solomon error correction. +
+

+ Properties + +

+
+

+ $eccLevel + + + +

+ + + + + private + EccLevel + $eccLevel + + +
+ +
+ + + +
+ +
+

+ $version + + + +

+ + + + + private + Version|null + $version + = null + +
+ +
+ + + +
+

@@ -214,7 +335,7 @@ correct the errors in-place using Reed-Solomon error correction. @@ -263,59 +384,6 @@ correct the errors in-place using Reed-Solomon error correction.

- -
-

- correctErrors() - -

- - -

Given data and error-correction codewords received, possibly corrupted by errors, attempts to -correct the errors in-place using Reed-Solomon error correction.

- - - private - correctErrors(array<string|int, mixed> $codewordBytes, int $numDataCodewords) : array<string|int, mixed> - - -
Parameters
-
-
- $codewordBytes - : array<string|int, mixed> -
-
-
- -
-
- $numDataCodewords - : int -
-
-
- -
-
- - - -
Return values
- array<string|int, mixed> - — - -
Decoder.php : - 213 + 170 private - decodeBitStream(array<string|int, mixed> $bytes, Version $version, EccLevel $ecLevel) : DecoderResult + decodeBitStream(array<string|int, mixed> $bytes) : DecoderResult
Parameters
@@ -349,22 +417,6 @@ correct the errors in-place using Reed-Solomon error correction.

-
-
- $version - : Version -
-
-
- -
-
- $ecLevel - : EccLevel -
-
-
-
@@ -403,7 +455,7 @@ correct the errors in-place using Reed-Solomon error correction.

@@ -460,7 +512,7 @@ correct the errors in-place using Reed-Solomon error correction.

@@ -468,7 +520,7 @@ correct the errors in-place using Reed-Solomon error correction.

private - getDataBlocks(array<string|int, mixed> $rawCodewords, Version $version, EccLevel $eccLevel) : array<string|int, mixed> + getDataBlocks(array<string|int, mixed> $rawCodewords) : array<string|int, mixed>

That is, the first byte of data block 1 to n is written, then the second bytes, and so on. This method will separate the data into original blocks.

@@ -484,24 +536,6 @@ method will separate the data into original blocks.

bytes as read directly from the QR Code

- -
- $version - : Version -
-
-

version of the QR Code

-
- -
-
- $eccLevel - : EccLevel -
-
-

error-correction level of the QR Code

-
-
diff --git a/classes/chillerlan-QRCode-Decoder-DecoderResult.html b/classes/chillerlan-QRCode-Decoder-DecoderResult.html index a761f4665..5eff8be7b 100644 --- a/classes/chillerlan-QRCode-Decoder-DecoderResult.html +++ b/classes/chillerlan-QRCode-Decoder-DecoderResult.html @@ -102,9 +102,6 @@

DecoderResult - - extends SettingsContainerAbstract -
in package @@ -119,7 +116,7 @@ @@ -142,10 +139,24 @@ as well as a String interpretation of those bytes, if applicable.

+ $data + +  : string +
+
+ +
$eccLevel  : EccLevel
+
+ +
+ $maskPattern + +  : MaskPattern +
@@ -167,13 +178,6 @@ as well as a String interpretation of those bytes, if applicable.

 : int
-
- -
- $text - -  : string -
@@ -181,6 +185,13 @@ as well as a String interpretation of those bytes, if applicable.

 : Version
+
+ +
+ $data + +  : string +
@@ -188,6 +199,13 @@ as well as a String interpretation of those bytes, if applicable.

 : EccLevel
+
+ +
+ $maskPattern + +  : MaskPattern +
@@ -209,13 +227,6 @@ as well as a String interpretation of those bytes, if applicable.

 : int
-
- -
- $text - -  : string -
@@ -226,9 +237,16 @@ as well as a String interpretation of those bytes, if applicable.

- __set() + __construct() -  : void +  : mixed +
+
DecoderResult constructor.
+ +
+ __get() + +  : mixed|null
@@ -237,13 +255,6 @@ as well as a String interpretation of those bytes, if applicable.

 : string -
- -
- fromIterable() - -  : self -
@@ -271,6 +282,39 @@ as well as a String interpretation of those bytes, if applicable.

-property -public " +> +

+ $data + + + +

+ + + + + public + string + $data + + + +
+ + + + +

$eccLevel @@ -297,6 +341,39 @@ as well as a String interpretation of those bytes, if applicable.

+

+
-

- $text - - - -

- - - - - public - string - $text - - - -
- - -
+

+ $data + + + +

+ + + + + protected + string + $data + + +
+ +
+ + +
DecoderResult.php : - 34 + 35 @@ -496,6 +574,40 @@ as well as a String interpretation of those bytes, if applicable.

+
+
DecoderResult.php : - 31 + 32 @@ -547,7 +659,7 @@ as well as a String interpretation of those bytes, if applicable.

@@ -581,7 +693,7 @@ as well as a String interpretation of those bytes, if applicable.

@@ -598,40 +710,6 @@ as well as a String interpretation of those bytes, if applicable.

-
-
-

- $text - - - -

- - - - - protected - string - $text - - -
- -
- - -
DecoderResult.php : - 33 + 34 @@ -680,36 +758,72 @@ as well as a String interpretation of those bytes, if applicable.

-public " > -

- __set() - +

+ __construct() +

+ +

DecoderResult constructor.

+ + + public + __construct([iteratable<string|int, mixed> $properties = null ]) : mixed + + +
Parameters
+
+
+ $properties + : iteratable<string|int, mixed> + = null
+
+
+ +
+
+ + + +
Return values
+ mixed + — + + +
+
+

+ __get() + +

+ public - __set(mixed $property, mixed $value) : void + __get(string $property) : mixed|null
Parameters
$property - : mixed -
-
-
- -
-
- $value - : mixed + : string
@@ -718,22 +832,9 @@ as well as a String interpretation of those bytes, if applicable.

-
- Tags - -
-
-
- inheritDoc -
-
- - -
-
Return values
- void + mixed|null — @@ -751,7 +852,7 @@ as well as a String interpretation of those bytes, if applicable.

@@ -763,81 +864,12 @@ as well as a String interpretation of those bytes, if applicable.

-
- Tags - -
-
-
- inheritDoc -
-
- - -
-
Return values
string — -
-
-

- fromIterable() - -

- - - - - public - fromIterable(iteratable<string|int, mixed> $properties) : self - - -
Parameters
-
-
- $properties - : iteratable<string|int, mixed> -
-
-
- -
-
- - -
- Tags - -
-
-
- inheritDoc -
-
- - -
-
- -
Return values
- self - — - -
DecoderResult.php : - 67 + 82 diff --git a/classes/chillerlan-QRCode-Detector-Detector.html b/classes/chillerlan-QRCode-Detector-Detector.html index b8a51d8ab..b28231708 100644 --- a/classes/chillerlan-QRCode-Detector-Detector.html +++ b/classes/chillerlan-QRCode-Detector-Detector.html @@ -501,7 +501,7 @@ width of each, measuring along the axis between their centers.

@@ -584,7 +584,7 @@ of the finder patterns and estimated module size.

@@ -659,7 +659,7 @@ of the finder patterns and estimated module size.

@@ -734,7 +734,7 @@ guessed to contain it.

@@ -807,7 +807,7 @@ may be skewed or rotated.

@@ -857,6 +857,21 @@ of another po$(another finder pattern center), and in the opposite direction too
+
+ Tags + +
+
+
+ noinspection +
+
+ +

DuplicatedCode

+
+ +
+
Return values
float diff --git a/classes/chillerlan-QRCode-Output-QRMarkup.html b/classes/chillerlan-QRCode-Output-QRMarkup.html index ac93fd861..b16c21347 100644 --- a/classes/chillerlan-QRCode-Output-QRMarkup.html +++ b/classes/chillerlan-QRCode-Output-QRMarkup.html @@ -142,13 +142,6 @@
- $defaultMode - -  : string -
-
- -
$length  : int @@ -299,40 +292,6 @@ -property -protected " -> -

- $defaultMode - - - -

- - - - - protected - string - $defaultMode - = \chillerlan\QRCode\QRCode::OUTPUT_MARKUP_SVG - -
- -
- - - - -

$length @@ -629,7 +588,7 @@ @@ -737,7 +696,7 @@ @@ -794,7 +753,7 @@ @@ -850,7 +809,7 @@ @@ -894,7 +853,7 @@ @@ -1065,7 +1024,7 @@ @@ -1139,7 +1098,7 @@ @@ -1172,7 +1131,7 @@ @@ -1238,7 +1197,7 @@ diff --git a/classes/chillerlan-QRCode-Output-QRString.html b/classes/chillerlan-QRCode-Output-QRString.html index 80f104c5a..881189a9b 100644 --- a/classes/chillerlan-QRCode-Output-QRString.html +++ b/classes/chillerlan-QRCode-Output-QRString.html @@ -140,13 +140,6 @@
- $defaultMode - -  : string -
-
- -
$length  : int @@ -276,40 +269,6 @@ -property -protected " -> -

- $defaultMode - - - -

- - - - - protected - string - $defaultMode - = \chillerlan\QRCode\QRCode::OUTPUT_STRING_TEXT - -
- -
- - - -

-

$length @@ -606,7 +565,7 @@ @@ -714,7 +673,7 @@ @@ -771,7 +730,7 @@ @@ -827,7 +786,7 @@ @@ -860,7 +819,7 @@ @@ -1031,7 +990,7 @@ diff --git a/classes/chillerlan-QRCodeTest-QRCodeReaderGDTest.html b/classes/chillerlan-QRCodeTest-QRCodeReaderGDTest.html index 9ab078bc7..8ca877666 100644 --- a/classes/chillerlan-QRCodeTest-QRCodeReaderGDTest.html +++ b/classes/chillerlan-QRCodeTest-QRCodeReaderGDTest.html @@ -336,7 +336,7 @@ @@ -402,7 +402,7 @@ diff --git a/classes/chillerlan-QRCodeTest-QRCodeReaderImagickTest.html b/classes/chillerlan-QRCodeTest-QRCodeReaderImagickTest.html index de8aa02f6..3ca19bb27 100644 --- a/classes/chillerlan-QRCodeTest-QRCodeReaderImagickTest.html +++ b/classes/chillerlan-QRCodeTest-QRCodeReaderImagickTest.html @@ -336,7 +336,7 @@ @@ -402,7 +402,7 @@ diff --git a/classes/chillerlan-QRCodeTest-QRCodeReaderTestAbstract.html b/classes/chillerlan-QRCodeTest-QRCodeReaderTestAbstract.html index 6338eaafc..779cfd276 100644 --- a/classes/chillerlan-QRCodeTest-QRCodeReaderTestAbstract.html +++ b/classes/chillerlan-QRCodeTest-QRCodeReaderTestAbstract.html @@ -336,7 +336,7 @@ @@ -402,7 +402,7 @@ diff --git a/descriptors/+/V/e7JUWAyUAJ6cdg6qkPAQ b/descriptors/+/V/e7JUWAyUAJ6cdg6qkPAQ index b6ecdef16..ed67cb6bf 100644 Binary files a/descriptors/+/V/e7JUWAyUAJ6cdg6qkPAQ and b/descriptors/+/V/e7JUWAyUAJ6cdg6qkPAQ differ diff --git a/descriptors/-/F/jRgdyBLyXKT+BGk4NfTw b/descriptors/-/F/jRgdyBLyXKT+BGk4NfTw index c3ba459f0..8d35d9939 100644 Binary files a/descriptors/-/F/jRgdyBLyXKT+BGk4NfTw and b/descriptors/-/F/jRgdyBLyXKT+BGk4NfTw differ diff --git a/descriptors/-/F/kNxgM6+xXQuNe88gSOxA b/descriptors/-/F/kNxgM6+xXQuNe88gSOxA index ed2f4bb76..9b1753575 100644 Binary files a/descriptors/-/F/kNxgM6+xXQuNe88gSOxA and b/descriptors/-/F/kNxgM6+xXQuNe88gSOxA differ diff --git a/descriptors/-/O/p5-gmoh5hPLmm04gN4pQ b/descriptors/-/O/p5-gmoh5hPLmm04gN4pQ index 914598190..bb7ec36f9 100644 Binary files a/descriptors/-/O/p5-gmoh5hPLmm04gN4pQ and b/descriptors/-/O/p5-gmoh5hPLmm04gN4pQ differ diff --git a/descriptors/0/8/K5Nh3Keev5uTA1xbHsFg b/descriptors/0/8/K5Nh3Keev5uTA1xbHsFg index a0c391dfc..a221f6c25 100644 Binary files a/descriptors/0/8/K5Nh3Keev5uTA1xbHsFg and b/descriptors/0/8/K5Nh3Keev5uTA1xbHsFg differ diff --git a/descriptors/0/B/2qSrZ6qQnjx2PjdHk9CQ b/descriptors/0/B/2qSrZ6qQnjx2PjdHk9CQ index bef22fa30..69cfe8df5 100644 Binary files a/descriptors/0/B/2qSrZ6qQnjx2PjdHk9CQ and b/descriptors/0/B/2qSrZ6qQnjx2PjdHk9CQ differ diff --git a/descriptors/0/N/GpaeNybzoU59gW6UhBnQ b/descriptors/0/N/GpaeNybzoU59gW6UhBnQ index af0bef1dd..c80265389 100644 Binary files a/descriptors/0/N/GpaeNybzoU59gW6UhBnQ and b/descriptors/0/N/GpaeNybzoU59gW6UhBnQ differ diff --git a/descriptors/1/C/HhgHbACpp2-v5vnsHqoQ b/descriptors/1/C/HhgHbACpp2-v5vnsHqoQ index 4207722f9..b89403ab8 100644 Binary files a/descriptors/1/C/HhgHbACpp2-v5vnsHqoQ and b/descriptors/1/C/HhgHbACpp2-v5vnsHqoQ differ diff --git a/descriptors/1/W/3ebKU0GB6zhMUdVP1b+A b/descriptors/1/W/3ebKU0GB6zhMUdVP1b+A index df8e57def..bdbfec729 100644 Binary files a/descriptors/1/W/3ebKU0GB6zhMUdVP1b+A and b/descriptors/1/W/3ebKU0GB6zhMUdVP1b+A differ diff --git a/descriptors/1/W/oHvshtXLek5m48kI4qYQ b/descriptors/1/W/oHvshtXLek5m48kI4qYQ index 557c2d4af..13df8ff6e 100644 Binary files a/descriptors/1/W/oHvshtXLek5m48kI4qYQ and b/descriptors/1/W/oHvshtXLek5m48kI4qYQ differ diff --git a/descriptors/3/O/NJboKaggdJkamainZjsA b/descriptors/3/O/NJboKaggdJkamainZjsA index 6a8a746e2..ba7cda4ce 100644 Binary files a/descriptors/3/O/NJboKaggdJkamainZjsA and b/descriptors/3/O/NJboKaggdJkamainZjsA differ diff --git a/descriptors/4/B/qeb7Z8-vMA7Ua4+gfLXA b/descriptors/4/B/qeb7Z8-vMA7Ua4+gfLXA index f9d7dbac0..043465b45 100644 Binary files a/descriptors/4/B/qeb7Z8-vMA7Ua4+gfLXA and b/descriptors/4/B/qeb7Z8-vMA7Ua4+gfLXA differ diff --git a/descriptors/5/S/JYW4u1Ss7g87mvPurwuQ b/descriptors/5/S/JYW4u1Ss7g87mvPurwuQ index e208e4b11..af4c6a3e8 100644 Binary files a/descriptors/5/S/JYW4u1Ss7g87mvPurwuQ and b/descriptors/5/S/JYW4u1Ss7g87mvPurwuQ differ diff --git a/descriptors/6/1/lB29Unf+MGop8ZfQpbxw b/descriptors/6/1/lB29Unf+MGop8ZfQpbxw index a4cc4c01c..87c5d9d28 100644 Binary files a/descriptors/6/1/lB29Unf+MGop8ZfQpbxw and b/descriptors/6/1/lB29Unf+MGop8ZfQpbxw differ diff --git a/descriptors/6/K/6EwWb4g1s5Dj7Oor06Vg b/descriptors/6/K/6EwWb4g1s5Dj7Oor06Vg index 1041b3576..bc175e080 100644 Binary files a/descriptors/6/K/6EwWb4g1s5Dj7Oor06Vg and b/descriptors/6/K/6EwWb4g1s5Dj7Oor06Vg differ diff --git a/descriptors/7/8/QsSJcxuDttqz7kaLKK9w b/descriptors/7/8/QsSJcxuDttqz7kaLKK9w index 221d8f17c..6348df1b5 100644 Binary files a/descriptors/7/8/QsSJcxuDttqz7kaLKK9w and b/descriptors/7/8/QsSJcxuDttqz7kaLKK9w differ diff --git a/descriptors/8/B/YUUawcRPu8iqa0H4uRzA b/descriptors/8/B/YUUawcRPu8iqa0H4uRzA index 96932876b..e971e558d 100644 Binary files a/descriptors/8/B/YUUawcRPu8iqa0H4uRzA and b/descriptors/8/B/YUUawcRPu8iqa0H4uRzA differ diff --git a/descriptors/8/T/vc7T6bnZ3UycLojYYsbQ b/descriptors/8/T/vc7T6bnZ3UycLojYYsbQ index 749d1d3f9..fe9077471 100644 Binary files a/descriptors/8/T/vc7T6bnZ3UycLojYYsbQ and b/descriptors/8/T/vc7T6bnZ3UycLojYYsbQ differ diff --git a/descriptors/9/O/WWt-IuNrfC8yLC-ncXKQ b/descriptors/9/O/WWt-IuNrfC8yLC-ncXKQ index ff137148e..fe979d805 100644 Binary files a/descriptors/9/O/WWt-IuNrfC8yLC-ncXKQ and b/descriptors/9/O/WWt-IuNrfC8yLC-ncXKQ differ diff --git a/descriptors/A/H/DD90x3SluOjSxkcV88ZA b/descriptors/A/H/DD90x3SluOjSxkcV88ZA index 62ab1388a..5312ce27c 100644 Binary files a/descriptors/A/H/DD90x3SluOjSxkcV88ZA and b/descriptors/A/H/DD90x3SluOjSxkcV88ZA differ diff --git a/descriptors/A/N/Ljow2YPBWWbEcemFbdJg b/descriptors/A/N/Ljow2YPBWWbEcemFbdJg index 41d38e0e1..23ffa6e97 100644 Binary files a/descriptors/A/N/Ljow2YPBWWbEcemFbdJg and b/descriptors/A/N/Ljow2YPBWWbEcemFbdJg differ diff --git a/descriptors/B/1/aTEUuEOOiQctQ60relWw b/descriptors/B/1/aTEUuEOOiQctQ60relWw index 25829be01..b4b360d98 100644 Binary files a/descriptors/B/1/aTEUuEOOiQctQ60relWw and b/descriptors/B/1/aTEUuEOOiQctQ60relWw differ diff --git a/descriptors/B/E/r1vpxcSDgXhLhmvapg0g b/descriptors/B/E/r1vpxcSDgXhLhmvapg0g index 5e81cab2e..a0b70eda2 100644 Binary files a/descriptors/B/E/r1vpxcSDgXhLhmvapg0g and b/descriptors/B/E/r1vpxcSDgXhLhmvapg0g differ diff --git a/descriptors/B/M/ypKt-svLtRmUKXHv+qBg b/descriptors/B/M/ypKt-svLtRmUKXHv+qBg index 6e3dc9e2f..e97b3b8f4 100644 Binary files a/descriptors/B/M/ypKt-svLtRmUKXHv+qBg and b/descriptors/B/M/ypKt-svLtRmUKXHv+qBg differ diff --git a/descriptors/C/M/EVCvnxX+dRHuyEr8qsYA b/descriptors/C/M/EVCvnxX+dRHuyEr8qsYA index 85da326c5..81c0c0abb 100644 Binary files a/descriptors/C/M/EVCvnxX+dRHuyEr8qsYA and b/descriptors/C/M/EVCvnxX+dRHuyEr8qsYA differ diff --git a/descriptors/D/D/m0G1Z9xVFKtNtCQFoi5w b/descriptors/D/D/m0G1Z9xVFKtNtCQFoi5w index 5c6169093..6f09d5e95 100644 Binary files a/descriptors/D/D/m0G1Z9xVFKtNtCQFoi5w and b/descriptors/D/D/m0G1Z9xVFKtNtCQFoi5w differ diff --git a/descriptors/D/F/DOG571bO-z1teWt5gCnA b/descriptors/D/F/DOG571bO-z1teWt5gCnA index bd240e3cc..874ef2e59 100644 Binary files a/descriptors/D/F/DOG571bO-z1teWt5gCnA and b/descriptors/D/F/DOG571bO-z1teWt5gCnA differ diff --git a/descriptors/D/Y/k68AX6bKDcYhVlpLdDsA b/descriptors/D/Y/k68AX6bKDcYhVlpLdDsA index 531fc9fda..fb0d94307 100644 Binary files a/descriptors/D/Y/k68AX6bKDcYhVlpLdDsA and b/descriptors/D/Y/k68AX6bKDcYhVlpLdDsA differ diff --git a/descriptors/F/7/OnTTKZgQfCrYvSHdurDA b/descriptors/F/7/OnTTKZgQfCrYvSHdurDA index 96bc77f11..024332417 100644 Binary files a/descriptors/F/7/OnTTKZgQfCrYvSHdurDA and b/descriptors/F/7/OnTTKZgQfCrYvSHdurDA differ diff --git a/descriptors/F/9/pXbPL7Yb0FBQxCQ3gJFw b/descriptors/F/9/pXbPL7Yb0FBQxCQ3gJFw index e5e76a07e..471558497 100644 Binary files a/descriptors/F/9/pXbPL7Yb0FBQxCQ3gJFw and b/descriptors/F/9/pXbPL7Yb0FBQxCQ3gJFw differ diff --git a/descriptors/F/B/LksworQTmdGDsbuGgK3w b/descriptors/F/B/LksworQTmdGDsbuGgK3w index df4858288..dd0069327 100644 Binary files a/descriptors/F/B/LksworQTmdGDsbuGgK3w and b/descriptors/F/B/LksworQTmdGDsbuGgK3w differ diff --git a/descriptors/F/V/02epmiUkatFxWCEUNOZQ b/descriptors/F/V/02epmiUkatFxWCEUNOZQ index e91120149..8c7731478 100644 Binary files a/descriptors/F/V/02epmiUkatFxWCEUNOZQ and b/descriptors/F/V/02epmiUkatFxWCEUNOZQ differ diff --git a/descriptors/F/W/W0teNcVy9jqdc46pQatg b/descriptors/F/W/W0teNcVy9jqdc46pQatg index a545a2745..271f036b3 100644 Binary files a/descriptors/F/W/W0teNcVy9jqdc46pQatg and b/descriptors/F/W/W0teNcVy9jqdc46pQatg differ diff --git a/descriptors/G/8/34PLS-AzpSCuX2cZHsqw b/descriptors/G/8/34PLS-AzpSCuX2cZHsqw index ef2d9f98f..9aaaa6dd4 100644 Binary files a/descriptors/G/8/34PLS-AzpSCuX2cZHsqw and b/descriptors/G/8/34PLS-AzpSCuX2cZHsqw differ diff --git a/descriptors/G/G/Wqosy8fgWMr+iNneQiEw b/descriptors/G/G/Wqosy8fgWMr+iNneQiEw index d1b34fdd4..c8f50fe87 100644 Binary files a/descriptors/G/G/Wqosy8fgWMr+iNneQiEw and b/descriptors/G/G/Wqosy8fgWMr+iNneQiEw differ diff --git a/descriptors/G/V/fdJGuZf5fNFLqtugqT-w b/descriptors/G/V/fdJGuZf5fNFLqtugqT-w index 2f11751ad..3a73f8379 100644 Binary files a/descriptors/G/V/fdJGuZf5fNFLqtugqT-w and b/descriptors/G/V/fdJGuZf5fNFLqtugqT-w differ diff --git a/descriptors/G/Z/oRUELJnE8E9xjfb7zVYw b/descriptors/G/Z/oRUELJnE8E9xjfb7zVYw index 3b67d53c0..f50bd044b 100644 Binary files a/descriptors/G/Z/oRUELJnE8E9xjfb7zVYw and b/descriptors/G/Z/oRUELJnE8E9xjfb7zVYw differ diff --git a/descriptors/H/K/L8qxzlGe3nApAEb0XDmw b/descriptors/H/K/L8qxzlGe3nApAEb0XDmw index 17896e3f2..f07f4ff0d 100644 Binary files a/descriptors/H/K/L8qxzlGe3nApAEb0XDmw and b/descriptors/H/K/L8qxzlGe3nApAEb0XDmw differ diff --git a/descriptors/I/Y/McDk2MyGmf-EX5vHdJnQ b/descriptors/I/Y/McDk2MyGmf-EX5vHdJnQ index 81dc47080..b10e528b9 100644 Binary files a/descriptors/I/Y/McDk2MyGmf-EX5vHdJnQ and b/descriptors/I/Y/McDk2MyGmf-EX5vHdJnQ differ diff --git a/descriptors/L/2/ctw2MM3ESsh4daIK1sWg b/descriptors/L/2/ctw2MM3ESsh4daIK1sWg index a14afef89..a0ae79ea4 100644 Binary files a/descriptors/L/2/ctw2MM3ESsh4daIK1sWg and b/descriptors/L/2/ctw2MM3ESsh4daIK1sWg differ diff --git a/descriptors/M/-/WxZaFDk-ceeWbfrdktlw b/descriptors/M/-/WxZaFDk-ceeWbfrdktlw index c67064824..8ebe67b1d 100644 Binary files a/descriptors/M/-/WxZaFDk-ceeWbfrdktlw and b/descriptors/M/-/WxZaFDk-ceeWbfrdktlw differ diff --git a/descriptors/M/D/7RuPc8ZLXiYUOULAXMHA b/descriptors/M/D/7RuPc8ZLXiYUOULAXMHA index 03ef8e99a..4946da875 100644 Binary files a/descriptors/M/D/7RuPc8ZLXiYUOULAXMHA and b/descriptors/M/D/7RuPc8ZLXiYUOULAXMHA differ diff --git a/descriptors/M/E/Nh3ZTPCAW0NKAreDA58A b/descriptors/M/E/Nh3ZTPCAW0NKAreDA58A index 955845535..427cf6099 100644 Binary files a/descriptors/M/E/Nh3ZTPCAW0NKAreDA58A and b/descriptors/M/E/Nh3ZTPCAW0NKAreDA58A differ diff --git a/descriptors/M/H/UP+q5Whq-hBCfNUVgmmA b/descriptors/M/H/UP+q5Whq-hBCfNUVgmmA index f1250564d..19db0eb05 100644 Binary files a/descriptors/M/H/UP+q5Whq-hBCfNUVgmmA and b/descriptors/M/H/UP+q5Whq-hBCfNUVgmmA differ diff --git a/descriptors/N/E/ZqP6aKgWYU4JMqYQSlXw b/descriptors/N/E/ZqP6aKgWYU4JMqYQSlXw index 8689df6a4..aee83f70f 100644 Binary files a/descriptors/N/E/ZqP6aKgWYU4JMqYQSlXw and b/descriptors/N/E/ZqP6aKgWYU4JMqYQSlXw differ diff --git a/descriptors/N/K/1wJmCAkdhUBMG4W9U26Q b/descriptors/N/K/1wJmCAkdhUBMG4W9U26Q index c515a3ca7..8b0c904ed 100644 Binary files a/descriptors/N/K/1wJmCAkdhUBMG4W9U26Q and b/descriptors/N/K/1wJmCAkdhUBMG4W9U26Q differ diff --git a/descriptors/N/L/M8tl-UJDn9hJ5n0JYiUQ b/descriptors/N/L/M8tl-UJDn9hJ5n0JYiUQ index 05615a6f3..4a40a2883 100644 Binary files a/descriptors/N/L/M8tl-UJDn9hJ5n0JYiUQ and b/descriptors/N/L/M8tl-UJDn9hJ5n0JYiUQ differ diff --git a/descriptors/O/-/Qj50sQunXyprLIPjDWuw b/descriptors/O/-/Qj50sQunXyprLIPjDWuw index 62d1f66f0..d4c96b220 100644 Binary files a/descriptors/O/-/Qj50sQunXyprLIPjDWuw and b/descriptors/O/-/Qj50sQunXyprLIPjDWuw differ diff --git a/descriptors/O/9/TxGIyEkOt8LOdakmWGng b/descriptors/O/9/TxGIyEkOt8LOdakmWGng index a714ba8a9..2b38475e1 100644 Binary files a/descriptors/O/9/TxGIyEkOt8LOdakmWGng and b/descriptors/O/9/TxGIyEkOt8LOdakmWGng differ diff --git a/descriptors/O/C/QrLkTA4pksM1hZjh2fmQ b/descriptors/O/C/QrLkTA4pksM1hZjh2fmQ index 1237a8a43..ca0a4566d 100644 Binary files a/descriptors/O/C/QrLkTA4pksM1hZjh2fmQ and b/descriptors/O/C/QrLkTA4pksM1hZjh2fmQ differ diff --git a/descriptors/O/O/mS81z7ltTtSlHSFUSNuw b/descriptors/O/O/mS81z7ltTtSlHSFUSNuw index 1ff71ab34..27f289039 100644 Binary files a/descriptors/O/O/mS81z7ltTtSlHSFUSNuw and b/descriptors/O/O/mS81z7ltTtSlHSFUSNuw differ diff --git a/descriptors/O/P/hsy4XuaUYG7s+p327kdw b/descriptors/O/P/hsy4XuaUYG7s+p327kdw index 65ca759d5..b46ba5054 100644 Binary files a/descriptors/O/P/hsy4XuaUYG7s+p327kdw and b/descriptors/O/P/hsy4XuaUYG7s+p327kdw differ diff --git a/descriptors/P/F/CRQ81A3lfcHvSs9jQKkw b/descriptors/P/F/CRQ81A3lfcHvSs9jQKkw index 75b6800bb..b6c5e813c 100644 Binary files a/descriptors/P/F/CRQ81A3lfcHvSs9jQKkw and b/descriptors/P/F/CRQ81A3lfcHvSs9jQKkw differ diff --git a/descriptors/P/V/hBxH0ZEK5MfA5tilgPPQ b/descriptors/P/V/hBxH0ZEK5MfA5tilgPPQ index 973bf9066..e74e6e53e 100644 Binary files a/descriptors/P/V/hBxH0ZEK5MfA5tilgPPQ and b/descriptors/P/V/hBxH0ZEK5MfA5tilgPPQ differ diff --git a/descriptors/Q/G/1e8Ygp1jpFLMRhjJxNng b/descriptors/Q/G/1e8Ygp1jpFLMRhjJxNng index dc8f8b4e8..61bd53897 100644 Binary files a/descriptors/Q/G/1e8Ygp1jpFLMRhjJxNng and b/descriptors/Q/G/1e8Ygp1jpFLMRhjJxNng differ diff --git a/descriptors/Q/P/B+J2GJLfQ0IakPB13vHw b/descriptors/Q/P/B+J2GJLfQ0IakPB13vHw index 6ff529119..232cb181a 100644 Binary files a/descriptors/Q/P/B+J2GJLfQ0IakPB13vHw and b/descriptors/Q/P/B+J2GJLfQ0IakPB13vHw differ diff --git a/descriptors/R/J/XynComHevEUzJVBqwqBw b/descriptors/R/J/XynComHevEUzJVBqwqBw index 12589907f..b42f466b2 100644 Binary files a/descriptors/R/J/XynComHevEUzJVBqwqBw and b/descriptors/R/J/XynComHevEUzJVBqwqBw differ diff --git a/descriptors/R/Z/B7iBRy42UrH9XZFVHxqQ b/descriptors/R/Z/B7iBRy42UrH9XZFVHxqQ index 10d070cd7..af05361fd 100644 Binary files a/descriptors/R/Z/B7iBRy42UrH9XZFVHxqQ and b/descriptors/R/Z/B7iBRy42UrH9XZFVHxqQ differ diff --git a/descriptors/S/5/GDvbx5K37txRsFozM6Dw b/descriptors/S/5/GDvbx5K37txRsFozM6Dw index 86774e199..b591fb249 100644 Binary files a/descriptors/S/5/GDvbx5K37txRsFozM6Dw and b/descriptors/S/5/GDvbx5K37txRsFozM6Dw differ diff --git a/descriptors/S/O/uB88R0MDvju5O8vP9R2g b/descriptors/S/O/uB88R0MDvju5O8vP9R2g index b818cf26f..d2b18b9f6 100644 Binary files a/descriptors/S/O/uB88R0MDvju5O8vP9R2g and b/descriptors/S/O/uB88R0MDvju5O8vP9R2g differ diff --git a/descriptors/T/M/LNFLDuHMpqMgpKcW670A b/descriptors/T/M/LNFLDuHMpqMgpKcW670A index fce3459de..2baeb2ec2 100644 Binary files a/descriptors/T/M/LNFLDuHMpqMgpKcW670A and b/descriptors/T/M/LNFLDuHMpqMgpKcW670A differ diff --git a/descriptors/T/U/tCn8347JaERiSFirOQkQ b/descriptors/T/U/tCn8347JaERiSFirOQkQ index 95187c1fe..373c0dc72 100644 Binary files a/descriptors/T/U/tCn8347JaERiSFirOQkQ and b/descriptors/T/U/tCn8347JaERiSFirOQkQ differ diff --git a/descriptors/T/Y/GYEZMyZYKnQDpBqG-ZsQ b/descriptors/T/Y/GYEZMyZYKnQDpBqG-ZsQ index 5a552f936..206b11d8a 100644 Binary files a/descriptors/T/Y/GYEZMyZYKnQDpBqG-ZsQ and b/descriptors/T/Y/GYEZMyZYKnQDpBqG-ZsQ differ diff --git a/descriptors/U/D/HkBpwSQ2rDsnrVbWT7Ig b/descriptors/U/D/HkBpwSQ2rDsnrVbWT7Ig index 2188e09b2..ee15963c8 100644 Binary files a/descriptors/U/D/HkBpwSQ2rDsnrVbWT7Ig and b/descriptors/U/D/HkBpwSQ2rDsnrVbWT7Ig differ diff --git a/descriptors/U/M/GOkWye9ioWEVXJE38j3A b/descriptors/U/M/GOkWye9ioWEVXJE38j3A index e48a404fb..d77acebe0 100644 Binary files a/descriptors/U/M/GOkWye9ioWEVXJE38j3A and b/descriptors/U/M/GOkWye9ioWEVXJE38j3A differ diff --git a/descriptors/U/T/sy7Fttx0RT+dXnidigIg b/descriptors/U/T/sy7Fttx0RT+dXnidigIg index a290d5fe9..06c641023 100644 Binary files a/descriptors/U/T/sy7Fttx0RT+dXnidigIg and b/descriptors/U/T/sy7Fttx0RT+dXnidigIg differ diff --git a/descriptors/V/D/k1Sxb8RF0516043ylCfA b/descriptors/V/D/k1Sxb8RF0516043ylCfA index bf3679bfc..1cf393560 100644 Binary files a/descriptors/V/D/k1Sxb8RF0516043ylCfA and b/descriptors/V/D/k1Sxb8RF0516043ylCfA differ diff --git a/descriptors/V/W/lD6qBTbqlkVqPSgCnx4Q b/descriptors/V/W/lD6qBTbqlkVqPSgCnx4Q index c577504b6..e3ca2da7f 100644 Binary files a/descriptors/V/W/lD6qBTbqlkVqPSgCnx4Q and b/descriptors/V/W/lD6qBTbqlkVqPSgCnx4Q differ diff --git a/descriptors/W/V/grsubfc-REqTpvf8epEg b/descriptors/W/V/grsubfc-REqTpvf8epEg index 6851d0dc1..78f6f3c7d 100644 Binary files a/descriptors/W/V/grsubfc-REqTpvf8epEg and b/descriptors/W/V/grsubfc-REqTpvf8epEg differ diff --git a/descriptors/W/W/VuUIL017QJptZ8nk+oCQ b/descriptors/W/W/VuUIL017QJptZ8nk+oCQ index af80b7ba1..68c7a8c6f 100644 Binary files a/descriptors/W/W/VuUIL017QJptZ8nk+oCQ and b/descriptors/W/W/VuUIL017QJptZ8nk+oCQ differ diff --git a/descriptors/X/K/dIL95Dr61miaEd3wrNUQ b/descriptors/X/K/dIL95Dr61miaEd3wrNUQ index 20382891f..624601126 100644 Binary files a/descriptors/X/K/dIL95Dr61miaEd3wrNUQ and b/descriptors/X/K/dIL95Dr61miaEd3wrNUQ differ diff --git a/descriptors/X/K/rcP7Yr7J6y6gKxcrtYjQ b/descriptors/X/K/rcP7Yr7J6y6gKxcrtYjQ index e100f0dae..97fa48b2b 100644 Binary files a/descriptors/X/K/rcP7Yr7J6y6gKxcrtYjQ and b/descriptors/X/K/rcP7Yr7J6y6gKxcrtYjQ differ diff --git a/descriptors/X/P/6FuSnMkagyPUTmQNikpA b/descriptors/X/P/6FuSnMkagyPUTmQNikpA index 1568c0620..0aeee2bbf 100644 Binary files a/descriptors/X/P/6FuSnMkagyPUTmQNikpA and b/descriptors/X/P/6FuSnMkagyPUTmQNikpA differ diff --git a/descriptors/Y/H/ePCrZ0GYbMW9q694m-BA b/descriptors/Y/H/ePCrZ0GYbMW9q694m-BA index c07ffcfc6..7fc631342 100644 Binary files a/descriptors/Y/H/ePCrZ0GYbMW9q694m-BA and b/descriptors/Y/H/ePCrZ0GYbMW9q694m-BA differ diff --git a/descriptors/Y/J/-UeysKWW9IRX0jdHGODw b/descriptors/Y/J/-UeysKWW9IRX0jdHGODw index edb0d098f..f87f50e11 100644 Binary files a/descriptors/Y/J/-UeysKWW9IRX0jdHGODw and b/descriptors/Y/J/-UeysKWW9IRX0jdHGODw differ diff --git a/descriptors/Z/C/CRBlXw6s4VbcKgA+wbGA b/descriptors/Z/C/CRBlXw6s4VbcKgA+wbGA index b6860bbe8..d0fd65e7c 100644 Binary files a/descriptors/Z/C/CRBlXw6s4VbcKgA+wbGA and b/descriptors/Z/C/CRBlXw6s4VbcKgA+wbGA differ diff --git a/descriptors/Z/C/F+uoZ4eMh0rvFVtWvHQg b/descriptors/Z/C/F+uoZ4eMh0rvFVtWvHQg index f601f5967..39109f055 100644 Binary files a/descriptors/Z/C/F+uoZ4eMh0rvFVtWvHQg and b/descriptors/Z/C/F+uoZ4eMh0rvFVtWvHQg differ diff --git a/descriptors/Z/R/OUsJ+j-nqt5LtwbqJiaQ b/descriptors/Z/R/OUsJ+j-nqt5LtwbqJiaQ index 3954238ed..415a90a2a 100644 Binary files a/descriptors/Z/R/OUsJ+j-nqt5LtwbqJiaQ and b/descriptors/Z/R/OUsJ+j-nqt5LtwbqJiaQ differ diff --git a/descriptors/Z/T/SVOJOBr-M5MAP66POlfw b/descriptors/Z/T/SVOJOBr-M5MAP66POlfw index 63a8e3555..d1b449c44 100644 Binary files a/descriptors/Z/T/SVOJOBr-M5MAP66POlfw and b/descriptors/Z/T/SVOJOBr-M5MAP66POlfw differ diff --git a/descriptors/Z/Y/O1XoiKM2Zbo-sweIM8Xg b/descriptors/Z/Y/O1XoiKM2Zbo-sweIM8Xg index a5b6ce80f..99c001627 100644 Binary files a/descriptors/Z/Y/O1XoiKM2Zbo-sweIM8Xg and b/descriptors/Z/Y/O1XoiKM2Zbo-sweIM8Xg differ diff --git a/files/+/B/Ua8n+tP9KS+4mczUdooA b/files/+/B/Ua8n+tP9KS+4mczUdooA deleted file mode 100644 index 393eef823..000000000 Binary files a/files/+/B/Ua8n+tP9KS+4mczUdooA and /dev/null differ diff --git a/files/+/K/fivj+KhPIlShyqsYHS6w b/files/+/K/fivj+KhPIlShyqsYHS6w index f687d36b3..178dedd16 100644 Binary files a/files/+/K/fivj+KhPIlShyqsYHS6w and b/files/+/K/fivj+KhPIlShyqsYHS6w differ diff --git a/files/0/L/e0NLQo8nmqbFSArGMKeA b/files/0/L/e0NLQo8nmqbFSArGMKeA new file mode 100644 index 000000000..e404e5d40 Binary files /dev/null and b/files/0/L/e0NLQo8nmqbFSArGMKeA differ diff --git a/files/0/P/9TmOfQ1VmiCaZtldqrtQ b/files/0/P/9TmOfQ1VmiCaZtldqrtQ index c24ad6fff..cc4f6358c 100644 Binary files a/files/0/P/9TmOfQ1VmiCaZtldqrtQ and b/files/0/P/9TmOfQ1VmiCaZtldqrtQ differ diff --git a/files/1/C/CbuZy0fqcFbWJLYV7CMQ b/files/1/C/CbuZy0fqcFbWJLYV7CMQ index b2b33ae67..8fe051abc 100644 Binary files a/files/1/C/CbuZy0fqcFbWJLYV7CMQ and b/files/1/C/CbuZy0fqcFbWJLYV7CMQ differ diff --git a/files/1/R/7JvD4UbX9ZrpN0vvITpw b/files/1/R/7JvD4UbX9ZrpN0vvITpw index 2b0a4a45d..2f2ac466a 100644 Binary files a/files/1/R/7JvD4UbX9ZrpN0vvITpw and b/files/1/R/7JvD4UbX9ZrpN0vvITpw differ diff --git a/files/3/3/fNbZvBvpkr88YIkXpkvg b/files/3/3/fNbZvBvpkr88YIkXpkvg new file mode 100644 index 000000000..284336c0a Binary files /dev/null and b/files/3/3/fNbZvBvpkr88YIkXpkvg differ diff --git a/files/3/G/7onX3zKzW1+5AI3uovcA b/files/3/G/7onX3zKzW1+5AI3uovcA new file mode 100644 index 000000000..fe1db5460 Binary files /dev/null and b/files/3/G/7onX3zKzW1+5AI3uovcA differ diff --git a/files/3/H/wB2GiwqPuQxHs6x6WSuQ b/files/3/H/wB2GiwqPuQxHs6x6WSuQ index 18435ddfb..0ee66c3ab 100644 Binary files a/files/3/H/wB2GiwqPuQxHs6x6WSuQ and b/files/3/H/wB2GiwqPuQxHs6x6WSuQ differ diff --git a/files/3/N/189cBEl67bsBwjxv+UZQ b/files/3/N/189cBEl67bsBwjxv+UZQ index e04627c4a..847fb6416 100644 Binary files a/files/3/N/189cBEl67bsBwjxv+UZQ and b/files/3/N/189cBEl67bsBwjxv+UZQ differ diff --git a/files/4/A/SVpTTMK1n6oImqC-ArLw b/files/4/A/SVpTTMK1n6oImqC-ArLw index 5b20583d6..6c60e1f6f 100644 Binary files a/files/4/A/SVpTTMK1n6oImqC-ArLw and b/files/4/A/SVpTTMK1n6oImqC-ArLw differ diff --git a/files/4/L/RJUzWJxkisoe9qkppyuA b/files/4/L/RJUzWJxkisoe9qkppyuA deleted file mode 100644 index 201e26c6c..000000000 Binary files a/files/4/L/RJUzWJxkisoe9qkppyuA and /dev/null differ diff --git a/files/5/2/SczqacBMs8Xs9CNoLnZQ b/files/5/2/SczqacBMs8Xs9CNoLnZQ new file mode 100644 index 000000000..afb20a6e9 Binary files /dev/null and b/files/5/2/SczqacBMs8Xs9CNoLnZQ differ diff --git a/files/5/Y/eUrrXI9RYLYsfyKLq-lQ b/files/5/Y/eUrrXI9RYLYsfyKLq-lQ index 9edffe68b..9c23ae399 100644 Binary files a/files/5/Y/eUrrXI9RYLYsfyKLq-lQ and b/files/5/Y/eUrrXI9RYLYsfyKLq-lQ differ diff --git a/files/7/7/ybB2VxJx6sSNSCzd+eIQ b/files/7/7/ybB2VxJx6sSNSCzd+eIQ deleted file mode 100644 index afb621e1c..000000000 Binary files a/files/7/7/ybB2VxJx6sSNSCzd+eIQ and /dev/null differ diff --git a/files/7/C/yHK5-SltR2h317oRNQHw b/files/7/C/yHK5-SltR2h317oRNQHw index 8b91485b0..460468c89 100644 Binary files a/files/7/C/yHK5-SltR2h317oRNQHw and b/files/7/C/yHK5-SltR2h317oRNQHw differ diff --git a/files/7/O/hVnPCNw3dvd9Hg1VDBUg b/files/7/O/hVnPCNw3dvd9Hg1VDBUg index f7bd0a1c2..e3ea10e9c 100644 Binary files a/files/7/O/hVnPCNw3dvd9Hg1VDBUg and b/files/7/O/hVnPCNw3dvd9Hg1VDBUg differ diff --git a/files/8/0/fp9ShnPyXs7M-MCMUhpA b/files/8/0/fp9ShnPyXs7M-MCMUhpA index 7e66f5c40..2001f7be9 100644 Binary files a/files/8/0/fp9ShnPyXs7M-MCMUhpA and b/files/8/0/fp9ShnPyXs7M-MCMUhpA differ diff --git a/files/9/X/t0oAbWrLJ8eYeO0ctYBQ b/files/9/X/t0oAbWrLJ8eYeO0ctYBQ index b2a56f963..9b01856fb 100644 Binary files a/files/9/X/t0oAbWrLJ8eYeO0ctYBQ and b/files/9/X/t0oAbWrLJ8eYeO0ctYBQ differ diff --git a/files/A/S/kveMpVSfMypkefUhTg+w b/files/A/S/kveMpVSfMypkefUhTg+w index 6ae8c82af..a28683ae8 100644 Binary files a/files/A/S/kveMpVSfMypkefUhTg+w and b/files/A/S/kveMpVSfMypkefUhTg+w differ diff --git a/files/B/+/cilQUkol1+S1DN2k4IAw b/files/B/+/cilQUkol1+S1DN2k4IAw index d1b050aca..a4a7bb37b 100644 Binary files a/files/B/+/cilQUkol1+S1DN2k4IAw and b/files/B/+/cilQUkol1+S1DN2k4IAw differ diff --git a/files/B/A/PlYPAD3WRkmDlZCA0sYg b/files/B/A/PlYPAD3WRkmDlZCA0sYg index 98a6b4f96..2af30dcf7 100644 Binary files a/files/B/A/PlYPAD3WRkmDlZCA0sYg and b/files/B/A/PlYPAD3WRkmDlZCA0sYg differ diff --git a/files/B/G/d5hfp17i9wMvaCFNPjWA b/files/B/G/d5hfp17i9wMvaCFNPjWA index a798e68e6..42ea84d7c 100644 Binary files a/files/B/G/d5hfp17i9wMvaCFNPjWA and b/files/B/G/d5hfp17i9wMvaCFNPjWA differ diff --git a/files/C/7/T8jKwcmko3BEhrnU6LyA b/files/C/7/T8jKwcmko3BEhrnU6LyA index 449685498..32689bd3a 100644 Binary files a/files/C/7/T8jKwcmko3BEhrnU6LyA and b/files/C/7/T8jKwcmko3BEhrnU6LyA differ diff --git a/files/C/A/iLTAvf56jtDjxMNSr0HQ b/files/C/A/iLTAvf56jtDjxMNSr0HQ index 2bee1482c..f285dda69 100644 Binary files a/files/C/A/iLTAvf56jtDjxMNSr0HQ and b/files/C/A/iLTAvf56jtDjxMNSr0HQ differ diff --git a/files/C/F/DbW2Pl32WH1Y2LPi4Nrw b/files/C/F/DbW2Pl32WH1Y2LPi4Nrw new file mode 100644 index 000000000..762507aa0 Binary files /dev/null and b/files/C/F/DbW2Pl32WH1Y2LPi4Nrw differ diff --git a/files/C/H/BvIsMp78g+y3-WbjvTAA b/files/C/H/BvIsMp78g+y3-WbjvTAA index 0236d5d90..5163ecbec 100644 Binary files a/files/C/H/BvIsMp78g+y3-WbjvTAA and b/files/C/H/BvIsMp78g+y3-WbjvTAA differ diff --git a/files/C/Z/oatGE-a8FElByY-JNZTA b/files/C/Z/oatGE-a8FElByY-JNZTA index c61602404..5b7a9a586 100644 Binary files a/files/C/Z/oatGE-a8FElByY-JNZTA and b/files/C/Z/oatGE-a8FElByY-JNZTA differ diff --git a/files/D/6/1lQpZtHHuBj-6HQXKSsw b/files/D/6/1lQpZtHHuBj-6HQXKSsw index 076ff5e3f..c247841a9 100644 Binary files a/files/D/6/1lQpZtHHuBj-6HQXKSsw and b/files/D/6/1lQpZtHHuBj-6HQXKSsw differ diff --git a/files/D/R/gj7mKqcxe8KYAFY5lAJA b/files/D/R/gj7mKqcxe8KYAFY5lAJA index e1ec3a465..a9993a705 100644 Binary files a/files/D/R/gj7mKqcxe8KYAFY5lAJA and b/files/D/R/gj7mKqcxe8KYAFY5lAJA differ diff --git a/files/E/9/3BaVKYrOdDnfYq4Q-WLA b/files/E/9/3BaVKYrOdDnfYq4Q-WLA deleted file mode 100644 index bdda4471c..000000000 Binary files a/files/E/9/3BaVKYrOdDnfYq4Q-WLA and /dev/null differ diff --git a/files/E/9/nweH4dCaAgwFUIPbFRIA b/files/E/9/nweH4dCaAgwFUIPbFRIA index bbdc3d9d6..2b20428bf 100644 Binary files a/files/E/9/nweH4dCaAgwFUIPbFRIA and b/files/E/9/nweH4dCaAgwFUIPbFRIA differ diff --git a/files/E/R/TAcbdYw27qpvxALSxR3w b/files/E/R/TAcbdYw27qpvxALSxR3w index eb3ce03de..208b2d0f8 100644 Binary files a/files/E/R/TAcbdYw27qpvxALSxR3w and b/files/E/R/TAcbdYw27qpvxALSxR3w differ diff --git a/files/E/Z/Or2RBx9GltvHT9ZAUFpQ b/files/E/Z/Or2RBx9GltvHT9ZAUFpQ new file mode 100644 index 000000000..016c5e531 Binary files /dev/null and b/files/E/Z/Or2RBx9GltvHT9ZAUFpQ differ diff --git a/files/F/+/C1GJwnHM4LR2ZeV+2VfQ b/files/F/+/C1GJwnHM4LR2ZeV+2VfQ index a2f784715..81e25e736 100644 Binary files a/files/F/+/C1GJwnHM4LR2ZeV+2VfQ and b/files/F/+/C1GJwnHM4LR2ZeV+2VfQ differ diff --git a/files/F/6/YsNYwb1msBicc+pHjxkQ b/files/F/6/YsNYwb1msBicc+pHjxkQ new file mode 100644 index 000000000..2c3f44599 Binary files /dev/null and b/files/F/6/YsNYwb1msBicc+pHjxkQ differ diff --git a/files/F/R/Nr60fjCnka+ugl60hKMA b/files/F/R/Nr60fjCnka+ugl60hKMA index 23cf431c1..28b02a3b5 100644 Binary files a/files/F/R/Nr60fjCnka+ugl60hKMA and b/files/F/R/Nr60fjCnka+ugl60hKMA differ diff --git a/files/G/S/ilhZdkG-bqx8NIJVrmNg b/files/G/S/ilhZdkG-bqx8NIJVrmNg index 3e79913e2..851516db1 100644 Binary files a/files/G/S/ilhZdkG-bqx8NIJVrmNg and b/files/G/S/ilhZdkG-bqx8NIJVrmNg differ diff --git a/files/H/V/u6dr6LsctLyZVxbMJgUw b/files/H/V/u6dr6LsctLyZVxbMJgUw deleted file mode 100644 index 78cf7e74e..000000000 Binary files a/files/H/V/u6dr6LsctLyZVxbMJgUw and /dev/null differ diff --git a/files/I/A/nqtGjl7eu5-IcarAosug b/files/I/A/nqtGjl7eu5-IcarAosug index 772d7cd3a..43dd1c8c9 100644 Binary files a/files/I/A/nqtGjl7eu5-IcarAosug and b/files/I/A/nqtGjl7eu5-IcarAosug differ diff --git a/files/I/R/N-akxKJ4qG3JpbMIkfHw b/files/I/R/N-akxKJ4qG3JpbMIkfHw new file mode 100644 index 000000000..ec2b168f1 Binary files /dev/null and b/files/I/R/N-akxKJ4qG3JpbMIkfHw differ diff --git a/files/J/1/PxuL9jO1x9efWzIN4yzQ b/files/J/1/PxuL9jO1x9efWzIN4yzQ index f0b0809a1..355ead5b6 100644 Binary files a/files/J/1/PxuL9jO1x9efWzIN4yzQ and b/files/J/1/PxuL9jO1x9efWzIN4yzQ differ diff --git a/files/J/1/pIAusvx9ulfkRypatz7w b/files/J/1/pIAusvx9ulfkRypatz7w index 782e9bcfc..496ae7d7b 100644 Binary files a/files/J/1/pIAusvx9ulfkRypatz7w and b/files/J/1/pIAusvx9ulfkRypatz7w differ diff --git a/files/J/9/a9OcKDf6lylEHkux5uNw b/files/J/9/a9OcKDf6lylEHkux5uNw index 50cf8d46c..f517f32e8 100644 Binary files a/files/J/9/a9OcKDf6lylEHkux5uNw and b/files/J/9/a9OcKDf6lylEHkux5uNw differ diff --git a/files/J/S/0p5rjanTossLGwO7mFdQ b/files/J/S/0p5rjanTossLGwO7mFdQ index f7f51d144..c44785186 100644 Binary files a/files/J/S/0p5rjanTossLGwO7mFdQ and b/files/J/S/0p5rjanTossLGwO7mFdQ differ diff --git a/files/J/W/jKXCDvfcpHRZasn71RkQ b/files/J/W/jKXCDvfcpHRZasn71RkQ deleted file mode 100644 index a4575460f..000000000 Binary files a/files/J/W/jKXCDvfcpHRZasn71RkQ and /dev/null differ diff --git a/files/J/X/VPS7D+D-MuV7zFa-nNUw b/files/J/X/VPS7D+D-MuV7zFa-nNUw deleted file mode 100644 index 809be0ccf..000000000 Binary files a/files/J/X/VPS7D+D-MuV7zFa-nNUw and /dev/null differ diff --git a/files/K/J/YVUmkeQ+CHSKde-ON-GQ b/files/K/J/YVUmkeQ+CHSKde-ON-GQ deleted file mode 100644 index 5ab5e7351..000000000 Binary files a/files/K/J/YVUmkeQ+CHSKde-ON-GQ and /dev/null differ diff --git a/files/K/Y/xjLMZlMZ9vOrVLEHKJxg b/files/K/Y/xjLMZlMZ9vOrVLEHKJxg index d6db522cd..5875f11c4 100644 Binary files a/files/K/Y/xjLMZlMZ9vOrVLEHKJxg and b/files/K/Y/xjLMZlMZ9vOrVLEHKJxg differ diff --git a/files/L/+/O-vxKnQ65Fw82R5SFThw b/files/L/+/O-vxKnQ65Fw82R5SFThw new file mode 100644 index 000000000..0e65fd993 Binary files /dev/null and b/files/L/+/O-vxKnQ65Fw82R5SFThw differ diff --git a/files/L/7/ylF0KR+fhK2DZo9efRVA b/files/L/7/ylF0KR+fhK2DZo9efRVA index cbb4fc1b0..0a9d3780a 100644 Binary files a/files/L/7/ylF0KR+fhK2DZo9efRVA and b/files/L/7/ylF0KR+fhK2DZo9efRVA differ diff --git a/files/L/X/qHuIyBxkKnTcVhX+4UTg b/files/L/X/qHuIyBxkKnTcVhX+4UTg index c22dea866..a82a0c934 100644 Binary files a/files/L/X/qHuIyBxkKnTcVhX+4UTg and b/files/L/X/qHuIyBxkKnTcVhX+4UTg differ diff --git a/files/L/Z/M1tyW8Rxbr-z6hn+d8gw b/files/L/Z/M1tyW8Rxbr-z6hn+d8gw index 7fb8afc54..991605525 100644 Binary files a/files/L/Z/M1tyW8Rxbr-z6hn+d8gw and b/files/L/Z/M1tyW8Rxbr-z6hn+d8gw differ diff --git a/files/N/G/CF2eZ3GwMSgK1HdPRONA b/files/N/G/CF2eZ3GwMSgK1HdPRONA deleted file mode 100644 index 0733b38b7..000000000 Binary files a/files/N/G/CF2eZ3GwMSgK1HdPRONA and /dev/null differ diff --git a/files/N/L/oVuRqu5li7C+R-50gcfg b/files/N/L/oVuRqu5li7C+R-50gcfg index 4835e561f..d09ffca36 100644 Binary files a/files/N/L/oVuRqu5li7C+R-50gcfg and b/files/N/L/oVuRqu5li7C+R-50gcfg differ diff --git a/files/N/O/oDXogH4VOzsYfbmEHngg b/files/N/O/oDXogH4VOzsYfbmEHngg index a5889a975..1343ebc3d 100644 Binary files a/files/N/O/oDXogH4VOzsYfbmEHngg and b/files/N/O/oDXogH4VOzsYfbmEHngg differ diff --git a/files/N/P/cB3NBJaYRXoBzlPDG00w b/files/N/P/cB3NBJaYRXoBzlPDG00w index dcb4aaf9e..ce0c4d17c 100644 Binary files a/files/N/P/cB3NBJaYRXoBzlPDG00w and b/files/N/P/cB3NBJaYRXoBzlPDG00w differ diff --git a/files/O/H/wxhiv21RpPOAKuyg6aYQ b/files/O/H/wxhiv21RpPOAKuyg6aYQ new file mode 100644 index 000000000..0623a66c7 Binary files /dev/null and b/files/O/H/wxhiv21RpPOAKuyg6aYQ differ diff --git a/files/O/K/NmOmNO3p5h7L1Cv6QCyw b/files/O/K/NmOmNO3p5h7L1Cv6QCyw new file mode 100644 index 000000000..d3e4a645d Binary files /dev/null and b/files/O/K/NmOmNO3p5h7L1Cv6QCyw differ diff --git a/files/O/L/E6Aj-zzhQ7DF5jLkxnAw b/files/O/L/E6Aj-zzhQ7DF5jLkxnAw index dcd07c531..3ae19a82b 100644 Binary files a/files/O/L/E6Aj-zzhQ7DF5jLkxnAw and b/files/O/L/E6Aj-zzhQ7DF5jLkxnAw differ diff --git a/files/O/P/VKUMgyryHg5qnxCn-h0g b/files/O/P/VKUMgyryHg5qnxCn-h0g index 9d87731cb..7573150de 100644 Binary files a/files/O/P/VKUMgyryHg5qnxCn-h0g and b/files/O/P/VKUMgyryHg5qnxCn-h0g differ diff --git a/files/O/Z/C4jK3BJgUt-N5Vk2YArw b/files/O/Z/C4jK3BJgUt-N5Vk2YArw index db18efed4..9c0f85dec 100644 Binary files a/files/O/Z/C4jK3BJgUt-N5Vk2YArw and b/files/O/Z/C4jK3BJgUt-N5Vk2YArw differ diff --git a/files/P/U/3gHgJ3QePrmByKl3RLCw b/files/P/U/3gHgJ3QePrmByKl3RLCw new file mode 100644 index 000000000..dba783992 Binary files /dev/null and b/files/P/U/3gHgJ3QePrmByKl3RLCw differ diff --git a/files/P/W/lxK1JdbgtgJEYHlr1xfw b/files/P/W/lxK1JdbgtgJEYHlr1xfw new file mode 100644 index 000000000..edb6ba858 Binary files /dev/null and b/files/P/W/lxK1JdbgtgJEYHlr1xfw differ diff --git a/files/Q/1/GWqtCXg2HMEvyDi0y9NA b/files/Q/1/GWqtCXg2HMEvyDi0y9NA deleted file mode 100644 index 5d8e09c39..000000000 Binary files a/files/Q/1/GWqtCXg2HMEvyDi0y9NA and /dev/null differ diff --git a/files/Q/6/afD6rVJYJ2CYS6mlNirw b/files/Q/6/afD6rVJYJ2CYS6mlNirw index 95bc2e9b2..edb357163 100644 Binary files a/files/Q/6/afD6rVJYJ2CYS6mlNirw and b/files/Q/6/afD6rVJYJ2CYS6mlNirw differ diff --git a/files/Q/I/mJSGZXEGE4Xh89zx-xTA b/files/Q/I/mJSGZXEGE4Xh89zx-xTA index 6189b86c4..60e0130b6 100644 Binary files a/files/Q/I/mJSGZXEGE4Xh89zx-xTA and b/files/Q/I/mJSGZXEGE4Xh89zx-xTA differ diff --git a/files/Q/L/AceURt5XU6Q0g0c6y8hw b/files/Q/L/AceURt5XU6Q0g0c6y8hw index 768407cba..07e1a97a3 100644 Binary files a/files/Q/L/AceURt5XU6Q0g0c6y8hw and b/files/Q/L/AceURt5XU6Q0g0c6y8hw differ diff --git a/files/R/1/AhKdr1gqaXCIasSPqx9w b/files/R/1/AhKdr1gqaXCIasSPqx9w index 3610e8d7a..bc4ff6e98 100644 Binary files a/files/R/1/AhKdr1gqaXCIasSPqx9w and b/files/R/1/AhKdr1gqaXCIasSPqx9w differ diff --git a/files/S/0/WIEagWrq7ztB1As6O3KA b/files/S/0/WIEagWrq7ztB1As6O3KA deleted file mode 100644 index 9a6d3483b..000000000 Binary files a/files/S/0/WIEagWrq7ztB1As6O3KA and /dev/null differ diff --git a/files/S/R/RN2eZZA1wBDWMALnD5MQ b/files/S/R/RN2eZZA1wBDWMALnD5MQ new file mode 100644 index 000000000..41a8a4ddd Binary files /dev/null and b/files/S/R/RN2eZZA1wBDWMALnD5MQ differ diff --git a/files/T/A/89GBZL7XFSvre-leFsxg b/files/T/A/89GBZL7XFSvre-leFsxg deleted file mode 100644 index c4c572067..000000000 Binary files a/files/T/A/89GBZL7XFSvre-leFsxg and /dev/null differ diff --git a/files/T/O/dRc17A7DH1O9sHuxixqA b/files/T/O/dRc17A7DH1O9sHuxixqA index 7407d6bc0..0fa64694d 100644 Binary files a/files/T/O/dRc17A7DH1O9sHuxixqA and b/files/T/O/dRc17A7DH1O9sHuxixqA differ diff --git a/files/T/P/69khEcflqCnlBabGDBmQ b/files/T/P/69khEcflqCnlBabGDBmQ new file mode 100644 index 000000000..abbce7772 Binary files /dev/null and b/files/T/P/69khEcflqCnlBabGDBmQ differ diff --git a/files/U/2/rmwzTu01UCJBQPtjSu4A b/files/U/2/rmwzTu01UCJBQPtjSu4A index 389a5af6b..cbc5a0359 100644 Binary files a/files/U/2/rmwzTu01UCJBQPtjSu4A and b/files/U/2/rmwzTu01UCJBQPtjSu4A differ diff --git a/files/U/B/YP5QXIhrYiwu-iJQjHfQ b/files/U/B/YP5QXIhrYiwu-iJQjHfQ index 774447b72..7124b263a 100644 Binary files a/files/U/B/YP5QXIhrYiwu-iJQjHfQ and b/files/U/B/YP5QXIhrYiwu-iJQjHfQ differ diff --git a/files/U/F/1WtYZC1O9cy5oPwAY7XQ b/files/U/F/1WtYZC1O9cy5oPwAY7XQ index e3802b03e..5ba9802dd 100644 Binary files a/files/U/F/1WtYZC1O9cy5oPwAY7XQ and b/files/U/F/1WtYZC1O9cy5oPwAY7XQ differ diff --git a/files/U/J/JwMkjE77AoI6w26d1sgA b/files/U/J/JwMkjE77AoI6w26d1sgA index 8a7faff12..f98d49bb0 100644 Binary files a/files/U/J/JwMkjE77AoI6w26d1sgA and b/files/U/J/JwMkjE77AoI6w26d1sgA differ diff --git a/files/U/L/tWKwtUMrty1YgiXYYdzA b/files/U/L/tWKwtUMrty1YgiXYYdzA new file mode 100644 index 000000000..511e7313d Binary files /dev/null and b/files/U/L/tWKwtUMrty1YgiXYYdzA differ diff --git a/files/U/U/DB2CyNLPSF8SSzzN9hNg b/files/U/U/DB2CyNLPSF8SSzzN9hNg deleted file mode 100644 index 832d22075..000000000 Binary files a/files/U/U/DB2CyNLPSF8SSzzN9hNg and /dev/null differ diff --git a/files/V/6/UqfusinvnQSMYR8OJD4A b/files/V/6/UqfusinvnQSMYR8OJD4A index 8e5d60a58..c11d7a839 100644 Binary files a/files/V/6/UqfusinvnQSMYR8OJD4A and b/files/V/6/UqfusinvnQSMYR8OJD4A differ diff --git a/files/V/R/fQN2fNNLMYGdBwZPYZRA b/files/V/R/fQN2fNNLMYGdBwZPYZRA index e60c83133..ebbbd2ef4 100644 Binary files a/files/V/R/fQN2fNNLMYGdBwZPYZRA and b/files/V/R/fQN2fNNLMYGdBwZPYZRA differ diff --git a/files/W/A/6X48IDMa202CFrLH8K3w b/files/W/A/6X48IDMa202CFrLH8K3w new file mode 100644 index 000000000..3c86db8fa Binary files /dev/null and b/files/W/A/6X48IDMa202CFrLH8K3w differ diff --git a/files/W/E/7Ho1zRsOp0P74jZdz6Eg b/files/W/E/7Ho1zRsOp0P74jZdz6Eg deleted file mode 100644 index e3beec92d..000000000 Binary files a/files/W/E/7Ho1zRsOp0P74jZdz6Eg and /dev/null differ diff --git a/files/W/V/fpWb-UOS+QJyfIGBvLtw b/files/W/V/fpWb-UOS+QJyfIGBvLtw deleted file mode 100644 index c672dfb81..000000000 Binary files a/files/W/V/fpWb-UOS+QJyfIGBvLtw and /dev/null differ diff --git a/files/W/Y/0n9UfKEBf8E3VHC8ekEA b/files/W/Y/0n9UfKEBf8E3VHC8ekEA index ec2e53d64..9b9442460 100644 Binary files a/files/W/Y/0n9UfKEBf8E3VHC8ekEA and b/files/W/Y/0n9UfKEBf8E3VHC8ekEA differ diff --git a/files/X/D/hL-0b7mJ-c0jauqIk1lw b/files/X/D/hL-0b7mJ-c0jauqIk1lw deleted file mode 100644 index af0bb6b83..000000000 Binary files a/files/X/D/hL-0b7mJ-c0jauqIk1lw and /dev/null differ diff --git a/files/X/E/4QUvsufJTJinVZZiFAjA b/files/X/E/4QUvsufJTJinVZZiFAjA index 888b73092..7ee659fc6 100644 Binary files a/files/X/E/4QUvsufJTJinVZZiFAjA and b/files/X/E/4QUvsufJTJinVZZiFAjA differ diff --git a/files/X/E/QfByA38nHhFeAb89mCGg b/files/X/E/QfByA38nHhFeAb89mCGg index dbf072415..8a83ffabe 100644 Binary files a/files/X/E/QfByA38nHhFeAb89mCGg and b/files/X/E/QfByA38nHhFeAb89mCGg differ diff --git a/files/X/G/Jecbvu+fgXXGa5RdRzaQ b/files/X/G/Jecbvu+fgXXGa5RdRzaQ index faa36fc68..004267fa1 100644 Binary files a/files/X/G/Jecbvu+fgXXGa5RdRzaQ and b/files/X/G/Jecbvu+fgXXGa5RdRzaQ differ diff --git a/files/X/Q/7ABc+ankVOzUGkn7v0Fw b/files/X/Q/7ABc+ankVOzUGkn7v0Fw deleted file mode 100644 index abe4896ae..000000000 Binary files a/files/X/Q/7ABc+ankVOzUGkn7v0Fw and /dev/null differ diff --git a/files/Y/K/bsAGuZPjAy62MiPnlvYg b/files/Y/K/bsAGuZPjAy62MiPnlvYg index 764bbe718..a152ccf8c 100644 Binary files a/files/Y/K/bsAGuZPjAy62MiPnlvYg and b/files/Y/K/bsAGuZPjAy62MiPnlvYg differ diff --git a/files/Z/5/n9gAR3guIFx-jlh-tzBQ b/files/Z/5/n9gAR3guIFx-jlh-tzBQ index bfb56e458..5250ef636 100644 Binary files a/files/Z/5/n9gAR3guIFx-jlh-tzBQ and b/files/Z/5/n9gAR3guIFx-jlh-tzBQ differ diff --git a/files/Z/W/urTlDp5s1eB9768DzN0w b/files/Z/W/urTlDp5s1eB9768DzN0w index 359561fbc..83360f07d 100644 Binary files a/files/Z/W/urTlDp5s1eB9768DzN0w and b/files/Z/W/urTlDp5s1eB9768DzN0w differ diff --git a/files/Z/Y/anqhQGjjMdO1w6SkylxA b/files/Z/Y/anqhQGjjMdO1w6SkylxA index 01d8920fb..855dd3198 100644 Binary files a/files/Z/Y/anqhQGjjMdO1w6SkylxA and b/files/Z/Y/anqhQGjjMdO1w6SkylxA differ diff --git a/js/searchIndex.js b/js/searchIndex.js index 000b3abdf..4562c7c58 100644 --- a/js/searchIndex.js +++ b/js/searchIndex.js @@ -648,8 +648,18 @@ Search.appendIndex( }, { "fqsen": "\\chillerlan\\QRCode\\Common\\ReedSolomonDecoder\u003A\u003Adecode\u0028\u0029", "name": "decode", - "summary": "Decodes\u0020given\u0020set\u0020of\u0020received\u0020codewords,\u0020which\u0020include\u0020both\u0020data\u0020and\u0020error\u002Dcorrection\ncodewords.\u0020Really,\u0020this\u0020means\u0020it\u0020uses\u0020Reed\u002DSolomon\u0020to\u0020detect\u0020and\u0020correct\u0020errors,\u0020in\u002Dplace,\nin\u0020the\u0020input.", + "summary": "Error\u002Dcorrect\u0020and\u0020copy\u0020data\u0020blocks\u0020together\u0020into\u0020a\u0020stream\u0020of\u0020bytes", "url": "classes/chillerlan-QRCode-Common-ReedSolomonDecoder.html#method_decode" + }, { + "fqsen": "\\chillerlan\\QRCode\\Common\\ReedSolomonDecoder\u003A\u003AcorrectErrors\u0028\u0029", + "name": "correctErrors", + "summary": "Given\u0020data\u0020and\u0020error\u002Dcorrection\u0020codewords\u0020received,\u0020possibly\u0020corrupted\u0020by\u0020errors,\u0020attempts\u0020to\ncorrect\u0020the\u0020errors\u0020in\u002Dplace\u0020using\u0020Reed\u002DSolomon\u0020error\u0020correction.", + "url": "classes/chillerlan-QRCode-Common-ReedSolomonDecoder.html#method_correctErrors" + }, { + "fqsen": "\\chillerlan\\QRCode\\Common\\ReedSolomonDecoder\u003A\u003AdecodeWords\u0028\u0029", + "name": "decodeWords", + "summary": "Decodes\u0020given\u0020set\u0020of\u0020received\u0020codewords,\u0020which\u0020include\u0020both\u0020data\u0020and\u0020error\u002Dcorrection\ncodewords.\u0020Really,\u0020this\u0020means\u0020it\u0020uses\u0020Reed\u002DSolomon\u0020to\u0020detect\u0020and\u0020correct\u0020errors,\u0020in\u002Dplace,\nin\u0020the\u0020input.", + "url": "classes/chillerlan-QRCode-Common-ReedSolomonDecoder.html#method_decodeWords" }, { "fqsen": "\\chillerlan\\QRCode\\Common\\ReedSolomonDecoder\u003A\u003ArunEuclideanAlgorithm\u0028\u0029", "name": "runEuclideanAlgorithm", @@ -1530,36 +1540,46 @@ Search.appendIndex( "name": "getDataBlocks", "summary": "When\u0020QR\u0020Codes\u0020use\u0020multiple\u0020data\u0020blocks,\u0020they\u0020are\u0020actually\u0020interleaved.", "url": "classes/chillerlan-QRCode-Decoder-Decoder.html#method_getDataBlocks" - }, { - "fqsen": "\\chillerlan\\QRCode\\Decoder\\Decoder\u003A\u003AcorrectErrors\u0028\u0029", - "name": "correctErrors", - "summary": "Given\u0020data\u0020and\u0020error\u002Dcorrection\u0020codewords\u0020received,\u0020possibly\u0020corrupted\u0020by\u0020errors,\u0020attempts\u0020to\ncorrect\u0020the\u0020errors\u0020in\u002Dplace\u0020using\u0020Reed\u002DSolomon\u0020error\u0020correction.", - "url": "classes/chillerlan-QRCode-Decoder-Decoder.html#method_correctErrors" }, { "fqsen": "\\chillerlan\\QRCode\\Decoder\\Decoder\u003A\u003AdecodeBitStream\u0028\u0029", "name": "decodeBitStream", "summary": "", "url": "classes/chillerlan-QRCode-Decoder-Decoder.html#method_decodeBitStream" + }, { + "fqsen": "\\chillerlan\\QRCode\\Decoder\\Decoder\u003A\u003A\u0024version", + "name": "version", + "summary": "", + "url": "classes/chillerlan-QRCode-Decoder-Decoder.html#property_version" + }, { + "fqsen": "\\chillerlan\\QRCode\\Decoder\\Decoder\u003A\u003A\u0024formatInfo", + "name": "formatInfo", + "summary": "", + "url": "classes/chillerlan-QRCode-Decoder-Decoder.html#property_formatInfo" + }, { + "fqsen": "\\chillerlan\\QRCode\\Decoder\\Decoder\u003A\u003A\u0024eccLevel", + "name": "eccLevel", + "summary": "", + "url": "classes/chillerlan-QRCode-Decoder-Decoder.html#property_eccLevel" }, { "fqsen": "\\chillerlan\\QRCode\\Decoder\\DecoderResult", "name": "DecoderResult", "summary": "Encapsulates\u0020the\u0020result\u0020of\u0020decoding\u0020a\u0020matrix\u0020of\u0020bits.\u0020This\u0020typically\napplies\u0020to\u00202D\u0020barcode\u0020formats.\u0020For\u0020now\u0020it\u0020contains\u0020the\u0020raw\u0020bytes\u0020obtained,\nas\u0020well\u0020as\u0020a\u0020String\u0020interpretation\u0020of\u0020those\u0020bytes,\u0020if\u0020applicable.", "url": "classes/chillerlan-QRCode-Decoder-DecoderResult.html" }, { - "fqsen": "\\chillerlan\\QRCode\\Decoder\\DecoderResult\u003A\u003A__set\u0028\u0029", - "name": "__set", + "fqsen": "\\chillerlan\\QRCode\\Decoder\\DecoderResult\u003A\u003A__construct\u0028\u0029", + "name": "__construct", + "summary": "DecoderResult\u0020constructor.", + "url": "classes/chillerlan-QRCode-Decoder-DecoderResult.html#method___construct" + }, { + "fqsen": "\\chillerlan\\QRCode\\Decoder\\DecoderResult\u003A\u003A__get\u0028\u0029", + "name": "__get", "summary": "", - "url": "classes/chillerlan-QRCode-Decoder-DecoderResult.html#method___set" + "url": "classes/chillerlan-QRCode-Decoder-DecoderResult.html#method___get" }, { "fqsen": "\\chillerlan\\QRCode\\Decoder\\DecoderResult\u003A\u003A__toString\u0028\u0029", "name": "__toString", "summary": "", "url": "classes/chillerlan-QRCode-Decoder-DecoderResult.html#method___toString" - }, { - "fqsen": "\\chillerlan\\QRCode\\Decoder\\DecoderResult\u003A\u003AfromIterable\u0028\u0029", - "name": "fromIterable", - "summary": "", - "url": "classes/chillerlan-QRCode-Decoder-DecoderResult.html#method_fromIterable" }, { "fqsen": "\\chillerlan\\QRCode\\Decoder\\DecoderResult\u003A\u003AhasStructuredAppend\u0028\u0029", "name": "hasStructuredAppend", @@ -1571,10 +1591,10 @@ Search.appendIndex( "summary": "", "url": "classes/chillerlan-QRCode-Decoder-DecoderResult.html#property_rawBytes" }, { - "fqsen": "\\chillerlan\\QRCode\\Decoder\\DecoderResult\u003A\u003A\u0024text", - "name": "text", + "fqsen": "\\chillerlan\\QRCode\\Decoder\\DecoderResult\u003A\u003A\u0024data", + "name": "data", "summary": "", - "url": "classes/chillerlan-QRCode-Decoder-DecoderResult.html#property_text" + "url": "classes/chillerlan-QRCode-Decoder-DecoderResult.html#property_data" }, { "fqsen": "\\chillerlan\\QRCode\\Decoder\\DecoderResult\u003A\u003A\u0024version", "name": "version", @@ -1585,6 +1605,11 @@ Search.appendIndex( "name": "eccLevel", "summary": "", "url": "classes/chillerlan-QRCode-Decoder-DecoderResult.html#property_eccLevel" + }, { + "fqsen": "\\chillerlan\\QRCode\\Decoder\\DecoderResult\u003A\u003A\u0024maskPattern", + "name": "maskPattern", + "summary": "", + "url": "classes/chillerlan-QRCode-Decoder-DecoderResult.html#property_maskPattern" }, { "fqsen": "\\chillerlan\\QRCode\\Decoder\\DecoderResult\u003A\u003A\u0024structuredAppendParity", "name": "structuredAppendParity", @@ -2370,11 +2395,6 @@ Search.appendIndex( "name": "svgModule", "summary": "returns\u0020a\u0020path\u0020segment\u0020for\u0020a\u0020single\u0020module", "url": "classes/chillerlan-QRCode-Output-QRMarkup.html#method_svgModule" - }, { - "fqsen": "\\chillerlan\\QRCode\\Output\\QRMarkup\u003A\u003A\u0024defaultMode", - "name": "defaultMode", - "summary": "", - "url": "classes/chillerlan-QRCode-Output-QRMarkup.html#property_defaultMode" }, { "fqsen": "\\chillerlan\\QRCode\\Output\\QROutputAbstract", "name": "QROutputAbstract", @@ -2495,11 +2515,6 @@ Search.appendIndex( "name": "json", "summary": "JSON\u0020output", "url": "classes/chillerlan-QRCode-Output-QRString.html#method_json" - }, { - "fqsen": "\\chillerlan\\QRCode\\Output\\QRString\u003A\u003A\u0024defaultMode", - "name": "defaultMode", - "summary": "", - "url": "classes/chillerlan-QRCode-Output-QRString.html#property_defaultMode" }, { "fqsen": "\\chillerlan\\QRCode\\QRCode", "name": "QRCode",