From 15d1c4c52106da707ec4ce78ffa552b387f2eb29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Sun, 16 Feb 2020 12:28:08 +0100 Subject: [PATCH] Remove patches applied in upstream tarball --- ...e_all_non-static_functions_as_extern.patch | 206 --- ...by_skipping_most_of_the_test_phrases.patch | 1272 ----------------- libxcrypt-4.4.12-doc_crypt_5_typo_fix.patch | 22 - libxcrypt.spec | 3 - 4 files changed, 1503 deletions(-) delete mode 100644 libxcrypt-4.4.12-Explicitly_declare_all_non-static_functions_as_extern.patch delete mode 100644 libxcrypt-4.4.12-Speed_up_ka-sunmd5_by_skipping_most_of_the_test_phrases.patch delete mode 100644 libxcrypt-4.4.12-doc_crypt_5_typo_fix.patch diff --git a/libxcrypt-4.4.12-Explicitly_declare_all_non-static_functions_as_extern.patch b/libxcrypt-4.4.12-Explicitly_declare_all_non-static_functions_as_extern.patch deleted file mode 100644 index 5d6f47f..0000000 --- a/libxcrypt-4.4.12-Explicitly_declare_all_non-static_functions_as_extern.patch +++ /dev/null @@ -1,206 +0,0 @@ -From a24eed01d5efce669b502bc37644ebb5e95860f5 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= -Date: Sun, 2 Feb 2020 19:46:36 +0100 -Subject: [PATCH] Explicitly declare all non-static functions as 'extern'. - -Although the compiler treats function declarations in header files -to be world-visible inside the whole program implicitly, they should -be declared as 'extern', for the sake of explicitness, as all of the -unchanged function prototypes already were declared that way. ---- - lib/alg-gost3411-2012-core.h | 13 +++++++------ - lib/alg-gost3411-2012-hmac.h | 4 ++-- - lib/alg-hmac-sha1.h | 7 ++++--- - lib/alg-sha256.h | 18 +++++++++--------- - lib/alg-sha512.h | 8 ++++---- - lib/crypt-port.h | 4 ++-- - 6 files changed, 28 insertions(+), 26 deletions(-) - -diff --git a/lib/alg-gost3411-2012-core.h b/lib/alg-gost3411-2012-core.h -index 2464cdf..80b1c1a 100644 ---- a/lib/alg-gost3411-2012-core.h -+++ b/lib/alg-gost3411-2012-core.h -@@ -37,14 +37,15 @@ typedef struct GOST34112012Context - unsigned int digest_size; - } GOST34112012Context; - --void GOST34112012Init(GOST34112012Context *CTX, -- const unsigned int digest_size); -+extern void GOST34112012Init(GOST34112012Context *CTX, -+ const unsigned int digest_size); - --void GOST34112012Update(GOST34112012Context *CTX, const unsigned char *data, -- size_t len); -+extern void GOST34112012Update(GOST34112012Context *CTX, -+ const unsigned char *data, size_t len); - --void GOST34112012Final(GOST34112012Context *CTX, unsigned char *digest); -+extern void GOST34112012Final(GOST34112012Context *CTX, -+ unsigned char *digest); - --void GOST34112012Cleanup(GOST34112012Context *CTX); -+extern void GOST34112012Cleanup(GOST34112012Context *CTX); - - #endif /* alg-gost3411-2012-core.h */ -diff --git a/lib/alg-gost3411-2012-hmac.h b/lib/alg-gost3411-2012-hmac.h -index d9fcc8e..314deed 100644 ---- a/lib/alg-gost3411-2012-hmac.h -+++ b/lib/alg-gost3411-2012-hmac.h -@@ -35,11 +35,11 @@ typedef struct - unsigned char digest[GOSTR3411_2012_L]; - } gost_hmac_256_t; - --void -+extern void - gost_hash256 (const uint8_t *t, size_t n, uint8_t *out32, - GOST34112012Context *ctx); - --void -+extern void - gost_hmac256 (const uint8_t *k, size_t n, const uint8_t *t, size_t len, - uint8_t *out32, gost_hmac_256_t *gostbuf); - -diff --git a/lib/alg-hmac-sha1.h b/lib/alg-hmac-sha1.h -index c5db9ab..78e08f0 100644 ---- a/lib/alg-hmac-sha1.h -+++ b/lib/alg-hmac-sha1.h -@@ -29,6 +29,7 @@ - /* Generate the keyed-hash message authentication code of TEXT and KEY. - The resulting HMAC is writen into RESBUF, which should point to 20 - bytes of storage. */ --void hmac_sha1_process_data (const uint8_t *text, size_t text_len, -- const uint8_t *key, size_t key_len, -- void *resbuf); -+extern void -+hmac_sha1_process_data (const uint8_t *text, size_t text_len, -+ const uint8_t *key, size_t key_len, -+ void *resbuf); -diff --git a/lib/alg-sha256.h b/lib/alg-sha256.h -index b30748b..89beedf 100644 ---- a/lib/alg-sha256.h -+++ b/lib/alg-sha256.h -@@ -58,26 +58,26 @@ typedef struct { - * SHA256_Init(ctx): - * Initialize the SHA256 context ${ctx}. - */ --void SHA256_Init(SHA256_CTX *); -+extern void SHA256_Init(SHA256_CTX *); - - /** - * SHA256_Update(ctx, in, len): - * Input ${len} bytes from ${in} into the SHA256 context ${ctx}. - */ --void SHA256_Update(SHA256_CTX *, const void *, size_t); -+extern void SHA256_Update(SHA256_CTX *, const void *, size_t); - - /** - * SHA256_Final(digest, ctx): - * Output the SHA256 hash of the data input to the context ${ctx} into the - * buffer ${digest}. - */ --void SHA256_Final(uint8_t[32], SHA256_CTX *); -+extern void SHA256_Final(uint8_t[32], SHA256_CTX *); - - /** - * SHA256_Buf(in, len, digest): - * Compute the SHA256 hash of ${len} bytes from ${in} and write it to ${digest}. - */ --void SHA256_Buf(const void *, size_t, uint8_t[32]); -+extern void SHA256_Buf(const void *, size_t, uint8_t[32]); - - /* Context structure for HMAC-SHA256 operations. */ - typedef struct { -@@ -90,34 +90,34 @@ typedef struct { - * Initialize the HMAC-SHA256 context ${ctx} with ${Klen} bytes of key from - * ${K}. - */ --void HMAC_SHA256_Init(HMAC_SHA256_CTX *, const void *, size_t); -+extern void HMAC_SHA256_Init(HMAC_SHA256_CTX *, const void *, size_t); - - /** - * HMAC_SHA256_Update(ctx, in, len): - * Input ${len} bytes from ${in} into the HMAC-SHA256 context ${ctx}. - */ --void HMAC_SHA256_Update(HMAC_SHA256_CTX *, const void *, size_t); -+extern void HMAC_SHA256_Update(HMAC_SHA256_CTX *, const void *, size_t); - - /** - * HMAC_SHA256_Final(digest, ctx): - * Output the HMAC-SHA256 of the data input to the context ${ctx} into the - * buffer ${digest}. - */ --void HMAC_SHA256_Final(uint8_t[32], HMAC_SHA256_CTX *); -+extern void HMAC_SHA256_Final(uint8_t[32], HMAC_SHA256_CTX *); - - /** - * HMAC_SHA256_Buf(K, Klen, in, len, digest): - * Compute the HMAC-SHA256 of ${len} bytes from ${in} using the key ${K} of - * length ${Klen}, and write the result to ${digest}. - */ --void HMAC_SHA256_Buf(const void *, size_t, const void *, size_t, uint8_t[32]); -+extern void HMAC_SHA256_Buf(const void *, size_t, const void *, size_t, uint8_t[32]); - - /** - * PBKDF2_SHA256(passwd, passwdlen, salt, saltlen, c, buf, dkLen): - * Compute PBKDF2(passwd, salt, c, dkLen) using HMAC-SHA256 as the PRF, and - * write the output to buf. The value dkLen must be at most 32 * (2^32 - 1). - */ --void PBKDF2_SHA256(const uint8_t *, size_t, const uint8_t *, size_t, -+extern void PBKDF2_SHA256(const uint8_t *, size_t, const uint8_t *, size_t, - uint64_t, uint8_t *, size_t); - - #endif /* !_SHA256_H_ */ -diff --git a/lib/alg-sha512.h b/lib/alg-sha512.h -index c2516a9..dc44da0 100644 ---- a/lib/alg-sha512.h -+++ b/lib/alg-sha512.h -@@ -55,27 +55,27 @@ typedef struct { - * SHA512_Init(ctx): - * Initialize the SHA512 context ${ctx}. - */ --void SHA512_Init(SHA512_CTX *); -+extern void SHA512_Init(SHA512_CTX *); - - /** - * SHA512_Update(ctx, in, len): - * Input ${len} bytes from ${in} into the SHA512 context ${ctx}. - */ --void SHA512_Update(SHA512_CTX *, const void *, size_t); -+extern void SHA512_Update(SHA512_CTX *, const void *, size_t); - - /** - * SHA512_Final(digest, ctx): - * Output the SHA512 hash of the data input to the context ${ctx} into the - * buffer ${digest}. - */ --void SHA512_Final(unsigned char[MIN_SIZE(SHA512_DIGEST_LENGTH)], -+extern void SHA512_Final(unsigned char[MIN_SIZE(SHA512_DIGEST_LENGTH)], - SHA512_CTX *); - - /** - * SHA512_Buf(in, len, digest): - * Compute the SHA512 hash of ${len} bytes from ${in} and write it to ${digest}. - */ --void SHA512_Buf(const void *, size_t, -+extern void SHA512_Buf(const void *, size_t, - unsigned char[MIN_SIZE(SHA512_DIGEST_LENGTH)]); - - #endif /* !_SHA512_H_ */ -diff --git a/lib/crypt-port.h b/lib/crypt-port.h -index 1e4d4b6..0d91da4 100644 ---- a/lib/crypt-port.h -+++ b/lib/crypt-port.h -@@ -383,11 +383,11 @@ extern void crypt_yescrypt_rn (const char *, size_t, const char *, - - /* We need a prototype for fcrypt for some tests. */ - #if ENABLE_OBSOLETE_API --char *fcrypt (const char *key, const char *setting); -+extern char *fcrypt (const char *key, const char *setting); - #endif - - /* Utility functions */ --bool get_random_bytes (void *buf, size_t buflen); -+extern bool get_random_bytes (void *buf, size_t buflen); - - extern void gensalt_sha_rn (char tag, size_t maxsalt, unsigned long defcount, - unsigned long mincount, unsigned long maxcount, diff --git a/libxcrypt-4.4.12-Speed_up_ka-sunmd5_by_skipping_most_of_the_test_phrases.patch b/libxcrypt-4.4.12-Speed_up_ka-sunmd5_by_skipping_most_of_the_test_phrases.patch deleted file mode 100644 index 701973e..0000000 --- a/libxcrypt-4.4.12-Speed_up_ka-sunmd5_by_skipping_most_of_the_test_phrases.patch +++ /dev/null @@ -1,1272 +0,0 @@ -From 8e99039823c712e3aa6ee0f76e68818225735dc1 Mon Sep 17 00:00:00 2001 -From: Zack Weinberg -Date: Sat, 18 Jan 2020 11:43:34 -0500 -Subject: [PATCH] Speed up ka-sunmd5 by skipping most of the test phrases. - -ka-sunmd5 is slower than the entire rest of the testsuite put -together, because the sunmd5 hash is Just That Slow and we have to do -extra tests for it to ensure bug-compatibility. No easy optimizations -are possible and the difficult optimizations are not worth the -engineering effort for this obsolete hash. Instead, skip most of the -test phrases. See comments in test/ka-table-gen.py!h_sunmd5 for -further explanation. ---- - test/ka-table-gen.py | 19 + - test/ka-table.inc | 1200 ------------------------------------------ - 2 files changed, 19 insertions(+), 1200 deletions(-) - -diff --git a/test/ka-table-gen.py b/test/ka-table-gen.py -index 9d37c6a..5ce941a 100644 ---- a/test/ka-table-gen.py -+++ b/test/ka-table-gen.py -@@ -298,6 +298,25 @@ def h_sha512crypt(phrase, rounds, salt): - # actually work. - from passlib.handlers.sun_md5_crypt import raw_sun_md5_crypt - def h_sunmd5(phrase, rounds, salt): -+ -+ # sunmd5 is extremely slow in this test, compared to all the other -+ # hashes, because we have to do extra tests of bug-compatibility, -+ # because its round count cannot be reduced below 4096, and -+ # because on approximately half of those rounds it feeds an -+ # additional 1.5k of text to MD5_Update. The only optimization -+ # that wouldn't break compatibility would be to plug in a faster -+ # MD5 core, but that's not worth the engineering effort since it -+ # would only benefit obsolete hashes. Instead, skip most of the -+ # test phrases for this hash. This cuts the wall-clock time for -+ # ka-sunmd5 (on a current-generation x86-64) from fifty to nine -+ # seconds, which we can live with. sunmd5 feeds the phrase -+ # verbatim to MD5_Update, only once, with no length limit, so we -+ # don't need a lot of careful testing of different phrases. We do -+ # still include at least a few of the non-ASCII test phrases, and -+ # one very long phrase. -+ if 6 <= len(phrase) <= 128: -+ return -+ - if rounds == 0: - bare_setting = "$md5$" + salt - else: -diff --git a/test/ka-table.inc b/test/ka-table.inc -index 0b4882f..ac76e32 100644 ---- a/test/ka-table.inc -+++ b/test/ka-table.inc -@@ -4605,1046 +4605,6 @@ - { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$15KPM/GLKsO9YOtvCBGlT0", "....." }, - { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$BGQbBwo7kyWiiBgxvqMXc/", "....." }, - { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$BGQbBwo7kyWiiBgxvqMXc/", "....." }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$FLPbrxhguvPi.v/5zc59W/", "dragon" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$FLPbrxhguvPi.v/5zc59W/", "dragon" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$ylq4uhUxw5UItjq6Tk60E/", "dragon" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$ylq4uhUxw5UItjq6Tk60E/", "dragon" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$iPakkAY4BXLNLXdB3Qa.70", "dragon" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$iPakkAY4BXLNLXdB3Qa.70", "dragon" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$sLVrjLKQW4zqLQe8xLJWA/", "dragon" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$sLVrjLKQW4zqLQe8xLJWA/", "dragon" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$MjXnqg0fZzI.gyWG3dWx4.", "dragon" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$MjXnqg0fZzI.gyWG3dWx4.", "dragon" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$Xqw6J4qP7FCjX/T6tXj9C/", "dragon" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$Xqw6J4qP7FCjX/T6tXj9C/", "dragon" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$JQvykOqYdqRHcmaZ1P.Jr.", "dragon" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$JQvykOqYdqRHcmaZ1P.Jr.", "dragon" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$ZCsdQ3IYNKbbwccH/GpBZ1", "dragon" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$ZCsdQ3IYNKbbwccH/GpBZ1", "dragon" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$soeq59NRJazBtLksP9MfE.", "dRaGoN" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$soeq59NRJazBtLksP9MfE.", "dRaGoN" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$0qvk0M740TcV0KkLCDjN2.", "dRaGoN" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$0qvk0M740TcV0KkLCDjN2.", "dRaGoN" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$qwdgbS76JjeBz2FAHeJ0z0", "dRaGoN" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$qwdgbS76JjeBz2FAHeJ0z0", "dRaGoN" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$kdMUNU2PKkI1iepQ2G2ag/", "dRaGoN" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$kdMUNU2PKkI1iepQ2G2ag/", "dRaGoN" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$ky0XHYeX3ZTtX0AG8oap/0", "dRaGoN" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$ky0XHYeX3ZTtX0AG8oap/0", "dRaGoN" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$UDTyKrOzseOKZIDYhDdE21", "dRaGoN" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$UDTyKrOzseOKZIDYhDdE21", "dRaGoN" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$FL6JNyOeMEub9KSDu/UY4/", "dRaGoN" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$FL6JNyOeMEub9KSDu/UY4/", "dRaGoN" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$eU6KqNm7JXnCa/PDN0nfU1", "dRaGoN" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$eU6KqNm7JXnCa/PDN0nfU1", "dRaGoN" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$5TVchywa73xAkapD3qZSm.", "DrAgOn" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$5TVchywa73xAkapD3qZSm.", "DrAgOn" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$vV.fz6MIll4/79fqKqM/o.", "DrAgOn" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$vV.fz6MIll4/79fqKqM/o.", "DrAgOn" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$mEES8B.jVqLwFxDC0BUPB0", "DrAgOn" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$mEES8B.jVqLwFxDC0BUPB0", "DrAgOn" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$o/ERCoLp7I3Xe5ybmZt9n1", "DrAgOn" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$o/ERCoLp7I3Xe5ybmZt9n1", "DrAgOn" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$WseGWtVdbCJqV52WrK4Io0", "DrAgOn" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$WseGWtVdbCJqV52WrK4Io0", "DrAgOn" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$Fc9uTxqTcCEHf84Bb62/C.", "DrAgOn" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$Fc9uTxqTcCEHf84Bb62/C.", "DrAgOn" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$4B6NmZLP6/qFe4Ca2Ov6I0", "DrAgOn" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$4B6NmZLP6/qFe4Ca2Ov6I0", "DrAgOn" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$oR3UTLrp3Cy7RBS.nEGro1", "DrAgOn" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$oR3UTLrp3Cy7RBS.nEGro1", "DrAgOn" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$RtwvA9X3L4YW0Wc5Sxvwh.", "PAROLX" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$RtwvA9X3L4YW0Wc5Sxvwh.", "PAROLX" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$eDIQyhmICAFsi2OA.FDjJ/", "PAROLX" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$eDIQyhmICAFsi2OA.FDjJ/", "PAROLX" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$bZtJ7kfgRnS04LyvVu3kr0", "PAROLX" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$bZtJ7kfgRnS04LyvVu3kr0", "PAROLX" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$3VBxG2214a0Am364BMb6D.", "PAROLX" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$3VBxG2214a0Am364BMb6D.", "PAROLX" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$8bZt5B7w2XY0wN3BNR0pW0", "PAROLX" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$8bZt5B7w2XY0wN3BNR0pW0", "PAROLX" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$5A3WczJ7s4XefAh4FG7LR/", "PAROLX" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$5A3WczJ7s4XefAh4FG7LR/", "PAROLX" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$5JdX1nDrsbGK8qoXX5ZQR.", "PAROLX" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$5JdX1nDrsbGK8qoXX5ZQR.", "PAROLX" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$HkF8ekEwE3qBjpQxW5ZSO0", "PAROLX" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$HkF8ekEwE3qBjpQxW5ZSO0", "PAROLX" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$ab3zQaUHITAneX/9qsG6G.", "U*U***U" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$ab3zQaUHITAneX/9qsG6G.", "U*U***U" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$7DwZyI1AWS9vtbUVI7Xbw0", "U*U***U" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$7DwZyI1AWS9vtbUVI7Xbw0", "U*U***U" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$xhmht6Eu6dO06ekozAoY3.", "U*U***U" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$xhmht6Eu6dO06ekozAoY3.", "U*U***U" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$CnQMXBNsXAzjMOVrftISA.", "U*U***U" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$CnQMXBNsXAzjMOVrftISA.", "U*U***U" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$aBTAZtQjw.E3SBVF7lqsH1", "U*U***U" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$aBTAZtQjw.E3SBVF7lqsH1", "U*U***U" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$xz.scoio0jDW9/xz5D3hM0", "U*U***U" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$xz.scoio0jDW9/xz5D3hM0", "U*U***U" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$furujA0HAOv4ueQKSiFmH/", "U*U***U" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$furujA0HAOv4ueQKSiFmH/", "U*U***U" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$mWsoloJJgDd5MA7BQnkWl/", "U*U***U" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$mWsoloJJgDd5MA7BQnkWl/", "U*U***U" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$lrTGxGWQeSTKH87VBQBkc/", "abcdefg" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$lrTGxGWQeSTKH87VBQBkc/", "abcdefg" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$j/9DFzZZq/rgFAbnbOGzr.", "abcdefg" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$j/9DFzZZq/rgFAbnbOGzr.", "abcdefg" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$I566aJ9IitIdjKKjZJ8Zo0", "abcdefg" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$I566aJ9IitIdjKKjZJ8Zo0", "abcdefg" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$qRpVD46c.sEWM/48tNk191", "abcdefg" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$qRpVD46c.sEWM/48tNk191", "abcdefg" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$/3O6053Y8b.uLCBtCmZ6k1", "abcdefg" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$/3O6053Y8b.uLCBtCmZ6k1", "abcdefg" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$fNSkWsCOeDhDCWyDxpPeb.", "abcdefg" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$fNSkWsCOeDhDCWyDxpPeb.", "abcdefg" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$4ZoSCOmlBbX3t/fr75Nit/", "abcdefg" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$4ZoSCOmlBbX3t/fr75Nit/", "abcdefg" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$k7owYMAqBsjiCOFN.Sx6S0", "abcdefg" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$k7owYMAqBsjiCOFN.Sx6S0", "abcdefg" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$WAXTMA/RPMuO0PXCJfbMX1", "01234567" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$WAXTMA/RPMuO0PXCJfbMX1", "01234567" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$G99cyBMCRnW4dXxjXm3Ce1", "01234567" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$G99cyBMCRnW4dXxjXm3Ce1", "01234567" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$BeU7ekxo/REidJ2RsntUk/", "01234567" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$BeU7ekxo/REidJ2RsntUk/", "01234567" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$T4tmCDRZhvXplOx4P.7NK1", "01234567" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$T4tmCDRZhvXplOx4P.7NK1", "01234567" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$FnJpq3kPAu6LUMtNTm9lU/", "01234567" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$FnJpq3kPAu6LUMtNTm9lU/", "01234567" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$jGCiqqh2P8EPWrXxH3vAO1", "01234567" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$jGCiqqh2P8EPWrXxH3vAO1", "01234567" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$yg68F27o7xNNwCMo4Cpna/", "01234567" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$yg68F27o7xNNwCMo4Cpna/", "01234567" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$IVCVBMBCrlLFhIu4xQeuO/", "01234567" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$IVCVBMBCrlLFhIu4xQeuO/", "01234567" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$f5BZO74rxr2z8GIaFltrb/", "726 even" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$f5BZO74rxr2z8GIaFltrb/", "726 even" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$6zyw3U94zJ5K3V3Q47RqF.", "726 even" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$6zyw3U94zJ5K3V3Q47RqF.", "726 even" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$9RjbeYk1wkNwDTJrNFSqd/", "726 even" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$9RjbeYk1wkNwDTJrNFSqd/", "726 even" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$Z/4Yeig5BWXTTjEjU7Ibp0", "726 even" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$Z/4Yeig5BWXTTjEjU7Ibp0", "726 even" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$RTsuJQOgXhvn/GhP6shTg0", "726 even" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$RTsuJQOgXhvn/GhP6shTg0", "726 even" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$GnJ1hAP5CbUGwTQgCA2ug0", "726 even" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$GnJ1hAP5CbUGwTQgCA2ug0", "726 even" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$0YFQOORdvWu4jT03PnrLq1", "726 even" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$0YFQOORdvWu4jT03PnrLq1", "726 even" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$06nhBpHBbs.FJA.kHWZ.U0", "726 even" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$06nhBpHBbs.FJA.kHWZ.U0", "726 even" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$yJWeuIrF.OCkgfwblMHEm1", "zyxwvuts" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$yJWeuIrF.OCkgfwblMHEm1", "zyxwvuts" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$RMsKH3Jmq1YRwdHR3OaqS1", "zyxwvuts" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$RMsKH3Jmq1YRwdHR3OaqS1", "zyxwvuts" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$TGgycPlbMNWJ9E62FdDEn1", "zyxwvuts" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$TGgycPlbMNWJ9E62FdDEn1", "zyxwvuts" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$Ycjtil5DOI9c56Zttd1VO1", "zyxwvuts" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$Ycjtil5DOI9c56Zttd1VO1", "zyxwvuts" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$KumvM4c59UsZeb6RLiGdc.", "zyxwvuts" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$KumvM4c59UsZeb6RLiGdc.", "zyxwvuts" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$DRhs7w14nro/mddoO1Lmk.", "zyxwvuts" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$DRhs7w14nro/mddoO1Lmk.", "zyxwvuts" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$CSKPekZq0w/9Y.oHT0skz1", "zyxwvuts" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$CSKPekZq0w/9Y.oHT0skz1", "zyxwvuts" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$JIsJ0BHZoOUVq3r5gNkGM.", "zyxwvuts" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$JIsJ0BHZoOUVq3r5gNkGM.", "zyxwvuts" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$WzF5T5rVcLIYpM68yYY5t/", "ab1234567" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$WzF5T5rVcLIYpM68yYY5t/", "ab1234567" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$FcsfqhQAdfpUJGN.gC89k.", "ab1234567" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$FcsfqhQAdfpUJGN.gC89k.", "ab1234567" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$.Tr.lQD5jJdW8L1Y/bL1t/", "ab1234567" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$.Tr.lQD5jJdW8L1Y/bL1t/", "ab1234567" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$ohUdGe1fGeGFZQl4Hcb2V0", "ab1234567" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$ohUdGe1fGeGFZQl4Hcb2V0", "ab1234567" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$C23Q1019XkDZ5wnD.kKL71", "ab1234567" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$C23Q1019XkDZ5wnD.kKL71", "ab1234567" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$4mC/acuIPxVxpq66x3MJL0", "ab1234567" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$4mC/acuIPxVxpq66x3MJL0", "ab1234567" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$T/5bRp3t3r4TICABC/yQh.", "ab1234567" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$T/5bRp3t3r4TICABC/yQh.", "ab1234567" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$4nKUNb4I33/OmJknyJt5h1", "ab1234567" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$4nKUNb4I33/OmJknyJt5h1", "ab1234567" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$7dycO.K4UPk/qcWoZnRzG/", "alexander" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$7dycO.K4UPk/qcWoZnRzG/", "alexander" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$tPmGGarBhowT04pds8rhY1", "alexander" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$tPmGGarBhowT04pds8rhY1", "alexander" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$WwKZRG6NELpMPGEQ6iqIB.", "alexander" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$WwKZRG6NELpMPGEQ6iqIB.", "alexander" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$jl107QQZyhyUruP1oMEpz/", "alexander" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$jl107QQZyhyUruP1oMEpz/", "alexander" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$G7kTx.OFGgyz4zayvMxTs0", "alexander" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$G7kTx.OFGgyz4zayvMxTs0", "alexander" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$BBpqzMaK1BeNBT2rHMTY..", "alexander" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$BBpqzMaK1BeNBT2rHMTY..", "alexander" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$Bt2J9hUdAgRwzinmmrUoD1", "alexander" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$Bt2J9hUdAgRwzinmmrUoD1", "alexander" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$fJoBwRHapsogVFPS5TFmZ/", "alexander" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$fJoBwRHapsogVFPS5TFmZ/", "alexander" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$4gTy9InUOayAXDFkp41yk/", "beautiful" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$4gTy9InUOayAXDFkp41yk/", "beautiful" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$tsNxD/fyyjWMayLDgIu5d.", "beautiful" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$tsNxD/fyyjWMayLDgIu5d.", "beautiful" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$TdcUw0/xl8CPlmyU33lva/", "beautiful" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$TdcUw0/xl8CPlmyU33lva/", "beautiful" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$Q.MS505TuSFnMOVEk15061", "beautiful" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$Q.MS505TuSFnMOVEk15061", "beautiful" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$vrXviVIy7rIs6jj3Twgng1", "beautiful" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$vrXviVIy7rIs6jj3Twgng1", "beautiful" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$iFRQVZlQjb6LhY69UgVNF0", "beautiful" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$iFRQVZlQjb6LhY69UgVNF0", "beautiful" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$zx1oO1ti48JoKLmmkbxjV.", "beautiful" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$zx1oO1ti48JoKLmmkbxjV.", "beautiful" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$pw3X7VOfNd.LbMo4C54wf/", "beautiful" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$pw3X7VOfNd.LbMo4C54wf/", "beautiful" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$ee5qW8iOC94Fj/AQ2irqO.", "challenge" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$ee5qW8iOC94Fj/AQ2irqO.", "challenge" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$ydS/zhq9oUQxE4CgcsmdN1", "challenge" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$ydS/zhq9oUQxE4CgcsmdN1", "challenge" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$T6xE/Phq8qTcoHlm/Ehp60", "challenge" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$T6xE/Phq8qTcoHlm/Ehp60", "challenge" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$Ni4zLKAqkluvi.Lk3IqVg1", "challenge" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$Ni4zLKAqkluvi.Lk3IqVg1", "challenge" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$aAST/T.MW.hWDACeXMixL1", "challenge" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$aAST/T.MW.hWDACeXMixL1", "challenge" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$WOqrOLinI5ezE8UXoqB1q.", "challenge" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$WOqrOLinI5ezE8UXoqB1q.", "challenge" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$QBnVJtiJ2yR/K/K/QC7T1.", "challenge" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$QBnVJtiJ2yR/K/K/QC7T1.", "challenge" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$9mP1UcUvGJOX4yUyLC4p.0", "challenge" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$9mP1UcUvGJOX4yUyLC4p.0", "challenge" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$l2vKFazBkKxygPrzKjJh00", "chocolate" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$l2vKFazBkKxygPrzKjJh00", "chocolate" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$09WKPfZN04ssEL1T1JjdL/", "chocolate" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$09WKPfZN04ssEL1T1JjdL/", "chocolate" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$nMpE0xZ8.JuXMv0ATkDPq.", "chocolate" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$nMpE0xZ8.JuXMv0ATkDPq.", "chocolate" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$D1SJmvGfoe6k8yqTIGnSV1", "chocolate" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$D1SJmvGfoe6k8yqTIGnSV1", "chocolate" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$keuIk0AMIebDzDegMb9Ip/", "chocolate" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$keuIk0AMIebDzDegMb9Ip/", "chocolate" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$TFgIgjUQbdJgZhQSlEULP0", "chocolate" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$TFgIgjUQbdJgZhQSlEULP0", "chocolate" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$q/Sa.ims4PLVVA5YpUkK01", "chocolate" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$q/Sa.ims4PLVVA5YpUkK01", "chocolate" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$TOR/4qYqfES6fQFEjunmC/", "chocolate" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$TOR/4qYqfES6fQFEjunmC/", "chocolate" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$bAl.RWtRB5gZNbgYcj33I0", "cr1234567" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$bAl.RWtRB5gZNbgYcj33I0", "cr1234567" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$I50heZmGEv9FMWUmcDLdD/", "cr1234567" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$I50heZmGEv9FMWUmcDLdD/", "cr1234567" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$o1vrjgZeuuQkyE.Hb12vd/", "cr1234567" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$o1vrjgZeuuQkyE.Hb12vd/", "cr1234567" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$FZL7zN1JcSyZQG5CnmAdQ0", "cr1234567" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$FZL7zN1JcSyZQG5CnmAdQ0", "cr1234567" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$t8tgT3lWIfA9KHTcT1i1O0", "cr1234567" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$t8tgT3lWIfA9KHTcT1i1O0", "cr1234567" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$lYCIpFs1Eoz9aCC7U4OM51", "cr1234567" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$lYCIpFs1Eoz9aCC7U4OM51", "cr1234567" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$ZmS2huRRLfe7rzkSDCpge0", "cr1234567" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$ZmS2huRRLfe7rzkSDCpge0", "cr1234567" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$VDmmwgLqhB5EAM/boykUQ.", "cr1234567" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$VDmmwgLqhB5EAM/boykUQ.", "cr1234567" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$jAKfXodU6EZmBbOnhi7NV1", "katherine" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$jAKfXodU6EZmBbOnhi7NV1", "katherine" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$exLYbB2VpmSxyQlUeUlJf.", "katherine" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$exLYbB2VpmSxyQlUeUlJf.", "katherine" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$zlPzajhF6Guq0hAIRBMEI/", "katherine" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$zlPzajhF6Guq0hAIRBMEI/", "katherine" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$AQYflMLQ813.TxRXTBj4f/", "katherine" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$AQYflMLQ813.TxRXTBj4f/", "katherine" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$wywKhGlQ.WTGuCjTBS7zz/", "katherine" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$wywKhGlQ.WTGuCjTBS7zz/", "katherine" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$/OKLCFosdSVSCw8yN6mlW0", "katherine" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$/OKLCFosdSVSCw8yN6mlW0", "katherine" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$fZ7QV/FYoFHUP1g58pU7g0", "katherine" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$fZ7QV/FYoFHUP1g58pU7g0", "katherine" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$ZeGiuFAnZgqBafogOySV6.", "katherine" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$ZeGiuFAnZgqBafogOySV6.", "katherine" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$/3ujKCG1CGuwBgkwF6pQZ/", "stephanie" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$/3ujKCG1CGuwBgkwF6pQZ/", "stephanie" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$G8/M5KJnjUmmvC8Bt9Ka/0", "stephanie" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$G8/M5KJnjUmmvC8Bt9Ka/0", "stephanie" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$QKlx3gZuoekhhnDs/q9/30", "stephanie" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$QKlx3gZuoekhhnDs/q9/30", "stephanie" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$N2jeHg6m915iq6i2M3nUt0", "stephanie" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$N2jeHg6m915iq6i2M3nUt0", "stephanie" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$r83HWPk2zMMMc35xkZ7c7.", "stephanie" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$r83HWPk2zMMMc35xkZ7c7.", "stephanie" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$7w8fE/uXs56RN./DKbWTe0", "stephanie" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$7w8fE/uXs56RN./DKbWTe0", "stephanie" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$sG4xBLxLEysvTQ7RQV2kA1", "stephanie" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$sG4xBLxLEysvTQ7RQV2kA1", "stephanie" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$/DfO/ATSXUnGtdfrROk0..", "stephanie" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$/DfO/ATSXUnGtdfrROk0..", "stephanie" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$m3z1lsj0sZlMdjQkRfBBj/", "sunflower" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$m3z1lsj0sZlMdjQkRfBBj/", "sunflower" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$YG/H04pbI.jQtMTnCk0rp.", "sunflower" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$YG/H04pbI.jQtMTnCk0rp.", "sunflower" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$e3I3UaCIs0Md9qmchBDLi0", "sunflower" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$e3I3UaCIs0Md9qmchBDLi0", "sunflower" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$lg53uDEcI7sy0kdJBpIww/", "sunflower" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$lg53uDEcI7sy0kdJBpIww/", "sunflower" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$8Vt./u2UcgRnuOyXuAtEq/", "sunflower" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$8Vt./u2UcgRnuOyXuAtEq/", "sunflower" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$0XEdJ9omwBbAKRCf/ERqM.", "sunflower" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$0XEdJ9omwBbAKRCf/ERqM.", "sunflower" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$sx3c2r7QDBDCWj6xLtAmN0", "sunflower" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$sx3c2r7QDBDCWj6xLtAmN0", "sunflower" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$.43tRVL/uTfknH.l93cEK.", "sunflower" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$.43tRVL/uTfknH.l93cEK.", "sunflower" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$HaeLt9JuWFliocSnB2qRZ/", "basketball" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$HaeLt9JuWFliocSnB2qRZ/", "basketball" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$HE3/E0NmQrtbBEIrvOC02.", "basketball" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$HE3/E0NmQrtbBEIrvOC02.", "basketball" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$CSu8kxWyFH5p4M9s0pUUq/", "basketball" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$CSu8kxWyFH5p4M9s0pUUq/", "basketball" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$BuekTwhWkthv2L2Zha7tt1", "basketball" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$BuekTwhWkthv2L2Zha7tt1", "basketball" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$v3CtknyWUF7viV4GaVdCr0", "basketball" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$v3CtknyWUF7viV4GaVdCr0", "basketball" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$rjnv9R.kZP3Ewg9DSTwtF/", "basketball" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$rjnv9R.kZP3Ewg9DSTwtF/", "basketball" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$hnoBRKtAcwZyxXvQ85R38/", "basketball" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$hnoBRKtAcwZyxXvQ85R38/", "basketball" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$Hvj.VHhitZvT7xIIXiOVF0", "basketball" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$Hvj.VHhitZvT7xIIXiOVF0", "basketball" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$GidiBaTlQsYNGiilMpWXb/", "porsche911" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$GidiBaTlQsYNGiilMpWXb/", "porsche911" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$CHryVLhJqw5ppDv/dm7Zq1", "porsche911" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$CHryVLhJqw5ppDv/dm7Zq1", "porsche911" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$uw.Dp/nfBBF1mZlQhD7KH1", "porsche911" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$uw.Dp/nfBBF1mZlQhD7KH1", "porsche911" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$aoiObZol5cUkM/XXf1Vlz0", "porsche911" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$aoiObZol5cUkM/XXf1Vlz0", "porsche911" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$YcGrqNNV63qnT.7tXPR7U/", "porsche911" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$YcGrqNNV63qnT.7tXPR7U/", "porsche911" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$yQIiioXEae2.GlaEf2cad.", "porsche911" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$yQIiioXEae2.GlaEf2cad.", "porsche911" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$htBOojZfmo/EDdoIY46T1.", "porsche911" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$htBOojZfmo/EDdoIY46T1.", "porsche911" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$dXqtSHGA4Flu3NHUDBll/0", "porsche911" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$dXqtSHGA4Flu3NHUDBll/0", "porsche911" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$e9Dg6fwn4TIaCzOy9JpkL1", "|_337T`/p3" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$e9Dg6fwn4TIaCzOy9JpkL1", "|_337T`/p3" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$ypLQItLvQE9vXz7E/J3NG.", "|_337T`/p3" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$ypLQItLvQE9vXz7E/J3NG.", "|_337T`/p3" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$hU3Ys9M7nyMBglb7V9pWI.", "|_337T`/p3" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$hU3Ys9M7nyMBglb7V9pWI.", "|_337T`/p3" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$s0D1J1mUldFJnQX69VD9S/", "|_337T`/p3" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$s0D1J1mUldFJnQX69VD9S/", "|_337T`/p3" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$/SSpF/4iUPIuTvIOpM9dA0", "|_337T`/p3" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$/SSpF/4iUPIuTvIOpM9dA0", "|_337T`/p3" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$6z3n.0kk0pf6pQzZHN1hr/", "|_337T`/p3" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$6z3n.0kk0pf6pQzZHN1hr/", "|_337T`/p3" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$1qQwGQKhUtlNmTeUmcLZ/0", "|_337T`/p3" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$1qQwGQKhUtlNmTeUmcLZ/0", "|_337T`/p3" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$Bx7TEZxRNgmmFhxcH5n2U0", "|_337T`/p3" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$Bx7TEZxRNgmmFhxcH5n2U0", "|_337T`/p3" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$hYj4YjLxI2Hi6F.h46Vhi.", "thunderbird" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$hYj4YjLxI2Hi6F.h46Vhi.", "thunderbird" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$IMbYlPpr9tDwdQPEhCHHy.", "thunderbird" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$IMbYlPpr9tDwdQPEhCHHy.", "thunderbird" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$U52DBnwW3m4AXzmDQ4aYT0", "thunderbird" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$U52DBnwW3m4AXzmDQ4aYT0", "thunderbird" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$u8rCpbHmlYEPSu/qfjpNY0", "thunderbird" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$u8rCpbHmlYEPSu/qfjpNY0", "thunderbird" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$9TxXv8bhujx.dHEidLc9M/", "thunderbird" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$9TxXv8bhujx.dHEidLc9M/", "thunderbird" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$gqafts82crq5xG/Wmax6h.", "thunderbird" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$gqafts82crq5xG/Wmax6h.", "thunderbird" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$lQrRIh2lqQcTZTC/gtkAI.", "thunderbird" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$lQrRIh2lqQcTZTC/gtkAI.", "thunderbird" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$rPZkxoCbqIplkVQeBh5Df.", "thunderbird" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$rPZkxoCbqIplkVQeBh5Df.", "thunderbird" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$bpKyvgcrOLPKo.q.Za9PZ.", "Hello world!" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$bpKyvgcrOLPKo.q.Za9PZ.", "Hello world!" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$FxyI9IDeKICZ8SwBS44.f.", "Hello world!" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$FxyI9IDeKICZ8SwBS44.f.", "Hello world!" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$7HQ6FAeVN/Ihg3vh/FbgK1", "Hello world!" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$7HQ6FAeVN/Ihg3vh/FbgK1", "Hello world!" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$/YlqA0kG1WP/ue1A90D3p.", "Hello world!" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$/YlqA0kG1WP/ue1A90D3p.", "Hello world!" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$0YjUhU1laEuiWs4lxzMcC/", "Hello world!" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$0YjUhU1laEuiWs4lxzMcC/", "Hello world!" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$UwSVGmaTNl2D7j.LwyKrP/", "Hello world!" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$UwSVGmaTNl2D7j.LwyKrP/", "Hello world!" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$TXBXVVw283f7Se6HlI11e.", "Hello world!" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$TXBXVVw283f7Se6HlI11e.", "Hello world!" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$FZMEeQT2PbYtcz1HNrgux0", "Hello world!" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$FZMEeQT2PbYtcz1HNrgux0", "Hello world!" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$eLV2De96RSdlQBrgubbtz0", "pleaseletmein" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$eLV2De96RSdlQBrgubbtz0", "pleaseletmein" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$KWDAF9zWpr7ttFG36ju2f1", "pleaseletmein" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$KWDAF9zWpr7ttFG36ju2f1", "pleaseletmein" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$YycHuMiVJON7dV6Ou4sWr0", "pleaseletmein" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$YycHuMiVJON7dV6Ou4sWr0", "pleaseletmein" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$uxorUqkhiEYrdlbXUmShS0", "pleaseletmein" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$uxorUqkhiEYrdlbXUmShS0", "pleaseletmein" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$vIFQOoFm0eP0Ga9S/kOzw/", "pleaseletmein" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$vIFQOoFm0eP0Ga9S/kOzw/", "pleaseletmein" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$dRRvKhxEwRZHWnH.JU0bF0", "pleaseletmein" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$dRRvKhxEwRZHWnH.JU0bF0", "pleaseletmein" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$EYOxIk0LwcsG0VBrpse3O.", "pleaseletmein" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$EYOxIk0LwcsG0VBrpse3O.", "pleaseletmein" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$ahWmhrgl49s7wU7RfgW1T1", "pleaseletmein" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$ahWmhrgl49s7wU7RfgW1T1", "pleaseletmein" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$K8Xo027PIO/oULn1.tInV.", "a short string" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$K8Xo027PIO/oULn1.tInV.", "a short string" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$mCXNpiHCttspD6zu23O5r1", "a short string" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$mCXNpiHCttspD6zu23O5r1", "a short string" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$CZjMZ1s2AiFNpS68KjHeB.", "a short string" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$CZjMZ1s2AiFNpS68KjHeB.", "a short string" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$4oR3krXUKPjFM6l74aHAm.", "a short string" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$4oR3krXUKPjFM6l74aHAm.", "a short string" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$5IFjNrwiq.cFUmeWJFSfw1", "a short string" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$5IFjNrwiq.cFUmeWJFSfw1", "a short string" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$EAq2Y/BAwWz.W/9i/quVE/", "a short string" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$EAq2Y/BAwWz.W/9i/quVE/", "a short string" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$oBU8zjfhg2CVTgwGE73AE0", "a short string" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$oBU8zjfhg2CVTgwGE73AE0", "a short string" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$IxD3g4580z1i636FOBYGe.", "a short string" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$IxD3g4580z1i636FOBYGe.", "a short string" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$pOoTFUNPTI90O353XghzN1", "zxyDPWgydbQjgq" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$pOoTFUNPTI90O353XghzN1", "zxyDPWgydbQjgq" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$1EwkRh0PTWl3biCtAwTiI0", "zxyDPWgydbQjgq" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$1EwkRh0PTWl3biCtAwTiI0", "zxyDPWgydbQjgq" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$jbkScNdBaQ4BnbA0988wi1", "zxyDPWgydbQjgq" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$jbkScNdBaQ4BnbA0988wi1", "zxyDPWgydbQjgq" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$KxBpDPBuQxkfOQM9DjT5m.", "zxyDPWgydbQjgq" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$KxBpDPBuQxkfOQM9DjT5m.", "zxyDPWgydbQjgq" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$4OGAk9LvWWSOTgLxTltDL0", "zxyDPWgydbQjgq" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$4OGAk9LvWWSOTgLxTltDL0", "zxyDPWgydbQjgq" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$ig4XZ7ELHyKuHE0ZmE1N2/", "zxyDPWgydbQjgq" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$ig4XZ7ELHyKuHE0ZmE1N2/", "zxyDPWgydbQjgq" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$F/fMr.jP.mC4tCXsYKh7L/", "zxyDPWgydbQjgq" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$F/fMr.jP.mC4tCXsYKh7L/", "zxyDPWgydbQjgq" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$l9cfm0QR1EBjpOoqUKZC3.", "zxyDPWgydbQjgq" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$l9cfm0QR1EBjpOoqUKZC3.", "zxyDPWgydbQjgq" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$njsASf9PQmhcMtJ476ljX1", "photojournalism" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$njsASf9PQmhcMtJ476ljX1", "photojournalism" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$Pt/El.HlI7en4ziXB8j5e/", "photojournalism" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$Pt/El.HlI7en4ziXB8j5e/", "photojournalism" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$8w8vJtOWtQkcKbAX1gNe.0", "photojournalism" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$8w8vJtOWtQkcKbAX1gNe.0", "photojournalism" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$wcU680.bAyQkq80uKNDF5/", "photojournalism" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$wcU680.bAyQkq80uKNDF5/", "photojournalism" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$uGg36RqBlQggD4dnZlwCH.", "photojournalism" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$uGg36RqBlQggD4dnZlwCH.", "photojournalism" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$WvJzZJ.uqNeV8zmcYIyQ./", "photojournalism" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$WvJzZJ.uqNeV8zmcYIyQ./", "photojournalism" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$nltzaqJT3hq6FW5rct7.Y1", "photojournalism" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$nltzaqJT3hq6FW5rct7.Y1", "photojournalism" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$H9HvS2VCsQrowoYoUkD57/", "photojournalism" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$H9HvS2VCsQrowoYoUkD57/", "photojournalism" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$fMd2Lrb2qgzbFel23q1xh1", "ecclesiastically" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$fMd2Lrb2qgzbFel23q1xh1", "ecclesiastically" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$W1C8eXLt2SBOanrQ0JeoN0", "ecclesiastically" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$W1C8eXLt2SBOanrQ0JeoN0", "ecclesiastically" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$DTBeFwDRjUXTQFjhbFc51/", "ecclesiastically" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$DTBeFwDRjUXTQFjhbFc51/", "ecclesiastically" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$RIMMQjVZTPooOW3jaaU01.", "ecclesiastically" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$RIMMQjVZTPooOW3jaaU01.", "ecclesiastically" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$BVBLtwUGgoFawF1SCVUrT.", "ecclesiastically" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$BVBLtwUGgoFawF1SCVUrT.", "ecclesiastically" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$.Lze5CcHj9n6k6nXzQ5uy/", "ecclesiastically" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$.Lze5CcHj9n6k6nXzQ5uy/", "ecclesiastically" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$JRtJE3XNdbIg9TfnPOjkl0", "ecclesiastically" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$JRtJE3XNdbIg9TfnPOjkl0", "ecclesiastically" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$koPcu84fAumtAJB7S6pdc0", "ecclesiastically" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$koPcu84fAumtAJB7S6pdc0", "ecclesiastically" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$Wfu8gn9R8/N64h53kv28t/", "congregationalism" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$Wfu8gn9R8/N64h53kv28t/", "congregationalism" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$vACC8WLsBcOeZYvUlIYKf1", "congregationalism" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$vACC8WLsBcOeZYvUlIYKf1", "congregationalism" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$spJiuhB.tqHV0fYb9iI5o/", "congregationalism" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$spJiuhB.tqHV0fYb9iI5o/", "congregationalism" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$BuBV7v.LhG4mnRaOIsNka/", "congregationalism" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$BuBV7v.LhG4mnRaOIsNka/", "congregationalism" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$oCtKZQz0gO4YyHoyaKPcK.", "congregationalism" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$oCtKZQz0gO4YyHoyaKPcK.", "congregationalism" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$k6ACHDyL.FEXEs7Y4B2Z8.", "congregationalism" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$k6ACHDyL.FEXEs7Y4B2Z8.", "congregationalism" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$UUfvuTxI1X/KPSOyBkM7S/", "congregationalism" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$UUfvuTxI1X/KPSOyBkM7S/", "congregationalism" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$jMK8jED9511dd16lRTMP/1", "congregationalism" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$jMK8jED9511dd16lRTMP/1", "congregationalism" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$8MU/5M7ELa.K.lvViIKqh.", "dihydrosphingosine" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$8MU/5M7ELa.K.lvViIKqh.", "dihydrosphingosine" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$52kwmn2XX0ngOVRilc2Zv.", "dihydrosphingosine" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$52kwmn2XX0ngOVRilc2Zv.", "dihydrosphingosine" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$6C6La/x8QrFC9u0wX9gkS0", "dihydrosphingosine" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$6C6La/x8QrFC9u0wX9gkS0", "dihydrosphingosine" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$U8wtCy4Qddk6FKYfckbvv/", "dihydrosphingosine" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$U8wtCy4Qddk6FKYfckbvv/", "dihydrosphingosine" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$9a/Xcxcn1L9sFWy.uJ5LV/", "dihydrosphingosine" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$9a/Xcxcn1L9sFWy.uJ5LV/", "dihydrosphingosine" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$XWvYLMgtTtBIuFWfcG8iB.", "dihydrosphingosine" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$XWvYLMgtTtBIuFWfcG8iB.", "dihydrosphingosine" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$Tgyiz.QmKVkI4iWs6TgYo0", "dihydrosphingosine" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$Tgyiz.QmKVkI4iWs6TgYo0", "dihydrosphingosine" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$esMv0fJVPk6kKSDS2PXHt0", "dihydrosphingosine" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$esMv0fJVPk6kKSDS2PXHt0", "dihydrosphingosine" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$asSypOuibv5nmzMqqlBy..", "semianthropological" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$asSypOuibv5nmzMqqlBy..", "semianthropological" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$FujNya0SR5tOSPNJ4hvw9/", "semianthropological" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$FujNya0SR5tOSPNJ4hvw9/", "semianthropological" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$C3GwYqokxwDxRL3r3QHY5/", "semianthropological" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$C3GwYqokxwDxRL3r3QHY5/", "semianthropological" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$QM8F9RAaxK6wpcRq1ZH8U0", "semianthropological" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$QM8F9RAaxK6wpcRq1ZH8U0", "semianthropological" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$gZrIjwskWschW/bhK7X4Q1", "semianthropological" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$gZrIjwskWschW/bhK7X4Q1", "semianthropological" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$8YQsWT219tF2EDtwRYpuf.", "semianthropological" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$8YQsWT219tF2EDtwRYpuf.", "semianthropological" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$wBetYcHxL4OBs.uy.fwSY/", "semianthropological" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$wBetYcHxL4OBs.uy.fwSY/", "semianthropological" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$MkzsLNBjpRUnr3MVX/xbU0", "semianthropological" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$MkzsLNBjpRUnr3MVX/xbU0", "semianthropological" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$i7XIQiC0l0WzOj8k4jDjz1", "palaeogeographically" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$i7XIQiC0l0WzOj8k4jDjz1", "palaeogeographically" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$t.bBegzy54DFNzGUZcRQj0", "palaeogeographically" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$t.bBegzy54DFNzGUZcRQj0", "palaeogeographically" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$Y2lyfLEfob61FIlSeOutN1", "palaeogeographically" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$Y2lyfLEfob61FIlSeOutN1", "palaeogeographically" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$PO13WwiiLL8prJjdcOIdg0", "palaeogeographically" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$PO13WwiiLL8prJjdcOIdg0", "palaeogeographically" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$ffu8g5cNkexnabQSwWqUA1", "palaeogeographically" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$ffu8g5cNkexnabQSwWqUA1", "palaeogeographically" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$LifIoYeUhefFdiTKYjpdM0", "palaeogeographically" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$LifIoYeUhefFdiTKYjpdM0", "palaeogeographically" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$1LwozPomp6EUXMJIbmO8l/", "palaeogeographically" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$1LwozPomp6EUXMJIbmO8l/", "palaeogeographically" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$rFcN0O5NFFAQvVptJ6O0f1", "palaeogeographically" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$rFcN0O5NFFAQvVptJ6O0f1", "palaeogeographically" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$N7WqCwgzdww6s52/zsJee/", "electromyographically" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$N7WqCwgzdww6s52/zsJee/", "electromyographically" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$YBpbWZrQC1Ho3NzbBIhMm1", "electromyographically" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$YBpbWZrQC1Ho3NzbBIhMm1", "electromyographically" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$zii4wvbwkG73xZs70cIdQ.", "electromyographically" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$zii4wvbwkG73xZs70cIdQ.", "electromyographically" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$2vunZ125jkfw6f.NKCh1p/", "electromyographically" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$2vunZ125jkfw6f.NKCh1p/", "electromyographically" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$gcFtpEI48JqM5ayP4Bp7y1", "electromyographically" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$gcFtpEI48JqM5ayP4Bp7y1", "electromyographically" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$vNxdQHhljhKM4dHuz42TE1", "electromyographically" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$vNxdQHhljhKM4dHuz42TE1", "electromyographically" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$e0U0TzxqUX/drHvMR1d/d1", "electromyographically" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$e0U0TzxqUX/drHvMR1d/d1", "electromyographically" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$5INzQqdlwaZpG5QDYuPFz.", "electromyographically" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$5INzQqdlwaZpG5QDYuPFz.", "electromyographically" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$3sbLJe5SaOkarOKvHFuDl0", "noninterchangeableness" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$3sbLJe5SaOkarOKvHFuDl0", "noninterchangeableness" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$1nAG5jIbJ9fxzyeOsvB1x0", "noninterchangeableness" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$1nAG5jIbJ9fxzyeOsvB1x0", "noninterchangeableness" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$HKxA3t3fEqanZada1qDof0", "noninterchangeableness" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$HKxA3t3fEqanZada1qDof0", "noninterchangeableness" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$3u3YtI/yUO2gdw52pQN56.", "noninterchangeableness" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$3u3YtI/yUO2gdw52pQN56.", "noninterchangeableness" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$P6xUkrafzuwmlwHmOwoTU1", "noninterchangeableness" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$P6xUkrafzuwmlwHmOwoTU1", "noninterchangeableness" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$1/mrtTAv.Iq/sa5KGTWHt/", "noninterchangeableness" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$1/mrtTAv.Iq/sa5KGTWHt/", "noninterchangeableness" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$ujQ/gYUUQXkBdU5A1TtwT.", "noninterchangeableness" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$ujQ/gYUUQXkBdU5A1TtwT.", "noninterchangeableness" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$xFlTDlyvukMqKiISClZnO0", "noninterchangeableness" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$xFlTDlyvukMqKiISClZnO0", "noninterchangeableness" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$jfpJSJfPMsnI683AZSyjA.", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$jfpJSJfPMsnI683AZSyjA.", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$6ONp64l8hYPjz5JdxLtl.1", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$6ONp64l8hYPjz5JdxLtl.1", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$Dk7vP3cRdJjH4Yoq9zDdI.", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$Dk7vP3cRdJjH4Yoq9zDdI.", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$5A.ACXzjGvWZCjrqIbjPS/", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$5A.ACXzjGvWZCjrqIbjPS/", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$9OFzTZixdtiRFN.mAKAkN.", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$9OFzTZixdtiRFN.mAKAkN.", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$u5qxZlSLHnAAqvj.mAlHe.", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$u5qxZlSLHnAAqvj.mAlHe.", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$ybEZQbQTLkH/xHPHnMSHx0", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$ybEZQbQTLkH/xHPHnMSHx0", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$rjraIKi4TFohH6pr2LmwG.", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$rjraIKi4TFohH6pr2LmwG.", "abcdefghijklmnopqrstuvwxyz" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$/zARcFh6HXmKEAhKKsa0z0", "electroencephalographically" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$/zARcFh6HXmKEAhKKsa0z0", "electroencephalographically" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$EWtBkNKIuww9KBtDeTxvX.", "electroencephalographically" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$EWtBkNKIuww9KBtDeTxvX.", "electroencephalographically" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$5XKUU6Dx.dgh9HbSbDPhq1", "electroencephalographically" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$5XKUU6Dx.dgh9HbSbDPhq1", "electroencephalographically" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$40YEhqqV/UyJr31PIdT5w/", "electroencephalographically" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$40YEhqqV/UyJr31PIdT5w/", "electroencephalographically" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$1Jcu03SbrHAcfj4Ax4AKT0", "electroencephalographically" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$1Jcu03SbrHAcfj4Ax4AKT0", "electroencephalographically" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$uANqTVrCxb6jpqz8WO3cf.", "electroencephalographically" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$uANqTVrCxb6jpqz8WO3cf.", "electroencephalographically" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$nXQ0hoRCj0b8dmgNnUtLX.", "electroencephalographically" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$nXQ0hoRCj0b8dmgNnUtLX.", "electroencephalographically" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$WbLkfNOLK5WtiOSMZUn2q.", "electroencephalographically" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$WbLkfNOLK5WtiOSMZUn2q.", "electroencephalographically" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$1KQ1OeFcJgUeeUE7k0B0p1", "antidisestablishmentarianism" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$1KQ1OeFcJgUeeUE7k0B0p1", "antidisestablishmentarianism" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$xQKJLLl.GOW.H8XWo0op//", "antidisestablishmentarianism" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$xQKJLLl.GOW.H8XWo0op//", "antidisestablishmentarianism" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$vUFvj.XlIl33DZSZsbFIA.", "antidisestablishmentarianism" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$vUFvj.XlIl33DZSZsbFIA.", "antidisestablishmentarianism" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$l7z13/Nh7Lz5LCaarge2r0", "antidisestablishmentarianism" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$l7z13/Nh7Lz5LCaarge2r0", "antidisestablishmentarianism" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$m9dHbN/TBA/aJi2DAewzR0", "antidisestablishmentarianism" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$m9dHbN/TBA/aJi2DAewzR0", "antidisestablishmentarianism" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$9fysV6hhgF0QSagpTM1270", "antidisestablishmentarianism" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$9fysV6hhgF0QSagpTM1270", "antidisestablishmentarianism" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$BCdIF2sePAbqywhIoR/p0/", "antidisestablishmentarianism" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$BCdIF2sePAbqywhIoR/p0/", "antidisestablishmentarianism" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$1ECaYsEHm9Je7IIDOn4hq0", "antidisestablishmentarianism" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$1ECaYsEHm9Je7IIDOn4hq0", "antidisestablishmentarianism" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$niZTTh4ggT3zAiOEe2SkH0", "cyclotrimethylenetrinitramine" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$niZTTh4ggT3zAiOEe2SkH0", "cyclotrimethylenetrinitramine" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$Tyl0eKhlgbr4375oAIwpg/", "cyclotrimethylenetrinitramine" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$Tyl0eKhlgbr4375oAIwpg/", "cyclotrimethylenetrinitramine" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$lT9PehIzc0URQLv2v2tGY/", "cyclotrimethylenetrinitramine" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$lT9PehIzc0URQLv2v2tGY/", "cyclotrimethylenetrinitramine" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$AmgS3CfFTlYeqYN1WAjqb0", "cyclotrimethylenetrinitramine" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$AmgS3CfFTlYeqYN1WAjqb0", "cyclotrimethylenetrinitramine" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$VraXYqNVw8mclYE/wpZr41", "cyclotrimethylenetrinitramine" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$VraXYqNVw8mclYE/wpZr41", "cyclotrimethylenetrinitramine" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$OKg9uNPFQUrL1blCb6kVW1", "cyclotrimethylenetrinitramine" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$OKg9uNPFQUrL1blCb6kVW1", "cyclotrimethylenetrinitramine" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$5h2bRMgii/GFeziD99H3h0", "cyclotrimethylenetrinitramine" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$5h2bRMgii/GFeziD99H3h0", "cyclotrimethylenetrinitramine" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$91.xU24QWLDu3u9ajajwG0", "cyclotrimethylenetrinitramine" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$91.xU24QWLDu3u9ajajwG0", "cyclotrimethylenetrinitramine" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$pCQlx.XZQKBMqbCzzecqx0", "dichlorodiphenyltrichloroethane" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$pCQlx.XZQKBMqbCzzecqx0", "dichlorodiphenyltrichloroethane" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$S74iEXNQ81OwKG3iRltek.", "dichlorodiphenyltrichloroethane" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$S74iEXNQ81OwKG3iRltek.", "dichlorodiphenyltrichloroethane" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$ekFXoZukX4Vcr8Hk29v5O0", "dichlorodiphenyltrichloroethane" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$ekFXoZukX4Vcr8Hk29v5O0", "dichlorodiphenyltrichloroethane" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$zS4spHA21NF6wbL2cdZ1b/", "dichlorodiphenyltrichloroethane" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$zS4spHA21NF6wbL2cdZ1b/", "dichlorodiphenyltrichloroethane" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$e7UZ9fXChwhzIHEgVKLDo/", "dichlorodiphenyltrichloroethane" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$e7UZ9fXChwhzIHEgVKLDo/", "dichlorodiphenyltrichloroethane" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$EDPND1dv3UgolbT0CGomo.", "dichlorodiphenyltrichloroethane" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$EDPND1dv3UgolbT0CGomo.", "dichlorodiphenyltrichloroethane" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$sT6nLDFFHVHtvoiAqsVJ4.", "dichlorodiphenyltrichloroethane" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$sT6nLDFFHVHtvoiAqsVJ4.", "dichlorodiphenyltrichloroethane" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$B0nNOfezS1EsOSCw1hwVE.", "dichlorodiphenyltrichloroethane" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$B0nNOfezS1EsOSCw1hwVE.", "dichlorodiphenyltrichloroethane" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$guYO2yri6/UfAVMlSleaB/", "multiple words seperated by spaces" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$guYO2yri6/UfAVMlSleaB/", "multiple words seperated by spaces" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$/ujDcxrKqsx/Y8IeiE.eW.", "multiple words seperated by spaces" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$/ujDcxrKqsx/Y8IeiE.eW.", "multiple words seperated by spaces" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$7pmCoLgiMaML.tLYU6O1i/", "multiple words seperated by spaces" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$7pmCoLgiMaML.tLYU6O1i/", "multiple words seperated by spaces" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$8j5ztLT1V9NmwsJKY2Y7Z0", "multiple words seperated by spaces" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$8j5ztLT1V9NmwsJKY2Y7Z0", "multiple words seperated by spaces" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$UqrfQV0vMkotGL4Ob9u2B/", "multiple words seperated by spaces" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$UqrfQV0vMkotGL4Ob9u2B/", "multiple words seperated by spaces" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$XOYRQ3IFyn9te/I.molzz.", "multiple words seperated by spaces" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$XOYRQ3IFyn9te/I.molzz.", "multiple words seperated by spaces" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$WTt2UgHaN77dL/kiv4q1R1", "multiple words seperated by spaces" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$WTt2UgHaN77dL/kiv4q1R1", "multiple words seperated by spaces" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$5lMmOcc6Wb5M/lCjfXseq/", "multiple words seperated by spaces" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$5lMmOcc6Wb5M/lCjfXseq/", "multiple words seperated by spaces" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$nDJLdkfygGRrkekdfqRy/.", "supercalifragilisticexpialidocious" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$nDJLdkfygGRrkekdfqRy/.", "supercalifragilisticexpialidocious" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$RMULaoaPbEp8zjx9.LeAS1", "supercalifragilisticexpialidocious" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$RMULaoaPbEp8zjx9.LeAS1", "supercalifragilisticexpialidocious" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$3eSoE3k2d4SdOz.lWcSF2/", "supercalifragilisticexpialidocious" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$3eSoE3k2d4SdOz.lWcSF2/", "supercalifragilisticexpialidocious" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$sB.kyTGnR6JgJSC6A.V7m1", "supercalifragilisticexpialidocious" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$sB.kyTGnR6JgJSC6A.V7m1", "supercalifragilisticexpialidocious" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$tHZSh729PNpLeusKCPFmu0", "supercalifragilisticexpialidocious" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$tHZSh729PNpLeusKCPFmu0", "supercalifragilisticexpialidocious" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$BeDjBPI3iVIE3b/.lIClZ1", "supercalifragilisticexpialidocious" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$BeDjBPI3iVIE3b/.lIClZ1", "supercalifragilisticexpialidocious" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$1lNhiJRKjlH/CCx/f6B/8.", "supercalifragilisticexpialidocious" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$1lNhiJRKjlH/CCx/f6B/8.", "supercalifragilisticexpialidocious" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$MYSmwHNkrs3U.tZ9AWPAD/", "supercalifragilisticexpialidocious" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$MYSmwHNkrs3U.tZ9AWPAD/", "supercalifragilisticexpialidocious" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$6qRcNZJxStCuGybwlBMcG0", "we have a short salt string but not a short password" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$6qRcNZJxStCuGybwlBMcG0", "we have a short salt string but not a short password" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$35xskSqJCEok.STknsspH0", "we have a short salt string but not a short password" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$35xskSqJCEok.STknsspH0", "we have a short salt string but not a short password" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$rTBH0r0s8gYHLMQkRAB0V.", "we have a short salt string but not a short password" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$rTBH0r0s8gYHLMQkRAB0V.", "we have a short salt string but not a short password" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$0.lT7t/WdBzrLPOHg.Xgb/", "we have a short salt string but not a short password" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$0.lT7t/WdBzrLPOHg.Xgb/", "we have a short salt string but not a short password" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$aq3wBdyKEK04R8x.igjAK/", "we have a short salt string but not a short password" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$aq3wBdyKEK04R8x.igjAK/", "we have a short salt string but not a short password" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$3FBGXs0L3/YtMWGG65RxW.", "we have a short salt string but not a short password" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$3FBGXs0L3/YtMWGG65RxW.", "we have a short salt string but not a short password" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$epbDqeObhA/Cs.3vlZ8Iz0", "we have a short salt string but not a short password" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$epbDqeObhA/Cs.3vlZ8Iz0", "we have a short salt string but not a short password" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$pA6/Ld5uzSwtoLRBXMjN50", "we have a short salt string but not a short password" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$pA6/Ld5uzSwtoLRBXMjN50", "we have a short salt string but not a short password" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$pc87EVEJ50zbDV93YgaNL.", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$pc87EVEJ50zbDV93YgaNL.", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$EBFiO.V/DataRwAYdMTeV1", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$EBFiO.V/DataRwAYdMTeV1", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$v9QAG6XyYfRVYWJg9keMj/", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$v9QAG6XyYfRVYWJg9keMj/", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$OSKc5dkXhstqdZiMAqt5k.", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$OSKc5dkXhstqdZiMAqt5k.", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$T07Mmm/sqF5GlyfHh1B7R0", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$T07Mmm/sqF5GlyfHh1B7R0", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$IlKxZym8R47RWJP.tpO880", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$IlKxZym8R47RWJP.tpO880", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$AS13.HkPwraIyv9mGX5MR1", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$AS13.HkPwraIyv9mGX5MR1", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$DjNNhodV06IOPDg9da0Kn0", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$DjNNhodV06IOPDg9da0Kn0", "multiple word$ $eperated by $pace$ and $pecial character$" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$mwsyNid8s62A1UxEcNhEv.", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$mwsyNid8s62A1UxEcNhEv.", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$NVYi1aTlbdTNXJjqjDpHf1", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$NVYi1aTlbdTNXJjqjDpHf1", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$3oszpTc3y/hIuR8T1NAJX/", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$3oszpTc3y/hIuR8T1NAJX/", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$MYu5OEP./yBGn26oGRZkb.", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$MYu5OEP./yBGn26oGRZkb.", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$chJumqIqpt0MrCgjqGfcT.", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$chJumqIqpt0MrCgjqGfcT.", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$p4wmcodAnG2i35CCoi0.n1", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$p4wmcodAnG2i35CCoi0.n1", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$mQy4fNi0J46MBKFdzg7w7.", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$mQy4fNi0J46MBKFdzg7w7.", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$3nW8pf6bYS/7M3PDlbzow1", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$3nW8pf6bYS/7M3PDlbzow1", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$tAYLnk/irew8sQGIVJS5s0", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$tAYLnk/irew8sQGIVJS5s0", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$f8PyCTswFlCap75oSaRXG/", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$f8PyCTswFlCap75oSaRXG/", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$akcBJ9oK5Ns1GQZqCCzsm1", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$akcBJ9oK5Ns1GQZqCCzsm1", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$zNvHFfrwmhCL4EuPOqdTr0", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$zNvHFfrwmhCL4EuPOqdTr0", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$w04KhxcVOLWnI5vpCS9eb.", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$w04KhxcVOLWnI5vpCS9eb.", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$4NqIJczwFAjonWnox9xYN.", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$4NqIJczwFAjonWnox9xYN.", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$KRmfsC0ngmnm82FHmYp.Y1", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$KRmfsC0ngmnm82FHmYp.Y1", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$Hxa.N5J3I93Kuxh/ODd6q.", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$Hxa.N5J3I93Kuxh/ODd6q.", "12345678901234567890123456789012345678901234567890123456789012345678901234567890" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$Ai.iCejyIHstPBYUH/qm8.", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$Ai.iCejyIHstPBYUH/qm8.", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$hkr5Ady6UY/SyxZ.C9zet.", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$hkr5Ady6UY/SyxZ.C9zet.", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$ctHNLJqqN3ooqlcLfVRFZ1", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$ctHNLJqqN3ooqlcLfVRFZ1", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$.1PgyJmE9I3QoMbTQ1PHN0", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$.1PgyJmE9I3QoMbTQ1PHN0", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$/Lheg.uZusOrQldH5Pifv/", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$/Lheg.uZusOrQldH5Pifv/", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$RJcR8VVSAYjw60EZxtHTM/", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$RJcR8VVSAYjw60EZxtHTM/", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$vqNt6aavqM7V/5G/u69sv1", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$vqNt6aavqM7V/5G/u69sv1", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$0HWnnVm2BwpBJw3uQn2Ko.", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$0HWnnVm2BwpBJw3uQn2Ko.", "a very much longer text to encrypt. This one even stretches over morethan one line." }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$vdKPZNrwx1iMAySoLxrdk0", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$vdKPZNrwx1iMAySoLxrdk0", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$6fIC.NAI5DuuyoDMWpTR0.", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$6fIC.NAI5DuuyoDMWpTR0.", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$hop3K3Ej/J8k5eR9TQX8k1", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$hop3K3Ej/J8k5eR9TQX8k1", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$KGjUqybUA5CWiuh19bazv.", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$KGjUqybUA5CWiuh19bazv.", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$Lytlt7jhRNDpoMVUrcOS21", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$Lytlt7jhRNDpoMVUrcOS21", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$J0zLKky0lbzLbL4sQ/hM6/", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$J0zLKky0lbzLbL4sQ/hM6/", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$qEK3XSQ0lsKqIrXka9veZ.", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$qEK3XSQ0lsKqIrXka9veZ.", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$cQGG0t3jOi3e2TfmacuO7.", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$cQGG0t3jOi3e2TfmacuO7.", "\xd0\xc1\xd2\xcf\xcc\xd8" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$nqhJfBv.aZ2NA3mYm3kAS1", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$nqhJfBv.aZ2NA3mYm3kAS1", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$deu3MNo1XoVmlO7okHVyn.", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$deu3MNo1XoVmlO7okHVyn.", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$VyJcvSJDHlSpunb2FMf7w0", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$VyJcvSJDHlSpunb2FMf7w0", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$EGOxGc7McnEhw5jWrUAs20", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$EGOxGc7McnEhw5jWrUAs20", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$tNRgoA4wd40Gc9NspqXns0", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$tNRgoA4wd40Gc9NspqXns0", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$.Fe7Kcs0fg96Ev1L/fnCn.", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$.Fe7Kcs0fg96Ev1L/fnCn.", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$5EhLeMQH/H7TIxicWljvt.", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$5EhLeMQH/H7TIxicWljvt.", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$NUAO0mwXAM9VkVC/sgEfO1", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$NUAO0mwXAM9VkVC/sgEfO1", "\xd5\xaa\xd5\xaa\xaa\xaa\xd5\xaa" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$qWhJVQwH3CTP0FjT64IwJ/", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$qWhJVQwH3CTP0FjT64IwJ/", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$uGwTAv60x6ngXDl0Aenf./", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$uGwTAv60x6ngXDl0Aenf./", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$bxnZDyizRdZzY8aSwt5FX1", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$bxnZDyizRdZzY8aSwt5FX1", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$B1.9iD9l2DXv.9Tq2te1P/", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$B1.9iD9l2DXv.9Tq2te1P/", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$QE.gSaaSfDSc66Q9ZAZ5c0", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$QE.gSaaSfDSc66Q9ZAZ5c0", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$RP7zc2pMd3eRuwLLSCcR9.", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$RP7zc2pMd3eRuwLLSCcR9.", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$O3lfxRHkK6vx.wLeUX/9S0", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$O3lfxRHkK6vx.wLeUX/9S0", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$cKMjTw4EaC0UzZbCHf23Y.", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$cKMjTw4EaC0UzZbCHf23Y.", "\xe1\xec\xe5\xf8\xe1\xee\xe4\xe5\xf2" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$zWIEi6cZm8RNm.8zt/xXN.", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$zWIEi6cZm8RNm.8zt/xXN.", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$.KSnYJnEu2SkB52tvy/As1", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$.KSnYJnEu2SkB52tvy/As1", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$sfBi.poZpzl4TJr0K7108.", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$sfBi.poZpzl4TJr0K7108.", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$L0iXTaUr40MIPg3mBvPLl/", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$L0iXTaUr40MIPg3mBvPLl/", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$6Pa7nVFJOPeuNqgfJ8hqH.", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$6Pa7nVFJOPeuNqgfJ8hqH.", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$oeBl8G/SYa.bv5UU5sNWt.", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$oeBl8G/SYa.bv5UU5sNWt.", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$25tCKDol2V3WYezpSETMH/", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$25tCKDol2V3WYezpSETMH/", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$qPW7sZTH/6wPanpjE3BPJ.", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$qPW7sZTH/6wPanpjE3BPJ.", "\xf3\xf4\xe5\xf0\xe8\xe1\xee\xe9\xe5" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$TrqW8C1coF.AcQbSv04ew1", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$TrqW8C1coF.AcQbSv04ew1", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$KtbvCRcTVy/MFGAJG6dFS.", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$KtbvCRcTVy/MFGAJG6dFS.", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$3Ur93Np49A.1e7WvxA7mP.", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$3Ur93Np49A.1e7WvxA7mP.", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$IO8i5Kx0ACuPNNTTxDXsI1", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$IO8i5Kx0ACuPNNTTxDXsI1", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$z9t6/Fd0iOVNFNnkZvdfW/", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$z9t6/Fd0iOVNFNnkZvdfW/", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$9oyn1e4gnCA2r5lBXQDis.", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$9oyn1e4gnCA2r5lBXQDis.", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$jz23oJ8hrAwkuVHH2rLre/", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$jz23oJ8hrAwkuVHH2rLre/", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$BYeYBcJl7WnlR457T8GMP1", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$BYeYBcJl7WnlR457T8GMP1", "\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa\xd5\xaa" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$EVrDA9fjBqbukgZ1M6XCD.", "\xc3\xa9tude" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$EVrDA9fjBqbukgZ1M6XCD.", "\xc3\xa9tude" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$uGSm9ir80plDazN5kwygJ/", "\xc3\xa9tude" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$uGSm9ir80plDazN5kwygJ/", "\xc3\xa9tude" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$qVAJGgRgJj37Zc/E1kUl8.", "\xc3\xa9tude" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$qVAJGgRgJj37Zc/E1kUl8.", "\xc3\xa9tude" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$/377DxHSfn9RmokmeJtz51", "\xc3\xa9tude" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$/377DxHSfn9RmokmeJtz51", "\xc3\xa9tude" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$yMXt0FjDbKBjdIq/M/vwa/", "\xc3\xa9tude" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$yMXt0FjDbKBjdIq/M/vwa/", "\xc3\xa9tude" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$M2mfUJ.X75zDGdVz84O460", "\xc3\xa9tude" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$M2mfUJ.X75zDGdVz84O460", "\xc3\xa9tude" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$g54r9P7msmpmoIU2Q9787/", "\xc3\xa9tude" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$g54r9P7msmpmoIU2Q9787/", "\xc3\xa9tude" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$ANwC5qmxPneFiDcHGN/Rb.", "\xc3\xa9tude" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$ANwC5qmxPneFiDcHGN/Rb.", "\xc3\xa9tude" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$xYHMPLTSfH3ot9qAvQx2y/", "C)tude" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$xYHMPLTSfH3ot9qAvQx2y/", "C)tude" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$bXq9u86nL3BMPg5FFq8000", "C)tude" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$bXq9u86nL3BMPg5FFq8000", "C)tude" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$VQSzELON7TpxzpzWXLqSU/", "C)tude" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$VQSzELON7TpxzpzWXLqSU/", "C)tude" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$xR6coTLgW94oNPgr5qtBz1", "C)tude" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$xR6coTLgW94oNPgr5qtBz1", "C)tude" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$kgOI5yl3r.MFsltL0kGAV/", "C)tude" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$kgOI5yl3r.MFsltL0kGAV/", "C)tude" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$yTXbRXo26IYfMLdfogX260", "C)tude" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$yTXbRXo26IYfMLdfogX260", "C)tude" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$x7Re.LIJL4PW7kBnmQoUM/", "C)tude" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$x7Re.LIJL4PW7kBnmQoUM/", "C)tude" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$QAe9.FGxs5dMo.5RdxQ1X1", "C)tude" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$QAe9.FGxs5dMo.5RdxQ1X1", "C)tude" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$YXUCZ4jKtnfWTR/876xBU1", "Chl\xc3\xb6""e" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$YXUCZ4jKtnfWTR/876xBU1", "Chl\xc3\xb6""e" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$kAnlcv/urlR7OtJo.GjqN.", "Chl\xc3\xb6""e" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$kAnlcv/urlR7OtJo.GjqN.", "Chl\xc3\xb6""e" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$9TELbKn9zDRXx146tGJwa/", "Chl\xc3\xb6""e" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$9TELbKn9zDRXx146tGJwa/", "Chl\xc3\xb6""e" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$hSlLNn0mARn.udrbkheKR/", "Chl\xc3\xb6""e" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$hSlLNn0mARn.udrbkheKR/", "Chl\xc3\xb6""e" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$IECytp51LZzYwJDeTVyjA/", "Chl\xc3\xb6""e" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$IECytp51LZzYwJDeTVyjA/", "Chl\xc3\xb6""e" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$gfNH6PngdSWO0L.ZZEUxv.", "Chl\xc3\xb6""e" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$gfNH6PngdSWO0L.ZZEUxv.", "Chl\xc3\xb6""e" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$jvmWA1IOmIMalpd5FGhEQ0", "Chl\xc3\xb6""e" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$jvmWA1IOmIMalpd5FGhEQ0", "Chl\xc3\xb6""e" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$8K.lR6D6UO8m7xh44qx62.", "Chl\xc3\xb6""e" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$8K.lR6D6UO8m7xh44qx62.", "Chl\xc3\xb6""e" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$6kTyjrGLmrxPBMNnCMIOh.", "ChlC6e" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$6kTyjrGLmrxPBMNnCMIOh.", "ChlC6e" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$68wHZAYgi8tUknXC2o1KZ.", "ChlC6e" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$68wHZAYgi8tUknXC2o1KZ.", "ChlC6e" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$Iy6YRquCsUzYxQGZRXnao/", "ChlC6e" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$Iy6YRquCsUzYxQGZRXnao/", "ChlC6e" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$ogY0Z.VozOOi1GVwvwEdC/", "ChlC6e" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$ogY0Z.VozOOi1GVwvwEdC/", "ChlC6e" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$d5sesGlFeyI5io92dsM33/", "ChlC6e" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$d5sesGlFeyI5io92dsM33/", "ChlC6e" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$PrTKLLTO6zN8ZbMoXi4co.", "ChlC6e" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$PrTKLLTO6zN8ZbMoXi4co.", "ChlC6e" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$Ir7sC009r.YGxFy09ze1x/", "ChlC6e" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$Ir7sC009r.YGxFy09ze1x/", "ChlC6e" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$z.Iw9tEQ/mXSdMFeA9azR/", "ChlC6e" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$z.Iw9tEQ/mXSdMFeA9azR/", "ChlC6e" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$KXD5N0pheHOwhi2703Dlj.", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$KXD5N0pheHOwhi2703Dlj.", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$pfaDPWMRUA2qS0BwxEP2J1", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$pfaDPWMRUA2qS0BwxEP2J1", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$K/QAJ2NCtLl/BQlM0AT1y/", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$K/QAJ2NCtLl/BQlM0AT1y/", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$5JwiFFInXEtUmvM6VWQ95.", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$5JwiFFInXEtUmvM6VWQ95.", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$Z.vNDdR2cnaVUdwE9V3aN.", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$Z.vNDdR2cnaVUdwE9V3aN.", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$HMbg68pFQWY0fQvI7D1di/", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$HMbg68pFQWY0fQvI7D1di/", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$pOzGkC84KleHGSYUIdX991", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$pOzGkC84KleHGSYUIdX991", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$ajR3Frz50.DfSOn02hl840", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$ajR3Frz50.DfSOn02hl840", "\xc3\x85ngstr\xc3\xb6m" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$zooSiihlXAwK9CXki1isi/", "C\x05ngstrC6m" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$zooSiihlXAwK9CXki1isi/", "C\x05ngstrC6m" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$edKH3eqUqD3tQvdgS9TTD/", "C\x05ngstrC6m" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$edKH3eqUqD3tQvdgS9TTD/", "C\x05ngstrC6m" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$B/2YHz1wBJ3mfYTMe0Xxv/", "C\x05ngstrC6m" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$B/2YHz1wBJ3mfYTMe0Xxv/", "C\x05ngstrC6m" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$.dgN.BVXZGR97hS29uTDg/", "C\x05ngstrC6m" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$.dgN.BVXZGR97hS29uTDg/", "C\x05ngstrC6m" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$z0WJWXE/AuivRcjQRQC2.1", "C\x05ngstrC6m" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$z0WJWXE/AuivRcjQRQC2.1", "C\x05ngstrC6m" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$ZAK.hkQrr9ndBEzb4pV.W/", "C\x05ngstrC6m" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$ZAK.hkQrr9ndBEzb4pV.W/", "C\x05ngstrC6m" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$9FzbfS4AavzbM646Fxq6B1", "C\x05ngstrC6m" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$9FzbfS4AavzbM646Fxq6B1", "C\x05ngstrC6m" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$REZFm3WVW2Tl.i/hJZkNe1", "C\x05ngstrC6m" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$REZFm3WVW2Tl.i/hJZkNe1", "C\x05ngstrC6m" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$JYLCME16cCIhiipGGM2Tb0", "C\x05ngstrCU*U***U*" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$JYLCME16cCIhiipGGM2Tb0", "C\x05ngstrCU*U***U*" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$gGBUXMpB5s9tEGO8DtU9a1", "C\x05ngstrCU*U***U*" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$gGBUXMpB5s9tEGO8DtU9a1", "C\x05ngstrCU*U***U*" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$.kHZQTcvhqJwUeKk/EyP80", "C\x05ngstrCU*U***U*" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$.kHZQTcvhqJwUeKk/EyP80", "C\x05ngstrCU*U***U*" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$pRbV5XBROWF58JHdraugR/", "C\x05ngstrCU*U***U*" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$pRbV5XBROWF58JHdraugR/", "C\x05ngstrCU*U***U*" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$EQnwzUkuG4wGL2Atf7nG.0", "C\x05ngstrCU*U***U*" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$EQnwzUkuG4wGL2Atf7nG.0", "C\x05ngstrCU*U***U*" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$43oH2yjoXxGXpg3Jimm/S1", "C\x05ngstrCU*U***U*" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$43oH2yjoXxGXpg3Jimm/S1", "C\x05ngstrCU*U***U*" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$NQKelfgvUTFpT3U/1VhsI.", "C\x05ngstrCU*U***U*" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$NQKelfgvUTFpT3U/1VhsI.", "C\x05ngstrCU*U***U*" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$idHgOtbR92hcSY5iEPipk1", "C\x05ngstrCU*U***U*" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$idHgOtbR92hcSY5iEPipk1", "C\x05ngstrCU*U***U*" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$nhzkLV7S7hG/8hCfvfd19.", "U*U***U*ignored" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$nhzkLV7S7hG/8hCfvfd19.", "U*U***U*ignored" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$.d3jbWfyUzZw0bnJc1tb5.", "U*U***U*ignored" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$.d3jbWfyUzZw0bnJc1tb5.", "U*U***U*ignored" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$kkHdXMOfjp8fcJbve9E/U.", "U*U***U*ignored" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$kkHdXMOfjp8fcJbve9E/U.", "U*U***U*ignored" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$4qu.6aTpGtDHpcatBCpZI0", "U*U***U*ignored" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$4qu.6aTpGtDHpcatBCpZI0", "U*U***U*ignored" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$F.iUdGRpvT2Wg8znmmqMt0", "U*U***U*ignored" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$F.iUdGRpvT2Wg8znmmqMt0", "U*U***U*ignored" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$BU1BvpddV1ipSSd1cSPUq0", "U*U***U*ignored" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$BU1BvpddV1ipSSd1cSPUq0", "U*U***U*ignored" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$0.RQn6bXokb0Mb6G/46VR0", "U*U***U*ignored" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$0.RQn6bXokb0Mb6G/46VR0", "U*U***U*ignored" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$y0EpUGkiGh9h7mMhTJ9Ow0", "U*U***U*ignored" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$y0EpUGkiGh9h7mMhTJ9Ow0", "U*U***U*ignored" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$nFqT9f26AOhGV9s3uvjaU1", "U*U*U*U*" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$nFqT9f26AOhGV9s3uvjaU1", "U*U*U*U*" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$aHXsxYF4OXhtMC0q6LUs6.", "U*U*U*U*" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$aHXsxYF4OXhtMC0q6LUs6.", "U*U*U*U*" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$3WIDUhaKc7wk6MhFbKcR/.", "U*U*U*U*" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$3WIDUhaKc7wk6MhFbKcR/.", "U*U*U*U*" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$d2qMIKWRaI.uSzZhMm5Oe1", "U*U*U*U*" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$d2qMIKWRaI.uSzZhMm5Oe1", "U*U*U*U*" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$qW4BO9rAaUy0JMMPGwiCY1", "U*U*U*U*" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$qW4BO9rAaUy0JMMPGwiCY1", "U*U*U*U*" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$opy5.HNPWbPJNs1VMI3AC0", "U*U*U*U*" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$opy5.HNPWbPJNs1VMI3AC0", "U*U*U*U*" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$zw0yrd6Za.jiKHKrPGlLN1", "U*U*U*U*" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$zw0yrd6Za.jiKHKrPGlLN1", "U*U*U*U*" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$mIukLMuIFxC2NR0E53tHk0", "U*U*U*U*" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$mIukLMuIFxC2NR0E53tHk0", "U*U*U*U*" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$5sAA9kR2opUkjDT6gnnmR/", "U*U*U*U*ignored" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$5sAA9kR2opUkjDT6gnnmR/", "U*U*U*U*ignored" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$Ji8VYVB82u7rDq0bTVqt5/", "U*U*U*U*ignored" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$Ji8VYVB82u7rDq0bTVqt5/", "U*U*U*U*ignored" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$ue3Z81cLjhtXrD09iXxC41", "U*U*U*U*ignored" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$ue3Z81cLjhtXrD09iXxC41", "U*U*U*U*ignored" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$opoTJtZbeshDVyQzqx4H6.", "U*U*U*U*ignored" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$opoTJtZbeshDVyQzqx4H6.", "U*U*U*U*ignored" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$QVhSYBF0yNBaxxi.KYNdu1", "U*U*U*U*ignored" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$QVhSYBF0yNBaxxi.KYNdu1", "U*U*U*U*ignored" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$cJWUhNMHNTp8EnkaYFYzT1", "U*U*U*U*ignored" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$cJWUhNMHNTp8EnkaYFYzT1", "U*U*U*U*ignored" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$MdTpHfzUQ.5bL1WhS5Bbc.", "U*U*U*U*ignored" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$MdTpHfzUQ.5bL1WhS5Bbc.", "U*U*U*U*ignored" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$8eWrbMuAjzTn0cqLSPfD51", "U*U*U*U*ignored" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$8eWrbMuAjzTn0cqLSPfD51", "U*U*U*U*ignored" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$.x54/.JZ2keWZW1RJlujn.", "*U*U*U*U" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$.x54/.JZ2keWZW1RJlujn.", "*U*U*U*U" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$JfGDg.SYH36xNnwKy9gAs1", "*U*U*U*U" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$JfGDg.SYH36xNnwKy9gAs1", "*U*U*U*U" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$OzZEHTpYGvxK3tyQOsTza/", "*U*U*U*U" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$OzZEHTpYGvxK3tyQOsTza/", "*U*U*U*U" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$RAIc7iE3.gpDJAuEJc6sp0", "*U*U*U*U" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$RAIc7iE3.gpDJAuEJc6sp0", "*U*U*U*U" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$9RdE.VOIMEzUhlHstx82Z0", "*U*U*U*U" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$9RdE.VOIMEzUhlHstx82Z0", "*U*U*U*U" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$d6CmqtlQJhLEKo1Ow3O1z0", "*U*U*U*U" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$d6CmqtlQJhLEKo1Ow3O1z0", "*U*U*U*U" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$59Fe7H95NWgWM6HcwtSfr0", "*U*U*U*U" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$59Fe7H95NWgWM6HcwtSfr0", "*U*U*U*U" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$zhxvKrSD80KdiJimqDMv2.", "*U*U*U*U" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$zhxvKrSD80KdiJimqDMv2.", "*U*U*U*U" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$gXJ5DACWZprOeayclD9Kb1", "*U*U*U*U*" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$gXJ5DACWZprOeayclD9Kb1", "*U*U*U*U*" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$wWS5WAyYp3eKKe2A58EmF/", "*U*U*U*U*" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$wWS5WAyYp3eKKe2A58EmF/", "*U*U*U*U*" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$02ej31TFIj3eakIudTXd0.", "*U*U*U*U*" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$02ej31TFIj3eakIudTXd0.", "*U*U*U*U*" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$BNZrjIIfFPR0zc4JQ6Zxe0", "*U*U*U*U*" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$BNZrjIIfFPR0zc4JQ6Zxe0", "*U*U*U*U*" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$mZGMnyYU0gLyyWTGsmXsB/", "*U*U*U*U*" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$mZGMnyYU0gLyyWTGsmXsB/", "*U*U*U*U*" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$Fg2MQvrbjJdZlwj7ycfzX0", "*U*U*U*U*" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$Fg2MQvrbjJdZlwj7ycfzX0", "*U*U*U*U*" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$WAAPAlFrbARFkTQx26fI71", "*U*U*U*U*" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$WAAPAlFrbARFkTQx26fI71", "*U*U*U*U*" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$R4mvz2Gbo8gM1RDhNrkds/", "*U*U*U*U*" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$R4mvz2Gbo8gM1RDhNrkds/", "*U*U*U*U*" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$GBRDtIPvtg681WJhYfLxM1", "*U*U*U*U*U*U*U*U" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$GBRDtIPvtg681WJhYfLxM1", "*U*U*U*U*U*U*U*U" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$SKTnDsxlEiIn9dyjcV4JD0", "*U*U*U*U*U*U*U*U" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$SKTnDsxlEiIn9dyjcV4JD0", "*U*U*U*U*U*U*U*U" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$/2sIFDDSHS3HVyBWVvFm..", "*U*U*U*U*U*U*U*U" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$/2sIFDDSHS3HVyBWVvFm..", "*U*U*U*U*U*U*U*U" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$Jy0OsPjPxkDFdaiiy3uZe.", "*U*U*U*U*U*U*U*U" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$Jy0OsPjPxkDFdaiiy3uZe.", "*U*U*U*U*U*U*U*U" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$ZtEYpVfH/zmXaL4R5IcUV0", "*U*U*U*U*U*U*U*U" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$ZtEYpVfH/zmXaL4R5IcUV0", "*U*U*U*U*U*U*U*U" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$sK0lJwg27MVu60LxhshLY/", "*U*U*U*U*U*U*U*U" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$sK0lJwg27MVu60LxhshLY/", "*U*U*U*U*U*U*U*U" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$wBzeyV0NHWJMcI2lpoB8J.", "*U*U*U*U*U*U*U*U" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$wBzeyV0NHWJMcI2lpoB8J.", "*U*U*U*U*U*U*U*U" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$aEr.NaYhG717sqp8T.fNS.", "*U*U*U*U*U*U*U*U" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$aEr.NaYhG717sqp8T.fNS.", "*U*U*U*U*U*U*U*U" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$cHkqRWSzpegtD8clk4rb0.", "*U*U*U*U*U*U*U*U*" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$cHkqRWSzpegtD8clk4rb0.", "*U*U*U*U*U*U*U*U*" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$JcKUdbNhka1ww7PZfWNlA1", "*U*U*U*U*U*U*U*U*" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$JcKUdbNhka1ww7PZfWNlA1", "*U*U*U*U*U*U*U*U*" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$lTp7fgHCKsU6E0uEXqU220", "*U*U*U*U*U*U*U*U*" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$lTp7fgHCKsU6E0uEXqU220", "*U*U*U*U*U*U*U*U*" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$w1SgPE354cxMoT/qqvFwS0", "*U*U*U*U*U*U*U*U*" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$w1SgPE354cxMoT/qqvFwS0", "*U*U*U*U*U*U*U*U*" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$jP3cF0M0Nws1e0bZ/CAcW1", "*U*U*U*U*U*U*U*U*" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$jP3cF0M0Nws1e0bZ/CAcW1", "*U*U*U*U*U*U*U*U*" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$dX1Hw0ZEKrMiej1EwVKNJ0", "*U*U*U*U*U*U*U*U*" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$dX1Hw0ZEKrMiej1EwVKNJ0", "*U*U*U*U*U*U*U*U*" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$nePJCOGb/pD78OVdvS4hC1", "*U*U*U*U*U*U*U*U*" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$nePJCOGb/pD78OVdvS4hC1", "*U*U*U*U*U*U*U*U*" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$g.ZEv/lE.cjwk3pMsx4iO/", "*U*U*U*U*U*U*U*U*" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$g.ZEv/lE.cjwk3pMsx4iO/", "*U*U*U*U*U*U*U*U*" }, - { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$4eWbNuqnNqnGcXTDwhjpQ.", "\xa3" }, - { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$4eWbNuqnNqnGcXTDwhjpQ.", "\xa3" }, - { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$/pCVufpCfnzsvoBuBrf260", "\xa3" }, -@@ -5757,118 +4717,6 @@ - { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$mNSwJceKLy6so7ro3q0rJ0", "\xff\xa3""345" }, - { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$eaj6Hm2IJUm4OnUgJ3h0h0", "\xff\xa3""345" }, - { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$eaj6Hm2IJUm4OnUgJ3h0h0", "\xff\xa3""345" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$4h0XyqrrKdw57r00bWEHk/", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$4h0XyqrrKdw57r00bWEHk/", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$Lhd/pX6iJp/ZM9WwgLTJs.", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$Lhd/pX6iJp/ZM9WwgLTJs.", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$xP.C5gTehjD9jubGRELB.1", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$xP.C5gTehjD9jubGRELB.1", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$Tnbl7StlVvIY0N8SGO7po.", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$Tnbl7StlVvIY0N8SGO7po.", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$ibTYb7hMWZC..UgdIikWc0", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$ibTYb7hMWZC..UgdIikWc0", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$Rl7CCI0aUedOk.EXj7yLr1", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$Rl7CCI0aUedOk.EXj7yLr1", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$JIE8M7ytjgKz8UOWFNuJD.", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$JIE8M7ytjgKz8UOWFNuJD.", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$j/pw2/pRMFVj8fGtjyOte1", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$j/pw2/pRMFVj8fGtjyOte1", "\xff\xa3""34\xff\xff\xff\xa3""345" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$wQo94yAdnW4/b0qqsSVst/", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$wQo94yAdnW4/b0qqsSVst/", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$15e5pHpn0qW4qHye9L3Qp/", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$15e5pHpn0qW4qHye9L3Qp/", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$vOq7UJg4yGHSHhD9gv3n5/", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$vOq7UJg4yGHSHhD9gv3n5/", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$BpOnIit.WhmFS.nUutjsr/", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$BpOnIit.WhmFS.nUutjsr/", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$ewjKtzz12FdW2a4sd.6Cd.", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$ewjKtzz12FdW2a4sd.6Cd.", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$WkPV0xTJ92S/DikX1n1Ku.", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$WkPV0xTJ92S/DikX1n1Ku.", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$.0iarQxVybdm.OPFXG2GA/", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$.0iarQxVybdm.OPFXG2GA/", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$e8rD5RSUKd3SZZ12Z64N0/", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$e8rD5RSUKd3SZZ12Z64N0/", "U\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xffU\xaa\xff" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$jDaNI6FTUvgER7CEU.4kK/", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$jDaNI6FTUvgER7CEU.4kK/", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$rj7rIb3FbO7U9SFtJiIsm0", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$rj7rIb3FbO7U9SFtJiIsm0", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$bgRzhcps3yOA2volTms.c1", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$bgRzhcps3yOA2volTms.c1", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$K.a6n0W.6ntUGlt0JlhWr1", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$K.a6n0W.6ntUGlt0JlhWr1", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$99qgWUud0FA6.HknN.a3y0", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$99qgWUud0FA6.HknN.a3y0", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$KGu8uG2vlilPlOCNIf0xC0", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$KGu8uG2vlilPlOCNIf0xC0", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$9J5gZB8oWnOk6lVTOIHF3.", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$9J5gZB8oWnOk6lVTOIHF3.", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$PUKlLVJw3Ji04K2mQszgv.", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$PUKlLVJw3Ji04K2mQszgv.", "\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU\xaaU" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$uD80UL1Dx5FVtrPEhPVyY0", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$uD80UL1Dx5FVtrPEhPVyY0", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$KY1hu2FbzDAA82iPcxTh0/", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$KY1hu2FbzDAA82iPcxTh0/", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$mEjJX7KTA77zsfBYyYkxw0", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$mEjJX7KTA77zsfBYyYkxw0", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$F.DjXdcZNo/D/0e.eXjOn.", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$F.DjXdcZNo/D/0e.eXjOn.", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$EtfJtM5tMVM.frDPq9B.c1", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$EtfJtM5tMVM.frDPq9B.c1", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$UjvWiHJiNJ7CKA7DPrklD1", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$UjvWiHJiNJ7CKA7DPrklD1", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$SD6FxNTFS1ZtndcGwEs3j0", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$SD6FxNTFS1ZtndcGwEs3j0", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$OKbvtygvqY.icPaV35cbF.", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$OKbvtygvqY.icPaV35cbF.", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$mRtWdPayy0Ru46OLdPlmv0", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$mRtWdPayy0Ru46OLdPlmv0", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$LFxlk7WSdXTtlK.VxZgxF/", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$LFxlk7WSdXTtlK.VxZgxF/", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$6eBrPZASuWk6RGMIcMw/p0", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$6eBrPZASuWk6RGMIcMw/p0", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$3S7nfBvwB4bTA5q7kc9pw/", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$3S7nfBvwB4bTA5q7kc9pw/", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$bBnudN8ntssjaOrvC3mDt/", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$bBnudN8ntssjaOrvC3mDt/", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$cWRwwPkUNUzlSKqMRAt4s0", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$cWRwwPkUNUzlSKqMRAt4s0", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$e8oOM2HMwilyBDFzpyI.70", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$e8oOM2HMwilyBDFzpyI.70", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$qcj64hLYjRAosdEc9tJFt.", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$qcj64hLYjRAosdEc9tJFt.", "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789chars after 72 are ignored" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$deKaGjIz4foE5oyQsgSIk.", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$deKaGjIz4foE5oyQsgSIk.", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$AbcQLeDOGdaFSw.AZ75nL0", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$AbcQLeDOGdaFSw.AZ75nL0", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$A3LdDzpkPep0Dn8wNoa0e0", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$A3LdDzpkPep0Dn8wNoa0e0", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$0aOqXodAKrUf/bHCMOk0g.", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$0aOqXodAKrUf/bHCMOk0g.", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$Ls2z1bXa1yJvqakpz5Z2V/", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$Ls2z1bXa1yJvqakpz5Z2V/", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$TNA2ZCHnWQA3SdQvV4v7..", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$TNA2ZCHnWQA3SdQvV4v7..", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$2YMuuYkym00pebkkgtyKB/", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$2YMuuYkym00pebkkgtyKB/", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$ZLUF/nSI.KDz3xg4DXBSb.", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$ZLUF/nSI.KDz3xg4DXBSb.", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$2PPhUDdQU7yoAfMj.UNcS0", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$2PPhUDdQU7yoAfMj.UNcS0", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$ZZDs4gwYyqh5.nW0JbEi90", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$ZZDs4gwYyqh5.nW0JbEi90", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$T7WrxfgbhqB7k/CoOEhnf1", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$T7WrxfgbhqB7k/CoOEhnf1", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$/DZFyKtq4p8aCBvZI07fk/", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$/DZFyKtq4p8aCBvZI07fk/", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$AbK7HBVZHYH5gfL64oDgA/", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$AbK7HBVZHYH5gfL64oDgA/", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$p8xOv7cJuJP2qRCR9RR8b/", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$p8xOv7cJuJP2qRCR9RR8b/", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$bkt4G1.CkSi8v03XfCuQQ1", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$bkt4G1.CkSi8v03XfCuQQ1", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$skl1tcqWLFdAjag/z3vuD/", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$skl1tcqWLFdAjag/z3vuD/", "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa""chars after 72 are ignored as usual" }, - { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$5R/cG4CL2Lmc7wTf155mh.", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has forgotten." }, - { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$5R/cG4CL2Lmc7wTf155mh.", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has forgotten." }, - { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$FToplDYTms/5PNpWJoMLH/", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has forgotten." }, -@@ -5885,54 +4733,6 @@ - { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$6PwhEnzhej3fHkbxg1BI/1", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has forgotten." }, - { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$2o/WzMcgZgIP10gFnPSzQ1", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has forgotten." }, - { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$2o/WzMcgZgIP10gFnPSzQ1", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has forgotten." }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$CBEjHdNo7og465igYur190", "THE YEAR" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$CBEjHdNo7og465igYur190", "THE YEAR" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$bydeYeij3cD/tBj/LsXD80", "THE YEAR" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$bydeYeij3cD/tBj/LsXD80", "THE YEAR" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$4rQvrOWD5gnrlkB3LHCzG1", "THE YEAR" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$4rQvrOWD5gnrlkB3LHCzG1", "THE YEAR" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$0gQIjFsm.Way/Q0sQyDie.", "THE YEAR" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$0gQIjFsm.Way/Q0sQyDie.", "THE YEAR" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$PCVERpOD0Qvz/i0AEEequ.", "THE YEAR" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$PCVERpOD0Qvz/i0AEEequ.", "THE YEAR" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$iuUkUhsBfT19USuSKpm2Q0", "THE YEAR" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$iuUkUhsBfT19USuSKpm2Q0", "THE YEAR" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$sj82sXuMq79eHy4suSzXK.", "THE YEAR" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$sj82sXuMq79eHy4suSzXK.", "THE YEAR" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$opranCpi5rPhqlQk0MoMW0", "THE YEAR" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$opranCpi5rPhqlQk0MoMW0", "THE YEAR" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$Z15vN3BCFsQMyzYgZycGo1", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$Z15vN3BCFsQMyzYgZycGo1", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$Jz6/zlL/o0wi1bDvyx2qK0", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$Jz6/zlL/o0wi1bDvyx2qK0", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$b.rHq7q15BN/8m0HIFAxd.", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$b.rHq7q15BN/8m0HIFAxd.", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$VKKQTptGfX4wLEERWwiJj0", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$VKKQTptGfX4wLEERWwiJj0", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$KUVAuOU6uboNvI6TqYIgM/", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$KUVAuOU6uboNvI6TqYIgM/", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$TRVkZrO3jzpLEsv7Qafmq.", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$TRVkZrO3jzpLEsv7Qafmq.", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$Gv9JwmPJsZoRvFMjMZ8m0/", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$Gv9JwmPJsZoRvFMjMZ8m0/", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$/okaxfTbJSC46jvUeJ0GJ1", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$/okaxfTbJSC46jvUeJ0GJ1", "THE YEAR 1866 was marked by a bizarre development, an unexplained and do" }, -- { "$md5$9ZLwtuTO", "$md5$9ZLwtuTO$rRDUjSnQTZMmuZrPxHqAT/", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5$9ZLwtuTO$x", "$md5$9ZLwtuTO$rRDUjSnQTZMmuZrPxHqAT/", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5$9ZLwtuTO$", "$md5$9ZLwtuTO$$hdy45N1QBwj/snegAsURJ0", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5$9ZLwtuTO$$", "$md5$9ZLwtuTO$$hdy45N1QBwj/snegAsURJ0", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5$1xMeE.at", "$md5$1xMeE.at$LRFqii9nHT/AjVwqGXoiD1", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5$1xMeE.at$x", "$md5$1xMeE.at$LRFqii9nHT/AjVwqGXoiD1", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5$1xMeE.at$", "$md5$1xMeE.at$$B8JCadurzodVPouuuHCFb/", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5$1xMeE.at$$", "$md5$1xMeE.at$$B8JCadurzodVPouuuHCFb/", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5,rounds=12$9ZLwtuTO", "$md5,rounds=12$9ZLwtuTO$6zwyztP9R1HxeXAqXKRTT.", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5,rounds=12$9ZLwtuTO$x", "$md5,rounds=12$9ZLwtuTO$6zwyztP9R1HxeXAqXKRTT.", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5,rounds=12$9ZLwtuTO$", "$md5,rounds=12$9ZLwtuTO$$VenBRu5K3KksVWxWdBCG80", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5,rounds=12$9ZLwtuTO$$", "$md5,rounds=12$9ZLwtuTO$$VenBRu5K3KksVWxWdBCG80", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5,rounds=12$1xMeE.at", "$md5,rounds=12$1xMeE.at$xdDLs5cq46leUNRoOuYHu/", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5,rounds=12$1xMeE.at$x", "$md5,rounds=12$1xMeE.at$xdDLs5cq46leUNRoOuYHu/", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5,rounds=12$1xMeE.at$", "$md5,rounds=12$1xMeE.at$$gPExVGm.LJji0LtAjO30M/", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, -- { "$md5,rounds=12$1xMeE.at$$", "$md5,rounds=12$1xMeE.at$$gPExVGm.LJji0LtAjO30M/", "THE YEAR 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has f" }, - #endif // sunmd5 - - #if INCLUDE_yescrypt && defined TEST_yescrypt diff --git a/libxcrypt-4.4.12-doc_crypt_5_typo_fix.patch b/libxcrypt-4.4.12-doc_crypt_5_typo_fix.patch deleted file mode 100644 index fa5c7fd..0000000 --- a/libxcrypt-4.4.12-doc_crypt_5_typo_fix.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 8664cb16c4913796b17b2cc2373582ab90031736 Mon Sep 17 00:00:00 2001 -From: Zack Weinberg -Date: Mon, 10 Feb 2020 19:50:56 -0500 -Subject: [PATCH] doc/crypt.5: typo fix. - ---- - doc/crypt.5 | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/doc/crypt.5 b/doc/crypt.5 -index 3dbab96..7be7161 100644 ---- a/doc/crypt.5 -+++ b/doc/crypt.5 -@@ -139,7 +139,7 @@ and does not show the division into prefix, options, salt, and hash. - .de hash - .Bl -tag -width 2n - .It Sy Prefix --.\" mandoc bug: .Qq comes out with curly quptes. -+.\" mandoc bug: .Qq comes out with curly quotes. - .\" mandoc bug: .Li is hyperlinked to itself for no apparent reason. - .Bf Li - "\\$1" diff --git a/libxcrypt.spec b/libxcrypt.spec index 89c9326..fb16cee 100644 --- a/libxcrypt.spec +++ b/libxcrypt.spec @@ -157,9 +157,6 @@ URL: https://github.com/besser82/%{name} Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz # Patch 0000 - 2999: Backported patches from upstream. -Patch0000: %{url}/commit/a24eed01d5efce669b502bc37644ebb5e95860f5.patch#/%{name}-4.4.12-Explicitly_declare_all_non-static_functions_as_extern.patch -Patch0001: %{url}/commit/8e99039823c712e3aa6ee0f76e68818225735dc1.patch#/%{name}-4.4.12-Speed_up_ka-sunmd5_by_skipping_most_of_the_test_phrases.patch -Patch0002: %{url}/commit/8664cb16c4913796b17b2cc2373582ab90031736.patch#/%{name}-4.4.12-doc_crypt_5_typo_fix.patch # Patch 3000 - 5999: Backported patches from pull requests.