@img/sharp-libvips-dev-wasm32 1.3.4-rc.0 → 1.3.4-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/include/expat.h +7 -1
- package/include/expat_config.h +3 -3
- package/include/expat_external.h +12 -0
- package/include/glib-2.0/gio/giotypes.h +0 -1
- package/include/glib-2.0/gobject/gtype.h +1 -1
- package/include/libheif/heif_image.h +9 -0
- package/include/libheif/heif_version.h +2 -2
- package/include/vips/version.h +4 -4
- package/lib/glib-2.0/include/glibconfig.h +2 -2
- package/lib/libaom.a +0 -0
- package/lib/libcgif.a +0 -0
- package/lib/libexif.a +0 -0
- package/lib/libexpat.a +0 -0
- package/lib/libexpat.la +2 -2
- package/lib/libffi.a +0 -0
- package/lib/libgio-2.0.a +0 -0
- package/lib/libglib-2.0.a +0 -0
- package/lib/libgmodule-2.0.a +0 -0
- package/lib/libgobject-2.0.a +0 -0
- package/lib/libgthread-2.0.a +0 -0
- package/lib/libheif.a +0 -0
- package/lib/libhwy.a +0 -0
- package/lib/libimagequant.a +0 -0
- package/lib/libjpeg.a +0 -0
- package/lib/liblcms2.a +0 -0
- package/lib/libpng.a +0 -0
- package/lib/libpng16.a +0 -0
- package/lib/libresvg.a +0 -0
- package/lib/libsharpyuv.a +0 -0
- package/lib/libtiff.a +0 -0
- package/lib/libuhdr.a +0 -0
- package/lib/libvips-cpp.a +0 -0
- package/lib/libvips.a +0 -0
- package/lib/libwebp.a +0 -0
- package/lib/libwebpdecoder.a +0 -0
- package/lib/libwebpdemux.a +0 -0
- package/lib/libwebpmux.a +0 -0
- package/lib/libz.a +0 -0
- package/lib/pkgconfig/aom.pc +2 -2
- package/lib/pkgconfig/cgif.pc +1 -1
- package/lib/pkgconfig/expat.pc +1 -1
- package/lib/pkgconfig/gio-2.0.pc +1 -1
- package/lib/pkgconfig/glib-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-export-2.0.pc +1 -1
- package/lib/pkgconfig/gmodule-no-export-2.0.pc +1 -1
- package/lib/pkgconfig/gobject-2.0.pc +1 -1
- package/lib/pkgconfig/gthread-2.0.pc +1 -1
- package/lib/pkgconfig/libheif.pc +1 -1
- package/lib/pkgconfig/vips-cpp.pc +1 -1
- package/lib/pkgconfig/vips.pc +1 -1
- package/package.json +1 -1
- package/versions.json +7 -7
package/include/expat.h
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
Copyright (c) 2023 Sony Corporation / Snild Dolkow <snild@sony.com>
|
|
21
21
|
Copyright (c) 2024 Taichi Haradaguchi <20001722@ymail.ne.jp>
|
|
22
22
|
Copyright (c) 2025 Matthew Fernandez <matthew.fernandez@gmail.com>
|
|
23
|
+
Copyright (c) 2026 Braian Plaku <braianplaku@gmail.com>
|
|
23
24
|
Licensed under the MIT license:
|
|
24
25
|
|
|
25
26
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
@@ -921,7 +922,9 @@ XML_SetParamEntityParsing(XML_Parser parser,
|
|
|
921
922
|
Returns 1 if successful, 0 when called after parsing has started.
|
|
922
923
|
Note: If parser == NULL, the function will do nothing and return 0.
|
|
923
924
|
DEPRECATED since Expat 2.8.0.
|
|
925
|
+
Please use XML_SetHashSalt16Bytes instead.
|
|
924
926
|
*/
|
|
927
|
+
XML_ATTR_DEPRECATED("please use XML_SetHashSalt16Bytes instead")
|
|
925
928
|
XMLPARSEAPI(int)
|
|
926
929
|
XML_SetHashSalt(XML_Parser parser, unsigned long hash_salt);
|
|
927
930
|
|
|
@@ -1040,8 +1043,11 @@ enum XML_FeatureEnum {
|
|
|
1040
1043
|
XML_FEATURE_MIN_SIZE,
|
|
1041
1044
|
XML_FEATURE_SIZEOF_XML_CHAR,
|
|
1042
1045
|
XML_FEATURE_SIZEOF_XML_LCHAR,
|
|
1046
|
+
/* Added in Expat 2.0.0. */
|
|
1043
1047
|
XML_FEATURE_NS,
|
|
1048
|
+
/* Added in Expat 2.0.1. */
|
|
1044
1049
|
XML_FEATURE_LARGE_SIZE,
|
|
1050
|
+
/* Added in Expat 2.1.0. */
|
|
1045
1051
|
XML_FEATURE_ATTR_INFO,
|
|
1046
1052
|
/* Added in Expat 2.4.0. */
|
|
1047
1053
|
XML_FEATURE_BILLION_LAUGHS_ATTACK_PROTECTION_MAXIMUM_AMPLIFICATION_DEFAULT,
|
|
@@ -1096,7 +1102,7 @@ XML_SetReparseDeferralEnabled(XML_Parser parser, XML_Bool enabled);
|
|
|
1096
1102
|
*/
|
|
1097
1103
|
# define XML_MAJOR_VERSION 2
|
|
1098
1104
|
# define XML_MINOR_VERSION 8
|
|
1099
|
-
# define XML_MICRO_VERSION
|
|
1105
|
+
# define XML_MICRO_VERSION 5
|
|
1100
1106
|
|
|
1101
1107
|
# ifdef __cplusplus
|
|
1102
1108
|
}
|
package/include/expat_config.h
CHANGED
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
#define PACKAGE_NAME "expat"
|
|
84
84
|
|
|
85
85
|
/* Define to the full name and version of this package. */
|
|
86
|
-
#define PACKAGE_STRING "expat 2.8.
|
|
86
|
+
#define PACKAGE_STRING "expat 2.8.5"
|
|
87
87
|
|
|
88
88
|
/* Define to the one symbol short name of this package. */
|
|
89
89
|
#define PACKAGE_TARNAME "expat"
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
#define PACKAGE_URL ""
|
|
93
93
|
|
|
94
94
|
/* Define to the version of this package. */
|
|
95
|
-
#define PACKAGE_VERSION "2.8.
|
|
95
|
+
#define PACKAGE_VERSION "2.8.5"
|
|
96
96
|
|
|
97
97
|
/* Define to 1 if all of the C89 standard headers exist (not just the ones
|
|
98
98
|
required in a freestanding environment). This macro is provided for
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
#define STDC_HEADERS 1
|
|
101
101
|
|
|
102
102
|
/* Version number of package */
|
|
103
|
-
#define VERSION "2.8.
|
|
103
|
+
#define VERSION "2.8.5"
|
|
104
104
|
|
|
105
105
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
|
106
106
|
significant byte first (like Motorola and SPARC, unlike Intel). */
|
package/include/expat_external.h
CHANGED
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
Copyright (c) 2017 Rhodri James <rhodri@wildebeest.org.uk>
|
|
17
17
|
Copyright (c) 2018 Yury Gribov <tetra2005@gmail.com>
|
|
18
18
|
Copyright (c) 2026 Matthew Fernandez <matthew.fernandez@gmail.com>
|
|
19
|
+
Copyright (c) 2026 Braian Plaku <braianplaku@gmail.com>
|
|
19
20
|
Licensed under the MIT license:
|
|
20
21
|
|
|
21
22
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
@@ -125,6 +126,17 @@
|
|
|
125
126
|
# define XML_ATTR_ALLOC_SIZE(x)
|
|
126
127
|
# endif
|
|
127
128
|
|
|
129
|
+
/* Marks a function that Expat still provides but that callers should move off
|
|
130
|
+
of. */
|
|
131
|
+
# if defined(__clang__) || defined(__GNUC__)
|
|
132
|
+
# define XML_ATTR_DEPRECATED(message) \
|
|
133
|
+
__attribute__((__deprecated__(message)))
|
|
134
|
+
# elif defined(_MSC_VER)
|
|
135
|
+
# define XML_ATTR_DEPRECATED(message) __declspec(deprecated(message))
|
|
136
|
+
# else
|
|
137
|
+
# define XML_ATTR_DEPRECATED(message) // empty i.e. no deprecation
|
|
138
|
+
# endif
|
|
139
|
+
|
|
128
140
|
# define XMLPARSEAPI(type) XMLIMPORT type XMLCALL
|
|
129
141
|
|
|
130
142
|
# ifdef __cplusplus
|
|
@@ -50,7 +50,6 @@ typedef struct _GZlibDecompressor GZlibDecompressor;
|
|
|
50
50
|
|
|
51
51
|
typedef struct _GSimpleActionGroup GSimpleActionGroup;
|
|
52
52
|
typedef struct _GRemoteActionGroup GRemoteActionGroup;
|
|
53
|
-
typedef struct _GDBusActionGroup GDBusActionGroup;
|
|
54
53
|
typedef struct _GActionMap GActionMap;
|
|
55
54
|
typedef struct _GActionGroup GActionGroup;
|
|
56
55
|
typedef struct _GPropertyAction GPropertyAction;
|
|
@@ -2302,7 +2302,7 @@ static void type_name##_init_adapter (TypeName *self, \
|
|
|
2302
2302
|
type_name##_init (self); \
|
|
2303
2303
|
} \
|
|
2304
2304
|
static GType type_name##_get_type_once (void); \
|
|
2305
|
-
static gpointer type_name##_parent_class = NULL; \
|
|
2305
|
+
G_GNUC_UNUSED static gpointer type_name##_parent_class = NULL; \
|
|
2306
2306
|
static gint TypeName##_private_offset; \
|
|
2307
2307
|
\
|
|
2308
2308
|
_G_DEFINE_TYPE_EXTENDED_CLASS_INIT(TypeName, type_name) \
|
|
@@ -298,6 +298,10 @@ heif_error heif_image_scale_image(const heif_image* input,
|
|
|
298
298
|
|
|
299
299
|
// Extends the image size to match the given size by extending the right and bottom borders.
|
|
300
300
|
// The border areas are filled with zero.
|
|
301
|
+
// The target 'width' and 'height' must each be at least the image's current size; this
|
|
302
|
+
// function only grows the image and cannot shrink it. If a smaller size is requested,
|
|
303
|
+
// 'heif_error_Usage_error' / 'heif_suberror_Invalid_parameter_value' is returned and the
|
|
304
|
+
// image is left unchanged.
|
|
301
305
|
LIBHEIF_API
|
|
302
306
|
heif_error heif_image_extend_to_size_fill_with_zero(heif_image* image,
|
|
303
307
|
uint32_t width, uint32_t height);
|
|
@@ -367,6 +371,11 @@ heif_error heif_image_create(int width, int height,
|
|
|
367
371
|
* <p>For backward compatibility, one can also specify 24bits for RGB and 32bits for RGBA,
|
|
368
372
|
* instead of the preferred 8 bits. However, this use is deprecated.
|
|
369
373
|
*
|
|
374
|
+
* <p>An image with an interleaved chroma format carries its alpha inside the interleaved
|
|
375
|
+
* plane. Adding a separate {@code heif_channel_Alpha} plane to such an image is rejected
|
|
376
|
+
* with an error. Use one of the interleaved formats with alpha
|
|
377
|
+
* (e.g. {@code heif_chroma_interleaved_RGBA}) instead.
|
|
378
|
+
*
|
|
370
379
|
* @param image the parent image to add the channel plane to
|
|
371
380
|
* @param channel the channel of the plane to add
|
|
372
381
|
* @param width the width of the plane
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
#define LIBHEIF_HEIF_VERSION_H
|
|
29
29
|
|
|
30
30
|
/* Numeric representation of the version */
|
|
31
|
-
#define LIBHEIF_NUMERIC_VERSION ((1<<24) | (23<<16) | (
|
|
31
|
+
#define LIBHEIF_NUMERIC_VERSION ((1<<24) | (23<<16) | (5<<8) | 0)
|
|
32
32
|
|
|
33
33
|
/* Version string */
|
|
34
|
-
#define LIBHEIF_VERSION "1.23.
|
|
34
|
+
#define LIBHEIF_VERSION "1.23.5"
|
|
35
35
|
|
|
36
36
|
#define LIBHEIF_PLUGIN_DIRECTORY "/src/build/target/lib/libheif"
|
|
37
37
|
|
package/include/vips/version.h
CHANGED
|
@@ -4,16 +4,16 @@
|
|
|
4
4
|
#ifndef VIPS_VERSION_H
|
|
5
5
|
#define VIPS_VERSION_H
|
|
6
6
|
|
|
7
|
-
#define VIPS_VERSION "8.18.
|
|
8
|
-
#define VIPS_VERSION_STRING "8.18.
|
|
7
|
+
#define VIPS_VERSION "8.18.7"
|
|
8
|
+
#define VIPS_VERSION_STRING "8.18.7"
|
|
9
9
|
#define VIPS_MAJOR_VERSION (8)
|
|
10
10
|
#define VIPS_MINOR_VERSION (18)
|
|
11
|
-
#define VIPS_MICRO_VERSION (
|
|
11
|
+
#define VIPS_MICRO_VERSION (7)
|
|
12
12
|
|
|
13
13
|
/* The ABI version, as used for library versioning.
|
|
14
14
|
*/
|
|
15
15
|
#define VIPS_LIBRARY_CURRENT (62)
|
|
16
|
-
#define VIPS_LIBRARY_REVISION (
|
|
16
|
+
#define VIPS_LIBRARY_REVISION (7)
|
|
17
17
|
#define VIPS_LIBRARY_AGE (20)
|
|
18
18
|
|
|
19
19
|
#define VIPS_CONFIG "enable debug: false\nenable deprecated: false\nenable modules: false\nenable C++ binding: true\nenable RAD load/save: true\nenable Analyze7 load: true\nenable PPM load/save: true\nenable GIF load: true\nFFTs with fftw: false\nSIMD support with libhwy: true\nICC profile support with lcms2: true\ndeflate compression with zlib: true\ntext rendering with pangocairo: false\nfont file support with fontconfig: false\nEXIF metadata support with libexif: true\nJPEG load/save with libjpeg: true\nUHDR load/save with libuhdr: true\nJXL load/save with libjxl: false (dynamic module: false)\nJPEG2000 load/save with OpenJPEG: false\nPNG load/save with libpng: true\nimage quantisation with imagequant: true\nTIFF load/save with libtiff-4: true\nimage pyramid save with libarchive: false\nHEIC/AVIF load/save with libheif: true (dynamic module: false)\nWebP load/save with libwebp: true\nPDF load with PDFium or Poppler: false (dynamic module: false)\nSVG load with librsvg or resvg: true (dynamic module: false)\nEXR load with OpenEXR: false\nWSI load with OpenSlide: false (dynamic module: false)\nMatlab load with Matio: false\nNIfTI load/save with libnifti: false\nFITS load/save with cfitsio: false\nGIF save with cgif: true\nRAW load with libraw: false\nMagick load/save with MagickCore: false (dynamic module: false)"
|
|
@@ -112,8 +112,8 @@ typedef unsigned int guintptr;
|
|
|
112
112
|
#define G_GUINTPTR_FORMAT "u"
|
|
113
113
|
|
|
114
114
|
#define GLIB_MAJOR_VERSION 2
|
|
115
|
-
#define GLIB_MINOR_VERSION
|
|
116
|
-
#define GLIB_MICRO_VERSION
|
|
115
|
+
#define GLIB_MINOR_VERSION 90
|
|
116
|
+
#define GLIB_MICRO_VERSION 0
|
|
117
117
|
|
|
118
118
|
#define G_OS_UNIX
|
|
119
119
|
#define G_PLATFORM_WASM
|
package/lib/libaom.a
CHANGED
|
Binary file
|
package/lib/libcgif.a
CHANGED
|
Binary file
|
package/lib/libexif.a
CHANGED
|
Binary file
|
package/lib/libexpat.a
CHANGED
|
Binary file
|
package/lib/libexpat.la
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# libexpat.la - a libtool library file
|
|
2
|
-
# Generated by libtool (GNU libtool) 2.
|
|
2
|
+
# Generated by libtool (GNU libtool) 2.6.2
|
|
3
3
|
#
|
|
4
4
|
# Please DO NOT delete this file!
|
|
5
5
|
# It is necessary for linking the library.
|
|
@@ -25,7 +25,7 @@ weak_library_names=''
|
|
|
25
25
|
# Version information for libexpat.
|
|
26
26
|
current=13
|
|
27
27
|
age=12
|
|
28
|
-
revision=
|
|
28
|
+
revision=5
|
|
29
29
|
|
|
30
30
|
# Is this an already installed library?
|
|
31
31
|
installed=yes
|
package/lib/libffi.a
CHANGED
|
Binary file
|
package/lib/libgio-2.0.a
CHANGED
|
Binary file
|
package/lib/libglib-2.0.a
CHANGED
|
Binary file
|
package/lib/libgmodule-2.0.a
CHANGED
|
Binary file
|
package/lib/libgobject-2.0.a
CHANGED
|
Binary file
|
package/lib/libgthread-2.0.a
CHANGED
|
Binary file
|
package/lib/libheif.a
CHANGED
|
Binary file
|
package/lib/libhwy.a
CHANGED
|
Binary file
|
package/lib/libimagequant.a
CHANGED
|
Binary file
|
package/lib/libjpeg.a
CHANGED
|
Binary file
|
package/lib/liblcms2.a
CHANGED
|
Binary file
|
package/lib/libpng.a
CHANGED
|
Binary file
|
package/lib/libpng16.a
CHANGED
|
Binary file
|
package/lib/libresvg.a
CHANGED
|
Binary file
|
package/lib/libsharpyuv.a
CHANGED
|
Binary file
|
package/lib/libtiff.a
CHANGED
|
Binary file
|
package/lib/libuhdr.a
CHANGED
|
Binary file
|
package/lib/libvips-cpp.a
CHANGED
|
Binary file
|
package/lib/libvips.a
CHANGED
|
Binary file
|
package/lib/libwebp.a
CHANGED
|
Binary file
|
package/lib/libwebpdecoder.a
CHANGED
|
Binary file
|
package/lib/libwebpdemux.a
CHANGED
|
Binary file
|
package/lib/libwebpmux.a
CHANGED
|
Binary file
|
package/lib/libz.a
CHANGED
|
Binary file
|
package/lib/pkgconfig/aom.pc
CHANGED
|
@@ -5,8 +5,8 @@ includedir=${prefix}/include
|
|
|
5
5
|
libdir=${exec_prefix}/lib
|
|
6
6
|
|
|
7
7
|
Name: aom
|
|
8
|
-
Description: Alliance for Open Media AV1 codec library v3.15.
|
|
9
|
-
Version: 3.15.
|
|
8
|
+
Description: Alliance for Open Media AV1 codec library v3.15.1.
|
|
9
|
+
Version: 3.15.1
|
|
10
10
|
Requires:
|
|
11
11
|
Conflicts:
|
|
12
12
|
Libs: -L${libdir} -laom
|
package/lib/pkgconfig/cgif.pc
CHANGED
package/lib/pkgconfig/expat.pc
CHANGED
package/lib/pkgconfig/gio-2.0.pc
CHANGED
|
@@ -11,6 +11,6 @@ glib_valgrind_suppressions=${datadir}/glib-2.0/valgrind/glib.supp
|
|
|
11
11
|
|
|
12
12
|
Name: GLib
|
|
13
13
|
Description: C Utility Library
|
|
14
|
-
Version: 2.
|
|
14
|
+
Version: 2.90.0
|
|
15
15
|
Libs: -L${libdir} -lglib-2.0 -lm -pthread
|
|
16
16
|
Cflags: -I${includedir}/glib-2.0 -pthread -I${libdir}/glib-2.0/include
|
package/lib/pkgconfig/libheif.pc
CHANGED
|
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
|
|
|
4
4
|
|
|
5
5
|
Name: vips-cpp
|
|
6
6
|
Description: C++ API for vips8 image processing library
|
|
7
|
-
Version: 8.18.
|
|
7
|
+
Version: 8.18.7
|
|
8
8
|
Requires: vips, glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, libuhdr, libpng >= 1.2.9, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.7.0
|
|
9
9
|
Libs: -L${libdir} -lvips-cpp -lresvg -pthread -lm
|
|
10
10
|
Cflags: -I${includedir} -DHAVE_CONFIG_H -pthread
|
package/lib/pkgconfig/vips.pc
CHANGED
|
@@ -4,7 +4,7 @@ libdir=${prefix}/lib
|
|
|
4
4
|
|
|
5
5
|
Name: vips
|
|
6
6
|
Description: Image processing library
|
|
7
|
-
Version: 8.18.
|
|
7
|
+
Version: 8.18.7
|
|
8
8
|
Requires: glib-2.0 >= 2.52, gio-2.0, gobject-2.0, expat, zlib >= 0.4, imagequant, cgif >= 0.2.0, libexif >= 0.6, libjpeg, libuhdr, libpng >= 1.2.9, libwebp >= 0.6, libwebpmux >= 0.6, libwebpdemux >= 0.6, libtiff-4, lcms2, libhwy >= 1.0.5, libheif >= 1.7.0
|
|
9
9
|
Libs: -L${libdir} -lvips -lresvg -pthread -lm
|
|
10
10
|
Cflags: -I${includedir} -DHAVE_CONFIG_H -pthread
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@img/sharp-libvips-dev-wasm32",
|
|
3
|
-
"version": "1.3.4-rc.
|
|
3
|
+
"version": "1.3.4-rc.1",
|
|
4
4
|
"description": "Header files and static wasm32 libraries for libvips and dependencies to build sharp as wasm32",
|
|
5
5
|
"author": "Lovell Fuller <npm@lovell.info>",
|
|
6
6
|
"homepage": "https://sharp.pixelplumbing.com",
|
package/versions.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"aom": "3.15.
|
|
3
|
-
"cgif": "0.5.
|
|
4
|
-
"emscripten": "6.0.
|
|
2
|
+
"aom": "3.15.1",
|
|
3
|
+
"cgif": "0.5.4",
|
|
4
|
+
"emscripten": "6.0.10",
|
|
5
5
|
"exif": "0.6.26",
|
|
6
|
-
"expat": "2.8.
|
|
6
|
+
"expat": "2.8.5",
|
|
7
7
|
"ffi": "3.8.0",
|
|
8
|
-
"glib": "2.
|
|
9
|
-
"heif": "1.23.
|
|
8
|
+
"glib": "2.90.0",
|
|
9
|
+
"heif": "1.23.5",
|
|
10
10
|
"highway": "1.4.0",
|
|
11
11
|
"imagequant": "2.4.1",
|
|
12
12
|
"lcms": "2.19.1",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"resvg": "0.48.1",
|
|
16
16
|
"tiff": "4.7.2",
|
|
17
17
|
"uhdr": "2.0.2",
|
|
18
|
-
"vips": "8.18.
|
|
18
|
+
"vips": "8.18.7",
|
|
19
19
|
"webp": "1.6.0",
|
|
20
20
|
"zlib-ng": "2.3.3"
|
|
21
21
|
}
|