Skip to content

Commit 271c372

Browse files
committed
lz5 to lizard
1 parent 58547d8 commit 271c372

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+647
-647
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
.clang_complete
2424

2525
# Directories
26-
_lz5bench/
26+
_lizardbench/
2727
_visual/
2828
_codelite/
2929
_backup/
3030
_codelite_lz4/
3131

3232
# Archives
3333
*.zip
34-
*.lz5
34+
*.liz
3535

3636
*.txt
3737
*.bat

.travis.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ matrix:
44
include:
55
# OS X Mavericks
66
- os: osx
7-
env: Ubu=OS_X_Mavericks Cmd='make -C tests test-lz5 CC=clang MOREFLAGS="-Werror -Wconversion -Wno-sign-conversion"' COMPILER=clang
7+
env: Ubu=OS_X_Mavericks Cmd='make -C tests test-lizard CC=clang MOREFLAGS="-Werror -Wconversion -Wno-sign-conversion"' COMPILER=clang
88

99
# Container-based 12.04 LTS Server Edition 64 bit (doesn't support 32-bit includes)
1010
- os: linux
1111
sudo: false
12-
env: Ubu=12.04cont Cmd='make -C tests test-lz5 test-fullbench' COMPILER=cc
12+
env: Ubu=12.04cont Cmd='make -C tests test-lizard test-fullbench' COMPILER=cc
1313

1414
- os: linux
1515
sudo: false
@@ -21,7 +21,7 @@ matrix:
2121

2222

2323
# 14.04 LTS Server Edition 64 bit
24-
- env: Ubu=14.04 Cmd='make -C tests test-lz5c32 test-fullbench32' COMPILER=cc
24+
- env: Ubu=14.04 Cmd='make -C tests test-lizardc32 test-fullbench32' COMPILER=cc
2525
dist: trusty
2626
sudo: required
2727
addons:
@@ -79,7 +79,7 @@ matrix:
7979
- qemu-user-static
8080
- gcc-powerpc-linux-gnu
8181

82-
- env: Ubu=14.04 Cmd='make c_standards && make -C tests test-lz5' COMPILER=cc
82+
- env: Ubu=14.04 Cmd='make c_standards && make -C tests test-lizard' COMPILER=cc
8383
dist: trusty
8484
sudo: required
8585

@@ -91,7 +91,7 @@ matrix:
9191
packages:
9292
- valgrind
9393

94-
- env: Ubu=14.04 Cmd='make -C tests test-lz5 test-lz5c32 CC=gcc-5 MOREFLAGS=-Werror' COMPILER=gcc-5
94+
- env: Ubu=14.04 Cmd='make -C tests test-lizard test-lizardc32 CC=gcc-5 MOREFLAGS=-Werror' COMPILER=gcc-5
9595
dist: trusty
9696
sudo: required
9797
addons:
@@ -104,7 +104,7 @@ matrix:
104104
- gcc-5
105105
- gcc-5-multilib
106106

107-
- env: Ubu=14.04 Cmd='make c_standards CC=gcc-6 && make -C tests test-lz5 CC=gcc-6 MOREFLAGS=-Werror' COMPILER=gcc-6
107+
- env: Ubu=14.04 Cmd='make c_standards CC=gcc-6 && make -C tests test-lizard CC=gcc-6 MOREFLAGS=-Werror' COMPILER=gcc-6
108108
dist: trusty
109109
sudo: required
110110
addons:
@@ -114,7 +114,7 @@ matrix:
114114
packages:
115115
- gcc-6
116116

117-
- env: Ubu=14.04 Cmd='make -C tests test-lz5 CC=clang-3.8' COMPILER=clang-3.8
117+
- env: Ubu=14.04 Cmd='make -C tests test-lizard CC=clang-3.8' COMPILER=clang-3.8
118118
dist: trusty
119119
sudo: required
120120
addons:

Makefile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2929
#
3030
# You can contact the author at :
31-
# - Lizard source repository : https://github.com/inikep/lz5
31+
# - Lizard source repository : https://github.com/inikep/lizard
3232
# ################################################################
3333

3434
DESTDIR ?=
@@ -48,25 +48,25 @@ EXT =
4848
endif
4949

5050

51-
.PHONY: default all lib lz5 clean test versionsTest examples
51+
.PHONY: default all lib lizard clean test versionsTest examples
5252

53-
default: lz5
53+
default: lizard
5454

55-
all: lib lz5
55+
all: lib lizard
5656

5757
lib:
5858
@$(MAKE) -C $(LIBDIR) all
5959

60-
lz5:
60+
lizard:
6161
@$(MAKE) -C $(PRGDIR)
62-
@cp $(PRGDIR)/lz5$(EXT) .
62+
@cp $(PRGDIR)/lizard$(EXT) .
6363

6464
clean:
6565
@$(MAKE) -C $(PRGDIR) $@ > $(VOID)
6666
@$(MAKE) -C $(TESTDIR) $@ > $(VOID)
6767
@$(MAKE) -C $(LIBDIR) $@ > $(VOID)
6868
@$(MAKE) -C examples $@ > $(VOID)
69-
@$(RM) lz5$(EXT)
69+
@$(RM) lizard$(EXT)
7070
@echo Cleaning completed
7171

7272

@@ -109,7 +109,7 @@ staticAnalyze: clean
109109
CFLAGS=-g scan-build --status-bugs -v $(MAKE) all
110110

111111
platformTest: clean
112-
@echo "\n ---- test lz5 with $(CC) compiler ----"
112+
@echo "\n ---- test lizard with $(CC) compiler ----"
113113
@$(CC) -v
114114
CFLAGS="-O3 -Werror" $(MAKE) -C $(LIBDIR) all
115115
CFLAGS="-O3 -Werror -static" $(MAKE) -C $(PRGDIR) native
@@ -121,7 +121,7 @@ versionsTest: clean
121121

122122
examples:
123123
$(MAKE) -C $(LIBDIR)
124-
$(MAKE) -C $(PRGDIR) lz5
124+
$(MAKE) -C $(PRGDIR) lizard
125125
$(MAKE) -C examples test
126126

127127
endif

NEWS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ LZ5 v1.5
1313
- introduced compatibility with Visual C++ 2010 and newer
1414
- attached Visual Studio 2010 project
1515
- thoroughly tested with 21 Travis CI and 7 AppVeyor CI tests
16-
- fixed bug with reusing a context in lz5frame.c (LizardF_compressBegin and Lizard_compress_HC_continue)
16+
- fixed bug with reusing a context in lizardframe.c (LizardF_compressBegin and Lizard_compress_HC_continue)
1717
- fixed rare bug in match finder (concerns levels 4 - 15)
1818

1919
LZ5 v1.4.1
@@ -22,8 +22,8 @@ LZ5 v1.4.1
2222
LZ5 v1.4
2323
- improved: levels from 13 to 15 (maximum compression ratio)
2424
- added a new parser: LizardHC_optimal_price_bt
25-
- updated documentation: lz5_Block_format.md and lz5_Frame_format.md
26-
- changed lz5.exe: the "-B" option with block size [1-7] = 64KB, 256KB, 1MB, 4MB, 16MB, 64MB, 256MB (default : 4 = 4MB)
25+
- updated documentation: lizard_Block_format.md and lizard_Frame_format.md
26+
- changed lizard.exe: the "-B" option with block size [1-7] = 64KB, 256KB, 1MB, 4MB, 16MB, 64MB, 256MB (default : 4 = 4MB)
2727

2828
LZ5 v1.3.3
2929
- added: new levels from 11 to 18 (maximum compression ratio)

README.md

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ The high compression/decompression speed is achieved without any SSE and AVX ext
1414

1515
|Branch |Status |
1616
|------------|---------|
17-
|lz5_v1.5 | [![Build Status][travis15Badge]][travisLink] [![Build status][Appveyor15Badge]][AppveyorLink] |
18-
|lz5_v2.0 | [![Build Status][travis20Badge]][travisLink] [![Build status][Appveyor20Badge]][AppveyorLink] |
17+
|lizard_v1.5 | [![Build Status][travis15Badge]][travisLink] [![Build status][Appveyor15Badge]][AppveyorLink] |
18+
|lizard_v2.0 | [![Build Status][travis20Badge]][travisLink] [![Build status][Appveyor20Badge]][AppveyorLink] |
1919

20-
[travis15Badge]: https://travis-ci.org/inikep/lz5.svg?branch=lz5_v1.5 "Continuous Integration test suite"
21-
[travis20Badge]: https://travis-ci.org/inikep/lz5.svg?branch=lz5_v2.0 "Continuous Integration test suite"
22-
[travisLink]: https://travis-ci.org/inikep/lz5
23-
[Appveyor15Badge]: https://ci.appveyor.com/api/projects/status/o0ib75nwokjiui36/branch/lz5_v1.5?svg=true "Visual test suite"
24-
[Appveyor20Badge]: https://ci.appveyor.com/api/projects/status/o0ib75nwokjiui36/branch/lz5_v2.0?svg=true "Visual test suite"
25-
[AppveyorLink]: https://ci.appveyor.com/project/inikep/lz5
20+
[travis15Badge]: https://travis-ci.org/inikep/lizard.svg?branch=lizard_v1.5 "Continuous Integration test suite"
21+
[travis20Badge]: https://travis-ci.org/inikep/lizard.svg?branch=lizard_v2.0 "Continuous Integration test suite"
22+
[travisLink]: https://travis-ci.org/inikep/lizard
23+
[Appveyor15Badge]: https://ci.appveyor.com/api/projects/status/o0ib75nwokjiui36/branch/lizard_v1.5?svg=true "Visual test suite"
24+
[Appveyor20Badge]: https://ci.appveyor.com/api/projects/status/o0ib75nwokjiui36/branch/lizard_v2.0?svg=true "Visual test suite"
25+
[AppveyorLink]: https://ci.appveyor.com/project/inikep/lizard
2626
[LZ4]: https://github.com/lz4/lz4
2727
[zlib]: https://github.com/madler/zlib
2828
[zstd]: https://github.com/facebook/zstd
@@ -45,22 +45,22 @@ with [silesia.tar] which contains tarred files from [Silesia compression corpus]
4545
| lz4hc 1.7.3 -9 | 22 MB/s | 2315 MB/s | 77892285 | 36.75 |
4646
| lz4hc 1.7.3 -12 | 17 MB/s | 2323 MB/s | 77849762 | 36.73 |
4747
| lz4hc 1.7.3 -16 | 10 MB/s | 2323 MB/s | 77841782 | 36.73 |
48-
| lz5 2.0 -10 | 346 MB/s | 2610 MB/s | 103402971 | 48.79 |
49-
| lz5 2.0 -12 | 103 MB/s | 2458 MB/s | 86232422 | 40.69 |
50-
| lz5 2.0 -15 | 50 MB/s | 2552 MB/s | 81187330 | 38.31 |
51-
| lz5 2.0 -19 | 3.04 MB/s | 2497 MB/s | 77416400 | 36.53 |
52-
| lz5 2.0 -21 | 157 MB/s | 1795 MB/s | 89239174 | 42.10 |
53-
| lz5 2.0 -23 | 30 MB/s | 1778 MB/s | 81097176 | 38.26 |
54-
| lz5 2.0 -26 | 6.63 MB/s | 1734 MB/s | 74503695 | 35.15 |
55-
| lz5 2.0 -29 | 1.37 MB/s | 1634 MB/s | 68694227 | 32.41 |
56-
| lz5 2.0 -30 | 246 MB/s | 909 MB/s | 85727429 | 40.45 |
57-
| lz5 2.0 -32 | 94 MB/s | 1244 MB/s | 76929454 | 36.30 |
58-
| lz5 2.0 -35 | 47 MB/s | 1435 MB/s | 73850400 | 34.84 |
59-
| lz5 2.0 -39 | 2.94 MB/s | 1502 MB/s | 69807522 | 32.94 |
60-
| lz5 2.0 -41 | 126 MB/s | 961 MB/s | 76100661 | 35.91 |
61-
| lz5 2.0 -43 | 28 MB/s | 1101 MB/s | 70955653 | 33.48 |
62-
| lz5 2.0 -46 | 6.25 MB/s | 1073 MB/s | 65413061 | 30.86 |
63-
| lz5 2.0 -49 | 1.27 MB/s | 1064 MB/s | 60679215 | 28.63 |
48+
| lizard 2.0 -10 | 346 MB/s | 2610 MB/s | 103402971 | 48.79 |
49+
| lizard 2.0 -12 | 103 MB/s | 2458 MB/s | 86232422 | 40.69 |
50+
| lizard 2.0 -15 | 50 MB/s | 2552 MB/s | 81187330 | 38.31 |
51+
| lizard 2.0 -19 | 3.04 MB/s | 2497 MB/s | 77416400 | 36.53 |
52+
| lizard 2.0 -21 | 157 MB/s | 1795 MB/s | 89239174 | 42.10 |
53+
| lizard 2.0 -23 | 30 MB/s | 1778 MB/s | 81097176 | 38.26 |
54+
| lizard 2.0 -26 | 6.63 MB/s | 1734 MB/s | 74503695 | 35.15 |
55+
| lizard 2.0 -29 | 1.37 MB/s | 1634 MB/s | 68694227 | 32.41 |
56+
| lizard 2.0 -30 | 246 MB/s | 909 MB/s | 85727429 | 40.45 |
57+
| lizard 2.0 -32 | 94 MB/s | 1244 MB/s | 76929454 | 36.30 |
58+
| lizard 2.0 -35 | 47 MB/s | 1435 MB/s | 73850400 | 34.84 |
59+
| lizard 2.0 -39 | 2.94 MB/s | 1502 MB/s | 69807522 | 32.94 |
60+
| lizard 2.0 -41 | 126 MB/s | 961 MB/s | 76100661 | 35.91 |
61+
| lizard 2.0 -43 | 28 MB/s | 1101 MB/s | 70955653 | 33.48 |
62+
| lizard 2.0 -46 | 6.25 MB/s | 1073 MB/s | 65413061 | 30.86 |
63+
| lizard 2.0 -49 | 1.27 MB/s | 1064 MB/s | 60679215 | 28.63 |
6464
| zlib 1.2.8 -1 | 66 MB/s | 244 MB/s | 77259029 | 36.45 |
6565
| zlib 1.2.8 -6 | 20 MB/s | 263 MB/s | 68228431 | 32.19 |
6666
| zlib 1.2.8 -9 | 8.37 MB/s | 266 MB/s | 67644548 | 31.92 |
@@ -84,12 +84,12 @@ with [silesia.tar] which contains tarred files from [Silesia compression corpus]
8484
Documentation
8585
-------------------------
8686

87-
The raw Lizard block compression format is detailed within [lz5_Block_format].
87+
The raw Lizard block compression format is detailed within [lizard_Block_format].
8888

8989
To compress an arbitrarily long file or data stream, multiple blocks are required.
9090
Organizing these blocks and providing a common header format to handle their content
91-
is the purpose of the Frame format, defined into [lz5_Frame_format].
91+
is the purpose of the Frame format, defined into [lizard_Frame_format].
9292
Interoperable versions of Lizard must respect this frame format.
9393

94-
[lz5_Block_format]: doc/lz5_Block_format.md
95-
[lz5_Frame_format]: doc/lz5_Frame_format.md
94+
[lizard_Block_format]: doc/lizard_Block_format.md
95+
[lizard_Frame_format]: doc/lizard_Frame_format.md

appveyor.yml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ build_script:
4747
make -v &&
4848
echo ----- &&
4949
if not [%PLATFORM%]==[clang] (
50-
make -C programs lz5 && make -C tests fullbench && make -C lib lib
50+
make -C programs lizard && make -C tests fullbench && make -C lib lib
5151
) ELSE (
52-
make -C programs lz5 CC=clang MOREFLAGS="--target=x86_64-w64-mingw32 -Werror -Wconversion -Wno-sign-conversion" &&
52+
make -C programs lizard CC=clang MOREFLAGS="--target=x86_64-w64-mingw32 -Werror -Wconversion -Wno-sign-conversion" &&
5353
make -C tests fullbench CC=clang MOREFLAGS="--target=x86_64-w64-mingw32 -Werror -Wconversion -Wno-sign-conversion" &&
5454
make -C lib lib CC=clang MOREFLAGS="--target=x86_64-w64-mingw32 -Werror -Wconversion -Wno-sign-conversion"
5555
)
@@ -59,42 +59,42 @@ build_script:
5959
COPY tests\fullbench.c bin\example\ &&
6060
COPY lib\xxhash.c bin\example\ &&
6161
COPY lib\xxhash.h bin\example\ &&
62-
COPY lib\lz5.h bin\include\ &&
63-
COPY lib\lz5hc.h bin\include\ &&
64-
COPY lib\lz5frame.h bin\include\ &&
65-
COPY lib\liblz5.a bin\static\liblz5_static.lib &&
66-
COPY lib\dll\liblz5.* bin\dll\ &&
62+
COPY lib\lizard.h bin\include\ &&
63+
COPY lib\lizardhc.h bin\include\ &&
64+
COPY lib\lizardframe.h bin\include\ &&
65+
COPY lib\liblizard.a bin\static\liblizard_static.lib &&
66+
COPY lib\dll\liblizard.* bin\dll\ &&
6767
COPY lib\dll\example\Makefile bin\example\ &&
6868
COPY lib\dll\example\fullbench-dll.* bin\example\ &&
6969
COPY lib\dll\example\README.md bin\ &&
70-
COPY programs\lz5.exe bin\lz5.exe
70+
COPY programs\lizard.exe bin\lizard.exe
7171
)
7272
- if [%COMPILER%]==[gccX] if [%PLATFORM%]==[mingw64] (
73-
7z.exe a bin\lz5_x64.zip NEWS .\bin\lz5.exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include &&
74-
appveyor PushArtifact bin\lz5_x64.zip
73+
7z.exe a bin\lizard_x64.zip NEWS .\bin\lizard.exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include &&
74+
appveyor PushArtifact bin\lizard_x64.zip
7575
)
7676
- if [%COMPILER%]==[gccX] if [%PLATFORM%]==[mingw32] (
77-
7z.exe a bin\lz5_x86.zip NEWS .\bin\lz5.exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include &&
78-
appveyor PushArtifact bin\lz5_x86.zip
77+
7z.exe a bin\lizard_x86.zip NEWS .\bin\lizard.exe .\bin\README.md .\bin\example .\bin\dll .\bin\static .\bin\include &&
78+
appveyor PushArtifact bin\lizard_x86.zip
7979
)
8080
- if [%COMPILER%]==[gcc] (COPY tests\fullbench.exe programs\)
8181
- if [%COMPILER%]==[visual] (
8282
ECHO *** &&
8383
ECHO *** Building Visual Studio 2010 %PLATFORM%\%CONFIGURATION% &&
8484
ECHO *** &&
85-
msbuild "visual\VS2010\lz5.sln" %ADDITIONALPARAM% /m /verbosity:minimal /property:PlatformToolset=v100 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
85+
msbuild "visual\VS2010\lizard.sln" %ADDITIONALPARAM% /m /verbosity:minimal /property:PlatformToolset=v100 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
8686
ECHO *** &&
8787
ECHO *** Building Visual Studio 2012 %PLATFORM%\%CONFIGURATION% &&
8888
ECHO *** &&
89-
msbuild "visual\VS2010\lz5.sln" /m /verbosity:minimal /property:PlatformToolset=v110 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
89+
msbuild "visual\VS2010\lizard.sln" /m /verbosity:minimal /property:PlatformToolset=v110 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
9090
ECHO *** &&
9191
ECHO *** Building Visual Studio 2013 %PLATFORM%\%CONFIGURATION% &&
9292
ECHO *** &&
93-
msbuild "visual\VS2010\lz5.sln" /m /verbosity:minimal /property:PlatformToolset=v120 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
93+
msbuild "visual\VS2010\lizard.sln" /m /verbosity:minimal /property:PlatformToolset=v120 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
9494
ECHO *** &&
9595
ECHO *** Building Visual Studio 2015 %PLATFORM%\%CONFIGURATION% &&
9696
ECHO *** &&
97-
msbuild "visual\VS2010\lz5.sln" /m /verbosity:minimal /property:PlatformToolset=v140 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
97+
msbuild "visual\VS2010\lizard.sln" /m /verbosity:minimal /property:PlatformToolset=v140 /t:Clean,Build /p:Platform=%PLATFORM% /p:Configuration=%CONFIGURATION% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" &&
9898
COPY visual\VS2010\bin\%PLATFORM%_%CONFIGURATION%\*.exe programs\
9999
)
100100

@@ -104,22 +104,22 @@ test_script:
104104
ECHO ***
105105
- if not [%COMPILER%]==[unknown] (
106106
CD programs &&
107-
lz5 -h &&
108-
lz5 -i1b lz5.exe &&
109-
lz5 -i1b5 lz5.exe &&
110-
lz5 -i1b10 lz5.exe &&
111-
lz5 -i1b15 lz5.exe &&
112-
echo ------- lz5 tested ------- &&
107+
lizard -h &&
108+
lizard -i1b lizard.exe &&
109+
lizard -i1b5 lizard.exe &&
110+
lizard -i1b10 lizard.exe &&
111+
lizard -i1b15 lizard.exe &&
112+
echo ------- lizard tested ------- &&
113113
fullbench.exe -i1 fullbench.exe
114114
)
115115

116116
artifacts:
117-
- path: bin\lz5_x64.zip
118-
- path: bin\lz5_x86.zip
117+
- path: bin\lizard_x64.zip
118+
- path: bin\lizard_x86.zip
119119

120120
deploy:
121121
- provider: GitHub
122-
artifact: bin\lz5_x64.zip
122+
artifact: bin\lizard_x64.zip
123123
auth_token:
124124
secure: LgJo8emYc3sFnlNWkGl4/VYK3nk/8+RagcsqDlAi3xeqNGNutnKjcftjg84uJoT4
125125
force_update: true
@@ -131,7 +131,7 @@ deploy:
131131
branch: autobuild
132132

133133
- provider: GitHub
134-
artifact: bin\lz5_x86.zip
134+
artifact: bin\lizard_x86.zip
135135
auth_token:
136136
secure: LgJo8emYc3sFnlNWkGl4/VYK3nk/8+RagcsqDlAi3xeqNGNutnKjcftjg84uJoT4
137137
force_update: true

0 commit comments

Comments
 (0)