Add tests to regression tests for dict

This commit is contained in:
Sen Huang 2021-03-24 17:16:49 -07:00
parent f8ac0ea7ef
commit 1cadf86b39
3 changed files with 635 additions and 32 deletions

View File

@ -32,6 +32,20 @@
param_value_t const level_##x##_param_values[] = { \
{.param = ZSTD_c_compressionLevel, .value = x}, \
}; \
param_value_t const level_##x##_param_values_dms[] = { \
{.param = ZSTD_c_compressionLevel, .value = x}, \
{.param = ZSTD_c_enableDedicatedDictSearch, .value = 0}, \
{.param = ZSTD_c_forceAttachDict, .value = ZSTD_dictForceAttach}, \
}; \
param_value_t const level_##x##_param_values_dds[] = { \
{.param = ZSTD_c_compressionLevel, .value = x}, \
{.param = ZSTD_c_enableDedicatedDictSearch, .value = 1}, \
}; \
param_value_t const level_##x##_param_values_dictcopy[] = { \
{.param = ZSTD_c_compressionLevel, .value = x}, \
{.param = ZSTD_c_enableDedicatedDictSearch, .value = 0}, \
{.param = ZSTD_c_forceAttachDict, .value = ZSTD_dictForceCopy}, \
}; \
config_t const level_##x = { \
.name = "level " #x, \
.cli_args = "-" #x, \
@ -42,6 +56,24 @@
.cli_args = "-" #x, \
.param_values = PARAM_VALUES(level_##x##_param_values), \
.use_dictionary = 1, \
}; \
config_t const level_##x##_dict_dms = { \
.name = "level " #x " with dict dms", \
.cli_args = "-" #x, \
.param_values = PARAM_VALUES(level_##x##_param_values_dms), \
.use_dictionary = 1, \
}; \
config_t const level_##x##_dict_dds = { \
.name = "level " #x " with dict dds", \
.cli_args = "-" #x, \
.param_values = PARAM_VALUES(level_##x##_param_values_dds), \
.use_dictionary = 1, \
}; \
config_t const level_##x##_dict_copy = { \
.name = "level " #x " with dict copy", \
.cli_args = "-" #x, \
.param_values = PARAM_VALUES(level_##x##_param_values_dictcopy), \
.use_dictionary = 1, \
};
#define PARAM_VALUES(pv) \
@ -174,6 +206,16 @@ static config_t huffman_literals = {
.param_values = PARAM_VALUES(huffman_literals_param_values),
};
static param_value_t const dict_mode_dms_param_values[] = {
{.param = ZSTD_c_enableDedicatedDictSearch, .value = 0},
{.param = ZSTD_c_forceAttachDict, .value = ZSTD_lcm_huffman},
};
static config_t dict_mode_dms = {
.name = "dict match state",
.param_values = PARAM_VALUES(dict_mode_dms_param_values),
};
static param_value_t const explicit_params_param_values[] = {
{.param = ZSTD_c_checksumFlag, .value = 1},
{.param = ZSTD_c_contentSizeFlag, .value = 0},
@ -194,7 +236,7 @@ static config_t explicit_params = {
static config_t const* g_configs[] = {
#define FAST_LEVEL(x) &level_fast##x, &level_fast##x##_dict,
#define LEVEL(x) &level_##x, &level_##x##_dict,
#define LEVEL(x) &level_##x, &level_##x##_dict, &level_##x##_dict_dms, &level_##x##_dict_dds, &level_##x##_dict_copy,
#include "levels.h"
#undef LEVEL
#undef FAST_LEVEL

View File

@ -651,7 +651,7 @@ method_t const old_streaming_advanced = {
};
method_t const old_streaming_cdict = {
.name = "old streaming cdcit",
.name = "old streaming cdict",
.create = buffer_state_create,
.compress = old_streaming_compress_cdict,
.destroy = buffer_state_destroy,

View File

@ -66,26 +66,59 @@ github, level -1, compress
github, level -1 with dict, compress cctx, 43527
github, level 0, compress cctx, 136335
github, level 0 with dict, compress cctx, 41534
github, level 0 with dict dms, compress cctx, 41534
github, level 0 with dict dds, compress cctx, 41534
github, level 0 with dict copy, compress cctx, 41534
github, level 1, compress cctx, 142465
github, level 1 with dict, compress cctx, 42157
github, level 1 with dict dms, compress cctx, 42157
github, level 1 with dict dds, compress cctx, 42157
github, level 1 with dict copy, compress cctx, 42157
github, level 3, compress cctx, 136335
github, level 3 with dict, compress cctx, 41534
github, level 3 with dict dms, compress cctx, 41534
github, level 3 with dict dds, compress cctx, 41534
github, level 3 with dict copy, compress cctx, 41534
github, level 4, compress cctx, 136199
github, level 4 with dict, compress cctx, 41725
github, level 4 with dict dms, compress cctx, 41725
github, level 4 with dict dds, compress cctx, 41725
github, level 4 with dict copy, compress cctx, 41725
github, level 5, compress cctx, 135121
github, level 5 with dict, compress cctx, 38934
github, level 5 with dict dms, compress cctx, 38934
github, level 5 with dict dds, compress cctx, 38934
github, level 5 with dict copy, compress cctx, 38934
github, level 6, compress cctx, 135122
github, level 6 with dict, compress cctx, 38628
github, level 6 with dict dms, compress cctx, 38628
github, level 6 with dict dds, compress cctx, 38628
github, level 6 with dict copy, compress cctx, 38628
github, level 7, compress cctx, 135122
github, level 7 with dict, compress cctx, 38745
github, level 7 with dict dms, compress cctx, 38745
github, level 7 with dict dds, compress cctx, 38745
github, level 7 with dict copy, compress cctx, 38745
github, level 9, compress cctx, 135122
github, level 9 with dict, compress cctx, 39341
github, level 9 with dict dms, compress cctx, 39341
github, level 9 with dict dds, compress cctx, 39341
github, level 9 with dict copy, compress cctx, 39341
github, level 13, compress cctx, 134064
github, level 13 with dict, compress cctx, 39948
github, level 13 with dict dms, compress cctx, 39948
github, level 13 with dict dds, compress cctx, 39948
github, level 13 with dict copy, compress cctx, 39948
github, level 16, compress cctx, 134064
github, level 16 with dict, compress cctx, 37568
github, level 16 with dict dms, compress cctx, 37568
github, level 16 with dict dds, compress cctx, 37568
github, level 16 with dict copy, compress cctx, 37568
github, level 19, compress cctx, 134064
github, level 19 with dict, compress cctx, 37567
github, level 19 with dict dms, compress cctx, 37567
github, level 19 with dict dds, compress cctx, 37567
github, level 19 with dict copy, compress cctx, 37567
github, long distance mode, compress cctx, 141102
github, multithreaded, compress cctx, 141102
github, multithreaded long distance mode, compress cctx, 141102
@ -156,26 +189,59 @@ github, level -1, zstdcli,
github, level -1 with dict, zstdcli, 45170
github, level 0, zstdcli, 138335
github, level 0 with dict, zstdcli, 43148
github, level 0 with dict dms, zstdcli, 43148
github, level 0 with dict dds, zstdcli, 43148
github, level 0 with dict copy, zstdcli, 43148
github, level 1, zstdcli, 144465
github, level 1 with dict, zstdcli, 43682
github, level 1 with dict dms, zstdcli, 43682
github, level 1 with dict dds, zstdcli, 43682
github, level 1 with dict copy, zstdcli, 43682
github, level 3, zstdcli, 138335
github, level 3 with dict, zstdcli, 43148
github, level 3 with dict dms, zstdcli, 43148
github, level 3 with dict dds, zstdcli, 43148
github, level 3 with dict copy, zstdcli, 43148
github, level 4, zstdcli, 138199
github, level 4 with dict, zstdcli, 43251
github, level 4 with dict dms, zstdcli, 43251
github, level 4 with dict dds, zstdcli, 43251
github, level 4 with dict copy, zstdcli, 43251
github, level 5, zstdcli, 137121
github, level 5 with dict, zstdcli, 40741
github, level 5 with dict dms, zstdcli, 40741
github, level 5 with dict dds, zstdcli, 40741
github, level 5 with dict copy, zstdcli, 40741
github, level 6, zstdcli, 137122
github, level 6 with dict, zstdcli, 40632
github, level 6 with dict dms, zstdcli, 40632
github, level 6 with dict dds, zstdcli, 40632
github, level 6 with dict copy, zstdcli, 40632
github, level 7, zstdcli, 137122
github, level 7 with dict, zstdcli, 40771
github, level 7 with dict dms, zstdcli, 40771
github, level 7 with dict dds, zstdcli, 40771
github, level 7 with dict copy, zstdcli, 40771
github, level 9, zstdcli, 137122
github, level 9 with dict, zstdcli, 41332
github, level 9 with dict dms, zstdcli, 41332
github, level 9 with dict dds, zstdcli, 41332
github, level 9 with dict copy, zstdcli, 41332
github, level 13, zstdcli, 136064
github, level 13 with dict, zstdcli, 41743
github, level 13 with dict dms, zstdcli, 41743
github, level 13 with dict dds, zstdcli, 41743
github, level 13 with dict copy, zstdcli, 41743
github, level 16, zstdcli, 136064
github, level 16 with dict, zstdcli, 39577
github, level 16 with dict dms, zstdcli, 39577
github, level 16 with dict dds, zstdcli, 39577
github, level 16 with dict copy, zstdcli, 39577
github, level 19, zstdcli, 136064
github, level 19 with dict, zstdcli, 39576
github, level 19 with dict dms, zstdcli, 39576
github, level 19 with dict dds, zstdcli, 39576
github, level 19 with dict copy, zstdcli, 39576
github, long distance mode, zstdcli, 138335
github, multithreaded, zstdcli, 138335
github, multithreaded long distance mode, zstdcli, 138335
@ -195,26 +261,59 @@ github.tar, level -1, zstdcli,
github.tar, level -1 with dict, zstdcli, 41126
github.tar, level 0, zstdcli, 38445
github.tar, level 0 with dict, zstdcli, 37999
github.tar, level 0 with dict dms, zstdcli, 37999
github.tar, level 0 with dict dds, zstdcli, 37999
github.tar, level 0 with dict copy, zstdcli, 37999
github.tar, level 1, zstdcli, 39346
github.tar, level 1 with dict, zstdcli, 38313
github.tar, level 1 with dict dms, zstdcli, 38313
github.tar, level 1 with dict dds, zstdcli, 38313
github.tar, level 1 with dict copy, zstdcli, 38313
github.tar, level 3, zstdcli, 38445
github.tar, level 3 with dict, zstdcli, 37999
github.tar, level 3 with dict dms, zstdcli, 37999
github.tar, level 3 with dict dds, zstdcli, 37999
github.tar, level 3 with dict copy, zstdcli, 37999
github.tar, level 4, zstdcli, 38471
github.tar, level 4 with dict, zstdcli, 37952
github.tar, level 4 with dict dms, zstdcli, 37952
github.tar, level 4 with dict dds, zstdcli, 37952
github.tar, level 4 with dict copy, zstdcli, 37952
github.tar, level 5, zstdcli, 39792
github.tar, level 5 with dict, zstdcli, 39231
github.tar, level 5 with dict dms, zstdcli, 39231
github.tar, level 5 with dict dds, zstdcli, 39231
github.tar, level 5 with dict copy, zstdcli, 39231
github.tar, level 6, zstdcli, 39607
github.tar, level 6 with dict, zstdcli, 38669
github.tar, level 6 with dict dms, zstdcli, 38669
github.tar, level 6 with dict dds, zstdcli, 38669
github.tar, level 6 with dict copy, zstdcli, 38669
github.tar, level 7, zstdcli, 39210
github.tar, level 7 with dict, zstdcli, 37958
github.tar, level 7 with dict dms, zstdcli, 37958
github.tar, level 7 with dict dds, zstdcli, 37958
github.tar, level 7 with dict copy, zstdcli, 37958
github.tar, level 9, zstdcli, 36721
github.tar, level 9 with dict, zstdcli, 36886
github.tar, level 9 with dict dms, zstdcli, 36886
github.tar, level 9 with dict dds, zstdcli, 36886
github.tar, level 9 with dict copy, zstdcli, 36886
github.tar, level 13, zstdcli, 35625
github.tar, level 13 with dict, zstdcli, 38730
github.tar, level 13 with dict dms, zstdcli, 38730
github.tar, level 13 with dict dds, zstdcli, 38730
github.tar, level 13 with dict copy, zstdcli, 38730
github.tar, level 16, zstdcli, 40259
github.tar, level 16 with dict, zstdcli, 33643
github.tar, level 16 with dict dms, zstdcli, 33643
github.tar, level 16 with dict dds, zstdcli, 33643
github.tar, level 16 with dict copy, zstdcli, 33643
github.tar, level 19, zstdcli, 32841
github.tar, level 19 with dict, zstdcli, 32899
github.tar, level 19 with dict dms, zstdcli, 32899
github.tar, level 19 with dict dds, zstdcli, 32899
github.tar, level 19 with dict copy, zstdcli, 32899
github.tar, no source size, zstdcli, 38442
github.tar, no source size with dict, zstdcli, 38004
github.tar, long distance mode, zstdcli, 39726
@ -288,26 +387,59 @@ github, level -1, advanced
github, level -1 with dict, advanced one pass, 43170
github, level 0, advanced one pass, 136335
github, level 0 with dict, advanced one pass, 41148
github, level 0 with dict dms, advanced one pass, 41148
github, level 0 with dict dds, advanced one pass, 41148
github, level 0 with dict copy, advanced one pass, 41124
github, level 1, advanced one pass, 142465
github, level 1 with dict, advanced one pass, 41682
github, level 1 with dict dms, advanced one pass, 41682
github, level 1 with dict dds, advanced one pass, 41682
github, level 1 with dict copy, advanced one pass, 41674
github, level 3, advanced one pass, 136335
github, level 3 with dict, advanced one pass, 41148
github, level 3 with dict dms, advanced one pass, 41148
github, level 3 with dict dds, advanced one pass, 41148
github, level 3 with dict copy, advanced one pass, 41124
github, level 4, advanced one pass, 136199
github, level 4 with dict, advanced one pass, 41251
github, level 4 with dict dms, advanced one pass, 41251
github, level 4 with dict dds, advanced one pass, 41251
github, level 4 with dict copy, advanced one pass, 41216
github, level 5, advanced one pass, 135121
github, level 5 with dict, advanced one pass, 38938
github, level 5 with dict dms, advanced one pass, 38938
github, level 5 with dict dds, advanced one pass, 38741
github, level 5 with dict copy, advanced one pass, 38934
github, level 6, advanced one pass, 135122
github, level 6 with dict, advanced one pass, 38632
github, level 6 with dict dms, advanced one pass, 38632
github, level 6 with dict dds, advanced one pass, 38632
github, level 6 with dict copy, advanced one pass, 38628
github, level 7, advanced one pass, 135122
github, level 7 with dict, advanced one pass, 38771
github, level 7 with dict dms, advanced one pass, 38771
github, level 7 with dict dds, advanced one pass, 38771
github, level 7 with dict copy, advanced one pass, 38745
github, level 9, advanced one pass, 135122
github, level 9 with dict, advanced one pass, 39332
github, level 9 with dict dms, advanced one pass, 39332
github, level 9 with dict dds, advanced one pass, 39332
github, level 9 with dict copy, advanced one pass, 39341
github, level 13, advanced one pass, 134064
github, level 13 with dict, advanced one pass, 39743
github, level 13 with dict dms, advanced one pass, 39743
github, level 13 with dict dds, advanced one pass, 39743
github, level 13 with dict copy, advanced one pass, 39948
github, level 16, advanced one pass, 134064
github, level 16 with dict, advanced one pass, 37577
github, level 16 with dict dms, advanced one pass, 37577
github, level 16 with dict dds, advanced one pass, 37577
github, level 16 with dict copy, advanced one pass, 37568
github, level 19, advanced one pass, 134064
github, level 19 with dict, advanced one pass, 37576
github, level 19 with dict dms, advanced one pass, 37576
github, level 19 with dict dds, advanced one pass, 37576
github, level 19 with dict copy, advanced one pass, 37567
github, no source size, advanced one pass, 136335
github, no source size with dict, advanced one pass, 41148
github, long distance mode, advanced one pass, 136335
@ -329,26 +461,59 @@ github.tar, level -1, advanced
github.tar, level -1 with dict, advanced one pass, 41122
github.tar, level 0, advanced one pass, 38441
github.tar, level 0 with dict, advanced one pass, 37995
github.tar, level 0 with dict dms, advanced one pass, 38003
github.tar, level 0 with dict dds, advanced one pass, 37995
github.tar, level 0 with dict copy, advanced one pass, 37995
github.tar, level 1, advanced one pass, 39265
github.tar, level 1 with dict, advanced one pass, 38309
github.tar, level 1 with dict dms, advanced one pass, 38319
github.tar, level 1 with dict dds, advanced one pass, 38309
github.tar, level 1 with dict copy, advanced one pass, 38309
github.tar, level 3, advanced one pass, 38441
github.tar, level 3 with dict, advanced one pass, 37995
github.tar, level 3 with dict dms, advanced one pass, 38003
github.tar, level 3 with dict dds, advanced one pass, 37995
github.tar, level 3 with dict copy, advanced one pass, 37995
github.tar, level 4, advanced one pass, 38467
github.tar, level 4 with dict, advanced one pass, 37948
github.tar, level 4 with dict dms, advanced one pass, 37954
github.tar, level 4 with dict dds, advanced one pass, 37948
github.tar, level 4 with dict copy, advanced one pass, 37948
github.tar, level 5, advanced one pass, 39788
github.tar, level 5 with dict, advanced one pass, 39715
github.tar, level 5 with dict dms, advanced one pass, 39365
github.tar, level 5 with dict dds, advanced one pass, 39227
github.tar, level 5 with dict copy, advanced one pass, 39715
github.tar, level 6, advanced one pass, 39603
github.tar, level 6 with dict, advanced one pass, 38800
github.tar, level 6 with dict dms, advanced one pass, 38665
github.tar, level 6 with dict dds, advanced one pass, 38665
github.tar, level 6 with dict copy, advanced one pass, 38800
github.tar, level 7, advanced one pass, 39206
github.tar, level 7 with dict, advanced one pass, 38071
github.tar, level 7 with dict dms, advanced one pass, 37954
github.tar, level 7 with dict dds, advanced one pass, 37954
github.tar, level 7 with dict copy, advanced one pass, 38071
github.tar, level 9, advanced one pass, 36717
github.tar, level 9 with dict, advanced one pass, 36898
github.tar, level 9 with dict dms, advanced one pass, 36882
github.tar, level 9 with dict dds, advanced one pass, 36882
github.tar, level 9 with dict copy, advanced one pass, 36898
github.tar, level 13, advanced one pass, 35621
github.tar, level 13 with dict, advanced one pass, 38726
github.tar, level 13 with dict dms, advanced one pass, 38903
github.tar, level 13 with dict dds, advanced one pass, 38726
github.tar, level 13 with dict copy, advanced one pass, 38726
github.tar, level 16, advanced one pass, 40255
github.tar, level 16 with dict, advanced one pass, 33639
github.tar, level 16 with dict dms, advanced one pass, 33544
github.tar, level 16 with dict dds, advanced one pass, 33639
github.tar, level 16 with dict copy, advanced one pass, 33639
github.tar, level 19, advanced one pass, 32837
github.tar, level 19 with dict, advanced one pass, 32895
github.tar, level 19 with dict dms, advanced one pass, 32672
github.tar, level 19 with dict dds, advanced one pass, 32895
github.tar, level 19 with dict copy, advanced one pass, 32895
github.tar, no source size, advanced one pass, 38441
github.tar, no source size with dict, advanced one pass, 37995
github.tar, long distance mode, advanced one pass, 39722
@ -422,26 +587,59 @@ github, level -1, advanced
github, level -1 with dict, advanced one pass small out, 43170
github, level 0, advanced one pass small out, 136335
github, level 0 with dict, advanced one pass small out, 41148
github, level 0 with dict dms, advanced one pass small out, 41148
github, level 0 with dict dds, advanced one pass small out, 41148
github, level 0 with dict copy, advanced one pass small out, 41124
github, level 1, advanced one pass small out, 142465
github, level 1 with dict, advanced one pass small out, 41682
github, level 1 with dict dms, advanced one pass small out, 41682
github, level 1 with dict dds, advanced one pass small out, 41682
github, level 1 with dict copy, advanced one pass small out, 41674
github, level 3, advanced one pass small out, 136335
github, level 3 with dict, advanced one pass small out, 41148
github, level 3 with dict dms, advanced one pass small out, 41148
github, level 3 with dict dds, advanced one pass small out, 41148
github, level 3 with dict copy, advanced one pass small out, 41124
github, level 4, advanced one pass small out, 136199
github, level 4 with dict, advanced one pass small out, 41251
github, level 4 with dict dms, advanced one pass small out, 41251
github, level 4 with dict dds, advanced one pass small out, 41251
github, level 4 with dict copy, advanced one pass small out, 41216
github, level 5, advanced one pass small out, 135121
github, level 5 with dict, advanced one pass small out, 38938
github, level 5 with dict dms, advanced one pass small out, 38938
github, level 5 with dict dds, advanced one pass small out, 38741
github, level 5 with dict copy, advanced one pass small out, 38934
github, level 6, advanced one pass small out, 135122
github, level 6 with dict, advanced one pass small out, 38632
github, level 6 with dict dms, advanced one pass small out, 38632
github, level 6 with dict dds, advanced one pass small out, 38632
github, level 6 with dict copy, advanced one pass small out, 38628
github, level 7, advanced one pass small out, 135122
github, level 7 with dict, advanced one pass small out, 38771
github, level 7 with dict dms, advanced one pass small out, 38771
github, level 7 with dict dds, advanced one pass small out, 38771
github, level 7 with dict copy, advanced one pass small out, 38745
github, level 9, advanced one pass small out, 135122
github, level 9 with dict, advanced one pass small out, 39332
github, level 9 with dict dms, advanced one pass small out, 39332
github, level 9 with dict dds, advanced one pass small out, 39332
github, level 9 with dict copy, advanced one pass small out, 39341
github, level 13, advanced one pass small out, 134064
github, level 13 with dict, advanced one pass small out, 39743
github, level 13 with dict dms, advanced one pass small out, 39743
github, level 13 with dict dds, advanced one pass small out, 39743
github, level 13 with dict copy, advanced one pass small out, 39948
github, level 16, advanced one pass small out, 134064
github, level 16 with dict, advanced one pass small out, 37577
github, level 16 with dict dms, advanced one pass small out, 37577
github, level 16 with dict dds, advanced one pass small out, 37577
github, level 16 with dict copy, advanced one pass small out, 37568
github, level 19, advanced one pass small out, 134064
github, level 19 with dict, advanced one pass small out, 37576
github, level 19 with dict dms, advanced one pass small out, 37576
github, level 19 with dict dds, advanced one pass small out, 37576
github, level 19 with dict copy, advanced one pass small out, 37567
github, no source size, advanced one pass small out, 136335
github, no source size with dict, advanced one pass small out, 41148
github, long distance mode, advanced one pass small out, 136335
@ -463,26 +661,59 @@ github.tar, level -1, advanced
github.tar, level -1 with dict, advanced one pass small out, 41122
github.tar, level 0, advanced one pass small out, 38441
github.tar, level 0 with dict, advanced one pass small out, 37995
github.tar, level 0 with dict dms, advanced one pass small out, 38003
github.tar, level 0 with dict dds, advanced one pass small out, 37995
github.tar, level 0 with dict copy, advanced one pass small out, 37995
github.tar, level 1, advanced one pass small out, 39265
github.tar, level 1 with dict, advanced one pass small out, 38309
github.tar, level 1 with dict dms, advanced one pass small out, 38319
github.tar, level 1 with dict dds, advanced one pass small out, 38309
github.tar, level 1 with dict copy, advanced one pass small out, 38309
github.tar, level 3, advanced one pass small out, 38441
github.tar, level 3 with dict, advanced one pass small out, 37995
github.tar, level 3 with dict dms, advanced one pass small out, 38003
github.tar, level 3 with dict dds, advanced one pass small out, 37995
github.tar, level 3 with dict copy, advanced one pass small out, 37995
github.tar, level 4, advanced one pass small out, 38467
github.tar, level 4 with dict, advanced one pass small out, 37948
github.tar, level 4 with dict dms, advanced one pass small out, 37954
github.tar, level 4 with dict dds, advanced one pass small out, 37948
github.tar, level 4 with dict copy, advanced one pass small out, 37948
github.tar, level 5, advanced one pass small out, 39788
github.tar, level 5 with dict, advanced one pass small out, 39715
github.tar, level 5 with dict dms, advanced one pass small out, 39365
github.tar, level 5 with dict dds, advanced one pass small out, 39227
github.tar, level 5 with dict copy, advanced one pass small out, 39715
github.tar, level 6, advanced one pass small out, 39603
github.tar, level 6 with dict, advanced one pass small out, 38800
github.tar, level 6 with dict dms, advanced one pass small out, 38665
github.tar, level 6 with dict dds, advanced one pass small out, 38665
github.tar, level 6 with dict copy, advanced one pass small out, 38800
github.tar, level 7, advanced one pass small out, 39206
github.tar, level 7 with dict, advanced one pass small out, 38071
github.tar, level 7 with dict dms, advanced one pass small out, 37954
github.tar, level 7 with dict dds, advanced one pass small out, 37954
github.tar, level 7 with dict copy, advanced one pass small out, 38071
github.tar, level 9, advanced one pass small out, 36717
github.tar, level 9 with dict, advanced one pass small out, 36898
github.tar, level 9 with dict dms, advanced one pass small out, 36882
github.tar, level 9 with dict dds, advanced one pass small out, 36882
github.tar, level 9 with dict copy, advanced one pass small out, 36898
github.tar, level 13, advanced one pass small out, 35621
github.tar, level 13 with dict, advanced one pass small out, 38726
github.tar, level 13 with dict dms, advanced one pass small out, 38903
github.tar, level 13 with dict dds, advanced one pass small out, 38726
github.tar, level 13 with dict copy, advanced one pass small out, 38726
github.tar, level 16, advanced one pass small out, 40255
github.tar, level 16 with dict, advanced one pass small out, 33639
github.tar, level 16 with dict dms, advanced one pass small out, 33544
github.tar, level 16 with dict dds, advanced one pass small out, 33639
github.tar, level 16 with dict copy, advanced one pass small out, 33639
github.tar, level 19, advanced one pass small out, 32837
github.tar, level 19 with dict, advanced one pass small out, 32895
github.tar, level 19 with dict dms, advanced one pass small out, 32672
github.tar, level 19 with dict dds, advanced one pass small out, 32895
github.tar, level 19 with dict copy, advanced one pass small out, 32895
github.tar, no source size, advanced one pass small out, 38441
github.tar, no source size with dict, advanced one pass small out, 37995
github.tar, long distance mode, advanced one pass small out, 39722
@ -556,26 +787,59 @@ github, level -1, advanced
github, level -1 with dict, advanced streaming, 43170
github, level 0, advanced streaming, 136335
github, level 0 with dict, advanced streaming, 41148
github, level 0 with dict dms, advanced streaming, 41148
github, level 0 with dict dds, advanced streaming, 41148
github, level 0 with dict copy, advanced streaming, 41124
github, level 1, advanced streaming, 142465
github, level 1 with dict, advanced streaming, 41682
github, level 1 with dict dms, advanced streaming, 41682
github, level 1 with dict dds, advanced streaming, 41682
github, level 1 with dict copy, advanced streaming, 41674
github, level 3, advanced streaming, 136335
github, level 3 with dict, advanced streaming, 41148
github, level 3 with dict dms, advanced streaming, 41148
github, level 3 with dict dds, advanced streaming, 41148
github, level 3 with dict copy, advanced streaming, 41124
github, level 4, advanced streaming, 136199
github, level 4 with dict, advanced streaming, 41251
github, level 4 with dict dms, advanced streaming, 41251
github, level 4 with dict dds, advanced streaming, 41251
github, level 4 with dict copy, advanced streaming, 41216
github, level 5, advanced streaming, 135121
github, level 5 with dict, advanced streaming, 38938
github, level 5 with dict dms, advanced streaming, 38938
github, level 5 with dict dds, advanced streaming, 38741
github, level 5 with dict copy, advanced streaming, 38934
github, level 6, advanced streaming, 135122
github, level 6 with dict, advanced streaming, 38632
github, level 6 with dict dms, advanced streaming, 38632
github, level 6 with dict dds, advanced streaming, 38632
github, level 6 with dict copy, advanced streaming, 38628
github, level 7, advanced streaming, 135122
github, level 7 with dict, advanced streaming, 38771
github, level 7 with dict dms, advanced streaming, 38771
github, level 7 with dict dds, advanced streaming, 38771
github, level 7 with dict copy, advanced streaming, 38745
github, level 9, advanced streaming, 135122
github, level 9 with dict, advanced streaming, 39332
github, level 9 with dict dms, advanced streaming, 39332
github, level 9 with dict dds, advanced streaming, 39332
github, level 9 with dict copy, advanced streaming, 39341
github, level 13, advanced streaming, 134064
github, level 13 with dict, advanced streaming, 39743
github, level 13 with dict dms, advanced streaming, 39743
github, level 13 with dict dds, advanced streaming, 39743
github, level 13 with dict copy, advanced streaming, 39948
github, level 16, advanced streaming, 134064
github, level 16 with dict, advanced streaming, 37577
github, level 16 with dict dms, advanced streaming, 37577
github, level 16 with dict dds, advanced streaming, 37577
github, level 16 with dict copy, advanced streaming, 37568
github, level 19, advanced streaming, 134064
github, level 19 with dict, advanced streaming, 37576
github, level 19 with dict dms, advanced streaming, 37576
github, level 19 with dict dds, advanced streaming, 37576
github, level 19 with dict copy, advanced streaming, 37567
github, no source size, advanced streaming, 136335
github, no source size with dict, advanced streaming, 41148
github, long distance mode, advanced streaming, 136335
@ -597,26 +861,59 @@ github.tar, level -1, advanced
github.tar, level -1 with dict, advanced streaming, 41122
github.tar, level 0, advanced streaming, 38441
github.tar, level 0 with dict, advanced streaming, 37995
github.tar, level 0 with dict dms, advanced streaming, 38003
github.tar, level 0 with dict dds, advanced streaming, 37995
github.tar, level 0 with dict copy, advanced streaming, 37995
github.tar, level 1, advanced streaming, 39342
github.tar, level 1 with dict, advanced streaming, 38309
github.tar, level 1 with dict dms, advanced streaming, 38319
github.tar, level 1 with dict dds, advanced streaming, 38309
github.tar, level 1 with dict copy, advanced streaming, 38309
github.tar, level 3, advanced streaming, 38441
github.tar, level 3 with dict, advanced streaming, 37995
github.tar, level 3 with dict dms, advanced streaming, 38003
github.tar, level 3 with dict dds, advanced streaming, 37995
github.tar, level 3 with dict copy, advanced streaming, 37995
github.tar, level 4, advanced streaming, 38467
github.tar, level 4 with dict, advanced streaming, 37948
github.tar, level 4 with dict dms, advanced streaming, 37954
github.tar, level 4 with dict dds, advanced streaming, 37948
github.tar, level 4 with dict copy, advanced streaming, 37948
github.tar, level 5, advanced streaming, 39788
github.tar, level 5 with dict, advanced streaming, 39715
github.tar, level 5 with dict dms, advanced streaming, 39365
github.tar, level 5 with dict dds, advanced streaming, 39227
github.tar, level 5 with dict copy, advanced streaming, 39715
github.tar, level 6, advanced streaming, 39603
github.tar, level 6 with dict, advanced streaming, 38800
github.tar, level 6 with dict dms, advanced streaming, 38665
github.tar, level 6 with dict dds, advanced streaming, 38665
github.tar, level 6 with dict copy, advanced streaming, 38800
github.tar, level 7, advanced streaming, 39206
github.tar, level 7 with dict, advanced streaming, 38071
github.tar, level 7 with dict dms, advanced streaming, 37954
github.tar, level 7 with dict dds, advanced streaming, 37954
github.tar, level 7 with dict copy, advanced streaming, 38071
github.tar, level 9, advanced streaming, 36717
github.tar, level 9 with dict, advanced streaming, 36898
github.tar, level 9 with dict dms, advanced streaming, 36882
github.tar, level 9 with dict dds, advanced streaming, 36882
github.tar, level 9 with dict copy, advanced streaming, 36898
github.tar, level 13, advanced streaming, 35621
github.tar, level 13 with dict, advanced streaming, 38726
github.tar, level 13 with dict dms, advanced streaming, 38903
github.tar, level 13 with dict dds, advanced streaming, 38726
github.tar, level 13 with dict copy, advanced streaming, 38726
github.tar, level 16, advanced streaming, 40255
github.tar, level 16 with dict, advanced streaming, 33639
github.tar, level 16 with dict dms, advanced streaming, 33544
github.tar, level 16 with dict dds, advanced streaming, 33639
github.tar, level 16 with dict copy, advanced streaming, 33639
github.tar, level 19, advanced streaming, 32837
github.tar, level 19 with dict, advanced streaming, 32895
github.tar, level 19 with dict dms, advanced streaming, 32672
github.tar, level 19 with dict dds, advanced streaming, 32895
github.tar, level 19 with dict copy, advanced streaming, 32895
github.tar, no source size, advanced streaming, 38438
github.tar, no source size with dict, advanced streaming, 38000
github.tar, long distance mode, advanced streaming, 39722
@ -674,26 +971,59 @@ github, level -1, old stre
github, level -1 with dict, old streaming, 43170
github, level 0, old streaming, 136335
github, level 0 with dict, old streaming, 41148
github, level 0 with dict dms, old streaming, 41148
github, level 0 with dict dds, old streaming, 41148
github, level 0 with dict copy, old streaming, 41148
github, level 1, old streaming, 142465
github, level 1 with dict, old streaming, 41682
github, level 1 with dict dms, old streaming, 41682
github, level 1 with dict dds, old streaming, 41682
github, level 1 with dict copy, old streaming, 41682
github, level 3, old streaming, 136335
github, level 3 with dict, old streaming, 41148
github, level 3 with dict dms, old streaming, 41148
github, level 3 with dict dds, old streaming, 41148
github, level 3 with dict copy, old streaming, 41148
github, level 4, old streaming, 136199
github, level 4 with dict, old streaming, 41251
github, level 4 with dict dms, old streaming, 41251
github, level 4 with dict dds, old streaming, 41251
github, level 4 with dict copy, old streaming, 41251
github, level 5, old streaming, 135121
github, level 5 with dict, old streaming, 38938
github, level 5 with dict dms, old streaming, 38938
github, level 5 with dict dds, old streaming, 38938
github, level 5 with dict copy, old streaming, 38938
github, level 6, old streaming, 135122
github, level 6 with dict, old streaming, 38632
github, level 6 with dict dms, old streaming, 38632
github, level 6 with dict dds, old streaming, 38632
github, level 6 with dict copy, old streaming, 38632
github, level 7, old streaming, 135122
github, level 7 with dict, old streaming, 38771
github, level 7 with dict dms, old streaming, 38771
github, level 7 with dict dds, old streaming, 38771
github, level 7 with dict copy, old streaming, 38771
github, level 9, old streaming, 135122
github, level 9 with dict, old streaming, 39332
github, level 9 with dict dms, old streaming, 39332
github, level 9 with dict dds, old streaming, 39332
github, level 9 with dict copy, old streaming, 39332
github, level 13, old streaming, 134064
github, level 13 with dict, old streaming, 39743
github, level 13 with dict dms, old streaming, 39743
github, level 13 with dict dds, old streaming, 39743
github, level 13 with dict copy, old streaming, 39743
github, level 16, old streaming, 134064
github, level 16 with dict, old streaming, 37577
github, level 16 with dict dms, old streaming, 37577
github, level 16 with dict dds, old streaming, 37577
github, level 16 with dict copy, old streaming, 37577
github, level 19, old streaming, 134064
github, level 19 with dict, old streaming, 37576
github, level 19 with dict dms, old streaming, 37576
github, level 19 with dict dds, old streaming, 37576
github, level 19 with dict copy, old streaming, 37576
github, no source size, old streaming, 140632
github, no source size with dict, old streaming, 40654
github, uncompressed literals, old streaming, 136335
@ -707,26 +1037,59 @@ github.tar, level -1, old stre
github.tar, level -1 with dict, old streaming, 41122
github.tar, level 0, old streaming, 38441
github.tar, level 0 with dict, old streaming, 37995
github.tar, level 0 with dict dms, old streaming, 37995
github.tar, level 0 with dict dds, old streaming, 37995
github.tar, level 0 with dict copy, old streaming, 37995
github.tar, level 1, old streaming, 39342
github.tar, level 1 with dict, old streaming, 38309
github.tar, level 1 with dict dms, old streaming, 38309
github.tar, level 1 with dict dds, old streaming, 38309
github.tar, level 1 with dict copy, old streaming, 38309
github.tar, level 3, old streaming, 38441
github.tar, level 3 with dict, old streaming, 37995
github.tar, level 3 with dict dms, old streaming, 37995
github.tar, level 3 with dict dds, old streaming, 37995
github.tar, level 3 with dict copy, old streaming, 37995
github.tar, level 4, old streaming, 38467
github.tar, level 4 with dict, old streaming, 37948
github.tar, level 4 with dict dms, old streaming, 37948
github.tar, level 4 with dict dds, old streaming, 37948
github.tar, level 4 with dict copy, old streaming, 37948
github.tar, level 5, old streaming, 39788
github.tar, level 5 with dict, old streaming, 39715
github.tar, level 5 with dict dms, old streaming, 39715
github.tar, level 5 with dict dds, old streaming, 39715
github.tar, level 5 with dict copy, old streaming, 39715
github.tar, level 6, old streaming, 39603
github.tar, level 6 with dict, old streaming, 38800
github.tar, level 6 with dict dms, old streaming, 38800
github.tar, level 6 with dict dds, old streaming, 38800
github.tar, level 6 with dict copy, old streaming, 38800
github.tar, level 7, old streaming, 39206
github.tar, level 7 with dict, old streaming, 38071
github.tar, level 7 with dict dms, old streaming, 38071
github.tar, level 7 with dict dds, old streaming, 38071
github.tar, level 7 with dict copy, old streaming, 38071
github.tar, level 9, old streaming, 36717
github.tar, level 9 with dict, old streaming, 36898
github.tar, level 9 with dict dms, old streaming, 36898
github.tar, level 9 with dict dds, old streaming, 36898
github.tar, level 9 with dict copy, old streaming, 36898
github.tar, level 13, old streaming, 35621
github.tar, level 13 with dict, old streaming, 38726
github.tar, level 13 with dict dms, old streaming, 38726
github.tar, level 13 with dict dds, old streaming, 38726
github.tar, level 13 with dict copy, old streaming, 38726
github.tar, level 16, old streaming, 40255
github.tar, level 16 with dict, old streaming, 33639
github.tar, level 16 with dict dms, old streaming, 33639
github.tar, level 16 with dict dds, old streaming, 33639
github.tar, level 16 with dict copy, old streaming, 33639
github.tar, level 19, old streaming, 32837
github.tar, level 19 with dict, old streaming, 32895
github.tar, level 19 with dict dms, old streaming, 32895
github.tar, level 19 with dict dds, old streaming, 32895
github.tar, level 19 with dict copy, old streaming, 32895
github.tar, no source size, old streaming, 38438
github.tar, no source size with dict, old streaming, 38000
github.tar, uncompressed literals, old streaming, 38441
@ -792,26 +1155,59 @@ github, level -1, old stre
github, level -1 with dict, old streaming advanced, 42383
github, level 0, old streaming advanced, 141104
github, level 0 with dict, old streaming advanced, 41113
github, level 0 with dict dms, old streaming advanced, 41113
github, level 0 with dict dds, old streaming advanced, 41113
github, level 0 with dict copy, old streaming advanced, 41113
github, level 1, old streaming advanced, 143692
github, level 1 with dict, old streaming advanced, 42430
github, level 1 with dict dms, old streaming advanced, 42430
github, level 1 with dict dds, old streaming advanced, 42430
github, level 1 with dict copy, old streaming advanced, 42430
github, level 3, old streaming advanced, 141104
github, level 3 with dict, old streaming advanced, 41113
github, level 3 with dict dms, old streaming advanced, 41113
github, level 3 with dict dds, old streaming advanced, 41113
github, level 3 with dict copy, old streaming advanced, 41113
github, level 4, old streaming advanced, 141104
github, level 4 with dict, old streaming advanced, 41084
github, level 4 with dict dms, old streaming advanced, 41084
github, level 4 with dict dds, old streaming advanced, 41084
github, level 4 with dict copy, old streaming advanced, 41084
github, level 5, old streaming advanced, 139399
github, level 5 with dict, old streaming advanced, 39159
github, level 5 with dict dms, old streaming advanced, 39159
github, level 5 with dict dds, old streaming advanced, 39159
github, level 5 with dict copy, old streaming advanced, 39159
github, level 6, old streaming advanced, 139402
github, level 6 with dict, old streaming advanced, 38749
github, level 6 with dict dms, old streaming advanced, 38749
github, level 6 with dict dds, old streaming advanced, 38749
github, level 6 with dict copy, old streaming advanced, 38749
github, level 7, old streaming advanced, 138676
github, level 7 with dict, old streaming advanced, 38746
github, level 7 with dict dms, old streaming advanced, 38746
github, level 7 with dict dds, old streaming advanced, 38746
github, level 7 with dict copy, old streaming advanced, 38746
github, level 9, old streaming advanced, 138676
github, level 9 with dict, old streaming advanced, 38993
github, level 9 with dict dms, old streaming advanced, 38993
github, level 9 with dict dds, old streaming advanced, 38993
github, level 9 with dict copy, old streaming advanced, 38993
github, level 13, old streaming advanced, 138676
github, level 13 with dict, old streaming advanced, 39731
github, level 13 with dict dms, old streaming advanced, 39731
github, level 13 with dict dds, old streaming advanced, 39731
github, level 13 with dict copy, old streaming advanced, 39731
github, level 16, old streaming advanced, 138676
github, level 16 with dict, old streaming advanced, 40789
github, level 16 with dict dms, old streaming advanced, 40789
github, level 16 with dict dds, old streaming advanced, 40789
github, level 16 with dict copy, old streaming advanced, 40789
github, level 19, old streaming advanced, 134064
github, level 19 with dict, old streaming advanced, 37576
github, level 19 with dict dms, old streaming advanced, 37576
github, level 19 with dict dds, old streaming advanced, 37576
github, level 19 with dict copy, old streaming advanced, 37576
github, no source size, old streaming advanced, 140632
github, no source size with dict, old streaming advanced, 40608
github, long distance mode, old streaming advanced, 141104
@ -833,26 +1229,59 @@ github.tar, level -1, old stre
github.tar, level -1 with dict, old streaming advanced, 41471
github.tar, level 0, old streaming advanced, 38441
github.tar, level 0 with dict, old streaming advanced, 38013
github.tar, level 0 with dict dms, old streaming advanced, 38013
github.tar, level 0 with dict dds, old streaming advanced, 38013
github.tar, level 0 with dict copy, old streaming advanced, 38013
github.tar, level 1, old streaming advanced, 39342
github.tar, level 1 with dict, old streaming advanced, 38940
github.tar, level 1 with dict dms, old streaming advanced, 38940
github.tar, level 1 with dict dds, old streaming advanced, 38940
github.tar, level 1 with dict copy, old streaming advanced, 38940
github.tar, level 3, old streaming advanced, 38441
github.tar, level 3 with dict, old streaming advanced, 38013
github.tar, level 3 with dict dms, old streaming advanced, 38013
github.tar, level 3 with dict dds, old streaming advanced, 38013
github.tar, level 3 with dict copy, old streaming advanced, 38013
github.tar, level 4, old streaming advanced, 38467
github.tar, level 4 with dict, old streaming advanced, 38063
github.tar, level 4 with dict dms, old streaming advanced, 38063
github.tar, level 4 with dict dds, old streaming advanced, 38063
github.tar, level 4 with dict copy, old streaming advanced, 38063
github.tar, level 5, old streaming advanced, 39788
github.tar, level 5 with dict, old streaming advanced, 39310
github.tar, level 5 with dict dms, old streaming advanced, 39310
github.tar, level 5 with dict dds, old streaming advanced, 39310
github.tar, level 5 with dict copy, old streaming advanced, 39310
github.tar, level 6, old streaming advanced, 39603
github.tar, level 6 with dict, old streaming advanced, 39279
github.tar, level 6 with dict dms, old streaming advanced, 39279
github.tar, level 6 with dict dds, old streaming advanced, 39279
github.tar, level 6 with dict copy, old streaming advanced, 39279
github.tar, level 7, old streaming advanced, 39206
github.tar, level 7 with dict, old streaming advanced, 38728
github.tar, level 7 with dict dms, old streaming advanced, 38728
github.tar, level 7 with dict dds, old streaming advanced, 38728
github.tar, level 7 with dict copy, old streaming advanced, 38728
github.tar, level 9, old streaming advanced, 36717
github.tar, level 9 with dict, old streaming advanced, 36504
github.tar, level 9 with dict dms, old streaming advanced, 36504
github.tar, level 9 with dict dds, old streaming advanced, 36504
github.tar, level 9 with dict copy, old streaming advanced, 36504
github.tar, level 13, old streaming advanced, 35621
github.tar, level 13 with dict, old streaming advanced, 36035
github.tar, level 13 with dict dms, old streaming advanced, 36035
github.tar, level 13 with dict dds, old streaming advanced, 36035
github.tar, level 13 with dict copy, old streaming advanced, 36035
github.tar, level 16, old streaming advanced, 40255
github.tar, level 16 with dict, old streaming advanced, 38736
github.tar, level 16 with dict dms, old streaming advanced, 38736
github.tar, level 16 with dict dds, old streaming advanced, 38736
github.tar, level 16 with dict copy, old streaming advanced, 38736
github.tar, level 19, old streaming advanced, 32837
github.tar, level 19 with dict, old streaming advanced, 32876
github.tar, level 19 with dict dms, old streaming advanced, 32876
github.tar, level 19 with dict dds, old streaming advanced, 32876
github.tar, level 19 with dict copy, old streaming advanced, 32876
github.tar, no source size, old streaming advanced, 38438
github.tar, no source size with dict, old streaming advanced, 38015
github.tar, long distance mode, old streaming advanced, 38441
@ -866,63 +1295,195 @@ github.tar, uncompressed literals, old stre
github.tar, uncompressed literals optimal, old streaming advanced, 32837
github.tar, huffman literals, old streaming advanced, 42465
github.tar, multithreaded with advanced params, old streaming advanced, 38441
github, level -5 with dict, old streaming cdcit, 46718
github, level -3 with dict, old streaming cdcit, 45395
github, level -1 with dict, old streaming cdcit, 43170
github, level 0 with dict, old streaming cdcit, 41148
github, level 1 with dict, old streaming cdcit, 41682
github, level 3 with dict, old streaming cdcit, 41148
github, level 4 with dict, old streaming cdcit, 41251
github, level 5 with dict, old streaming cdcit, 38938
github, level 6 with dict, old streaming cdcit, 38632
github, level 7 with dict, old streaming cdcit, 38771
github, level 9 with dict, old streaming cdcit, 39332
github, level 13 with dict, old streaming cdcit, 39743
github, level 16 with dict, old streaming cdcit, 37577
github, level 19 with dict, old streaming cdcit, 37576
github, no source size with dict, old streaming cdcit, 40654
github.tar, level -5 with dict, old streaming cdcit, 45018
github.tar, level -3 with dict, old streaming cdcit, 41886
github.tar, level -1 with dict, old streaming cdcit, 41636
github.tar, level 0 with dict, old streaming cdcit, 37956
github.tar, level 1 with dict, old streaming cdcit, 38766
github.tar, level 3 with dict, old streaming cdcit, 37956
github.tar, level 4 with dict, old streaming cdcit, 37927
github.tar, level 5 with dict, old streaming cdcit, 39209
github.tar, level 6 with dict, old streaming cdcit, 38983
github.tar, level 7 with dict, old streaming cdcit, 38584
github.tar, level 9 with dict, old streaming cdcit, 36363
github.tar, level 13 with dict, old streaming cdcit, 36372
github.tar, level 16 with dict, old streaming cdcit, 39353
github.tar, level 19 with dict, old streaming cdcit, 32676
github.tar, no source size with dict, old streaming cdcit, 38000
github, level -5 with dict, old streaming cdict, 46718
github, level -3 with dict, old streaming cdict, 45395
github, level -1 with dict, old streaming cdict, 43170
github, level 0 with dict, old streaming cdict, 41148
github, level 0 with dict dms, old streaming cdict, 41148
github, level 0 with dict dds, old streaming cdict, 41148
github, level 0 with dict copy, old streaming cdict, 41148
github, level 1 with dict, old streaming cdict, 41682
github, level 1 with dict dms, old streaming cdict, 41682
github, level 1 with dict dds, old streaming cdict, 41682
github, level 1 with dict copy, old streaming cdict, 41682
github, level 3 with dict, old streaming cdict, 41148
github, level 3 with dict dms, old streaming cdict, 41148
github, level 3 with dict dds, old streaming cdict, 41148
github, level 3 with dict copy, old streaming cdict, 41148
github, level 4 with dict, old streaming cdict, 41251
github, level 4 with dict dms, old streaming cdict, 41251
github, level 4 with dict dds, old streaming cdict, 41251
github, level 4 with dict copy, old streaming cdict, 41251
github, level 5 with dict, old streaming cdict, 38938
github, level 5 with dict dms, old streaming cdict, 38938
github, level 5 with dict dds, old streaming cdict, 38938
github, level 5 with dict copy, old streaming cdict, 38938
github, level 6 with dict, old streaming cdict, 38632
github, level 6 with dict dms, old streaming cdict, 38632
github, level 6 with dict dds, old streaming cdict, 38632
github, level 6 with dict copy, old streaming cdict, 38632
github, level 7 with dict, old streaming cdict, 38771
github, level 7 with dict dms, old streaming cdict, 38771
github, level 7 with dict dds, old streaming cdict, 38771
github, level 7 with dict copy, old streaming cdict, 38771
github, level 9 with dict, old streaming cdict, 39332
github, level 9 with dict dms, old streaming cdict, 39332
github, level 9 with dict dds, old streaming cdict, 39332
github, level 9 with dict copy, old streaming cdict, 39332
github, level 13 with dict, old streaming cdict, 39743
github, level 13 with dict dms, old streaming cdict, 39743
github, level 13 with dict dds, old streaming cdict, 39743
github, level 13 with dict copy, old streaming cdict, 39743
github, level 16 with dict, old streaming cdict, 37577
github, level 16 with dict dms, old streaming cdict, 37577
github, level 16 with dict dds, old streaming cdict, 37577
github, level 16 with dict copy, old streaming cdict, 37577
github, level 19 with dict, old streaming cdict, 37576
github, level 19 with dict dms, old streaming cdict, 37576
github, level 19 with dict dds, old streaming cdict, 37576
github, level 19 with dict copy, old streaming cdict, 37576
github, no source size with dict, old streaming cdict, 40654
github.tar, level -5 with dict, old streaming cdict, 45018
github.tar, level -3 with dict, old streaming cdict, 41886
github.tar, level -1 with dict, old streaming cdict, 41636
github.tar, level 0 with dict, old streaming cdict, 37956
github.tar, level 0 with dict dms, old streaming cdict, 37956
github.tar, level 0 with dict dds, old streaming cdict, 37956
github.tar, level 0 with dict copy, old streaming cdict, 37956
github.tar, level 1 with dict, old streaming cdict, 38766
github.tar, level 1 with dict dms, old streaming cdict, 38766
github.tar, level 1 with dict dds, old streaming cdict, 38766
github.tar, level 1 with dict copy, old streaming cdict, 38766
github.tar, level 3 with dict, old streaming cdict, 37956
github.tar, level 3 with dict dms, old streaming cdict, 37956
github.tar, level 3 with dict dds, old streaming cdict, 37956
github.tar, level 3 with dict copy, old streaming cdict, 37956
github.tar, level 4 with dict, old streaming cdict, 37927
github.tar, level 4 with dict dms, old streaming cdict, 37927
github.tar, level 4 with dict dds, old streaming cdict, 37927
github.tar, level 4 with dict copy, old streaming cdict, 37927
github.tar, level 5 with dict, old streaming cdict, 39209
github.tar, level 5 with dict dms, old streaming cdict, 39209
github.tar, level 5 with dict dds, old streaming cdict, 39209
github.tar, level 5 with dict copy, old streaming cdict, 39209
github.tar, level 6 with dict, old streaming cdict, 38983
github.tar, level 6 with dict dms, old streaming cdict, 38983
github.tar, level 6 with dict dds, old streaming cdict, 38983
github.tar, level 6 with dict copy, old streaming cdict, 38983
github.tar, level 7 with dict, old streaming cdict, 38584
github.tar, level 7 with dict dms, old streaming cdict, 38584
github.tar, level 7 with dict dds, old streaming cdict, 38584
github.tar, level 7 with dict copy, old streaming cdict, 38584
github.tar, level 9 with dict, old streaming cdict, 36363
github.tar, level 9 with dict dms, old streaming cdict, 36363
github.tar, level 9 with dict dds, old streaming cdict, 36363
github.tar, level 9 with dict copy, old streaming cdict, 36363
github.tar, level 13 with dict, old streaming cdict, 36372
github.tar, level 13 with dict dms, old streaming cdict, 36372
github.tar, level 13 with dict dds, old streaming cdict, 36372
github.tar, level 13 with dict copy, old streaming cdict, 36372
github.tar, level 16 with dict, old streaming cdict, 39353
github.tar, level 16 with dict dms, old streaming cdict, 39353
github.tar, level 16 with dict dds, old streaming cdict, 39353
github.tar, level 16 with dict copy, old streaming cdict, 39353
github.tar, level 19 with dict, old streaming cdict, 32676
github.tar, level 19 with dict dms, old streaming cdict, 32676
github.tar, level 19 with dict dds, old streaming cdict, 32676
github.tar, level 19 with dict copy, old streaming cdict, 32676
github.tar, no source size with dict, old streaming cdict, 38000
github, level -5 with dict, old streaming advanced cdict, 49562
github, level -3 with dict, old streaming advanced cdict, 44956
github, level -1 with dict, old streaming advanced cdict, 42383
github, level 0 with dict, old streaming advanced cdict, 41113
github, level 0 with dict dms, old streaming advanced cdict, 41113
github, level 0 with dict dds, old streaming advanced cdict, 41113
github, level 0 with dict copy, old streaming advanced cdict, 41113
github, level 1 with dict, old streaming advanced cdict, 42430
github, level 1 with dict dms, old streaming advanced cdict, 42430
github, level 1 with dict dds, old streaming advanced cdict, 42430
github, level 1 with dict copy, old streaming advanced cdict, 42430
github, level 3 with dict, old streaming advanced cdict, 41113
github, level 3 with dict dms, old streaming advanced cdict, 41113
github, level 3 with dict dds, old streaming advanced cdict, 41113
github, level 3 with dict copy, old streaming advanced cdict, 41113
github, level 4 with dict, old streaming advanced cdict, 41084
github, level 4 with dict dms, old streaming advanced cdict, 41084
github, level 4 with dict dds, old streaming advanced cdict, 41084
github, level 4 with dict copy, old streaming advanced cdict, 41084
github, level 5 with dict, old streaming advanced cdict, 39159
github, level 5 with dict dms, old streaming advanced cdict, 39159
github, level 5 with dict dds, old streaming advanced cdict, 39159
github, level 5 with dict copy, old streaming advanced cdict, 39159
github, level 6 with dict, old streaming advanced cdict, 38749
github, level 6 with dict dms, old streaming advanced cdict, 38749
github, level 6 with dict dds, old streaming advanced cdict, 38749
github, level 6 with dict copy, old streaming advanced cdict, 38749
github, level 7 with dict, old streaming advanced cdict, 38746
github, level 7 with dict dms, old streaming advanced cdict, 38746
github, level 7 with dict dds, old streaming advanced cdict, 38746
github, level 7 with dict copy, old streaming advanced cdict, 38746
github, level 9 with dict, old streaming advanced cdict, 38993
github, level 9 with dict dms, old streaming advanced cdict, 38993
github, level 9 with dict dds, old streaming advanced cdict, 38993
github, level 9 with dict copy, old streaming advanced cdict, 38993
github, level 13 with dict, old streaming advanced cdict, 39731
github, level 13 with dict dms, old streaming advanced cdict, 39731
github, level 13 with dict dds, old streaming advanced cdict, 39731
github, level 13 with dict copy, old streaming advanced cdict, 39731
github, level 16 with dict, old streaming advanced cdict, 40789
github, level 16 with dict dms, old streaming advanced cdict, 40789
github, level 16 with dict dds, old streaming advanced cdict, 40789
github, level 16 with dict copy, old streaming advanced cdict, 40789
github, level 19 with dict, old streaming advanced cdict, 37576
github, level 19 with dict dms, old streaming advanced cdict, 37576
github, level 19 with dict dds, old streaming advanced cdict, 37576
github, level 19 with dict copy, old streaming advanced cdict, 37576
github, no source size with dict, old streaming advanced cdict, 40608
github.tar, level -5 with dict, old streaming advanced cdict, 44307
github.tar, level -3 with dict, old streaming advanced cdict, 41359
github.tar, level -1 with dict, old streaming advanced cdict, 41322
github.tar, level 0 with dict, old streaming advanced cdict, 38013
github.tar, level 0 with dict dms, old streaming advanced cdict, 38013
github.tar, level 0 with dict dds, old streaming advanced cdict, 38013
github.tar, level 0 with dict copy, old streaming advanced cdict, 38013
github.tar, level 1 with dict, old streaming advanced cdict, 39002
github.tar, level 1 with dict dms, old streaming advanced cdict, 39002
github.tar, level 1 with dict dds, old streaming advanced cdict, 39002
github.tar, level 1 with dict copy, old streaming advanced cdict, 39002
github.tar, level 3 with dict, old streaming advanced cdict, 38013
github.tar, level 3 with dict dms, old streaming advanced cdict, 38013
github.tar, level 3 with dict dds, old streaming advanced cdict, 38013
github.tar, level 3 with dict copy, old streaming advanced cdict, 38013
github.tar, level 4 with dict, old streaming advanced cdict, 38063
github.tar, level 4 with dict dms, old streaming advanced cdict, 38063
github.tar, level 4 with dict dds, old streaming advanced cdict, 38063
github.tar, level 4 with dict copy, old streaming advanced cdict, 38063
github.tar, level 5 with dict, old streaming advanced cdict, 39310
github.tar, level 5 with dict dms, old streaming advanced cdict, 39310
github.tar, level 5 with dict dds, old streaming advanced cdict, 39310
github.tar, level 5 with dict copy, old streaming advanced cdict, 39310
github.tar, level 6 with dict, old streaming advanced cdict, 39279
github.tar, level 6 with dict dms, old streaming advanced cdict, 39279
github.tar, level 6 with dict dds, old streaming advanced cdict, 39279
github.tar, level 6 with dict copy, old streaming advanced cdict, 39279
github.tar, level 7 with dict, old streaming advanced cdict, 38728
github.tar, level 7 with dict dms, old streaming advanced cdict, 38728
github.tar, level 7 with dict dds, old streaming advanced cdict, 38728
github.tar, level 7 with dict copy, old streaming advanced cdict, 38728
github.tar, level 9 with dict, old streaming advanced cdict, 36504
github.tar, level 9 with dict dms, old streaming advanced cdict, 36504
github.tar, level 9 with dict dds, old streaming advanced cdict, 36504
github.tar, level 9 with dict copy, old streaming advanced cdict, 36504
github.tar, level 13 with dict, old streaming advanced cdict, 36035
github.tar, level 13 with dict dms, old streaming advanced cdict, 36035
github.tar, level 13 with dict dds, old streaming advanced cdict, 36035
github.tar, level 13 with dict copy, old streaming advanced cdict, 36035
github.tar, level 16 with dict, old streaming advanced cdict, 38736
github.tar, level 16 with dict dms, old streaming advanced cdict, 38736
github.tar, level 16 with dict dds, old streaming advanced cdict, 38736
github.tar, level 16 with dict copy, old streaming advanced cdict, 38736
github.tar, level 19 with dict, old streaming advanced cdict, 32876
github.tar, level 19 with dict dms, old streaming advanced cdict, 32876
github.tar, level 19 with dict dds, old streaming advanced cdict, 32876
github.tar, level 19 with dict copy, old streaming advanced cdict, 32876
github.tar, no source size with dict, old streaming advanced cdict, 38015

1 Data Config Method Total compressed size
66 github level -1 with dict compress cctx 43527
67 github level 0 compress cctx 136335
68 github level 0 with dict compress cctx 41534
69 github level 0 with dict dms compress cctx 41534
70 github level 0 with dict dds compress cctx 41534
71 github level 0 with dict copy compress cctx 41534
72 github level 1 compress cctx 142465
73 github level 1 with dict compress cctx 42157
74 github level 1 with dict dms compress cctx 42157
75 github level 1 with dict dds compress cctx 42157
76 github level 1 with dict copy compress cctx 42157
77 github level 3 compress cctx 136335
78 github level 3 with dict compress cctx 41534
79 github level 3 with dict dms compress cctx 41534
80 github level 3 with dict dds compress cctx 41534
81 github level 3 with dict copy compress cctx 41534
82 github level 4 compress cctx 136199
83 github level 4 with dict compress cctx 41725
84 github level 4 with dict dms compress cctx 41725
85 github level 4 with dict dds compress cctx 41725
86 github level 4 with dict copy compress cctx 41725
87 github level 5 compress cctx 135121
88 github level 5 with dict compress cctx 38934
89 github level 5 with dict dms compress cctx 38934
90 github level 5 with dict dds compress cctx 38934
91 github level 5 with dict copy compress cctx 38934
92 github level 6 compress cctx 135122
93 github level 6 with dict compress cctx 38628
94 github level 6 with dict dms compress cctx 38628
95 github level 6 with dict dds compress cctx 38628
96 github level 6 with dict copy compress cctx 38628
97 github level 7 compress cctx 135122
98 github level 7 with dict compress cctx 38745
99 github level 7 with dict dms compress cctx 38745
100 github level 7 with dict dds compress cctx 38745
101 github level 7 with dict copy compress cctx 38745
102 github level 9 compress cctx 135122
103 github level 9 with dict compress cctx 39341
104 github level 9 with dict dms compress cctx 39341
105 github level 9 with dict dds compress cctx 39341
106 github level 9 with dict copy compress cctx 39341
107 github level 13 compress cctx 134064
108 github level 13 with dict compress cctx 39948
109 github level 13 with dict dms compress cctx 39948
110 github level 13 with dict dds compress cctx 39948
111 github level 13 with dict copy compress cctx 39948
112 github level 16 compress cctx 134064
113 github level 16 with dict compress cctx 37568
114 github level 16 with dict dms compress cctx 37568
115 github level 16 with dict dds compress cctx 37568
116 github level 16 with dict copy compress cctx 37568
117 github level 19 compress cctx 134064
118 github level 19 with dict compress cctx 37567
119 github level 19 with dict dms compress cctx 37567
120 github level 19 with dict dds compress cctx 37567
121 github level 19 with dict copy compress cctx 37567
122 github long distance mode compress cctx 141102
123 github multithreaded compress cctx 141102
124 github multithreaded long distance mode compress cctx 141102
189 github level -1 with dict zstdcli 45170
190 github level 0 zstdcli 138335
191 github level 0 with dict zstdcli 43148
192 github level 0 with dict dms zstdcli 43148
193 github level 0 with dict dds zstdcli 43148
194 github level 0 with dict copy zstdcli 43148
195 github level 1 zstdcli 144465
196 github level 1 with dict zstdcli 43682
197 github level 1 with dict dms zstdcli 43682
198 github level 1 with dict dds zstdcli 43682
199 github level 1 with dict copy zstdcli 43682
200 github level 3 zstdcli 138335
201 github level 3 with dict zstdcli 43148
202 github level 3 with dict dms zstdcli 43148
203 github level 3 with dict dds zstdcli 43148
204 github level 3 with dict copy zstdcli 43148
205 github level 4 zstdcli 138199
206 github level 4 with dict zstdcli 43251
207 github level 4 with dict dms zstdcli 43251
208 github level 4 with dict dds zstdcli 43251
209 github level 4 with dict copy zstdcli 43251
210 github level 5 zstdcli 137121
211 github level 5 with dict zstdcli 40741
212 github level 5 with dict dms zstdcli 40741
213 github level 5 with dict dds zstdcli 40741
214 github level 5 with dict copy zstdcli 40741
215 github level 6 zstdcli 137122
216 github level 6 with dict zstdcli 40632
217 github level 6 with dict dms zstdcli 40632
218 github level 6 with dict dds zstdcli 40632
219 github level 6 with dict copy zstdcli 40632
220 github level 7 zstdcli 137122
221 github level 7 with dict zstdcli 40771
222 github level 7 with dict dms zstdcli 40771
223 github level 7 with dict dds zstdcli 40771
224 github level 7 with dict copy zstdcli 40771
225 github level 9 zstdcli 137122
226 github level 9 with dict zstdcli 41332
227 github level 9 with dict dms zstdcli 41332
228 github level 9 with dict dds zstdcli 41332
229 github level 9 with dict copy zstdcli 41332
230 github level 13 zstdcli 136064
231 github level 13 with dict zstdcli 41743
232 github level 13 with dict dms zstdcli 41743
233 github level 13 with dict dds zstdcli 41743
234 github level 13 with dict copy zstdcli 41743
235 github level 16 zstdcli 136064
236 github level 16 with dict zstdcli 39577
237 github level 16 with dict dms zstdcli 39577
238 github level 16 with dict dds zstdcli 39577
239 github level 16 with dict copy zstdcli 39577
240 github level 19 zstdcli 136064
241 github level 19 with dict zstdcli 39576
242 github level 19 with dict dms zstdcli 39576
243 github level 19 with dict dds zstdcli 39576
244 github level 19 with dict copy zstdcli 39576
245 github long distance mode zstdcli 138335
246 github multithreaded zstdcli 138335
247 github multithreaded long distance mode zstdcli 138335
261 github.tar level -1 with dict zstdcli 41126
262 github.tar level 0 zstdcli 38445
263 github.tar level 0 with dict zstdcli 37999
264 github.tar level 0 with dict dms zstdcli 37999
265 github.tar level 0 with dict dds zstdcli 37999
266 github.tar level 0 with dict copy zstdcli 37999
267 github.tar level 1 zstdcli 39346
268 github.tar level 1 with dict zstdcli 38313
269 github.tar level 1 with dict dms zstdcli 38313
270 github.tar level 1 with dict dds zstdcli 38313
271 github.tar level 1 with dict copy zstdcli 38313
272 github.tar level 3 zstdcli 38445
273 github.tar level 3 with dict zstdcli 37999
274 github.tar level 3 with dict dms zstdcli 37999
275 github.tar level 3 with dict dds zstdcli 37999
276 github.tar level 3 with dict copy zstdcli 37999
277 github.tar level 4 zstdcli 38471
278 github.tar level 4 with dict zstdcli 37952
279 github.tar level 4 with dict dms zstdcli 37952
280 github.tar level 4 with dict dds zstdcli 37952
281 github.tar level 4 with dict copy zstdcli 37952
282 github.tar level 5 zstdcli 39792
283 github.tar level 5 with dict zstdcli 39231
284 github.tar level 5 with dict dms zstdcli 39231
285 github.tar level 5 with dict dds zstdcli 39231
286 github.tar level 5 with dict copy zstdcli 39231
287 github.tar level 6 zstdcli 39607
288 github.tar level 6 with dict zstdcli 38669
289 github.tar level 6 with dict dms zstdcli 38669
290 github.tar level 6 with dict dds zstdcli 38669
291 github.tar level 6 with dict copy zstdcli 38669
292 github.tar level 7 zstdcli 39210
293 github.tar level 7 with dict zstdcli 37958
294 github.tar level 7 with dict dms zstdcli 37958
295 github.tar level 7 with dict dds zstdcli 37958
296 github.tar level 7 with dict copy zstdcli 37958
297 github.tar level 9 zstdcli 36721
298 github.tar level 9 with dict zstdcli 36886
299 github.tar level 9 with dict dms zstdcli 36886
300 github.tar level 9 with dict dds zstdcli 36886
301 github.tar level 9 with dict copy zstdcli 36886
302 github.tar level 13 zstdcli 35625
303 github.tar level 13 with dict zstdcli 38730
304 github.tar level 13 with dict dms zstdcli 38730
305 github.tar level 13 with dict dds zstdcli 38730
306 github.tar level 13 with dict copy zstdcli 38730
307 github.tar level 16 zstdcli 40259
308 github.tar level 16 with dict zstdcli 33643
309 github.tar level 16 with dict dms zstdcli 33643
310 github.tar level 16 with dict dds zstdcli 33643
311 github.tar level 16 with dict copy zstdcli 33643
312 github.tar level 19 zstdcli 32841
313 github.tar level 19 with dict zstdcli 32899
314 github.tar level 19 with dict dms zstdcli 32899
315 github.tar level 19 with dict dds zstdcli 32899
316 github.tar level 19 with dict copy zstdcli 32899
317 github.tar no source size zstdcli 38442
318 github.tar no source size with dict zstdcli 38004
319 github.tar long distance mode zstdcli 39726
387 github level -1 with dict advanced one pass 43170
388 github level 0 advanced one pass 136335
389 github level 0 with dict advanced one pass 41148
390 github level 0 with dict dms advanced one pass 41148
391 github level 0 with dict dds advanced one pass 41148
392 github level 0 with dict copy advanced one pass 41124
393 github level 1 advanced one pass 142465
394 github level 1 with dict advanced one pass 41682
395 github level 1 with dict dms advanced one pass 41682
396 github level 1 with dict dds advanced one pass 41682
397 github level 1 with dict copy advanced one pass 41674
398 github level 3 advanced one pass 136335
399 github level 3 with dict advanced one pass 41148
400 github level 3 with dict dms advanced one pass 41148
401 github level 3 with dict dds advanced one pass 41148
402 github level 3 with dict copy advanced one pass 41124
403 github level 4 advanced one pass 136199
404 github level 4 with dict advanced one pass 41251
405 github level 4 with dict dms advanced one pass 41251
406 github level 4 with dict dds advanced one pass 41251
407 github level 4 with dict copy advanced one pass 41216
408 github level 5 advanced one pass 135121
409 github level 5 with dict advanced one pass 38938
410 github level 5 with dict dms advanced one pass 38938
411 github level 5 with dict dds advanced one pass 38741
412 github level 5 with dict copy advanced one pass 38934
413 github level 6 advanced one pass 135122
414 github level 6 with dict advanced one pass 38632
415 github level 6 with dict dms advanced one pass 38632
416 github level 6 with dict dds advanced one pass 38632
417 github level 6 with dict copy advanced one pass 38628
418 github level 7 advanced one pass 135122
419 github level 7 with dict advanced one pass 38771
420 github level 7 with dict dms advanced one pass 38771
421 github level 7 with dict dds advanced one pass 38771
422 github level 7 with dict copy advanced one pass 38745
423 github level 9 advanced one pass 135122
424 github level 9 with dict advanced one pass 39332
425 github level 9 with dict dms advanced one pass 39332
426 github level 9 with dict dds advanced one pass 39332
427 github level 9 with dict copy advanced one pass 39341
428 github level 13 advanced one pass 134064
429 github level 13 with dict advanced one pass 39743
430 github level 13 with dict dms advanced one pass 39743
431 github level 13 with dict dds advanced one pass 39743
432 github level 13 with dict copy advanced one pass 39948
433 github level 16 advanced one pass 134064
434 github level 16 with dict advanced one pass 37577
435 github level 16 with dict dms advanced one pass 37577
436 github level 16 with dict dds advanced one pass 37577
437 github level 16 with dict copy advanced one pass 37568
438 github level 19 advanced one pass 134064
439 github level 19 with dict advanced one pass 37576
440 github level 19 with dict dms advanced one pass 37576
441 github level 19 with dict dds advanced one pass 37576
442 github level 19 with dict copy advanced one pass 37567
443 github no source size advanced one pass 136335
444 github no source size with dict advanced one pass 41148
445 github long distance mode advanced one pass 136335
461 github.tar level -1 with dict advanced one pass 41122
462 github.tar level 0 advanced one pass 38441
463 github.tar level 0 with dict advanced one pass 37995
464 github.tar level 0 with dict dms advanced one pass 38003
465 github.tar level 0 with dict dds advanced one pass 37995
466 github.tar level 0 with dict copy advanced one pass 37995
467 github.tar level 1 advanced one pass 39265
468 github.tar level 1 with dict advanced one pass 38309
469 github.tar level 1 with dict dms advanced one pass 38319
470 github.tar level 1 with dict dds advanced one pass 38309
471 github.tar level 1 with dict copy advanced one pass 38309
472 github.tar level 3 advanced one pass 38441
473 github.tar level 3 with dict advanced one pass 37995
474 github.tar level 3 with dict dms advanced one pass 38003
475 github.tar level 3 with dict dds advanced one pass 37995
476 github.tar level 3 with dict copy advanced one pass 37995
477 github.tar level 4 advanced one pass 38467
478 github.tar level 4 with dict advanced one pass 37948
479 github.tar level 4 with dict dms advanced one pass 37954
480 github.tar level 4 with dict dds advanced one pass 37948
481 github.tar level 4 with dict copy advanced one pass 37948
482 github.tar level 5 advanced one pass 39788
483 github.tar level 5 with dict advanced one pass 39715
484 github.tar level 5 with dict dms advanced one pass 39365
485 github.tar level 5 with dict dds advanced one pass 39227
486 github.tar level 5 with dict copy advanced one pass 39715
487 github.tar level 6 advanced one pass 39603
488 github.tar level 6 with dict advanced one pass 38800
489 github.tar level 6 with dict dms advanced one pass 38665
490 github.tar level 6 with dict dds advanced one pass 38665
491 github.tar level 6 with dict copy advanced one pass 38800
492 github.tar level 7 advanced one pass 39206
493 github.tar level 7 with dict advanced one pass 38071
494 github.tar level 7 with dict dms advanced one pass 37954
495 github.tar level 7 with dict dds advanced one pass 37954
496 github.tar level 7 with dict copy advanced one pass 38071
497 github.tar level 9 advanced one pass 36717
498 github.tar level 9 with dict advanced one pass 36898
499 github.tar level 9 with dict dms advanced one pass 36882
500 github.tar level 9 with dict dds advanced one pass 36882
501 github.tar level 9 with dict copy advanced one pass 36898
502 github.tar level 13 advanced one pass 35621
503 github.tar level 13 with dict advanced one pass 38726
504 github.tar level 13 with dict dms advanced one pass 38903
505 github.tar level 13 with dict dds advanced one pass 38726
506 github.tar level 13 with dict copy advanced one pass 38726
507 github.tar level 16 advanced one pass 40255
508 github.tar level 16 with dict advanced one pass 33639
509 github.tar level 16 with dict dms advanced one pass 33544
510 github.tar level 16 with dict dds advanced one pass 33639
511 github.tar level 16 with dict copy advanced one pass 33639
512 github.tar level 19 advanced one pass 32837
513 github.tar level 19 with dict advanced one pass 32895
514 github.tar level 19 with dict dms advanced one pass 32672
515 github.tar level 19 with dict dds advanced one pass 32895
516 github.tar level 19 with dict copy advanced one pass 32895
517 github.tar no source size advanced one pass 38441
518 github.tar no source size with dict advanced one pass 37995
519 github.tar long distance mode advanced one pass 39722
587 github level -1 with dict advanced one pass small out 43170
588 github level 0 advanced one pass small out 136335
589 github level 0 with dict advanced one pass small out 41148
590 github level 0 with dict dms advanced one pass small out 41148
591 github level 0 with dict dds advanced one pass small out 41148
592 github level 0 with dict copy advanced one pass small out 41124
593 github level 1 advanced one pass small out 142465
594 github level 1 with dict advanced one pass small out 41682
595 github level 1 with dict dms advanced one pass small out 41682
596 github level 1 with dict dds advanced one pass small out 41682
597 github level 1 with dict copy advanced one pass small out 41674
598 github level 3 advanced one pass small out 136335
599 github level 3 with dict advanced one pass small out 41148
600 github level 3 with dict dms advanced one pass small out 41148
601 github level 3 with dict dds advanced one pass small out 41148
602 github level 3 with dict copy advanced one pass small out 41124
603 github level 4 advanced one pass small out 136199
604 github level 4 with dict advanced one pass small out 41251
605 github level 4 with dict dms advanced one pass small out 41251
606 github level 4 with dict dds advanced one pass small out 41251
607 github level 4 with dict copy advanced one pass small out 41216
608 github level 5 advanced one pass small out 135121
609 github level 5 with dict advanced one pass small out 38938
610 github level 5 with dict dms advanced one pass small out 38938
611 github level 5 with dict dds advanced one pass small out 38741
612 github level 5 with dict copy advanced one pass small out 38934
613 github level 6 advanced one pass small out 135122
614 github level 6 with dict advanced one pass small out 38632
615 github level 6 with dict dms advanced one pass small out 38632
616 github level 6 with dict dds advanced one pass small out 38632
617 github level 6 with dict copy advanced one pass small out 38628
618 github level 7 advanced one pass small out 135122
619 github level 7 with dict advanced one pass small out 38771
620 github level 7 with dict dms advanced one pass small out 38771
621 github level 7 with dict dds advanced one pass small out 38771
622 github level 7 with dict copy advanced one pass small out 38745
623 github level 9 advanced one pass small out 135122
624 github level 9 with dict advanced one pass small out 39332
625 github level 9 with dict dms advanced one pass small out 39332
626 github level 9 with dict dds advanced one pass small out 39332
627 github level 9 with dict copy advanced one pass small out 39341
628 github level 13 advanced one pass small out 134064
629 github level 13 with dict advanced one pass small out 39743
630 github level 13 with dict dms advanced one pass small out 39743
631 github level 13 with dict dds advanced one pass small out 39743
632 github level 13 with dict copy advanced one pass small out 39948
633 github level 16 advanced one pass small out 134064
634 github level 16 with dict advanced one pass small out 37577
635 github level 16 with dict dms advanced one pass small out 37577
636 github level 16 with dict dds advanced one pass small out 37577
637 github level 16 with dict copy advanced one pass small out 37568
638 github level 19 advanced one pass small out 134064
639 github level 19 with dict advanced one pass small out 37576
640 github level 19 with dict dms advanced one pass small out 37576
641 github level 19 with dict dds advanced one pass small out 37576
642 github level 19 with dict copy advanced one pass small out 37567
643 github no source size advanced one pass small out 136335
644 github no source size with dict advanced one pass small out 41148
645 github long distance mode advanced one pass small out 136335
661 github.tar level -1 with dict advanced one pass small out 41122
662 github.tar level 0 advanced one pass small out 38441
663 github.tar level 0 with dict advanced one pass small out 37995
664 github.tar level 0 with dict dms advanced one pass small out 38003
665 github.tar level 0 with dict dds advanced one pass small out 37995
666 github.tar level 0 with dict copy advanced one pass small out 37995
667 github.tar level 1 advanced one pass small out 39265
668 github.tar level 1 with dict advanced one pass small out 38309
669 github.tar level 1 with dict dms advanced one pass small out 38319
670 github.tar level 1 with dict dds advanced one pass small out 38309
671 github.tar level 1 with dict copy advanced one pass small out 38309
672 github.tar level 3 advanced one pass small out 38441
673 github.tar level 3 with dict advanced one pass small out 37995
674 github.tar level 3 with dict dms advanced one pass small out 38003
675 github.tar level 3 with dict dds advanced one pass small out 37995
676 github.tar level 3 with dict copy advanced one pass small out 37995
677 github.tar level 4 advanced one pass small out 38467
678 github.tar level 4 with dict advanced one pass small out 37948
679 github.tar level 4 with dict dms advanced one pass small out 37954
680 github.tar level 4 with dict dds advanced one pass small out 37948
681 github.tar level 4 with dict copy advanced one pass small out 37948
682 github.tar level 5 advanced one pass small out 39788
683 github.tar level 5 with dict advanced one pass small out 39715
684 github.tar level 5 with dict dms advanced one pass small out 39365
685 github.tar level 5 with dict dds advanced one pass small out 39227
686 github.tar level 5 with dict copy advanced one pass small out 39715
687 github.tar level 6 advanced one pass small out 39603
688 github.tar level 6 with dict advanced one pass small out 38800
689 github.tar level 6 with dict dms advanced one pass small out 38665
690 github.tar level 6 with dict dds advanced one pass small out 38665
691 github.tar level 6 with dict copy advanced one pass small out 38800
692 github.tar level 7 advanced one pass small out 39206
693 github.tar level 7 with dict advanced one pass small out 38071
694 github.tar level 7 with dict dms advanced one pass small out 37954
695 github.tar level 7 with dict dds advanced one pass small out 37954
696 github.tar level 7 with dict copy advanced one pass small out 38071
697 github.tar level 9 advanced one pass small out 36717
698 github.tar level 9 with dict advanced one pass small out 36898
699 github.tar level 9 with dict dms advanced one pass small out 36882
700 github.tar level 9 with dict dds advanced one pass small out 36882
701 github.tar level 9 with dict copy advanced one pass small out 36898
702 github.tar level 13 advanced one pass small out 35621
703 github.tar level 13 with dict advanced one pass small out 38726
704 github.tar level 13 with dict dms advanced one pass small out 38903
705 github.tar level 13 with dict dds advanced one pass small out 38726
706 github.tar level 13 with dict copy advanced one pass small out 38726
707 github.tar level 16 advanced one pass small out 40255
708 github.tar level 16 with dict advanced one pass small out 33639
709 github.tar level 16 with dict dms advanced one pass small out 33544
710 github.tar level 16 with dict dds advanced one pass small out 33639
711 github.tar level 16 with dict copy advanced one pass small out 33639
712 github.tar level 19 advanced one pass small out 32837
713 github.tar level 19 with dict advanced one pass small out 32895
714 github.tar level 19 with dict dms advanced one pass small out 32672
715 github.tar level 19 with dict dds advanced one pass small out 32895
716 github.tar level 19 with dict copy advanced one pass small out 32895
717 github.tar no source size advanced one pass small out 38441
718 github.tar no source size with dict advanced one pass small out 37995
719 github.tar long distance mode advanced one pass small out 39722
787 github level -1 with dict advanced streaming 43170
788 github level 0 advanced streaming 136335
789 github level 0 with dict advanced streaming 41148
790 github level 0 with dict dms advanced streaming 41148
791 github level 0 with dict dds advanced streaming 41148
792 github level 0 with dict copy advanced streaming 41124
793 github level 1 advanced streaming 142465
794 github level 1 with dict advanced streaming 41682
795 github level 1 with dict dms advanced streaming 41682
796 github level 1 with dict dds advanced streaming 41682
797 github level 1 with dict copy advanced streaming 41674
798 github level 3 advanced streaming 136335
799 github level 3 with dict advanced streaming 41148
800 github level 3 with dict dms advanced streaming 41148
801 github level 3 with dict dds advanced streaming 41148
802 github level 3 with dict copy advanced streaming 41124
803 github level 4 advanced streaming 136199
804 github level 4 with dict advanced streaming 41251
805 github level 4 with dict dms advanced streaming 41251
806 github level 4 with dict dds advanced streaming 41251
807 github level 4 with dict copy advanced streaming 41216
808 github level 5 advanced streaming 135121
809 github level 5 with dict advanced streaming 38938
810 github level 5 with dict dms advanced streaming 38938
811 github level 5 with dict dds advanced streaming 38741
812 github level 5 with dict copy advanced streaming 38934
813 github level 6 advanced streaming 135122
814 github level 6 with dict advanced streaming 38632
815 github level 6 with dict dms advanced streaming 38632
816 github level 6 with dict dds advanced streaming 38632
817 github level 6 with dict copy advanced streaming 38628
818 github level 7 advanced streaming 135122
819 github level 7 with dict advanced streaming 38771
820 github level 7 with dict dms advanced streaming 38771
821 github level 7 with dict dds advanced streaming 38771
822 github level 7 with dict copy advanced streaming 38745
823 github level 9 advanced streaming 135122
824 github level 9 with dict advanced streaming 39332
825 github level 9 with dict dms advanced streaming 39332
826 github level 9 with dict dds advanced streaming 39332
827 github level 9 with dict copy advanced streaming 39341
828 github level 13 advanced streaming 134064
829 github level 13 with dict advanced streaming 39743
830 github level 13 with dict dms advanced streaming 39743
831 github level 13 with dict dds advanced streaming 39743
832 github level 13 with dict copy advanced streaming 39948
833 github level 16 advanced streaming 134064
834 github level 16 with dict advanced streaming 37577
835 github level 16 with dict dms advanced streaming 37577
836 github level 16 with dict dds advanced streaming 37577
837 github level 16 with dict copy advanced streaming 37568
838 github level 19 advanced streaming 134064
839 github level 19 with dict advanced streaming 37576
840 github level 19 with dict dms advanced streaming 37576
841 github level 19 with dict dds advanced streaming 37576
842 github level 19 with dict copy advanced streaming 37567
843 github no source size advanced streaming 136335
844 github no source size with dict advanced streaming 41148
845 github long distance mode advanced streaming 136335
861 github.tar level -1 with dict advanced streaming 41122
862 github.tar level 0 advanced streaming 38441
863 github.tar level 0 with dict advanced streaming 37995
864 github.tar level 0 with dict dms advanced streaming 38003
865 github.tar level 0 with dict dds advanced streaming 37995
866 github.tar level 0 with dict copy advanced streaming 37995
867 github.tar level 1 advanced streaming 39342
868 github.tar level 1 with dict advanced streaming 38309
869 github.tar level 1 with dict dms advanced streaming 38319
870 github.tar level 1 with dict dds advanced streaming 38309
871 github.tar level 1 with dict copy advanced streaming 38309
872 github.tar level 3 advanced streaming 38441
873 github.tar level 3 with dict advanced streaming 37995
874 github.tar level 3 with dict dms advanced streaming 38003
875 github.tar level 3 with dict dds advanced streaming 37995
876 github.tar level 3 with dict copy advanced streaming 37995
877 github.tar level 4 advanced streaming 38467
878 github.tar level 4 with dict advanced streaming 37948
879 github.tar level 4 with dict dms advanced streaming 37954
880 github.tar level 4 with dict dds advanced streaming 37948
881 github.tar level 4 with dict copy advanced streaming 37948
882 github.tar level 5 advanced streaming 39788
883 github.tar level 5 with dict advanced streaming 39715
884 github.tar level 5 with dict dms advanced streaming 39365
885 github.tar level 5 with dict dds advanced streaming 39227
886 github.tar level 5 with dict copy advanced streaming 39715
887 github.tar level 6 advanced streaming 39603
888 github.tar level 6 with dict advanced streaming 38800
889 github.tar level 6 with dict dms advanced streaming 38665
890 github.tar level 6 with dict dds advanced streaming 38665
891 github.tar level 6 with dict copy advanced streaming 38800
892 github.tar level 7 advanced streaming 39206
893 github.tar level 7 with dict advanced streaming 38071
894 github.tar level 7 with dict dms advanced streaming 37954
895 github.tar level 7 with dict dds advanced streaming 37954
896 github.tar level 7 with dict copy advanced streaming 38071
897 github.tar level 9 advanced streaming 36717
898 github.tar level 9 with dict advanced streaming 36898
899 github.tar level 9 with dict dms advanced streaming 36882
900 github.tar level 9 with dict dds advanced streaming 36882
901 github.tar level 9 with dict copy advanced streaming 36898
902 github.tar level 13 advanced streaming 35621
903 github.tar level 13 with dict advanced streaming 38726
904 github.tar level 13 with dict dms advanced streaming 38903
905 github.tar level 13 with dict dds advanced streaming 38726
906 github.tar level 13 with dict copy advanced streaming 38726
907 github.tar level 16 advanced streaming 40255
908 github.tar level 16 with dict advanced streaming 33639
909 github.tar level 16 with dict dms advanced streaming 33544
910 github.tar level 16 with dict dds advanced streaming 33639
911 github.tar level 16 with dict copy advanced streaming 33639
912 github.tar level 19 advanced streaming 32837
913 github.tar level 19 with dict advanced streaming 32895
914 github.tar level 19 with dict dms advanced streaming 32672
915 github.tar level 19 with dict dds advanced streaming 32895
916 github.tar level 19 with dict copy advanced streaming 32895
917 github.tar no source size advanced streaming 38438
918 github.tar no source size with dict advanced streaming 38000
919 github.tar long distance mode advanced streaming 39722
971 github level -1 with dict old streaming 43170
972 github level 0 old streaming 136335
973 github level 0 with dict old streaming 41148
974 github level 0 with dict dms old streaming 41148
975 github level 0 with dict dds old streaming 41148
976 github level 0 with dict copy old streaming 41148
977 github level 1 old streaming 142465
978 github level 1 with dict old streaming 41682
979 github level 1 with dict dms old streaming 41682
980 github level 1 with dict dds old streaming 41682
981 github level 1 with dict copy old streaming 41682
982 github level 3 old streaming 136335
983 github level 3 with dict old streaming 41148
984 github level 3 with dict dms old streaming 41148
985 github level 3 with dict dds old streaming 41148
986 github level 3 with dict copy old streaming 41148
987 github level 4 old streaming 136199
988 github level 4 with dict old streaming 41251
989 github level 4 with dict dms old streaming 41251
990 github level 4 with dict dds old streaming 41251
991 github level 4 with dict copy old streaming 41251
992 github level 5 old streaming 135121
993 github level 5 with dict old streaming 38938
994 github level 5 with dict dms old streaming 38938
995 github level 5 with dict dds old streaming 38938
996 github level 5 with dict copy old streaming 38938
997 github level 6 old streaming 135122
998 github level 6 with dict old streaming 38632
999 github level 6 with dict dms old streaming 38632
1000 github level 6 with dict dds old streaming 38632
1001 github level 6 with dict copy old streaming 38632
1002 github level 7 old streaming 135122
1003 github level 7 with dict old streaming 38771
1004 github level 7 with dict dms old streaming 38771
1005 github level 7 with dict dds old streaming 38771
1006 github level 7 with dict copy old streaming 38771
1007 github level 9 old streaming 135122
1008 github level 9 with dict old streaming 39332
1009 github level 9 with dict dms old streaming 39332
1010 github level 9 with dict dds old streaming 39332
1011 github level 9 with dict copy old streaming 39332
1012 github level 13 old streaming 134064
1013 github level 13 with dict old streaming 39743
1014 github level 13 with dict dms old streaming 39743
1015 github level 13 with dict dds old streaming 39743
1016 github level 13 with dict copy old streaming 39743
1017 github level 16 old streaming 134064
1018 github level 16 with dict old streaming 37577
1019 github level 16 with dict dms old streaming 37577
1020 github level 16 with dict dds old streaming 37577
1021 github level 16 with dict copy old streaming 37577
1022 github level 19 old streaming 134064
1023 github level 19 with dict old streaming 37576
1024 github level 19 with dict dms old streaming 37576
1025 github level 19 with dict dds old streaming 37576
1026 github level 19 with dict copy old streaming 37576
1027 github no source size old streaming 140632
1028 github no source size with dict old streaming 40654
1029 github uncompressed literals old streaming 136335
1037 github.tar level -1 with dict old streaming 41122
1038 github.tar level 0 old streaming 38441
1039 github.tar level 0 with dict old streaming 37995
1040 github.tar level 0 with dict dms old streaming 37995
1041 github.tar level 0 with dict dds old streaming 37995
1042 github.tar level 0 with dict copy old streaming 37995
1043 github.tar level 1 old streaming 39342
1044 github.tar level 1 with dict old streaming 38309
1045 github.tar level 1 with dict dms old streaming 38309
1046 github.tar level 1 with dict dds old streaming 38309
1047 github.tar level 1 with dict copy old streaming 38309
1048 github.tar level 3 old streaming 38441
1049 github.tar level 3 with dict old streaming 37995
1050 github.tar level 3 with dict dms old streaming 37995
1051 github.tar level 3 with dict dds old streaming 37995
1052 github.tar level 3 with dict copy old streaming 37995
1053 github.tar level 4 old streaming 38467
1054 github.tar level 4 with dict old streaming 37948
1055 github.tar level 4 with dict dms old streaming 37948
1056 github.tar level 4 with dict dds old streaming 37948
1057 github.tar level 4 with dict copy old streaming 37948
1058 github.tar level 5 old streaming 39788
1059 github.tar level 5 with dict old streaming 39715
1060 github.tar level 5 with dict dms old streaming 39715
1061 github.tar level 5 with dict dds old streaming 39715
1062 github.tar level 5 with dict copy old streaming 39715
1063 github.tar level 6 old streaming 39603
1064 github.tar level 6 with dict old streaming 38800
1065 github.tar level 6 with dict dms old streaming 38800
1066 github.tar level 6 with dict dds old streaming 38800
1067 github.tar level 6 with dict copy old streaming 38800
1068 github.tar level 7 old streaming 39206
1069 github.tar level 7 with dict old streaming 38071
1070 github.tar level 7 with dict dms old streaming 38071
1071 github.tar level 7 with dict dds old streaming 38071
1072 github.tar level 7 with dict copy old streaming 38071
1073 github.tar level 9 old streaming 36717
1074 github.tar level 9 with dict old streaming 36898
1075 github.tar level 9 with dict dms old streaming 36898
1076 github.tar level 9 with dict dds old streaming 36898
1077 github.tar level 9 with dict copy old streaming 36898
1078 github.tar level 13 old streaming 35621
1079 github.tar level 13 with dict old streaming 38726
1080 github.tar level 13 with dict dms old streaming 38726
1081 github.tar level 13 with dict dds old streaming 38726
1082 github.tar level 13 with dict copy old streaming 38726
1083 github.tar level 16 old streaming 40255
1084 github.tar level 16 with dict old streaming 33639
1085 github.tar level 16 with dict dms old streaming 33639
1086 github.tar level 16 with dict dds old streaming 33639
1087 github.tar level 16 with dict copy old streaming 33639
1088 github.tar level 19 old streaming 32837
1089 github.tar level 19 with dict old streaming 32895
1090 github.tar level 19 with dict dms old streaming 32895
1091 github.tar level 19 with dict dds old streaming 32895
1092 github.tar level 19 with dict copy old streaming 32895
1093 github.tar no source size old streaming 38438
1094 github.tar no source size with dict old streaming 38000
1095 github.tar uncompressed literals old streaming 38441
1155 github level -1 with dict old streaming advanced 42383
1156 github level 0 old streaming advanced 141104
1157 github level 0 with dict old streaming advanced 41113
1158 github level 0 with dict dms old streaming advanced 41113
1159 github level 0 with dict dds old streaming advanced 41113
1160 github level 0 with dict copy old streaming advanced 41113
1161 github level 1 old streaming advanced 143692
1162 github level 1 with dict old streaming advanced 42430
1163 github level 1 with dict dms old streaming advanced 42430
1164 github level 1 with dict dds old streaming advanced 42430
1165 github level 1 with dict copy old streaming advanced 42430
1166 github level 3 old streaming advanced 141104
1167 github level 3 with dict old streaming advanced 41113
1168 github level 3 with dict dms old streaming advanced 41113
1169 github level 3 with dict dds old streaming advanced 41113
1170 github level 3 with dict copy old streaming advanced 41113
1171 github level 4 old streaming advanced 141104
1172 github level 4 with dict old streaming advanced 41084
1173 github level 4 with dict dms old streaming advanced 41084
1174 github level 4 with dict dds old streaming advanced 41084
1175 github level 4 with dict copy old streaming advanced 41084
1176 github level 5 old streaming advanced 139399
1177 github level 5 with dict old streaming advanced 39159
1178 github level 5 with dict dms old streaming advanced 39159
1179 github level 5 with dict dds old streaming advanced 39159
1180 github level 5 with dict copy old streaming advanced 39159
1181 github level 6 old streaming advanced 139402
1182 github level 6 with dict old streaming advanced 38749
1183 github level 6 with dict dms old streaming advanced 38749
1184 github level 6 with dict dds old streaming advanced 38749
1185 github level 6 with dict copy old streaming advanced 38749
1186 github level 7 old streaming advanced 138676
1187 github level 7 with dict old streaming advanced 38746
1188 github level 7 with dict dms old streaming advanced 38746
1189 github level 7 with dict dds old streaming advanced 38746
1190 github level 7 with dict copy old streaming advanced 38746
1191 github level 9 old streaming advanced 138676
1192 github level 9 with dict old streaming advanced 38993
1193 github level 9 with dict dms old streaming advanced 38993
1194 github level 9 with dict dds old streaming advanced 38993
1195 github level 9 with dict copy old streaming advanced 38993
1196 github level 13 old streaming advanced 138676
1197 github level 13 with dict old streaming advanced 39731
1198 github level 13 with dict dms old streaming advanced 39731
1199 github level 13 with dict dds old streaming advanced 39731
1200 github level 13 with dict copy old streaming advanced 39731
1201 github level 16 old streaming advanced 138676
1202 github level 16 with dict old streaming advanced 40789
1203 github level 16 with dict dms old streaming advanced 40789
1204 github level 16 with dict dds old streaming advanced 40789
1205 github level 16 with dict copy old streaming advanced 40789
1206 github level 19 old streaming advanced 134064
1207 github level 19 with dict old streaming advanced 37576
1208 github level 19 with dict dms old streaming advanced 37576
1209 github level 19 with dict dds old streaming advanced 37576
1210 github level 19 with dict copy old streaming advanced 37576
1211 github no source size old streaming advanced 140632
1212 github no source size with dict old streaming advanced 40608
1213 github long distance mode old streaming advanced 141104
1229 github.tar level -1 with dict old streaming advanced 41471
1230 github.tar level 0 old streaming advanced 38441
1231 github.tar level 0 with dict old streaming advanced 38013
1232 github.tar level 0 with dict dms old streaming advanced 38013
1233 github.tar level 0 with dict dds old streaming advanced 38013
1234 github.tar level 0 with dict copy old streaming advanced 38013
1235 github.tar level 1 old streaming advanced 39342
1236 github.tar level 1 with dict old streaming advanced 38940
1237 github.tar level 1 with dict dms old streaming advanced 38940
1238 github.tar level 1 with dict dds old streaming advanced 38940
1239 github.tar level 1 with dict copy old streaming advanced 38940
1240 github.tar level 3 old streaming advanced 38441
1241 github.tar level 3 with dict old streaming advanced 38013
1242 github.tar level 3 with dict dms old streaming advanced 38013
1243 github.tar level 3 with dict dds old streaming advanced 38013
1244 github.tar level 3 with dict copy old streaming advanced 38013
1245 github.tar level 4 old streaming advanced 38467
1246 github.tar level 4 with dict old streaming advanced 38063
1247 github.tar level 4 with dict dms old streaming advanced 38063
1248 github.tar level 4 with dict dds old streaming advanced 38063
1249 github.tar level 4 with dict copy old streaming advanced 38063
1250 github.tar level 5 old streaming advanced 39788
1251 github.tar level 5 with dict old streaming advanced 39310
1252 github.tar level 5 with dict dms old streaming advanced 39310
1253 github.tar level 5 with dict dds old streaming advanced 39310
1254 github.tar level 5 with dict copy old streaming advanced 39310
1255 github.tar level 6 old streaming advanced 39603
1256 github.tar level 6 with dict old streaming advanced 39279
1257 github.tar level 6 with dict dms old streaming advanced 39279
1258 github.tar level 6 with dict dds old streaming advanced 39279
1259 github.tar level 6 with dict copy old streaming advanced 39279
1260 github.tar level 7 old streaming advanced 39206
1261 github.tar level 7 with dict old streaming advanced 38728
1262 github.tar level 7 with dict dms old streaming advanced 38728
1263 github.tar level 7 with dict dds old streaming advanced 38728
1264 github.tar level 7 with dict copy old streaming advanced 38728
1265 github.tar level 9 old streaming advanced 36717
1266 github.tar level 9 with dict old streaming advanced 36504
1267 github.tar level 9 with dict dms old streaming advanced 36504
1268 github.tar level 9 with dict dds old streaming advanced 36504
1269 github.tar level 9 with dict copy old streaming advanced 36504
1270 github.tar level 13 old streaming advanced 35621
1271 github.tar level 13 with dict old streaming advanced 36035
1272 github.tar level 13 with dict dms old streaming advanced 36035
1273 github.tar level 13 with dict dds old streaming advanced 36035
1274 github.tar level 13 with dict copy old streaming advanced 36035
1275 github.tar level 16 old streaming advanced 40255
1276 github.tar level 16 with dict old streaming advanced 38736
1277 github.tar level 16 with dict dms old streaming advanced 38736
1278 github.tar level 16 with dict dds old streaming advanced 38736
1279 github.tar level 16 with dict copy old streaming advanced 38736
1280 github.tar level 19 old streaming advanced 32837
1281 github.tar level 19 with dict old streaming advanced 32876
1282 github.tar level 19 with dict dms old streaming advanced 32876
1283 github.tar level 19 with dict dds old streaming advanced 32876
1284 github.tar level 19 with dict copy old streaming advanced 32876
1285 github.tar no source size old streaming advanced 38438
1286 github.tar no source size with dict old streaming advanced 38015
1287 github.tar long distance mode old streaming advanced 38441
1295 github.tar uncompressed literals optimal old streaming advanced 32837
1296 github.tar huffman literals old streaming advanced 42465
1297 github.tar multithreaded with advanced params old streaming advanced 38441
1298 github level -5 with dict old streaming cdcit old streaming cdict 46718
1299 github level -3 with dict old streaming cdcit old streaming cdict 45395
1300 github level -1 with dict old streaming cdcit old streaming cdict 43170
1301 github level 0 with dict old streaming cdcit old streaming cdict 41148
1302 github level 1 with dict level 0 with dict dms old streaming cdcit old streaming cdict 41682 41148
1303 github level 3 with dict level 0 with dict dds old streaming cdcit old streaming cdict 41148
1304 github level 4 with dict level 0 with dict copy old streaming cdcit old streaming cdict 41251 41148
1305 github level 5 with dict level 1 with dict old streaming cdcit old streaming cdict 38938 41682
1306 github level 6 with dict level 1 with dict dms old streaming cdcit old streaming cdict 38632 41682
1307 github level 7 with dict level 1 with dict dds old streaming cdcit old streaming cdict 38771 41682
1308 github level 9 with dict level 1 with dict copy old streaming cdcit old streaming cdict 39332 41682
1309 github level 13 with dict level 3 with dict old streaming cdcit old streaming cdict 39743 41148
1310 github level 16 with dict level 3 with dict dms old streaming cdcit old streaming cdict 37577 41148
1311 github level 19 with dict level 3 with dict dds old streaming cdcit old streaming cdict 37576 41148
1312 github no source size with dict level 3 with dict copy old streaming cdcit old streaming cdict 40654 41148
1313 github.tar github level -5 with dict level 4 with dict old streaming cdcit old streaming cdict 45018 41251
1314 github.tar github level -3 with dict level 4 with dict dms old streaming cdcit old streaming cdict 41886 41251
1315 github.tar github level -1 with dict level 4 with dict dds old streaming cdcit old streaming cdict 41636 41251
1316 github.tar github level 0 with dict level 4 with dict copy old streaming cdcit old streaming cdict 37956 41251
1317 github.tar github level 1 with dict level 5 with dict old streaming cdcit old streaming cdict 38766 38938
1318 github.tar github level 3 with dict level 5 with dict dms old streaming cdcit old streaming cdict 37956 38938
1319 github.tar github level 4 with dict level 5 with dict dds old streaming cdcit old streaming cdict 37927 38938
1320 github.tar github level 5 with dict level 5 with dict copy old streaming cdcit old streaming cdict 39209 38938
1321 github.tar github level 6 with dict old streaming cdcit old streaming cdict 38983 38632
1322 github.tar github level 7 with dict level 6 with dict dms old streaming cdcit old streaming cdict 38584 38632
1323 github.tar github level 9 with dict level 6 with dict dds old streaming cdcit old streaming cdict 36363 38632
1324 github.tar github level 13 with dict level 6 with dict copy old streaming cdcit old streaming cdict 36372 38632
1325 github.tar github level 16 with dict level 7 with dict old streaming cdcit old streaming cdict 39353 38771
1326 github.tar github level 19 with dict level 7 with dict dms old streaming cdcit old streaming cdict 32676 38771
1327 github.tar github no source size with dict level 7 with dict dds old streaming cdcit old streaming cdict 38000 38771
1328 github level 7 with dict copy old streaming cdict 38771
1329 github level 9 with dict old streaming cdict 39332
1330 github level 9 with dict dms old streaming cdict 39332
1331 github level 9 with dict dds old streaming cdict 39332
1332 github level 9 with dict copy old streaming cdict 39332
1333 github level 13 with dict old streaming cdict 39743
1334 github level 13 with dict dms old streaming cdict 39743
1335 github level 13 with dict dds old streaming cdict 39743
1336 github level 13 with dict copy old streaming cdict 39743
1337 github level 16 with dict old streaming cdict 37577
1338 github level 16 with dict dms old streaming cdict 37577
1339 github level 16 with dict dds old streaming cdict 37577
1340 github level 16 with dict copy old streaming cdict 37577
1341 github level 19 with dict old streaming cdict 37576
1342 github level 19 with dict dms old streaming cdict 37576
1343 github level 19 with dict dds old streaming cdict 37576
1344 github level 19 with dict copy old streaming cdict 37576
1345 github no source size with dict old streaming cdict 40654
1346 github.tar level -5 with dict old streaming cdict 45018
1347 github.tar level -3 with dict old streaming cdict 41886
1348 github.tar level -1 with dict old streaming cdict 41636
1349 github.tar level 0 with dict old streaming cdict 37956
1350 github.tar level 0 with dict dms old streaming cdict 37956
1351 github.tar level 0 with dict dds old streaming cdict 37956
1352 github.tar level 0 with dict copy old streaming cdict 37956
1353 github.tar level 1 with dict old streaming cdict 38766
1354 github.tar level 1 with dict dms old streaming cdict 38766
1355 github.tar level 1 with dict dds old streaming cdict 38766
1356 github.tar level 1 with dict copy old streaming cdict 38766
1357 github.tar level 3 with dict old streaming cdict 37956
1358 github.tar level 3 with dict dms old streaming cdict 37956
1359 github.tar level 3 with dict dds old streaming cdict 37956
1360 github.tar level 3 with dict copy old streaming cdict 37956
1361 github.tar level 4 with dict old streaming cdict 37927
1362 github.tar level 4 with dict dms old streaming cdict 37927
1363 github.tar level 4 with dict dds old streaming cdict 37927
1364 github.tar level 4 with dict copy old streaming cdict 37927
1365 github.tar level 5 with dict old streaming cdict 39209
1366 github.tar level 5 with dict dms old streaming cdict 39209
1367 github.tar level 5 with dict dds old streaming cdict 39209
1368 github.tar level 5 with dict copy old streaming cdict 39209
1369 github.tar level 6 with dict old streaming cdict 38983
1370 github.tar level 6 with dict dms old streaming cdict 38983
1371 github.tar level 6 with dict dds old streaming cdict 38983
1372 github.tar level 6 with dict copy old streaming cdict 38983
1373 github.tar level 7 with dict old streaming cdict 38584
1374 github.tar level 7 with dict dms old streaming cdict 38584
1375 github.tar level 7 with dict dds old streaming cdict 38584
1376 github.tar level 7 with dict copy old streaming cdict 38584
1377 github.tar level 9 with dict old streaming cdict 36363
1378 github.tar level 9 with dict dms old streaming cdict 36363
1379 github.tar level 9 with dict dds old streaming cdict 36363
1380 github.tar level 9 with dict copy old streaming cdict 36363
1381 github.tar level 13 with dict old streaming cdict 36372
1382 github.tar level 13 with dict dms old streaming cdict 36372
1383 github.tar level 13 with dict dds old streaming cdict 36372
1384 github.tar level 13 with dict copy old streaming cdict 36372
1385 github.tar level 16 with dict old streaming cdict 39353
1386 github.tar level 16 with dict dms old streaming cdict 39353
1387 github.tar level 16 with dict dds old streaming cdict 39353
1388 github.tar level 16 with dict copy old streaming cdict 39353
1389 github.tar level 19 with dict old streaming cdict 32676
1390 github.tar level 19 with dict dms old streaming cdict 32676
1391 github.tar level 19 with dict dds old streaming cdict 32676
1392 github.tar level 19 with dict copy old streaming cdict 32676
1393 github.tar no source size with dict old streaming cdict 38000
1394 github level -5 with dict old streaming advanced cdict 49562
1395 github level -3 with dict old streaming advanced cdict 44956
1396 github level -1 with dict old streaming advanced cdict 42383
1397 github level 0 with dict old streaming advanced cdict 41113
1398 github level 0 with dict dms old streaming advanced cdict 41113
1399 github level 0 with dict dds old streaming advanced cdict 41113
1400 github level 0 with dict copy old streaming advanced cdict 41113
1401 github level 1 with dict old streaming advanced cdict 42430
1402 github level 1 with dict dms old streaming advanced cdict 42430
1403 github level 1 with dict dds old streaming advanced cdict 42430
1404 github level 1 with dict copy old streaming advanced cdict 42430
1405 github level 3 with dict old streaming advanced cdict 41113
1406 github level 3 with dict dms old streaming advanced cdict 41113
1407 github level 3 with dict dds old streaming advanced cdict 41113
1408 github level 3 with dict copy old streaming advanced cdict 41113
1409 github level 4 with dict old streaming advanced cdict 41084
1410 github level 4 with dict dms old streaming advanced cdict 41084
1411 github level 4 with dict dds old streaming advanced cdict 41084
1412 github level 4 with dict copy old streaming advanced cdict 41084
1413 github level 5 with dict old streaming advanced cdict 39159
1414 github level 5 with dict dms old streaming advanced cdict 39159
1415 github level 5 with dict dds old streaming advanced cdict 39159
1416 github level 5 with dict copy old streaming advanced cdict 39159
1417 github level 6 with dict old streaming advanced cdict 38749
1418 github level 6 with dict dms old streaming advanced cdict 38749
1419 github level 6 with dict dds old streaming advanced cdict 38749
1420 github level 6 with dict copy old streaming advanced cdict 38749
1421 github level 7 with dict old streaming advanced cdict 38746
1422 github level 7 with dict dms old streaming advanced cdict 38746
1423 github level 7 with dict dds old streaming advanced cdict 38746
1424 github level 7 with dict copy old streaming advanced cdict 38746
1425 github level 9 with dict old streaming advanced cdict 38993
1426 github level 9 with dict dms old streaming advanced cdict 38993
1427 github level 9 with dict dds old streaming advanced cdict 38993
1428 github level 9 with dict copy old streaming advanced cdict 38993
1429 github level 13 with dict old streaming advanced cdict 39731
1430 github level 13 with dict dms old streaming advanced cdict 39731
1431 github level 13 with dict dds old streaming advanced cdict 39731
1432 github level 13 with dict copy old streaming advanced cdict 39731
1433 github level 16 with dict old streaming advanced cdict 40789
1434 github level 16 with dict dms old streaming advanced cdict 40789
1435 github level 16 with dict dds old streaming advanced cdict 40789
1436 github level 16 with dict copy old streaming advanced cdict 40789
1437 github level 19 with dict old streaming advanced cdict 37576
1438 github level 19 with dict dms old streaming advanced cdict 37576
1439 github level 19 with dict dds old streaming advanced cdict 37576
1440 github level 19 with dict copy old streaming advanced cdict 37576
1441 github no source size with dict old streaming advanced cdict 40608
1442 github.tar level -5 with dict old streaming advanced cdict 44307
1443 github.tar level -3 with dict old streaming advanced cdict 41359
1444 github.tar level -1 with dict old streaming advanced cdict 41322
1445 github.tar level 0 with dict old streaming advanced cdict 38013
1446 github.tar level 0 with dict dms old streaming advanced cdict 38013
1447 github.tar level 0 with dict dds old streaming advanced cdict 38013
1448 github.tar level 0 with dict copy old streaming advanced cdict 38013
1449 github.tar level 1 with dict old streaming advanced cdict 39002
1450 github.tar level 1 with dict dms old streaming advanced cdict 39002
1451 github.tar level 1 with dict dds old streaming advanced cdict 39002
1452 github.tar level 1 with dict copy old streaming advanced cdict 39002
1453 github.tar level 3 with dict old streaming advanced cdict 38013
1454 github.tar level 3 with dict dms old streaming advanced cdict 38013
1455 github.tar level 3 with dict dds old streaming advanced cdict 38013
1456 github.tar level 3 with dict copy old streaming advanced cdict 38013
1457 github.tar level 4 with dict old streaming advanced cdict 38063
1458 github.tar level 4 with dict dms old streaming advanced cdict 38063
1459 github.tar level 4 with dict dds old streaming advanced cdict 38063
1460 github.tar level 4 with dict copy old streaming advanced cdict 38063
1461 github.tar level 5 with dict old streaming advanced cdict 39310
1462 github.tar level 5 with dict dms old streaming advanced cdict 39310
1463 github.tar level 5 with dict dds old streaming advanced cdict 39310
1464 github.tar level 5 with dict copy old streaming advanced cdict 39310
1465 github.tar level 6 with dict old streaming advanced cdict 39279
1466 github.tar level 6 with dict dms old streaming advanced cdict 39279
1467 github.tar level 6 with dict dds old streaming advanced cdict 39279
1468 github.tar level 6 with dict copy old streaming advanced cdict 39279
1469 github.tar level 7 with dict old streaming advanced cdict 38728
1470 github.tar level 7 with dict dms old streaming advanced cdict 38728
1471 github.tar level 7 with dict dds old streaming advanced cdict 38728
1472 github.tar level 7 with dict copy old streaming advanced cdict 38728
1473 github.tar level 9 with dict old streaming advanced cdict 36504
1474 github.tar level 9 with dict dms old streaming advanced cdict 36504
1475 github.tar level 9 with dict dds old streaming advanced cdict 36504
1476 github.tar level 9 with dict copy old streaming advanced cdict 36504
1477 github.tar level 13 with dict old streaming advanced cdict 36035
1478 github.tar level 13 with dict dms old streaming advanced cdict 36035
1479 github.tar level 13 with dict dds old streaming advanced cdict 36035
1480 github.tar level 13 with dict copy old streaming advanced cdict 36035
1481 github.tar level 16 with dict old streaming advanced cdict 38736
1482 github.tar level 16 with dict dms old streaming advanced cdict 38736
1483 github.tar level 16 with dict dds old streaming advanced cdict 38736
1484 github.tar level 16 with dict copy old streaming advanced cdict 38736
1485 github.tar level 19 with dict old streaming advanced cdict 32876
1486 github.tar level 19 with dict dms old streaming advanced cdict 32876
1487 github.tar level 19 with dict dds old streaming advanced cdict 32876
1488 github.tar level 19 with dict copy old streaming advanced cdict 32876
1489 github.tar no source size with dict old streaming advanced cdict 38015